1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Ocvp
  5. getSddcs
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.Ocvp.getSddcs

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    This data source provides the list of Sddcs in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service.

    Lists the SDDCs in the specified compartment. The list can be filtered by display name or availability domain.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testSddcs = oci.Ocvp.getSddcs({
        compartmentId: _var.compartment_id,
        computeAvailabilityDomain: _var.sddc_compute_availability_domain,
        displayName: _var.sddc_display_name,
        state: _var.sddc_state,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_sddcs = oci.Ocvp.get_sddcs(compartment_id=var["compartment_id"],
        compute_availability_domain=var["sddc_compute_availability_domain"],
        display_name=var["sddc_display_name"],
        state=var["sddc_state"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Ocvp"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Ocvp.GetSddcs(ctx, &ocvp.GetSddcsArgs{
    			CompartmentId:             _var.Compartment_id,
    			ComputeAvailabilityDomain: pulumi.StringRef(_var.Sddc_compute_availability_domain),
    			DisplayName:               pulumi.StringRef(_var.Sddc_display_name),
    			State:                     pulumi.StringRef(_var.Sddc_state),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testSddcs = Oci.Ocvp.GetSddcs.Invoke(new()
        {
            CompartmentId = @var.Compartment_id,
            ComputeAvailabilityDomain = @var.Sddc_compute_availability_domain,
            DisplayName = @var.Sddc_display_name,
            State = @var.Sddc_state,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Ocvp.OcvpFunctions;
    import com.pulumi.oci.Ocvp.inputs.GetSddcsArgs;
    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 testSddcs = OcvpFunctions.getSddcs(GetSddcsArgs.builder()
                .compartmentId(var_.compartment_id())
                .computeAvailabilityDomain(var_.sddc_compute_availability_domain())
                .displayName(var_.sddc_display_name())
                .state(var_.sddc_state())
                .build());
    
        }
    }
    
    variables:
      testSddcs:
        fn::invoke:
          Function: oci:Ocvp:getSddcs
          Arguments:
            compartmentId: ${var.compartment_id}
            computeAvailabilityDomain: ${var.sddc_compute_availability_domain}
            displayName: ${var.sddc_display_name}
            state: ${var.sddc_state}
    

    Using getSddcs

    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 getSddcs(args: GetSddcsArgs, opts?: InvokeOptions): Promise<GetSddcsResult>
    function getSddcsOutput(args: GetSddcsOutputArgs, opts?: InvokeOptions): Output<GetSddcsResult>
    def get_sddcs(compartment_id: Optional[str] = None,
                  compute_availability_domain: Optional[str] = None,
                  display_name: Optional[str] = None,
                  filters: Optional[Sequence[_ocvp.GetSddcsFilter]] = None,
                  state: Optional[str] = None,
                  opts: Optional[InvokeOptions] = None) -> GetSddcsResult
    def get_sddcs_output(compartment_id: Optional[pulumi.Input[str]] = None,
                  compute_availability_domain: Optional[pulumi.Input[str]] = None,
                  display_name: Optional[pulumi.Input[str]] = None,
                  filters: Optional[pulumi.Input[Sequence[pulumi.Input[_ocvp.GetSddcsFilterArgs]]]] = None,
                  state: Optional[pulumi.Input[str]] = None,
                  opts: Optional[InvokeOptions] = None) -> Output[GetSddcsResult]
    func GetSddcs(ctx *Context, args *GetSddcsArgs, opts ...InvokeOption) (*GetSddcsResult, error)
    func GetSddcsOutput(ctx *Context, args *GetSddcsOutputArgs, opts ...InvokeOption) GetSddcsResultOutput

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

    public static class GetSddcs 
    {
        public static Task<GetSddcsResult> InvokeAsync(GetSddcsArgs args, InvokeOptions? opts = null)
        public static Output<GetSddcsResult> Invoke(GetSddcsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetSddcsResult> getSddcs(GetSddcsArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:Ocvp/getSddcs:getSddcs
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment.
    ComputeAvailabilityDomain string
    The name of the availability domain that the Compute instances are running in. Example: Uocm:PHX-AD-1
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters List<GetSddcsFilter>
    State string
    The lifecycle state of the resource.
    CompartmentId string
    The OCID of the compartment.
    ComputeAvailabilityDomain string
    The name of the availability domain that the Compute instances are running in. Example: Uocm:PHX-AD-1
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters []GetSddcsFilter
    State string
    The lifecycle state of the resource.
    compartmentId String
    The OCID of the compartment.
    computeAvailabilityDomain String
    The name of the availability domain that the Compute instances are running in. Example: Uocm:PHX-AD-1
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<GetSddcsFilter>
    state String
    The lifecycle state of the resource.
    compartmentId string
    The OCID of the compartment.
    computeAvailabilityDomain string
    The name of the availability domain that the Compute instances are running in. Example: Uocm:PHX-AD-1
    displayName string
    A filter to return only resources that match the given display name exactly.
    filters GetSddcsFilter[]
    state string
    The lifecycle state of the resource.
    compartment_id str
    The OCID of the compartment.
    compute_availability_domain str
    The name of the availability domain that the Compute instances are running in. Example: Uocm:PHX-AD-1
    display_name str
    A filter to return only resources that match the given display name exactly.
    filters Sequence[ocvp.GetSddcsFilter]
    state str
    The lifecycle state of the resource.
    compartmentId String
    The OCID of the compartment.
    computeAvailabilityDomain String
    The name of the availability domain that the Compute instances are running in. Example: Uocm:PHX-AD-1
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<Property Map>
    state String
    The lifecycle state of the resource.

    getSddcs Result

    The following output properties are available:

    CompartmentId string
    The OCID of the compartment that contains the SDDC.
    Id string
    The provider-assigned unique ID for this managed resource.
    SddcCollections List<GetSddcsSddcCollection>
    The list of sddc_collection.
    ComputeAvailabilityDomain string
    (Deprecated) The availability domain the ESXi hosts are running in. For Multi-AD SDDC, it is multi-AD. Example: Uocm:PHX-AD-1, multi-AD.
    DisplayName string
    A descriptive name for the SDDC. It must be unique, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. Avoid entering confidential information.
    Filters List<GetSddcsFilter>
    State string
    The current state of the SDDC.
    CompartmentId string
    The OCID of the compartment that contains the SDDC.
    Id string
    The provider-assigned unique ID for this managed resource.
    SddcCollections []GetSddcsSddcCollection
    The list of sddc_collection.
    ComputeAvailabilityDomain string
    (Deprecated) The availability domain the ESXi hosts are running in. For Multi-AD SDDC, it is multi-AD. Example: Uocm:PHX-AD-1, multi-AD.
    DisplayName string
    A descriptive name for the SDDC. It must be unique, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. Avoid entering confidential information.
    Filters []GetSddcsFilter
    State string
    The current state of the SDDC.
    compartmentId String
    The OCID of the compartment that contains the SDDC.
    id String
    The provider-assigned unique ID for this managed resource.
    sddcCollections List<GetSddcsSddcCollection>
    The list of sddc_collection.
    computeAvailabilityDomain String
    (Deprecated) The availability domain the ESXi hosts are running in. For Multi-AD SDDC, it is multi-AD. Example: Uocm:PHX-AD-1, multi-AD.
    displayName String
    A descriptive name for the SDDC. It must be unique, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. Avoid entering confidential information.
    filters List<GetSddcsFilter>
    state String
    The current state of the SDDC.
    compartmentId string
    The OCID of the compartment that contains the SDDC.
    id string
    The provider-assigned unique ID for this managed resource.
    sddcCollections GetSddcsSddcCollection[]
    The list of sddc_collection.
    computeAvailabilityDomain string
    (Deprecated) The availability domain the ESXi hosts are running in. For Multi-AD SDDC, it is multi-AD. Example: Uocm:PHX-AD-1, multi-AD.
    displayName string
    A descriptive name for the SDDC. It must be unique, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. Avoid entering confidential information.
    filters GetSddcsFilter[]
    state string
    The current state of the SDDC.
    compartment_id str
    The OCID of the compartment that contains the SDDC.
    id str
    The provider-assigned unique ID for this managed resource.
    sddc_collections Sequence[ocvp.GetSddcsSddcCollection]
    The list of sddc_collection.
    compute_availability_domain str
    (Deprecated) The availability domain the ESXi hosts are running in. For Multi-AD SDDC, it is multi-AD. Example: Uocm:PHX-AD-1, multi-AD.
    display_name str
    A descriptive name for the SDDC. It must be unique, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. Avoid entering confidential information.
    filters Sequence[ocvp.GetSddcsFilter]
    state str
    The current state of the SDDC.
    compartmentId String
    The OCID of the compartment that contains the SDDC.
    id String
    The provider-assigned unique ID for this managed resource.
    sddcCollections List<Property Map>
    The list of sddc_collection.
    computeAvailabilityDomain String
    (Deprecated) The availability domain the ESXi hosts are running in. For Multi-AD SDDC, it is multi-AD. Example: Uocm:PHX-AD-1, multi-AD.
    displayName String
    A descriptive name for the SDDC. It must be unique, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. Avoid entering confidential information.
    filters List<Property Map>
    state String
    The current state of the SDDC.

    Supporting Types

    GetSddcsFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetSddcsSddcCollection

    ActualEsxiHostsCount int
    (Deprecated) The number of actual ESXi hosts in the SDDC on the cloud. This attribute will be different when esxi Host is added to an existing SDDC.

    Deprecated: The 'actual_esxi_hosts_count' field has been deprecated. Please use 'initial_configuration' instead.

    CapacityReservationId string

    Deprecated: The 'capacity_reservation_id' field has been deprecated. Please use 'initial_configuration' instead.

    ClustersCount int
    The number of Clusters in the SDDC.
    CompartmentId string
    The OCID of the compartment.
    ComputeAvailabilityDomain string
    The name of the availability domain that the Compute instances are running in. Example: Uocm:PHX-AD-1

    Deprecated: The 'compute_availability_domain' field has been deprecated. Please use 'initial_configuration' instead.

    Datastores List<GetSddcsSddcCollectionDatastore>

    Deprecated: The 'datastores' field has been deprecated. Please use 'initial_configuration' instead.

    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    EsxiHostsCount int
    (Deprecated) The number of ESXi hosts in the SDDC.

    Deprecated: The 'esxi_hosts_count' field has been deprecated. Please use 'initial_configuration' instead.

    EsxiSoftwareVersion string
    In general, this is a specific version of bundled ESXi software supported by Oracle Cloud VMware Solution (see ListSupportedVmwareSoftwareVersions).
    FreeformTags Dictionary<string, object>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    HcxAction string
    HcxFqdn string
    The FQDN for HCX Manager. Example: hcx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
    HcxInitialPassword string

    Deprecated: The 'hcx_initial_password' field has been deprecated. Please use the 'oci_ocvp_retrieve_password' data source instead.

    HcxMode string
    HCX configuration of the SDDC.
    HcxOnPremKey string

    Deprecated: The 'hcx_on_prem_key' field has been deprecated and may be removed in a future version. Do not use this field.

    HcxOnPremLicenses List<GetSddcsSddcCollectionHcxOnPremLicense>
    The activation licenses to use on the on-premises HCX Enterprise appliance you site pair with HCX Manager in your VMware Solution.
    HcxPrivateIpId string
    HcxVlanId string

    Deprecated: The 'hcx_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    Id string
    The OCID of the SDDC.
    InitialConfigurations List<GetSddcsSddcCollectionInitialConfiguration>
    InitialHostOcpuCount double
    (Deprecated) The initial OCPU count of the SDDC's ESXi hosts.

    Deprecated: The 'initial_host_ocpu_count' field has been deprecated. Please use 'initial_configuration' instead.

    InitialHostShapeName string
    (Deprecated) The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.

    Deprecated: The 'initial_host_shape_name' field has been deprecated. Please use 'initial_configuration' instead.

    InitialSku string

    Deprecated: The 'initial_sku' field has been deprecated. Please use 'initial_configuration' instead.

    InstanceDisplayNamePrefix string

    Deprecated: The 'instance_display_name_prefix' field has been deprecated. Please use 'initial_configuration' instead.

    IsHcxEnabled bool
    (Deprecated) Indicates whether HCX is enabled for this SDDC. Deprecated. Please use hcx_mode instead.
    IsHcxEnterpriseEnabled bool
    (Deprecated) Indicates whether HCX Enterprise is enabled for this SDDC. Deprecated. Please use hcx_mode instead.

    Deprecated: The 'is_hcx_enterprise_enabled' field has been deprecated and may be removed in a future version. Do not use this field.

    IsHcxPendingDowngrade bool
    Indicates whether SDDC is pending downgrade from HCX Enterprise to HCX Advanced.
    IsShieldedInstanceEnabled bool
    (Deprecated) Indicates whether shielded instance is enabled at the SDDC level.

    Deprecated: The 'is_shielded_instance_enabled' field has been deprecated. Please use 'initial_configuration' instead.

    IsSingleHostSddc bool
    Indicates whether this SDDC is designated for only single ESXi host.
    NsxEdgeUplink1vlanId string

    Deprecated: The 'nsx_edge_uplink1vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    NsxEdgeUplink2vlanId string

    Deprecated: The 'nsx_edge_uplink2vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    NsxEdgeUplinkIpId string
    NsxEdgeVtepVlanId string

    Deprecated: The 'nsx_edge_vtep_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    NsxManagerFqdn string
    The FQDN for NSX Manager. Example: nsx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
    NsxManagerInitialPassword string

    Deprecated: The 'nsx_manager_initial_password' field has been deprecated. Please use the 'oci_ocvp_retrieve_password' data source instead.

    NsxManagerPrivateIpId string
    NsxManagerUsername string
    The SDDC includes an administrator username and initial password for NSX Manager. You can change this initial username to a different value in NSX Manager.
    NsxOverlaySegmentName string

    Deprecated: The 'nsx_overlay_segment_name' field has been deprecated and may be removed in a future version. Do not use this field.

    NsxVtepVlanId string

    Deprecated: The 'nsx_vtep_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    ProvisioningSubnetId string

    Deprecated: The 'provisioning_subnet_id' field has been deprecated. Please use 'initial_configuration' instead.

    ProvisioningVlanId string

    Deprecated: The 'provisioning_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    RefreshHcxLicenseStatus bool
    ReplicationVlanId string

    Deprecated: The 'replication_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    ReservingHcxOnPremiseLicenseKeys List<string>
    SshAuthorizedKeys string
    State string
    The lifecycle state of the resource.
    TimeCreated string
    The date and time the SDDC was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    TimeHcxBillingCycleEnd string
    TimeHcxLicenseStatusUpdated string
    TimeUpdated string
    The date and time the SDDC was updated, in the format defined by RFC3339.
    UpgradeLicenses List<GetSddcsSddcCollectionUpgradeLicense>

    Deprecated: The 'upgrade_licenses' field has been deprecated. Please use the 'ocvp_cluster_resource' resource instead.

    VcenterFqdn string
    The FQDN for vCenter. Example: vcenter-my-sddc.sddc.us-phoenix-1.oraclecloud.com
    VcenterInitialPassword string

    Deprecated: The 'vcenter_initial_password' field has been deprecated. Please use the 'oci_ocvp_retrieve_password' data source instead.

    VcenterPrivateIpId string
    VcenterUsername string
    VmotionVlanId string

    Deprecated: The 'vmotion_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    VmwareSoftwareVersion string
    In general, this is a specific version of bundled VMware software supported by Oracle Cloud VMware Solution (see ListSupportedVmwareSoftwareVersions).
    VsanVlanId string

    Deprecated: The 'vsan_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    VsphereUpgradeGuide string

    Deprecated: The 'vsphere_upgrade_guide' field has been deprecated and may be removed in a future version. Do not use this field.

    VsphereUpgradeObjects List<GetSddcsSddcCollectionVsphereUpgradeObject>

    Deprecated: The 'vsphere_upgrade_objects' field has been deprecated. Please use the 'ocvp_cluster_resource' resource instead.

    VsphereVlanId string

    Deprecated: The 'vsphere_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    WorkloadNetworkCidr string

    Deprecated: The 'workload_network_cidr' field has been deprecated. Please use 'initial_configuration' instead.

    ActualEsxiHostsCount int
    (Deprecated) The number of actual ESXi hosts in the SDDC on the cloud. This attribute will be different when esxi Host is added to an existing SDDC.

    Deprecated: The 'actual_esxi_hosts_count' field has been deprecated. Please use 'initial_configuration' instead.

    CapacityReservationId string

    Deprecated: The 'capacity_reservation_id' field has been deprecated. Please use 'initial_configuration' instead.

    ClustersCount int
    The number of Clusters in the SDDC.
    CompartmentId string
    The OCID of the compartment.
    ComputeAvailabilityDomain string
    The name of the availability domain that the Compute instances are running in. Example: Uocm:PHX-AD-1

    Deprecated: The 'compute_availability_domain' field has been deprecated. Please use 'initial_configuration' instead.

    Datastores []GetSddcsSddcCollectionDatastore

    Deprecated: The 'datastores' field has been deprecated. Please use 'initial_configuration' instead.

    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    EsxiHostsCount int
    (Deprecated) The number of ESXi hosts in the SDDC.

    Deprecated: The 'esxi_hosts_count' field has been deprecated. Please use 'initial_configuration' instead.

    EsxiSoftwareVersion string
    In general, this is a specific version of bundled ESXi software supported by Oracle Cloud VMware Solution (see ListSupportedVmwareSoftwareVersions).
    FreeformTags map[string]interface{}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    HcxAction string
    HcxFqdn string
    The FQDN for HCX Manager. Example: hcx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
    HcxInitialPassword string

    Deprecated: The 'hcx_initial_password' field has been deprecated. Please use the 'oci_ocvp_retrieve_password' data source instead.

    HcxMode string
    HCX configuration of the SDDC.
    HcxOnPremKey string

    Deprecated: The 'hcx_on_prem_key' field has been deprecated and may be removed in a future version. Do not use this field.

    HcxOnPremLicenses []GetSddcsSddcCollectionHcxOnPremLicense
    The activation licenses to use on the on-premises HCX Enterprise appliance you site pair with HCX Manager in your VMware Solution.
    HcxPrivateIpId string
    HcxVlanId string

    Deprecated: The 'hcx_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    Id string
    The OCID of the SDDC.
    InitialConfigurations []GetSddcsSddcCollectionInitialConfiguration
    InitialHostOcpuCount float64
    (Deprecated) The initial OCPU count of the SDDC's ESXi hosts.

    Deprecated: The 'initial_host_ocpu_count' field has been deprecated. Please use 'initial_configuration' instead.

    InitialHostShapeName string
    (Deprecated) The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.

    Deprecated: The 'initial_host_shape_name' field has been deprecated. Please use 'initial_configuration' instead.

    InitialSku string

    Deprecated: The 'initial_sku' field has been deprecated. Please use 'initial_configuration' instead.

    InstanceDisplayNamePrefix string

    Deprecated: The 'instance_display_name_prefix' field has been deprecated. Please use 'initial_configuration' instead.

    IsHcxEnabled bool
    (Deprecated) Indicates whether HCX is enabled for this SDDC. Deprecated. Please use hcx_mode instead.
    IsHcxEnterpriseEnabled bool
    (Deprecated) Indicates whether HCX Enterprise is enabled for this SDDC. Deprecated. Please use hcx_mode instead.

    Deprecated: The 'is_hcx_enterprise_enabled' field has been deprecated and may be removed in a future version. Do not use this field.

    IsHcxPendingDowngrade bool
    Indicates whether SDDC is pending downgrade from HCX Enterprise to HCX Advanced.
    IsShieldedInstanceEnabled bool
    (Deprecated) Indicates whether shielded instance is enabled at the SDDC level.

    Deprecated: The 'is_shielded_instance_enabled' field has been deprecated. Please use 'initial_configuration' instead.

    IsSingleHostSddc bool
    Indicates whether this SDDC is designated for only single ESXi host.
    NsxEdgeUplink1vlanId string

    Deprecated: The 'nsx_edge_uplink1vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    NsxEdgeUplink2vlanId string

    Deprecated: The 'nsx_edge_uplink2vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    NsxEdgeUplinkIpId string
    NsxEdgeVtepVlanId string

    Deprecated: The 'nsx_edge_vtep_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    NsxManagerFqdn string
    The FQDN for NSX Manager. Example: nsx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
    NsxManagerInitialPassword string

    Deprecated: The 'nsx_manager_initial_password' field has been deprecated. Please use the 'oci_ocvp_retrieve_password' data source instead.

    NsxManagerPrivateIpId string
    NsxManagerUsername string
    The SDDC includes an administrator username and initial password for NSX Manager. You can change this initial username to a different value in NSX Manager.
    NsxOverlaySegmentName string

    Deprecated: The 'nsx_overlay_segment_name' field has been deprecated and may be removed in a future version. Do not use this field.

    NsxVtepVlanId string

    Deprecated: The 'nsx_vtep_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    ProvisioningSubnetId string

    Deprecated: The 'provisioning_subnet_id' field has been deprecated. Please use 'initial_configuration' instead.

    ProvisioningVlanId string

    Deprecated: The 'provisioning_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    RefreshHcxLicenseStatus bool
    ReplicationVlanId string

    Deprecated: The 'replication_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    ReservingHcxOnPremiseLicenseKeys []string
    SshAuthorizedKeys string
    State string
    The lifecycle state of the resource.
    TimeCreated string
    The date and time the SDDC was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    TimeHcxBillingCycleEnd string
    TimeHcxLicenseStatusUpdated string
    TimeUpdated string
    The date and time the SDDC was updated, in the format defined by RFC3339.
    UpgradeLicenses []GetSddcsSddcCollectionUpgradeLicense

    Deprecated: The 'upgrade_licenses' field has been deprecated. Please use the 'ocvp_cluster_resource' resource instead.

    VcenterFqdn string
    The FQDN for vCenter. Example: vcenter-my-sddc.sddc.us-phoenix-1.oraclecloud.com
    VcenterInitialPassword string

    Deprecated: The 'vcenter_initial_password' field has been deprecated. Please use the 'oci_ocvp_retrieve_password' data source instead.

    VcenterPrivateIpId string
    VcenterUsername string
    VmotionVlanId string

    Deprecated: The 'vmotion_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    VmwareSoftwareVersion string
    In general, this is a specific version of bundled VMware software supported by Oracle Cloud VMware Solution (see ListSupportedVmwareSoftwareVersions).
    VsanVlanId string

    Deprecated: The 'vsan_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    VsphereUpgradeGuide string

    Deprecated: The 'vsphere_upgrade_guide' field has been deprecated and may be removed in a future version. Do not use this field.

    VsphereUpgradeObjects []GetSddcsSddcCollectionVsphereUpgradeObject

    Deprecated: The 'vsphere_upgrade_objects' field has been deprecated. Please use the 'ocvp_cluster_resource' resource instead.

    VsphereVlanId string

    Deprecated: The 'vsphere_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    WorkloadNetworkCidr string

    Deprecated: The 'workload_network_cidr' field has been deprecated. Please use 'initial_configuration' instead.

    actualEsxiHostsCount Integer
    (Deprecated) The number of actual ESXi hosts in the SDDC on the cloud. This attribute will be different when esxi Host is added to an existing SDDC.

    Deprecated: The 'actual_esxi_hosts_count' field has been deprecated. Please use 'initial_configuration' instead.

    capacityReservationId String

    Deprecated: The 'capacity_reservation_id' field has been deprecated. Please use 'initial_configuration' instead.

    clustersCount Integer
    The number of Clusters in the SDDC.
    compartmentId String
    The OCID of the compartment.
    computeAvailabilityDomain String
    The name of the availability domain that the Compute instances are running in. Example: Uocm:PHX-AD-1

    Deprecated: The 'compute_availability_domain' field has been deprecated. Please use 'initial_configuration' instead.

    datastores List<GetSddcsSddcCollectionDatastore>

    Deprecated: The 'datastores' field has been deprecated. Please use 'initial_configuration' instead.

    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    A filter to return only resources that match the given display name exactly.
    esxiHostsCount Integer
    (Deprecated) The number of ESXi hosts in the SDDC.

    Deprecated: The 'esxi_hosts_count' field has been deprecated. Please use 'initial_configuration' instead.

    esxiSoftwareVersion String
    In general, this is a specific version of bundled ESXi software supported by Oracle Cloud VMware Solution (see ListSupportedVmwareSoftwareVersions).
    freeformTags Map<String,Object>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    hcxAction String
    hcxFqdn String
    The FQDN for HCX Manager. Example: hcx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
    hcxInitialPassword String

    Deprecated: The 'hcx_initial_password' field has been deprecated. Please use the 'oci_ocvp_retrieve_password' data source instead.

    hcxMode String
    HCX configuration of the SDDC.
    hcxOnPremKey String

    Deprecated: The 'hcx_on_prem_key' field has been deprecated and may be removed in a future version. Do not use this field.

    hcxOnPremLicenses List<GetSddcsSddcCollectionHcxOnPremLicense>
    The activation licenses to use on the on-premises HCX Enterprise appliance you site pair with HCX Manager in your VMware Solution.
    hcxPrivateIpId String
    hcxVlanId String

    Deprecated: The 'hcx_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    id String
    The OCID of the SDDC.
    initialConfigurations List<GetSddcsSddcCollectionInitialConfiguration>
    initialHostOcpuCount Double
    (Deprecated) The initial OCPU count of the SDDC's ESXi hosts.

    Deprecated: The 'initial_host_ocpu_count' field has been deprecated. Please use 'initial_configuration' instead.

    initialHostShapeName String
    (Deprecated) The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.

    Deprecated: The 'initial_host_shape_name' field has been deprecated. Please use 'initial_configuration' instead.

    initialSku String

    Deprecated: The 'initial_sku' field has been deprecated. Please use 'initial_configuration' instead.

    instanceDisplayNamePrefix String

    Deprecated: The 'instance_display_name_prefix' field has been deprecated. Please use 'initial_configuration' instead.

    isHcxEnabled Boolean
    (Deprecated) Indicates whether HCX is enabled for this SDDC. Deprecated. Please use hcx_mode instead.
    isHcxEnterpriseEnabled Boolean
    (Deprecated) Indicates whether HCX Enterprise is enabled for this SDDC. Deprecated. Please use hcx_mode instead.

    Deprecated: The 'is_hcx_enterprise_enabled' field has been deprecated and may be removed in a future version. Do not use this field.

    isHcxPendingDowngrade Boolean
    Indicates whether SDDC is pending downgrade from HCX Enterprise to HCX Advanced.
    isShieldedInstanceEnabled Boolean
    (Deprecated) Indicates whether shielded instance is enabled at the SDDC level.

    Deprecated: The 'is_shielded_instance_enabled' field has been deprecated. Please use 'initial_configuration' instead.

    isSingleHostSddc Boolean
    Indicates whether this SDDC is designated for only single ESXi host.
    nsxEdgeUplink1vlanId String

    Deprecated: The 'nsx_edge_uplink1vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    nsxEdgeUplink2vlanId String

    Deprecated: The 'nsx_edge_uplink2vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    nsxEdgeUplinkIpId String
    nsxEdgeVtepVlanId String

    Deprecated: The 'nsx_edge_vtep_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    nsxManagerFqdn String
    The FQDN for NSX Manager. Example: nsx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
    nsxManagerInitialPassword String

    Deprecated: The 'nsx_manager_initial_password' field has been deprecated. Please use the 'oci_ocvp_retrieve_password' data source instead.

    nsxManagerPrivateIpId String
    nsxManagerUsername String
    The SDDC includes an administrator username and initial password for NSX Manager. You can change this initial username to a different value in NSX Manager.
    nsxOverlaySegmentName String

    Deprecated: The 'nsx_overlay_segment_name' field has been deprecated and may be removed in a future version. Do not use this field.

    nsxVtepVlanId String

    Deprecated: The 'nsx_vtep_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    provisioningSubnetId String

    Deprecated: The 'provisioning_subnet_id' field has been deprecated. Please use 'initial_configuration' instead.

    provisioningVlanId String

    Deprecated: The 'provisioning_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    refreshHcxLicenseStatus Boolean
    replicationVlanId String

    Deprecated: The 'replication_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    reservingHcxOnPremiseLicenseKeys List<String>
    sshAuthorizedKeys String
    state String
    The lifecycle state of the resource.
    timeCreated String
    The date and time the SDDC was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    timeHcxBillingCycleEnd String
    timeHcxLicenseStatusUpdated String
    timeUpdated String
    The date and time the SDDC was updated, in the format defined by RFC3339.
    upgradeLicenses List<GetSddcsSddcCollectionUpgradeLicense>

    Deprecated: The 'upgrade_licenses' field has been deprecated. Please use the 'ocvp_cluster_resource' resource instead.

    vcenterFqdn String
    The FQDN for vCenter. Example: vcenter-my-sddc.sddc.us-phoenix-1.oraclecloud.com
    vcenterInitialPassword String

    Deprecated: The 'vcenter_initial_password' field has been deprecated. Please use the 'oci_ocvp_retrieve_password' data source instead.

    vcenterPrivateIpId String
    vcenterUsername String
    vmotionVlanId String

    Deprecated: The 'vmotion_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    vmwareSoftwareVersion String
    In general, this is a specific version of bundled VMware software supported by Oracle Cloud VMware Solution (see ListSupportedVmwareSoftwareVersions).
    vsanVlanId String

    Deprecated: The 'vsan_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    vsphereUpgradeGuide String

    Deprecated: The 'vsphere_upgrade_guide' field has been deprecated and may be removed in a future version. Do not use this field.

    vsphereUpgradeObjects List<GetSddcsSddcCollectionVsphereUpgradeObject>

    Deprecated: The 'vsphere_upgrade_objects' field has been deprecated. Please use the 'ocvp_cluster_resource' resource instead.

    vsphereVlanId String

    Deprecated: The 'vsphere_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    workloadNetworkCidr String

    Deprecated: The 'workload_network_cidr' field has been deprecated. Please use 'initial_configuration' instead.

    actualEsxiHostsCount number
    (Deprecated) The number of actual ESXi hosts in the SDDC on the cloud. This attribute will be different when esxi Host is added to an existing SDDC.

    Deprecated: The 'actual_esxi_hosts_count' field has been deprecated. Please use 'initial_configuration' instead.

    capacityReservationId string

    Deprecated: The 'capacity_reservation_id' field has been deprecated. Please use 'initial_configuration' instead.

    clustersCount number
    The number of Clusters in the SDDC.
    compartmentId string
    The OCID of the compartment.
    computeAvailabilityDomain string
    The name of the availability domain that the Compute instances are running in. Example: Uocm:PHX-AD-1

    Deprecated: The 'compute_availability_domain' field has been deprecated. Please use 'initial_configuration' instead.

    datastores GetSddcsSddcCollectionDatastore[]

    Deprecated: The 'datastores' field has been deprecated. Please use 'initial_configuration' instead.

    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName string
    A filter to return only resources that match the given display name exactly.
    esxiHostsCount number
    (Deprecated) The number of ESXi hosts in the SDDC.

    Deprecated: The 'esxi_hosts_count' field has been deprecated. Please use 'initial_configuration' instead.

    esxiSoftwareVersion string
    In general, this is a specific version of bundled ESXi software supported by Oracle Cloud VMware Solution (see ListSupportedVmwareSoftwareVersions).
    freeformTags {[key: string]: any}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    hcxAction string
    hcxFqdn string
    The FQDN for HCX Manager. Example: hcx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
    hcxInitialPassword string

    Deprecated: The 'hcx_initial_password' field has been deprecated. Please use the 'oci_ocvp_retrieve_password' data source instead.

    hcxMode string
    HCX configuration of the SDDC.
    hcxOnPremKey string

    Deprecated: The 'hcx_on_prem_key' field has been deprecated and may be removed in a future version. Do not use this field.

    hcxOnPremLicenses GetSddcsSddcCollectionHcxOnPremLicense[]
    The activation licenses to use on the on-premises HCX Enterprise appliance you site pair with HCX Manager in your VMware Solution.
    hcxPrivateIpId string
    hcxVlanId string

    Deprecated: The 'hcx_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    id string
    The OCID of the SDDC.
    initialConfigurations GetSddcsSddcCollectionInitialConfiguration[]
    initialHostOcpuCount number
    (Deprecated) The initial OCPU count of the SDDC's ESXi hosts.

    Deprecated: The 'initial_host_ocpu_count' field has been deprecated. Please use 'initial_configuration' instead.

    initialHostShapeName string
    (Deprecated) The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.

    Deprecated: The 'initial_host_shape_name' field has been deprecated. Please use 'initial_configuration' instead.

    initialSku string

    Deprecated: The 'initial_sku' field has been deprecated. Please use 'initial_configuration' instead.

    instanceDisplayNamePrefix string

    Deprecated: The 'instance_display_name_prefix' field has been deprecated. Please use 'initial_configuration' instead.

    isHcxEnabled boolean
    (Deprecated) Indicates whether HCX is enabled for this SDDC. Deprecated. Please use hcx_mode instead.
    isHcxEnterpriseEnabled boolean
    (Deprecated) Indicates whether HCX Enterprise is enabled for this SDDC. Deprecated. Please use hcx_mode instead.

    Deprecated: The 'is_hcx_enterprise_enabled' field has been deprecated and may be removed in a future version. Do not use this field.

    isHcxPendingDowngrade boolean
    Indicates whether SDDC is pending downgrade from HCX Enterprise to HCX Advanced.
    isShieldedInstanceEnabled boolean
    (Deprecated) Indicates whether shielded instance is enabled at the SDDC level.

    Deprecated: The 'is_shielded_instance_enabled' field has been deprecated. Please use 'initial_configuration' instead.

    isSingleHostSddc boolean
    Indicates whether this SDDC is designated for only single ESXi host.
    nsxEdgeUplink1vlanId string

    Deprecated: The 'nsx_edge_uplink1vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    nsxEdgeUplink2vlanId string

    Deprecated: The 'nsx_edge_uplink2vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    nsxEdgeUplinkIpId string
    nsxEdgeVtepVlanId string

    Deprecated: The 'nsx_edge_vtep_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    nsxManagerFqdn string
    The FQDN for NSX Manager. Example: nsx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
    nsxManagerInitialPassword string

    Deprecated: The 'nsx_manager_initial_password' field has been deprecated. Please use the 'oci_ocvp_retrieve_password' data source instead.

    nsxManagerPrivateIpId string
    nsxManagerUsername string
    The SDDC includes an administrator username and initial password for NSX Manager. You can change this initial username to a different value in NSX Manager.
    nsxOverlaySegmentName string

    Deprecated: The 'nsx_overlay_segment_name' field has been deprecated and may be removed in a future version. Do not use this field.

    nsxVtepVlanId string

    Deprecated: The 'nsx_vtep_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    provisioningSubnetId string

    Deprecated: The 'provisioning_subnet_id' field has been deprecated. Please use 'initial_configuration' instead.

    provisioningVlanId string

    Deprecated: The 'provisioning_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    refreshHcxLicenseStatus boolean
    replicationVlanId string

    Deprecated: The 'replication_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    reservingHcxOnPremiseLicenseKeys string[]
    sshAuthorizedKeys string
    state string
    The lifecycle state of the resource.
    timeCreated string
    The date and time the SDDC was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    timeHcxBillingCycleEnd string
    timeHcxLicenseStatusUpdated string
    timeUpdated string
    The date and time the SDDC was updated, in the format defined by RFC3339.
    upgradeLicenses GetSddcsSddcCollectionUpgradeLicense[]

    Deprecated: The 'upgrade_licenses' field has been deprecated. Please use the 'ocvp_cluster_resource' resource instead.

    vcenterFqdn string
    The FQDN for vCenter. Example: vcenter-my-sddc.sddc.us-phoenix-1.oraclecloud.com
    vcenterInitialPassword string

    Deprecated: The 'vcenter_initial_password' field has been deprecated. Please use the 'oci_ocvp_retrieve_password' data source instead.

    vcenterPrivateIpId string
    vcenterUsername string
    vmotionVlanId string

    Deprecated: The 'vmotion_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    vmwareSoftwareVersion string
    In general, this is a specific version of bundled VMware software supported by Oracle Cloud VMware Solution (see ListSupportedVmwareSoftwareVersions).
    vsanVlanId string

    Deprecated: The 'vsan_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    vsphereUpgradeGuide string

    Deprecated: The 'vsphere_upgrade_guide' field has been deprecated and may be removed in a future version. Do not use this field.

    vsphereUpgradeObjects GetSddcsSddcCollectionVsphereUpgradeObject[]

    Deprecated: The 'vsphere_upgrade_objects' field has been deprecated. Please use the 'ocvp_cluster_resource' resource instead.

    vsphereVlanId string

    Deprecated: The 'vsphere_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    workloadNetworkCidr string

    Deprecated: The 'workload_network_cidr' field has been deprecated. Please use 'initial_configuration' instead.

    actual_esxi_hosts_count int
    (Deprecated) The number of actual ESXi hosts in the SDDC on the cloud. This attribute will be different when esxi Host is added to an existing SDDC.

    Deprecated: The 'actual_esxi_hosts_count' field has been deprecated. Please use 'initial_configuration' instead.

    capacity_reservation_id str

    Deprecated: The 'capacity_reservation_id' field has been deprecated. Please use 'initial_configuration' instead.

    clusters_count int
    The number of Clusters in the SDDC.
    compartment_id str
    The OCID of the compartment.
    compute_availability_domain str
    The name of the availability domain that the Compute instances are running in. Example: Uocm:PHX-AD-1

    Deprecated: The 'compute_availability_domain' field has been deprecated. Please use 'initial_configuration' instead.

    datastores Sequence[ocvp.GetSddcsSddcCollectionDatastore]

    Deprecated: The 'datastores' field has been deprecated. Please use 'initial_configuration' instead.

    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    display_name str
    A filter to return only resources that match the given display name exactly.
    esxi_hosts_count int
    (Deprecated) The number of ESXi hosts in the SDDC.

    Deprecated: The 'esxi_hosts_count' field has been deprecated. Please use 'initial_configuration' instead.

    esxi_software_version str
    In general, this is a specific version of bundled ESXi software supported by Oracle Cloud VMware Solution (see ListSupportedVmwareSoftwareVersions).
    freeform_tags Mapping[str, Any]
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    hcx_action str
    hcx_fqdn str
    The FQDN for HCX Manager. Example: hcx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
    hcx_initial_password str

    Deprecated: The 'hcx_initial_password' field has been deprecated. Please use the 'oci_ocvp_retrieve_password' data source instead.

    hcx_mode str
    HCX configuration of the SDDC.
    hcx_on_prem_key str

    Deprecated: The 'hcx_on_prem_key' field has been deprecated and may be removed in a future version. Do not use this field.

    hcx_on_prem_licenses Sequence[ocvp.GetSddcsSddcCollectionHcxOnPremLicense]
    The activation licenses to use on the on-premises HCX Enterprise appliance you site pair with HCX Manager in your VMware Solution.
    hcx_private_ip_id str
    hcx_vlan_id str

    Deprecated: The 'hcx_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    id str
    The OCID of the SDDC.
    initial_configurations Sequence[ocvp.GetSddcsSddcCollectionInitialConfiguration]
    initial_host_ocpu_count float
    (Deprecated) The initial OCPU count of the SDDC's ESXi hosts.

    Deprecated: The 'initial_host_ocpu_count' field has been deprecated. Please use 'initial_configuration' instead.

    initial_host_shape_name str
    (Deprecated) The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.

    Deprecated: The 'initial_host_shape_name' field has been deprecated. Please use 'initial_configuration' instead.

    initial_sku str

    Deprecated: The 'initial_sku' field has been deprecated. Please use 'initial_configuration' instead.

    instance_display_name_prefix str

    Deprecated: The 'instance_display_name_prefix' field has been deprecated. Please use 'initial_configuration' instead.

    is_hcx_enabled bool
    (Deprecated) Indicates whether HCX is enabled for this SDDC. Deprecated. Please use hcx_mode instead.
    is_hcx_enterprise_enabled bool
    (Deprecated) Indicates whether HCX Enterprise is enabled for this SDDC. Deprecated. Please use hcx_mode instead.

    Deprecated: The 'is_hcx_enterprise_enabled' field has been deprecated and may be removed in a future version. Do not use this field.

    is_hcx_pending_downgrade bool
    Indicates whether SDDC is pending downgrade from HCX Enterprise to HCX Advanced.
    is_shielded_instance_enabled bool
    (Deprecated) Indicates whether shielded instance is enabled at the SDDC level.

    Deprecated: The 'is_shielded_instance_enabled' field has been deprecated. Please use 'initial_configuration' instead.

    is_single_host_sddc bool
    Indicates whether this SDDC is designated for only single ESXi host.
    nsx_edge_uplink1vlan_id str

    Deprecated: The 'nsx_edge_uplink1vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    nsx_edge_uplink2vlan_id str

    Deprecated: The 'nsx_edge_uplink2vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    nsx_edge_uplink_ip_id str
    nsx_edge_vtep_vlan_id str

    Deprecated: The 'nsx_edge_vtep_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    nsx_manager_fqdn str
    The FQDN for NSX Manager. Example: nsx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
    nsx_manager_initial_password str

    Deprecated: The 'nsx_manager_initial_password' field has been deprecated. Please use the 'oci_ocvp_retrieve_password' data source instead.

    nsx_manager_private_ip_id str
    nsx_manager_username str
    The SDDC includes an administrator username and initial password for NSX Manager. You can change this initial username to a different value in NSX Manager.
    nsx_overlay_segment_name str

    Deprecated: The 'nsx_overlay_segment_name' field has been deprecated and may be removed in a future version. Do not use this field.

    nsx_vtep_vlan_id str

    Deprecated: The 'nsx_vtep_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    provisioning_subnet_id str

    Deprecated: The 'provisioning_subnet_id' field has been deprecated. Please use 'initial_configuration' instead.

    provisioning_vlan_id str

    Deprecated: The 'provisioning_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    refresh_hcx_license_status bool
    replication_vlan_id str

    Deprecated: The 'replication_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    reserving_hcx_on_premise_license_keys Sequence[str]
    ssh_authorized_keys str
    state str
    The lifecycle state of the resource.
    time_created str
    The date and time the SDDC was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    time_hcx_billing_cycle_end str
    time_hcx_license_status_updated str
    time_updated str
    The date and time the SDDC was updated, in the format defined by RFC3339.
    upgrade_licenses Sequence[ocvp.GetSddcsSddcCollectionUpgradeLicense]

    Deprecated: The 'upgrade_licenses' field has been deprecated. Please use the 'ocvp_cluster_resource' resource instead.

    vcenter_fqdn str
    The FQDN for vCenter. Example: vcenter-my-sddc.sddc.us-phoenix-1.oraclecloud.com
    vcenter_initial_password str

    Deprecated: The 'vcenter_initial_password' field has been deprecated. Please use the 'oci_ocvp_retrieve_password' data source instead.

    vcenter_private_ip_id str
    vcenter_username str
    vmotion_vlan_id str

    Deprecated: The 'vmotion_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    vmware_software_version str
    In general, this is a specific version of bundled VMware software supported by Oracle Cloud VMware Solution (see ListSupportedVmwareSoftwareVersions).
    vsan_vlan_id str

    Deprecated: The 'vsan_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    vsphere_upgrade_guide str

    Deprecated: The 'vsphere_upgrade_guide' field has been deprecated and may be removed in a future version. Do not use this field.

    vsphere_upgrade_objects Sequence[ocvp.GetSddcsSddcCollectionVsphereUpgradeObject]

    Deprecated: The 'vsphere_upgrade_objects' field has been deprecated. Please use the 'ocvp_cluster_resource' resource instead.

    vsphere_vlan_id str

    Deprecated: The 'vsphere_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    workload_network_cidr str

    Deprecated: The 'workload_network_cidr' field has been deprecated. Please use 'initial_configuration' instead.

    actualEsxiHostsCount Number
    (Deprecated) The number of actual ESXi hosts in the SDDC on the cloud. This attribute will be different when esxi Host is added to an existing SDDC.

    Deprecated: The 'actual_esxi_hosts_count' field has been deprecated. Please use 'initial_configuration' instead.

    capacityReservationId String

    Deprecated: The 'capacity_reservation_id' field has been deprecated. Please use 'initial_configuration' instead.

    clustersCount Number
    The number of Clusters in the SDDC.
    compartmentId String
    The OCID of the compartment.
    computeAvailabilityDomain String
    The name of the availability domain that the Compute instances are running in. Example: Uocm:PHX-AD-1

    Deprecated: The 'compute_availability_domain' field has been deprecated. Please use 'initial_configuration' instead.

    datastores List<Property Map>

    Deprecated: The 'datastores' field has been deprecated. Please use 'initial_configuration' instead.

    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    A filter to return only resources that match the given display name exactly.
    esxiHostsCount Number
    (Deprecated) The number of ESXi hosts in the SDDC.

    Deprecated: The 'esxi_hosts_count' field has been deprecated. Please use 'initial_configuration' instead.

    esxiSoftwareVersion String
    In general, this is a specific version of bundled ESXi software supported by Oracle Cloud VMware Solution (see ListSupportedVmwareSoftwareVersions).
    freeformTags Map<Any>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    hcxAction String
    hcxFqdn String
    The FQDN for HCX Manager. Example: hcx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
    hcxInitialPassword String

    Deprecated: The 'hcx_initial_password' field has been deprecated. Please use the 'oci_ocvp_retrieve_password' data source instead.

    hcxMode String
    HCX configuration of the SDDC.
    hcxOnPremKey String

    Deprecated: The 'hcx_on_prem_key' field has been deprecated and may be removed in a future version. Do not use this field.

    hcxOnPremLicenses List<Property Map>
    The activation licenses to use on the on-premises HCX Enterprise appliance you site pair with HCX Manager in your VMware Solution.
    hcxPrivateIpId String
    hcxVlanId String

    Deprecated: The 'hcx_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    id String
    The OCID of the SDDC.
    initialConfigurations List<Property Map>
    initialHostOcpuCount Number
    (Deprecated) The initial OCPU count of the SDDC's ESXi hosts.

    Deprecated: The 'initial_host_ocpu_count' field has been deprecated. Please use 'initial_configuration' instead.

    initialHostShapeName String
    (Deprecated) The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.

    Deprecated: The 'initial_host_shape_name' field has been deprecated. Please use 'initial_configuration' instead.

    initialSku String

    Deprecated: The 'initial_sku' field has been deprecated. Please use 'initial_configuration' instead.

    instanceDisplayNamePrefix String

    Deprecated: The 'instance_display_name_prefix' field has been deprecated. Please use 'initial_configuration' instead.

    isHcxEnabled Boolean
    (Deprecated) Indicates whether HCX is enabled for this SDDC. Deprecated. Please use hcx_mode instead.
    isHcxEnterpriseEnabled Boolean
    (Deprecated) Indicates whether HCX Enterprise is enabled for this SDDC. Deprecated. Please use hcx_mode instead.

    Deprecated: The 'is_hcx_enterprise_enabled' field has been deprecated and may be removed in a future version. Do not use this field.

    isHcxPendingDowngrade Boolean
    Indicates whether SDDC is pending downgrade from HCX Enterprise to HCX Advanced.
    isShieldedInstanceEnabled Boolean
    (Deprecated) Indicates whether shielded instance is enabled at the SDDC level.

    Deprecated: The 'is_shielded_instance_enabled' field has been deprecated. Please use 'initial_configuration' instead.

    isSingleHostSddc Boolean
    Indicates whether this SDDC is designated for only single ESXi host.
    nsxEdgeUplink1vlanId String

    Deprecated: The 'nsx_edge_uplink1vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    nsxEdgeUplink2vlanId String

    Deprecated: The 'nsx_edge_uplink2vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    nsxEdgeUplinkIpId String
    nsxEdgeVtepVlanId String

    Deprecated: The 'nsx_edge_vtep_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    nsxManagerFqdn String
    The FQDN for NSX Manager. Example: nsx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
    nsxManagerInitialPassword String

    Deprecated: The 'nsx_manager_initial_password' field has been deprecated. Please use the 'oci_ocvp_retrieve_password' data source instead.

    nsxManagerPrivateIpId String
    nsxManagerUsername String
    The SDDC includes an administrator username and initial password for NSX Manager. You can change this initial username to a different value in NSX Manager.
    nsxOverlaySegmentName String

    Deprecated: The 'nsx_overlay_segment_name' field has been deprecated and may be removed in a future version. Do not use this field.

    nsxVtepVlanId String

    Deprecated: The 'nsx_vtep_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    provisioningSubnetId String

    Deprecated: The 'provisioning_subnet_id' field has been deprecated. Please use 'initial_configuration' instead.

    provisioningVlanId String

    Deprecated: The 'provisioning_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    refreshHcxLicenseStatus Boolean
    replicationVlanId String

    Deprecated: The 'replication_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    reservingHcxOnPremiseLicenseKeys List<String>
    sshAuthorizedKeys String
    state String
    The lifecycle state of the resource.
    timeCreated String
    The date and time the SDDC was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    timeHcxBillingCycleEnd String
    timeHcxLicenseStatusUpdated String
    timeUpdated String
    The date and time the SDDC was updated, in the format defined by RFC3339.
    upgradeLicenses List<Property Map>

    Deprecated: The 'upgrade_licenses' field has been deprecated. Please use the 'ocvp_cluster_resource' resource instead.

    vcenterFqdn String
    The FQDN for vCenter. Example: vcenter-my-sddc.sddc.us-phoenix-1.oraclecloud.com
    vcenterInitialPassword String

    Deprecated: The 'vcenter_initial_password' field has been deprecated. Please use the 'oci_ocvp_retrieve_password' data source instead.

    vcenterPrivateIpId String
    vcenterUsername String
    vmotionVlanId String

    Deprecated: The 'vmotion_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    vmwareSoftwareVersion String
    In general, this is a specific version of bundled VMware software supported by Oracle Cloud VMware Solution (see ListSupportedVmwareSoftwareVersions).
    vsanVlanId String

    Deprecated: The 'vsan_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    vsphereUpgradeGuide String

    Deprecated: The 'vsphere_upgrade_guide' field has been deprecated and may be removed in a future version. Do not use this field.

    vsphereUpgradeObjects List<Property Map>

    Deprecated: The 'vsphere_upgrade_objects' field has been deprecated. Please use the 'ocvp_cluster_resource' resource instead.

    vsphereVlanId String

    Deprecated: The 'vsphere_vlan_id' field has been deprecated. Please use 'initial_configuration' instead.

    workloadNetworkCidr String

    Deprecated: The 'workload_network_cidr' field has been deprecated. Please use 'initial_configuration' instead.

    GetSddcsSddcCollectionDatastore

    BlockVolumeIds List<string>
    Capacity double
    DatastoreType string
    BlockVolumeIds []string
    Capacity float64
    DatastoreType string
    blockVolumeIds List<String>
    capacity Double
    datastoreType String
    blockVolumeIds List<String>
    capacity Number
    datastoreType String

    GetSddcsSddcCollectionHcxOnPremLicense

    ActivationKey string
    HCX on-premise license key value.
    Status string
    status of HCX on-premise license.
    SystemName string
    Name of the system that consumed the HCX on-premise license
    ActivationKey string
    HCX on-premise license key value.
    Status string
    status of HCX on-premise license.
    SystemName string
    Name of the system that consumed the HCX on-premise license
    activationKey String
    HCX on-premise license key value.
    status String
    status of HCX on-premise license.
    systemName String
    Name of the system that consumed the HCX on-premise license
    activationKey string
    HCX on-premise license key value.
    status string
    status of HCX on-premise license.
    systemName string
    Name of the system that consumed the HCX on-premise license
    activation_key str
    HCX on-premise license key value.
    status str
    status of HCX on-premise license.
    system_name str
    Name of the system that consumed the HCX on-premise license
    activationKey String
    HCX on-premise license key value.
    status String
    status of HCX on-premise license.
    systemName String
    Name of the system that consumed the HCX on-premise license

    GetSddcsSddcCollectionInitialConfiguration

    GetSddcsSddcCollectionInitialConfigurationInitialClusterConfiguration

    ActualEsxiHostsCount int
    (Deprecated) The number of actual ESXi hosts in the SDDC on the cloud. This attribute will be different when esxi Host is added to an existing SDDC.
    CapacityReservationId string
    ComputeAvailabilityDomain string
    The name of the availability domain that the Compute instances are running in. Example: Uocm:PHX-AD-1
    Datastores List<GetSddcsSddcCollectionInitialConfigurationInitialClusterConfigurationDatastore>
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    EsxiHostsCount int
    (Deprecated) The number of ESXi hosts in the SDDC.
    InitialCommitment string
    InitialHostOcpuCount double
    (Deprecated) The initial OCPU count of the SDDC's ESXi hosts.
    InitialHostShapeName string
    (Deprecated) The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.
    InstanceDisplayNamePrefix string
    IsShieldedInstanceEnabled bool
    (Deprecated) Indicates whether shielded instance is enabled at the SDDC level.
    NetworkConfigurations List<GetSddcsSddcCollectionInitialConfigurationInitialClusterConfigurationNetworkConfiguration>
    VsphereType string
    WorkloadNetworkCidr string
    ActualEsxiHostsCount int
    (Deprecated) The number of actual ESXi hosts in the SDDC on the cloud. This attribute will be different when esxi Host is added to an existing SDDC.
    CapacityReservationId string
    ComputeAvailabilityDomain string
    The name of the availability domain that the Compute instances are running in. Example: Uocm:PHX-AD-1
    Datastores []GetSddcsSddcCollectionInitialConfigurationInitialClusterConfigurationDatastore
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    EsxiHostsCount int
    (Deprecated) The number of ESXi hosts in the SDDC.
    InitialCommitment string
    InitialHostOcpuCount float64
    (Deprecated) The initial OCPU count of the SDDC's ESXi hosts.
    InitialHostShapeName string
    (Deprecated) The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.
    InstanceDisplayNamePrefix string
    IsShieldedInstanceEnabled bool
    (Deprecated) Indicates whether shielded instance is enabled at the SDDC level.
    NetworkConfigurations []GetSddcsSddcCollectionInitialConfigurationInitialClusterConfigurationNetworkConfiguration
    VsphereType string
    WorkloadNetworkCidr string
    actualEsxiHostsCount Integer
    (Deprecated) The number of actual ESXi hosts in the SDDC on the cloud. This attribute will be different when esxi Host is added to an existing SDDC.
    capacityReservationId String
    computeAvailabilityDomain String
    The name of the availability domain that the Compute instances are running in. Example: Uocm:PHX-AD-1
    datastores List<GetSddcsSddcCollectionInitialConfigurationInitialClusterConfigurationDatastore>
    displayName String
    A filter to return only resources that match the given display name exactly.
    esxiHostsCount Integer
    (Deprecated) The number of ESXi hosts in the SDDC.
    initialCommitment String
    initialHostOcpuCount Double
    (Deprecated) The initial OCPU count of the SDDC's ESXi hosts.
    initialHostShapeName String
    (Deprecated) The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.
    instanceDisplayNamePrefix String
    isShieldedInstanceEnabled Boolean
    (Deprecated) Indicates whether shielded instance is enabled at the SDDC level.
    networkConfigurations List<GetSddcsSddcCollectionInitialConfigurationInitialClusterConfigurationNetworkConfiguration>
    vsphereType String
    workloadNetworkCidr String
    actualEsxiHostsCount number
    (Deprecated) The number of actual ESXi hosts in the SDDC on the cloud. This attribute will be different when esxi Host is added to an existing SDDC.
    capacityReservationId string
    computeAvailabilityDomain string
    The name of the availability domain that the Compute instances are running in. Example: Uocm:PHX-AD-1
    datastores GetSddcsSddcCollectionInitialConfigurationInitialClusterConfigurationDatastore[]
    displayName string
    A filter to return only resources that match the given display name exactly.
    esxiHostsCount number
    (Deprecated) The number of ESXi hosts in the SDDC.
    initialCommitment string
    initialHostOcpuCount number
    (Deprecated) The initial OCPU count of the SDDC's ESXi hosts.
    initialHostShapeName string
    (Deprecated) The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.
    instanceDisplayNamePrefix string
    isShieldedInstanceEnabled boolean
    (Deprecated) Indicates whether shielded instance is enabled at the SDDC level.
    networkConfigurations GetSddcsSddcCollectionInitialConfigurationInitialClusterConfigurationNetworkConfiguration[]
    vsphereType string
    workloadNetworkCidr string
    actual_esxi_hosts_count int
    (Deprecated) The number of actual ESXi hosts in the SDDC on the cloud. This attribute will be different when esxi Host is added to an existing SDDC.
    capacity_reservation_id str
    compute_availability_domain str
    The name of the availability domain that the Compute instances are running in. Example: Uocm:PHX-AD-1
    datastores Sequence[ocvp.GetSddcsSddcCollectionInitialConfigurationInitialClusterConfigurationDatastore]
    display_name str
    A filter to return only resources that match the given display name exactly.
    esxi_hosts_count int
    (Deprecated) The number of ESXi hosts in the SDDC.
    initial_commitment str
    initial_host_ocpu_count float
    (Deprecated) The initial OCPU count of the SDDC's ESXi hosts.
    initial_host_shape_name str
    (Deprecated) The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.
    instance_display_name_prefix str
    is_shielded_instance_enabled bool
    (Deprecated) Indicates whether shielded instance is enabled at the SDDC level.
    network_configurations Sequence[ocvp.GetSddcsSddcCollectionInitialConfigurationInitialClusterConfigurationNetworkConfiguration]
    vsphere_type str
    workload_network_cidr str
    actualEsxiHostsCount Number
    (Deprecated) The number of actual ESXi hosts in the SDDC on the cloud. This attribute will be different when esxi Host is added to an existing SDDC.
    capacityReservationId String
    computeAvailabilityDomain String
    The name of the availability domain that the Compute instances are running in. Example: Uocm:PHX-AD-1
    datastores List<Property Map>
    displayName String
    A filter to return only resources that match the given display name exactly.
    esxiHostsCount Number
    (Deprecated) The number of ESXi hosts in the SDDC.
    initialCommitment String
    initialHostOcpuCount Number
    (Deprecated) The initial OCPU count of the SDDC's ESXi hosts.
    initialHostShapeName String
    (Deprecated) The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.
    instanceDisplayNamePrefix String
    isShieldedInstanceEnabled Boolean
    (Deprecated) Indicates whether shielded instance is enabled at the SDDC level.
    networkConfigurations List<Property Map>
    vsphereType String
    workloadNetworkCidr String

    GetSddcsSddcCollectionInitialConfigurationInitialClusterConfigurationDatastore

    BlockVolumeIds List<string>
    DatastoreType string
    blockVolumeIds List<String>
    datastoreType String
    blockVolumeIds List<String>
    datastoreType String

    GetSddcsSddcCollectionInitialConfigurationInitialClusterConfigurationNetworkConfiguration

    GetSddcsSddcCollectionUpgradeLicense

    LicenseKey string
    LicenseType string
    LicenseKey string
    LicenseType string
    licenseKey String
    licenseType String
    licenseKey string
    licenseType string
    licenseKey String
    licenseType String

    GetSddcsSddcCollectionVsphereUpgradeObject

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi