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

ibm.IsInstanceGroupMembership

Explore with Pulumi AI

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

    Create, update, or delete a instance group memership of an instance group. For more information, about instance group membership, see bulk provisioning instances with instance groups.

    Note: VPC infrastructure services are a regional specific based endpoint, by default targets to us-south. Please make sure to target right region in the provider block as shown in the provider.tf file, if VPC service is created in region other than us-south.

    provider.tf

    import * as pulumi from "@pulumi/pulumi";
    
    import pulumi
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    
    return await Deployment.RunAsync(() => 
    {
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    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) {
        }
    }
    
    {}
    

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const example = new ibm.IsInstanceGroupMembership("example", {
        instanceGroup: ibm_is_instance_group.example.id,
        instanceGroupMembership: data.ibm_is_instance_group_memberships.example.memberships[0].instance_group_membership,
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    example = ibm.IsInstanceGroupMembership("example",
        instance_group=ibm_is_instance_group["example"]["id"],
        instance_group_membership=data["ibm_is_instance_group_memberships"]["example"]["memberships"][0]["instance_group_membership"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ibm.NewIsInstanceGroupMembership(ctx, "example", &ibm.IsInstanceGroupMembershipArgs{
    			InstanceGroup:           pulumi.Any(ibm_is_instance_group.Example.Id),
    			InstanceGroupMembership: pulumi.Any(data.Ibm_is_instance_group_memberships.Example.Memberships[0].Instance_group_membership),
    		})
    		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 example = new Ibm.IsInstanceGroupMembership("example", new()
        {
            InstanceGroup = ibm_is_instance_group.Example.Id,
            InstanceGroupMembership = data.Ibm_is_instance_group_memberships.Example.Memberships[0].Instance_group_membership,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.IsInstanceGroupMembership;
    import com.pulumi.ibm.IsInstanceGroupMembershipArgs;
    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 example = new IsInstanceGroupMembership("example", IsInstanceGroupMembershipArgs.builder()
                .instanceGroup(ibm_is_instance_group.example().id())
                .instanceGroupMembership(data.ibm_is_instance_group_memberships().example().memberships()[0].instance_group_membership())
                .build());
    
        }
    }
    
    resources:
      example:
        type: ibm:IsInstanceGroupMembership
        properties:
          instanceGroup: ${ibm_is_instance_group.example.id}
          instanceGroupMembership: ${data.ibm_is_instance_group_memberships.example.memberships[0].instance_group_membership}
    

    Create IsInstanceGroupMembership Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new IsInstanceGroupMembership(name: string, args: IsInstanceGroupMembershipArgs, opts?: CustomResourceOptions);
    @overload
    def IsInstanceGroupMembership(resource_name: str,
                                  args: IsInstanceGroupMembershipArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def IsInstanceGroupMembership(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  instance_group: Optional[str] = None,
                                  instance_group_membership: Optional[str] = None,
                                  action_delete: Optional[bool] = None,
                                  is_instance_group_membership_id: Optional[str] = None,
                                  name: Optional[str] = None)
    func NewIsInstanceGroupMembership(ctx *Context, name string, args IsInstanceGroupMembershipArgs, opts ...ResourceOption) (*IsInstanceGroupMembership, error)
    public IsInstanceGroupMembership(string name, IsInstanceGroupMembershipArgs args, CustomResourceOptions? opts = null)
    public IsInstanceGroupMembership(String name, IsInstanceGroupMembershipArgs args)
    public IsInstanceGroupMembership(String name, IsInstanceGroupMembershipArgs args, CustomResourceOptions options)
    
    type: ibm:IsInstanceGroupMembership
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args IsInstanceGroupMembershipArgs
    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 IsInstanceGroupMembershipArgs
    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 IsInstanceGroupMembershipArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IsInstanceGroupMembershipArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IsInstanceGroupMembershipArgs
    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 isInstanceGroupMembershipResource = new Ibm.IsInstanceGroupMembership("isInstanceGroupMembershipResource", new()
    {
        InstanceGroup = "string",
        InstanceGroupMembership = "string",
        ActionDelete = false,
        IsInstanceGroupMembershipId = "string",
        Name = "string",
    });
    
    example, err := ibm.NewIsInstanceGroupMembership(ctx, "isInstanceGroupMembershipResource", &ibm.IsInstanceGroupMembershipArgs{
    	InstanceGroup:               pulumi.String("string"),
    	InstanceGroupMembership:     pulumi.String("string"),
    	ActionDelete:                pulumi.Bool(false),
    	IsInstanceGroupMembershipId: pulumi.String("string"),
    	Name:                        pulumi.String("string"),
    })
    
    var isInstanceGroupMembershipResource = new IsInstanceGroupMembership("isInstanceGroupMembershipResource", IsInstanceGroupMembershipArgs.builder()
        .instanceGroup("string")
        .instanceGroupMembership("string")
        .actionDelete(false)
        .isInstanceGroupMembershipId("string")
        .name("string")
        .build());
    
    is_instance_group_membership_resource = ibm.IsInstanceGroupMembership("isInstanceGroupMembershipResource",
        instance_group="string",
        instance_group_membership="string",
        action_delete=False,
        is_instance_group_membership_id="string",
        name="string")
    
    const isInstanceGroupMembershipResource = new ibm.IsInstanceGroupMembership("isInstanceGroupMembershipResource", {
        instanceGroup: "string",
        instanceGroupMembership: "string",
        actionDelete: false,
        isInstanceGroupMembershipId: "string",
        name: "string",
    });
    
    type: ibm:IsInstanceGroupMembership
    properties:
        actionDelete: false
        instanceGroup: string
        instanceGroupMembership: string
        isInstanceGroupMembershipId: string
        name: string
    

    IsInstanceGroupMembership 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 IsInstanceGroupMembership resource accepts the following input properties:

    InstanceGroup string
    The ID of the instance group.
    InstanceGroupMembership string
    The ID of the instance group membership.
    ActionDelete bool
    The delete flag for the instance group membership. You must set to true to delete the instance group membership.
    IsInstanceGroupMembershipId string
    (String) The combination ID of the instance group and the instance group membership ID's.
    Name string
    The name of the instance group membership.
    InstanceGroup string
    The ID of the instance group.
    InstanceGroupMembership string
    The ID of the instance group membership.
    ActionDelete bool
    The delete flag for the instance group membership. You must set to true to delete the instance group membership.
    IsInstanceGroupMembershipId string
    (String) The combination ID of the instance group and the instance group membership ID's.
    Name string
    The name of the instance group membership.
    instanceGroup String
    The ID of the instance group.
    instanceGroupMembership String
    The ID of the instance group membership.
    actionDelete Boolean
    The delete flag for the instance group membership. You must set to true to delete the instance group membership.
    isInstanceGroupMembershipId String
    (String) The combination ID of the instance group and the instance group membership ID's.
    name String
    The name of the instance group membership.
    instanceGroup string
    The ID of the instance group.
    instanceGroupMembership string
    The ID of the instance group membership.
    actionDelete boolean
    The delete flag for the instance group membership. You must set to true to delete the instance group membership.
    isInstanceGroupMembershipId string
    (String) The combination ID of the instance group and the instance group membership ID's.
    name string
    The name of the instance group membership.
    instance_group str
    The ID of the instance group.
    instance_group_membership str
    The ID of the instance group membership.
    action_delete bool
    The delete flag for the instance group membership. You must set to true to delete the instance group membership.
    is_instance_group_membership_id str
    (String) The combination ID of the instance group and the instance group membership ID's.
    name str
    The name of the instance group membership.
    instanceGroup String
    The ID of the instance group.
    instanceGroupMembership String
    The ID of the instance group membership.
    actionDelete Boolean
    The delete flag for the instance group membership. You must set to true to delete the instance group membership.
    isInstanceGroupMembershipId String
    (String) The combination ID of the instance group and the instance group membership ID's.
    name String
    The name of the instance group membership.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the IsInstanceGroupMembership resource produces the following output properties:

    DeleteInstanceOnMembershipDelete bool
    (String) If set to true, when deleting the membership, the instance gets deleted.
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceTemplates List<IsInstanceGroupMembershipInstanceTemplate>
    (String) The unique identifier for this instance template.
    Instances List<IsInstanceGroupMembershipInstance>
    (List) Nested instance blocks have the following structure:
    LoadBalancerPoolMember string
    (String) The unique identifier for this load balancer pool member.
    Status string
    (String) The status of the instance group membership are: • deleting Membership is deleting dependent resources. • failed Membership is unable to maintain dependent resources. • healthy Membership is active and serving in the group. • pending Membership is waiting for dependent resources. • unhealthy Membership contains unhealthy dependent resources.
    DeleteInstanceOnMembershipDelete bool
    (String) If set to true, when deleting the membership, the instance gets deleted.
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceTemplates []IsInstanceGroupMembershipInstanceTemplate
    (String) The unique identifier for this instance template.
    Instances []IsInstanceGroupMembershipInstance
    (List) Nested instance blocks have the following structure:
    LoadBalancerPoolMember string
    (String) The unique identifier for this load balancer pool member.
    Status string
    (String) The status of the instance group membership are: • deleting Membership is deleting dependent resources. • failed Membership is unable to maintain dependent resources. • healthy Membership is active and serving in the group. • pending Membership is waiting for dependent resources. • unhealthy Membership contains unhealthy dependent resources.
    deleteInstanceOnMembershipDelete Boolean
    (String) If set to true, when deleting the membership, the instance gets deleted.
    id String
    The provider-assigned unique ID for this managed resource.
    instanceTemplates List<IsInstanceGroupMembershipInstanceTemplate>
    (String) The unique identifier for this instance template.
    instances List<IsInstanceGroupMembershipInstance>
    (List) Nested instance blocks have the following structure:
    loadBalancerPoolMember String
    (String) The unique identifier for this load balancer pool member.
    status String
    (String) The status of the instance group membership are: • deleting Membership is deleting dependent resources. • failed Membership is unable to maintain dependent resources. • healthy Membership is active and serving in the group. • pending Membership is waiting for dependent resources. • unhealthy Membership contains unhealthy dependent resources.
    deleteInstanceOnMembershipDelete boolean
    (String) If set to true, when deleting the membership, the instance gets deleted.
    id string
    The provider-assigned unique ID for this managed resource.
    instanceTemplates IsInstanceGroupMembershipInstanceTemplate[]
    (String) The unique identifier for this instance template.
    instances IsInstanceGroupMembershipInstance[]
    (List) Nested instance blocks have the following structure:
    loadBalancerPoolMember string
    (String) The unique identifier for this load balancer pool member.
    status string
    (String) The status of the instance group membership are: • deleting Membership is deleting dependent resources. • failed Membership is unable to maintain dependent resources. • healthy Membership is active and serving in the group. • pending Membership is waiting for dependent resources. • unhealthy Membership contains unhealthy dependent resources.
    delete_instance_on_membership_delete bool
    (String) If set to true, when deleting the membership, the instance gets deleted.
    id str
    The provider-assigned unique ID for this managed resource.
    instance_templates Sequence[IsInstanceGroupMembershipInstanceTemplate]
    (String) The unique identifier for this instance template.
    instances Sequence[IsInstanceGroupMembershipInstance]
    (List) Nested instance blocks have the following structure:
    load_balancer_pool_member str
    (String) The unique identifier for this load balancer pool member.
    status str
    (String) The status of the instance group membership are: • deleting Membership is deleting dependent resources. • failed Membership is unable to maintain dependent resources. • healthy Membership is active and serving in the group. • pending Membership is waiting for dependent resources. • unhealthy Membership contains unhealthy dependent resources.
    deleteInstanceOnMembershipDelete Boolean
    (String) If set to true, when deleting the membership, the instance gets deleted.
    id String
    The provider-assigned unique ID for this managed resource.
    instanceTemplates List<Property Map>
    (String) The unique identifier for this instance template.
    instances List<Property Map>
    (List) Nested instance blocks have the following structure:
    loadBalancerPoolMember String
    (String) The unique identifier for this load balancer pool member.
    status String
    (String) The status of the instance group membership are: • deleting Membership is deleting dependent resources. • failed Membership is unable to maintain dependent resources. • healthy Membership is active and serving in the group. • pending Membership is waiting for dependent resources. • unhealthy Membership contains unhealthy dependent resources.

    Look up Existing IsInstanceGroupMembership Resource

    Get an existing IsInstanceGroupMembership 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?: IsInstanceGroupMembershipState, opts?: CustomResourceOptions): IsInstanceGroupMembership
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            action_delete: Optional[bool] = None,
            delete_instance_on_membership_delete: Optional[bool] = None,
            instance_group: Optional[str] = None,
            instance_group_membership: Optional[str] = None,
            instance_templates: Optional[Sequence[IsInstanceGroupMembershipInstanceTemplateArgs]] = None,
            instances: Optional[Sequence[IsInstanceGroupMembershipInstanceArgs]] = None,
            is_instance_group_membership_id: Optional[str] = None,
            load_balancer_pool_member: Optional[str] = None,
            name: Optional[str] = None,
            status: Optional[str] = None) -> IsInstanceGroupMembership
    func GetIsInstanceGroupMembership(ctx *Context, name string, id IDInput, state *IsInstanceGroupMembershipState, opts ...ResourceOption) (*IsInstanceGroupMembership, error)
    public static IsInstanceGroupMembership Get(string name, Input<string> id, IsInstanceGroupMembershipState? state, CustomResourceOptions? opts = null)
    public static IsInstanceGroupMembership get(String name, Output<String> id, IsInstanceGroupMembershipState state, CustomResourceOptions options)
    resources:  _:    type: ibm:IsInstanceGroupMembership    get:      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.
    The following state arguments are supported:
    ActionDelete bool
    The delete flag for the instance group membership. You must set to true to delete the instance group membership.
    DeleteInstanceOnMembershipDelete bool
    (String) If set to true, when deleting the membership, the instance gets deleted.
    InstanceGroup string
    The ID of the instance group.
    InstanceGroupMembership string
    The ID of the instance group membership.
    InstanceTemplates List<IsInstanceGroupMembershipInstanceTemplate>
    (String) The unique identifier for this instance template.
    Instances List<IsInstanceGroupMembershipInstance>
    (List) Nested instance blocks have the following structure:
    IsInstanceGroupMembershipId string
    (String) The combination ID of the instance group and the instance group membership ID's.
    LoadBalancerPoolMember string
    (String) The unique identifier for this load balancer pool member.
    Name string
    The name of the instance group membership.
    Status string
    (String) The status of the instance group membership are: • deleting Membership is deleting dependent resources. • failed Membership is unable to maintain dependent resources. • healthy Membership is active and serving in the group. • pending Membership is waiting for dependent resources. • unhealthy Membership contains unhealthy dependent resources.
    ActionDelete bool
    The delete flag for the instance group membership. You must set to true to delete the instance group membership.
    DeleteInstanceOnMembershipDelete bool
    (String) If set to true, when deleting the membership, the instance gets deleted.
    InstanceGroup string
    The ID of the instance group.
    InstanceGroupMembership string
    The ID of the instance group membership.
    InstanceTemplates []IsInstanceGroupMembershipInstanceTemplateArgs
    (String) The unique identifier for this instance template.
    Instances []IsInstanceGroupMembershipInstanceArgs
    (List) Nested instance blocks have the following structure:
    IsInstanceGroupMembershipId string
    (String) The combination ID of the instance group and the instance group membership ID's.
    LoadBalancerPoolMember string
    (String) The unique identifier for this load balancer pool member.
    Name string
    The name of the instance group membership.
    Status string
    (String) The status of the instance group membership are: • deleting Membership is deleting dependent resources. • failed Membership is unable to maintain dependent resources. • healthy Membership is active and serving in the group. • pending Membership is waiting for dependent resources. • unhealthy Membership contains unhealthy dependent resources.
    actionDelete Boolean
    The delete flag for the instance group membership. You must set to true to delete the instance group membership.
    deleteInstanceOnMembershipDelete Boolean
    (String) If set to true, when deleting the membership, the instance gets deleted.
    instanceGroup String
    The ID of the instance group.
    instanceGroupMembership String
    The ID of the instance group membership.
    instanceTemplates List<IsInstanceGroupMembershipInstanceTemplate>
    (String) The unique identifier for this instance template.
    instances List<IsInstanceGroupMembershipInstance>
    (List) Nested instance blocks have the following structure:
    isInstanceGroupMembershipId String
    (String) The combination ID of the instance group and the instance group membership ID's.
    loadBalancerPoolMember String
    (String) The unique identifier for this load balancer pool member.
    name String
    The name of the instance group membership.
    status String
    (String) The status of the instance group membership are: • deleting Membership is deleting dependent resources. • failed Membership is unable to maintain dependent resources. • healthy Membership is active and serving in the group. • pending Membership is waiting for dependent resources. • unhealthy Membership contains unhealthy dependent resources.
    actionDelete boolean
    The delete flag for the instance group membership. You must set to true to delete the instance group membership.
    deleteInstanceOnMembershipDelete boolean
    (String) If set to true, when deleting the membership, the instance gets deleted.
    instanceGroup string
    The ID of the instance group.
    instanceGroupMembership string
    The ID of the instance group membership.
    instanceTemplates IsInstanceGroupMembershipInstanceTemplate[]
    (String) The unique identifier for this instance template.
    instances IsInstanceGroupMembershipInstance[]
    (List) Nested instance blocks have the following structure:
    isInstanceGroupMembershipId string
    (String) The combination ID of the instance group and the instance group membership ID's.
    loadBalancerPoolMember string
    (String) The unique identifier for this load balancer pool member.
    name string
    The name of the instance group membership.
    status string
    (String) The status of the instance group membership are: • deleting Membership is deleting dependent resources. • failed Membership is unable to maintain dependent resources. • healthy Membership is active and serving in the group. • pending Membership is waiting for dependent resources. • unhealthy Membership contains unhealthy dependent resources.
    action_delete bool
    The delete flag for the instance group membership. You must set to true to delete the instance group membership.
    delete_instance_on_membership_delete bool
    (String) If set to true, when deleting the membership, the instance gets deleted.
    instance_group str
    The ID of the instance group.
    instance_group_membership str
    The ID of the instance group membership.
    instance_templates Sequence[IsInstanceGroupMembershipInstanceTemplateArgs]
    (String) The unique identifier for this instance template.
    instances Sequence[IsInstanceGroupMembershipInstanceArgs]
    (List) Nested instance blocks have the following structure:
    is_instance_group_membership_id str
    (String) The combination ID of the instance group and the instance group membership ID's.
    load_balancer_pool_member str
    (String) The unique identifier for this load balancer pool member.
    name str
    The name of the instance group membership.
    status str
    (String) The status of the instance group membership are: • deleting Membership is deleting dependent resources. • failed Membership is unable to maintain dependent resources. • healthy Membership is active and serving in the group. • pending Membership is waiting for dependent resources. • unhealthy Membership contains unhealthy dependent resources.
    actionDelete Boolean
    The delete flag for the instance group membership. You must set to true to delete the instance group membership.
    deleteInstanceOnMembershipDelete Boolean
    (String) If set to true, when deleting the membership, the instance gets deleted.
    instanceGroup String
    The ID of the instance group.
    instanceGroupMembership String
    The ID of the instance group membership.
    instanceTemplates List<Property Map>
    (String) The unique identifier for this instance template.
    instances List<Property Map>
    (List) Nested instance blocks have the following structure:
    isInstanceGroupMembershipId String
    (String) The combination ID of the instance group and the instance group membership ID's.
    loadBalancerPoolMember String
    (String) The unique identifier for this load balancer pool member.
    name String
    The name of the instance group membership.
    status String
    (String) The status of the instance group membership are: • deleting Membership is deleting dependent resources. • failed Membership is unable to maintain dependent resources. • healthy Membership is active and serving in the group. • pending Membership is waiting for dependent resources. • unhealthy Membership contains unhealthy dependent resources.

    Supporting Types

    IsInstanceGroupMembershipInstance, IsInstanceGroupMembershipInstanceArgs

    Crn string
    (String) The CRN for this instance template.
    Name string
    The name of the instance group membership.
    VirtualServerInstance string
    (String) The unique identifier for this virtual server instance.
    Crn string
    (String) The CRN for this instance template.
    Name string
    The name of the instance group membership.
    VirtualServerInstance string
    (String) The unique identifier for this virtual server instance.
    crn String
    (String) The CRN for this instance template.
    name String
    The name of the instance group membership.
    virtualServerInstance String
    (String) The unique identifier for this virtual server instance.
    crn string
    (String) The CRN for this instance template.
    name string
    The name of the instance group membership.
    virtualServerInstance string
    (String) The unique identifier for this virtual server instance.
    crn str
    (String) The CRN for this instance template.
    name str
    The name of the instance group membership.
    virtual_server_instance str
    (String) The unique identifier for this virtual server instance.
    crn String
    (String) The CRN for this instance template.
    name String
    The name of the instance group membership.
    virtualServerInstance String
    (String) The unique identifier for this virtual server instance.

    IsInstanceGroupMembershipInstanceTemplate, IsInstanceGroupMembershipInstanceTemplateArgs

    Crn string
    (String) The CRN for this instance template.
    InstanceTemplate string
    (String) The unique identifier for this instance template.
    Name string
    The name of the instance group membership.
    Crn string
    (String) The CRN for this instance template.
    InstanceTemplate string
    (String) The unique identifier for this instance template.
    Name string
    The name of the instance group membership.
    crn String
    (String) The CRN for this instance template.
    instanceTemplate String
    (String) The unique identifier for this instance template.
    name String
    The name of the instance group membership.
    crn string
    (String) The CRN for this instance template.
    instanceTemplate string
    (String) The unique identifier for this instance template.
    name string
    The name of the instance group membership.
    crn str
    (String) The CRN for this instance template.
    instance_template str
    (String) The unique identifier for this instance template.
    name str
    The name of the instance group membership.
    crn String
    (String) The CRN for this instance template.
    instanceTemplate String
    (String) The unique identifier for this instance template.
    name String
    The name of the instance group membership.

    Package Details

    Repository
    ibm ibm-cloud/terraform-provider-ibm
    License
    Notes
    This Pulumi package is based on the ibm Terraform Provider.
    ibm logo
    ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud