1. Packages
  2. Ibm Provider
  3. API Docs
  4. getLogsExtension
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 an Extension metadata. You can then reference the fields of the data source in other resources within the same configuration by using interpolation syntax.

    Example Usage

    Get details of IBMCloudKubernetes extension

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const logsExtension = ibm.getLogsExtension({
        instanceId: logsInstance.guid,
        region: logsInstance.location,
        logsExtensionId: "IBMCloudKubernetes",
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    logs_extension = ibm.get_logs_extension(instance_id=logs_instance["guid"],
        region=logs_instance["location"],
        logs_extension_id="IBMCloudKubernetes")
    
    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.GetLogsExtension(ctx, &ibm.GetLogsExtensionArgs{
    			InstanceId:      logsInstance.Guid,
    			Region:          pulumi.StringRef(logsInstance.Location),
    			LogsExtensionId: "IBMCloudKubernetes",
    		}, 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 logsExtension = Ibm.GetLogsExtension.Invoke(new()
        {
            InstanceId = logsInstance.Guid,
            Region = logsInstance.Location,
            LogsExtensionId = "IBMCloudKubernetes",
        });
    
    });
    
    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.GetLogsExtensionArgs;
    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 logsExtension = IbmFunctions.getLogsExtension(GetLogsExtensionArgs.builder()
                .instanceId(logsInstance.guid())
                .region(logsInstance.location())
                .logsExtensionId("IBMCloudKubernetes")
                .build());
    
        }
    }
    
    variables:
      logsExtension:
        fn::invoke:
          function: ibm:getLogsExtension
          arguments:
            instanceId: ${logsInstance.guid}
            region: ${logsInstance.location}
            logsExtensionId: IBMCloudKubernetes
    

    Using getLogsExtension

    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 getLogsExtension(args: GetLogsExtensionArgs, opts?: InvokeOptions): Promise<GetLogsExtensionResult>
    function getLogsExtensionOutput(args: GetLogsExtensionOutputArgs, opts?: InvokeOptions): Output<GetLogsExtensionResult>
    def get_logs_extension(endpoint_type: Optional[str] = None,
                           id: Optional[str] = None,
                           instance_id: Optional[str] = None,
                           logs_extension_id: Optional[str] = None,
                           region: Optional[str] = None,
                           opts: Optional[InvokeOptions] = None) -> GetLogsExtensionResult
    def get_logs_extension_output(endpoint_type: Optional[pulumi.Input[str]] = None,
                           id: Optional[pulumi.Input[str]] = None,
                           instance_id: Optional[pulumi.Input[str]] = None,
                           logs_extension_id: Optional[pulumi.Input[str]] = None,
                           region: Optional[pulumi.Input[str]] = None,
                           opts: Optional[InvokeOptions] = None) -> Output[GetLogsExtensionResult]
    func GetLogsExtension(ctx *Context, args *GetLogsExtensionArgs, opts ...InvokeOption) (*GetLogsExtensionResult, error)
    func GetLogsExtensionOutput(ctx *Context, args *GetLogsExtensionOutputArgs, opts ...InvokeOption) GetLogsExtensionResultOutput

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

    public static class GetLogsExtension 
    {
        public static Task<GetLogsExtensionResult> InvokeAsync(GetLogsExtensionArgs args, InvokeOptions? opts = null)
        public static Output<GetLogsExtensionResult> Invoke(GetLogsExtensionInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetLogsExtensionResult> getLogsExtension(GetLogsExtensionArgs args, InvokeOptions options)
    public static Output<GetLogsExtensionResult> getLogsExtension(GetLogsExtensionArgs args, InvokeOptions options)
    
    fn::invoke:
      function: ibm:index/getLogsExtension:getLogsExtension
      arguments:
        # arguments dictionary

    The following arguments are supported:

    InstanceId string
    Cloud Logs Instance GUID.
    LogsExtensionId string
    The unique identifier 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}]+$/.
    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.
    LogsExtensionId string
    The unique identifier 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}]+$/.
    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.
    logsExtensionId String
    The unique identifier 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}]+$/.
    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.
    logsExtensionId string
    The unique identifier 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}]+$/.
    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.
    logs_extension_id str
    The unique identifier 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}]+$/.
    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.
    logsExtensionId String
    The unique identifier 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}]+$/.
    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.

    getLogsExtension Result

    The following output properties are available:

    Changelogs List<GetLogsExtensionChangelog>
    (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<GetLogsExtensionDeployment>
    (List) Deployment details of an Extension scoped by extension ID in the path. Nested schema for deployment:
    Deprecations List<GetLogsExtensionDeprecation>
    (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}]+$/.
    InstanceId string
    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.
    LogsExtensionId string
    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}]+$/.
    Region string
    Revisions List<GetLogsExtensionRevision>
    (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:
    EndpointType string
    Changelogs []GetLogsExtensionChangelog
    (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 []GetLogsExtensionDeploymentType
    (List) Deployment details of an Extension scoped by extension ID in the path. Nested schema for deployment:
    Deprecations []GetLogsExtensionDeprecation
    (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}]+$/.
    InstanceId string
    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.
    LogsExtensionId string
    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}]+$/.
    Region string
    Revisions []GetLogsExtensionRevision
    (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:
    EndpointType string
    changelogs List<GetLogsExtensionChangelog>
    (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<GetLogsExtensionDeployment>
    (List) Deployment details of an Extension scoped by extension ID in the path. Nested schema for deployment:
    deprecations List<GetLogsExtensionDeprecation>
    (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}]+$/.
    instanceId String
    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.
    logsExtensionId String
    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}]+$/.
    region String
    revisions List<GetLogsExtensionRevision>
    (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:
    endpointType String
    changelogs GetLogsExtensionChangelog[]
    (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 GetLogsExtensionDeployment[]
    (List) Deployment details of an Extension scoped by extension ID in the path. Nested schema for deployment:
    deprecations GetLogsExtensionDeprecation[]
    (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}]+$/.
    instanceId string
    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.
    logsExtensionId string
    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}]+$/.
    region string
    revisions GetLogsExtensionRevision[]
    (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:
    endpointType string
    changelogs Sequence[GetLogsExtensionChangelog]
    (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[GetLogsExtensionDeployment]
    (List) Deployment details of an Extension scoped by extension ID in the path. Nested schema for deployment:
    deprecations Sequence[GetLogsExtensionDeprecation]
    (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}]+$/.
    instance_id str
    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.
    logs_extension_id str
    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}]+$/.
    region str
    revisions Sequence[GetLogsExtensionRevision]
    (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:
    endpoint_type str
    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}]+$/.
    instanceId String
    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.
    logsExtensionId String
    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}]+$/.
    region String
    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:
    endpointType String

    Supporting Types

    GetLogsExtensionChangelog

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

    GetLogsExtensionDeployment

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

    GetLogsExtensionDeprecation

    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.

    GetLogsExtensionRevision

    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<GetLogsExtensionRevisionItem>
    (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 []GetLogsExtensionRevisionItem
    (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<GetLogsExtensionRevisionItem>
    (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 GetLogsExtensionRevisionItem[]
    (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[GetLogsExtensionRevisionItem]
    (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}]+$/.

    GetLogsExtensionRevisionItem

    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.