1. Packages
  2. Ibm Provider
  3. API Docs
  4. ContainerDedicatedHostPool
ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud

ibm.ContainerDedicatedHostPool

Explore with Pulumi AI

ibm logo
ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud

    Create or delete a dedicated host pool. For more information, about dedicated host pool, see Creating and managing dedicated hosts on VPC Gen 2 infrastructure.

    Example Usage

    In the following example, you can create a dedicated host pool:

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const testDhostpool = new ibm.ContainerDedicatedHostPool("testDhostpool", {
        flavorClass: "bx2d",
        metro: "dal",
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    test_dhostpool = ibm.ContainerDedicatedHostPool("testDhostpool",
        flavor_class="bx2d",
        metro="dal")
    
    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.NewContainerDedicatedHostPool(ctx, "testDhostpool", &ibm.ContainerDedicatedHostPoolArgs{
    			FlavorClass: pulumi.String("bx2d"),
    			Metro:       pulumi.String("dal"),
    		})
    		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 testDhostpool = new Ibm.ContainerDedicatedHostPool("testDhostpool", new()
        {
            FlavorClass = "bx2d",
            Metro = "dal",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.ContainerDedicatedHostPool;
    import com.pulumi.ibm.ContainerDedicatedHostPoolArgs;
    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 testDhostpool = new ContainerDedicatedHostPool("testDhostpool", ContainerDedicatedHostPoolArgs.builder()
                .flavorClass("bx2d")
                .metro("dal")
                .build());
    
        }
    }
    
    resources:
      testDhostpool:
        type: ibm:ContainerDedicatedHostPool
        properties:
          flavorClass: bx2d
          metro: dal
    

    Create ContainerDedicatedHostPool Resource

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

    Constructor syntax

    new ContainerDedicatedHostPool(name: string, args: ContainerDedicatedHostPoolArgs, opts?: CustomResourceOptions);
    @overload
    def ContainerDedicatedHostPool(resource_name: str,
                                   args: ContainerDedicatedHostPoolArgs,
                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def ContainerDedicatedHostPool(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   flavor_class: Optional[str] = None,
                                   metro: Optional[str] = None,
                                   container_dedicated_host_pool_id: Optional[str] = None,
                                   name: Optional[str] = None,
                                   resource_group_id: Optional[str] = None,
                                   timeouts: Optional[ContainerDedicatedHostPoolTimeoutsArgs] = None)
    func NewContainerDedicatedHostPool(ctx *Context, name string, args ContainerDedicatedHostPoolArgs, opts ...ResourceOption) (*ContainerDedicatedHostPool, error)
    public ContainerDedicatedHostPool(string name, ContainerDedicatedHostPoolArgs args, CustomResourceOptions? opts = null)
    public ContainerDedicatedHostPool(String name, ContainerDedicatedHostPoolArgs args)
    public ContainerDedicatedHostPool(String name, ContainerDedicatedHostPoolArgs args, CustomResourceOptions options)
    
    type: ibm:ContainerDedicatedHostPool
    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 ContainerDedicatedHostPoolArgs
    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 ContainerDedicatedHostPoolArgs
    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 ContainerDedicatedHostPoolArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ContainerDedicatedHostPoolArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ContainerDedicatedHostPoolArgs
    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 containerDedicatedHostPoolResource = new Ibm.ContainerDedicatedHostPool("containerDedicatedHostPoolResource", new()
    {
        FlavorClass = "string",
        Metro = "string",
        ContainerDedicatedHostPoolId = "string",
        Name = "string",
        ResourceGroupId = "string",
        Timeouts = new Ibm.Inputs.ContainerDedicatedHostPoolTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Read = "string",
        },
    });
    
    example, err := ibm.NewContainerDedicatedHostPool(ctx, "containerDedicatedHostPoolResource", &ibm.ContainerDedicatedHostPoolArgs{
    	FlavorClass:                  pulumi.String("string"),
    	Metro:                        pulumi.String("string"),
    	ContainerDedicatedHostPoolId: pulumi.String("string"),
    	Name:                         pulumi.String("string"),
    	ResourceGroupId:              pulumi.String("string"),
    	Timeouts: &ibm.ContainerDedicatedHostPoolTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Read:   pulumi.String("string"),
    	},
    })
    
    var containerDedicatedHostPoolResource = new ContainerDedicatedHostPool("containerDedicatedHostPoolResource", ContainerDedicatedHostPoolArgs.builder()
        .flavorClass("string")
        .metro("string")
        .containerDedicatedHostPoolId("string")
        .name("string")
        .resourceGroupId("string")
        .timeouts(ContainerDedicatedHostPoolTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .read("string")
            .build())
        .build());
    
    container_dedicated_host_pool_resource = ibm.ContainerDedicatedHostPool("containerDedicatedHostPoolResource",
        flavor_class="string",
        metro="string",
        container_dedicated_host_pool_id="string",
        name="string",
        resource_group_id="string",
        timeouts={
            "create": "string",
            "delete": "string",
            "read": "string",
        })
    
    const containerDedicatedHostPoolResource = new ibm.ContainerDedicatedHostPool("containerDedicatedHostPoolResource", {
        flavorClass: "string",
        metro: "string",
        containerDedicatedHostPoolId: "string",
        name: "string",
        resourceGroupId: "string",
        timeouts: {
            create: "string",
            "delete": "string",
            read: "string",
        },
    });
    
    type: ibm:ContainerDedicatedHostPool
    properties:
        containerDedicatedHostPoolId: string
        flavorClass: string
        metro: string
        name: string
        resourceGroupId: string
        timeouts:
            create: string
            delete: string
            read: string
    

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

    FlavorClass string
    The flavor class of the dedicated host pool.
    Metro string
    The metro to create the dedicated host pool in.
    ContainerDedicatedHostPoolId string
    (String) The unique identifier of the dedicated host pool.
    Name string
    The name of the dedicated host pool.
    ResourceGroupId string
    The ID of the resource group where you want to create the dedicated host pool. To retrieve the ID, use the ibm.ResourceGroup data source. If no value is provided, the dedicated host pool is automatically created under the default resource group.
    Timeouts ContainerDedicatedHostPoolTimeouts
    FlavorClass string
    The flavor class of the dedicated host pool.
    Metro string
    The metro to create the dedicated host pool in.
    ContainerDedicatedHostPoolId string
    (String) The unique identifier of the dedicated host pool.
    Name string
    The name of the dedicated host pool.
    ResourceGroupId string
    The ID of the resource group where you want to create the dedicated host pool. To retrieve the ID, use the ibm.ResourceGroup data source. If no value is provided, the dedicated host pool is automatically created under the default resource group.
    Timeouts ContainerDedicatedHostPoolTimeoutsArgs
    flavorClass String
    The flavor class of the dedicated host pool.
    metro String
    The metro to create the dedicated host pool in.
    containerDedicatedHostPoolId String
    (String) The unique identifier of the dedicated host pool.
    name String
    The name of the dedicated host pool.
    resourceGroupId String
    The ID of the resource group where you want to create the dedicated host pool. To retrieve the ID, use the ibm.ResourceGroup data source. If no value is provided, the dedicated host pool is automatically created under the default resource group.
    timeouts ContainerDedicatedHostPoolTimeouts
    flavorClass string
    The flavor class of the dedicated host pool.
    metro string
    The metro to create the dedicated host pool in.
    containerDedicatedHostPoolId string
    (String) The unique identifier of the dedicated host pool.
    name string
    The name of the dedicated host pool.
    resourceGroupId string
    The ID of the resource group where you want to create the dedicated host pool. To retrieve the ID, use the ibm.ResourceGroup data source. If no value is provided, the dedicated host pool is automatically created under the default resource group.
    timeouts ContainerDedicatedHostPoolTimeouts
    flavor_class str
    The flavor class of the dedicated host pool.
    metro str
    The metro to create the dedicated host pool in.
    container_dedicated_host_pool_id str
    (String) The unique identifier of the dedicated host pool.
    name str
    The name of the dedicated host pool.
    resource_group_id str
    The ID of the resource group where you want to create the dedicated host pool. To retrieve the ID, use the ibm.ResourceGroup data source. If no value is provided, the dedicated host pool is automatically created under the default resource group.
    timeouts ContainerDedicatedHostPoolTimeoutsArgs
    flavorClass String
    The flavor class of the dedicated host pool.
    metro String
    The metro to create the dedicated host pool in.
    containerDedicatedHostPoolId String
    (String) The unique identifier of the dedicated host pool.
    name String
    The name of the dedicated host pool.
    resourceGroupId String
    The ID of the resource group where you want to create the dedicated host pool. To retrieve the ID, use the ibm.ResourceGroup data source. If no value is provided, the dedicated host pool is automatically created under the default resource group.
    timeouts Property Map

    Outputs

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

    HostCount double
    (Int) The count of the hosts under the zone.
    Id string
    The provider-assigned unique ID for this managed resource.
    State string
    (String) The state of the dedicated host pool.
    WorkerPools List<ContainerDedicatedHostPoolWorkerPool>
    (List) A nested block describes the worker pools of this dedicated host pool.
    Zones List<ContainerDedicatedHostPoolZone>
    (List) A nested block describes the zones of this dedicated host pool.
    HostCount float64
    (Int) The count of the hosts under the zone.
    Id string
    The provider-assigned unique ID for this managed resource.
    State string
    (String) The state of the dedicated host pool.
    WorkerPools []ContainerDedicatedHostPoolWorkerPool
    (List) A nested block describes the worker pools of this dedicated host pool.
    Zones []ContainerDedicatedHostPoolZone
    (List) A nested block describes the zones of this dedicated host pool.
    hostCount Double
    (Int) The count of the hosts under the zone.
    id String
    The provider-assigned unique ID for this managed resource.
    state String
    (String) The state of the dedicated host pool.
    workerPools List<ContainerDedicatedHostPoolWorkerPool>
    (List) A nested block describes the worker pools of this dedicated host pool.
    zones List<ContainerDedicatedHostPoolZone>
    (List) A nested block describes the zones of this dedicated host pool.
    hostCount number
    (Int) The count of the hosts under the zone.
    id string
    The provider-assigned unique ID for this managed resource.
    state string
    (String) The state of the dedicated host pool.
    workerPools ContainerDedicatedHostPoolWorkerPool[]
    (List) A nested block describes the worker pools of this dedicated host pool.
    zones ContainerDedicatedHostPoolZone[]
    (List) A nested block describes the zones of this dedicated host pool.
    host_count float
    (Int) The count of the hosts under the zone.
    id str
    The provider-assigned unique ID for this managed resource.
    state str
    (String) The state of the dedicated host pool.
    worker_pools Sequence[ContainerDedicatedHostPoolWorkerPool]
    (List) A nested block describes the worker pools of this dedicated host pool.
    zones Sequence[ContainerDedicatedHostPoolZone]
    (List) A nested block describes the zones of this dedicated host pool.
    hostCount Number
    (Int) The count of the hosts under the zone.
    id String
    The provider-assigned unique ID for this managed resource.
    state String
    (String) The state of the dedicated host pool.
    workerPools List<Property Map>
    (List) A nested block describes the worker pools of this dedicated host pool.
    zones List<Property Map>
    (List) A nested block describes the zones of this dedicated host pool.

    Look up Existing ContainerDedicatedHostPool Resource

    Get an existing ContainerDedicatedHostPool 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?: ContainerDedicatedHostPoolState, opts?: CustomResourceOptions): ContainerDedicatedHostPool
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            container_dedicated_host_pool_id: Optional[str] = None,
            flavor_class: Optional[str] = None,
            host_count: Optional[float] = None,
            metro: Optional[str] = None,
            name: Optional[str] = None,
            resource_group_id: Optional[str] = None,
            state: Optional[str] = None,
            timeouts: Optional[ContainerDedicatedHostPoolTimeoutsArgs] = None,
            worker_pools: Optional[Sequence[ContainerDedicatedHostPoolWorkerPoolArgs]] = None,
            zones: Optional[Sequence[ContainerDedicatedHostPoolZoneArgs]] = None) -> ContainerDedicatedHostPool
    func GetContainerDedicatedHostPool(ctx *Context, name string, id IDInput, state *ContainerDedicatedHostPoolState, opts ...ResourceOption) (*ContainerDedicatedHostPool, error)
    public static ContainerDedicatedHostPool Get(string name, Input<string> id, ContainerDedicatedHostPoolState? state, CustomResourceOptions? opts = null)
    public static ContainerDedicatedHostPool get(String name, Output<String> id, ContainerDedicatedHostPoolState state, CustomResourceOptions options)
    resources:  _:    type: ibm:ContainerDedicatedHostPool    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:
    ContainerDedicatedHostPoolId string
    (String) The unique identifier of the dedicated host pool.
    FlavorClass string
    The flavor class of the dedicated host pool.
    HostCount double
    (Int) The count of the hosts under the zone.
    Metro string
    The metro to create the dedicated host pool in.
    Name string
    The name of the dedicated host pool.
    ResourceGroupId string
    The ID of the resource group where you want to create the dedicated host pool. To retrieve the ID, use the ibm.ResourceGroup data source. If no value is provided, the dedicated host pool is automatically created under the default resource group.
    State string
    (String) The state of the dedicated host pool.
    Timeouts ContainerDedicatedHostPoolTimeouts
    WorkerPools List<ContainerDedicatedHostPoolWorkerPool>
    (List) A nested block describes the worker pools of this dedicated host pool.
    Zones List<ContainerDedicatedHostPoolZone>
    (List) A nested block describes the zones of this dedicated host pool.
    ContainerDedicatedHostPoolId string
    (String) The unique identifier of the dedicated host pool.
    FlavorClass string
    The flavor class of the dedicated host pool.
    HostCount float64
    (Int) The count of the hosts under the zone.
    Metro string
    The metro to create the dedicated host pool in.
    Name string
    The name of the dedicated host pool.
    ResourceGroupId string
    The ID of the resource group where you want to create the dedicated host pool. To retrieve the ID, use the ibm.ResourceGroup data source. If no value is provided, the dedicated host pool is automatically created under the default resource group.
    State string
    (String) The state of the dedicated host pool.
    Timeouts ContainerDedicatedHostPoolTimeoutsArgs
    WorkerPools []ContainerDedicatedHostPoolWorkerPoolArgs
    (List) A nested block describes the worker pools of this dedicated host pool.
    Zones []ContainerDedicatedHostPoolZoneArgs
    (List) A nested block describes the zones of this dedicated host pool.
    containerDedicatedHostPoolId String
    (String) The unique identifier of the dedicated host pool.
    flavorClass String
    The flavor class of the dedicated host pool.
    hostCount Double
    (Int) The count of the hosts under the zone.
    metro String
    The metro to create the dedicated host pool in.
    name String
    The name of the dedicated host pool.
    resourceGroupId String
    The ID of the resource group where you want to create the dedicated host pool. To retrieve the ID, use the ibm.ResourceGroup data source. If no value is provided, the dedicated host pool is automatically created under the default resource group.
    state String
    (String) The state of the dedicated host pool.
    timeouts ContainerDedicatedHostPoolTimeouts
    workerPools List<ContainerDedicatedHostPoolWorkerPool>
    (List) A nested block describes the worker pools of this dedicated host pool.
    zones List<ContainerDedicatedHostPoolZone>
    (List) A nested block describes the zones of this dedicated host pool.
    containerDedicatedHostPoolId string
    (String) The unique identifier of the dedicated host pool.
    flavorClass string
    The flavor class of the dedicated host pool.
    hostCount number
    (Int) The count of the hosts under the zone.
    metro string
    The metro to create the dedicated host pool in.
    name string
    The name of the dedicated host pool.
    resourceGroupId string
    The ID of the resource group where you want to create the dedicated host pool. To retrieve the ID, use the ibm.ResourceGroup data source. If no value is provided, the dedicated host pool is automatically created under the default resource group.
    state string
    (String) The state of the dedicated host pool.
    timeouts ContainerDedicatedHostPoolTimeouts
    workerPools ContainerDedicatedHostPoolWorkerPool[]
    (List) A nested block describes the worker pools of this dedicated host pool.
    zones ContainerDedicatedHostPoolZone[]
    (List) A nested block describes the zones of this dedicated host pool.
    container_dedicated_host_pool_id str
    (String) The unique identifier of the dedicated host pool.
    flavor_class str
    The flavor class of the dedicated host pool.
    host_count float
    (Int) The count of the hosts under the zone.
    metro str
    The metro to create the dedicated host pool in.
    name str
    The name of the dedicated host pool.
    resource_group_id str
    The ID of the resource group where you want to create the dedicated host pool. To retrieve the ID, use the ibm.ResourceGroup data source. If no value is provided, the dedicated host pool is automatically created under the default resource group.
    state str
    (String) The state of the dedicated host pool.
    timeouts ContainerDedicatedHostPoolTimeoutsArgs
    worker_pools Sequence[ContainerDedicatedHostPoolWorkerPoolArgs]
    (List) A nested block describes the worker pools of this dedicated host pool.
    zones Sequence[ContainerDedicatedHostPoolZoneArgs]
    (List) A nested block describes the zones of this dedicated host pool.
    containerDedicatedHostPoolId String
    (String) The unique identifier of the dedicated host pool.
    flavorClass String
    The flavor class of the dedicated host pool.
    hostCount Number
    (Int) The count of the hosts under the zone.
    metro String
    The metro to create the dedicated host pool in.
    name String
    The name of the dedicated host pool.
    resourceGroupId String
    The ID of the resource group where you want to create the dedicated host pool. To retrieve the ID, use the ibm.ResourceGroup data source. If no value is provided, the dedicated host pool is automatically created under the default resource group.
    state String
    (String) The state of the dedicated host pool.
    timeouts Property Map
    workerPools List<Property Map>
    (List) A nested block describes the worker pools of this dedicated host pool.
    zones List<Property Map>
    (List) A nested block describes the zones of this dedicated host pool.

    Supporting Types

    ContainerDedicatedHostPoolTimeouts, ContainerDedicatedHostPoolTimeoutsArgs

    Create string
    Delete string
    Read string
    Create string
    Delete string
    Read string
    create String
    delete String
    read String
    create string
    delete string
    read string
    create str
    delete str
    read str
    create String
    delete String
    read String

    ContainerDedicatedHostPoolWorkerPool, ContainerDedicatedHostPoolWorkerPoolArgs

    ClusterId string
    (String) The ID of the cluster.
    WorkerPoolId string
    (String) The unique identifier of the worker pool.
    ClusterId string
    (String) The ID of the cluster.
    WorkerPoolId string
    (String) The unique identifier of the worker pool.
    clusterId String
    (String) The ID of the cluster.
    workerPoolId String
    (String) The unique identifier of the worker pool.
    clusterId string
    (String) The ID of the cluster.
    workerPoolId string
    (String) The unique identifier of the worker pool.
    cluster_id str
    (String) The ID of the cluster.
    worker_pool_id str
    (String) The unique identifier of the worker pool.
    clusterId String
    (String) The ID of the cluster.
    workerPoolId String
    (String) The unique identifier of the worker pool.

    ContainerDedicatedHostPoolZone, ContainerDedicatedHostPoolZoneArgs

    Capacities List<ContainerDedicatedHostPoolZoneCapacity>
    (Map) A nested block describes the capacity of the zone. Nested scheme for capacity:
    HostCount double
    (Int) The count of the hosts under the zone.
    Zone string
    (String) The name of the zone.
    Capacities []ContainerDedicatedHostPoolZoneCapacity
    (Map) A nested block describes the capacity of the zone. Nested scheme for capacity:
    HostCount float64
    (Int) The count of the hosts under the zone.
    Zone string
    (String) The name of the zone.
    capacities List<ContainerDedicatedHostPoolZoneCapacity>
    (Map) A nested block describes the capacity of the zone. Nested scheme for capacity:
    hostCount Double
    (Int) The count of the hosts under the zone.
    zone String
    (String) The name of the zone.
    capacities ContainerDedicatedHostPoolZoneCapacity[]
    (Map) A nested block describes the capacity of the zone. Nested scheme for capacity:
    hostCount number
    (Int) The count of the hosts under the zone.
    zone string
    (String) The name of the zone.
    capacities Sequence[ContainerDedicatedHostPoolZoneCapacity]
    (Map) A nested block describes the capacity of the zone. Nested scheme for capacity:
    host_count float
    (Int) The count of the hosts under the zone.
    zone str
    (String) The name of the zone.
    capacities List<Property Map>
    (Map) A nested block describes the capacity of the zone. Nested scheme for capacity:
    hostCount Number
    (Int) The count of the hosts under the zone.
    zone String
    (String) The name of the zone.

    ContainerDedicatedHostPoolZoneCapacity, ContainerDedicatedHostPoolZoneCapacityArgs

    MemoryBytes double
    (Int) Memory capacity of the zone.
    Vcpu double
    (Int) VCPU capacity of the zone.
    MemoryBytes float64
    (Int) Memory capacity of the zone.
    Vcpu float64
    (Int) VCPU capacity of the zone.
    memoryBytes Double
    (Int) Memory capacity of the zone.
    vcpu Double
    (Int) VCPU capacity of the zone.
    memoryBytes number
    (Int) Memory capacity of the zone.
    vcpu number
    (Int) VCPU capacity of the zone.
    memory_bytes float
    (Int) Memory capacity of the zone.
    vcpu float
    (Int) VCPU capacity of the zone.
    memoryBytes Number
    (Int) Memory capacity of the zone.
    vcpu Number
    (Int) VCPU capacity of the zone.

    Import

    The ibm_container_dedicated_host_pool can be imported by using id.

    Example

    $ pulumi import ibm:index/containerDedicatedHostPool:ContainerDedicatedHostPool test_dhostpool "dh-abcdefgh1234567"
    

    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.77.1 published on Monday, Apr 14, 2025 by ibm-cloud