ibm.IsDedicatedHostGroup
Explore with Pulumi AI
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.
- Is
Dedicated stringHost Group Id - (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.
- Resource
Group 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.
- Is
Dedicated stringHost Group Id - (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.
- Resource
Group 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.
- is
Dedicated StringHost Group Id - (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.
- resource
Group 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.
- is
Dedicated stringHost Group Id - (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.
- resource
Group 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_ strhost_ group_ id - (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.
- is
Dedicated StringHost Group Id - (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.
- resource
Group 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:
- Created
At string - (String) The date and time that the dedicated host group was created.
- Crn string
- (String) The CRN for this dedicated host group.
- Dedicated
Hosts List<IsDedicated Host Group Dedicated Host> - (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.
- Resource
Type string - (String) The type of resource referenced.
- Supported
Instance List<IsProfiles Dedicated Host Group Supported Instance Profile> - (String) Array of instance profiles that can be used by instances placed on this dedicated host group.
- Created
At string - (String) The date and time that the dedicated host group was created.
- Crn string
- (String) The CRN for this dedicated host group.
- Dedicated
Hosts []IsDedicated Host Group Dedicated Host - (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.
- Resource
Type string - (String) The type of resource referenced.
- Supported
Instance []IsProfiles Dedicated Host Group Supported Instance Profile - (String) Array of instance profiles that can be used by instances placed on this dedicated host group.
- created
At String - (String) The date and time that the dedicated host group was created.
- crn String
- (String) The CRN for this dedicated host group.
- dedicated
Hosts List<IsDedicated Host Group Dedicated Host> - (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.
- resource
Type String - (String) The type of resource referenced.
- supported
Instance List<IsProfiles Dedicated Host Group Supported Instance Profile> - (String) Array of instance profiles that can be used by instances placed on this dedicated host group.
- created
At string - (String) The date and time that the dedicated host group was created.
- crn string
- (String) The CRN for this dedicated host group.
- dedicated
Hosts IsDedicated Host Group Dedicated Host[] - (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.
- resource
Type string - (String) The type of resource referenced.
- supported
Instance IsProfiles Dedicated Host Group Supported Instance Profile[] - (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[IsDedicated Host Group Dedicated Host] - (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_ Sequence[Isprofiles Dedicated Host Group Supported Instance Profile] - (String) Array of instance profiles that can be used by instances placed on this dedicated host group.
- created
At String - (String) The date and time that the dedicated host group was created.
- crn String
- (String) The CRN for this dedicated host group.
- dedicated
Hosts 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.
- resource
Type String - (String) The type of resource referenced.
- supported
Instance List<Property Map>Profiles - (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.
- Class string
- The dedicated host profile class for hosts in this group.
- Created
At string - (String) The date and time that the dedicated host group was created.
- Crn string
- (String) The CRN for this dedicated host group.
- Dedicated
Hosts List<IsDedicated Host Group Dedicated Host> - (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.
- Is
Dedicated stringHost Group Id - (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.
- Resource
Group string - The unique ID of the resource group to use. If unspecified, the account's default resource group is used.
- Resource
Type string - (String) The type of resource referenced.
- Supported
Instance List<IsProfiles Dedicated Host Group Supported Instance Profile> - (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.
- Created
At string - (String) The date and time that the dedicated host group was created.
- Crn string
- (String) The CRN for this dedicated host group.
- Dedicated
Hosts []IsDedicated Host Group Dedicated Host Args - (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.
- Is
Dedicated stringHost Group Id - (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.
- Resource
Group string - The unique ID of the resource group to use. If unspecified, the account's default resource group is used.
- Resource
Type string - (String) The type of resource referenced.
- Supported
Instance []IsProfiles Dedicated Host Group Supported Instance Profile Args - (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.
- created
At String - (String) The date and time that the dedicated host group was created.
- crn String
- (String) The CRN for this dedicated host group.
- dedicated
Hosts List<IsDedicated Host Group Dedicated Host> - (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.
- is
Dedicated StringHost Group Id - (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.
- resource
Group String - The unique ID of the resource group to use. If unspecified, the account's default resource group is used.
- resource
Type String - (String) The type of resource referenced.
- supported
Instance List<IsProfiles Dedicated Host Group Supported Instance Profile> - (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.
- created
At string - (String) The date and time that the dedicated host group was created.
- crn string
- (String) The CRN for this dedicated host group.
- dedicated
Hosts IsDedicated Host Group Dedicated Host[] - (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.
- is
Dedicated stringHost Group Id - (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.
- resource
Group string - The unique ID of the resource group to use. If unspecified, the account's default resource group is used.
- resource
Type string - (String) The type of resource referenced.
- supported
Instance IsProfiles Dedicated Host Group Supported Instance Profile[] - (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[IsDedicated Host Group Dedicated Host Args] - (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_ strhost_ group_ id - (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_ Sequence[Isprofiles Dedicated Host Group Supported Instance Profile Args] - (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.
- created
At String - (String) The date and time that the dedicated host group was created.
- crn String
- (String) The CRN for this dedicated host group.
- dedicated
Hosts 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.
- is
Dedicated StringHost Group Id - (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.
- resource
Group String - The unique ID of the resource group to use. If unspecified, the account's default resource group is used.
- resource
Type String - (String) The type of resource referenced.
- supported
Instance List<Property Map>Profiles - (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<Is
Dedicated Host Group Dedicated Host Deleted> - 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.
- Resource
Type string - (String) The type of resource referenced.
- Crn string
- (String) The CRN for this dedicated host group.
- Deleteds
[]Is
Dedicated Host Group Dedicated Host Deleted - 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.
- Resource
Type string - (String) The type of resource referenced.
- crn String
- (String) The CRN for this dedicated host group.
- deleteds
List<Is
Dedicated Host Group Dedicated Host Deleted> - 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.
- resource
Type String - (String) The type of resource referenced.
- crn string
- (String) The CRN for this dedicated host group.
- deleteds
Is
Dedicated Host Group Dedicated Host Deleted[] - 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.
- resource
Type string - (String) The type of resource referenced.
- crn str
- (String) The CRN for this dedicated host group.
- deleteds
Sequence[Is
Dedicated Host Group Dedicated Host Deleted] - 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.
- resource
Type String - (String) The type of resource referenced.
IsDedicatedHostGroupDedicatedHostDeleted, IsDedicatedHostGroupDedicatedHostDeletedArgs
- More
Info string
- More
Info string
- more
Info String
- more
Info string
- more_
info str
- more
Info String
IsDedicatedHostGroupSupportedInstanceProfile, IsDedicatedHostGroupSupportedInstanceProfileArgs
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.