1. Packages
  2. Ibm Provider
  3. API Docs
  4. getLogsE2ms
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

ibm.getLogsE2ms

Explore with Pulumi AI

ibm logo
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

    Provides a read-only data source to retrieve information about logs_e2ms. 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 logsE2msInstance = ibm.getLogsE2ms({
        instanceId: ibm_logs_e2m.logs_e2m_instance.instance_id,
        region: ibm_logs_e2m.logs_e2m_instance.region,
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    logs_e2ms_instance = ibm.get_logs_e2ms(instance_id=ibm_logs_e2m["logs_e2m_instance"]["instance_id"],
        region=ibm_logs_e2m["logs_e2m_instance"]["region"])
    
    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.GetLogsE2ms(ctx, &ibm.GetLogsE2msArgs{
    			InstanceId: ibm_logs_e2m.Logs_e2m_instance.Instance_id,
    			Region:     pulumi.StringRef(ibm_logs_e2m.Logs_e2m_instance.Region),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ibm = Pulumi.Ibm;
    
    return await Deployment.RunAsync(() => 
    {
        var logsE2msInstance = Ibm.GetLogsE2ms.Invoke(new()
        {
            InstanceId = ibm_logs_e2m.Logs_e2m_instance.Instance_id,
            Region = ibm_logs_e2m.Logs_e2m_instance.Region,
        });
    
    });
    
    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.GetLogsE2msArgs;
    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 logsE2msInstance = IbmFunctions.getLogsE2ms(GetLogsE2msArgs.builder()
                .instanceId(ibm_logs_e2m.logs_e2m_instance().instance_id())
                .region(ibm_logs_e2m.logs_e2m_instance().region())
                .build());
    
        }
    }
    
    variables:
      logsE2msInstance:
        fn::invoke:
          function: ibm:getLogsE2ms
          arguments:
            instanceId: ${ibm_logs_e2m.logs_e2m_instance.instance_id}
            region: ${ibm_logs_e2m.logs_e2m_instance.region}
    

    Using getLogsE2ms

    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 getLogsE2ms(args: GetLogsE2msArgs, opts?: InvokeOptions): Promise<GetLogsE2msResult>
    function getLogsE2msOutput(args: GetLogsE2msOutputArgs, opts?: InvokeOptions): Output<GetLogsE2msResult>
    def get_logs_e2ms(endpoint_type: Optional[str] = None,
                      id: Optional[str] = None,
                      instance_id: Optional[str] = None,
                      region: Optional[str] = None,
                      opts: Optional[InvokeOptions] = None) -> GetLogsE2msResult
    def get_logs_e2ms_output(endpoint_type: Optional[pulumi.Input[str]] = None,
                      id: Optional[pulumi.Input[str]] = None,
                      instance_id: Optional[pulumi.Input[str]] = None,
                      region: Optional[pulumi.Input[str]] = None,
                      opts: Optional[InvokeOptions] = None) -> Output[GetLogsE2msResult]
    func GetLogsE2ms(ctx *Context, args *GetLogsE2msArgs, opts ...InvokeOption) (*GetLogsE2msResult, error)
    func GetLogsE2msOutput(ctx *Context, args *GetLogsE2msOutputArgs, opts ...InvokeOption) GetLogsE2msResultOutput

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

    public static class GetLogsE2ms 
    {
        public static Task<GetLogsE2msResult> InvokeAsync(GetLogsE2msArgs args, InvokeOptions? opts = null)
        public static Output<GetLogsE2msResult> Invoke(GetLogsE2msInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetLogsE2msResult> getLogsE2ms(GetLogsE2msArgs args, InvokeOptions options)
    public static Output<GetLogsE2msResult> getLogsE2ms(GetLogsE2msArgs args, InvokeOptions options)
    
    fn::invoke:
      function: ibm:index/getLogsE2ms:getLogsE2ms
      arguments:
        # arguments dictionary

    The following arguments are supported:

    InstanceId string
    Cloud Logs Instance GUID.
    EndpointType string
    Id string
    (String) E2M unique ID, required on update requests.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    Region string
    Cloud Logs Instance Region.
    InstanceId string
    Cloud Logs Instance GUID.
    EndpointType string
    Id string
    (String) E2M unique ID, required on update requests.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    Region string
    Cloud Logs Instance Region.
    instanceId String
    Cloud Logs Instance GUID.
    endpointType String
    id String
    (String) E2M unique ID, required on update requests.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    region String
    Cloud Logs Instance Region.
    instanceId string
    Cloud Logs Instance GUID.
    endpointType string
    id string
    (String) E2M unique ID, required on update requests.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    region string
    Cloud Logs Instance Region.
    instance_id str
    Cloud Logs Instance GUID.
    endpoint_type str
    id str
    (String) E2M unique ID, required on update requests.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    region str
    Cloud Logs Instance Region.
    instanceId String
    Cloud Logs Instance GUID.
    endpointType String
    id String
    (String) E2M unique ID, required on update requests.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    region String
    Cloud Logs Instance Region.

    getLogsE2ms Result

    The following output properties are available:

    Events2metrics List<GetLogsE2msEvents2metric>
    (List) List of event to metrics definitions.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for events2metrics:
    Id string
    (String) E2M unique ID, required on update requests.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    InstanceId string
    Region string
    EndpointType string
    Events2metrics []GetLogsE2msEvents2metric
    (List) List of event to metrics definitions.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for events2metrics:
    Id string
    (String) E2M unique ID, required on update requests.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    InstanceId string
    Region string
    EndpointType string
    events2metrics List<GetLogsE2msEvents2metric>
    (List) List of event to metrics definitions.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for events2metrics:
    id String
    (String) E2M unique ID, required on update requests.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    instanceId String
    region String
    endpointType String
    events2metrics GetLogsE2msEvents2metric[]
    (List) List of event to metrics definitions.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for events2metrics:
    id string
    (String) E2M unique ID, required on update requests.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    instanceId string
    region string
    endpointType string
    events2metrics Sequence[GetLogsE2msEvents2metric]
    (List) List of event to metrics definitions.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for events2metrics:
    id str
    (String) E2M unique ID, required on update requests.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    instance_id str
    region str
    endpoint_type str
    events2metrics List<Property Map>
    (List) List of event to metrics definitions.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for events2metrics:
    id String
    (String) E2M unique ID, required on update requests.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    instanceId String
    region String
    endpointType String

    Supporting Types

    GetLogsE2msEvents2metric

    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
    (String) E2M unique ID, required on update requests.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    IsInternal bool
    (Boolean) A flag that represents if the e2m is for internal usage.
    LogsQueries List<GetLogsE2msEvents2metricLogsQuery>
    (List) E2M logs query. Nested schema for logs_query:
    MetricFields List<GetLogsE2msEvents2metricMetricField>
    (List) E2M metric fields.

    • Constraints: The maximum length is 10 items. The minimum length is 0 items. Nested schema for metric_fields:
    MetricLabels List<GetLogsE2msEvents2metricMetricLabel>
    (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<GetLogsE2msEvents2metricPermutation>
    (List) Represents the limit of the permutations and if the limit was exceeded. Nested schema for permutations:
    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}]+$.
    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
    (String) E2M unique ID, required on update requests.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    IsInternal bool
    (Boolean) A flag that represents if the e2m is for internal usage.
    LogsQueries []GetLogsE2msEvents2metricLogsQuery
    (List) E2M logs query. Nested schema for logs_query:
    MetricFields []GetLogsE2msEvents2metricMetricField
    (List) E2M metric fields.

    • Constraints: The maximum length is 10 items. The minimum length is 0 items. Nested schema for metric_fields:
    MetricLabels []GetLogsE2msEvents2metricMetricLabel
    (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 []GetLogsE2msEvents2metricPermutation
    (List) Represents the limit of the permutations and if the limit was exceeded. Nested schema for permutations:
    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}]+$.
    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
    (String) E2M unique ID, required on update requests.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    isInternal Boolean
    (Boolean) A flag that represents if the e2m is for internal usage.
    logsQueries List<GetLogsE2msEvents2metricLogsQuery>
    (List) E2M logs query. Nested schema for logs_query:
    metricFields List<GetLogsE2msEvents2metricMetricField>
    (List) E2M metric fields.

    • Constraints: The maximum length is 10 items. The minimum length is 0 items. Nested schema for metric_fields:
    metricLabels List<GetLogsE2msEvents2metricMetricLabel>
    (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<GetLogsE2msEvents2metricPermutation>
    (List) Represents the limit of the permutations and if the limit was exceeded. Nested schema for permutations:
    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}]+$.
    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
    (String) E2M unique ID, required on update requests.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    isInternal boolean
    (Boolean) A flag that represents if the e2m is for internal usage.
    logsQueries GetLogsE2msEvents2metricLogsQuery[]
    (List) E2M logs query. Nested schema for logs_query:
    metricFields GetLogsE2msEvents2metricMetricField[]
    (List) E2M metric fields.

    • Constraints: The maximum length is 10 items. The minimum length is 0 items. Nested schema for metric_fields:
    metricLabels GetLogsE2msEvents2metricMetricLabel[]
    (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 GetLogsE2msEvents2metricPermutation[]
    (List) Represents the limit of the permutations and if the limit was exceeded. Nested schema for permutations:
    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}]+$.
    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
    (String) E2M unique ID, required on update requests.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    is_internal bool
    (Boolean) A flag that represents if the e2m is for internal usage.
    logs_queries Sequence[GetLogsE2msEvents2metricLogsQuery]
    (List) E2M logs query. Nested schema for logs_query:
    metric_fields Sequence[GetLogsE2msEvents2metricMetricField]
    (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[GetLogsE2msEvents2metricMetricLabel]
    (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[GetLogsE2msEvents2metricPermutation]
    (List) Represents the limit of the permutations and if the limit was exceeded. Nested schema for permutations:
    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}]+$.
    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
    (String) E2M unique ID, required on update requests.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    isInternal Boolean
    (Boolean) A flag that represents if the e2m is for internal usage.
    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:
    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}]+$.

    GetLogsE2msEvents2metricLogsQuery

    Alias 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 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 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 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 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 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 []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 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 []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 []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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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.

    GetLogsE2msEvents2metricMetricField

    Aggregations List<GetLogsE2msEvents2metricMetricFieldAggregation>
    (List) Represents Aggregation type list.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for aggregations:
    SourceField 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 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 []GetLogsE2msEvents2metricMetricFieldAggregation
    (List) Represents Aggregation type list.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for aggregations:
    SourceField 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 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 List<GetLogsE2msEvents2metricMetricFieldAggregation>
    (List) Represents Aggregation type list.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for aggregations:
    sourceField 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 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 GetLogsE2msEvents2metricMetricFieldAggregation[]
    (List) Represents Aggregation type list.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for aggregations:
    sourceField 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 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 Sequence[GetLogsE2msEvents2metricMetricFieldAggregation]
    (List) Represents Aggregation type list.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for aggregations:
    source_field 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 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 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 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 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\/-]+$/.

    GetLogsE2msEvents2metricMetricFieldAggregation

    AggType string
    (String) Aggregation type.

    • Constraints: Allowable values are: unspecified, min, max, count, avg, sum, histogram, samples.
    Enabled bool
    (Boolean) Is enabled.
    Histograms List<GetLogsE2msEvents2metricMetricFieldAggregationHistogram>
    (List) E2M aggregate histogram type metadata. Nested schema for histogram:
    Samples List<GetLogsE2msEvents2metricMetricFieldAggregationSample>
    (List) E2M sample type metadata. Nested schema for samples:
    TargetMetricName 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 string
    (String) Aggregation type.

    • Constraints: Allowable values are: unspecified, min, max, count, avg, sum, histogram, samples.
    Enabled bool
    (Boolean) Is enabled.
    Histograms []GetLogsE2msEvents2metricMetricFieldAggregationHistogram
    (List) E2M aggregate histogram type metadata. Nested schema for histogram:
    Samples []GetLogsE2msEvents2metricMetricFieldAggregationSample
    (List) E2M sample type metadata. Nested schema for samples:
    TargetMetricName 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 String
    (String) Aggregation type.

    • Constraints: Allowable values are: unspecified, min, max, count, avg, sum, histogram, samples.
    enabled Boolean
    (Boolean) Is enabled.
    histograms List<GetLogsE2msEvents2metricMetricFieldAggregationHistogram>
    (List) E2M aggregate histogram type metadata. Nested schema for histogram:
    samples List<GetLogsE2msEvents2metricMetricFieldAggregationSample>
    (List) E2M sample type metadata. Nested schema for samples:
    targetMetricName 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 string
    (String) Aggregation type.

    • Constraints: Allowable values are: unspecified, min, max, count, avg, sum, histogram, samples.
    enabled boolean
    (Boolean) Is enabled.
    histograms GetLogsE2msEvents2metricMetricFieldAggregationHistogram[]
    (List) E2M aggregate histogram type metadata. Nested schema for histogram:
    samples GetLogsE2msEvents2metricMetricFieldAggregationSample[]
    (List) E2M sample type metadata. Nested schema for samples:
    targetMetricName 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 str
    (String) Aggregation type.

    • Constraints: Allowable values are: unspecified, min, max, count, avg, sum, histogram, samples.
    enabled bool
    (Boolean) Is enabled.
    histograms Sequence[GetLogsE2msEvents2metricMetricFieldAggregationHistogram]
    (List) E2M aggregate histogram type metadata. Nested schema for histogram:
    samples Sequence[GetLogsE2msEvents2metricMetricFieldAggregationSample]
    (List) E2M sample type metadata. Nested schema for samples:
    target_metric_name 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 String
    (String) Aggregation type.

    • Constraints: Allowable values are: unspecified, min, max, count, avg, sum, histogram, samples.
    enabled Boolean
    (Boolean) Is enabled.
    histograms List<Property Map>
    (List) E2M aggregate histogram type metadata. Nested schema for histogram:
    samples List<Property Map>
    (List) E2M sample type metadata. Nested schema for samples:
    targetMetricName 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}]+$.

    GetLogsE2msEvents2metricMetricFieldAggregationHistogram

    Buckets List<double>
    (List) Buckets of the E2M.

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

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

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

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

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

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

    GetLogsE2msEvents2metricMetricFieldAggregationSample

    SampleType string
    (String) Sample type min/max.

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

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

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

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

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

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

    GetLogsE2msEvents2metricMetricLabel

    SourceField 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 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 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 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 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 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 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 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 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 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 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 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\/-]+$/.

    GetLogsE2msEvents2metricPermutation

    HasExceededLimit bool
    (Boolean) Flag to indicate if limit was exceeded.
    Limit double
    (Integer) E2M permutation limit.
    HasExceededLimit bool
    (Boolean) Flag to indicate if limit was exceeded.
    Limit float64
    (Integer) E2M permutation limit.
    hasExceededLimit Boolean
    (Boolean) Flag to indicate if limit was exceeded.
    limit Double
    (Integer) E2M permutation limit.
    hasExceededLimit boolean
    (Boolean) Flag to indicate if limit was exceeded.
    limit number
    (Integer) E2M permutation limit.
    has_exceeded_limit bool
    (Boolean) Flag to indicate if limit was exceeded.
    limit float
    (Integer) E2M permutation limit.
    hasExceededLimit Boolean
    (Boolean) Flag to indicate if limit was exceeded.
    limit 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.
    ibm logo
    ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud