1. Packages
  2. Packages
  3. Ibm Provider
  4. API Docs
  5. getIsInstanceSoftwareAttachments
Viewing docs for ibm 2.5.0
published on Wednesday, Aug 5, 2026 by ibm-cloud
Viewing docs for ibm 2.5.0
published on Wednesday, Aug 5, 2026 by ibm-cloud

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

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const isInstanceSoftwareAttachments = ibm.getIsInstanceSoftwareAttachments({
        instanceId: isInstanceSoftwareAttachmentInstance.instanceId,
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    is_instance_software_attachments = ibm.get_is_instance_software_attachments(instance_id=is_instance_software_attachment_instance["instanceId"])
    
    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.GetIsInstanceSoftwareAttachments(ctx, &ibm.GetIsInstanceSoftwareAttachmentsArgs{
    			InstanceId: isInstanceSoftwareAttachmentInstance.InstanceId,
    		}, 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 isInstanceSoftwareAttachments = Ibm.GetIsInstanceSoftwareAttachments.Invoke(new()
        {
            InstanceId = isInstanceSoftwareAttachmentInstance.InstanceId,
        });
    
    });
    
    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.GetIsInstanceSoftwareAttachmentsArgs;
    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 isInstanceSoftwareAttachments = IbmFunctions.getIsInstanceSoftwareAttachments(GetIsInstanceSoftwareAttachmentsArgs.builder()
                .instanceId(isInstanceSoftwareAttachmentInstance.instanceId())
                .build());
    
        }
    }
    
    variables:
      isInstanceSoftwareAttachments:
        fn::invoke:
          function: ibm:getIsInstanceSoftwareAttachments
          arguments:
            instanceId: ${isInstanceSoftwareAttachmentInstance.instanceId}
    
    Example coming soon!
    

    Using getIsInstanceSoftwareAttachments

    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 getIsInstanceSoftwareAttachments(args: GetIsInstanceSoftwareAttachmentsArgs, opts?: InvokeOptions): Promise<GetIsInstanceSoftwareAttachmentsResult>
    function getIsInstanceSoftwareAttachmentsOutput(args: GetIsInstanceSoftwareAttachmentsOutputArgs, opts?: InvokeOptions): Output<GetIsInstanceSoftwareAttachmentsResult>
    def get_is_instance_software_attachments(id: Optional[str] = None,
                                             instance_id: Optional[str] = None,
                                             opts: Optional[InvokeOptions] = None) -> GetIsInstanceSoftwareAttachmentsResult
    def get_is_instance_software_attachments_output(id: pulumi.Input[Optional[str]] = None,
                                             instance_id: pulumi.Input[Optional[str]] = None,
                                             opts: Optional[InvokeOptions] = None) -> Output[GetIsInstanceSoftwareAttachmentsResult]
    func GetIsInstanceSoftwareAttachments(ctx *Context, args *GetIsInstanceSoftwareAttachmentsArgs, opts ...InvokeOption) (*GetIsInstanceSoftwareAttachmentsResult, error)
    func GetIsInstanceSoftwareAttachmentsOutput(ctx *Context, args *GetIsInstanceSoftwareAttachmentsOutputArgs, opts ...InvokeOption) GetIsInstanceSoftwareAttachmentsResultOutput

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

    public static class GetIsInstanceSoftwareAttachments 
    {
        public static Task<GetIsInstanceSoftwareAttachmentsResult> InvokeAsync(GetIsInstanceSoftwareAttachmentsArgs args, InvokeOptions? opts = null)
        public static Output<GetIsInstanceSoftwareAttachmentsResult> Invoke(GetIsInstanceSoftwareAttachmentsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetIsInstanceSoftwareAttachmentsResult> getIsInstanceSoftwareAttachments(GetIsInstanceSoftwareAttachmentsArgs args, InvokeOptions options)
    public static Output<GetIsInstanceSoftwareAttachmentsResult> getIsInstanceSoftwareAttachments(GetIsInstanceSoftwareAttachmentsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: ibm:index/getIsInstanceSoftwareAttachments:getIsInstanceSoftwareAttachments
      arguments:
        # arguments dictionary
    data "ibm_get_is_instance_software_attachments" "name" {
        # arguments
    }

    The following arguments are supported:

    InstanceId string
    The virtual server instance identifier.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.
    Id string
    (String) The unique identifier for this instance software attachment.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.
    InstanceId string
    The virtual server instance identifier.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.
    Id string
    (String) The unique identifier for this instance software attachment.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.
    instance_id string
    The virtual server instance identifier.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.
    id string
    (String) The unique identifier for this instance software attachment.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.
    instanceId String
    The virtual server instance identifier.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.
    id String
    (String) The unique identifier for this instance software attachment.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.
    instanceId string
    The virtual server instance identifier.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.
    id string
    (String) The unique identifier for this instance software attachment.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.
    instance_id str
    The virtual server instance identifier.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.
    id str
    (String) The unique identifier for this instance software attachment.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.
    instanceId String
    The virtual server instance identifier.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.
    id String
    (String) The unique identifier for this instance software attachment.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.

    getIsInstanceSoftwareAttachments Result

    The following output properties are available:

    Id string
    (String) The unique identifier for this instance software attachment.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.
    InstanceId string
    SoftwareAttachments List<GetIsInstanceSoftwareAttachmentsSoftwareAttachment>
    (List) The software attachments for the instance. Nested schema for software_attachments:
    Id string
    (String) The unique identifier for this instance software attachment.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.
    InstanceId string
    SoftwareAttachments []GetIsInstanceSoftwareAttachmentsSoftwareAttachment
    (List) The software attachments for the instance. Nested schema for software_attachments:
    id string
    (String) The unique identifier for this instance software attachment.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.
    instance_id string
    software_attachments list(object)
    (List) The software attachments for the instance. Nested schema for software_attachments:
    id String
    (String) The unique identifier for this instance software attachment.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.
    instanceId String
    softwareAttachments List<GetIsInstanceSoftwareAttachmentsSoftwareAttachment>
    (List) The software attachments for the instance. Nested schema for software_attachments:
    id string
    (String) The unique identifier for this instance software attachment.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.
    instanceId string
    softwareAttachments GetIsInstanceSoftwareAttachmentsSoftwareAttachment[]
    (List) The software attachments for the instance. Nested schema for software_attachments:
    id str
    (String) The unique identifier for this instance software attachment.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.
    instance_id str
    software_attachments Sequence[GetIsInstanceSoftwareAttachmentsSoftwareAttachment]
    (List) The software attachments for the instance. Nested schema for software_attachments:
    id String
    (String) The unique identifier for this instance software attachment.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.
    instanceId String
    softwareAttachments List<Property Map>
    (List) The software attachments for the instance. Nested schema for software_attachments:

    Supporting Types

    GetIsInstanceSoftwareAttachmentsSoftwareAttachment

    CatalogOfferings List<GetIsInstanceSoftwareAttachmentsSoftwareAttachmentCatalogOffering>
    (List) The catalogoffering for this instance software attachment. May be absent ifsoftware_attachment.lifecycle_state is not stable. Nested schema for catalog_offering:
    CreatedAt string
    (String) The date and time that the instance software attachment was created.
    Entitlements List<GetIsInstanceSoftwareAttachmentsSoftwareAttachmentEntitlement>
    (List) The entitlement for the licensed software for this instance software attachment. Nested schema for entitlement:
    Href string
    (String) The URL for this instance software attachment.

    • Constraints: The maximum length is 8000 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    Id string
    (String) The unique identifier for this instance software attachment.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.
    LifecycleReasons List<GetIsInstanceSoftwareAttachmentsSoftwareAttachmentLifecycleReason>
    (List) The lifecycle reasons for this instance software attachment (if any).

    • Constraints: The minimum length is 0 items. Nested schema for lifecycle_reasons:
    LifecycleState string
    (String) The lifecycle state of the instance software attachment.

    • Constraints: Allowable values are: deleting, failed, pending, stable, suspended, updating, waiting. The value must match regular expression /^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
    Name string
    (String) The name for this instance software attachment. The name is unique across all instance software attachments for the instance.

    • Constraints: The maximum length is 63 characters. The minimum length is 1 character. The value must match regular expression /^-?([a-z]|[a-z][-a-z0-9]*[a-z0-9]|[0-9][-a-z0-9]*([a-z]|[-a-z][-a-z0-9]*[a-z0-9]))$/.
    OfferingInstances List<GetIsInstanceSoftwareAttachmentsSoftwareAttachmentOfferingInstance>
    (List) Nested schema for offering_instance:
    ResourceType string
    (String) The resource type.

    • Constraints: Allowable values are: instance_software_attachment. The value must match regular expression /^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
    CatalogOfferings []GetIsInstanceSoftwareAttachmentsSoftwareAttachmentCatalogOffering
    (List) The catalogoffering for this instance software attachment. May be absent ifsoftware_attachment.lifecycle_state is not stable. Nested schema for catalog_offering:
    CreatedAt string
    (String) The date and time that the instance software attachment was created.
    Entitlements []GetIsInstanceSoftwareAttachmentsSoftwareAttachmentEntitlement
    (List) The entitlement for the licensed software for this instance software attachment. Nested schema for entitlement:
    Href string
    (String) The URL for this instance software attachment.

    • Constraints: The maximum length is 8000 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    Id string
    (String) The unique identifier for this instance software attachment.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.
    LifecycleReasons []GetIsInstanceSoftwareAttachmentsSoftwareAttachmentLifecycleReason
    (List) The lifecycle reasons for this instance software attachment (if any).

    • Constraints: The minimum length is 0 items. Nested schema for lifecycle_reasons:
    LifecycleState string
    (String) The lifecycle state of the instance software attachment.

    • Constraints: Allowable values are: deleting, failed, pending, stable, suspended, updating, waiting. The value must match regular expression /^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
    Name string
    (String) The name for this instance software attachment. The name is unique across all instance software attachments for the instance.

    • Constraints: The maximum length is 63 characters. The minimum length is 1 character. The value must match regular expression /^-?([a-z]|[a-z][-a-z0-9]*[a-z0-9]|[0-9][-a-z0-9]*([a-z]|[-a-z][-a-z0-9]*[a-z0-9]))$/.
    OfferingInstances []GetIsInstanceSoftwareAttachmentsSoftwareAttachmentOfferingInstance
    (List) Nested schema for offering_instance:
    ResourceType string
    (String) The resource type.

    • Constraints: Allowable values are: instance_software_attachment. The value must match regular expression /^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
    catalog_offerings list(object)
    (List) The catalogoffering for this instance software attachment. May be absent ifsoftware_attachment.lifecycle_state is not stable. Nested schema for catalog_offering:
    created_at string
    (String) The date and time that the instance software attachment was created.
    entitlements list(object)
    (List) The entitlement for the licensed software for this instance software attachment. Nested schema for entitlement:
    href string
    (String) The URL for this instance software attachment.

    • Constraints: The maximum length is 8000 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    id string
    (String) The unique identifier for this instance software attachment.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.
    lifecycle_reasons list(object)
    (List) The lifecycle reasons for this instance software attachment (if any).

    • Constraints: The minimum length is 0 items. Nested schema for lifecycle_reasons:
    lifecycle_state string
    (String) The lifecycle state of the instance software attachment.

    • Constraints: Allowable values are: deleting, failed, pending, stable, suspended, updating, waiting. The value must match regular expression /^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
    name string
    (String) The name for this instance software attachment. The name is unique across all instance software attachments for the instance.

    • Constraints: The maximum length is 63 characters. The minimum length is 1 character. The value must match regular expression /^-?([a-z]|[a-z][-a-z0-9]*[a-z0-9]|[0-9][-a-z0-9]*([a-z]|[-a-z][-a-z0-9]*[a-z0-9]))$/.
    offering_instances list(object)
    (List) Nested schema for offering_instance:
    resource_type string
    (String) The resource type.

    • Constraints: Allowable values are: instance_software_attachment. The value must match regular expression /^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
    catalogOfferings List<GetIsInstanceSoftwareAttachmentsSoftwareAttachmentCatalogOffering>
    (List) The catalogoffering for this instance software attachment. May be absent ifsoftware_attachment.lifecycle_state is not stable. Nested schema for catalog_offering:
    createdAt String
    (String) The date and time that the instance software attachment was created.
    entitlements List<GetIsInstanceSoftwareAttachmentsSoftwareAttachmentEntitlement>
    (List) The entitlement for the licensed software for this instance software attachment. Nested schema for entitlement:
    href String
    (String) The URL for this instance software attachment.

    • Constraints: The maximum length is 8000 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    id String
    (String) The unique identifier for this instance software attachment.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.
    lifecycleReasons List<GetIsInstanceSoftwareAttachmentsSoftwareAttachmentLifecycleReason>
    (List) The lifecycle reasons for this instance software attachment (if any).

    • Constraints: The minimum length is 0 items. Nested schema for lifecycle_reasons:
    lifecycleState String
    (String) The lifecycle state of the instance software attachment.

    • Constraints: Allowable values are: deleting, failed, pending, stable, suspended, updating, waiting. The value must match regular expression /^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
    name String
    (String) The name for this instance software attachment. The name is unique across all instance software attachments for the instance.

    • Constraints: The maximum length is 63 characters. The minimum length is 1 character. The value must match regular expression /^-?([a-z]|[a-z][-a-z0-9]*[a-z0-9]|[0-9][-a-z0-9]*([a-z]|[-a-z][-a-z0-9]*[a-z0-9]))$/.
    offeringInstances List<GetIsInstanceSoftwareAttachmentsSoftwareAttachmentOfferingInstance>
    (List) Nested schema for offering_instance:
    resourceType String
    (String) The resource type.

    • Constraints: Allowable values are: instance_software_attachment. The value must match regular expression /^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
    catalogOfferings GetIsInstanceSoftwareAttachmentsSoftwareAttachmentCatalogOffering[]
    (List) The catalogoffering for this instance software attachment. May be absent ifsoftware_attachment.lifecycle_state is not stable. Nested schema for catalog_offering:
    createdAt string
    (String) The date and time that the instance software attachment was created.
    entitlements GetIsInstanceSoftwareAttachmentsSoftwareAttachmentEntitlement[]
    (List) The entitlement for the licensed software for this instance software attachment. Nested schema for entitlement:
    href string
    (String) The URL for this instance software attachment.

    • Constraints: The maximum length is 8000 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    id string
    (String) The unique identifier for this instance software attachment.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.
    lifecycleReasons GetIsInstanceSoftwareAttachmentsSoftwareAttachmentLifecycleReason[]
    (List) The lifecycle reasons for this instance software attachment (if any).

    • Constraints: The minimum length is 0 items. Nested schema for lifecycle_reasons:
    lifecycleState string
    (String) The lifecycle state of the instance software attachment.

    • Constraints: Allowable values are: deleting, failed, pending, stable, suspended, updating, waiting. The value must match regular expression /^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
    name string
    (String) The name for this instance software attachment. The name is unique across all instance software attachments for the instance.

    • Constraints: The maximum length is 63 characters. The minimum length is 1 character. The value must match regular expression /^-?([a-z]|[a-z][-a-z0-9]*[a-z0-9]|[0-9][-a-z0-9]*([a-z]|[-a-z][-a-z0-9]*[a-z0-9]))$/.
    offeringInstances GetIsInstanceSoftwareAttachmentsSoftwareAttachmentOfferingInstance[]
    (List) Nested schema for offering_instance:
    resourceType string
    (String) The resource type.

    • Constraints: Allowable values are: instance_software_attachment. The value must match regular expression /^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
    catalog_offerings Sequence[GetIsInstanceSoftwareAttachmentsSoftwareAttachmentCatalogOffering]
    (List) The catalogoffering for this instance software attachment. May be absent ifsoftware_attachment.lifecycle_state is not stable. Nested schema for catalog_offering:
    created_at str
    (String) The date and time that the instance software attachment was created.
    entitlements Sequence[GetIsInstanceSoftwareAttachmentsSoftwareAttachmentEntitlement]
    (List) The entitlement for the licensed software for this instance software attachment. Nested schema for entitlement:
    href str
    (String) The URL for this instance software attachment.

    • Constraints: The maximum length is 8000 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    id str
    (String) The unique identifier for this instance software attachment.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.
    lifecycle_reasons Sequence[GetIsInstanceSoftwareAttachmentsSoftwareAttachmentLifecycleReason]
    (List) The lifecycle reasons for this instance software attachment (if any).

    • Constraints: The minimum length is 0 items. Nested schema for lifecycle_reasons:
    lifecycle_state str
    (String) The lifecycle state of the instance software attachment.

    • Constraints: Allowable values are: deleting, failed, pending, stable, suspended, updating, waiting. The value must match regular expression /^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
    name str
    (String) The name for this instance software attachment. The name is unique across all instance software attachments for the instance.

    • Constraints: The maximum length is 63 characters. The minimum length is 1 character. The value must match regular expression /^-?([a-z]|[a-z][-a-z0-9]*[a-z0-9]|[0-9][-a-z0-9]*([a-z]|[-a-z][-a-z0-9]*[a-z0-9]))$/.
    offering_instances Sequence[GetIsInstanceSoftwareAttachmentsSoftwareAttachmentOfferingInstance]
    (List) Nested schema for offering_instance:
    resource_type str
    (String) The resource type.

    • Constraints: Allowable values are: instance_software_attachment. The value must match regular expression /^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
    catalogOfferings List<Property Map>
    (List) The catalogoffering for this instance software attachment. May be absent ifsoftware_attachment.lifecycle_state is not stable. Nested schema for catalog_offering:
    createdAt String
    (String) The date and time that the instance software attachment was created.
    entitlements List<Property Map>
    (List) The entitlement for the licensed software for this instance software attachment. Nested schema for entitlement:
    href String
    (String) The URL for this instance software attachment.

    • Constraints: The maximum length is 8000 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    id String
    (String) The unique identifier for this instance software attachment.

    • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^[-0-9a-z_]+$/.
    lifecycleReasons List<Property Map>
    (List) The lifecycle reasons for this instance software attachment (if any).

    • Constraints: The minimum length is 0 items. Nested schema for lifecycle_reasons:
    lifecycleState String
    (String) The lifecycle state of the instance software attachment.

    • Constraints: Allowable values are: deleting, failed, pending, stable, suspended, updating, waiting. The value must match regular expression /^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.
    name String
    (String) The name for this instance software attachment. The name is unique across all instance software attachments for the instance.

    • Constraints: The maximum length is 63 characters. The minimum length is 1 character. The value must match regular expression /^-?([a-z]|[a-z][-a-z0-9]*[a-z0-9]|[0-9][-a-z0-9]*([a-z]|[-a-z][-a-z0-9]*[a-z0-9]))$/.
    offeringInstances List<Property Map>
    (List) Nested schema for offering_instance:
    resourceType String
    (String) The resource type.

    • Constraints: Allowable values are: instance_software_attachment. The value must match regular expression /^[a-z][a-z0-9]*(_[a-z0-9]+)*$/.

    GetIsInstanceSoftwareAttachmentsSoftwareAttachmentCatalogOffering

    Plans List<GetIsInstanceSoftwareAttachmentsSoftwareAttachmentCatalogOfferingPlan>
    (List) The billing plan for the catalog offering version associated with this instance softwareattachment.If absent, no billing plan is associated with the catalog offering version (free). Nested schema for plan:
    Versions List<GetIsInstanceSoftwareAttachmentsSoftwareAttachmentCatalogOfferingVersion>
    (List) The catalog offering version associated with this instance software attachment. Nested schema for version:
    Plans []GetIsInstanceSoftwareAttachmentsSoftwareAttachmentCatalogOfferingPlan
    (List) The billing plan for the catalog offering version associated with this instance softwareattachment.If absent, no billing plan is associated with the catalog offering version (free). Nested schema for plan:
    Versions []GetIsInstanceSoftwareAttachmentsSoftwareAttachmentCatalogOfferingVersion
    (List) The catalog offering version associated with this instance software attachment. Nested schema for version:
    plans list(object)
    (List) The billing plan for the catalog offering version associated with this instance softwareattachment.If absent, no billing plan is associated with the catalog offering version (free). Nested schema for plan:
    versions list(object)
    (List) The catalog offering version associated with this instance software attachment. Nested schema for version:
    plans List<GetIsInstanceSoftwareAttachmentsSoftwareAttachmentCatalogOfferingPlan>
    (List) The billing plan for the catalog offering version associated with this instance softwareattachment.If absent, no billing plan is associated with the catalog offering version (free). Nested schema for plan:
    versions List<GetIsInstanceSoftwareAttachmentsSoftwareAttachmentCatalogOfferingVersion>
    (List) The catalog offering version associated with this instance software attachment. Nested schema for version:
    plans GetIsInstanceSoftwareAttachmentsSoftwareAttachmentCatalogOfferingPlan[]
    (List) The billing plan for the catalog offering version associated with this instance softwareattachment.If absent, no billing plan is associated with the catalog offering version (free). Nested schema for plan:
    versions GetIsInstanceSoftwareAttachmentsSoftwareAttachmentCatalogOfferingVersion[]
    (List) The catalog offering version associated with this instance software attachment. Nested schema for version:
    plans Sequence[GetIsInstanceSoftwareAttachmentsSoftwareAttachmentCatalogOfferingPlan]
    (List) The billing plan for the catalog offering version associated with this instance softwareattachment.If absent, no billing plan is associated with the catalog offering version (free). Nested schema for plan:
    versions Sequence[GetIsInstanceSoftwareAttachmentsSoftwareAttachmentCatalogOfferingVersion]
    (List) The catalog offering version associated with this instance software attachment. Nested schema for version:
    plans List<Property Map>
    (List) The billing plan for the catalog offering version associated with this instance softwareattachment.If absent, no billing plan is associated with the catalog offering version (free). Nested schema for plan:
    versions List<Property Map>
    (List) The catalog offering version associated with this instance software attachment. Nested schema for version:

    GetIsInstanceSoftwareAttachmentsSoftwareAttachmentCatalogOfferingPlan

    Crn string
    (String) The CRN for the software offering instance registered with Resource Controller that is associated with the instance software attachment.

    • Constraints: The maximum length is 512 characters. The minimum length is 17 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-_]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$/.
    Deleteds List<GetIsInstanceSoftwareAttachmentsSoftwareAttachmentCatalogOfferingPlanDeleted>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    Crn string
    (String) The CRN for the software offering instance registered with Resource Controller that is associated with the instance software attachment.

    • Constraints: The maximum length is 512 characters. The minimum length is 17 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-_]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$/.
    Deleteds []GetIsInstanceSoftwareAttachmentsSoftwareAttachmentCatalogOfferingPlanDeleted
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    crn string
    (String) The CRN for the software offering instance registered with Resource Controller that is associated with the instance software attachment.

    • Constraints: The maximum length is 512 characters. The minimum length is 17 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-_]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$/.
    deleteds list(object)
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    crn String
    (String) The CRN for the software offering instance registered with Resource Controller that is associated with the instance software attachment.

    • Constraints: The maximum length is 512 characters. The minimum length is 17 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-_]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$/.
    deleteds List<GetIsInstanceSoftwareAttachmentsSoftwareAttachmentCatalogOfferingPlanDeleted>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    crn string
    (String) The CRN for the software offering instance registered with Resource Controller that is associated with the instance software attachment.

    • Constraints: The maximum length is 512 characters. The minimum length is 17 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-_]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$/.
    deleteds GetIsInstanceSoftwareAttachmentsSoftwareAttachmentCatalogOfferingPlanDeleted[]
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    crn str
    (String) The CRN for the software offering instance registered with Resource Controller that is associated with the instance software attachment.

    • Constraints: The maximum length is 512 characters. The minimum length is 17 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-_]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$/.
    deleteds Sequence[GetIsInstanceSoftwareAttachmentsSoftwareAttachmentCatalogOfferingPlanDeleted]
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    crn String
    (String) The CRN for the software offering instance registered with Resource Controller that is associated with the instance software attachment.

    • Constraints: The maximum length is 512 characters. The minimum length is 17 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-_]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$/.
    deleteds List<Property Map>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:

    GetIsInstanceSoftwareAttachmentsSoftwareAttachmentCatalogOfferingPlanDeleted

    MoreInfo string
    (String) A link to documentation about the reason for this lifecycle state.

    • Constraints: The maximum length is 8000 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    MoreInfo string
    (String) A link to documentation about the reason for this lifecycle state.

    • Constraints: The maximum length is 8000 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    more_info string
    (String) A link to documentation about the reason for this lifecycle state.

    • Constraints: The maximum length is 8000 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    moreInfo String
    (String) A link to documentation about the reason for this lifecycle state.

    • Constraints: The maximum length is 8000 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    moreInfo string
    (String) A link to documentation about the reason for this lifecycle state.

    • Constraints: The maximum length is 8000 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    more_info str
    (String) A link to documentation about the reason for this lifecycle state.

    • Constraints: The maximum length is 8000 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    moreInfo String
    (String) A link to documentation about the reason for this lifecycle state.

    • Constraints: The maximum length is 8000 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.

    GetIsInstanceSoftwareAttachmentsSoftwareAttachmentCatalogOfferingVersion

    Crn string
    (String) The CRN for the software offering instance registered with Resource Controller that is associated with the instance software attachment.

    • Constraints: The maximum length is 512 characters. The minimum length is 17 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-_]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$/.
    Crn string
    (String) The CRN for the software offering instance registered with Resource Controller that is associated with the instance software attachment.

    • Constraints: The maximum length is 512 characters. The minimum length is 17 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-_]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$/.
    crn string
    (String) The CRN for the software offering instance registered with Resource Controller that is associated with the instance software attachment.

    • Constraints: The maximum length is 512 characters. The minimum length is 17 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-_]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$/.
    crn String
    (String) The CRN for the software offering instance registered with Resource Controller that is associated with the instance software attachment.

    • Constraints: The maximum length is 512 characters. The minimum length is 17 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-_]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$/.
    crn string
    (String) The CRN for the software offering instance registered with Resource Controller that is associated with the instance software attachment.

    • Constraints: The maximum length is 512 characters. The minimum length is 17 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-_]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$/.
    crn str
    (String) The CRN for the software offering instance registered with Resource Controller that is associated with the instance software attachment.

    • Constraints: The maximum length is 512 characters. The minimum length is 17 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-_]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$/.
    crn String
    (String) The CRN for the software offering instance registered with Resource Controller that is associated with the instance software attachment.

    • Constraints: The maximum length is 512 characters. The minimum length is 17 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-_]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$/.

    GetIsInstanceSoftwareAttachmentsSoftwareAttachmentEntitlement

    LicensedSoftwares List<GetIsInstanceSoftwareAttachmentsSoftwareAttachmentEntitlementLicensedSoftware>
    (List) The licensed software for this instance software attachment entitlement. Nested schema for licensed_software:
    LicensedSoftwares []GetIsInstanceSoftwareAttachmentsSoftwareAttachmentEntitlementLicensedSoftware
    (List) The licensed software for this instance software attachment entitlement. Nested schema for licensed_software:
    licensed_softwares list(object)
    (List) The licensed software for this instance software attachment entitlement. Nested schema for licensed_software:
    licensedSoftwares List<GetIsInstanceSoftwareAttachmentsSoftwareAttachmentEntitlementLicensedSoftware>
    (List) The licensed software for this instance software attachment entitlement. Nested schema for licensed_software:
    licensedSoftwares GetIsInstanceSoftwareAttachmentsSoftwareAttachmentEntitlementLicensedSoftware[]
    (List) The licensed software for this instance software attachment entitlement. Nested schema for licensed_software:
    licensed_softwares Sequence[GetIsInstanceSoftwareAttachmentsSoftwareAttachmentEntitlementLicensedSoftware]
    (List) The licensed software for this instance software attachment entitlement. Nested schema for licensed_software:
    licensedSoftwares List<Property Map>
    (List) The licensed software for this instance software attachment entitlement. Nested schema for licensed_software:

    GetIsInstanceSoftwareAttachmentsSoftwareAttachmentEntitlementLicensedSoftware

    Sku string
    (String) The SKU for this licensed software.

    • Constraints: The maximum length is 1024 characters. The minimum length is 1 character. The value must match regular expression /^[ -~]+$/.
    Sku string
    (String) The SKU for this licensed software.

    • Constraints: The maximum length is 1024 characters. The minimum length is 1 character. The value must match regular expression /^[ -~]+$/.
    sku string
    (String) The SKU for this licensed software.

    • Constraints: The maximum length is 1024 characters. The minimum length is 1 character. The value must match regular expression /^[ -~]+$/.
    sku String
    (String) The SKU for this licensed software.

    • Constraints: The maximum length is 1024 characters. The minimum length is 1 character. The value must match regular expression /^[ -~]+$/.
    sku string
    (String) The SKU for this licensed software.

    • Constraints: The maximum length is 1024 characters. The minimum length is 1 character. The value must match regular expression /^[ -~]+$/.
    sku str
    (String) The SKU for this licensed software.

    • Constraints: The maximum length is 1024 characters. The minimum length is 1 character. The value must match regular expression /^[ -~]+$/.
    sku String
    (String) The SKU for this licensed software.

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

    GetIsInstanceSoftwareAttachmentsSoftwareAttachmentLifecycleReason

    Code string
    (String) A reason code for this lifecycle state:- failed_registration: the software instance's registration to Resource Controller, which includes creation of any required software license(s), has failed. Delete the instance and provision it again. If the problem persists, contact IBM Support.- internal_error: internal error (contact IBM support)- pending_registration: the software instance's registration to Resource Controller, and the creation of any required software license(s), is being processed.The enumerated values for this property mayexpand in the future.

    • Constraints: Allowable values are: failed_registration, internal_error, pending_registration.
    Message string
    (String) An explanation of the reason for this lifecycle state.
    MoreInfo string
    (String) A link to documentation about the reason for this lifecycle state.

    • Constraints: The maximum length is 8000 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    Code string
    (String) A reason code for this lifecycle state:- failed_registration: the software instance's registration to Resource Controller, which includes creation of any required software license(s), has failed. Delete the instance and provision it again. If the problem persists, contact IBM Support.- internal_error: internal error (contact IBM support)- pending_registration: the software instance's registration to Resource Controller, and the creation of any required software license(s), is being processed.The enumerated values for this property mayexpand in the future.

    • Constraints: Allowable values are: failed_registration, internal_error, pending_registration.
    Message string
    (String) An explanation of the reason for this lifecycle state.
    MoreInfo string
    (String) A link to documentation about the reason for this lifecycle state.

    • Constraints: The maximum length is 8000 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    code string
    (String) A reason code for this lifecycle state:- failed_registration: the software instance's registration to Resource Controller, which includes creation of any required software license(s), has failed. Delete the instance and provision it again. If the problem persists, contact IBM Support.- internal_error: internal error (contact IBM support)- pending_registration: the software instance's registration to Resource Controller, and the creation of any required software license(s), is being processed.The enumerated values for this property mayexpand in the future.

    • Constraints: Allowable values are: failed_registration, internal_error, pending_registration.
    message string
    (String) An explanation of the reason for this lifecycle state.
    more_info string
    (String) A link to documentation about the reason for this lifecycle state.

    • Constraints: The maximum length is 8000 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    code String
    (String) A reason code for this lifecycle state:- failed_registration: the software instance's registration to Resource Controller, which includes creation of any required software license(s), has failed. Delete the instance and provision it again. If the problem persists, contact IBM Support.- internal_error: internal error (contact IBM support)- pending_registration: the software instance's registration to Resource Controller, and the creation of any required software license(s), is being processed.The enumerated values for this property mayexpand in the future.

    • Constraints: Allowable values are: failed_registration, internal_error, pending_registration.
    message String
    (String) An explanation of the reason for this lifecycle state.
    moreInfo String
    (String) A link to documentation about the reason for this lifecycle state.

    • Constraints: The maximum length is 8000 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    code string
    (String) A reason code for this lifecycle state:- failed_registration: the software instance's registration to Resource Controller, which includes creation of any required software license(s), has failed. Delete the instance and provision it again. If the problem persists, contact IBM Support.- internal_error: internal error (contact IBM support)- pending_registration: the software instance's registration to Resource Controller, and the creation of any required software license(s), is being processed.The enumerated values for this property mayexpand in the future.

    • Constraints: Allowable values are: failed_registration, internal_error, pending_registration.
    message string
    (String) An explanation of the reason for this lifecycle state.
    moreInfo string
    (String) A link to documentation about the reason for this lifecycle state.

    • Constraints: The maximum length is 8000 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    code str
    (String) A reason code for this lifecycle state:- failed_registration: the software instance's registration to Resource Controller, which includes creation of any required software license(s), has failed. Delete the instance and provision it again. If the problem persists, contact IBM Support.- internal_error: internal error (contact IBM support)- pending_registration: the software instance's registration to Resource Controller, and the creation of any required software license(s), is being processed.The enumerated values for this property mayexpand in the future.

    • Constraints: Allowable values are: failed_registration, internal_error, pending_registration.
    message str
    (String) An explanation of the reason for this lifecycle state.
    more_info str
    (String) A link to documentation about the reason for this lifecycle state.

    • Constraints: The maximum length is 8000 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
    code String
    (String) A reason code for this lifecycle state:- failed_registration: the software instance's registration to Resource Controller, which includes creation of any required software license(s), has failed. Delete the instance and provision it again. If the problem persists, contact IBM Support.- internal_error: internal error (contact IBM support)- pending_registration: the software instance's registration to Resource Controller, and the creation of any required software license(s), is being processed.The enumerated values for this property mayexpand in the future.

    • Constraints: Allowable values are: failed_registration, internal_error, pending_registration.
    message String
    (String) An explanation of the reason for this lifecycle state.
    moreInfo String
    (String) A link to documentation about the reason for this lifecycle state.

    • Constraints: The maximum length is 8000 characters. The minimum length is 10 characters. The value must match regular expression /^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.

    GetIsInstanceSoftwareAttachmentsSoftwareAttachmentOfferingInstance

    Crn string
    (String) The CRN for the software offering instance registered with Resource Controller that is associated with the instance software attachment.

    • Constraints: The maximum length is 512 characters. The minimum length is 17 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-_]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$/.
    Crn string
    (String) The CRN for the software offering instance registered with Resource Controller that is associated with the instance software attachment.

    • Constraints: The maximum length is 512 characters. The minimum length is 17 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-_]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$/.
    crn string
    (String) The CRN for the software offering instance registered with Resource Controller that is associated with the instance software attachment.

    • Constraints: The maximum length is 512 characters. The minimum length is 17 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-_]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$/.
    crn String
    (String) The CRN for the software offering instance registered with Resource Controller that is associated with the instance software attachment.

    • Constraints: The maximum length is 512 characters. The minimum length is 17 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-_]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$/.
    crn string
    (String) The CRN for the software offering instance registered with Resource Controller that is associated with the instance software attachment.

    • Constraints: The maximum length is 512 characters. The minimum length is 17 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-_]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$/.
    crn str
    (String) The CRN for the software offering instance registered with Resource Controller that is associated with the instance software attachment.

    • Constraints: The maximum length is 512 characters. The minimum length is 17 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-_]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$/.
    crn String
    (String) The CRN for the software offering instance registered with Resource Controller that is associated with the instance software attachment.

    • Constraints: The maximum length is 512 characters. The minimum length is 17 characters. The value must match regular expression /^crn:v[0-9]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]+:[a-z0-9-]*:([a-z]\/[a-z0-9-]+)?:[a-z0-9-_]*:[a-z0-9-]*:[a-zA-Z0-9-_\\.\/]*$/.

    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.5.0
    published on Wednesday, Aug 5, 2026 by ibm-cloud

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial