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

ibm.getIsDedicatedHost

Explore with Pulumi AI

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

    Retrieve the dedicated host data sources. For more information, about dedicated host 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

    The following example retrieves information about the dedicated host data sources.

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const example = ibm.getIsDedicatedHost({
        hostGroup: ibm_is_dedicated_host_group.example.id,
        name: "example-dedicated-host",
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    example = ibm.get_is_dedicated_host(host_group=ibm_is_dedicated_host_group["example"]["id"],
        name="example-dedicated-host")
    
    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.LookupIsDedicatedHost(ctx, &ibm.LookupIsDedicatedHostArgs{
    			HostGroup: ibm_is_dedicated_host_group.Example.Id,
    			Name:      "example-dedicated-host",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ibm = Pulumi.Ibm;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Ibm.GetIsDedicatedHost.Invoke(new()
        {
            HostGroup = ibm_is_dedicated_host_group.Example.Id,
            Name = "example-dedicated-host",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.IbmFunctions;
    import com.pulumi.ibm.inputs.GetIsDedicatedHostArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var example = IbmFunctions.getIsDedicatedHost(GetIsDedicatedHostArgs.builder()
                .hostGroup(ibm_is_dedicated_host_group.example().id())
                .name("example-dedicated-host")
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: ibm:getIsDedicatedHost
          arguments:
            hostGroup: ${ibm_is_dedicated_host_group.example.id}
            name: example-dedicated-host
    

    Using getIsDedicatedHost

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getIsDedicatedHost(args: GetIsDedicatedHostArgs, opts?: InvokeOptions): Promise<GetIsDedicatedHostResult>
    function getIsDedicatedHostOutput(args: GetIsDedicatedHostOutputArgs, opts?: InvokeOptions): Output<GetIsDedicatedHostResult>
    def get_is_dedicated_host(host_group: Optional[str] = None,
                              id: Optional[str] = None,
                              name: Optional[str] = None,
                              resource_group: Optional[str] = None,
                              opts: Optional[InvokeOptions] = None) -> GetIsDedicatedHostResult
    def get_is_dedicated_host_output(host_group: Optional[pulumi.Input[str]] = None,
                              id: Optional[pulumi.Input[str]] = None,
                              name: Optional[pulumi.Input[str]] = None,
                              resource_group: Optional[pulumi.Input[str]] = None,
                              opts: Optional[InvokeOptions] = None) -> Output[GetIsDedicatedHostResult]
    func LookupIsDedicatedHost(ctx *Context, args *LookupIsDedicatedHostArgs, opts ...InvokeOption) (*LookupIsDedicatedHostResult, error)
    func LookupIsDedicatedHostOutput(ctx *Context, args *LookupIsDedicatedHostOutputArgs, opts ...InvokeOption) LookupIsDedicatedHostResultOutput

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

    public static class GetIsDedicatedHost 
    {
        public static Task<GetIsDedicatedHostResult> InvokeAsync(GetIsDedicatedHostArgs args, InvokeOptions? opts = null)
        public static Output<GetIsDedicatedHostResult> Invoke(GetIsDedicatedHostInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetIsDedicatedHostResult> getIsDedicatedHost(GetIsDedicatedHostArgs args, InvokeOptions options)
    public static Output<GetIsDedicatedHostResult> getIsDedicatedHost(GetIsDedicatedHostArgs args, InvokeOptions options)
    
    fn::invoke:
      function: ibm:index/getIsDedicatedHost:getIsDedicatedHost
      arguments:
        # arguments dictionary

    The following arguments are supported:

    HostGroup string
    The unique identifier of the dedicated host group.
    Name string
    The unique name of this dedicated host.
    Id string
    (String) The unique identifier for this virtual server instance.
    ResourceGroup string
    The unique identifier of the resource group.
    HostGroup string
    The unique identifier of the dedicated host group.
    Name string
    The unique name of this dedicated host.
    Id string
    (String) The unique identifier for this virtual server instance.
    ResourceGroup string
    The unique identifier of the resource group.
    hostGroup String
    The unique identifier of the dedicated host group.
    name String
    The unique name of this dedicated host.
    id String
    (String) The unique identifier for this virtual server instance.
    resourceGroup String
    The unique identifier of the resource group.
    hostGroup string
    The unique identifier of the dedicated host group.
    name string
    The unique name of this dedicated host.
    id string
    (String) The unique identifier for this virtual server instance.
    resourceGroup string
    The unique identifier of the resource group.
    host_group str
    The unique identifier of the dedicated host group.
    name str
    The unique name of this dedicated host.
    id str
    (String) The unique identifier for this virtual server instance.
    resource_group str
    The unique identifier of the resource group.
    hostGroup String
    The unique identifier of the dedicated host group.
    name String
    The unique name of this dedicated host.
    id String
    (String) The unique identifier for this virtual server instance.
    resourceGroup String
    The unique identifier of the resource group.

    getIsDedicatedHost Result

    The following output properties are available:

    AccessTags List<string>
    (List) Access management tags associated for dedicated host.
    AvailableMemory double
    (String) The amount of memory in GB that is currently available for instances.
    AvailableVcpus List<GetIsDedicatedHostAvailableVcpus>
    (Integer) The available VCPU for this NUMA node.
    CreatedAt string
    (String) The creation date and time of the disk.
    Crn string
    (String) The CRN for this virtual server instance.
    Disks List<GetIsDedicatedHostDisk>
    (List) The Collection of the dedicated host's disks.
    HostGroup string
    (String) The unique identifier of the dedicated host group this dedicated host is in.
    Href string
    (String) The URL for this virtual server instance profile.
    Id string
    (String) The unique identifier for this virtual server instance.
    InstancePlacementEnabled bool
    (String) If set to true, instances can be placed on this dedicated host.
    Instances List<GetIsDedicatedHostInstance>
    (List) Array of instances that are allocated to this dedicated host.
    LifecycleState string
    (String) The lifecycle state of the dedicated host resource.
    Memory double
    (String) The total amount of memory in `GB`` for this host.
    Name string
    (String) The globally unique name for this virtual server instance profile.
    Numas List<GetIsDedicatedHostNuma>
    The dedicated host NUMA configuration.
    Profiles List<GetIsDedicatedHostProfile>
    (List) The profile this dedicated host uses.
    Provisionable bool
    (String) Indicates whether this dedicated host is available for instance creation.
    ResourceGroup string
    (String) The unique identifier of the resource group.
    ResourceType string
    (String) The type of resource referenced.
    SocketCount double
    (String) The total number of sockets for this host.
    State string
    (String) The administrative state of the dedicated host.
    SupportedInstanceProfiles List<GetIsDedicatedHostSupportedInstanceProfile>
    (List) Array of instance profiles that can be used by instances placed on this dedicated host.
    Vcpus List<GetIsDedicatedHostVcpus>
    (List) The total VCPU of the dedicated host.
    Zone string
    (String) The globally unique name of the zone this dedicated host resides in.
    AccessTags []string
    (List) Access management tags associated for dedicated host.
    AvailableMemory float64
    (String) The amount of memory in GB that is currently available for instances.
    AvailableVcpus []GetIsDedicatedHostAvailableVcpus
    (Integer) The available VCPU for this NUMA node.
    CreatedAt string
    (String) The creation date and time of the disk.
    Crn string
    (String) The CRN for this virtual server instance.
    Disks []GetIsDedicatedHostDisk
    (List) The Collection of the dedicated host's disks.
    HostGroup string
    (String) The unique identifier of the dedicated host group this dedicated host is in.
    Href string
    (String) The URL for this virtual server instance profile.
    Id string
    (String) The unique identifier for this virtual server instance.
    InstancePlacementEnabled bool
    (String) If set to true, instances can be placed on this dedicated host.
    Instances []GetIsDedicatedHostInstance
    (List) Array of instances that are allocated to this dedicated host.
    LifecycleState string
    (String) The lifecycle state of the dedicated host resource.
    Memory float64
    (String) The total amount of memory in `GB`` for this host.
    Name string
    (String) The globally unique name for this virtual server instance profile.
    Numas []GetIsDedicatedHostNuma
    The dedicated host NUMA configuration.
    Profiles []GetIsDedicatedHostProfile
    (List) The profile this dedicated host uses.
    Provisionable bool
    (String) Indicates whether this dedicated host is available for instance creation.
    ResourceGroup string
    (String) The unique identifier of the resource group.
    ResourceType string
    (String) The type of resource referenced.
    SocketCount float64
    (String) The total number of sockets for this host.
    State string
    (String) The administrative state of the dedicated host.
    SupportedInstanceProfiles []GetIsDedicatedHostSupportedInstanceProfile
    (List) Array of instance profiles that can be used by instances placed on this dedicated host.
    Vcpus []GetIsDedicatedHostVcpus
    (List) The total VCPU of the dedicated host.
    Zone string
    (String) The globally unique name of the zone this dedicated host resides in.
    accessTags List<String>
    (List) Access management tags associated for dedicated host.
    availableMemory Double
    (String) The amount of memory in GB that is currently available for instances.
    availableVcpus List<GetIsDedicatedHostAvailableVcpus>
    (Integer) The available VCPU for this NUMA node.
    createdAt String
    (String) The creation date and time of the disk.
    crn String
    (String) The CRN for this virtual server instance.
    disks List<GetIsDedicatedHostDisk>
    (List) The Collection of the dedicated host's disks.
    hostGroup String
    (String) The unique identifier of the dedicated host group this dedicated host is in.
    href String
    (String) The URL for this virtual server instance profile.
    id String
    (String) The unique identifier for this virtual server instance.
    instancePlacementEnabled Boolean
    (String) If set to true, instances can be placed on this dedicated host.
    instances List<GetIsDedicatedHostInstance>
    (List) Array of instances that are allocated to this dedicated host.
    lifecycleState String
    (String) The lifecycle state of the dedicated host resource.
    memory Double
    (String) The total amount of memory in `GB`` for this host.
    name String
    (String) The globally unique name for this virtual server instance profile.
    numas List<GetIsDedicatedHostNuma>
    The dedicated host NUMA configuration.
    profiles List<GetIsDedicatedHostProfile>
    (List) The profile this dedicated host uses.
    provisionable Boolean
    (String) Indicates whether this dedicated host is available for instance creation.
    resourceGroup String
    (String) The unique identifier of the resource group.
    resourceType String
    (String) The type of resource referenced.
    socketCount Double
    (String) The total number of sockets for this host.
    state String
    (String) The administrative state of the dedicated host.
    supportedInstanceProfiles List<GetIsDedicatedHostSupportedInstanceProfile>
    (List) Array of instance profiles that can be used by instances placed on this dedicated host.
    vcpus List<GetIsDedicatedHostVcpus>
    (List) The total VCPU of the dedicated host.
    zone String
    (String) The globally unique name of the zone this dedicated host resides in.
    accessTags string[]
    (List) Access management tags associated for dedicated host.
    availableMemory number
    (String) The amount of memory in GB that is currently available for instances.
    availableVcpus GetIsDedicatedHostAvailableVcpus[]
    (Integer) The available VCPU for this NUMA node.
    createdAt string
    (String) The creation date and time of the disk.
    crn string
    (String) The CRN for this virtual server instance.
    disks GetIsDedicatedHostDisk[]
    (List) The Collection of the dedicated host's disks.
    hostGroup string
    (String) The unique identifier of the dedicated host group this dedicated host is in.
    href string
    (String) The URL for this virtual server instance profile.
    id string
    (String) The unique identifier for this virtual server instance.
    instancePlacementEnabled boolean
    (String) If set to true, instances can be placed on this dedicated host.
    instances GetIsDedicatedHostInstance[]
    (List) Array of instances that are allocated to this dedicated host.
    lifecycleState string
    (String) The lifecycle state of the dedicated host resource.
    memory number
    (String) The total amount of memory in `GB`` for this host.
    name string
    (String) The globally unique name for this virtual server instance profile.
    numas GetIsDedicatedHostNuma[]
    The dedicated host NUMA configuration.
    profiles GetIsDedicatedHostProfile[]
    (List) The profile this dedicated host uses.
    provisionable boolean
    (String) Indicates whether this dedicated host is available for instance creation.
    resourceGroup string
    (String) The unique identifier of the resource group.
    resourceType string
    (String) The type of resource referenced.
    socketCount number
    (String) The total number of sockets for this host.
    state string
    (String) The administrative state of the dedicated host.
    supportedInstanceProfiles GetIsDedicatedHostSupportedInstanceProfile[]
    (List) Array of instance profiles that can be used by instances placed on this dedicated host.
    vcpus GetIsDedicatedHostVcpus[]
    (List) The total VCPU of the dedicated host.
    zone string
    (String) The globally unique name of the zone this dedicated host resides in.
    access_tags Sequence[str]
    (List) Access management tags associated for dedicated host.
    available_memory float
    (String) The amount of memory in GB that is currently available for instances.
    available_vcpus Sequence[GetIsDedicatedHostAvailableVcpus]
    (Integer) The available VCPU for this NUMA node.
    created_at str
    (String) The creation date and time of the disk.
    crn str
    (String) The CRN for this virtual server instance.
    disks Sequence[GetIsDedicatedHostDisk]
    (List) The Collection of the dedicated host's disks.
    host_group str
    (String) The unique identifier of the dedicated host group this dedicated host is in.
    href str
    (String) The URL for this virtual server instance profile.
    id str
    (String) The unique identifier for this virtual server instance.
    instance_placement_enabled bool
    (String) If set to true, instances can be placed on this dedicated host.
    instances Sequence[GetIsDedicatedHostInstance]
    (List) Array of instances that are allocated to this dedicated host.
    lifecycle_state str
    (String) The lifecycle state of the dedicated host resource.
    memory float
    (String) The total amount of memory in `GB`` for this host.
    name str
    (String) The globally unique name for this virtual server instance profile.
    numas Sequence[GetIsDedicatedHostNuma]
    The dedicated host NUMA configuration.
    profiles Sequence[GetIsDedicatedHostProfile]
    (List) The profile this dedicated host uses.
    provisionable bool
    (String) Indicates whether this dedicated host is available for instance creation.
    resource_group str
    (String) The unique identifier of the resource group.
    resource_type str
    (String) The type of resource referenced.
    socket_count float
    (String) The total number of sockets for this host.
    state str
    (String) The administrative state of the dedicated host.
    supported_instance_profiles Sequence[GetIsDedicatedHostSupportedInstanceProfile]
    (List) Array of instance profiles that can be used by instances placed on this dedicated host.
    vcpus Sequence[GetIsDedicatedHostVcpus]
    (List) The total VCPU of the dedicated host.
    zone str
    (String) The globally unique name of the zone this dedicated host resides in.
    accessTags List<String>
    (List) Access management tags associated for dedicated host.
    availableMemory Number
    (String) The amount of memory in GB that is currently available for instances.
    availableVcpus List<Property Map>
    (Integer) The available VCPU for this NUMA node.
    createdAt String
    (String) The creation date and time of the disk.
    crn String
    (String) The CRN for this virtual server instance.
    disks List<Property Map>
    (List) The Collection of the dedicated host's disks.
    hostGroup String
    (String) The unique identifier of the dedicated host group this dedicated host is in.
    href String
    (String) The URL for this virtual server instance profile.
    id String
    (String) The unique identifier for this virtual server instance.
    instancePlacementEnabled Boolean
    (String) If set to true, instances can be placed on this dedicated host.
    instances List<Property Map>
    (List) Array of instances that are allocated to this dedicated host.
    lifecycleState String
    (String) The lifecycle state of the dedicated host resource.
    memory Number
    (String) The total amount of memory in `GB`` for this host.
    name String
    (String) The globally unique name for this virtual server instance profile.
    numas List<Property Map>
    The dedicated host NUMA configuration.
    profiles List<Property Map>
    (List) The profile this dedicated host uses.
    provisionable Boolean
    (String) Indicates whether this dedicated host is available for instance creation.
    resourceGroup String
    (String) The unique identifier of the resource group.
    resourceType String
    (String) The type of resource referenced.
    socketCount Number
    (String) The total number of sockets for this host.
    state String
    (String) The administrative state of the dedicated host.
    supportedInstanceProfiles List<Property Map>
    (List) Array of instance profiles that can be used by instances placed on this dedicated host.
    vcpus List<Property Map>
    (List) The total VCPU of the dedicated host.
    zone String
    (String) The globally unique name of the zone this dedicated host resides in.

    Supporting Types

    GetIsDedicatedHostAvailableVcpus

    Architecture string
    (String) The VCPU architecture.
    Count double
    (String) The number of VCPUs assigned.
    Manufacturer string
    (String) The VCPU manufacturer.
    Architecture string
    (String) The VCPU architecture.
    Count float64
    (String) The number of VCPUs assigned.
    Manufacturer string
    (String) The VCPU manufacturer.
    architecture String
    (String) The VCPU architecture.
    count Double
    (String) The number of VCPUs assigned.
    manufacturer String
    (String) The VCPU manufacturer.
    architecture string
    (String) The VCPU architecture.
    count number
    (String) The number of VCPUs assigned.
    manufacturer string
    (String) The VCPU manufacturer.
    architecture str
    (String) The VCPU architecture.
    count float
    (String) The number of VCPUs assigned.
    manufacturer str
    (String) The VCPU manufacturer.
    architecture String
    (String) The VCPU architecture.
    count Number
    (String) The number of VCPUs assigned.
    manufacturer String
    (String) The VCPU manufacturer.

    GetIsDedicatedHostDisk

    Available double
    (String) The remaining space left for instance placement in GB (gigabytes).
    CreatedAt string
    (String) The creation date and time of the disk.
    Href string
    (String) The URL for this virtual server instance profile.
    Id string
    (String) The unique identifier for this virtual server instance.
    InstanceDisks List<GetIsDedicatedHostDiskInstanceDisk>
    (List) Instance disks that are on the dedicated host disk.
    InterfaceType string
    (String) The disk interface used for attaching the disk. The enumerated values for the property are expected to expand in the future. When processing the property, you can check for and log unknown values. Optionally, halt processing and surface the error, or bypass the resource on which the unexpected property value was encountered.
    LifecycleState string
    (String) The lifecycle state of the dedicated host resource.
    Name string
    The unique name of this dedicated host.
    Provisionable bool
    (String) Indicates whether this dedicated host is available for instance creation.
    ResourceType string
    (String) The type of resource referenced.
    Size double
    (String) The size of the disk in GB (gigabytes).
    SupportedInstanceInterfaceTypes List<string>
    (String) The instance disk interfaces supported for this dedicated host disk.
    Available float64
    (String) The remaining space left for instance placement in GB (gigabytes).
    CreatedAt string
    (String) The creation date and time of the disk.
    Href string
    (String) The URL for this virtual server instance profile.
    Id string
    (String) The unique identifier for this virtual server instance.
    InstanceDisks []GetIsDedicatedHostDiskInstanceDisk
    (List) Instance disks that are on the dedicated host disk.
    InterfaceType string
    (String) The disk interface used for attaching the disk. The enumerated values for the property are expected to expand in the future. When processing the property, you can check for and log unknown values. Optionally, halt processing and surface the error, or bypass the resource on which the unexpected property value was encountered.
    LifecycleState string
    (String) The lifecycle state of the dedicated host resource.
    Name string
    The unique name of this dedicated host.
    Provisionable bool
    (String) Indicates whether this dedicated host is available for instance creation.
    ResourceType string
    (String) The type of resource referenced.
    Size float64
    (String) The size of the disk in GB (gigabytes).
    SupportedInstanceInterfaceTypes []string
    (String) The instance disk interfaces supported for this dedicated host disk.
    available Double
    (String) The remaining space left for instance placement in GB (gigabytes).
    createdAt String
    (String) The creation date and time of the disk.
    href String
    (String) The URL for this virtual server instance profile.
    id String
    (String) The unique identifier for this virtual server instance.
    instanceDisks List<GetIsDedicatedHostDiskInstanceDisk>
    (List) Instance disks that are on the dedicated host disk.
    interfaceType String
    (String) The disk interface used for attaching the disk. The enumerated values for the property are expected to expand in the future. When processing the property, you can check for and log unknown values. Optionally, halt processing and surface the error, or bypass the resource on which the unexpected property value was encountered.
    lifecycleState String
    (String) The lifecycle state of the dedicated host resource.
    name String
    The unique name of this dedicated host.
    provisionable Boolean
    (String) Indicates whether this dedicated host is available for instance creation.
    resourceType String
    (String) The type of resource referenced.
    size Double
    (String) The size of the disk in GB (gigabytes).
    supportedInstanceInterfaceTypes List<String>
    (String) The instance disk interfaces supported for this dedicated host disk.
    available number
    (String) The remaining space left for instance placement in GB (gigabytes).
    createdAt string
    (String) The creation date and time of the disk.
    href string
    (String) The URL for this virtual server instance profile.
    id string
    (String) The unique identifier for this virtual server instance.
    instanceDisks GetIsDedicatedHostDiskInstanceDisk[]
    (List) Instance disks that are on the dedicated host disk.
    interfaceType string
    (String) The disk interface used for attaching the disk. The enumerated values for the property are expected to expand in the future. When processing the property, you can check for and log unknown values. Optionally, halt processing and surface the error, or bypass the resource on which the unexpected property value was encountered.
    lifecycleState string
    (String) The lifecycle state of the dedicated host resource.
    name string
    The unique name of this dedicated host.
    provisionable boolean
    (String) Indicates whether this dedicated host is available for instance creation.
    resourceType string
    (String) The type of resource referenced.
    size number
    (String) The size of the disk in GB (gigabytes).
    supportedInstanceInterfaceTypes string[]
    (String) The instance disk interfaces supported for this dedicated host disk.
    available float
    (String) The remaining space left for instance placement in GB (gigabytes).
    created_at str
    (String) The creation date and time of the disk.
    href str
    (String) The URL for this virtual server instance profile.
    id str
    (String) The unique identifier for this virtual server instance.
    instance_disks Sequence[GetIsDedicatedHostDiskInstanceDisk]
    (List) Instance disks that are on the dedicated host disk.
    interface_type str
    (String) The disk interface used for attaching the disk. The enumerated values for the property are expected to expand in the future. When processing the property, you can check for and log unknown values. Optionally, halt processing and surface the error, or bypass the resource on which the unexpected property value was encountered.
    lifecycle_state str
    (String) The lifecycle state of the dedicated host resource.
    name str
    The unique name of this dedicated host.
    provisionable bool
    (String) Indicates whether this dedicated host is available for instance creation.
    resource_type str
    (String) The type of resource referenced.
    size float
    (String) The size of the disk in GB (gigabytes).
    supported_instance_interface_types Sequence[str]
    (String) The instance disk interfaces supported for this dedicated host disk.
    available Number
    (String) The remaining space left for instance placement in GB (gigabytes).
    createdAt String
    (String) The creation date and time of the disk.
    href String
    (String) The URL for this virtual server instance profile.
    id String
    (String) The unique identifier for this virtual server instance.
    instanceDisks List<Property Map>
    (List) Instance disks that are on the dedicated host disk.
    interfaceType String
    (String) The disk interface used for attaching the disk. The enumerated values for the property are expected to expand in the future. When processing the property, you can check for and log unknown values. Optionally, halt processing and surface the error, or bypass the resource on which the unexpected property value was encountered.
    lifecycleState String
    (String) The lifecycle state of the dedicated host resource.
    name String
    The unique name of this dedicated host.
    provisionable Boolean
    (String) Indicates whether this dedicated host is available for instance creation.
    resourceType String
    (String) The type of resource referenced.
    size Number
    (String) The size of the disk in GB (gigabytes).
    supportedInstanceInterfaceTypes List<String>
    (String) The instance disk interfaces supported for this dedicated host disk.

    GetIsDedicatedHostDiskInstanceDisk

    Deleteds List<GetIsDedicatedHostDiskInstanceDiskDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides the supplementary information.
    Href string
    (String) The URL for this instance disk.
    Id string
    (String) The unique identifier for this instance disk.
    Name string
    (String) The user defined or system provided name for this disk.
    ResourceType string
    (String) The type of resource referenced.
    Deleteds []GetIsDedicatedHostDiskInstanceDiskDeleted
    (List) If present, this property indicates the referenced resource has been deleted and provides the supplementary information.
    Href string
    (String) The URL for this instance disk.
    Id string
    (String) The unique identifier for this instance disk.
    Name string
    (String) The user defined or system provided name for this disk.
    ResourceType string
    (String) The type of resource referenced.
    deleteds List<GetIsDedicatedHostDiskInstanceDiskDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides the supplementary information.
    href String
    (String) The URL for this instance disk.
    id String
    (String) The unique identifier for this instance disk.
    name String
    (String) The user defined or system provided name for this disk.
    resourceType String
    (String) The type of resource referenced.
    deleteds GetIsDedicatedHostDiskInstanceDiskDeleted[]
    (List) If present, this property indicates the referenced resource has been deleted and provides the supplementary information.
    href string
    (String) The URL for this instance disk.
    id string
    (String) The unique identifier for this instance disk.
    name string
    (String) The user defined or system provided name for this disk.
    resourceType string
    (String) The type of resource referenced.
    deleteds Sequence[GetIsDedicatedHostDiskInstanceDiskDeleted]
    (List) If present, this property indicates the referenced resource has been deleted and provides the supplementary information.
    href str
    (String) The URL for this instance disk.
    id str
    (String) The unique identifier for this instance disk.
    name str
    (String) The user defined or system provided name for this disk.
    resource_type str
    (String) The type of resource referenced.
    deleteds List<Property Map>
    (List) If present, this property indicates the referenced resource has been deleted and provides the supplementary information.
    href String
    (String) The URL for this instance disk.
    id String
    (String) The unique identifier for this instance disk.
    name String
    (String) The user defined or system provided name for this disk.
    resourceType String
    (String) The type of resource referenced.

    GetIsDedicatedHostDiskInstanceDiskDeleted

    MoreInfo string
    (String) Link to documentation about deleted resources.
    MoreInfo string
    (String) Link to documentation about deleted resources.
    moreInfo String
    (String) Link to documentation about deleted resources.
    moreInfo string
    (String) Link to documentation about deleted resources.
    more_info str
    (String) Link to documentation about deleted resources.
    moreInfo String
    (String) Link to documentation about deleted resources.

    GetIsDedicatedHostInstance

    Crn string
    (String) The CRN for this virtual server instance.
    Deleteds List<GetIsDedicatedHostInstanceDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides supplementary information.
    Href string
    (String) The URL for this virtual server instance profile.
    Id string
    (String) The unique identifier for this virtual server instance.
    Name string
    The unique name of this dedicated host.
    Crn string
    (String) The CRN for this virtual server instance.
    Deleteds []GetIsDedicatedHostInstanceDeleted
    (List) If present, this property indicates the referenced resource has been deleted and provides supplementary information.
    Href string
    (String) The URL for this virtual server instance profile.
    Id string
    (String) The unique identifier for this virtual server instance.
    Name string
    The unique name of this dedicated host.
    crn String
    (String) The CRN for this virtual server instance.
    deleteds List<GetIsDedicatedHostInstanceDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides supplementary information.
    href String
    (String) The URL for this virtual server instance profile.
    id String
    (String) The unique identifier for this virtual server instance.
    name String
    The unique name of this dedicated host.
    crn string
    (String) The CRN for this virtual server instance.
    deleteds GetIsDedicatedHostInstanceDeleted[]
    (List) If present, this property indicates the referenced resource has been deleted and provides supplementary information.
    href string
    (String) The URL for this virtual server instance profile.
    id string
    (String) The unique identifier for this virtual server instance.
    name string
    The unique name of this dedicated host.
    crn str
    (String) The CRN for this virtual server instance.
    deleteds Sequence[GetIsDedicatedHostInstanceDeleted]
    (List) If present, this property indicates the referenced resource has been deleted and provides supplementary information.
    href str
    (String) The URL for this virtual server instance profile.
    id str
    (String) The unique identifier for this virtual server instance.
    name str
    The unique name of this dedicated host.
    crn String
    (String) The CRN for this virtual server instance.
    deleteds List<Property Map>
    (List) If present, this property indicates the referenced resource has been deleted and provides supplementary information.
    href String
    (String) The URL for this virtual server instance profile.
    id String
    (String) The unique identifier for this virtual server instance.
    name String
    The unique name of this dedicated host.

    GetIsDedicatedHostInstanceDeleted

    MoreInfo string
    (String) Link to documentation about deleted resources.
    MoreInfo string
    (String) Link to documentation about deleted resources.
    moreInfo String
    (String) Link to documentation about deleted resources.
    moreInfo string
    (String) Link to documentation about deleted resources.
    more_info str
    (String) Link to documentation about deleted resources.
    moreInfo String
    (String) Link to documentation about deleted resources.

    GetIsDedicatedHostNuma

    Count double
    (String) The number of VCPUs assigned.
    Nodes List<GetIsDedicatedHostNumaNode>
    (List) The NUMA nodes for this dedicated host.
    Count float64
    (String) The number of VCPUs assigned.
    Nodes []GetIsDedicatedHostNumaNode
    (List) The NUMA nodes for this dedicated host.
    count Double
    (String) The number of VCPUs assigned.
    nodes List<GetIsDedicatedHostNumaNode>
    (List) The NUMA nodes for this dedicated host.
    count number
    (String) The number of VCPUs assigned.
    nodes GetIsDedicatedHostNumaNode[]
    (List) The NUMA nodes for this dedicated host.
    count float
    (String) The number of VCPUs assigned.
    nodes Sequence[GetIsDedicatedHostNumaNode]
    (List) The NUMA nodes for this dedicated host.
    count Number
    (String) The number of VCPUs assigned.
    nodes List<Property Map>
    (List) The NUMA nodes for this dedicated host.

    GetIsDedicatedHostNumaNode

    AvailableVcpu double
    (Integer) The available VCPU for this NUMA node.
    Vcpu double
    (List) The total VCPU of the dedicated host.
    AvailableVcpu float64
    (Integer) The available VCPU for this NUMA node.
    Vcpu float64
    (List) The total VCPU of the dedicated host.
    availableVcpu Double
    (Integer) The available VCPU for this NUMA node.
    vcpu Double
    (List) The total VCPU of the dedicated host.
    availableVcpu number
    (Integer) The available VCPU for this NUMA node.
    vcpu number
    (List) The total VCPU of the dedicated host.
    available_vcpu float
    (Integer) The available VCPU for this NUMA node.
    vcpu float
    (List) The total VCPU of the dedicated host.
    availableVcpu Number
    (Integer) The available VCPU for this NUMA node.
    vcpu Number
    (List) The total VCPU of the dedicated host.

    GetIsDedicatedHostProfile

    Href string
    (String) The URL for this virtual server instance profile.
    Name string
    The unique name of this dedicated host.
    Href string
    (String) The URL for this virtual server instance profile.
    Name string
    The unique name of this dedicated host.
    href String
    (String) The URL for this virtual server instance profile.
    name String
    The unique name of this dedicated host.
    href string
    (String) The URL for this virtual server instance profile.
    name string
    The unique name of this dedicated host.
    href str
    (String) The URL for this virtual server instance profile.
    name str
    The unique name of this dedicated host.
    href String
    (String) The URL for this virtual server instance profile.
    name String
    The unique name of this dedicated host.

    GetIsDedicatedHostSupportedInstanceProfile

    Href string
    (String) The URL for this virtual server instance profile.
    Name string
    The unique name of this dedicated host.
    Href string
    (String) The URL for this virtual server instance profile.
    Name string
    The unique name of this dedicated host.
    href String
    (String) The URL for this virtual server instance profile.
    name String
    The unique name of this dedicated host.
    href string
    (String) The URL for this virtual server instance profile.
    name string
    The unique name of this dedicated host.
    href str
    (String) The URL for this virtual server instance profile.
    name str
    The unique name of this dedicated host.
    href String
    (String) The URL for this virtual server instance profile.
    name String
    The unique name of this dedicated host.

    GetIsDedicatedHostVcpus

    Architecture string
    (String) The VCPU architecture.
    Count double
    (String) The number of VCPUs assigned.
    Manufacturer string
    (String) The VCPU manufacturer.
    Architecture string
    (String) The VCPU architecture.
    Count float64
    (String) The number of VCPUs assigned.
    Manufacturer string
    (String) The VCPU manufacturer.
    architecture String
    (String) The VCPU architecture.
    count Double
    (String) The number of VCPUs assigned.
    manufacturer String
    (String) The VCPU manufacturer.
    architecture string
    (String) The VCPU architecture.
    count number
    (String) The number of VCPUs assigned.
    manufacturer string
    (String) The VCPU manufacturer.
    architecture str
    (String) The VCPU architecture.
    count float
    (String) The number of VCPUs assigned.
    manufacturer str
    (String) The VCPU manufacturer.
    architecture String
    (String) The VCPU architecture.
    count Number
    (String) The number of VCPUs assigned.
    manufacturer String
    (String) The VCPU manufacturer.

    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