1. Packages
  2. Ibm Provider
  3. API Docs
  4. getLogsExtensions
Viewing docs for ibm 2.0.0
published on Monday, Mar 30, 2026 by ibm-cloud
Viewing docs for ibm 2.0.0
published on Monday, Mar 30, 2026 by ibm-cloud

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

    Example Usage

    List all extensions

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const logsExtensionsInstance = ibm.getLogsExtensions({
        instanceId: logsInstance.guid,
        region: logsInstance.location,
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    logs_extensions_instance = ibm.get_logs_extensions(instance_id=logs_instance["guid"],
        region=logs_instance["location"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/v2/ibm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ibm.GetLogsExtensions(ctx, &ibm.GetLogsExtensionsArgs{
    			InstanceId: logsInstance.Guid,
    			Region:     pulumi.StringRef(logsInstance.Location),
    		}, 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 logsExtensionsInstance = Ibm.GetLogsExtensions.Invoke(new()
        {
            InstanceId = logsInstance.Guid,
            Region = logsInstance.Location,
        });
    
    });
    
    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.GetLogsExtensionsArgs;
    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 logsExtensionsInstance = IbmFunctions.getLogsExtensions(GetLogsExtensionsArgs.builder()
                .instanceId(logsInstance.guid())
                .region(logsInstance.location())
                .build());
    
        }
    }
    
    variables:
      logsExtensionsInstance:
        fn::invoke:
          function: ibm:getLogsExtensions
          arguments:
            instanceId: ${logsInstance.guid}
            region: ${logsInstance.location}
    

    List all deployed extensions

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const deployments = ibm.getLogsExtensions({
        instanceId: logsInstance.guid,
        region: logsInstance.location,
        deployed: true,
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    deployments = ibm.get_logs_extensions(instance_id=logs_instance["guid"],
        region=logs_instance["location"],
        deployed=True)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/v2/ibm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ibm.GetLogsExtensions(ctx, &ibm.GetLogsExtensionsArgs{
    			InstanceId: logsInstance.Guid,
    			Region:     pulumi.StringRef(logsInstance.Location),
    			Deployed:   pulumi.BoolRef(true),
    		}, 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 deployments = Ibm.GetLogsExtensions.Invoke(new()
        {
            InstanceId = logsInstance.Guid,
            Region = logsInstance.Location,
            Deployed = true,
        });
    
    });
    
    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.GetLogsExtensionsArgs;
    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 deployments = IbmFunctions.getLogsExtensions(GetLogsExtensionsArgs.builder()
                .instanceId(logsInstance.guid())
                .region(logsInstance.location())
                .deployed(true)
                .build());
    
        }
    }
    
    variables:
      deployments:
        fn::invoke:
          function: ibm:getLogsExtensions
          arguments:
            instanceId: ${logsInstance.guid}
            region: ${logsInstance.location}
            deployed: true
    

    Using getLogsExtensions

    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 getLogsExtensions(args: GetLogsExtensionsArgs, opts?: InvokeOptions): Promise<GetLogsExtensionsResult>
    function getLogsExtensionsOutput(args: GetLogsExtensionsOutputArgs, opts?: InvokeOptions): Output<GetLogsExtensionsResult>
    def get_logs_extensions(deployed: Optional[bool] = None,
                            endpoint_type: Optional[str] = None,
                            id: Optional[str] = None,
                            instance_id: Optional[str] = None,
                            region: Optional[str] = None,
                            opts: Optional[InvokeOptions] = None) -> GetLogsExtensionsResult
    def get_logs_extensions_output(deployed: Optional[pulumi.Input[bool]] = None,
                            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[GetLogsExtensionsResult]
    func GetLogsExtensions(ctx *Context, args *GetLogsExtensionsArgs, opts ...InvokeOption) (*GetLogsExtensionsResult, error)
    func GetLogsExtensionsOutput(ctx *Context, args *GetLogsExtensionsOutputArgs, opts ...InvokeOption) GetLogsExtensionsResultOutput

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

    public static class GetLogsExtensions 
    {
        public static Task<GetLogsExtensionsResult> InvokeAsync(GetLogsExtensionsArgs args, InvokeOptions? opts = null)
        public static Output<GetLogsExtensionsResult> Invoke(GetLogsExtensionsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetLogsExtensionsResult> getLogsExtensions(GetLogsExtensionsArgs args, InvokeOptions options)
    public static Output<GetLogsExtensionsResult> getLogsExtensions(GetLogsExtensionsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: ibm:index/getLogsExtensions:getLogsExtensions
      arguments:
        # arguments dictionary

    The following arguments are supported:

    InstanceId string
    Cloud Logs Instance GUID.
    Deployed bool
    Optional deployment filter. If omitted, returns all extensions. If true, returns only deployed extensions. If false, returns only non-deployed extensions.
    EndpointType string
    Cloud Logs Instance Endpoint type. Allowed values public and private.
    Id string
    (String) The ID of the Extension item.

    • 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}]+$/.
    Region string
    Cloud Logs Instance Region.
    InstanceId string
    Cloud Logs Instance GUID.
    Deployed bool
    Optional deployment filter. If omitted, returns all extensions. If true, returns only deployed extensions. If false, returns only non-deployed extensions.
    EndpointType string
    Cloud Logs Instance Endpoint type. Allowed values public and private.
    Id string
    (String) The ID of the Extension item.

    • 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}]+$/.
    Region string
    Cloud Logs Instance Region.
    instanceId String
    Cloud Logs Instance GUID.
    deployed Boolean
    Optional deployment filter. If omitted, returns all extensions. If true, returns only deployed extensions. If false, returns only non-deployed extensions.
    endpointType String
    Cloud Logs Instance Endpoint type. Allowed values public and private.
    id String
    (String) The ID of the Extension item.

    • 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}]+$/.
    region String
    Cloud Logs Instance Region.
    instanceId string
    Cloud Logs Instance GUID.
    deployed boolean
    Optional deployment filter. If omitted, returns all extensions. If true, returns only deployed extensions. If false, returns only non-deployed extensions.
    endpointType string
    Cloud Logs Instance Endpoint type. Allowed values public and private.
    id string
    (String) The ID of the Extension item.

    • 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}]+$/.
    region string
    Cloud Logs Instance Region.
    instance_id str
    Cloud Logs Instance GUID.
    deployed bool
    Optional deployment filter. If omitted, returns all extensions. If true, returns only deployed extensions. If false, returns only non-deployed extensions.
    endpoint_type str
    Cloud Logs Instance Endpoint type. Allowed values public and private.
    id str
    (String) The ID of the Extension item.

    • 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}]+$/.
    region str
    Cloud Logs Instance Region.
    instanceId String
    Cloud Logs Instance GUID.
    deployed Boolean
    Optional deployment filter. If omitted, returns all extensions. If true, returns only deployed extensions. If false, returns only non-deployed extensions.
    endpointType String
    Cloud Logs Instance Endpoint type. Allowed values public and private.
    id String
    (String) The ID of the Extension item.

    • 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}]+$/.
    region String
    Cloud Logs Instance Region.

    getLogsExtensions Result

    The following output properties are available:

    Extensions List<GetLogsExtensionsExtension>
    (List) List of Extensions.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for extensions:
    Id string
    (String) The ID of the Extension item.

    • 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}]+$/.
    InstanceId string
    Region string
    Deployed bool
    EndpointType string
    Extensions []GetLogsExtensionsExtension
    (List) List of Extensions.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for extensions:
    Id string
    (String) The ID of the Extension item.

    • 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}]+$/.
    InstanceId string
    Region string
    Deployed bool
    EndpointType string
    extensions List<GetLogsExtensionsExtension>
    (List) List of Extensions.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for extensions:
    id String
    (String) The ID of the Extension item.

    • 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}]+$/.
    instanceId String
    region String
    deployed Boolean
    endpointType String
    extensions GetLogsExtensionsExtension[]
    (List) List of Extensions.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for extensions:
    id string
    (String) The ID of the Extension item.

    • 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}]+$/.
    instanceId string
    region string
    deployed boolean
    endpointType string
    extensions Sequence[GetLogsExtensionsExtension]
    (List) List of Extensions.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for extensions:
    id str
    (String) The ID of the Extension item.

    • 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}]+$/.
    instance_id str
    region str
    deployed bool
    endpoint_type str
    extensions List<Property Map>
    (List) List of Extensions.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for extensions:
    id String
    (String) The ID of the Extension item.

    • 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}]+$/.
    instanceId String
    region String
    deployed Boolean
    endpointType String

    Supporting Types

    GetLogsExtensionsExtension

    Changelogs List<GetLogsExtensionsExtensionChangelog>
    (List) The of changelog entries made in each version of the Extension.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for changelog:
    Deployments List<GetLogsExtensionsExtensionDeployment>
    (List) Deployment details of an Extension scoped by extension ID in the path. Nested schema for deployment:
    Deprecations List<GetLogsExtensionsExtensionDeprecation>
    (List) Deprecation details of the Extension. Nested schema for deprecation:
    Id string
    (String) The ID of the Extension item.

    • 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}]+$/.
    Keywords List<string>
    (List) The list of keywords to enhance search capabilities on the front-end side.

    • 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.
    Name string
    (String) The name of the Extension item.

    • 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}]+$/.
    Revisions List<GetLogsExtensionsExtensionRevision>
    (List) The list of all revisions of the Extension, each representing a versioned snapshot of the Extension's functionality and appearance.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for revisions:
    Changelogs []GetLogsExtensionsExtensionChangelog
    (List) The of changelog entries made in each version of the Extension.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for changelog:
    Deployments []GetLogsExtensionsExtensionDeployment
    (List) Deployment details of an Extension scoped by extension ID in the path. Nested schema for deployment:
    Deprecations []GetLogsExtensionsExtensionDeprecation
    (List) Deprecation details of the Extension. Nested schema for deprecation:
    Id string
    (String) The ID of the Extension item.

    • 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}]+$/.
    Keywords []string
    (List) The list of keywords to enhance search capabilities on the front-end side.

    • 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.
    Name string
    (String) The name of the Extension item.

    • 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}]+$/.
    Revisions []GetLogsExtensionsExtensionRevision
    (List) The list of all revisions of the Extension, each representing a versioned snapshot of the Extension's functionality and appearance.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for revisions:
    changelogs List<GetLogsExtensionsExtensionChangelog>
    (List) The of changelog entries made in each version of the Extension.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for changelog:
    deployments List<GetLogsExtensionsExtensionDeployment>
    (List) Deployment details of an Extension scoped by extension ID in the path. Nested schema for deployment:
    deprecations List<GetLogsExtensionsExtensionDeprecation>
    (List) Deprecation details of the Extension. Nested schema for deprecation:
    id String
    (String) The ID of the Extension item.

    • 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}]+$/.
    keywords List<String>
    (List) The list of keywords to enhance search capabilities on the front-end side.

    • 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.
    name String
    (String) The name of the Extension item.

    • 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}]+$/.
    revisions List<GetLogsExtensionsExtensionRevision>
    (List) The list of all revisions of the Extension, each representing a versioned snapshot of the Extension's functionality and appearance.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for revisions:
    changelogs GetLogsExtensionsExtensionChangelog[]
    (List) The of changelog entries made in each version of the Extension.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for changelog:
    deployments GetLogsExtensionsExtensionDeployment[]
    (List) Deployment details of an Extension scoped by extension ID in the path. Nested schema for deployment:
    deprecations GetLogsExtensionsExtensionDeprecation[]
    (List) Deprecation details of the Extension. Nested schema for deprecation:
    id string
    (String) The ID of the Extension item.

    • 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}]+$/.
    keywords string[]
    (List) The list of keywords to enhance search capabilities on the front-end side.

    • 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.
    name string
    (String) The name of the Extension item.

    • 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}]+$/.
    revisions GetLogsExtensionsExtensionRevision[]
    (List) The list of all revisions of the Extension, each representing a versioned snapshot of the Extension's functionality and appearance.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for revisions:
    changelogs Sequence[GetLogsExtensionsExtensionChangelog]
    (List) The of changelog entries made in each version of the Extension.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for changelog:
    deployments Sequence[GetLogsExtensionsExtensionDeployment]
    (List) Deployment details of an Extension scoped by extension ID in the path. Nested schema for deployment:
    deprecations Sequence[GetLogsExtensionsExtensionDeprecation]
    (List) Deprecation details of the Extension. Nested schema for deprecation:
    id str
    (String) The ID of the Extension item.

    • 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}]+$/.
    keywords Sequence[str]
    (List) The list of keywords to enhance search capabilities on the front-end side.

    • 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.
    name str
    (String) The name of the Extension item.

    • 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}]+$/.
    revisions Sequence[GetLogsExtensionsExtensionRevision]
    (List) The list of all revisions of the Extension, each representing a versioned snapshot of the Extension's functionality and appearance.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for revisions:
    changelogs List<Property Map>
    (List) The of changelog entries made in each version of the Extension.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for changelog:
    deployments List<Property Map>
    (List) Deployment details of an Extension scoped by extension ID in the path. Nested schema for deployment:
    deprecations List<Property Map>
    (List) Deprecation details of the Extension. Nested schema for deprecation:
    id String
    (String) The ID of the Extension item.

    • 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}]+$/.
    keywords List<String>
    (List) The list of keywords to enhance search capabilities on the front-end side.

    • 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.
    name String
    (String) The name of the Extension item.

    • 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}]+$/.
    revisions List<Property Map>
    (List) The list of all revisions of the Extension, each representing a versioned snapshot of the Extension's functionality and appearance.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for revisions:

    GetLogsExtensionsExtensionChangelog

    DescriptionMd string
    (String) The description of the changes made in this version, formatted in Markdown for rich text presentation.

    • 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}\\r\\n\\t]+$/.
    Version string
    (String) The version identifier for this revision of the Extension.

    • 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}]+$/.
    DescriptionMd string
    (String) The description of the changes made in this version, formatted in Markdown for rich text presentation.

    • 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}\\r\\n\\t]+$/.
    Version string
    (String) The version identifier for this revision of the Extension.

    • 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}]+$/.
    descriptionMd String
    (String) The description of the changes made in this version, formatted in Markdown for rich text presentation.

    • 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}\\r\\n\\t]+$/.
    version String
    (String) The version identifier for this revision of the Extension.

    • 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}]+$/.
    descriptionMd string
    (String) The description of the changes made in this version, formatted in Markdown for rich text presentation.

    • 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}\\r\\n\\t]+$/.
    version string
    (String) The version identifier for this revision of the Extension.

    • 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_md str
    (String) The description of the changes made in this version, formatted in Markdown for rich text presentation.

    • 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}\\r\\n\\t]+$/.
    version str
    (String) The version identifier for this revision of the Extension.

    • 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}]+$/.
    descriptionMd String
    (String) The description of the changes made in this version, formatted in Markdown for rich text presentation.

    • 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}\\r\\n\\t]+$/.
    version String
    (String) The version identifier for this revision of the Extension.

    • 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}]+$/.

    GetLogsExtensionsExtensionDeployment

    Applications List<string>
    (List) Applications that the Extension is deployed for. When this is empty, it is applied to all applications.

    • 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.
    Id string
    (String) The ID of the Extension item.

    • 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}]+$/.
    ItemIds List<string>
    (List) The list of Extension item IDs to deploy.

    • 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 1 item.
    Subsystems List<string>
    (List) Subsystems that the Extension is deployed. When this is empty, it is applied to all subsystems.

    • 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.
    Version string
    (String) The version identifier for this revision of the Extension.

    • 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}]+$/.
    Applications []string
    (List) Applications that the Extension is deployed for. When this is empty, it is applied to all applications.

    • 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.
    Id string
    (String) The ID of the Extension item.

    • 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}]+$/.
    ItemIds []string
    (List) The list of Extension item IDs to deploy.

    • 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 1 item.
    Subsystems []string
    (List) Subsystems that the Extension is deployed. When this is empty, it is applied to all subsystems.

    • 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.
    Version string
    (String) The version identifier for this revision of the Extension.

    • 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}]+$/.
    applications List<String>
    (List) Applications that the Extension is deployed for. When this is empty, it is applied to all applications.

    • 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.
    id String
    (String) The ID of the Extension item.

    • 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}]+$/.
    itemIds List<String>
    (List) The list of Extension item IDs to deploy.

    • 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 1 item.
    subsystems List<String>
    (List) Subsystems that the Extension is deployed. When this is empty, it is applied to all subsystems.

    • 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.
    version String
    (String) The version identifier for this revision of the Extension.

    • 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}]+$/.
    applications string[]
    (List) Applications that the Extension is deployed for. When this is empty, it is applied to all applications.

    • 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.
    id string
    (String) The ID of the Extension item.

    • 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}]+$/.
    itemIds string[]
    (List) The list of Extension item IDs to deploy.

    • 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 1 item.
    subsystems string[]
    (List) Subsystems that the Extension is deployed. When this is empty, it is applied to all subsystems.

    • 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.
    version string
    (String) The version identifier for this revision of the Extension.

    • 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}]+$/.
    applications Sequence[str]
    (List) Applications that the Extension is deployed for. When this is empty, it is applied to all applications.

    • 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.
    id str
    (String) The ID of the Extension item.

    • 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}]+$/.
    item_ids Sequence[str]
    (List) The list of Extension item IDs to deploy.

    • 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 1 item.
    subsystems Sequence[str]
    (List) Subsystems that the Extension is deployed. When this is empty, it is applied to all subsystems.

    • 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.
    version str
    (String) The version identifier for this revision of the Extension.

    • 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}]+$/.
    applications List<String>
    (List) Applications that the Extension is deployed for. When this is empty, it is applied to all applications.

    • 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.
    id String
    (String) The ID of the Extension item.

    • 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}]+$/.
    itemIds List<String>
    (List) The list of Extension item IDs to deploy.

    • 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 1 item.
    subsystems List<String>
    (List) Subsystems that the Extension is deployed. When this is empty, it is applied to all subsystems.

    • 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.
    version String
    (String) The version identifier for this revision of the Extension.

    • 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}]+$/.

    GetLogsExtensionsExtensionDeprecation

    Reason string
    (String) The reason why the element (e.g., an Extension or a version of it) is being deprecated.

    • 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}\\r\\n\\t]+$/.
    ReplacementExtensions List<string>
    (List) The list of Extension IDs that serve as replacements for the deprecated element.

    • 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.
    Reason string
    (String) The reason why the element (e.g., an Extension or a version of it) is being deprecated.

    • 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}\\r\\n\\t]+$/.
    ReplacementExtensions []string
    (List) The list of Extension IDs that serve as replacements for the deprecated element.

    • 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.
    reason String
    (String) The reason why the element (e.g., an Extension or a version of it) is being deprecated.

    • 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}\\r\\n\\t]+$/.
    replacementExtensions List<String>
    (List) The list of Extension IDs that serve as replacements for the deprecated element.

    • 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.
    reason string
    (String) The reason why the element (e.g., an Extension or a version of it) is being deprecated.

    • 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}\\r\\n\\t]+$/.
    replacementExtensions string[]
    (List) The list of Extension IDs that serve as replacements for the deprecated element.

    • 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.
    reason str
    (String) The reason why the element (e.g., an Extension or a version of it) is being deprecated.

    • 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}\\r\\n\\t]+$/.
    replacement_extensions Sequence[str]
    (List) The list of Extension IDs that serve as replacements for the deprecated element.

    • 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.
    reason String
    (String) The reason why the element (e.g., an Extension or a version of it) is being deprecated.

    • 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}\\r\\n\\t]+$/.
    replacementExtensions List<String>
    (List) The list of Extension IDs that serve as replacements for the deprecated element.

    • 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.

    GetLogsExtensionsExtensionRevision

    Description string
    (String) The detailed description of the Extension item.

    • 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}]+$/.
    Excerpt string
    (String) The brief summary or excerpt of the Extension's description for quick reference.

    • 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}]+$/.
    Items List<GetLogsExtensionsExtensionRevisionItem>
    (List) The Extension items included in this revision.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for items:
    Labels List<string>
    (List) The list of labels or tags associated with the Extension for front-end categorization and filtering.

    • 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.
    Version string
    (String) The version identifier for this revision of the Extension.

    • 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) The detailed description of the Extension item.

    • 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}]+$/.
    Excerpt string
    (String) The brief summary or excerpt of the Extension's description for quick reference.

    • 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}]+$/.
    Items []GetLogsExtensionsExtensionRevisionItem
    (List) The Extension items included in this revision.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for items:
    Labels []string
    (List) The list of labels or tags associated with the Extension for front-end categorization and filtering.

    • 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.
    Version string
    (String) The version identifier for this revision of the Extension.

    • 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) The detailed description of the Extension item.

    • 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}]+$/.
    excerpt String
    (String) The brief summary or excerpt of the Extension's description for quick reference.

    • 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}]+$/.
    items List<GetLogsExtensionsExtensionRevisionItem>
    (List) The Extension items included in this revision.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for items:
    labels List<String>
    (List) The list of labels or tags associated with the Extension for front-end categorization and filtering.

    • 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.
    version String
    (String) The version identifier for this revision of the Extension.

    • 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) The detailed description of the Extension item.

    • 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}]+$/.
    excerpt string
    (String) The brief summary or excerpt of the Extension's description for quick reference.

    • 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}]+$/.
    items GetLogsExtensionsExtensionRevisionItem[]
    (List) The Extension items included in this revision.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for items:
    labels string[]
    (List) The list of labels or tags associated with the Extension for front-end categorization and filtering.

    • 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.
    version string
    (String) The version identifier for this revision of the Extension.

    • 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) The detailed description of the Extension item.

    • 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}]+$/.
    excerpt str
    (String) The brief summary or excerpt of the Extension's description for quick reference.

    • 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}]+$/.
    items Sequence[GetLogsExtensionsExtensionRevisionItem]
    (List) The Extension items included in this revision.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for items:
    labels Sequence[str]
    (List) The list of labels or tags associated with the Extension for front-end categorization and filtering.

    • 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.
    version str
    (String) The version identifier for this revision of the Extension.

    • 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) The detailed description of the Extension item.

    • 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}]+$/.
    excerpt String
    (String) The brief summary or excerpt of the Extension's description for quick reference.

    • 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}]+$/.
    items List<Property Map>
    (List) The Extension items included in this revision.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for items:
    labels List<String>
    (List) The list of labels or tags associated with the Extension for front-end categorization and filtering.

    • 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.
    version String
    (String) The version identifier for this revision of the Extension.

    • 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}]+$/.

    GetLogsExtensionsExtensionRevisionItem

    Description string
    (String) The detailed description of the Extension item.

    • 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}]+$/.
    Id string
    (String) The ID of the Extension item.

    • 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}]+$/.
    IsMandatory bool
    (Boolean) A flag to indicate if the Extension item is mandatory or not. Mandatory items must be specified when deploying the Extension.
    Name string
    (String) The name of the Extension item.

    • 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}]+$/.
    TargetDomain string
    (String) The domain of the Extension item.

    • Constraints: Allowable values are: alert_definition, alert, enrichment, rule_group, view, dashboard, events_to_metrics.
    Description string
    (String) The detailed description of the Extension item.

    • 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}]+$/.
    Id string
    (String) The ID of the Extension item.

    • 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}]+$/.
    IsMandatory bool
    (Boolean) A flag to indicate if the Extension item is mandatory or not. Mandatory items must be specified when deploying the Extension.
    Name string
    (String) The name of the Extension item.

    • 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}]+$/.
    TargetDomain string
    (String) The domain of the Extension item.

    • Constraints: Allowable values are: alert_definition, alert, enrichment, rule_group, view, dashboard, events_to_metrics.
    description String
    (String) The detailed description of the Extension item.

    • 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}]+$/.
    id String
    (String) The ID of the Extension item.

    • 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}]+$/.
    isMandatory Boolean
    (Boolean) A flag to indicate if the Extension item is mandatory or not. Mandatory items must be specified when deploying the Extension.
    name String
    (String) The name of the Extension item.

    • 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}]+$/.
    targetDomain String
    (String) The domain of the Extension item.

    • Constraints: Allowable values are: alert_definition, alert, enrichment, rule_group, view, dashboard, events_to_metrics.
    description string
    (String) The detailed description of the Extension item.

    • 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}]+$/.
    id string
    (String) The ID of the Extension item.

    • 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}]+$/.
    isMandatory boolean
    (Boolean) A flag to indicate if the Extension item is mandatory or not. Mandatory items must be specified when deploying the Extension.
    name string
    (String) The name of the Extension item.

    • 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}]+$/.
    targetDomain string
    (String) The domain of the Extension item.

    • Constraints: Allowable values are: alert_definition, alert, enrichment, rule_group, view, dashboard, events_to_metrics.
    description str
    (String) The detailed description of the Extension item.

    • 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}]+$/.
    id str
    (String) The ID of the Extension item.

    • 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}]+$/.
    is_mandatory bool
    (Boolean) A flag to indicate if the Extension item is mandatory or not. Mandatory items must be specified when deploying the Extension.
    name str
    (String) The name of the Extension item.

    • 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_domain str
    (String) The domain of the Extension item.

    • Constraints: Allowable values are: alert_definition, alert, enrichment, rule_group, view, dashboard, events_to_metrics.
    description String
    (String) The detailed description of the Extension item.

    • 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}]+$/.
    id String
    (String) The ID of the Extension item.

    • 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}]+$/.
    isMandatory Boolean
    (Boolean) A flag to indicate if the Extension item is mandatory or not. Mandatory items must be specified when deploying the Extension.
    name String
    (String) The name of the Extension item.

    • 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}]+$/.
    targetDomain String
    (String) The domain of the Extension item.

    • Constraints: Allowable values are: alert_definition, alert, enrichment, rule_group, view, dashboard, events_to_metrics.

    Package Details

    Repository
    ibm ibm-cloud/terraform-provider-ibm
    License
    Notes
    This Pulumi package is based on the ibm Terraform Provider.
    Viewing docs for ibm 2.0.0
    published on Monday, Mar 30, 2026 by ibm-cloud
      Try Pulumi Cloud free. Your team will thank you.