1. Packages
  2. Ibm Provider
  3. API Docs
  4. getLogsE2m
ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud

ibm.getLogsE2m

Explore with Pulumi AI

Provides a read-only data source to retrieve information about a logs_e2m. You can then reference the fields of the data source in other resources within the same configuration by using interpolation syntax.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";

const logsE2mInstance = ibm.getLogsE2m({
    instanceId: ibm_logs_e2m.logs_e2m_instance.instance_id,
    region: ibm_logs_e2m.logs_e2m_instance.region,
    logsE2mId: ibm_logs_e2m.logs_e2m_instance.e2m_id,
});
Copy
import pulumi
import pulumi_ibm as ibm

logs_e2m_instance = ibm.get_logs_e2m(instance_id=ibm_logs_e2m["logs_e2m_instance"]["instance_id"],
    region=ibm_logs_e2m["logs_e2m_instance"]["region"],
    logs_e2m_id=ibm_logs_e2m["logs_e2m_instance"]["e2m_id"])
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := ibm.LookupLogsE2m(ctx, &ibm.LookupLogsE2mArgs{
			InstanceId: ibm_logs_e2m.Logs_e2m_instance.Instance_id,
			Region:     pulumi.StringRef(ibm_logs_e2m.Logs_e2m_instance.Region),
			LogsE2mId:  ibm_logs_e2m.Logs_e2m_instance.E2m_id,
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ibm = Pulumi.Ibm;

return await Deployment.RunAsync(() => 
{
    var logsE2mInstance = Ibm.GetLogsE2m.Invoke(new()
    {
        InstanceId = ibm_logs_e2m.Logs_e2m_instance.Instance_id,
        Region = ibm_logs_e2m.Logs_e2m_instance.Region,
        LogsE2mId = ibm_logs_e2m.Logs_e2m_instance.E2m_id,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.IbmFunctions;
import com.pulumi.ibm.inputs.GetLogsE2mArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var logsE2mInstance = IbmFunctions.getLogsE2m(GetLogsE2mArgs.builder()
            .instanceId(ibm_logs_e2m.logs_e2m_instance().instance_id())
            .region(ibm_logs_e2m.logs_e2m_instance().region())
            .logsE2mId(ibm_logs_e2m.logs_e2m_instance().e2m_id())
            .build());

    }
}
Copy
variables:
  logsE2mInstance:
    fn::invoke:
      function: ibm:getLogsE2m
      arguments:
        instanceId: ${ibm_logs_e2m.logs_e2m_instance.instance_id}
        region: ${ibm_logs_e2m.logs_e2m_instance.region}
        logsE2mId: ${ibm_logs_e2m.logs_e2m_instance.e2m_id}
Copy

Using getLogsE2m

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getLogsE2m(args: GetLogsE2mArgs, opts?: InvokeOptions): Promise<GetLogsE2mResult>
function getLogsE2mOutput(args: GetLogsE2mOutputArgs, opts?: InvokeOptions): Output<GetLogsE2mResult>
Copy
def get_logs_e2m(endpoint_type: Optional[str] = None,
                 id: Optional[str] = None,
                 instance_id: Optional[str] = None,
                 logs_e2m_id: Optional[str] = None,
                 region: Optional[str] = None,
                 opts: Optional[InvokeOptions] = None) -> GetLogsE2mResult
def get_logs_e2m_output(endpoint_type: Optional[pulumi.Input[str]] = None,
                 id: Optional[pulumi.Input[str]] = None,
                 instance_id: Optional[pulumi.Input[str]] = None,
                 logs_e2m_id: Optional[pulumi.Input[str]] = None,
                 region: Optional[pulumi.Input[str]] = None,
                 opts: Optional[InvokeOptions] = None) -> Output[GetLogsE2mResult]
Copy
func LookupLogsE2m(ctx *Context, args *LookupLogsE2mArgs, opts ...InvokeOption) (*LookupLogsE2mResult, error)
func LookupLogsE2mOutput(ctx *Context, args *LookupLogsE2mOutputArgs, opts ...InvokeOption) LookupLogsE2mResultOutput
Copy

> Note: This function is named LookupLogsE2m in the Go SDK.

public static class GetLogsE2m 
{
    public static Task<GetLogsE2mResult> InvokeAsync(GetLogsE2mArgs args, InvokeOptions? opts = null)
    public static Output<GetLogsE2mResult> Invoke(GetLogsE2mInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetLogsE2mResult> getLogsE2m(GetLogsE2mArgs args, InvokeOptions options)
public static Output<GetLogsE2mResult> getLogsE2m(GetLogsE2mArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: ibm:index/getLogsE2m:getLogsE2m
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

InstanceId This property is required. string
Cloud Logs Instance GUID.
LogsE2mId This property is required. string
ID of e2m to be deleted.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
EndpointType string
Id string
The unique identifier of the logs_e2m.
Region string
Cloud Logs Instance Region.
InstanceId This property is required. string
Cloud Logs Instance GUID.
LogsE2mId This property is required. string
ID of e2m to be deleted.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
EndpointType string
Id string
The unique identifier of the logs_e2m.
Region string
Cloud Logs Instance Region.
instanceId This property is required. String
Cloud Logs Instance GUID.
logsE2mId This property is required. String
ID of e2m to be deleted.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
endpointType String
id String
The unique identifier of the logs_e2m.
region String
Cloud Logs Instance Region.
instanceId This property is required. string
Cloud Logs Instance GUID.
logsE2mId This property is required. string
ID of e2m to be deleted.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
endpointType string
id string
The unique identifier of the logs_e2m.
region string
Cloud Logs Instance Region.
instance_id This property is required. str
Cloud Logs Instance GUID.
logs_e2m_id This property is required. str
ID of e2m to be deleted.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
endpoint_type str
id str
The unique identifier of the logs_e2m.
region str
Cloud Logs Instance Region.
instanceId This property is required. String
Cloud Logs Instance GUID.
logsE2mId This property is required. String
ID of e2m to be deleted.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
endpointType String
id String
The unique identifier of the logs_e2m.
region String
Cloud Logs Instance Region.

getLogsE2m Result

The following output properties are available:

CreateTime string
(String) E2M create time.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
Description string
(String) Description of the E2M.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9_\\-\\s]+$/.
Id string
The unique identifier of the logs_e2m.
InstanceId string
IsInternal bool
(Boolean) A flag that represents if the e2m is for internal usage.
LogsE2mId string
LogsQueries List<GetLogsE2mLogsQuery>
(List) E2M logs query. Nested schema for logs_query:
MetricFields List<GetLogsE2mMetricField>
(List) E2M metric fields.

  • Constraints: The maximum length is 10 items. The minimum length is 0 items. Nested schema for metric_fields:
MetricLabels List<GetLogsE2mMetricLabel>
(List) E2M metric labels.

  • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for metric_labels:
Name string
(String) Name of the E2M.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
Permutations List<GetLogsE2mPermutation>
(List) Represents the limit of the permutations and if the limit was exceeded. Nested schema for permutations:
Region string
Type string
(String) E2M type.

  • Constraints: Allowable values are: unspecified, logs2metrics.
UpdateTime string
(String) E2M update time.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
EndpointType string
CreateTime string
(String) E2M create time.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
Description string
(String) Description of the E2M.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9_\\-\\s]+$/.
Id string
The unique identifier of the logs_e2m.
InstanceId string
IsInternal bool
(Boolean) A flag that represents if the e2m is for internal usage.
LogsE2mId string
LogsQueries []GetLogsE2mLogsQuery
(List) E2M logs query. Nested schema for logs_query:
MetricFields []GetLogsE2mMetricField
(List) E2M metric fields.

  • Constraints: The maximum length is 10 items. The minimum length is 0 items. Nested schema for metric_fields:
MetricLabels []GetLogsE2mMetricLabel
(List) E2M metric labels.

  • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for metric_labels:
Name string
(String) Name of the E2M.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
Permutations []GetLogsE2mPermutation
(List) Represents the limit of the permutations and if the limit was exceeded. Nested schema for permutations:
Region string
Type string
(String) E2M type.

  • Constraints: Allowable values are: unspecified, logs2metrics.
UpdateTime string
(String) E2M update time.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
EndpointType string
createTime String
(String) E2M create time.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
description String
(String) Description of the E2M.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9_\\-\\s]+$/.
id String
The unique identifier of the logs_e2m.
instanceId String
isInternal Boolean
(Boolean) A flag that represents if the e2m is for internal usage.
logsE2mId String
logsQueries List<GetLogsE2mLogsQuery>
(List) E2M logs query. Nested schema for logs_query:
metricFields List<GetLogsE2mMetricField>
(List) E2M metric fields.

  • Constraints: The maximum length is 10 items. The minimum length is 0 items. Nested schema for metric_fields:
metricLabels List<GetLogsE2mMetricLabel>
(List) E2M metric labels.

  • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for metric_labels:
name String
(String) Name of the E2M.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
permutations List<GetLogsE2mPermutation>
(List) Represents the limit of the permutations and if the limit was exceeded. Nested schema for permutations:
region String
type String
(String) E2M type.

  • Constraints: Allowable values are: unspecified, logs2metrics.
updateTime String
(String) E2M update time.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
endpointType String
createTime string
(String) E2M create time.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
description string
(String) Description of the E2M.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9_\\-\\s]+$/.
id string
The unique identifier of the logs_e2m.
instanceId string
isInternal boolean
(Boolean) A flag that represents if the e2m is for internal usage.
logsE2mId string
logsQueries GetLogsE2mLogsQuery[]
(List) E2M logs query. Nested schema for logs_query:
metricFields GetLogsE2mMetricField[]
(List) E2M metric fields.

  • Constraints: The maximum length is 10 items. The minimum length is 0 items. Nested schema for metric_fields:
metricLabels GetLogsE2mMetricLabel[]
(List) E2M metric labels.

  • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for metric_labels:
name string
(String) Name of the E2M.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
permutations GetLogsE2mPermutation[]
(List) Represents the limit of the permutations and if the limit was exceeded. Nested schema for permutations:
region string
type string
(String) E2M type.

  • Constraints: Allowable values are: unspecified, logs2metrics.
updateTime string
(String) E2M update time.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
endpointType string
create_time str
(String) E2M create time.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
description str
(String) Description of the E2M.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9_\\-\\s]+$/.
id str
The unique identifier of the logs_e2m.
instance_id str
is_internal bool
(Boolean) A flag that represents if the e2m is for internal usage.
logs_e2m_id str
logs_queries Sequence[GetLogsE2mLogsQuery]
(List) E2M logs query. Nested schema for logs_query:
metric_fields Sequence[GetLogsE2mMetricField]
(List) E2M metric fields.

  • Constraints: The maximum length is 10 items. The minimum length is 0 items. Nested schema for metric_fields:
metric_labels Sequence[GetLogsE2mMetricLabel]
(List) E2M metric labels.

  • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for metric_labels:
name str
(String) Name of the E2M.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
permutations Sequence[GetLogsE2mPermutation]
(List) Represents the limit of the permutations and if the limit was exceeded. Nested schema for permutations:
region str
type str
(String) E2M type.

  • Constraints: Allowable values are: unspecified, logs2metrics.
update_time str
(String) E2M update time.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
endpoint_type str
createTime String
(String) E2M create time.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
description String
(String) Description of the E2M.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9_\\-\\s]+$/.
id String
The unique identifier of the logs_e2m.
instanceId String
isInternal Boolean
(Boolean) A flag that represents if the e2m is for internal usage.
logsE2mId String
logsQueries List<Property Map>
(List) E2M logs query. Nested schema for logs_query:
metricFields List<Property Map>
(List) E2M metric fields.

  • Constraints: The maximum length is 10 items. The minimum length is 0 items. Nested schema for metric_fields:
metricLabels List<Property Map>
(List) E2M metric labels.

  • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for metric_labels:
name String
(String) Name of the E2M.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
permutations List<Property Map>
(List) Represents the limit of the permutations and if the limit was exceeded. Nested schema for permutations:
region String
type String
(String) E2M type.

  • Constraints: Allowable values are: unspecified, logs2metrics.
updateTime String
(String) E2M update time.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
endpointType String

Supporting Types

GetLogsE2mLogsQuery

Alias This property is required. string
(String) Alias.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
ApplicationnameFilters This property is required. List<string>
(List) Application name filters.

  • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
Lucene This property is required. string
(String) Lucene query.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
SeverityFilters This property is required. List<string>
(List) Severity type filters.

  • Constraints: Allowable list items are: unspecified, debug, verbose, info, warning, error, critical. The maximum length is 4096 items. The minimum length is 0 items.
SubsystemnameFilters This property is required. List<string>
(List) Subsystem names filters.

  • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
Alias This property is required. string
(String) Alias.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
ApplicationnameFilters This property is required. []string
(List) Application name filters.

  • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
Lucene This property is required. string
(String) Lucene query.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
SeverityFilters This property is required. []string
(List) Severity type filters.

  • Constraints: Allowable list items are: unspecified, debug, verbose, info, warning, error, critical. The maximum length is 4096 items. The minimum length is 0 items.
SubsystemnameFilters This property is required. []string
(List) Subsystem names filters.

  • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
alias This property is required. String
(String) Alias.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
applicationnameFilters This property is required. List<String>
(List) Application name filters.

  • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
lucene This property is required. String
(String) Lucene query.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
severityFilters This property is required. List<String>
(List) Severity type filters.

  • Constraints: Allowable list items are: unspecified, debug, verbose, info, warning, error, critical. The maximum length is 4096 items. The minimum length is 0 items.
subsystemnameFilters This property is required. List<String>
(List) Subsystem names filters.

  • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
alias This property is required. string
(String) Alias.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
applicationnameFilters This property is required. string[]
(List) Application name filters.

  • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
lucene This property is required. string
(String) Lucene query.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
severityFilters This property is required. string[]
(List) Severity type filters.

  • Constraints: Allowable list items are: unspecified, debug, verbose, info, warning, error, critical. The maximum length is 4096 items. The minimum length is 0 items.
subsystemnameFilters This property is required. string[]
(List) Subsystem names filters.

  • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
alias This property is required. str
(String) Alias.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
applicationname_filters This property is required. Sequence[str]
(List) Application name filters.

  • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
lucene This property is required. str
(String) Lucene query.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
severity_filters This property is required. Sequence[str]
(List) Severity type filters.

  • Constraints: Allowable list items are: unspecified, debug, verbose, info, warning, error, critical. The maximum length is 4096 items. The minimum length is 0 items.
subsystemname_filters This property is required. Sequence[str]
(List) Subsystem names filters.

  • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
alias This property is required. String
(String) Alias.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
applicationnameFilters This property is required. List<String>
(List) Application name filters.

  • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
lucene This property is required. String
(String) Lucene query.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
severityFilters This property is required. List<String>
(List) Severity type filters.

  • Constraints: Allowable list items are: unspecified, debug, verbose, info, warning, error, critical. The maximum length is 4096 items. The minimum length is 0 items.
subsystemnameFilters This property is required. List<String>
(List) Subsystem names filters.

  • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.

GetLogsE2mMetricField

Aggregations This property is required. List<GetLogsE2mMetricFieldAggregation>
(List) Represents Aggregation type list.

  • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for aggregations:
SourceField This property is required. string
(String) Metric label source field.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
TargetBaseMetricName This property is required. string
(String) Target metric field alias name.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression /^[\\w\/-]+$/.
Aggregations This property is required. []GetLogsE2mMetricFieldAggregation
(List) Represents Aggregation type list.

  • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for aggregations:
SourceField This property is required. string
(String) Metric label source field.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
TargetBaseMetricName This property is required. string
(String) Target metric field alias name.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression /^[\\w\/-]+$/.
aggregations This property is required. List<GetLogsE2mMetricFieldAggregation>
(List) Represents Aggregation type list.

  • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for aggregations:
sourceField This property is required. String
(String) Metric label source field.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
targetBaseMetricName This property is required. String
(String) Target metric field alias name.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression /^[\\w\/-]+$/.
aggregations This property is required. GetLogsE2mMetricFieldAggregation[]
(List) Represents Aggregation type list.

  • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for aggregations:
sourceField This property is required. string
(String) Metric label source field.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
targetBaseMetricName This property is required. string
(String) Target metric field alias name.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression /^[\\w\/-]+$/.
aggregations This property is required. Sequence[GetLogsE2mMetricFieldAggregation]
(List) Represents Aggregation type list.

  • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for aggregations:
source_field This property is required. str
(String) Metric label source field.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
target_base_metric_name This property is required. str
(String) Target metric field alias name.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression /^[\\w\/-]+$/.
aggregations This property is required. List<Property Map>
(List) Represents Aggregation type list.

  • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for aggregations:
sourceField This property is required. String
(String) Metric label source field.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
targetBaseMetricName This property is required. String
(String) Target metric field alias name.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression /^[\\w\/-]+$/.

GetLogsE2mMetricFieldAggregation

AggType This property is required. string
(String) Aggregation type.

  • Constraints: Allowable values are: unspecified, min, max, count, avg, sum, histogram, samples.
Enabled This property is required. bool
(Boolean) Is enabled.
Histograms This property is required. List<GetLogsE2mMetricFieldAggregationHistogram>
(List) E2M aggregate histogram type metadata. Nested schema for histogram:
Samples This property is required. List<GetLogsE2mMetricFieldAggregationSample>
(List) E2M sample type metadata. Nested schema for samples:
TargetMetricName This property is required. string
(String) Target metric field alias name.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
AggType This property is required. string
(String) Aggregation type.

  • Constraints: Allowable values are: unspecified, min, max, count, avg, sum, histogram, samples.
Enabled This property is required. bool
(Boolean) Is enabled.
Histograms This property is required. []GetLogsE2mMetricFieldAggregationHistogram
(List) E2M aggregate histogram type metadata. Nested schema for histogram:
Samples This property is required. []GetLogsE2mMetricFieldAggregationSample
(List) E2M sample type metadata. Nested schema for samples:
TargetMetricName This property is required. string
(String) Target metric field alias name.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
aggType This property is required. String
(String) Aggregation type.

  • Constraints: Allowable values are: unspecified, min, max, count, avg, sum, histogram, samples.
enabled This property is required. Boolean
(Boolean) Is enabled.
histograms This property is required. List<GetLogsE2mMetricFieldAggregationHistogram>
(List) E2M aggregate histogram type metadata. Nested schema for histogram:
samples This property is required. List<GetLogsE2mMetricFieldAggregationSample>
(List) E2M sample type metadata. Nested schema for samples:
targetMetricName This property is required. String
(String) Target metric field alias name.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
aggType This property is required. string
(String) Aggregation type.

  • Constraints: Allowable values are: unspecified, min, max, count, avg, sum, histogram, samples.
enabled This property is required. boolean
(Boolean) Is enabled.
histograms This property is required. GetLogsE2mMetricFieldAggregationHistogram[]
(List) E2M aggregate histogram type metadata. Nested schema for histogram:
samples This property is required. GetLogsE2mMetricFieldAggregationSample[]
(List) E2M sample type metadata. Nested schema for samples:
targetMetricName This property is required. string
(String) Target metric field alias name.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
agg_type This property is required. str
(String) Aggregation type.

  • Constraints: Allowable values are: unspecified, min, max, count, avg, sum, histogram, samples.
enabled This property is required. bool
(Boolean) Is enabled.
histograms This property is required. Sequence[GetLogsE2mMetricFieldAggregationHistogram]
(List) E2M aggregate histogram type metadata. Nested schema for histogram:
samples This property is required. Sequence[GetLogsE2mMetricFieldAggregationSample]
(List) E2M sample type metadata. Nested schema for samples:
target_metric_name This property is required. str
(String) Target metric field alias name.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
aggType This property is required. String
(String) Aggregation type.

  • Constraints: Allowable values are: unspecified, min, max, count, avg, sum, histogram, samples.
enabled This property is required. Boolean
(Boolean) Is enabled.
histograms This property is required. List<Property Map>
(List) E2M aggregate histogram type metadata. Nested schema for histogram:
samples This property is required. List<Property Map>
(List) E2M sample type metadata. Nested schema for samples:
targetMetricName This property is required. String
(String) Target metric field alias name.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.

GetLogsE2mMetricFieldAggregationHistogram

Buckets This property is required. List<double>
(List) Buckets of the E2M.

  • Constraints: The maximum length is 4096 items. The minimum length is 0 items.
Buckets This property is required. []float64
(List) Buckets of the E2M.

  • Constraints: The maximum length is 4096 items. The minimum length is 0 items.
buckets This property is required. List<Double>
(List) Buckets of the E2M.

  • Constraints: The maximum length is 4096 items. The minimum length is 0 items.
buckets This property is required. number[]
(List) Buckets of the E2M.

  • Constraints: The maximum length is 4096 items. The minimum length is 0 items.
buckets This property is required. Sequence[float]
(List) Buckets of the E2M.

  • Constraints: The maximum length is 4096 items. The minimum length is 0 items.
buckets This property is required. List<Number>
(List) Buckets of the E2M.

  • Constraints: The maximum length is 4096 items. The minimum length is 0 items.

GetLogsE2mMetricFieldAggregationSample

SampleType This property is required. string
(String) Sample type min/max.

  • Constraints: Allowable values are: unspecified, min, max.
SampleType This property is required. string
(String) Sample type min/max.

  • Constraints: Allowable values are: unspecified, min, max.
sampleType This property is required. String
(String) Sample type min/max.

  • Constraints: Allowable values are: unspecified, min, max.
sampleType This property is required. string
(String) Sample type min/max.

  • Constraints: Allowable values are: unspecified, min, max.
sample_type This property is required. str
(String) Sample type min/max.

  • Constraints: Allowable values are: unspecified, min, max.
sampleType This property is required. String
(String) Sample type min/max.

  • Constraints: Allowable values are: unspecified, min, max.

GetLogsE2mMetricLabel

SourceField This property is required. string
(String) Metric label source field.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
TargetLabel This property is required. string
(String) Metric label target alias name.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression /^[\\w\/-]+$/.
SourceField This property is required. string
(String) Metric label source field.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
TargetLabel This property is required. string
(String) Metric label target alias name.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression /^[\\w\/-]+$/.
sourceField This property is required. String
(String) Metric label source field.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
targetLabel This property is required. String
(String) Metric label target alias name.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression /^[\\w\/-]+$/.
sourceField This property is required. string
(String) Metric label source field.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
targetLabel This property is required. string
(String) Metric label target alias name.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression /^[\\w\/-]+$/.
source_field This property is required. str
(String) Metric label source field.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
target_label This property is required. str
(String) Metric label target alias name.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression /^[\\w\/-]+$/.
sourceField This property is required. String
(String) Metric label source field.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
targetLabel This property is required. String
(String) Metric label target alias name.

  • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression /^[\\w\/-]+$/.

GetLogsE2mPermutation

HasExceededLimit This property is required. bool
(Boolean) Flag to indicate if limit was exceeded.
Limit This property is required. double
(Integer) E2M permutation limit.
HasExceededLimit This property is required. bool
(Boolean) Flag to indicate if limit was exceeded.
Limit This property is required. float64
(Integer) E2M permutation limit.
hasExceededLimit This property is required. Boolean
(Boolean) Flag to indicate if limit was exceeded.
limit This property is required. Double
(Integer) E2M permutation limit.
hasExceededLimit This property is required. boolean
(Boolean) Flag to indicate if limit was exceeded.
limit This property is required. number
(Integer) E2M permutation limit.
has_exceeded_limit This property is required. bool
(Boolean) Flag to indicate if limit was exceeded.
limit This property is required. float
(Integer) E2M permutation limit.
hasExceededLimit This property is required. Boolean
(Boolean) Flag to indicate if limit was exceeded.
limit This property is required. Number
(Integer) E2M permutation limit.

Package Details

Repository
ibm ibm-cloud/terraform-provider-ibm
License
Notes
This Pulumi package is based on the ibm Terraform Provider.