1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Ocvp
  5. getSddcs
Oracle Cloud Infrastructure v1.10.0 published on Thursday, Sep 7, 2023 by Pulumi

oci.Ocvp.getSddcs

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.10.0 published on Thursday, Sep 7, 2023 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

    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 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
    	})
    }
    
    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());
    
        }
    }
    
    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"])
    
    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,
    });
    
    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 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

    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

    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

    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

    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 GetSddcsSddcCollection]

    The list of sddc_collection.

    compute_availability_domain str

    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 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

    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

    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

    The OCID of the Capacity Reservation.

    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

    Datastores List<GetSddcsSddcCollectionDatastore>

    Datastores used for the Sddc.

    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

    The number of ESXi hosts in the SDDC.

    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

    The SDDC includes an administrator username and initial password for HCX Manager. Make sure to change this initial HCX Manager password to a different value.

    HcxOnPremKey string

    The activation keys to use on the on-premises HCX Enterprise appliances you site pair with HCX Manager in your VMware Solution. The number of keys provided depends on the HCX license type. HCX Advanced provides 3 activation keys. HCX Enterprise provides 10 activation keys.

    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

    The OCID of the PrivateIp object that is the virtual IP (VIP) for HCX Manager. For information about PrivateIp objects, see the Core Services API.

    HcxVlanId string

    The OCID of the VLAN used by the SDDC for the HCX component of the VMware environment.

    Id string

    The OCID of the SDDC.

    InitialHostOcpuCount double

    The initial OCPU count of the SDDC's ESXi hosts.

    InitialHostShapeName string

    The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.

    InitialSku string

    The billing option selected during SDDC creation. ListSupportedSkus.

    InstanceDisplayNamePrefix string

    A prefix used in the name of each ESXi host and Compute instance in the SDDC. If this isn't set, the SDDC's displayName is used as the prefix.

    IsHcxEnabled bool

    Indicates whether HCX is enabled for this SDDC.

    IsHcxEnterpriseEnabled bool

    Indicates whether HCX Enterprise is enabled for this SDDC.

    IsHcxPendingDowngrade bool

    Indicates whether SDDC is pending downgrade from HCX Enterprise to HCX Advanced.

    IsShieldedInstanceEnabled bool

    Indicates whether shielded instance is enabled at the SDDC level.

    IsSingleHostSddc bool

    Indicates whether this SDDC is designated for only single ESXi host.

    NsxEdgeUplink1vlanId string

    The OCID of the VLAN used by the SDDC for the NSX Edge Uplink 1 component of the VMware environment.

    NsxEdgeUplink2vlanId string

    The OCID of the VLAN used by the SDDC for the NSX Edge Uplink 2 component of the VMware environment.

    NsxEdgeUplinkIpId string

    The OCID of the PrivateIp object that is the virtual IP (VIP) for the NSX Edge Uplink. Use this OCID as the route target for route table rules when setting up connectivity between the SDDC and other networks. For information about PrivateIp objects, see the Core Services API.

    NsxEdgeVtepVlanId string

    The OCID of the VLAN used by the SDDC for the NSX Edge VTEP component of the VMware environment.

    NsxManagerFqdn string

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

    NsxManagerInitialPassword string

    The SDDC includes an administrator username and initial password for NSX Manager. Make sure to change this initial NSX Manager password to a different value.

    NsxManagerPrivateIpId string

    The OCID of the PrivateIp object that is the virtual IP (VIP) for NSX Manager. For information about PrivateIp objects, see the Core Services API.

    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

    The VMware NSX overlay workload segment to host your application. Connect to workload portgroup in vCenter to access this overlay segment.

    NsxVtepVlanId string

    The OCID of the VLAN used by the SDDC for the NSX VTEP component of the VMware environment.

    ProvisioningSubnetId string

    The OCID of the management subnet used to provision the SDDC.

    ProvisioningVlanId string

    The OCID of the VLAN used by the SDDC for the Provisioning component of the VMware environment.

    RefreshHcxLicenseStatus bool
    ReplicationVlanId string

    The OCID of the VLAN used by the SDDC for the vSphere Replication component of the VMware environment.

    ReservingHcxOnPremiseLicenseKeys List<string>
    SshAuthorizedKeys string

    One or more public SSH keys to be included in the ~/.ssh/authorized_keys file for the default user on each ESXi host. Use a newline character to separate multiple keys. The SSH keys must be in the format required for the authorized_keys file.

    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

    The date and time current HCX Enterprise billing cycle ends, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    TimeHcxLicenseStatusUpdated string

    The date and time the SDDC's HCX on-premise license status was updated, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    TimeUpdated string

    The date and time the SDDC was updated, in the format defined by RFC3339.

    UpgradeLicenses List<GetSddcsSddcCollectionUpgradeLicense>

    The vSphere licenses to use when upgrading the SDDC.

    VcenterFqdn string

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

    VcenterInitialPassword string

    The SDDC includes an administrator username and initial password for vCenter. Make sure to change this initial vCenter password to a different value.

    VcenterPrivateIpId string

    The OCID of the PrivateIp object that is the virtual IP (VIP) for vCenter. For information about PrivateIp objects, see the Core Services API.

    VcenterUsername string

    The SDDC includes an administrator username and initial password for vCenter. You can change this initial username to a different value in vCenter.

    VmotionVlanId string

    The OCID of the VLAN used by the SDDC for the vMotion component of the VMware environment.

    VmwareSoftwareVersion string

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

    VsanVlanId string

    The OCID of the VLAN used by the SDDC for the vSAN component of the VMware environment.

    VsphereUpgradeGuide string

    The link to guidance for upgrading vSphere.

    VsphereUpgradeObjects List<GetSddcsSddcCollectionVsphereUpgradeObject>

    The links to binary objects needed to upgrade vSphere.

    VsphereVlanId string

    The OCID of the VLAN used by the SDDC for the vSphere component of the VMware environment.

    WorkloadNetworkCidr string

    The CIDR block for the IP addresses that VMware VMs in the SDDC use to run application workloads.

    ActualEsxiHostsCount int

    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

    The OCID of the Capacity Reservation.

    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

    Datastores []GetSddcsSddcCollectionDatastore

    Datastores used for the Sddc.

    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

    The number of ESXi hosts in the SDDC.

    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

    The SDDC includes an administrator username and initial password for HCX Manager. Make sure to change this initial HCX Manager password to a different value.

    HcxOnPremKey string

    The activation keys to use on the on-premises HCX Enterprise appliances you site pair with HCX Manager in your VMware Solution. The number of keys provided depends on the HCX license type. HCX Advanced provides 3 activation keys. HCX Enterprise provides 10 activation keys.

    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

    The OCID of the PrivateIp object that is the virtual IP (VIP) for HCX Manager. For information about PrivateIp objects, see the Core Services API.

    HcxVlanId string

    The OCID of the VLAN used by the SDDC for the HCX component of the VMware environment.

    Id string

    The OCID of the SDDC.

    InitialHostOcpuCount float64

    The initial OCPU count of the SDDC's ESXi hosts.

    InitialHostShapeName string

    The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.

    InitialSku string

    The billing option selected during SDDC creation. ListSupportedSkus.

    InstanceDisplayNamePrefix string

    A prefix used in the name of each ESXi host and Compute instance in the SDDC. If this isn't set, the SDDC's displayName is used as the prefix.

    IsHcxEnabled bool

    Indicates whether HCX is enabled for this SDDC.

    IsHcxEnterpriseEnabled bool

    Indicates whether HCX Enterprise is enabled for this SDDC.

    IsHcxPendingDowngrade bool

    Indicates whether SDDC is pending downgrade from HCX Enterprise to HCX Advanced.

    IsShieldedInstanceEnabled bool

    Indicates whether shielded instance is enabled at the SDDC level.

    IsSingleHostSddc bool

    Indicates whether this SDDC is designated for only single ESXi host.

    NsxEdgeUplink1vlanId string

    The OCID of the VLAN used by the SDDC for the NSX Edge Uplink 1 component of the VMware environment.

    NsxEdgeUplink2vlanId string

    The OCID of the VLAN used by the SDDC for the NSX Edge Uplink 2 component of the VMware environment.

    NsxEdgeUplinkIpId string

    The OCID of the PrivateIp object that is the virtual IP (VIP) for the NSX Edge Uplink. Use this OCID as the route target for route table rules when setting up connectivity between the SDDC and other networks. For information about PrivateIp objects, see the Core Services API.

    NsxEdgeVtepVlanId string

    The OCID of the VLAN used by the SDDC for the NSX Edge VTEP component of the VMware environment.

    NsxManagerFqdn string

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

    NsxManagerInitialPassword string

    The SDDC includes an administrator username and initial password for NSX Manager. Make sure to change this initial NSX Manager password to a different value.

    NsxManagerPrivateIpId string

    The OCID of the PrivateIp object that is the virtual IP (VIP) for NSX Manager. For information about PrivateIp objects, see the Core Services API.

    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

    The VMware NSX overlay workload segment to host your application. Connect to workload portgroup in vCenter to access this overlay segment.

    NsxVtepVlanId string

    The OCID of the VLAN used by the SDDC for the NSX VTEP component of the VMware environment.

    ProvisioningSubnetId string

    The OCID of the management subnet used to provision the SDDC.

    ProvisioningVlanId string

    The OCID of the VLAN used by the SDDC for the Provisioning component of the VMware environment.

    RefreshHcxLicenseStatus bool
    ReplicationVlanId string

    The OCID of the VLAN used by the SDDC for the vSphere Replication component of the VMware environment.

    ReservingHcxOnPremiseLicenseKeys []string
    SshAuthorizedKeys string

    One or more public SSH keys to be included in the ~/.ssh/authorized_keys file for the default user on each ESXi host. Use a newline character to separate multiple keys. The SSH keys must be in the format required for the authorized_keys file.

    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

    The date and time current HCX Enterprise billing cycle ends, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    TimeHcxLicenseStatusUpdated string

    The date and time the SDDC's HCX on-premise license status was updated, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    TimeUpdated string

    The date and time the SDDC was updated, in the format defined by RFC3339.

    UpgradeLicenses []GetSddcsSddcCollectionUpgradeLicense

    The vSphere licenses to use when upgrading the SDDC.

    VcenterFqdn string

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

    VcenterInitialPassword string

    The SDDC includes an administrator username and initial password for vCenter. Make sure to change this initial vCenter password to a different value.

    VcenterPrivateIpId string

    The OCID of the PrivateIp object that is the virtual IP (VIP) for vCenter. For information about PrivateIp objects, see the Core Services API.

    VcenterUsername string

    The SDDC includes an administrator username and initial password for vCenter. You can change this initial username to a different value in vCenter.

    VmotionVlanId string

    The OCID of the VLAN used by the SDDC for the vMotion component of the VMware environment.

    VmwareSoftwareVersion string

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

    VsanVlanId string

    The OCID of the VLAN used by the SDDC for the vSAN component of the VMware environment.

    VsphereUpgradeGuide string

    The link to guidance for upgrading vSphere.

    VsphereUpgradeObjects []GetSddcsSddcCollectionVsphereUpgradeObject

    The links to binary objects needed to upgrade vSphere.

    VsphereVlanId string

    The OCID of the VLAN used by the SDDC for the vSphere component of the VMware environment.

    WorkloadNetworkCidr string

    The CIDR block for the IP addresses that VMware VMs in the SDDC use to run application workloads.

    actualEsxiHostsCount Integer

    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

    The OCID of the Capacity Reservation.

    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

    datastores List<GetSddcsSddcCollectionDatastore>

    Datastores used for the Sddc.

    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

    The number of ESXi hosts in the SDDC.

    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

    The SDDC includes an administrator username and initial password for HCX Manager. Make sure to change this initial HCX Manager password to a different value.

    hcxOnPremKey String

    The activation keys to use on the on-premises HCX Enterprise appliances you site pair with HCX Manager in your VMware Solution. The number of keys provided depends on the HCX license type. HCX Advanced provides 3 activation keys. HCX Enterprise provides 10 activation keys.

    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

    The OCID of the PrivateIp object that is the virtual IP (VIP) for HCX Manager. For information about PrivateIp objects, see the Core Services API.

    hcxVlanId String

    The OCID of the VLAN used by the SDDC for the HCX component of the VMware environment.

    id String

    The OCID of the SDDC.

    initialHostOcpuCount Double

    The initial OCPU count of the SDDC's ESXi hosts.

    initialHostShapeName String

    The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.

    initialSku String

    The billing option selected during SDDC creation. ListSupportedSkus.

    instanceDisplayNamePrefix String

    A prefix used in the name of each ESXi host and Compute instance in the SDDC. If this isn't set, the SDDC's displayName is used as the prefix.

    isHcxEnabled Boolean

    Indicates whether HCX is enabled for this SDDC.

    isHcxEnterpriseEnabled Boolean

    Indicates whether HCX Enterprise is enabled for this SDDC.

    isHcxPendingDowngrade Boolean

    Indicates whether SDDC is pending downgrade from HCX Enterprise to HCX Advanced.

    isShieldedInstanceEnabled Boolean

    Indicates whether shielded instance is enabled at the SDDC level.

    isSingleHostSddc Boolean

    Indicates whether this SDDC is designated for only single ESXi host.

    nsxEdgeUplink1vlanId String

    The OCID of the VLAN used by the SDDC for the NSX Edge Uplink 1 component of the VMware environment.

    nsxEdgeUplink2vlanId String

    The OCID of the VLAN used by the SDDC for the NSX Edge Uplink 2 component of the VMware environment.

    nsxEdgeUplinkIpId String

    The OCID of the PrivateIp object that is the virtual IP (VIP) for the NSX Edge Uplink. Use this OCID as the route target for route table rules when setting up connectivity between the SDDC and other networks. For information about PrivateIp objects, see the Core Services API.

    nsxEdgeVtepVlanId String

    The OCID of the VLAN used by the SDDC for the NSX Edge VTEP component of the VMware environment.

    nsxManagerFqdn String

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

    nsxManagerInitialPassword String

    The SDDC includes an administrator username and initial password for NSX Manager. Make sure to change this initial NSX Manager password to a different value.

    nsxManagerPrivateIpId String

    The OCID of the PrivateIp object that is the virtual IP (VIP) for NSX Manager. For information about PrivateIp objects, see the Core Services API.

    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

    The VMware NSX overlay workload segment to host your application. Connect to workload portgroup in vCenter to access this overlay segment.

    nsxVtepVlanId String

    The OCID of the VLAN used by the SDDC for the NSX VTEP component of the VMware environment.

    provisioningSubnetId String

    The OCID of the management subnet used to provision the SDDC.

    provisioningVlanId String

    The OCID of the VLAN used by the SDDC for the Provisioning component of the VMware environment.

    refreshHcxLicenseStatus Boolean
    replicationVlanId String

    The OCID of the VLAN used by the SDDC for the vSphere Replication component of the VMware environment.

    reservingHcxOnPremiseLicenseKeys List<String>
    sshAuthorizedKeys String

    One or more public SSH keys to be included in the ~/.ssh/authorized_keys file for the default user on each ESXi host. Use a newline character to separate multiple keys. The SSH keys must be in the format required for the authorized_keys file.

    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

    The date and time current HCX Enterprise billing cycle ends, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    timeHcxLicenseStatusUpdated String

    The date and time the SDDC's HCX on-premise license status was updated, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    timeUpdated String

    The date and time the SDDC was updated, in the format defined by RFC3339.

    upgradeLicenses List<GetSddcsSddcCollectionUpgradeLicense>

    The vSphere licenses to use when upgrading the SDDC.

    vcenterFqdn String

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

    vcenterInitialPassword String

    The SDDC includes an administrator username and initial password for vCenter. Make sure to change this initial vCenter password to a different value.

    vcenterPrivateIpId String

    The OCID of the PrivateIp object that is the virtual IP (VIP) for vCenter. For information about PrivateIp objects, see the Core Services API.

    vcenterUsername String

    The SDDC includes an administrator username and initial password for vCenter. You can change this initial username to a different value in vCenter.

    vmotionVlanId String

    The OCID of the VLAN used by the SDDC for the vMotion component of the VMware environment.

    vmwareSoftwareVersion String

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

    vsanVlanId String

    The OCID of the VLAN used by the SDDC for the vSAN component of the VMware environment.

    vsphereUpgradeGuide String

    The link to guidance for upgrading vSphere.

    vsphereUpgradeObjects List<GetSddcsSddcCollectionVsphereUpgradeObject>

    The links to binary objects needed to upgrade vSphere.

    vsphereVlanId String

    The OCID of the VLAN used by the SDDC for the vSphere component of the VMware environment.

    workloadNetworkCidr String

    The CIDR block for the IP addresses that VMware VMs in the SDDC use to run application workloads.

    actualEsxiHostsCount number

    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

    The OCID of the Capacity Reservation.

    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

    datastores GetSddcsSddcCollectionDatastore[]

    Datastores used for the Sddc.

    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

    The number of ESXi hosts in the SDDC.

    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

    The SDDC includes an administrator username and initial password for HCX Manager. Make sure to change this initial HCX Manager password to a different value.

    hcxOnPremKey string

    The activation keys to use on the on-premises HCX Enterprise appliances you site pair with HCX Manager in your VMware Solution. The number of keys provided depends on the HCX license type. HCX Advanced provides 3 activation keys. HCX Enterprise provides 10 activation keys.

    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

    The OCID of the PrivateIp object that is the virtual IP (VIP) for HCX Manager. For information about PrivateIp objects, see the Core Services API.

    hcxVlanId string

    The OCID of the VLAN used by the SDDC for the HCX component of the VMware environment.

    id string

    The OCID of the SDDC.

    initialHostOcpuCount number

    The initial OCPU count of the SDDC's ESXi hosts.

    initialHostShapeName string

    The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.

    initialSku string

    The billing option selected during SDDC creation. ListSupportedSkus.

    instanceDisplayNamePrefix string

    A prefix used in the name of each ESXi host and Compute instance in the SDDC. If this isn't set, the SDDC's displayName is used as the prefix.

    isHcxEnabled boolean

    Indicates whether HCX is enabled for this SDDC.

    isHcxEnterpriseEnabled boolean

    Indicates whether HCX Enterprise is enabled for this SDDC.

    isHcxPendingDowngrade boolean

    Indicates whether SDDC is pending downgrade from HCX Enterprise to HCX Advanced.

    isShieldedInstanceEnabled boolean

    Indicates whether shielded instance is enabled at the SDDC level.

    isSingleHostSddc boolean

    Indicates whether this SDDC is designated for only single ESXi host.

    nsxEdgeUplink1vlanId string

    The OCID of the VLAN used by the SDDC for the NSX Edge Uplink 1 component of the VMware environment.

    nsxEdgeUplink2vlanId string

    The OCID of the VLAN used by the SDDC for the NSX Edge Uplink 2 component of the VMware environment.

    nsxEdgeUplinkIpId string

    The OCID of the PrivateIp object that is the virtual IP (VIP) for the NSX Edge Uplink. Use this OCID as the route target for route table rules when setting up connectivity between the SDDC and other networks. For information about PrivateIp objects, see the Core Services API.

    nsxEdgeVtepVlanId string

    The OCID of the VLAN used by the SDDC for the NSX Edge VTEP component of the VMware environment.

    nsxManagerFqdn string

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

    nsxManagerInitialPassword string

    The SDDC includes an administrator username and initial password for NSX Manager. Make sure to change this initial NSX Manager password to a different value.

    nsxManagerPrivateIpId string

    The OCID of the PrivateIp object that is the virtual IP (VIP) for NSX Manager. For information about PrivateIp objects, see the Core Services API.

    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

    The VMware NSX overlay workload segment to host your application. Connect to workload portgroup in vCenter to access this overlay segment.

    nsxVtepVlanId string

    The OCID of the VLAN used by the SDDC for the NSX VTEP component of the VMware environment.

    provisioningSubnetId string

    The OCID of the management subnet used to provision the SDDC.

    provisioningVlanId string

    The OCID of the VLAN used by the SDDC for the Provisioning component of the VMware environment.

    refreshHcxLicenseStatus boolean
    replicationVlanId string

    The OCID of the VLAN used by the SDDC for the vSphere Replication component of the VMware environment.

    reservingHcxOnPremiseLicenseKeys string[]
    sshAuthorizedKeys string

    One or more public SSH keys to be included in the ~/.ssh/authorized_keys file for the default user on each ESXi host. Use a newline character to separate multiple keys. The SSH keys must be in the format required for the authorized_keys file.

    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

    The date and time current HCX Enterprise billing cycle ends, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    timeHcxLicenseStatusUpdated string

    The date and time the SDDC's HCX on-premise license status was updated, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    timeUpdated string

    The date and time the SDDC was updated, in the format defined by RFC3339.

    upgradeLicenses GetSddcsSddcCollectionUpgradeLicense[]

    The vSphere licenses to use when upgrading the SDDC.

    vcenterFqdn string

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

    vcenterInitialPassword string

    The SDDC includes an administrator username and initial password for vCenter. Make sure to change this initial vCenter password to a different value.

    vcenterPrivateIpId string

    The OCID of the PrivateIp object that is the virtual IP (VIP) for vCenter. For information about PrivateIp objects, see the Core Services API.

    vcenterUsername string

    The SDDC includes an administrator username and initial password for vCenter. You can change this initial username to a different value in vCenter.

    vmotionVlanId string

    The OCID of the VLAN used by the SDDC for the vMotion component of the VMware environment.

    vmwareSoftwareVersion string

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

    vsanVlanId string

    The OCID of the VLAN used by the SDDC for the vSAN component of the VMware environment.

    vsphereUpgradeGuide string

    The link to guidance for upgrading vSphere.

    vsphereUpgradeObjects GetSddcsSddcCollectionVsphereUpgradeObject[]

    The links to binary objects needed to upgrade vSphere.

    vsphereVlanId string

    The OCID of the VLAN used by the SDDC for the vSphere component of the VMware environment.

    workloadNetworkCidr string

    The CIDR block for the IP addresses that VMware VMs in the SDDC use to run application workloads.

    actual_esxi_hosts_count int

    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

    The OCID of the Capacity Reservation.

    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

    datastores GetSddcsSddcCollectionDatastore]

    Datastores used for the Sddc.

    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

    The number of ESXi hosts in the SDDC.

    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

    The SDDC includes an administrator username and initial password for HCX Manager. Make sure to change this initial HCX Manager password to a different value.

    hcx_on_prem_key str

    The activation keys to use on the on-premises HCX Enterprise appliances you site pair with HCX Manager in your VMware Solution. The number of keys provided depends on the HCX license type. HCX Advanced provides 3 activation keys. HCX Enterprise provides 10 activation keys.

    hcx_on_prem_licenses 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

    The OCID of the PrivateIp object that is the virtual IP (VIP) for HCX Manager. For information about PrivateIp objects, see the Core Services API.

    hcx_vlan_id str

    The OCID of the VLAN used by the SDDC for the HCX component of the VMware environment.

    id str

    The OCID of the SDDC.

    initial_host_ocpu_count float

    The initial OCPU count of the SDDC's ESXi hosts.

    initial_host_shape_name str

    The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.

    initial_sku str

    The billing option selected during SDDC creation. ListSupportedSkus.

    instance_display_name_prefix str

    A prefix used in the name of each ESXi host and Compute instance in the SDDC. If this isn't set, the SDDC's displayName is used as the prefix.

    is_hcx_enabled bool

    Indicates whether HCX is enabled for this SDDC.

    is_hcx_enterprise_enabled bool

    Indicates whether HCX Enterprise is enabled for this SDDC.

    is_hcx_pending_downgrade bool

    Indicates whether SDDC is pending downgrade from HCX Enterprise to HCX Advanced.

    is_shielded_instance_enabled bool

    Indicates whether shielded instance is enabled at the SDDC level.

    is_single_host_sddc bool

    Indicates whether this SDDC is designated for only single ESXi host.

    nsx_edge_uplink1vlan_id str

    The OCID of the VLAN used by the SDDC for the NSX Edge Uplink 1 component of the VMware environment.

    nsx_edge_uplink2vlan_id str

    The OCID of the VLAN used by the SDDC for the NSX Edge Uplink 2 component of the VMware environment.

    nsx_edge_uplink_ip_id str

    The OCID of the PrivateIp object that is the virtual IP (VIP) for the NSX Edge Uplink. Use this OCID as the route target for route table rules when setting up connectivity between the SDDC and other networks. For information about PrivateIp objects, see the Core Services API.

    nsx_edge_vtep_vlan_id str

    The OCID of the VLAN used by the SDDC for the NSX Edge VTEP component of the VMware environment.

    nsx_manager_fqdn str

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

    nsx_manager_initial_password str

    The SDDC includes an administrator username and initial password for NSX Manager. Make sure to change this initial NSX Manager password to a different value.

    nsx_manager_private_ip_id str

    The OCID of the PrivateIp object that is the virtual IP (VIP) for NSX Manager. For information about PrivateIp objects, see the Core Services API.

    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

    The VMware NSX overlay workload segment to host your application. Connect to workload portgroup in vCenter to access this overlay segment.

    nsx_vtep_vlan_id str

    The OCID of the VLAN used by the SDDC for the NSX VTEP component of the VMware environment.

    provisioning_subnet_id str

    The OCID of the management subnet used to provision the SDDC.

    provisioning_vlan_id str

    The OCID of the VLAN used by the SDDC for the Provisioning component of the VMware environment.

    refresh_hcx_license_status bool
    replication_vlan_id str

    The OCID of the VLAN used by the SDDC for the vSphere Replication component of the VMware environment.

    reserving_hcx_on_premise_license_keys Sequence[str]
    ssh_authorized_keys str

    One or more public SSH keys to be included in the ~/.ssh/authorized_keys file for the default user on each ESXi host. Use a newline character to separate multiple keys. The SSH keys must be in the format required for the authorized_keys file.

    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

    The date and time current HCX Enterprise billing cycle ends, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    time_hcx_license_status_updated str

    The date and time the SDDC's HCX on-premise license status was updated, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    time_updated str

    The date and time the SDDC was updated, in the format defined by RFC3339.

    upgrade_licenses GetSddcsSddcCollectionUpgradeLicense]

    The vSphere licenses to use when upgrading the SDDC.

    vcenter_fqdn str

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

    vcenter_initial_password str

    The SDDC includes an administrator username and initial password for vCenter. Make sure to change this initial vCenter password to a different value.

    vcenter_private_ip_id str

    The OCID of the PrivateIp object that is the virtual IP (VIP) for vCenter. For information about PrivateIp objects, see the Core Services API.

    vcenter_username str

    The SDDC includes an administrator username and initial password for vCenter. You can change this initial username to a different value in vCenter.

    vmotion_vlan_id str

    The OCID of the VLAN used by the SDDC for the vMotion component of the VMware environment.

    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

    The OCID of the VLAN used by the SDDC for the vSAN component of the VMware environment.

    vsphere_upgrade_guide str

    The link to guidance for upgrading vSphere.

    vsphere_upgrade_objects GetSddcsSddcCollectionVsphereUpgradeObject]

    The links to binary objects needed to upgrade vSphere.

    vsphere_vlan_id str

    The OCID of the VLAN used by the SDDC for the vSphere component of the VMware environment.

    workload_network_cidr str

    The CIDR block for the IP addresses that VMware VMs in the SDDC use to run application workloads.

    actualEsxiHostsCount Number

    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

    The OCID of the Capacity Reservation.

    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

    datastores List<Property Map>

    Datastores used for the Sddc.

    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

    The number of ESXi hosts in the SDDC.

    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

    The SDDC includes an administrator username and initial password for HCX Manager. Make sure to change this initial HCX Manager password to a different value.

    hcxOnPremKey String

    The activation keys to use on the on-premises HCX Enterprise appliances you site pair with HCX Manager in your VMware Solution. The number of keys provided depends on the HCX license type. HCX Advanced provides 3 activation keys. HCX Enterprise provides 10 activation keys.

    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

    The OCID of the PrivateIp object that is the virtual IP (VIP) for HCX Manager. For information about PrivateIp objects, see the Core Services API.

    hcxVlanId String

    The OCID of the VLAN used by the SDDC for the HCX component of the VMware environment.

    id String

    The OCID of the SDDC.

    initialHostOcpuCount Number

    The initial OCPU count of the SDDC's ESXi hosts.

    initialHostShapeName String

    The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.

    initialSku String

    The billing option selected during SDDC creation. ListSupportedSkus.

    instanceDisplayNamePrefix String

    A prefix used in the name of each ESXi host and Compute instance in the SDDC. If this isn't set, the SDDC's displayName is used as the prefix.

    isHcxEnabled Boolean

    Indicates whether HCX is enabled for this SDDC.

    isHcxEnterpriseEnabled Boolean

    Indicates whether HCX Enterprise is enabled for this SDDC.

    isHcxPendingDowngrade Boolean

    Indicates whether SDDC is pending downgrade from HCX Enterprise to HCX Advanced.

    isShieldedInstanceEnabled Boolean

    Indicates whether shielded instance is enabled at the SDDC level.

    isSingleHostSddc Boolean

    Indicates whether this SDDC is designated for only single ESXi host.

    nsxEdgeUplink1vlanId String

    The OCID of the VLAN used by the SDDC for the NSX Edge Uplink 1 component of the VMware environment.

    nsxEdgeUplink2vlanId String

    The OCID of the VLAN used by the SDDC for the NSX Edge Uplink 2 component of the VMware environment.

    nsxEdgeUplinkIpId String

    The OCID of the PrivateIp object that is the virtual IP (VIP) for the NSX Edge Uplink. Use this OCID as the route target for route table rules when setting up connectivity between the SDDC and other networks. For information about PrivateIp objects, see the Core Services API.

    nsxEdgeVtepVlanId String

    The OCID of the VLAN used by the SDDC for the NSX Edge VTEP component of the VMware environment.

    nsxManagerFqdn String

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

    nsxManagerInitialPassword String

    The SDDC includes an administrator username and initial password for NSX Manager. Make sure to change this initial NSX Manager password to a different value.

    nsxManagerPrivateIpId String

    The OCID of the PrivateIp object that is the virtual IP (VIP) for NSX Manager. For information about PrivateIp objects, see the Core Services API.

    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

    The VMware NSX overlay workload segment to host your application. Connect to workload portgroup in vCenter to access this overlay segment.

    nsxVtepVlanId String

    The OCID of the VLAN used by the SDDC for the NSX VTEP component of the VMware environment.

    provisioningSubnetId String

    The OCID of the management subnet used to provision the SDDC.

    provisioningVlanId String

    The OCID of the VLAN used by the SDDC for the Provisioning component of the VMware environment.

    refreshHcxLicenseStatus Boolean
    replicationVlanId String

    The OCID of the VLAN used by the SDDC for the vSphere Replication component of the VMware environment.

    reservingHcxOnPremiseLicenseKeys List<String>
    sshAuthorizedKeys String

    One or more public SSH keys to be included in the ~/.ssh/authorized_keys file for the default user on each ESXi host. Use a newline character to separate multiple keys. The SSH keys must be in the format required for the authorized_keys file.

    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

    The date and time current HCX Enterprise billing cycle ends, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    timeHcxLicenseStatusUpdated String

    The date and time the SDDC's HCX on-premise license status was updated, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    timeUpdated String

    The date and time the SDDC was updated, in the format defined by RFC3339.

    upgradeLicenses List<Property Map>

    The vSphere licenses to use when upgrading the SDDC.

    vcenterFqdn String

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

    vcenterInitialPassword String

    The SDDC includes an administrator username and initial password for vCenter. Make sure to change this initial vCenter password to a different value.

    vcenterPrivateIpId String

    The OCID of the PrivateIp object that is the virtual IP (VIP) for vCenter. For information about PrivateIp objects, see the Core Services API.

    vcenterUsername String

    The SDDC includes an administrator username and initial password for vCenter. You can change this initial username to a different value in vCenter.

    vmotionVlanId String

    The OCID of the VLAN used by the SDDC for the vMotion component of the VMware environment.

    vmwareSoftwareVersion String

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

    vsanVlanId String

    The OCID of the VLAN used by the SDDC for the vSAN component of the VMware environment.

    vsphereUpgradeGuide String

    The link to guidance for upgrading vSphere.

    vsphereUpgradeObjects List<Property Map>

    The links to binary objects needed to upgrade vSphere.

    vsphereVlanId String

    The OCID of the VLAN used by the SDDC for the vSphere component of the VMware environment.

    workloadNetworkCidr String

    The CIDR block for the IP addresses that VMware VMs in the SDDC use to run application workloads.

    GetSddcsSddcCollectionDatastore

    BlockVolumeIds List<string>

    A list of OCIDs of Block Storage Volumes.

    Capacity double

    Size of the Block Storage Volume in GB.

    DatastoreType string

    Type of the datastore.

    BlockVolumeIds []string

    A list of OCIDs of Block Storage Volumes.

    Capacity float64

    Size of the Block Storage Volume in GB.

    DatastoreType string

    Type of the datastore.

    blockVolumeIds List<String>

    A list of OCIDs of Block Storage Volumes.

    capacity Double

    Size of the Block Storage Volume in GB.

    datastoreType String

    Type of the datastore.

    blockVolumeIds string[]

    A list of OCIDs of Block Storage Volumes.

    capacity number

    Size of the Block Storage Volume in GB.

    datastoreType string

    Type of the datastore.

    block_volume_ids Sequence[str]

    A list of OCIDs of Block Storage Volumes.

    capacity float

    Size of the Block Storage Volume in GB.

    datastore_type str

    Type of the datastore.

    blockVolumeIds List<String>

    A list of OCIDs of Block Storage Volumes.

    capacity Number

    Size of the Block Storage Volume in GB.

    datastoreType String

    Type of the datastore.

    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

    GetSddcsSddcCollectionUpgradeLicense

    LicenseKey string

    vSphere license key value.

    LicenseType string

    vSphere license type.

    LicenseKey string

    vSphere license key value.

    LicenseType string

    vSphere license type.

    licenseKey String

    vSphere license key value.

    licenseType String

    vSphere license type.

    licenseKey string

    vSphere license key value.

    licenseType string

    vSphere license type.

    license_key str

    vSphere license key value.

    license_type str

    vSphere license type.

    licenseKey String

    vSphere license key value.

    licenseType String

    vSphere license type.

    GetSddcsSddcCollectionVsphereUpgradeObject

    DownloadLink string

    Binary object download link.

    LinkDescription string

    Binary object description.

    DownloadLink string

    Binary object download link.

    LinkDescription string

    Binary object description.

    downloadLink String

    Binary object download link.

    linkDescription String

    Binary object description.

    downloadLink string

    Binary object download link.

    linkDescription string

    Binary object description.

    download_link str

    Binary object download link.

    link_description str

    Binary object description.

    downloadLink String

    Binary object download link.

    linkDescription String

    Binary object description.

    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.10.0 published on Thursday, Sep 7, 2023 by Pulumi