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

ibm.getVmaasVdc

Explore with Pulumi AI

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

    Provides a read-only data source to retrieve information about a vmaas_vdc. You can then reference the fields of the data source in other resources within the same configuration by using interpolation syntax.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const vmaasVdc = ibm.getVmaasVdc({
        acceptLanguage: ibm_vmaas_vdc.vmaas_vdc_instance.accept_language,
        vmaasVdcId: "vdc_id",
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    vmaas_vdc = ibm.get_vmaas_vdc(accept_language=ibm_vmaas_vdc["vmaas_vdc_instance"]["accept_language"],
        vmaas_vdc_id="vdc_id")
    
    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.LookupVmaasVdc(ctx, &ibm.LookupVmaasVdcArgs{
    			AcceptLanguage: pulumi.StringRef(ibm_vmaas_vdc.Vmaas_vdc_instance.Accept_language),
    			VmaasVdcId:     "vdc_id",
    		}, 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 vmaasVdc = Ibm.GetVmaasVdc.Invoke(new()
        {
            AcceptLanguage = ibm_vmaas_vdc.Vmaas_vdc_instance.Accept_language,
            VmaasVdcId = "vdc_id",
        });
    
    });
    
    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.GetVmaasVdcArgs;
    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 vmaasVdc = IbmFunctions.getVmaasVdc(GetVmaasVdcArgs.builder()
                .acceptLanguage(ibm_vmaas_vdc.vmaas_vdc_instance().accept_language())
                .vmaasVdcId("vdc_id")
                .build());
    
        }
    }
    
    variables:
      vmaasVdc:
        fn::invoke:
          function: ibm:getVmaasVdc
          arguments:
            acceptLanguage: ${ibm_vmaas_vdc.vmaas_vdc_instance.accept_language}
            vmaasVdcId: vdc_id
    

    Using getVmaasVdc

    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 getVmaasVdc(args: GetVmaasVdcArgs, opts?: InvokeOptions): Promise<GetVmaasVdcResult>
    function getVmaasVdcOutput(args: GetVmaasVdcOutputArgs, opts?: InvokeOptions): Output<GetVmaasVdcResult>
    def get_vmaas_vdc(accept_language: Optional[str] = None,
                      id: Optional[str] = None,
                      vmaas_vdc_id: Optional[str] = None,
                      opts: Optional[InvokeOptions] = None) -> GetVmaasVdcResult
    def get_vmaas_vdc_output(accept_language: Optional[pulumi.Input[str]] = None,
                      id: Optional[pulumi.Input[str]] = None,
                      vmaas_vdc_id: Optional[pulumi.Input[str]] = None,
                      opts: Optional[InvokeOptions] = None) -> Output[GetVmaasVdcResult]
    func LookupVmaasVdc(ctx *Context, args *LookupVmaasVdcArgs, opts ...InvokeOption) (*LookupVmaasVdcResult, error)
    func LookupVmaasVdcOutput(ctx *Context, args *LookupVmaasVdcOutputArgs, opts ...InvokeOption) LookupVmaasVdcResultOutput

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

    public static class GetVmaasVdc 
    {
        public static Task<GetVmaasVdcResult> InvokeAsync(GetVmaasVdcArgs args, InvokeOptions? opts = null)
        public static Output<GetVmaasVdcResult> Invoke(GetVmaasVdcInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetVmaasVdcResult> getVmaasVdc(GetVmaasVdcArgs args, InvokeOptions options)
    public static Output<GetVmaasVdcResult> getVmaasVdc(GetVmaasVdcArgs args, InvokeOptions options)
    
    fn::invoke:
      function: ibm:index/getVmaasVdc:getVmaasVdc
      arguments:
        # arguments dictionary

    The following arguments are supported:

    VmaasVdcId string
    A unique ID for a specified virtual data center.

    • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9_-]{1,128}$/.
    AcceptLanguage string
    Language.

    • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9-,;=\\.\\*\\s]{1,256}$/.
    Id string
    (String) A unique ID for an IBM Transit Gateway.
    VmaasVdcId string
    A unique ID for a specified virtual data center.

    • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9_-]{1,128}$/.
    AcceptLanguage string
    Language.

    • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9-,;=\\.\\*\\s]{1,256}$/.
    Id string
    (String) A unique ID for an IBM Transit Gateway.
    vmaasVdcId String
    A unique ID for a specified virtual data center.

    • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9_-]{1,128}$/.
    acceptLanguage String
    Language.

    • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9-,;=\\.\\*\\s]{1,256}$/.
    id String
    (String) A unique ID for an IBM Transit Gateway.
    vmaasVdcId string
    A unique ID for a specified virtual data center.

    • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9_-]{1,128}$/.
    acceptLanguage string
    Language.

    • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9-,;=\\.\\*\\s]{1,256}$/.
    id string
    (String) A unique ID for an IBM Transit Gateway.
    vmaas_vdc_id str
    A unique ID for a specified virtual data center.

    • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9_-]{1,128}$/.
    accept_language str
    Language.

    • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9-,;=\\.\\*\\s]{1,256}$/.
    id str
    (String) A unique ID for an IBM Transit Gateway.
    vmaasVdcId String
    A unique ID for a specified virtual data center.

    • Constraints: The maximum length is 128 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9_-]{1,128}$/.
    acceptLanguage String
    Language.

    • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9-,;=\\.\\*\\s]{1,256}$/.
    id String
    (String) A unique ID for an IBM Transit Gateway.

    getVmaasVdc Result

    The following output properties are available:

    Cpu double
    (Integer) The vCPU usage limit on the virtual data center (VDC). Supported for VDCs deployed on a multitenant Cloud Director site. This property is applicable when the resource pool type is reserved.

    • Constraints: The maximum value is 2000. The minimum value is 0.
    Crn string
    (String) A unique ID for the virtual data center (VDC) in IBM Cloud.
    DeletedAt string
    (String) The time that the virtual data center (VDC) is deleted.
    DirectorSites List<GetVmaasVdcDirectorSite>
    (List) The Cloud Director site in which to deploy the virtual data center (VDC). Nested schema for director_site:
    Edges List<GetVmaasVdcEdge>
    (List) The VMware NSX-T networking edges deployed on the virtual data center (VDC). NSX-T edges are used for bridging virtualization networking to the physical public-internet and IBM private networking.

    • Constraints: The maximum length is 128 items. The minimum length is 0 items. Nested schema for edges:
    FastProvisioningEnabled bool
    (Boolean) Determines whether this virtual data center has fast provisioning enabled or not.
    Href string
    (String) The URL of this virtual data center (VDC).
    Id string
    (String) A unique ID for an IBM Transit Gateway.
    Name string
    (String) A human readable ID for the virtual data center (VDC).
    OrderedAt string
    (String) The time that the virtual data center (VDC) is ordered.
    OrgHref string
    (String) The URL of the organization that owns the VDC.
    OrgName string
    (String) The name of the VMware Cloud Director organization that contains this virtual data center (VDC). VMware Cloud Director organizations are used to create strong boundaries between VDCs. There is a complete isolation of user administration, networking, workloads, and VMware Cloud Director catalogs between different Director organizations.
    ProvisionedAt string
    (String) The time that the virtual data center (VDC) is provisioned and available to use.
    Ram double
    (Integer) The RAM usage limit on the virtual data center (VDC) in GB (1024^3 bytes). Supported for VDCs deployed on a multitenant Cloud Director site. This property is applicable when the resource pool type is reserved.

    • Constraints: The maximum value is 40960. The minimum value is 0.
    RhelByol bool
    (Boolean) Indicates if the RHEL VMs will be using the license from IBM or the customer will use their own license (BYOL).
    Status string
    (String) Determines the state of the virtual data center.

    • Constraints: Allowable values are: creating, ready_to_use, modifying, deleting, deleted, failed.
    StatusReasons List<GetVmaasVdcStatusReason>
    (List) Information about why the request to create the virtual data center (VDC) cannot be completed.

    • Constraints: The maximum length is 128 items. The minimum length is 0 items. Nested schema for status_reasons:
    Type string
    (String) Determines whether this virtual data center is in a single-tenant or multitenant Cloud Director site.

    • Constraints: Allowable values are: single_tenant, multitenant.
    VmaasVdcId string
    WindowsByol bool
    (Boolean) Indicates if the Microsoft Windows VMs will be using the license from IBM or the customer will use their own license (BYOL).
    AcceptLanguage string
    Cpu float64
    (Integer) The vCPU usage limit on the virtual data center (VDC). Supported for VDCs deployed on a multitenant Cloud Director site. This property is applicable when the resource pool type is reserved.

    • Constraints: The maximum value is 2000. The minimum value is 0.
    Crn string
    (String) A unique ID for the virtual data center (VDC) in IBM Cloud.
    DeletedAt string
    (String) The time that the virtual data center (VDC) is deleted.
    DirectorSites []GetVmaasVdcDirectorSite
    (List) The Cloud Director site in which to deploy the virtual data center (VDC). Nested schema for director_site:
    Edges []GetVmaasVdcEdge
    (List) The VMware NSX-T networking edges deployed on the virtual data center (VDC). NSX-T edges are used for bridging virtualization networking to the physical public-internet and IBM private networking.

    • Constraints: The maximum length is 128 items. The minimum length is 0 items. Nested schema for edges:
    FastProvisioningEnabled bool
    (Boolean) Determines whether this virtual data center has fast provisioning enabled or not.
    Href string
    (String) The URL of this virtual data center (VDC).
    Id string
    (String) A unique ID for an IBM Transit Gateway.
    Name string
    (String) A human readable ID for the virtual data center (VDC).
    OrderedAt string
    (String) The time that the virtual data center (VDC) is ordered.
    OrgHref string
    (String) The URL of the organization that owns the VDC.
    OrgName string
    (String) The name of the VMware Cloud Director organization that contains this virtual data center (VDC). VMware Cloud Director organizations are used to create strong boundaries between VDCs. There is a complete isolation of user administration, networking, workloads, and VMware Cloud Director catalogs between different Director organizations.
    ProvisionedAt string
    (String) The time that the virtual data center (VDC) is provisioned and available to use.
    Ram float64
    (Integer) The RAM usage limit on the virtual data center (VDC) in GB (1024^3 bytes). Supported for VDCs deployed on a multitenant Cloud Director site. This property is applicable when the resource pool type is reserved.

    • Constraints: The maximum value is 40960. The minimum value is 0.
    RhelByol bool
    (Boolean) Indicates if the RHEL VMs will be using the license from IBM or the customer will use their own license (BYOL).
    Status string
    (String) Determines the state of the virtual data center.

    • Constraints: Allowable values are: creating, ready_to_use, modifying, deleting, deleted, failed.
    StatusReasons []GetVmaasVdcStatusReason
    (List) Information about why the request to create the virtual data center (VDC) cannot be completed.

    • Constraints: The maximum length is 128 items. The minimum length is 0 items. Nested schema for status_reasons:
    Type string
    (String) Determines whether this virtual data center is in a single-tenant or multitenant Cloud Director site.

    • Constraints: Allowable values are: single_tenant, multitenant.
    VmaasVdcId string
    WindowsByol bool
    (Boolean) Indicates if the Microsoft Windows VMs will be using the license from IBM or the customer will use their own license (BYOL).
    AcceptLanguage string
    cpu Double
    (Integer) The vCPU usage limit on the virtual data center (VDC). Supported for VDCs deployed on a multitenant Cloud Director site. This property is applicable when the resource pool type is reserved.

    • Constraints: The maximum value is 2000. The minimum value is 0.
    crn String
    (String) A unique ID for the virtual data center (VDC) in IBM Cloud.
    deletedAt String
    (String) The time that the virtual data center (VDC) is deleted.
    directorSites List<GetVmaasVdcDirectorSite>
    (List) The Cloud Director site in which to deploy the virtual data center (VDC). Nested schema for director_site:
    edges List<GetVmaasVdcEdge>
    (List) The VMware NSX-T networking edges deployed on the virtual data center (VDC). NSX-T edges are used for bridging virtualization networking to the physical public-internet and IBM private networking.

    • Constraints: The maximum length is 128 items. The minimum length is 0 items. Nested schema for edges:
    fastProvisioningEnabled Boolean
    (Boolean) Determines whether this virtual data center has fast provisioning enabled or not.
    href String
    (String) The URL of this virtual data center (VDC).
    id String
    (String) A unique ID for an IBM Transit Gateway.
    name String
    (String) A human readable ID for the virtual data center (VDC).
    orderedAt String
    (String) The time that the virtual data center (VDC) is ordered.
    orgHref String
    (String) The URL of the organization that owns the VDC.
    orgName String
    (String) The name of the VMware Cloud Director organization that contains this virtual data center (VDC). VMware Cloud Director organizations are used to create strong boundaries between VDCs. There is a complete isolation of user administration, networking, workloads, and VMware Cloud Director catalogs between different Director organizations.
    provisionedAt String
    (String) The time that the virtual data center (VDC) is provisioned and available to use.
    ram Double
    (Integer) The RAM usage limit on the virtual data center (VDC) in GB (1024^3 bytes). Supported for VDCs deployed on a multitenant Cloud Director site. This property is applicable when the resource pool type is reserved.

    • Constraints: The maximum value is 40960. The minimum value is 0.
    rhelByol Boolean
    (Boolean) Indicates if the RHEL VMs will be using the license from IBM or the customer will use their own license (BYOL).
    status String
    (String) Determines the state of the virtual data center.

    • Constraints: Allowable values are: creating, ready_to_use, modifying, deleting, deleted, failed.
    statusReasons List<GetVmaasVdcStatusReason>
    (List) Information about why the request to create the virtual data center (VDC) cannot be completed.

    • Constraints: The maximum length is 128 items. The minimum length is 0 items. Nested schema for status_reasons:
    type String
    (String) Determines whether this virtual data center is in a single-tenant or multitenant Cloud Director site.

    • Constraints: Allowable values are: single_tenant, multitenant.
    vmaasVdcId String
    windowsByol Boolean
    (Boolean) Indicates if the Microsoft Windows VMs will be using the license from IBM or the customer will use their own license (BYOL).
    acceptLanguage String
    cpu number
    (Integer) The vCPU usage limit on the virtual data center (VDC). Supported for VDCs deployed on a multitenant Cloud Director site. This property is applicable when the resource pool type is reserved.

    • Constraints: The maximum value is 2000. The minimum value is 0.
    crn string
    (String) A unique ID for the virtual data center (VDC) in IBM Cloud.
    deletedAt string
    (String) The time that the virtual data center (VDC) is deleted.
    directorSites GetVmaasVdcDirectorSite[]
    (List) The Cloud Director site in which to deploy the virtual data center (VDC). Nested schema for director_site:
    edges GetVmaasVdcEdge[]
    (List) The VMware NSX-T networking edges deployed on the virtual data center (VDC). NSX-T edges are used for bridging virtualization networking to the physical public-internet and IBM private networking.

    • Constraints: The maximum length is 128 items. The minimum length is 0 items. Nested schema for edges:
    fastProvisioningEnabled boolean
    (Boolean) Determines whether this virtual data center has fast provisioning enabled or not.
    href string
    (String) The URL of this virtual data center (VDC).
    id string
    (String) A unique ID for an IBM Transit Gateway.
    name string
    (String) A human readable ID for the virtual data center (VDC).
    orderedAt string
    (String) The time that the virtual data center (VDC) is ordered.
    orgHref string
    (String) The URL of the organization that owns the VDC.
    orgName string
    (String) The name of the VMware Cloud Director organization that contains this virtual data center (VDC). VMware Cloud Director organizations are used to create strong boundaries between VDCs. There is a complete isolation of user administration, networking, workloads, and VMware Cloud Director catalogs between different Director organizations.
    provisionedAt string
    (String) The time that the virtual data center (VDC) is provisioned and available to use.
    ram number
    (Integer) The RAM usage limit on the virtual data center (VDC) in GB (1024^3 bytes). Supported for VDCs deployed on a multitenant Cloud Director site. This property is applicable when the resource pool type is reserved.

    • Constraints: The maximum value is 40960. The minimum value is 0.
    rhelByol boolean
    (Boolean) Indicates if the RHEL VMs will be using the license from IBM or the customer will use their own license (BYOL).
    status string
    (String) Determines the state of the virtual data center.

    • Constraints: Allowable values are: creating, ready_to_use, modifying, deleting, deleted, failed.
    statusReasons GetVmaasVdcStatusReason[]
    (List) Information about why the request to create the virtual data center (VDC) cannot be completed.

    • Constraints: The maximum length is 128 items. The minimum length is 0 items. Nested schema for status_reasons:
    type string
    (String) Determines whether this virtual data center is in a single-tenant or multitenant Cloud Director site.

    • Constraints: Allowable values are: single_tenant, multitenant.
    vmaasVdcId string
    windowsByol boolean
    (Boolean) Indicates if the Microsoft Windows VMs will be using the license from IBM or the customer will use their own license (BYOL).
    acceptLanguage string
    cpu float
    (Integer) The vCPU usage limit on the virtual data center (VDC). Supported for VDCs deployed on a multitenant Cloud Director site. This property is applicable when the resource pool type is reserved.

    • Constraints: The maximum value is 2000. The minimum value is 0.
    crn str
    (String) A unique ID for the virtual data center (VDC) in IBM Cloud.
    deleted_at str
    (String) The time that the virtual data center (VDC) is deleted.
    director_sites Sequence[GetVmaasVdcDirectorSite]
    (List) The Cloud Director site in which to deploy the virtual data center (VDC). Nested schema for director_site:
    edges Sequence[GetVmaasVdcEdge]
    (List) The VMware NSX-T networking edges deployed on the virtual data center (VDC). NSX-T edges are used for bridging virtualization networking to the physical public-internet and IBM private networking.

    • Constraints: The maximum length is 128 items. The minimum length is 0 items. Nested schema for edges:
    fast_provisioning_enabled bool
    (Boolean) Determines whether this virtual data center has fast provisioning enabled or not.
    href str
    (String) The URL of this virtual data center (VDC).
    id str
    (String) A unique ID for an IBM Transit Gateway.
    name str
    (String) A human readable ID for the virtual data center (VDC).
    ordered_at str
    (String) The time that the virtual data center (VDC) is ordered.
    org_href str
    (String) The URL of the organization that owns the VDC.
    org_name str
    (String) The name of the VMware Cloud Director organization that contains this virtual data center (VDC). VMware Cloud Director organizations are used to create strong boundaries between VDCs. There is a complete isolation of user administration, networking, workloads, and VMware Cloud Director catalogs between different Director organizations.
    provisioned_at str
    (String) The time that the virtual data center (VDC) is provisioned and available to use.
    ram float
    (Integer) The RAM usage limit on the virtual data center (VDC) in GB (1024^3 bytes). Supported for VDCs deployed on a multitenant Cloud Director site. This property is applicable when the resource pool type is reserved.

    • Constraints: The maximum value is 40960. The minimum value is 0.
    rhel_byol bool
    (Boolean) Indicates if the RHEL VMs will be using the license from IBM or the customer will use their own license (BYOL).
    status str
    (String) Determines the state of the virtual data center.

    • Constraints: Allowable values are: creating, ready_to_use, modifying, deleting, deleted, failed.
    status_reasons Sequence[GetVmaasVdcStatusReason]
    (List) Information about why the request to create the virtual data center (VDC) cannot be completed.

    • Constraints: The maximum length is 128 items. The minimum length is 0 items. Nested schema for status_reasons:
    type str
    (String) Determines whether this virtual data center is in a single-tenant or multitenant Cloud Director site.

    • Constraints: Allowable values are: single_tenant, multitenant.
    vmaas_vdc_id str
    windows_byol bool
    (Boolean) Indicates if the Microsoft Windows VMs will be using the license from IBM or the customer will use their own license (BYOL).
    accept_language str
    cpu Number
    (Integer) The vCPU usage limit on the virtual data center (VDC). Supported for VDCs deployed on a multitenant Cloud Director site. This property is applicable when the resource pool type is reserved.

    • Constraints: The maximum value is 2000. The minimum value is 0.
    crn String
    (String) A unique ID for the virtual data center (VDC) in IBM Cloud.
    deletedAt String
    (String) The time that the virtual data center (VDC) is deleted.
    directorSites List<Property Map>
    (List) The Cloud Director site in which to deploy the virtual data center (VDC). Nested schema for director_site:
    edges List<Property Map>
    (List) The VMware NSX-T networking edges deployed on the virtual data center (VDC). NSX-T edges are used for bridging virtualization networking to the physical public-internet and IBM private networking.

    • Constraints: The maximum length is 128 items. The minimum length is 0 items. Nested schema for edges:
    fastProvisioningEnabled Boolean
    (Boolean) Determines whether this virtual data center has fast provisioning enabled or not.
    href String
    (String) The URL of this virtual data center (VDC).
    id String
    (String) A unique ID for an IBM Transit Gateway.
    name String
    (String) A human readable ID for the virtual data center (VDC).
    orderedAt String
    (String) The time that the virtual data center (VDC) is ordered.
    orgHref String
    (String) The URL of the organization that owns the VDC.
    orgName String
    (String) The name of the VMware Cloud Director organization that contains this virtual data center (VDC). VMware Cloud Director organizations are used to create strong boundaries between VDCs. There is a complete isolation of user administration, networking, workloads, and VMware Cloud Director catalogs between different Director organizations.
    provisionedAt String
    (String) The time that the virtual data center (VDC) is provisioned and available to use.
    ram Number
    (Integer) The RAM usage limit on the virtual data center (VDC) in GB (1024^3 bytes). Supported for VDCs deployed on a multitenant Cloud Director site. This property is applicable when the resource pool type is reserved.

    • Constraints: The maximum value is 40960. The minimum value is 0.
    rhelByol Boolean
    (Boolean) Indicates if the RHEL VMs will be using the license from IBM or the customer will use their own license (BYOL).
    status String
    (String) Determines the state of the virtual data center.

    • Constraints: Allowable values are: creating, ready_to_use, modifying, deleting, deleted, failed.
    statusReasons List<Property Map>
    (List) Information about why the request to create the virtual data center (VDC) cannot be completed.

    • Constraints: The maximum length is 128 items. The minimum length is 0 items. Nested schema for status_reasons:
    type String
    (String) Determines whether this virtual data center is in a single-tenant or multitenant Cloud Director site.

    • Constraints: Allowable values are: single_tenant, multitenant.
    vmaasVdcId String
    windowsByol Boolean
    (Boolean) Indicates if the Microsoft Windows VMs will be using the license from IBM or the customer will use their own license (BYOL).
    acceptLanguage String

    Supporting Types

    GetVmaasVdcDirectorSite

    Id string
    (String) A unique ID for an IBM Transit Gateway.
    Pvdcs List<GetVmaasVdcDirectorSitePvdc>
    (List) The resource pool within the Director Site in which to deploy the virtual data center (VDC). Nested schema for pvdc:
    Url string
    (String) The URL of the VMware Cloud Director tenant portal where this virtual data center (VDC) can be managed.
    Id string
    (String) A unique ID for an IBM Transit Gateway.
    Pvdcs []GetVmaasVdcDirectorSitePvdc
    (List) The resource pool within the Director Site in which to deploy the virtual data center (VDC). Nested schema for pvdc:
    Url string
    (String) The URL of the VMware Cloud Director tenant portal where this virtual data center (VDC) can be managed.
    id String
    (String) A unique ID for an IBM Transit Gateway.
    pvdcs List<GetVmaasVdcDirectorSitePvdc>
    (List) The resource pool within the Director Site in which to deploy the virtual data center (VDC). Nested schema for pvdc:
    url String
    (String) The URL of the VMware Cloud Director tenant portal where this virtual data center (VDC) can be managed.
    id string
    (String) A unique ID for an IBM Transit Gateway.
    pvdcs GetVmaasVdcDirectorSitePvdc[]
    (List) The resource pool within the Director Site in which to deploy the virtual data center (VDC). Nested schema for pvdc:
    url string
    (String) The URL of the VMware Cloud Director tenant portal where this virtual data center (VDC) can be managed.
    id str
    (String) A unique ID for an IBM Transit Gateway.
    pvdcs Sequence[GetVmaasVdcDirectorSitePvdc]
    (List) The resource pool within the Director Site in which to deploy the virtual data center (VDC). Nested schema for pvdc:
    url str
    (String) The URL of the VMware Cloud Director tenant portal where this virtual data center (VDC) can be managed.
    id String
    (String) A unique ID for an IBM Transit Gateway.
    pvdcs List<Property Map>
    (List) The resource pool within the Director Site in which to deploy the virtual data center (VDC). Nested schema for pvdc:
    url String
    (String) The URL of the VMware Cloud Director tenant portal where this virtual data center (VDC) can be managed.

    GetVmaasVdcDirectorSitePvdc

    Id string
    (String) A unique ID for an IBM Transit Gateway.
    ProviderTypes List<GetVmaasVdcDirectorSitePvdcProviderType>
    (List) Determines how resources are made available to the virtual data center (VDC). Required for VDCs deployed on a multitenant Cloud Director site. Nested schema for provider_type:
    Id string
    (String) A unique ID for an IBM Transit Gateway.
    ProviderTypes []GetVmaasVdcDirectorSitePvdcProviderType
    (List) Determines how resources are made available to the virtual data center (VDC). Required for VDCs deployed on a multitenant Cloud Director site. Nested schema for provider_type:
    id String
    (String) A unique ID for an IBM Transit Gateway.
    providerTypes List<GetVmaasVdcDirectorSitePvdcProviderType>
    (List) Determines how resources are made available to the virtual data center (VDC). Required for VDCs deployed on a multitenant Cloud Director site. Nested schema for provider_type:
    id string
    (String) A unique ID for an IBM Transit Gateway.
    providerTypes GetVmaasVdcDirectorSitePvdcProviderType[]
    (List) Determines how resources are made available to the virtual data center (VDC). Required for VDCs deployed on a multitenant Cloud Director site. Nested schema for provider_type:
    id str
    (String) A unique ID for an IBM Transit Gateway.
    provider_types Sequence[GetVmaasVdcDirectorSitePvdcProviderType]
    (List) Determines how resources are made available to the virtual data center (VDC). Required for VDCs deployed on a multitenant Cloud Director site. Nested schema for provider_type:
    id String
    (String) A unique ID for an IBM Transit Gateway.
    providerTypes List<Property Map>
    (List) Determines how resources are made available to the virtual data center (VDC). Required for VDCs deployed on a multitenant Cloud Director site. Nested schema for provider_type:

    GetVmaasVdcDirectorSitePvdcProviderType

    Name string
    (String) A human readable ID for the virtual data center (VDC).
    Name string
    (String) A human readable ID for the virtual data center (VDC).
    name String
    (String) A human readable ID for the virtual data center (VDC).
    name string
    (String) A human readable ID for the virtual data center (VDC).
    name str
    (String) A human readable ID for the virtual data center (VDC).
    name String
    (String) A human readable ID for the virtual data center (VDC).

    GetVmaasVdcEdge

    Id string
    (String) A unique ID for an IBM Transit Gateway.
    PrivateIps List<string>
    (List) The private IP addresses assigned to the edge.

    • Constraints: The maximum length is 128 items. The minimum length is 0 items.
    PrivateOnly bool
    (Boolean) Indicates whether the edge is private only. The default value is True for a private Cloud Director site and False for a public Cloud Director site.
    PublicIps List<string>
    (List) The public IP addresses assigned to the edge.

    • Constraints: The maximum length is 256 items. The minimum length is 0 items.
    Size string
    (String) The size of the edge.The size can be specified only for performance edges. Larger sizes require more capacity from the Cloud Director site in which the virtual data center (VDC) was created to be deployed.

    • Constraints: Allowable values are: medium, large, extra_large.
    Status string
    (String) Determines the state of the virtual data center.

    • Constraints: Allowable values are: creating, ready_to_use, modifying, deleting, deleted, failed.
    TransitGateways List<GetVmaasVdcEdgeTransitGateway>
    (List) Connected IBM Transit Gateways.

    • Constraints: The maximum length is 128 items. The minimum length is 0 items. Nested schema for transit_gateways:
    Type string
    (String) Determines whether this virtual data center is in a single-tenant or multitenant Cloud Director site.

    • Constraints: Allowable values are: single_tenant, multitenant.
    Version string
    (String) The edge version.
    Id string
    (String) A unique ID for an IBM Transit Gateway.
    PrivateIps []string
    (List) The private IP addresses assigned to the edge.

    • Constraints: The maximum length is 128 items. The minimum length is 0 items.
    PrivateOnly bool
    (Boolean) Indicates whether the edge is private only. The default value is True for a private Cloud Director site and False for a public Cloud Director site.
    PublicIps []string
    (List) The public IP addresses assigned to the edge.

    • Constraints: The maximum length is 256 items. The minimum length is 0 items.
    Size string
    (String) The size of the edge.The size can be specified only for performance edges. Larger sizes require more capacity from the Cloud Director site in which the virtual data center (VDC) was created to be deployed.

    • Constraints: Allowable values are: medium, large, extra_large.
    Status string
    (String) Determines the state of the virtual data center.

    • Constraints: Allowable values are: creating, ready_to_use, modifying, deleting, deleted, failed.
    TransitGateways []GetVmaasVdcEdgeTransitGateway
    (List) Connected IBM Transit Gateways.

    • Constraints: The maximum length is 128 items. The minimum length is 0 items. Nested schema for transit_gateways:
    Type string
    (String) Determines whether this virtual data center is in a single-tenant or multitenant Cloud Director site.

    • Constraints: Allowable values are: single_tenant, multitenant.
    Version string
    (String) The edge version.
    id String
    (String) A unique ID for an IBM Transit Gateway.
    privateIps List<String>
    (List) The private IP addresses assigned to the edge.

    • Constraints: The maximum length is 128 items. The minimum length is 0 items.
    privateOnly Boolean
    (Boolean) Indicates whether the edge is private only. The default value is True for a private Cloud Director site and False for a public Cloud Director site.
    publicIps List<String>
    (List) The public IP addresses assigned to the edge.

    • Constraints: The maximum length is 256 items. The minimum length is 0 items.
    size String
    (String) The size of the edge.The size can be specified only for performance edges. Larger sizes require more capacity from the Cloud Director site in which the virtual data center (VDC) was created to be deployed.

    • Constraints: Allowable values are: medium, large, extra_large.
    status String
    (String) Determines the state of the virtual data center.

    • Constraints: Allowable values are: creating, ready_to_use, modifying, deleting, deleted, failed.
    transitGateways List<GetVmaasVdcEdgeTransitGateway>
    (List) Connected IBM Transit Gateways.

    • Constraints: The maximum length is 128 items. The minimum length is 0 items. Nested schema for transit_gateways:
    type String
    (String) Determines whether this virtual data center is in a single-tenant or multitenant Cloud Director site.

    • Constraints: Allowable values are: single_tenant, multitenant.
    version String
    (String) The edge version.
    id string
    (String) A unique ID for an IBM Transit Gateway.
    privateIps string[]
    (List) The private IP addresses assigned to the edge.

    • Constraints: The maximum length is 128 items. The minimum length is 0 items.
    privateOnly boolean
    (Boolean) Indicates whether the edge is private only. The default value is True for a private Cloud Director site and False for a public Cloud Director site.
    publicIps string[]
    (List) The public IP addresses assigned to the edge.

    • Constraints: The maximum length is 256 items. The minimum length is 0 items.
    size string
    (String) The size of the edge.The size can be specified only for performance edges. Larger sizes require more capacity from the Cloud Director site in which the virtual data center (VDC) was created to be deployed.

    • Constraints: Allowable values are: medium, large, extra_large.
    status string
    (String) Determines the state of the virtual data center.

    • Constraints: Allowable values are: creating, ready_to_use, modifying, deleting, deleted, failed.
    transitGateways GetVmaasVdcEdgeTransitGateway[]
    (List) Connected IBM Transit Gateways.

    • Constraints: The maximum length is 128 items. The minimum length is 0 items. Nested schema for transit_gateways:
    type string
    (String) Determines whether this virtual data center is in a single-tenant or multitenant Cloud Director site.

    • Constraints: Allowable values are: single_tenant, multitenant.
    version string
    (String) The edge version.
    id str
    (String) A unique ID for an IBM Transit Gateway.
    private_ips Sequence[str]
    (List) The private IP addresses assigned to the edge.

    • Constraints: The maximum length is 128 items. The minimum length is 0 items.
    private_only bool
    (Boolean) Indicates whether the edge is private only. The default value is True for a private Cloud Director site and False for a public Cloud Director site.
    public_ips Sequence[str]
    (List) The public IP addresses assigned to the edge.

    • Constraints: The maximum length is 256 items. The minimum length is 0 items.
    size str
    (String) The size of the edge.The size can be specified only for performance edges. Larger sizes require more capacity from the Cloud Director site in which the virtual data center (VDC) was created to be deployed.

    • Constraints: Allowable values are: medium, large, extra_large.
    status str
    (String) Determines the state of the virtual data center.

    • Constraints: Allowable values are: creating, ready_to_use, modifying, deleting, deleted, failed.
    transit_gateways Sequence[GetVmaasVdcEdgeTransitGateway]
    (List) Connected IBM Transit Gateways.

    • Constraints: The maximum length is 128 items. The minimum length is 0 items. Nested schema for transit_gateways:
    type str
    (String) Determines whether this virtual data center is in a single-tenant or multitenant Cloud Director site.

    • Constraints: Allowable values are: single_tenant, multitenant.
    version str
    (String) The edge version.
    id String
    (String) A unique ID for an IBM Transit Gateway.
    privateIps List<String>
    (List) The private IP addresses assigned to the edge.

    • Constraints: The maximum length is 128 items. The minimum length is 0 items.
    privateOnly Boolean
    (Boolean) Indicates whether the edge is private only. The default value is True for a private Cloud Director site and False for a public Cloud Director site.
    publicIps List<String>
    (List) The public IP addresses assigned to the edge.

    • Constraints: The maximum length is 256 items. The minimum length is 0 items.
    size String
    (String) The size of the edge.The size can be specified only for performance edges. Larger sizes require more capacity from the Cloud Director site in which the virtual data center (VDC) was created to be deployed.

    • Constraints: Allowable values are: medium, large, extra_large.
    status String
    (String) Determines the state of the virtual data center.

    • Constraints: Allowable values are: creating, ready_to_use, modifying, deleting, deleted, failed.
    transitGateways List<Property Map>
    (List) Connected IBM Transit Gateways.

    • Constraints: The maximum length is 128 items. The minimum length is 0 items. Nested schema for transit_gateways:
    type String
    (String) Determines whether this virtual data center is in a single-tenant or multitenant Cloud Director site.

    • Constraints: Allowable values are: single_tenant, multitenant.
    version String
    (String) The edge version.

    GetVmaasVdcEdgeTransitGateway

    Connections List<GetVmaasVdcEdgeTransitGatewayConnection>
    (List) IBM Transit Gateway connections.

    • Constraints: The maximum length is 128 items. The minimum length is 1 item. Nested schema for connections:
    Id string
    (String) A unique ID for an IBM Transit Gateway.
    Region string
    (String) The region where the IBM Transit Gateway is deployed.
    Status string
    (String) Determines the state of the virtual data center.

    • Constraints: Allowable values are: creating, ready_to_use, modifying, deleting, deleted, failed.
    Connections []GetVmaasVdcEdgeTransitGatewayConnection
    (List) IBM Transit Gateway connections.

    • Constraints: The maximum length is 128 items. The minimum length is 1 item. Nested schema for connections:
    Id string
    (String) A unique ID for an IBM Transit Gateway.
    Region string
    (String) The region where the IBM Transit Gateway is deployed.
    Status string
    (String) Determines the state of the virtual data center.

    • Constraints: Allowable values are: creating, ready_to_use, modifying, deleting, deleted, failed.
    connections List<GetVmaasVdcEdgeTransitGatewayConnection>
    (List) IBM Transit Gateway connections.

    • Constraints: The maximum length is 128 items. The minimum length is 1 item. Nested schema for connections:
    id String
    (String) A unique ID for an IBM Transit Gateway.
    region String
    (String) The region where the IBM Transit Gateway is deployed.
    status String
    (String) Determines the state of the virtual data center.

    • Constraints: Allowable values are: creating, ready_to_use, modifying, deleting, deleted, failed.
    connections GetVmaasVdcEdgeTransitGatewayConnection[]
    (List) IBM Transit Gateway connections.

    • Constraints: The maximum length is 128 items. The minimum length is 1 item. Nested schema for connections:
    id string
    (String) A unique ID for an IBM Transit Gateway.
    region string
    (String) The region where the IBM Transit Gateway is deployed.
    status string
    (String) Determines the state of the virtual data center.

    • Constraints: Allowable values are: creating, ready_to_use, modifying, deleting, deleted, failed.
    connections Sequence[GetVmaasVdcEdgeTransitGatewayConnection]
    (List) IBM Transit Gateway connections.

    • Constraints: The maximum length is 128 items. The minimum length is 1 item. Nested schema for connections:
    id str
    (String) A unique ID for an IBM Transit Gateway.
    region str
    (String) The region where the IBM Transit Gateway is deployed.
    status str
    (String) Determines the state of the virtual data center.

    • Constraints: Allowable values are: creating, ready_to_use, modifying, deleting, deleted, failed.
    connections List<Property Map>
    (List) IBM Transit Gateway connections.

    • Constraints: The maximum length is 128 items. The minimum length is 1 item. Nested schema for connections:
    id String
    (String) A unique ID for an IBM Transit Gateway.
    region String
    (String) The region where the IBM Transit Gateway is deployed.
    status String
    (String) Determines the state of the virtual data center.

    • Constraints: Allowable values are: creating, ready_to_use, modifying, deleting, deleted, failed.

    GetVmaasVdcEdgeTransitGatewayConnection

    BaseNetworkType string
    (String) The type of the network that the unbound GRE tunnel is targeting. Only "classic" is supported.
    LocalBgpAsn double
    (Integer) Local network BGP ASN for the connection.

    • Constraints: The maximum value is 4294967294. The minimum value is 1.
    LocalGatewayIp string
    (String) Local gateway IP address for the connection.
    LocalTunnelIp string
    (String) Local tunnel IP address for the connection.
    Name string
    (String) A human readable ID for the virtual data center (VDC).
    NetworkAccountId string
    (String) The ID of the account that owns the connected network.
    NetworkType string
    (String) The type of the network that is connected through this connection. Only "unbound_gre_tunnel" is supported.
    RemoteBgpAsn double
    (Integer) Remote network BGP ASN for the connection.

    • Constraints: The maximum value is 4294967294. The minimum value is 1.
    RemoteGatewayIp string
    (String) Remote gateway IP address for the connection.
    RemoteTunnelIp string
    (String) Remote tunnel IP address for the connection.
    Status string
    (String) Determines the state of the virtual data center.

    • Constraints: Allowable values are: creating, ready_to_use, modifying, deleting, deleted, failed.
    TransitGatewayConnectionName string
    (String) The user-defined name of the connection created on the IBM Transit Gateway.
    Zone string
    (String) The location of the connection.
    BaseNetworkType string
    (String) The type of the network that the unbound GRE tunnel is targeting. Only "classic" is supported.
    LocalBgpAsn float64
    (Integer) Local network BGP ASN for the connection.

    • Constraints: The maximum value is 4294967294. The minimum value is 1.
    LocalGatewayIp string
    (String) Local gateway IP address for the connection.
    LocalTunnelIp string
    (String) Local tunnel IP address for the connection.
    Name string
    (String) A human readable ID for the virtual data center (VDC).
    NetworkAccountId string
    (String) The ID of the account that owns the connected network.
    NetworkType string
    (String) The type of the network that is connected through this connection. Only "unbound_gre_tunnel" is supported.
    RemoteBgpAsn float64
    (Integer) Remote network BGP ASN for the connection.

    • Constraints: The maximum value is 4294967294. The minimum value is 1.
    RemoteGatewayIp string
    (String) Remote gateway IP address for the connection.
    RemoteTunnelIp string
    (String) Remote tunnel IP address for the connection.
    Status string
    (String) Determines the state of the virtual data center.

    • Constraints: Allowable values are: creating, ready_to_use, modifying, deleting, deleted, failed.
    TransitGatewayConnectionName string
    (String) The user-defined name of the connection created on the IBM Transit Gateway.
    Zone string
    (String) The location of the connection.
    baseNetworkType String
    (String) The type of the network that the unbound GRE tunnel is targeting. Only "classic" is supported.
    localBgpAsn Double
    (Integer) Local network BGP ASN for the connection.

    • Constraints: The maximum value is 4294967294. The minimum value is 1.
    localGatewayIp String
    (String) Local gateway IP address for the connection.
    localTunnelIp String
    (String) Local tunnel IP address for the connection.
    name String
    (String) A human readable ID for the virtual data center (VDC).
    networkAccountId String
    (String) The ID of the account that owns the connected network.
    networkType String
    (String) The type of the network that is connected through this connection. Only "unbound_gre_tunnel" is supported.
    remoteBgpAsn Double
    (Integer) Remote network BGP ASN for the connection.

    • Constraints: The maximum value is 4294967294. The minimum value is 1.
    remoteGatewayIp String
    (String) Remote gateway IP address for the connection.
    remoteTunnelIp String
    (String) Remote tunnel IP address for the connection.
    status String
    (String) Determines the state of the virtual data center.

    • Constraints: Allowable values are: creating, ready_to_use, modifying, deleting, deleted, failed.
    transitGatewayConnectionName String
    (String) The user-defined name of the connection created on the IBM Transit Gateway.
    zone String
    (String) The location of the connection.
    baseNetworkType string
    (String) The type of the network that the unbound GRE tunnel is targeting. Only "classic" is supported.
    localBgpAsn number
    (Integer) Local network BGP ASN for the connection.

    • Constraints: The maximum value is 4294967294. The minimum value is 1.
    localGatewayIp string
    (String) Local gateway IP address for the connection.
    localTunnelIp string
    (String) Local tunnel IP address for the connection.
    name string
    (String) A human readable ID for the virtual data center (VDC).
    networkAccountId string
    (String) The ID of the account that owns the connected network.
    networkType string
    (String) The type of the network that is connected through this connection. Only "unbound_gre_tunnel" is supported.
    remoteBgpAsn number
    (Integer) Remote network BGP ASN for the connection.

    • Constraints: The maximum value is 4294967294. The minimum value is 1.
    remoteGatewayIp string
    (String) Remote gateway IP address for the connection.
    remoteTunnelIp string
    (String) Remote tunnel IP address for the connection.
    status string
    (String) Determines the state of the virtual data center.

    • Constraints: Allowable values are: creating, ready_to_use, modifying, deleting, deleted, failed.
    transitGatewayConnectionName string
    (String) The user-defined name of the connection created on the IBM Transit Gateway.
    zone string
    (String) The location of the connection.
    base_network_type str
    (String) The type of the network that the unbound GRE tunnel is targeting. Only "classic" is supported.
    local_bgp_asn float
    (Integer) Local network BGP ASN for the connection.

    • Constraints: The maximum value is 4294967294. The minimum value is 1.
    local_gateway_ip str
    (String) Local gateway IP address for the connection.
    local_tunnel_ip str
    (String) Local tunnel IP address for the connection.
    name str
    (String) A human readable ID for the virtual data center (VDC).
    network_account_id str
    (String) The ID of the account that owns the connected network.
    network_type str
    (String) The type of the network that is connected through this connection. Only "unbound_gre_tunnel" is supported.
    remote_bgp_asn float
    (Integer) Remote network BGP ASN for the connection.

    • Constraints: The maximum value is 4294967294. The minimum value is 1.
    remote_gateway_ip str
    (String) Remote gateway IP address for the connection.
    remote_tunnel_ip str
    (String) Remote tunnel IP address for the connection.
    status str
    (String) Determines the state of the virtual data center.

    • Constraints: Allowable values are: creating, ready_to_use, modifying, deleting, deleted, failed.
    transit_gateway_connection_name str
    (String) The user-defined name of the connection created on the IBM Transit Gateway.
    zone str
    (String) The location of the connection.
    baseNetworkType String
    (String) The type of the network that the unbound GRE tunnel is targeting. Only "classic" is supported.
    localBgpAsn Number
    (Integer) Local network BGP ASN for the connection.

    • Constraints: The maximum value is 4294967294. The minimum value is 1.
    localGatewayIp String
    (String) Local gateway IP address for the connection.
    localTunnelIp String
    (String) Local tunnel IP address for the connection.
    name String
    (String) A human readable ID for the virtual data center (VDC).
    networkAccountId String
    (String) The ID of the account that owns the connected network.
    networkType String
    (String) The type of the network that is connected through this connection. Only "unbound_gre_tunnel" is supported.
    remoteBgpAsn Number
    (Integer) Remote network BGP ASN for the connection.

    • Constraints: The maximum value is 4294967294. The minimum value is 1.
    remoteGatewayIp String
    (String) Remote gateway IP address for the connection.
    remoteTunnelIp String
    (String) Remote tunnel IP address for the connection.
    status String
    (String) Determines the state of the virtual data center.

    • Constraints: Allowable values are: creating, ready_to_use, modifying, deleting, deleted, failed.
    transitGatewayConnectionName String
    (String) The user-defined name of the connection created on the IBM Transit Gateway.
    zone String
    (String) The location of the connection.

    GetVmaasVdcStatusReason

    Code string
    (String) An error code specific to the error encountered.

    • Constraints: Allowable values are: insufficent_cpu, insufficent_ram, insufficent_cpu_and_ram.
    Message string
    (String) A message that describes why the error ocurred.
    MoreInfo string
    (String) A URL that links to a page with more information about this error.
    Code string
    (String) An error code specific to the error encountered.

    • Constraints: Allowable values are: insufficent_cpu, insufficent_ram, insufficent_cpu_and_ram.
    Message string
    (String) A message that describes why the error ocurred.
    MoreInfo string
    (String) A URL that links to a page with more information about this error.
    code String
    (String) An error code specific to the error encountered.

    • Constraints: Allowable values are: insufficent_cpu, insufficent_ram, insufficent_cpu_and_ram.
    message String
    (String) A message that describes why the error ocurred.
    moreInfo String
    (String) A URL that links to a page with more information about this error.
    code string
    (String) An error code specific to the error encountered.

    • Constraints: Allowable values are: insufficent_cpu, insufficent_ram, insufficent_cpu_and_ram.
    message string
    (String) A message that describes why the error ocurred.
    moreInfo string
    (String) A URL that links to a page with more information about this error.
    code str
    (String) An error code specific to the error encountered.

    • Constraints: Allowable values are: insufficent_cpu, insufficent_ram, insufficent_cpu_and_ram.
    message str
    (String) A message that describes why the error ocurred.
    more_info str
    (String) A URL that links to a page with more information about this error.
    code String
    (String) An error code specific to the error encountered.

    • Constraints: Allowable values are: insufficent_cpu, insufficent_ram, insufficent_cpu_and_ram.
    message String
    (String) A message that describes why the error ocurred.
    moreInfo String
    (String) A URL that links to a page with more information about this error.

    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