published on Wednesday, Aug 5, 2026 by ibm-cloud
published on Wednesday, Aug 5, 2026 by ibm-cloud
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const isInstanceSoftwareAttachmentInstance = new ibm.IsInstanceSoftwareAttachment("is_instance_software_attachment_instance", {
instanceId: example.id,
instanceSoftwareAttachmentId: example.softwareAttachments[0].id,
name: "my-software-attachment",
});
import pulumi
import pulumi_ibm as ibm
is_instance_software_attachment_instance = ibm.IsInstanceSoftwareAttachment("is_instance_software_attachment_instance",
instance_id=example["id"],
instance_software_attachment_id=example["softwareAttachments"][0]["id"],
name="my-software-attachment")
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.NewIsInstanceSoftwareAttachment(ctx, "is_instance_software_attachment_instance", &ibm.IsInstanceSoftwareAttachmentArgs{
InstanceId: pulumi.Any(example.Id),
InstanceSoftwareAttachmentId: pulumi.Any(example.SoftwareAttachments[0].Id),
Name: pulumi.String("my-software-attachment"),
})
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 isInstanceSoftwareAttachmentInstance = new Ibm.IsInstanceSoftwareAttachment("is_instance_software_attachment_instance", new()
{
InstanceId = example.Id,
InstanceSoftwareAttachmentId = example.SoftwareAttachments[0].Id,
Name = "my-software-attachment",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.IsInstanceSoftwareAttachment;
import com.pulumi.ibm.IsInstanceSoftwareAttachmentArgs;
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) {
var isInstanceSoftwareAttachmentInstance = new IsInstanceSoftwareAttachment("isInstanceSoftwareAttachmentInstance", IsInstanceSoftwareAttachmentArgs.builder()
.instanceId(example.id())
.instanceSoftwareAttachmentId(example.softwareAttachments()[0].id())
.name("my-software-attachment")
.build());
}
}
resources:
isInstanceSoftwareAttachmentInstance:
type: ibm:IsInstanceSoftwareAttachment
name: is_instance_software_attachment_instance
properties:
instanceId: ${example.id}
instanceSoftwareAttachmentId: ${example.softwareAttachments[0].id}
name: my-software-attachment
Example coming soon!
Create IsInstanceSoftwareAttachment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IsInstanceSoftwareAttachment(name: string, args: IsInstanceSoftwareAttachmentArgs, opts?: CustomResourceOptions);@overload
def IsInstanceSoftwareAttachment(resource_name: str,
args: IsInstanceSoftwareAttachmentInitArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IsInstanceSoftwareAttachment(resource_name: str,
opts: Optional[ResourceOptions] = None,
instance_id: Optional[str] = None,
instance_software_attachment_id: Optional[str] = None,
is_instance_software_attachment_id: Optional[str] = None,
name: Optional[str] = None)func NewIsInstanceSoftwareAttachment(ctx *Context, name string, args IsInstanceSoftwareAttachmentArgs, opts ...ResourceOption) (*IsInstanceSoftwareAttachment, error)public IsInstanceSoftwareAttachment(string name, IsInstanceSoftwareAttachmentArgs args, CustomResourceOptions? opts = null)
public IsInstanceSoftwareAttachment(String name, IsInstanceSoftwareAttachmentArgs args)
public IsInstanceSoftwareAttachment(String name, IsInstanceSoftwareAttachmentArgs args, CustomResourceOptions options)
type: ibm:IsInstanceSoftwareAttachment
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "ibm_is_instance_software_attachment" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args IsInstanceSoftwareAttachmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args IsInstanceSoftwareAttachmentInitArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args IsInstanceSoftwareAttachmentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IsInstanceSoftwareAttachmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IsInstanceSoftwareAttachmentArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var isInstanceSoftwareAttachmentResource = new Ibm.IsInstanceSoftwareAttachment("isInstanceSoftwareAttachmentResource", new()
{
InstanceId = "string",
InstanceSoftwareAttachmentId = "string",
IsInstanceSoftwareAttachmentId = "string",
Name = "string",
});
example, err := ibm.NewIsInstanceSoftwareAttachment(ctx, "isInstanceSoftwareAttachmentResource", &ibm.IsInstanceSoftwareAttachmentArgs{
InstanceId: pulumi.String("string"),
InstanceSoftwareAttachmentId: pulumi.String("string"),
IsInstanceSoftwareAttachmentId: pulumi.String("string"),
Name: pulumi.String("string"),
})
resource "ibm_is_instance_software_attachment" "isInstanceSoftwareAttachmentResource" {
lifecycle {
create_before_destroy = true
}
instance_id = "string"
instance_software_attachment_id = "string"
is_instance_software_attachment_id = "string"
name = "string"
}
var isInstanceSoftwareAttachmentResource = new IsInstanceSoftwareAttachment("isInstanceSoftwareAttachmentResource", IsInstanceSoftwareAttachmentArgs.builder()
.instanceId("string")
.instanceSoftwareAttachmentId("string")
.isInstanceSoftwareAttachmentId("string")
.name("string")
.build());
is_instance_software_attachment_resource = ibm.IsInstanceSoftwareAttachment("isInstanceSoftwareAttachmentResource",
instance_id="string",
instance_software_attachment_id="string",
is_instance_software_attachment_id="string",
name="string")
const isInstanceSoftwareAttachmentResource = new ibm.IsInstanceSoftwareAttachment("isInstanceSoftwareAttachmentResource", {
instanceId: "string",
instanceSoftwareAttachmentId: "string",
isInstanceSoftwareAttachmentId: "string",
name: "string",
});
type: ibm:IsInstanceSoftwareAttachment
properties:
instanceId: string
instanceSoftwareAttachmentId: string
isInstanceSoftwareAttachmentId: string
name: string
IsInstanceSoftwareAttachment Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The IsInstanceSoftwareAttachment resource accepts the following input properties:
- Instance
Id string - The virtual server instance identifier.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- Instance
Software stringAttachment Id - The unique identifier of the existing instance software attachment to manage. The attachment is created automatically when the instance is provisioned from a software-licensed catalog offering.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- Is
Instance stringSoftware Attachment Id - The unique identifier of the InstanceSoftwareAttachment.
- Name 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
63characters. The minimum length is1character. 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]))$/.
- Constraints: The maximum length is
- Instance
Id string - The virtual server instance identifier.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- Instance
Software stringAttachment Id - The unique identifier of the existing instance software attachment to manage. The attachment is created automatically when the instance is provisioned from a software-licensed catalog offering.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- Is
Instance stringSoftware Attachment Id - The unique identifier of the InstanceSoftwareAttachment.
- Name 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
63characters. The minimum length is1character. 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]))$/.
- Constraints: The maximum length is
- instance_
id string - The virtual server instance identifier.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- instance_
software_ stringattachment_ id - The unique identifier of the existing instance software attachment to manage. The attachment is created automatically when the instance is provisioned from a software-licensed catalog offering.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- is_
instance_ stringsoftware_ attachment_ id - The unique identifier of the InstanceSoftwareAttachment.
- name 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
63characters. The minimum length is1character. 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]))$/.
- Constraints: The maximum length is
- instance
Id String - The virtual server instance identifier.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- instance
Software StringAttachment Id - The unique identifier of the existing instance software attachment to manage. The attachment is created automatically when the instance is provisioned from a software-licensed catalog offering.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- is
Instance StringSoftware Attachment Id - The unique identifier of the InstanceSoftwareAttachment.
- name 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
63characters. The minimum length is1character. 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]))$/.
- Constraints: The maximum length is
- instance
Id string - The virtual server instance identifier.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- instance
Software stringAttachment Id - The unique identifier of the existing instance software attachment to manage. The attachment is created automatically when the instance is provisioned from a software-licensed catalog offering.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- is
Instance stringSoftware Attachment Id - The unique identifier of the InstanceSoftwareAttachment.
- name 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
63characters. The minimum length is1character. 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]))$/.
- Constraints: The maximum length is
- instance_
id str - The virtual server instance identifier.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- instance_
software_ strattachment_ id - The unique identifier of the existing instance software attachment to manage. The attachment is created automatically when the instance is provisioned from a software-licensed catalog offering.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- is_
instance_ strsoftware_ attachment_ id - The unique identifier of the InstanceSoftwareAttachment.
- name str
- The name for this instance software attachment. The name is unique across all instance software attachments for the instance.
- Constraints: The maximum length is
63characters. The minimum length is1character. 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]))$/.
- Constraints: The maximum length is
- instance
Id String - The virtual server instance identifier.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- instance
Software StringAttachment Id - The unique identifier of the existing instance software attachment to manage. The attachment is created automatically when the instance is provisioned from a software-licensed catalog offering.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- is
Instance StringSoftware Attachment Id - The unique identifier of the InstanceSoftwareAttachment.
- name 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
63characters. The minimum length is1character. 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]))$/.
- Constraints: The maximum length is
Outputs
All input properties are implicitly available as output properties. Additionally, the IsInstanceSoftwareAttachment resource produces the following output properties:
- Catalog
Offerings List<IsInstance Software Attachment Catalog Offering> - (List) The catalogoffering for this instance software attachment. May be absent if
software_attachment.lifecycle_stateis notstable. Nested schema for catalog_offering: - Created
At string - (String) The date and time that the instance software attachment was created.
- Entitlements
List<Is
Instance Software Attachment Entitlement> - (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
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Reasons List<IsInstance Software Attachment Lifecycle Reason> - (List) The lifecycle reasons for this instance software attachment (if any).
- Constraints: The minimum length is
0items. Nested schema for lifecycle_reasons:
- Constraints: The minimum length is
- 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]+)*$/.
- Constraints: Allowable values are:
- Offering
Instances List<IsInstance Software Attachment Offering Instance> - (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]+)*$/.
- Constraints: Allowable values are:
- Catalog
Offerings []IsInstance Software Attachment Catalog Offering - (List) The catalogoffering for this instance software attachment. May be absent if
software_attachment.lifecycle_stateis notstable. Nested schema for catalog_offering: - Created
At string - (String) The date and time that the instance software attachment was created.
- Entitlements
[]Is
Instance Software Attachment Entitlement - (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
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Reasons []IsInstance Software Attachment Lifecycle Reason - (List) The lifecycle reasons for this instance software attachment (if any).
- Constraints: The minimum length is
0items. Nested schema for lifecycle_reasons:
- Constraints: The minimum length is
- 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]+)*$/.
- Constraints: Allowable values are:
- Offering
Instances []IsInstance Software Attachment Offering Instance - (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]+)*$/.
- Constraints: Allowable values are:
- catalog_
offerings list(object) - (List) The catalogoffering for this instance software attachment. May be absent if
software_attachment.lifecycle_stateis notstable. 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
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle_
reasons list(object) - (List) The lifecycle reasons for this instance software attachment (if any).
- Constraints: The minimum length is
0items. Nested schema for lifecycle_reasons:
- Constraints: The minimum length is
- 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]+)*$/.
- Constraints: Allowable values are:
- 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]+)*$/.
- Constraints: Allowable values are:
- catalog
Offerings List<IsInstance Software Attachment Catalog Offering> - (List) The catalogoffering for this instance software attachment. May be absent if
software_attachment.lifecycle_stateis notstable. Nested schema for catalog_offering: - created
At String - (String) The date and time that the instance software attachment was created.
- entitlements
List<Is
Instance Software Attachment Entitlement> - (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
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Reasons List<IsInstance Software Attachment Lifecycle Reason> - (List) The lifecycle reasons for this instance software attachment (if any).
- Constraints: The minimum length is
0items. Nested schema for lifecycle_reasons:
- Constraints: The minimum length is
- 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]+)*$/.
- Constraints: Allowable values are:
- offering
Instances List<IsInstance Software Attachment Offering Instance> - (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]+)*$/.
- Constraints: Allowable values are:
- catalog
Offerings IsInstance Software Attachment Catalog Offering[] - (List) The catalogoffering for this instance software attachment. May be absent if
software_attachment.lifecycle_stateis notstable. Nested schema for catalog_offering: - created
At string - (String) The date and time that the instance software attachment was created.
- entitlements
Is
Instance Software Attachment Entitlement[] - (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
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Reasons IsInstance Software Attachment Lifecycle Reason[] - (List) The lifecycle reasons for this instance software attachment (if any).
- Constraints: The minimum length is
0items. Nested schema for lifecycle_reasons:
- Constraints: The minimum length is
- 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]+)*$/.
- Constraints: Allowable values are:
- offering
Instances IsInstance Software Attachment Offering Instance[] - (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]+)*$/.
- Constraints: Allowable values are:
- catalog_
offerings Sequence[IsInstance Software Attachment Catalog Offering] - (List) The catalogoffering for this instance software attachment. May be absent if
software_attachment.lifecycle_stateis notstable. Nested schema for catalog_offering: - created_
at str - (String) The date and time that the instance software attachment was created.
- entitlements
Sequence[Is
Instance Software Attachment Entitlement] - (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
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_
reasons Sequence[IsInstance Software Attachment Lifecycle Reason] - (List) The lifecycle reasons for this instance software attachment (if any).
- Constraints: The minimum length is
0items. Nested schema for lifecycle_reasons:
- Constraints: The minimum length is
- 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]+)*$/.
- Constraints: Allowable values are:
- offering_
instances Sequence[IsInstance Software Attachment Offering Instance] - (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]+)*$/.
- Constraints: Allowable values are:
- catalog
Offerings List<Property Map> - (List) The catalogoffering for this instance software attachment. May be absent if
software_attachment.lifecycle_stateis notstable. Nested schema for catalog_offering: - created
At 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
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Reasons List<Property Map> - (List) The lifecycle reasons for this instance software attachment (if any).
- Constraints: The minimum length is
0items. Nested schema for lifecycle_reasons:
- Constraints: The minimum length is
- 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]+)*$/.
- Constraints: Allowable values are:
- offering
Instances List<Property Map> - (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]+)*$/.
- Constraints: Allowable values are:
Look up Existing IsInstanceSoftwareAttachment Resource
Get an existing IsInstanceSoftwareAttachment resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: IsInstanceSoftwareAttachmentState, opts?: CustomResourceOptions): IsInstanceSoftwareAttachment@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
catalog_offerings: Optional[Sequence[IsInstanceSoftwareAttachmentCatalogOfferingArgs]] = None,
created_at: Optional[str] = None,
entitlements: Optional[Sequence[IsInstanceSoftwareAttachmentEntitlementArgs]] = None,
href: Optional[str] = None,
instance_id: Optional[str] = None,
instance_software_attachment_id: Optional[str] = None,
is_instance_software_attachment_id: Optional[str] = None,
lifecycle_reasons: Optional[Sequence[IsInstanceSoftwareAttachmentLifecycleReasonArgs]] = None,
lifecycle_state: Optional[str] = None,
name: Optional[str] = None,
offering_instances: Optional[Sequence[IsInstanceSoftwareAttachmentOfferingInstanceArgs]] = None,
resource_type: Optional[str] = None) -> IsInstanceSoftwareAttachmentfunc GetIsInstanceSoftwareAttachment(ctx *Context, name string, id IDInput, state *IsInstanceSoftwareAttachmentState, opts ...ResourceOption) (*IsInstanceSoftwareAttachment, error)public static IsInstanceSoftwareAttachment Get(string name, Input<string> id, IsInstanceSoftwareAttachmentState? state, CustomResourceOptions? opts = null)public static IsInstanceSoftwareAttachment get(String name, Output<String> id, IsInstanceSoftwareAttachmentState state, CustomResourceOptions options)resources: _: type: ibm:IsInstanceSoftwareAttachment get: id: ${id}import {
to = ibm_is_instance_software_attachment.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Catalog
Offerings List<IsInstance Software Attachment Catalog Offering> - (List) The catalogoffering for this instance software attachment. May be absent if
software_attachment.lifecycle_stateis notstable. Nested schema for catalog_offering: - Created
At string - (String) The date and time that the instance software attachment was created.
- Entitlements
List<Is
Instance Software Attachment Entitlement> - (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
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- Instance
Id string - The virtual server instance identifier.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- Instance
Software stringAttachment Id - The unique identifier of the existing instance software attachment to manage. The attachment is created automatically when the instance is provisioned from a software-licensed catalog offering.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- Is
Instance stringSoftware Attachment Id - The unique identifier of the InstanceSoftwareAttachment.
- Lifecycle
Reasons List<IsInstance Software Attachment Lifecycle Reason> - (List) The lifecycle reasons for this instance software attachment (if any).
- Constraints: The minimum length is
0items. Nested schema for lifecycle_reasons:
- Constraints: The minimum length is
- 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]+)*$/.
- Constraints: Allowable values are:
- Name 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
63characters. The minimum length is1character. 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]))$/.
- Constraints: The maximum length is
- Offering
Instances List<IsInstance Software Attachment Offering Instance> - (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]+)*$/.
- Constraints: Allowable values are:
- Catalog
Offerings []IsInstance Software Attachment Catalog Offering Args - (List) The catalogoffering for this instance software attachment. May be absent if
software_attachment.lifecycle_stateis notstable. Nested schema for catalog_offering: - Created
At string - (String) The date and time that the instance software attachment was created.
- Entitlements
[]Is
Instance Software Attachment Entitlement Args - (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
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- Instance
Id string - The virtual server instance identifier.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- Instance
Software stringAttachment Id - The unique identifier of the existing instance software attachment to manage. The attachment is created automatically when the instance is provisioned from a software-licensed catalog offering.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- Is
Instance stringSoftware Attachment Id - The unique identifier of the InstanceSoftwareAttachment.
- Lifecycle
Reasons []IsInstance Software Attachment Lifecycle Reason Args - (List) The lifecycle reasons for this instance software attachment (if any).
- Constraints: The minimum length is
0items. Nested schema for lifecycle_reasons:
- Constraints: The minimum length is
- 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]+)*$/.
- Constraints: Allowable values are:
- Name 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
63characters. The minimum length is1character. 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]))$/.
- Constraints: The maximum length is
- Offering
Instances []IsInstance Software Attachment Offering Instance Args - (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]+)*$/.
- Constraints: Allowable values are:
- catalog_
offerings list(object) - (List) The catalogoffering for this instance software attachment. May be absent if
software_attachment.lifecycle_stateis notstable. 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
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- instance_
id string - The virtual server instance identifier.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- instance_
software_ stringattachment_ id - The unique identifier of the existing instance software attachment to manage. The attachment is created automatically when the instance is provisioned from a software-licensed catalog offering.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- is_
instance_ stringsoftware_ attachment_ id - The unique identifier of the InstanceSoftwareAttachment.
- lifecycle_
reasons list(object) - (List) The lifecycle reasons for this instance software attachment (if any).
- Constraints: The minimum length is
0items. Nested schema for lifecycle_reasons:
- Constraints: The minimum length is
- 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]+)*$/.
- Constraints: Allowable values are:
- name 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
63characters. The minimum length is1character. 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]))$/.
- Constraints: The maximum length is
- 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]+)*$/.
- Constraints: Allowable values are:
- catalog
Offerings List<IsInstance Software Attachment Catalog Offering> - (List) The catalogoffering for this instance software attachment. May be absent if
software_attachment.lifecycle_stateis notstable. Nested schema for catalog_offering: - created
At String - (String) The date and time that the instance software attachment was created.
- entitlements
List<Is
Instance Software Attachment Entitlement> - (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
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- instance
Id String - The virtual server instance identifier.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- instance
Software StringAttachment Id - The unique identifier of the existing instance software attachment to manage. The attachment is created automatically when the instance is provisioned from a software-licensed catalog offering.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- is
Instance StringSoftware Attachment Id - The unique identifier of the InstanceSoftwareAttachment.
- lifecycle
Reasons List<IsInstance Software Attachment Lifecycle Reason> - (List) The lifecycle reasons for this instance software attachment (if any).
- Constraints: The minimum length is
0items. Nested schema for lifecycle_reasons:
- Constraints: The minimum length is
- 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]+)*$/.
- Constraints: Allowable values are:
- name 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
63characters. The minimum length is1character. 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]))$/.
- Constraints: The maximum length is
- offering
Instances List<IsInstance Software Attachment Offering Instance> - (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]+)*$/.
- Constraints: Allowable values are:
- catalog
Offerings IsInstance Software Attachment Catalog Offering[] - (List) The catalogoffering for this instance software attachment. May be absent if
software_attachment.lifecycle_stateis notstable. Nested schema for catalog_offering: - created
At string - (String) The date and time that the instance software attachment was created.
- entitlements
Is
Instance Software Attachment Entitlement[] - (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
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- instance
Id string - The virtual server instance identifier.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- instance
Software stringAttachment Id - The unique identifier of the existing instance software attachment to manage. The attachment is created automatically when the instance is provisioned from a software-licensed catalog offering.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- is
Instance stringSoftware Attachment Id - The unique identifier of the InstanceSoftwareAttachment.
- lifecycle
Reasons IsInstance Software Attachment Lifecycle Reason[] - (List) The lifecycle reasons for this instance software attachment (if any).
- Constraints: The minimum length is
0items. Nested schema for lifecycle_reasons:
- Constraints: The minimum length is
- 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]+)*$/.
- Constraints: Allowable values are:
- name 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
63characters. The minimum length is1character. 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]))$/.
- Constraints: The maximum length is
- offering
Instances IsInstance Software Attachment Offering Instance[] - (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]+)*$/.
- Constraints: Allowable values are:
- catalog_
offerings Sequence[IsInstance Software Attachment Catalog Offering Args] - (List) The catalogoffering for this instance software attachment. May be absent if
software_attachment.lifecycle_stateis notstable. Nested schema for catalog_offering: - created_
at str - (String) The date and time that the instance software attachment was created.
- entitlements
Sequence[Is
Instance Software Attachment Entitlement Args] - (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
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- instance_
id str - The virtual server instance identifier.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- instance_
software_ strattachment_ id - The unique identifier of the existing instance software attachment to manage. The attachment is created automatically when the instance is provisioned from a software-licensed catalog offering.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- is_
instance_ strsoftware_ attachment_ id - The unique identifier of the InstanceSoftwareAttachment.
- lifecycle_
reasons Sequence[IsInstance Software Attachment Lifecycle Reason Args] - (List) The lifecycle reasons for this instance software attachment (if any).
- Constraints: The minimum length is
0items. Nested schema for lifecycle_reasons:
- Constraints: The minimum length is
- 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]+)*$/.
- Constraints: Allowable values are:
- name str
- The name for this instance software attachment. The name is unique across all instance software attachments for the instance.
- Constraints: The maximum length is
63characters. The minimum length is1character. 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]))$/.
- Constraints: The maximum length is
- offering_
instances Sequence[IsInstance Software Attachment Offering Instance Args] - (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]+)*$/.
- Constraints: Allowable values are:
- catalog
Offerings List<Property Map> - (List) The catalogoffering for this instance software attachment. May be absent if
software_attachment.lifecycle_stateis notstable. Nested schema for catalog_offering: - created
At 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
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- instance
Id String - The virtual server instance identifier.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- instance
Software StringAttachment Id - The unique identifier of the existing instance software attachment to manage. The attachment is created automatically when the instance is provisioned from a software-licensed catalog offering.
- Constraints: The maximum length is
64characters. The minimum length is1character. The value must match regular expression/^[-0-9a-z_]+$/.
- Constraints: The maximum length is
- is
Instance StringSoftware Attachment Id - The unique identifier of the InstanceSoftwareAttachment.
- lifecycle
Reasons List<Property Map> - (List) The lifecycle reasons for this instance software attachment (if any).
- Constraints: The minimum length is
0items. Nested schema for lifecycle_reasons:
- Constraints: The minimum length is
- 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]+)*$/.
- Constraints: Allowable values are:
- name 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
63characters. The minimum length is1character. 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]))$/.
- Constraints: The maximum length is
- offering
Instances List<Property Map> - (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]+)*$/.
- Constraints: Allowable values are:
Supporting Types
IsInstanceSoftwareAttachmentCatalogOffering, IsInstanceSoftwareAttachmentCatalogOfferingArgs
- Plans
List<Is
Instance Software Attachment Catalog Offering Plan> - (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<Is
Instance Software Attachment Catalog Offering Version> - (List) The catalog offering version associated with this instance software attachment. Nested schema for version:
- Plans
[]Is
Instance Software Attachment Catalog Offering Plan - (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
[]Is
Instance Software Attachment Catalog Offering Version - (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<Is
Instance Software Attachment Catalog Offering Plan> - (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<Is
Instance Software Attachment Catalog Offering Version> - (List) The catalog offering version associated with this instance software attachment. Nested schema for version:
- plans
Is
Instance Software Attachment Catalog Offering Plan[] - (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
Is
Instance Software Attachment Catalog Offering Version[] - (List) The catalog offering version associated with this instance software attachment. Nested schema for version:
- plans
Sequence[Is
Instance Software Attachment Catalog Offering Plan] - (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[Is
Instance Software Attachment Catalog Offering Version] - (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:
IsInstanceSoftwareAttachmentCatalogOfferingPlan, IsInstanceSoftwareAttachmentCatalogOfferingPlanArgs
- 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
512characters. The minimum length is17characters. 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-_\\.\/]*$/.
- Constraints: The maximum length is
- Deleteds
List<Is
Instance Software Attachment Catalog Offering Plan Deleted> - (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
512characters. The minimum length is17characters. 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-_\\.\/]*$/.
- Constraints: The maximum length is
- Deleteds
[]Is
Instance Software Attachment Catalog Offering Plan Deleted - (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
512characters. The minimum length is17characters. 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-_\\.\/]*$/.
- Constraints: The maximum length is
- 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
512characters. The minimum length is17characters. 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-_\\.\/]*$/.
- Constraints: The maximum length is
- deleteds
List<Is
Instance Software Attachment Catalog Offering Plan Deleted> - (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
512characters. The minimum length is17characters. 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-_\\.\/]*$/.
- Constraints: The maximum length is
- deleteds
Is
Instance Software Attachment Catalog Offering Plan Deleted[] - (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
512characters. The minimum length is17characters. 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-_\\.\/]*$/.
- Constraints: The maximum length is
- deleteds
Sequence[Is
Instance Software Attachment Catalog Offering Plan Deleted] - (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
512characters. The minimum length is17characters. 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-_\\.\/]*$/.
- Constraints: The maximum length is
- deleteds List<Property Map>
- (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
IsInstanceSoftwareAttachmentCatalogOfferingPlanDeleted, IsInstanceSoftwareAttachmentCatalogOfferingPlanDeletedArgs
- More
Info string - (String) A link to documentation about the reason for this lifecycle state.
- Constraints: The maximum length is
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- More
Info string - (String) A link to documentation about the reason for this lifecycle state.
- Constraints: The maximum length is
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- more_
info string - (String) A link to documentation about the reason for this lifecycle state.
- Constraints: The maximum length is
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- more
Info String - (String) A link to documentation about the reason for this lifecycle state.
- Constraints: The maximum length is
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- more
Info string - (String) A link to documentation about the reason for this lifecycle state.
- Constraints: The maximum length is
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- more_
info str - (String) A link to documentation about the reason for this lifecycle state.
- Constraints: The maximum length is
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- more
Info String - (String) A link to documentation about the reason for this lifecycle state.
- Constraints: The maximum length is
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
IsInstanceSoftwareAttachmentCatalogOfferingVersion, IsInstanceSoftwareAttachmentCatalogOfferingVersionArgs
- 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
512characters. The minimum length is17characters. 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-_\\.\/]*$/.
- Constraints: The maximum length is
- 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
512characters. The minimum length is17characters. 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-_\\.\/]*$/.
- Constraints: The maximum length is
- 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
512characters. The minimum length is17characters. 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-_\\.\/]*$/.
- Constraints: The maximum length is
- 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
512characters. The minimum length is17characters. 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-_\\.\/]*$/.
- Constraints: The maximum length is
- 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
512characters. The minimum length is17characters. 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-_\\.\/]*$/.
- Constraints: The maximum length is
- 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
512characters. The minimum length is17characters. 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-_\\.\/]*$/.
- Constraints: The maximum length is
- 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
512characters. The minimum length is17characters. 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-_\\.\/]*$/.
- Constraints: The maximum length is
IsInstanceSoftwareAttachmentEntitlement, IsInstanceSoftwareAttachmentEntitlementArgs
- Licensed
Softwares List<IsInstance Software Attachment Entitlement Licensed Software> - (List) The licensed software for this instance software attachment entitlement. Nested schema for licensed_software:
- Licensed
Softwares []IsInstance Software Attachment Entitlement Licensed Software - (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:
- licensed
Softwares List<IsInstance Software Attachment Entitlement Licensed Software> - (List) The licensed software for this instance software attachment entitlement. Nested schema for licensed_software:
- licensed
Softwares IsInstance Software Attachment Entitlement Licensed Software[] - (List) The licensed software for this instance software attachment entitlement. Nested schema for licensed_software:
- licensed_
softwares Sequence[IsInstance Software Attachment Entitlement Licensed Software] - (List) The licensed software for this instance software attachment entitlement. Nested schema for licensed_software:
- licensed
Softwares List<Property Map> - (List) The licensed software for this instance software attachment entitlement. Nested schema for licensed_software:
IsInstanceSoftwareAttachmentEntitlementLicensedSoftware, IsInstanceSoftwareAttachmentEntitlementLicensedSoftwareArgs
- Sku string
- (String) The SKU for this licensed software.
- Constraints: The maximum length is
1024characters. The minimum length is1character. The value must match regular expression/^[ -~]+$/.
- Constraints: The maximum length is
- Sku string
- (String) The SKU for this licensed software.
- Constraints: The maximum length is
1024characters. The minimum length is1character. The value must match regular expression/^[ -~]+$/.
- Constraints: The maximum length is
- sku string
- (String) The SKU for this licensed software.
- Constraints: The maximum length is
1024characters. The minimum length is1character. The value must match regular expression/^[ -~]+$/.
- Constraints: The maximum length is
- sku String
- (String) The SKU for this licensed software.
- Constraints: The maximum length is
1024characters. The minimum length is1character. The value must match regular expression/^[ -~]+$/.
- Constraints: The maximum length is
- sku string
- (String) The SKU for this licensed software.
- Constraints: The maximum length is
1024characters. The minimum length is1character. The value must match regular expression/^[ -~]+$/.
- Constraints: The maximum length is
- sku str
- (String) The SKU for this licensed software.
- Constraints: The maximum length is
1024characters. The minimum length is1character. The value must match regular expression/^[ -~]+$/.
- Constraints: The maximum length is
- sku String
- (String) The SKU for this licensed software.
- Constraints: The maximum length is
1024characters. The minimum length is1character. The value must match regular expression/^[ -~]+$/.
- Constraints: The maximum length is
IsInstanceSoftwareAttachmentLifecycleReason, IsInstanceSoftwareAttachmentLifecycleReasonArgs
- 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.
- Constraints: Allowable values are:
- 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
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- 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.
- Constraints: Allowable values are:
- 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
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- 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.
- Constraints: Allowable values are:
- 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
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- 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.
- Constraints: Allowable values are:
- 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
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- 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.
- Constraints: Allowable values are:
- 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
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- 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.
- Constraints: Allowable values are:
- 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
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
- 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.
- Constraints: Allowable values are:
- 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
8000characters. The minimum length is10characters. The value must match regular expression/^http(s)?:\/\/([^\/?#]*)([^?#]*)(\\?([^#]*))?(#(.*))?$/.
- Constraints: The maximum length is
IsInstanceSoftwareAttachmentOfferingInstance, IsInstanceSoftwareAttachmentOfferingInstanceArgs
- 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
512characters. The minimum length is17characters. 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-_\\.\/]*$/.
- Constraints: The maximum length is
- 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
512characters. The minimum length is17characters. 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-_\\.\/]*$/.
- Constraints: The maximum length is
- 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
512characters. The minimum length is17characters. 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-_\\.\/]*$/.
- Constraints: The maximum length is
- 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
512characters. The minimum length is17characters. 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-_\\.\/]*$/.
- Constraints: The maximum length is
- 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
512characters. The minimum length is17characters. 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-_\\.\/]*$/.
- Constraints: The maximum length is
- 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
512characters. The minimum length is17characters. 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-_\\.\/]*$/.
- Constraints: The maximum length is
- 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
512characters. The minimum length is17characters. 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-_\\.\/]*$/.
- Constraints: The maximum length is
Import
You can import the ibm_is_instance_software_attachment resource by using id.
The id property can be formed from instance_id, and instance_software_attachment_id in the following format:
<instance_id>/<instance_software_attachment_id>
instance_id: A string. The virtual server instance identifier.instance_software_attachment_id: A string in the format0717-7ec86020-1c6e-4889-b3f0-a15f2e50f87e. The unique identifier for this instance software attachment.
Syntax
```sh $ pulumi import ibm:index/isInstanceSoftwareAttachment:IsInstanceSoftwareAttachment is_instance_software_attachment <instance_id>/<instance_software_attachment_id> ```
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibmTerraform Provider.
published on Wednesday, Aug 5, 2026 by ibm-cloud