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

ibm.IsDedicatedHostGroup

Explore with Pulumi AI

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

    Create, update, delete and suspend the dedicated host resource. For more information, about dedicated host groups in your IBM Cloud VPC, see Dedicated hosts.

    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.IsDedicatedHostGroup("example", {
        "class": "mx2",
        family: "balanced",
        zone: "us-south-1",
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    example = ibm.IsDedicatedHostGroup("example",
        class_="mx2",
        family="balanced",
        zone="us-south-1")
    
    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.NewIsDedicatedHostGroup(ctx, "example", &ibm.IsDedicatedHostGroupArgs{
    			Class:  pulumi.String("mx2"),
    			Family: pulumi.String("balanced"),
    			Zone:   pulumi.String("us-south-1"),
    		})
    		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.IsDedicatedHostGroup("example", new()
        {
            Class = "mx2",
            Family = "balanced",
            Zone = "us-south-1",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.IsDedicatedHostGroup;
    import com.pulumi.ibm.IsDedicatedHostGroupArgs;
    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 IsDedicatedHostGroup("example", IsDedicatedHostGroupArgs.builder()
                .class_("mx2")
                .family("balanced")
                .zone("us-south-1")
                .build());
    
        }
    }
    
    resources:
      example:
        type: ibm:IsDedicatedHostGroup
        properties:
          class: mx2
          family: balanced
          zone: us-south-1
    

    Create IsDedicatedHostGroup Resource

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

    Constructor syntax

    new IsDedicatedHostGroup(name: string, args: IsDedicatedHostGroupArgs, opts?: CustomResourceOptions);
    @overload
    def IsDedicatedHostGroup(resource_name: str,
                             args: IsDedicatedHostGroupArgs,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def IsDedicatedHostGroup(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             class_: Optional[str] = None,
                             family: Optional[str] = None,
                             zone: Optional[str] = None,
                             is_dedicated_host_group_id: Optional[str] = None,
                             name: Optional[str] = None,
                             resource_group: Optional[str] = None)
    func NewIsDedicatedHostGroup(ctx *Context, name string, args IsDedicatedHostGroupArgs, opts ...ResourceOption) (*IsDedicatedHostGroup, error)
    public IsDedicatedHostGroup(string name, IsDedicatedHostGroupArgs args, CustomResourceOptions? opts = null)
    public IsDedicatedHostGroup(String name, IsDedicatedHostGroupArgs args)
    public IsDedicatedHostGroup(String name, IsDedicatedHostGroupArgs args, CustomResourceOptions options)
    
    type: ibm:IsDedicatedHostGroup
    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 IsDedicatedHostGroupArgs
    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 IsDedicatedHostGroupArgs
    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 IsDedicatedHostGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IsDedicatedHostGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IsDedicatedHostGroupArgs
    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 isDedicatedHostGroupResource = new Ibm.IsDedicatedHostGroup("isDedicatedHostGroupResource", new()
    {
        Class = "string",
        Family = "string",
        Zone = "string",
        IsDedicatedHostGroupId = "string",
        Name = "string",
        ResourceGroup = "string",
    });
    
    example, err := ibm.NewIsDedicatedHostGroup(ctx, "isDedicatedHostGroupResource", &ibm.IsDedicatedHostGroupArgs{
    	Class:                  pulumi.String("string"),
    	Family:                 pulumi.String("string"),
    	Zone:                   pulumi.String("string"),
    	IsDedicatedHostGroupId: pulumi.String("string"),
    	Name:                   pulumi.String("string"),
    	ResourceGroup:          pulumi.String("string"),
    })
    
    var isDedicatedHostGroupResource = new IsDedicatedHostGroup("isDedicatedHostGroupResource", IsDedicatedHostGroupArgs.builder()
        .class_("string")
        .family("string")
        .zone("string")
        .isDedicatedHostGroupId("string")
        .name("string")
        .resourceGroup("string")
        .build());
    
    is_dedicated_host_group_resource = ibm.IsDedicatedHostGroup("isDedicatedHostGroupResource",
        class_="string",
        family="string",
        zone="string",
        is_dedicated_host_group_id="string",
        name="string",
        resource_group="string")
    
    const isDedicatedHostGroupResource = new ibm.IsDedicatedHostGroup("isDedicatedHostGroupResource", {
        "class": "string",
        family: "string",
        zone: "string",
        isDedicatedHostGroupId: "string",
        name: "string",
        resourceGroup: "string",
    });
    
    type: ibm:IsDedicatedHostGroup
    properties:
        class: string
        family: string
        isDedicatedHostGroupId: string
        name: string
        resourceGroup: string
        zone: string
    

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

    Class string
    The dedicated host profile class for hosts in this group.
    Family string
    The dedicated host profile family for hosts in this group.
    Zone string
    The globally unique name of the zone this dedicated host group will reside in.
    IsDedicatedHostGroupId string
    (String) The unique ID of the dedicated host group.
    Name string
    The unique user defined name for this dedicated host group. If unspecified, the name will be a hyphenated list of randomly selected words.
    ResourceGroup string
    The unique ID of the resource group to use. If unspecified, the account's default resource group is used.
    Class string
    The dedicated host profile class for hosts in this group.
    Family string
    The dedicated host profile family for hosts in this group.
    Zone string
    The globally unique name of the zone this dedicated host group will reside in.
    IsDedicatedHostGroupId string
    (String) The unique ID of the dedicated host group.
    Name string
    The unique user defined name for this dedicated host group. If unspecified, the name will be a hyphenated list of randomly selected words.
    ResourceGroup string
    The unique ID of the resource group to use. If unspecified, the account's default resource group is used.
    class_ String
    The dedicated host profile class for hosts in this group.
    family String
    The dedicated host profile family for hosts in this group.
    zone String
    The globally unique name of the zone this dedicated host group will reside in.
    isDedicatedHostGroupId String
    (String) The unique ID of the dedicated host group.
    name String
    The unique user defined name for this dedicated host group. If unspecified, the name will be a hyphenated list of randomly selected words.
    resourceGroup String
    The unique ID of the resource group to use. If unspecified, the account's default resource group is used.
    class string
    The dedicated host profile class for hosts in this group.
    family string
    The dedicated host profile family for hosts in this group.
    zone string
    The globally unique name of the zone this dedicated host group will reside in.
    isDedicatedHostGroupId string
    (String) The unique ID of the dedicated host group.
    name string
    The unique user defined name for this dedicated host group. If unspecified, the name will be a hyphenated list of randomly selected words.
    resourceGroup string
    The unique ID of the resource group to use. If unspecified, the account's default resource group is used.
    class_ str
    The dedicated host profile class for hosts in this group.
    family str
    The dedicated host profile family for hosts in this group.
    zone str
    The globally unique name of the zone this dedicated host group will reside in.
    is_dedicated_host_group_id str
    (String) The unique ID of the dedicated host group.
    name str
    The unique user defined name for this dedicated host group. If unspecified, the name will be a hyphenated list of randomly selected words.
    resource_group str
    The unique ID of the resource group to use. If unspecified, the account's default resource group is used.
    class String
    The dedicated host profile class for hosts in this group.
    family String
    The dedicated host profile family for hosts in this group.
    zone String
    The globally unique name of the zone this dedicated host group will reside in.
    isDedicatedHostGroupId String
    (String) The unique ID of the dedicated host group.
    name String
    The unique user defined name for this dedicated host group. If unspecified, the name will be a hyphenated list of randomly selected words.
    resourceGroup String
    The unique ID of the resource group to use. If unspecified, the account's default resource group is used.

    Outputs

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

    CreatedAt string
    (String) The date and time that the dedicated host group was created.
    Crn string
    (String) The CRN for this dedicated host group.
    DedicatedHosts List<IsDedicatedHostGroupDedicatedHost>
    (String) The dedicated hosts that are in this dedicated host group.
    Href string
    (String) The URL for this dedicated host group.
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceType string
    (String) The type of resource referenced.
    SupportedInstanceProfiles List<IsDedicatedHostGroupSupportedInstanceProfile>
    (String) Array of instance profiles that can be used by instances placed on this dedicated host group.
    CreatedAt string
    (String) The date and time that the dedicated host group was created.
    Crn string
    (String) The CRN for this dedicated host group.
    DedicatedHosts []IsDedicatedHostGroupDedicatedHost
    (String) The dedicated hosts that are in this dedicated host group.
    Href string
    (String) The URL for this dedicated host group.
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceType string
    (String) The type of resource referenced.
    SupportedInstanceProfiles []IsDedicatedHostGroupSupportedInstanceProfile
    (String) Array of instance profiles that can be used by instances placed on this dedicated host group.
    createdAt String
    (String) The date and time that the dedicated host group was created.
    crn String
    (String) The CRN for this dedicated host group.
    dedicatedHosts List<IsDedicatedHostGroupDedicatedHost>
    (String) The dedicated hosts that are in this dedicated host group.
    href String
    (String) The URL for this dedicated host group.
    id String
    The provider-assigned unique ID for this managed resource.
    resourceType String
    (String) The type of resource referenced.
    supportedInstanceProfiles List<IsDedicatedHostGroupSupportedInstanceProfile>
    (String) Array of instance profiles that can be used by instances placed on this dedicated host group.
    createdAt string
    (String) The date and time that the dedicated host group was created.
    crn string
    (String) The CRN for this dedicated host group.
    dedicatedHosts IsDedicatedHostGroupDedicatedHost[]
    (String) The dedicated hosts that are in this dedicated host group.
    href string
    (String) The URL for this dedicated host group.
    id string
    The provider-assigned unique ID for this managed resource.
    resourceType string
    (String) The type of resource referenced.
    supportedInstanceProfiles IsDedicatedHostGroupSupportedInstanceProfile[]
    (String) Array of instance profiles that can be used by instances placed on this dedicated host group.
    created_at str
    (String) The date and time that the dedicated host group was created.
    crn str
    (String) The CRN for this dedicated host group.
    dedicated_hosts Sequence[IsDedicatedHostGroupDedicatedHost]
    (String) The dedicated hosts that are in this dedicated host group.
    href str
    (String) The URL for this dedicated host group.
    id str
    The provider-assigned unique ID for this managed resource.
    resource_type str
    (String) The type of resource referenced.
    supported_instance_profiles Sequence[IsDedicatedHostGroupSupportedInstanceProfile]
    (String) Array of instance profiles that can be used by instances placed on this dedicated host group.
    createdAt String
    (String) The date and time that the dedicated host group was created.
    crn String
    (String) The CRN for this dedicated host group.
    dedicatedHosts List<Property Map>
    (String) The dedicated hosts that are in this dedicated host group.
    href String
    (String) The URL for this dedicated host group.
    id String
    The provider-assigned unique ID for this managed resource.
    resourceType String
    (String) The type of resource referenced.
    supportedInstanceProfiles List<Property Map>
    (String) Array of instance profiles that can be used by instances placed on this dedicated host group.

    Look up Existing IsDedicatedHostGroup Resource

    Get an existing IsDedicatedHostGroup 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?: IsDedicatedHostGroupState, opts?: CustomResourceOptions): IsDedicatedHostGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            class_: Optional[str] = None,
            created_at: Optional[str] = None,
            crn: Optional[str] = None,
            dedicated_hosts: Optional[Sequence[IsDedicatedHostGroupDedicatedHostArgs]] = None,
            family: Optional[str] = None,
            href: Optional[str] = None,
            is_dedicated_host_group_id: Optional[str] = None,
            name: Optional[str] = None,
            resource_group: Optional[str] = None,
            resource_type: Optional[str] = None,
            supported_instance_profiles: Optional[Sequence[IsDedicatedHostGroupSupportedInstanceProfileArgs]] = None,
            zone: Optional[str] = None) -> IsDedicatedHostGroup
    func GetIsDedicatedHostGroup(ctx *Context, name string, id IDInput, state *IsDedicatedHostGroupState, opts ...ResourceOption) (*IsDedicatedHostGroup, error)
    public static IsDedicatedHostGroup Get(string name, Input<string> id, IsDedicatedHostGroupState? state, CustomResourceOptions? opts = null)
    public static IsDedicatedHostGroup get(String name, Output<String> id, IsDedicatedHostGroupState state, CustomResourceOptions options)
    resources:  _:    type: ibm:IsDedicatedHostGroup    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:
    Class string
    The dedicated host profile class for hosts in this group.
    CreatedAt string
    (String) The date and time that the dedicated host group was created.
    Crn string
    (String) The CRN for this dedicated host group.
    DedicatedHosts List<IsDedicatedHostGroupDedicatedHost>
    (String) The dedicated hosts that are in this dedicated host group.
    Family string
    The dedicated host profile family for hosts in this group.
    Href string
    (String) The URL for this dedicated host group.
    IsDedicatedHostGroupId string
    (String) The unique ID of the dedicated host group.
    Name string
    The unique user defined name for this dedicated host group. If unspecified, the name will be a hyphenated list of randomly selected words.
    ResourceGroup string
    The unique ID of the resource group to use. If unspecified, the account's default resource group is used.
    ResourceType string
    (String) The type of resource referenced.
    SupportedInstanceProfiles List<IsDedicatedHostGroupSupportedInstanceProfile>
    (String) Array of instance profiles that can be used by instances placed on this dedicated host group.
    Zone string
    The globally unique name of the zone this dedicated host group will reside in.
    Class string
    The dedicated host profile class for hosts in this group.
    CreatedAt string
    (String) The date and time that the dedicated host group was created.
    Crn string
    (String) The CRN for this dedicated host group.
    DedicatedHosts []IsDedicatedHostGroupDedicatedHostArgs
    (String) The dedicated hosts that are in this dedicated host group.
    Family string
    The dedicated host profile family for hosts in this group.
    Href string
    (String) The URL for this dedicated host group.
    IsDedicatedHostGroupId string
    (String) The unique ID of the dedicated host group.
    Name string
    The unique user defined name for this dedicated host group. If unspecified, the name will be a hyphenated list of randomly selected words.
    ResourceGroup string
    The unique ID of the resource group to use. If unspecified, the account's default resource group is used.
    ResourceType string
    (String) The type of resource referenced.
    SupportedInstanceProfiles []IsDedicatedHostGroupSupportedInstanceProfileArgs
    (String) Array of instance profiles that can be used by instances placed on this dedicated host group.
    Zone string
    The globally unique name of the zone this dedicated host group will reside in.
    class_ String
    The dedicated host profile class for hosts in this group.
    createdAt String
    (String) The date and time that the dedicated host group was created.
    crn String
    (String) The CRN for this dedicated host group.
    dedicatedHosts List<IsDedicatedHostGroupDedicatedHost>
    (String) The dedicated hosts that are in this dedicated host group.
    family String
    The dedicated host profile family for hosts in this group.
    href String
    (String) The URL for this dedicated host group.
    isDedicatedHostGroupId String
    (String) The unique ID of the dedicated host group.
    name String
    The unique user defined name for this dedicated host group. If unspecified, the name will be a hyphenated list of randomly selected words.
    resourceGroup String
    The unique ID of the resource group to use. If unspecified, the account's default resource group is used.
    resourceType String
    (String) The type of resource referenced.
    supportedInstanceProfiles List<IsDedicatedHostGroupSupportedInstanceProfile>
    (String) Array of instance profiles that can be used by instances placed on this dedicated host group.
    zone String
    The globally unique name of the zone this dedicated host group will reside in.
    class string
    The dedicated host profile class for hosts in this group.
    createdAt string
    (String) The date and time that the dedicated host group was created.
    crn string
    (String) The CRN for this dedicated host group.
    dedicatedHosts IsDedicatedHostGroupDedicatedHost[]
    (String) The dedicated hosts that are in this dedicated host group.
    family string
    The dedicated host profile family for hosts in this group.
    href string
    (String) The URL for this dedicated host group.
    isDedicatedHostGroupId string
    (String) The unique ID of the dedicated host group.
    name string
    The unique user defined name for this dedicated host group. If unspecified, the name will be a hyphenated list of randomly selected words.
    resourceGroup string
    The unique ID of the resource group to use. If unspecified, the account's default resource group is used.
    resourceType string
    (String) The type of resource referenced.
    supportedInstanceProfiles IsDedicatedHostGroupSupportedInstanceProfile[]
    (String) Array of instance profiles that can be used by instances placed on this dedicated host group.
    zone string
    The globally unique name of the zone this dedicated host group will reside in.
    class_ str
    The dedicated host profile class for hosts in this group.
    created_at str
    (String) The date and time that the dedicated host group was created.
    crn str
    (String) The CRN for this dedicated host group.
    dedicated_hosts Sequence[IsDedicatedHostGroupDedicatedHostArgs]
    (String) The dedicated hosts that are in this dedicated host group.
    family str
    The dedicated host profile family for hosts in this group.
    href str
    (String) The URL for this dedicated host group.
    is_dedicated_host_group_id str
    (String) The unique ID of the dedicated host group.
    name str
    The unique user defined name for this dedicated host group. If unspecified, the name will be a hyphenated list of randomly selected words.
    resource_group str
    The unique ID of the resource group to use. If unspecified, the account's default resource group is used.
    resource_type str
    (String) The type of resource referenced.
    supported_instance_profiles Sequence[IsDedicatedHostGroupSupportedInstanceProfileArgs]
    (String) Array of instance profiles that can be used by instances placed on this dedicated host group.
    zone str
    The globally unique name of the zone this dedicated host group will reside in.
    class String
    The dedicated host profile class for hosts in this group.
    createdAt String
    (String) The date and time that the dedicated host group was created.
    crn String
    (String) The CRN for this dedicated host group.
    dedicatedHosts List<Property Map>
    (String) The dedicated hosts that are in this dedicated host group.
    family String
    The dedicated host profile family for hosts in this group.
    href String
    (String) The URL for this dedicated host group.
    isDedicatedHostGroupId String
    (String) The unique ID of the dedicated host group.
    name String
    The unique user defined name for this dedicated host group. If unspecified, the name will be a hyphenated list of randomly selected words.
    resourceGroup String
    The unique ID of the resource group to use. If unspecified, the account's default resource group is used.
    resourceType String
    (String) The type of resource referenced.
    supportedInstanceProfiles List<Property Map>
    (String) Array of instance profiles that can be used by instances placed on this dedicated host group.
    zone String
    The globally unique name of the zone this dedicated host group will reside in.

    Supporting Types

    IsDedicatedHostGroupDedicatedHost, IsDedicatedHostGroupDedicatedHostArgs

    Crn string
    (String) The CRN for this dedicated host group.
    Deleteds List<IsDedicatedHostGroupDedicatedHostDeleted>
    Href string
    (String) The URL for this dedicated host group.
    Id string
    (String) The unique ID of the dedicated host group.
    Name string
    The unique user defined name for this dedicated host group. If unspecified, the name will be a hyphenated list of randomly selected words.
    ResourceType string
    (String) The type of resource referenced.
    Crn string
    (String) The CRN for this dedicated host group.
    Deleteds []IsDedicatedHostGroupDedicatedHostDeleted
    Href string
    (String) The URL for this dedicated host group.
    Id string
    (String) The unique ID of the dedicated host group.
    Name string
    The unique user defined name for this dedicated host group. If unspecified, the name will be a hyphenated list of randomly selected words.
    ResourceType string
    (String) The type of resource referenced.
    crn String
    (String) The CRN for this dedicated host group.
    deleteds List<IsDedicatedHostGroupDedicatedHostDeleted>
    href String
    (String) The URL for this dedicated host group.
    id String
    (String) The unique ID of the dedicated host group.
    name String
    The unique user defined name for this dedicated host group. If unspecified, the name will be a hyphenated list of randomly selected words.
    resourceType String
    (String) The type of resource referenced.
    crn string
    (String) The CRN for this dedicated host group.
    deleteds IsDedicatedHostGroupDedicatedHostDeleted[]
    href string
    (String) The URL for this dedicated host group.
    id string
    (String) The unique ID of the dedicated host group.
    name string
    The unique user defined name for this dedicated host group. If unspecified, the name will be a hyphenated list of randomly selected words.
    resourceType string
    (String) The type of resource referenced.
    crn str
    (String) The CRN for this dedicated host group.
    deleteds Sequence[IsDedicatedHostGroupDedicatedHostDeleted]
    href str
    (String) The URL for this dedicated host group.
    id str
    (String) The unique ID of the dedicated host group.
    name str
    The unique user defined name for this dedicated host group. If unspecified, the name will be a hyphenated list of randomly selected words.
    resource_type str
    (String) The type of resource referenced.
    crn String
    (String) The CRN for this dedicated host group.
    deleteds List<Property Map>
    href String
    (String) The URL for this dedicated host group.
    id String
    (String) The unique ID of the dedicated host group.
    name String
    The unique user defined name for this dedicated host group. If unspecified, the name will be a hyphenated list of randomly selected words.
    resourceType String
    (String) The type of resource referenced.

    IsDedicatedHostGroupDedicatedHostDeleted, IsDedicatedHostGroupDedicatedHostDeletedArgs

    MoreInfo string
    MoreInfo string
    moreInfo String
    moreInfo string
    moreInfo String

    IsDedicatedHostGroupSupportedInstanceProfile, IsDedicatedHostGroupSupportedInstanceProfileArgs

    Href string
    (String) The URL for this dedicated host group.
    Name string
    The unique user defined name for this dedicated host group. If unspecified, the name will be a hyphenated list of randomly selected words.
    Href string
    (String) The URL for this dedicated host group.
    Name string
    The unique user defined name for this dedicated host group. If unspecified, the name will be a hyphenated list of randomly selected words.
    href String
    (String) The URL for this dedicated host group.
    name String
    The unique user defined name for this dedicated host group. If unspecified, the name will be a hyphenated list of randomly selected words.
    href string
    (String) The URL for this dedicated host group.
    name string
    The unique user defined name for this dedicated host group. If unspecified, the name will be a hyphenated list of randomly selected words.
    href str
    (String) The URL for this dedicated host group.
    name str
    The unique user defined name for this dedicated host group. If unspecified, the name will be a hyphenated list of randomly selected words.
    href String
    (String) The URL for this dedicated host group.
    name String
    The unique user defined name for this dedicated host group. If unspecified, the name will be a hyphenated list of randomly selected words.

    Import

    The ibm_is_dedicated_host_group resource can be imported by using dedicated host group ID.

    Example

    $ pulumi import ibm:index/isDedicatedHostGroup:IsDedicatedHostGroup example 0716-5fa4a9c4-a194-4915-854b-10101111
    

    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 ibm Terraform Provider.
    ibm logo
    ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud