oci logo
Oracle Cloud Infrastructure v0.12.0, Mar 17 23

oci.Ocvp.Sddc

This resource provides the Sddc resource in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service.

Creates an Oracle Cloud VMware Solution software-defined data center (SDDC).

Use the WorkRequest operations to track the creation of the SDDC.

Important: You must configure the SDDC’s networking resources with the security rules detailed in Security Rules for Oracle Cloud VMware Solution SDDCs. Otherwise, provisioning the SDDC will fail. The rules are based on the requirements set by VMware.

Example Usage

using System.Collections.Generic;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testSddc = new Oci.Ocvp.Sddc("testSddc", new()
    {
        CompartmentId = @var.Compartment_id,
        ComputeAvailabilityDomain = @var.Sddc_compute_availability_domain,
        EsxiHostsCount = @var.Sddc_esxi_hosts_count,
        NsxEdgeUplink1vlanId = oci_core_vlan.Test_nsx_edge_uplink1vlan.Id,
        NsxEdgeUplink2vlanId = oci_core_vlan.Test_nsx_edge_uplink2vlan.Id,
        NsxEdgeVtepVlanId = oci_core_vlan.Test_nsx_edge_vtep_vlan.Id,
        NsxVtepVlanId = oci_core_vlan.Test_nsx_vtep_vlan.Id,
        ProvisioningSubnetId = oci_core_subnet.Test_subnet.Id,
        SshAuthorizedKeys = @var.Sddc_ssh_authorized_keys,
        VmotionVlanId = oci_core_vlan.Test_vmotion_vlan.Id,
        VmwareSoftwareVersion = @var.Sddc_vmware_software_version,
        VsanVlanId = oci_core_vlan.Test_vsan_vlan.Id,
        VsphereVlanId = oci_core_vlan.Test_vsphere_vlan.Id,
        CapacityReservationId = oci_ocvp_capacity_reservation.Test_capacity_reservation.Id,
        DefinedTags = 
        {
            { "Operations.CostCenter", "42" },
        },
        DisplayName = @var.Sddc_display_name,
        FreeformTags = 
        {
            { "Department", "Finance" },
        },
        HcxAction = @var.Hcx_action,
        HcxVlanId = oci_core_vlan.Test_vlan.Id,
        InitialHostOcpuCount = @var.Sddc_initial_host_ocpu_count,
        InitialHostShapeName = oci_core_shape.Test_shape.Name,
        InitialSku = @var.Sddc_initial_sku,
        InstanceDisplayNamePrefix = @var.Sddc_instance_display_name_prefix,
        IsHcxEnabled = @var.Sddc_is_hcx_enabled,
        IsShieldedInstanceEnabled = @var.Sddc_is_shielded_instance_enabled,
        IsSingleHostSddc = @var.Sddc_is_single_host_sddc,
        ProvisioningVlanId = oci_core_vlan.Test_vlan.Id,
        RefreshHcxLicenseStatus = true,
        ReplicationVlanId = oci_core_vlan.Test_vlan.Id,
        ReservingHcxOnPremiseLicenseKeys = @var.Reserving_hcx_on_premise_license_keys,
        WorkloadNetworkCidr = @var.Sddc_workload_network_cidr,
    });

});
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.NewSddc(ctx, "testSddc", &Ocvp.SddcArgs{
			CompartmentId:             pulumi.Any(_var.Compartment_id),
			ComputeAvailabilityDomain: pulumi.Any(_var.Sddc_compute_availability_domain),
			EsxiHostsCount:            pulumi.Any(_var.Sddc_esxi_hosts_count),
			NsxEdgeUplink1vlanId:      pulumi.Any(oci_core_vlan.Test_nsx_edge_uplink1vlan.Id),
			NsxEdgeUplink2vlanId:      pulumi.Any(oci_core_vlan.Test_nsx_edge_uplink2vlan.Id),
			NsxEdgeVtepVlanId:         pulumi.Any(oci_core_vlan.Test_nsx_edge_vtep_vlan.Id),
			NsxVtepVlanId:             pulumi.Any(oci_core_vlan.Test_nsx_vtep_vlan.Id),
			ProvisioningSubnetId:      pulumi.Any(oci_core_subnet.Test_subnet.Id),
			SshAuthorizedKeys:         pulumi.Any(_var.Sddc_ssh_authorized_keys),
			VmotionVlanId:             pulumi.Any(oci_core_vlan.Test_vmotion_vlan.Id),
			VmwareSoftwareVersion:     pulumi.Any(_var.Sddc_vmware_software_version),
			VsanVlanId:                pulumi.Any(oci_core_vlan.Test_vsan_vlan.Id),
			VsphereVlanId:             pulumi.Any(oci_core_vlan.Test_vsphere_vlan.Id),
			CapacityReservationId:     pulumi.Any(oci_ocvp_capacity_reservation.Test_capacity_reservation.Id),
			DefinedTags: pulumi.AnyMap{
				"Operations.CostCenter": pulumi.Any("42"),
			},
			DisplayName: pulumi.Any(_var.Sddc_display_name),
			FreeformTags: pulumi.AnyMap{
				"Department": pulumi.Any("Finance"),
			},
			HcxAction:                        pulumi.Any(_var.Hcx_action),
			HcxVlanId:                        pulumi.Any(oci_core_vlan.Test_vlan.Id),
			InitialHostOcpuCount:             pulumi.Any(_var.Sddc_initial_host_ocpu_count),
			InitialHostShapeName:             pulumi.Any(oci_core_shape.Test_shape.Name),
			InitialSku:                       pulumi.Any(_var.Sddc_initial_sku),
			InstanceDisplayNamePrefix:        pulumi.Any(_var.Sddc_instance_display_name_prefix),
			IsHcxEnabled:                     pulumi.Any(_var.Sddc_is_hcx_enabled),
			IsShieldedInstanceEnabled:        pulumi.Any(_var.Sddc_is_shielded_instance_enabled),
			IsSingleHostSddc:                 pulumi.Any(_var.Sddc_is_single_host_sddc),
			ProvisioningVlanId:               pulumi.Any(oci_core_vlan.Test_vlan.Id),
			RefreshHcxLicenseStatus:          pulumi.Bool(true),
			ReplicationVlanId:                pulumi.Any(oci_core_vlan.Test_vlan.Id),
			ReservingHcxOnPremiseLicenseKeys: pulumi.Any(_var.Reserving_hcx_on_premise_license_keys),
			WorkloadNetworkCidr:              pulumi.Any(_var.Sddc_workload_network_cidr),
		})
		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.Sddc;
import com.pulumi.oci.Ocvp.SddcArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var testSddc = new Sddc("testSddc", SddcArgs.builder()        
            .compartmentId(var_.compartment_id())
            .computeAvailabilityDomain(var_.sddc_compute_availability_domain())
            .esxiHostsCount(var_.sddc_esxi_hosts_count())
            .nsxEdgeUplink1vlanId(oci_core_vlan.test_nsx_edge_uplink1vlan().id())
            .nsxEdgeUplink2vlanId(oci_core_vlan.test_nsx_edge_uplink2vlan().id())
            .nsxEdgeVtepVlanId(oci_core_vlan.test_nsx_edge_vtep_vlan().id())
            .nsxVtepVlanId(oci_core_vlan.test_nsx_vtep_vlan().id())
            .provisioningSubnetId(oci_core_subnet.test_subnet().id())
            .sshAuthorizedKeys(var_.sddc_ssh_authorized_keys())
            .vmotionVlanId(oci_core_vlan.test_vmotion_vlan().id())
            .vmwareSoftwareVersion(var_.sddc_vmware_software_version())
            .vsanVlanId(oci_core_vlan.test_vsan_vlan().id())
            .vsphereVlanId(oci_core_vlan.test_vsphere_vlan().id())
            .capacityReservationId(oci_ocvp_capacity_reservation.test_capacity_reservation().id())
            .definedTags(Map.of("Operations.CostCenter", "42"))
            .displayName(var_.sddc_display_name())
            .freeformTags(Map.of("Department", "Finance"))
            .hcxAction(var_.hcx_action())
            .hcxVlanId(oci_core_vlan.test_vlan().id())
            .initialHostOcpuCount(var_.sddc_initial_host_ocpu_count())
            .initialHostShapeName(oci_core_shape.test_shape().name())
            .initialSku(var_.sddc_initial_sku())
            .instanceDisplayNamePrefix(var_.sddc_instance_display_name_prefix())
            .isHcxEnabled(var_.sddc_is_hcx_enabled())
            .isShieldedInstanceEnabled(var_.sddc_is_shielded_instance_enabled())
            .isSingleHostSddc(var_.sddc_is_single_host_sddc())
            .provisioningVlanId(oci_core_vlan.test_vlan().id())
            .refreshHcxLicenseStatus(true)
            .replicationVlanId(oci_core_vlan.test_vlan().id())
            .reservingHcxOnPremiseLicenseKeys(var_.reserving_hcx_on_premise_license_keys())
            .workloadNetworkCidr(var_.sddc_workload_network_cidr())
            .build());

    }
}
import pulumi
import pulumi_oci as oci

test_sddc = oci.ocvp.Sddc("testSddc",
    compartment_id=var["compartment_id"],
    compute_availability_domain=var["sddc_compute_availability_domain"],
    esxi_hosts_count=var["sddc_esxi_hosts_count"],
    nsx_edge_uplink1vlan_id=oci_core_vlan["test_nsx_edge_uplink1vlan"]["id"],
    nsx_edge_uplink2vlan_id=oci_core_vlan["test_nsx_edge_uplink2vlan"]["id"],
    nsx_edge_vtep_vlan_id=oci_core_vlan["test_nsx_edge_vtep_vlan"]["id"],
    nsx_vtep_vlan_id=oci_core_vlan["test_nsx_vtep_vlan"]["id"],
    provisioning_subnet_id=oci_core_subnet["test_subnet"]["id"],
    ssh_authorized_keys=var["sddc_ssh_authorized_keys"],
    vmotion_vlan_id=oci_core_vlan["test_vmotion_vlan"]["id"],
    vmware_software_version=var["sddc_vmware_software_version"],
    vsan_vlan_id=oci_core_vlan["test_vsan_vlan"]["id"],
    vsphere_vlan_id=oci_core_vlan["test_vsphere_vlan"]["id"],
    capacity_reservation_id=oci_ocvp_capacity_reservation["test_capacity_reservation"]["id"],
    defined_tags={
        "Operations.CostCenter": "42",
    },
    display_name=var["sddc_display_name"],
    freeform_tags={
        "Department": "Finance",
    },
    hcx_action=var["hcx_action"],
    hcx_vlan_id=oci_core_vlan["test_vlan"]["id"],
    initial_host_ocpu_count=var["sddc_initial_host_ocpu_count"],
    initial_host_shape_name=oci_core_shape["test_shape"]["name"],
    initial_sku=var["sddc_initial_sku"],
    instance_display_name_prefix=var["sddc_instance_display_name_prefix"],
    is_hcx_enabled=var["sddc_is_hcx_enabled"],
    is_shielded_instance_enabled=var["sddc_is_shielded_instance_enabled"],
    is_single_host_sddc=var["sddc_is_single_host_sddc"],
    provisioning_vlan_id=oci_core_vlan["test_vlan"]["id"],
    refresh_hcx_license_status=True,
    replication_vlan_id=oci_core_vlan["test_vlan"]["id"],
    reserving_hcx_on_premise_license_keys=var["reserving_hcx_on_premise_license_keys"],
    workload_network_cidr=var["sddc_workload_network_cidr"])
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testSddc = new oci.ocvp.Sddc("testSddc", {
    compartmentId: _var.compartment_id,
    computeAvailabilityDomain: _var.sddc_compute_availability_domain,
    esxiHostsCount: _var.sddc_esxi_hosts_count,
    nsxEdgeUplink1vlanId: oci_core_vlan.test_nsx_edge_uplink1vlan.id,
    nsxEdgeUplink2vlanId: oci_core_vlan.test_nsx_edge_uplink2vlan.id,
    nsxEdgeVtepVlanId: oci_core_vlan.test_nsx_edge_vtep_vlan.id,
    nsxVtepVlanId: oci_core_vlan.test_nsx_vtep_vlan.id,
    provisioningSubnetId: oci_core_subnet.test_subnet.id,
    sshAuthorizedKeys: _var.sddc_ssh_authorized_keys,
    vmotionVlanId: oci_core_vlan.test_vmotion_vlan.id,
    vmwareSoftwareVersion: _var.sddc_vmware_software_version,
    vsanVlanId: oci_core_vlan.test_vsan_vlan.id,
    vsphereVlanId: oci_core_vlan.test_vsphere_vlan.id,
    capacityReservationId: oci_ocvp_capacity_reservation.test_capacity_reservation.id,
    definedTags: {
        "Operations.CostCenter": "42",
    },
    displayName: _var.sddc_display_name,
    freeformTags: {
        Department: "Finance",
    },
    hcxAction: _var.hcx_action,
    hcxVlanId: oci_core_vlan.test_vlan.id,
    initialHostOcpuCount: _var.sddc_initial_host_ocpu_count,
    initialHostShapeName: oci_core_shape.test_shape.name,
    initialSku: _var.sddc_initial_sku,
    instanceDisplayNamePrefix: _var.sddc_instance_display_name_prefix,
    isHcxEnabled: _var.sddc_is_hcx_enabled,
    isShieldedInstanceEnabled: _var.sddc_is_shielded_instance_enabled,
    isSingleHostSddc: _var.sddc_is_single_host_sddc,
    provisioningVlanId: oci_core_vlan.test_vlan.id,
    refreshHcxLicenseStatus: true,
    replicationVlanId: oci_core_vlan.test_vlan.id,
    reservingHcxOnPremiseLicenseKeys: _var.reserving_hcx_on_premise_license_keys,
    workloadNetworkCidr: _var.sddc_workload_network_cidr,
});
resources:
  testSddc:
    type: oci:Ocvp:Sddc
    properties:
      #Required
      compartmentId: ${var.compartment_id}
      computeAvailabilityDomain: ${var.sddc_compute_availability_domain}
      esxiHostsCount: ${var.sddc_esxi_hosts_count}
      nsxEdgeUplink1vlanId: ${oci_core_vlan.test_nsx_edge_uplink1vlan.id}
      nsxEdgeUplink2vlanId: ${oci_core_vlan.test_nsx_edge_uplink2vlan.id}
      nsxEdgeVtepVlanId: ${oci_core_vlan.test_nsx_edge_vtep_vlan.id}
      nsxVtepVlanId: ${oci_core_vlan.test_nsx_vtep_vlan.id}
      provisioningSubnetId: ${oci_core_subnet.test_subnet.id}
      sshAuthorizedKeys: ${var.sddc_ssh_authorized_keys}
      vmotionVlanId: ${oci_core_vlan.test_vmotion_vlan.id}
      vmwareSoftwareVersion: ${var.sddc_vmware_software_version}
      vsanVlanId: ${oci_core_vlan.test_vsan_vlan.id}
      vsphereVlanId: ${oci_core_vlan.test_vsphere_vlan.id}
      #Optional
      capacityReservationId: ${oci_ocvp_capacity_reservation.test_capacity_reservation.id}
      definedTags:
        Operations.CostCenter: '42'
      displayName: ${var.sddc_display_name}
      freeformTags:
        Department: Finance
      hcxAction: ${var.hcx_action}
      hcxVlanId: ${oci_core_vlan.test_vlan.id}
      initialHostOcpuCount: ${var.sddc_initial_host_ocpu_count}
      initialHostShapeName: ${oci_core_shape.test_shape.name}
      initialSku: ${var.sddc_initial_sku}
      instanceDisplayNamePrefix: ${var.sddc_instance_display_name_prefix}
      isHcxEnabled: ${var.sddc_is_hcx_enabled}
      isShieldedInstanceEnabled: ${var.sddc_is_shielded_instance_enabled}
      isSingleHostSddc: ${var.sddc_is_single_host_sddc}
      provisioningVlanId: ${oci_core_vlan.test_vlan.id}
      refreshHcxLicenseStatus: true
      replicationVlanId: ${oci_core_vlan.test_vlan.id}
      reservingHcxOnPremiseLicenseKeys: ${var.reserving_hcx_on_premise_license_keys}
      workloadNetworkCidr: ${var.sddc_workload_network_cidr}

Create Sddc Resource

new Sddc(name: string, args: SddcArgs, opts?: CustomResourceOptions);
@overload
def Sddc(resource_name: str,
         opts: Optional[ResourceOptions] = None,
         capacity_reservation_id: Optional[str] = None,
         compartment_id: Optional[str] = None,
         compute_availability_domain: Optional[str] = None,
         defined_tags: Optional[Mapping[str, Any]] = None,
         display_name: Optional[str] = None,
         esxi_hosts_count: Optional[int] = None,
         freeform_tags: Optional[Mapping[str, Any]] = None,
         hcx_action: Optional[str] = None,
         hcx_vlan_id: Optional[str] = None,
         initial_host_ocpu_count: Optional[float] = None,
         initial_host_shape_name: Optional[str] = None,
         initial_sku: Optional[str] = None,
         instance_display_name_prefix: Optional[str] = None,
         is_hcx_enabled: Optional[bool] = None,
         is_shielded_instance_enabled: Optional[bool] = None,
         is_single_host_sddc: Optional[bool] = None,
         nsx_edge_uplink1vlan_id: Optional[str] = None,
         nsx_edge_uplink2vlan_id: Optional[str] = None,
         nsx_edge_vtep_vlan_id: Optional[str] = None,
         nsx_vtep_vlan_id: Optional[str] = None,
         provisioning_subnet_id: Optional[str] = None,
         provisioning_vlan_id: Optional[str] = None,
         refresh_hcx_license_status: Optional[bool] = None,
         replication_vlan_id: Optional[str] = None,
         reserving_hcx_on_premise_license_keys: Optional[Sequence[str]] = None,
         ssh_authorized_keys: Optional[str] = None,
         vmotion_vlan_id: Optional[str] = None,
         vmware_software_version: Optional[str] = None,
         vsan_vlan_id: Optional[str] = None,
         vsphere_vlan_id: Optional[str] = None,
         workload_network_cidr: Optional[str] = None)
@overload
def Sddc(resource_name: str,
         args: SddcArgs,
         opts: Optional[ResourceOptions] = None)
func NewSddc(ctx *Context, name string, args SddcArgs, opts ...ResourceOption) (*Sddc, error)
public Sddc(string name, SddcArgs args, CustomResourceOptions? opts = null)
public Sddc(String name, SddcArgs args)
public Sddc(String name, SddcArgs args, CustomResourceOptions options)
type: oci:Ocvp:Sddc
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args SddcArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
args SddcArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args SddcArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args SddcArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args SddcArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Sddc Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

The Sddc resource accepts the following input properties:

CompartmentId string

(Updatable) The OCID of the compartment to contain the SDDC.

ComputeAvailabilityDomain string

The availability domain to create the SDDC's ESXi hosts in. For multi-AD SDDC deployment, set to multi-AD.

EsxiHostsCount int

The number of ESXi hosts to create in the SDDC. You can add more hosts later (see CreateEsxiHost). Creating a SDDC with a ESXi host count of 1 will be considered a single ESXi host SDDC.

NsxEdgeUplink1vlanId string

(Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 1 component of the VMware environment.

NsxEdgeUplink2vlanId string

(Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 2 component of the VMware environment.

NsxEdgeVtepVlanId string

(Updatable) The OCID of the VLAN to use for the NSX Edge VTEP component of the VMware environment.

NsxVtepVlanId string

(Updatable) The OCID of the VLAN to use for the NSX VTEP component of the VMware environment.

ProvisioningSubnetId string

The OCID of the management subnet to use for provisioning the SDDC.

SshAuthorizedKeys string

(Updatable) 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

VmotionVlanId string

(Updatable) The OCID of the VLAN to use for the vMotion component of the VMware environment.

VmwareSoftwareVersion string

(Updatable) The VMware software bundle to install on the ESXi hosts in the SDDC. To get a list of the available versions, use ListSupportedVmwareSoftwareVersions.

VsanVlanId string

(Updatable) The OCID of the VLAN to use for the vSAN component of the VMware environment.

VsphereVlanId string

(Updatable) The OCID of the VLAN to use for the vSphere component of the VMware environment.

CapacityReservationId string

The OCID of the Capacity Reservation.

DefinedTags Dictionary<string, object>

(Updatable) 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

(Updatable) A descriptive name for the SDDC. SDDC name requirements are 1-16 character length limit, Must start with a letter, Must be English letters, numbers, - only, No repeating hyphens, Must be unique within the region. Avoid entering confidential information.

FreeformTags Dictionary<string, object>

(Updatable) 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

(Updatable) The action to be performed upon HCX licenses. "UPGRADE" will upgrade the SDDC from HCX Advanced to HCX Enterprise. "DOWNGRADE" will downgrade the SDDC from HCX Enterprise to HCX Advanced after current HCX Enterprise billing cycle end date. "CANCEL_DOWNGRADE" will cancel the pending downgrade of HCX licenses. The action will only be performed when its value is changed. This field can also be used to enable HCX Enterprise during SDDC creation. If "UPGRADE" is set during SDDC creation, the SDDC will be created with HCX Enterprise enable. Supported actions during update: UPGRADE, DOWNGRADE, CANCEL_DOWNGRADE. Supported actions during creation: UPGRADE.

HcxVlanId string

(Updatable) The OCID of the VLAN to use for the HCX component of the VMware environment. This value is required only when isHcxEnabled is true.

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 to enable HCX for this SDDC.

IsShieldedInstanceEnabled bool

Indicates whether shielded instance is enabled for this SDDC.

IsSingleHostSddc bool

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

ProvisioningVlanId string

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

RefreshHcxLicenseStatus bool

(Updatable) HCX on-premise licenses status will be refreshed whenever the value of this field is changed.

ReplicationVlanId string

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

ReservingHcxOnPremiseLicenseKeys List<string>

(Updatable) The HCX on-premise licenses to be reserved when downgrade from HCX Enterprise to HCX Advanced. It should not be provided during resource creation. It is required and can only be set when the hcx_action is "DOWNGRADE". Its value can only be changed when hcx_action is updated.

WorkloadNetworkCidr string

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

CompartmentId string

(Updatable) The OCID of the compartment to contain the SDDC.

ComputeAvailabilityDomain string

The availability domain to create the SDDC's ESXi hosts in. For multi-AD SDDC deployment, set to multi-AD.

EsxiHostsCount int

The number of ESXi hosts to create in the SDDC. You can add more hosts later (see CreateEsxiHost). Creating a SDDC with a ESXi host count of 1 will be considered a single ESXi host SDDC.

NsxEdgeUplink1vlanId string

(Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 1 component of the VMware environment.

NsxEdgeUplink2vlanId string

(Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 2 component of the VMware environment.

NsxEdgeVtepVlanId string

(Updatable) The OCID of the VLAN to use for the NSX Edge VTEP component of the VMware environment.

NsxVtepVlanId string

(Updatable) The OCID of the VLAN to use for the NSX VTEP component of the VMware environment.

ProvisioningSubnetId string

The OCID of the management subnet to use for provisioning the SDDC.

SshAuthorizedKeys string

(Updatable) 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

VmotionVlanId string

(Updatable) The OCID of the VLAN to use for the vMotion component of the VMware environment.

VmwareSoftwareVersion string

(Updatable) The VMware software bundle to install on the ESXi hosts in the SDDC. To get a list of the available versions, use ListSupportedVmwareSoftwareVersions.

VsanVlanId string

(Updatable) The OCID of the VLAN to use for the vSAN component of the VMware environment.

VsphereVlanId string

(Updatable) The OCID of the VLAN to use for the vSphere component of the VMware environment.

CapacityReservationId string

The OCID of the Capacity Reservation.

DefinedTags map[string]interface{}

(Updatable) 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

(Updatable) A descriptive name for the SDDC. SDDC name requirements are 1-16 character length limit, Must start with a letter, Must be English letters, numbers, - only, No repeating hyphens, Must be unique within the region. Avoid entering confidential information.

FreeformTags map[string]interface{}

(Updatable) 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

(Updatable) The action to be performed upon HCX licenses. "UPGRADE" will upgrade the SDDC from HCX Advanced to HCX Enterprise. "DOWNGRADE" will downgrade the SDDC from HCX Enterprise to HCX Advanced after current HCX Enterprise billing cycle end date. "CANCEL_DOWNGRADE" will cancel the pending downgrade of HCX licenses. The action will only be performed when its value is changed. This field can also be used to enable HCX Enterprise during SDDC creation. If "UPGRADE" is set during SDDC creation, the SDDC will be created with HCX Enterprise enable. Supported actions during update: UPGRADE, DOWNGRADE, CANCEL_DOWNGRADE. Supported actions during creation: UPGRADE.

HcxVlanId string

(Updatable) The OCID of the VLAN to use for the HCX component of the VMware environment. This value is required only when isHcxEnabled is true.

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 to enable HCX for this SDDC.

IsShieldedInstanceEnabled bool

Indicates whether shielded instance is enabled for this SDDC.

IsSingleHostSddc bool

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

ProvisioningVlanId string

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

RefreshHcxLicenseStatus bool

(Updatable) HCX on-premise licenses status will be refreshed whenever the value of this field is changed.

ReplicationVlanId string

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

ReservingHcxOnPremiseLicenseKeys []string

(Updatable) The HCX on-premise licenses to be reserved when downgrade from HCX Enterprise to HCX Advanced. It should not be provided during resource creation. It is required and can only be set when the hcx_action is "DOWNGRADE". Its value can only be changed when hcx_action is updated.

WorkloadNetworkCidr string

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

compartmentId String

(Updatable) The OCID of the compartment to contain the SDDC.

computeAvailabilityDomain String

The availability domain to create the SDDC's ESXi hosts in. For multi-AD SDDC deployment, set to multi-AD.

esxiHostsCount Integer

The number of ESXi hosts to create in the SDDC. You can add more hosts later (see CreateEsxiHost). Creating a SDDC with a ESXi host count of 1 will be considered a single ESXi host SDDC.

nsxEdgeUplink1vlanId String

(Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 1 component of the VMware environment.

nsxEdgeUplink2vlanId String

(Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 2 component of the VMware environment.

nsxEdgeVtepVlanId String

(Updatable) The OCID of the VLAN to use for the NSX Edge VTEP component of the VMware environment.

nsxVtepVlanId String

(Updatable) The OCID of the VLAN to use for the NSX VTEP component of the VMware environment.

provisioningSubnetId String

The OCID of the management subnet to use for provisioning the SDDC.

sshAuthorizedKeys String

(Updatable) 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

vmotionVlanId String

(Updatable) The OCID of the VLAN to use for the vMotion component of the VMware environment.

vmwareSoftwareVersion String

(Updatable) The VMware software bundle to install on the ESXi hosts in the SDDC. To get a list of the available versions, use ListSupportedVmwareSoftwareVersions.

vsanVlanId String

(Updatable) The OCID of the VLAN to use for the vSAN component of the VMware environment.

vsphereVlanId String

(Updatable) The OCID of the VLAN to use for the vSphere component of the VMware environment.

capacityReservationId String

The OCID of the Capacity Reservation.

definedTags Map<String,Object>

(Updatable) 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

(Updatable) A descriptive name for the SDDC. SDDC name requirements are 1-16 character length limit, Must start with a letter, Must be English letters, numbers, - only, No repeating hyphens, Must be unique within the region. Avoid entering confidential information.

freeformTags Map<String,Object>

(Updatable) 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

(Updatable) The action to be performed upon HCX licenses. "UPGRADE" will upgrade the SDDC from HCX Advanced to HCX Enterprise. "DOWNGRADE" will downgrade the SDDC from HCX Enterprise to HCX Advanced after current HCX Enterprise billing cycle end date. "CANCEL_DOWNGRADE" will cancel the pending downgrade of HCX licenses. The action will only be performed when its value is changed. This field can also be used to enable HCX Enterprise during SDDC creation. If "UPGRADE" is set during SDDC creation, the SDDC will be created with HCX Enterprise enable. Supported actions during update: UPGRADE, DOWNGRADE, CANCEL_DOWNGRADE. Supported actions during creation: UPGRADE.

hcxVlanId String

(Updatable) The OCID of the VLAN to use for the HCX component of the VMware environment. This value is required only when isHcxEnabled is true.

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 to enable HCX for this SDDC.

isShieldedInstanceEnabled Boolean

Indicates whether shielded instance is enabled for this SDDC.

isSingleHostSddc Boolean

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

provisioningVlanId String

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

refreshHcxLicenseStatus Boolean

(Updatable) HCX on-premise licenses status will be refreshed whenever the value of this field is changed.

replicationVlanId String

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

reservingHcxOnPremiseLicenseKeys List<String>

(Updatable) The HCX on-premise licenses to be reserved when downgrade from HCX Enterprise to HCX Advanced. It should not be provided during resource creation. It is required and can only be set when the hcx_action is "DOWNGRADE". Its value can only be changed when hcx_action is updated.

workloadNetworkCidr String

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

compartmentId string

(Updatable) The OCID of the compartment to contain the SDDC.

computeAvailabilityDomain string

The availability domain to create the SDDC's ESXi hosts in. For multi-AD SDDC deployment, set to multi-AD.

esxiHostsCount number

The number of ESXi hosts to create in the SDDC. You can add more hosts later (see CreateEsxiHost). Creating a SDDC with a ESXi host count of 1 will be considered a single ESXi host SDDC.

nsxEdgeUplink1vlanId string

(Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 1 component of the VMware environment.

nsxEdgeUplink2vlanId string

(Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 2 component of the VMware environment.

nsxEdgeVtepVlanId string

(Updatable) The OCID of the VLAN to use for the NSX Edge VTEP component of the VMware environment.

nsxVtepVlanId string

(Updatable) The OCID of the VLAN to use for the NSX VTEP component of the VMware environment.

provisioningSubnetId string

The OCID of the management subnet to use for provisioning the SDDC.

sshAuthorizedKeys string

(Updatable) 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

vmotionVlanId string

(Updatable) The OCID of the VLAN to use for the vMotion component of the VMware environment.

vmwareSoftwareVersion string

(Updatable) The VMware software bundle to install on the ESXi hosts in the SDDC. To get a list of the available versions, use ListSupportedVmwareSoftwareVersions.

vsanVlanId string

(Updatable) The OCID of the VLAN to use for the vSAN component of the VMware environment.

vsphereVlanId string

(Updatable) The OCID of the VLAN to use for the vSphere component of the VMware environment.

capacityReservationId string

The OCID of the Capacity Reservation.

definedTags {[key: string]: any}

(Updatable) 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

(Updatable) A descriptive name for the SDDC. SDDC name requirements are 1-16 character length limit, Must start with a letter, Must be English letters, numbers, - only, No repeating hyphens, Must be unique within the region. Avoid entering confidential information.

freeformTags {[key: string]: any}

(Updatable) 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

(Updatable) The action to be performed upon HCX licenses. "UPGRADE" will upgrade the SDDC from HCX Advanced to HCX Enterprise. "DOWNGRADE" will downgrade the SDDC from HCX Enterprise to HCX Advanced after current HCX Enterprise billing cycle end date. "CANCEL_DOWNGRADE" will cancel the pending downgrade of HCX licenses. The action will only be performed when its value is changed. This field can also be used to enable HCX Enterprise during SDDC creation. If "UPGRADE" is set during SDDC creation, the SDDC will be created with HCX Enterprise enable. Supported actions during update: UPGRADE, DOWNGRADE, CANCEL_DOWNGRADE. Supported actions during creation: UPGRADE.

hcxVlanId string

(Updatable) The OCID of the VLAN to use for the HCX component of the VMware environment. This value is required only when isHcxEnabled is true.

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 to enable HCX for this SDDC.

isShieldedInstanceEnabled boolean

Indicates whether shielded instance is enabled for this SDDC.

isSingleHostSddc boolean

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

provisioningVlanId string

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

refreshHcxLicenseStatus boolean

(Updatable) HCX on-premise licenses status will be refreshed whenever the value of this field is changed.

replicationVlanId string

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

reservingHcxOnPremiseLicenseKeys string[]

(Updatable) The HCX on-premise licenses to be reserved when downgrade from HCX Enterprise to HCX Advanced. It should not be provided during resource creation. It is required and can only be set when the hcx_action is "DOWNGRADE". Its value can only be changed when hcx_action is updated.

workloadNetworkCidr string

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

compartment_id str

(Updatable) The OCID of the compartment to contain the SDDC.

compute_availability_domain str

The availability domain to create the SDDC's ESXi hosts in. For multi-AD SDDC deployment, set to multi-AD.

esxi_hosts_count int

The number of ESXi hosts to create in the SDDC. You can add more hosts later (see CreateEsxiHost). Creating a SDDC with a ESXi host count of 1 will be considered a single ESXi host SDDC.

nsx_edge_uplink1vlan_id str

(Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 1 component of the VMware environment.

nsx_edge_uplink2vlan_id str

(Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 2 component of the VMware environment.

nsx_edge_vtep_vlan_id str

(Updatable) The OCID of the VLAN to use for the NSX Edge VTEP component of the VMware environment.

nsx_vtep_vlan_id str

(Updatable) The OCID of the VLAN to use for the NSX VTEP component of the VMware environment.

provisioning_subnet_id str

The OCID of the management subnet to use for provisioning the SDDC.

ssh_authorized_keys str

(Updatable) 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

vmotion_vlan_id str

(Updatable) The OCID of the VLAN to use for the vMotion component of the VMware environment.

vmware_software_version str

(Updatable) The VMware software bundle to install on the ESXi hosts in the SDDC. To get a list of the available versions, use ListSupportedVmwareSoftwareVersions.

vsan_vlan_id str

(Updatable) The OCID of the VLAN to use for the vSAN component of the VMware environment.

vsphere_vlan_id str

(Updatable) The OCID of the VLAN to use for the vSphere component of the VMware environment.

capacity_reservation_id str

The OCID of the Capacity Reservation.

defined_tags Mapping[str, Any]

(Updatable) 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

(Updatable) A descriptive name for the SDDC. SDDC name requirements are 1-16 character length limit, Must start with a letter, Must be English letters, numbers, - only, No repeating hyphens, Must be unique within the region. Avoid entering confidential information.

freeform_tags Mapping[str, Any]

(Updatable) 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

(Updatable) The action to be performed upon HCX licenses. "UPGRADE" will upgrade the SDDC from HCX Advanced to HCX Enterprise. "DOWNGRADE" will downgrade the SDDC from HCX Enterprise to HCX Advanced after current HCX Enterprise billing cycle end date. "CANCEL_DOWNGRADE" will cancel the pending downgrade of HCX licenses. The action will only be performed when its value is changed. This field can also be used to enable HCX Enterprise during SDDC creation. If "UPGRADE" is set during SDDC creation, the SDDC will be created with HCX Enterprise enable. Supported actions during update: UPGRADE, DOWNGRADE, CANCEL_DOWNGRADE. Supported actions during creation: UPGRADE.

hcx_vlan_id str

(Updatable) The OCID of the VLAN to use for the HCX component of the VMware environment. This value is required only when isHcxEnabled is true.

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 to enable HCX for this SDDC.

is_shielded_instance_enabled bool

Indicates whether shielded instance is enabled for this SDDC.

is_single_host_sddc bool

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

provisioning_vlan_id str

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

refresh_hcx_license_status bool

(Updatable) HCX on-premise licenses status will be refreshed whenever the value of this field is changed.

replication_vlan_id str

(Updatable) 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]

(Updatable) The HCX on-premise licenses to be reserved when downgrade from HCX Enterprise to HCX Advanced. It should not be provided during resource creation. It is required and can only be set when the hcx_action is "DOWNGRADE". Its value can only be changed when hcx_action is updated.

workload_network_cidr str

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

compartmentId String

(Updatable) The OCID of the compartment to contain the SDDC.

computeAvailabilityDomain String

The availability domain to create the SDDC's ESXi hosts in. For multi-AD SDDC deployment, set to multi-AD.

esxiHostsCount Number

The number of ESXi hosts to create in the SDDC. You can add more hosts later (see CreateEsxiHost). Creating a SDDC with a ESXi host count of 1 will be considered a single ESXi host SDDC.

nsxEdgeUplink1vlanId String

(Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 1 component of the VMware environment.

nsxEdgeUplink2vlanId String

(Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 2 component of the VMware environment.

nsxEdgeVtepVlanId String

(Updatable) The OCID of the VLAN to use for the NSX Edge VTEP component of the VMware environment.

nsxVtepVlanId String

(Updatable) The OCID of the VLAN to use for the NSX VTEP component of the VMware environment.

provisioningSubnetId String

The OCID of the management subnet to use for provisioning the SDDC.

sshAuthorizedKeys String

(Updatable) 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

vmotionVlanId String

(Updatable) The OCID of the VLAN to use for the vMotion component of the VMware environment.

vmwareSoftwareVersion String

(Updatable) The VMware software bundle to install on the ESXi hosts in the SDDC. To get a list of the available versions, use ListSupportedVmwareSoftwareVersions.

vsanVlanId String

(Updatable) The OCID of the VLAN to use for the vSAN component of the VMware environment.

vsphereVlanId String

(Updatable) The OCID of the VLAN to use for the vSphere component of the VMware environment.

capacityReservationId String

The OCID of the Capacity Reservation.

definedTags Map<Any>

(Updatable) 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

(Updatable) A descriptive name for the SDDC. SDDC name requirements are 1-16 character length limit, Must start with a letter, Must be English letters, numbers, - only, No repeating hyphens, Must be unique within the region. Avoid entering confidential information.

freeformTags Map<Any>

(Updatable) 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

(Updatable) The action to be performed upon HCX licenses. "UPGRADE" will upgrade the SDDC from HCX Advanced to HCX Enterprise. "DOWNGRADE" will downgrade the SDDC from HCX Enterprise to HCX Advanced after current HCX Enterprise billing cycle end date. "CANCEL_DOWNGRADE" will cancel the pending downgrade of HCX licenses. The action will only be performed when its value is changed. This field can also be used to enable HCX Enterprise during SDDC creation. If "UPGRADE" is set during SDDC creation, the SDDC will be created with HCX Enterprise enable. Supported actions during update: UPGRADE, DOWNGRADE, CANCEL_DOWNGRADE. Supported actions during creation: UPGRADE.

hcxVlanId String

(Updatable) The OCID of the VLAN to use for the HCX component of the VMware environment. This value is required only when isHcxEnabled is true.

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 to enable HCX for this SDDC.

isShieldedInstanceEnabled Boolean

Indicates whether shielded instance is enabled for this SDDC.

isSingleHostSddc Boolean

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

provisioningVlanId String

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

refreshHcxLicenseStatus Boolean

(Updatable) HCX on-premise licenses status will be refreshed whenever the value of this field is changed.

replicationVlanId String

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

reservingHcxOnPremiseLicenseKeys List<String>

(Updatable) The HCX on-premise licenses to be reserved when downgrade from HCX Enterprise to HCX Advanced. It should not be provided during resource creation. It is required and can only be set when the hcx_action is "DOWNGRADE". Its value can only be changed when hcx_action is updated.

workloadNetworkCidr String

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

Outputs

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

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.

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

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.

Id string

The provider-assigned unique ID for this managed resource.

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.

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.

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.

State string

The current state of the SDDC.

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

The vSphere licenses to be used when upgrade 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.

VsphereUpgradeGuide string

The link of guidance to upgrade vSphere.

VsphereUpgradeObjects List<SddcVsphereUpgradeObject>

The links of binary objects needed for upgrade vSphere.

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.

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 []SddcHcxOnPremLicense

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.

Id string

The provider-assigned unique ID for this managed resource.

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.

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.

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.

State string

The current state of the SDDC.

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 []SddcUpgradeLicense

The vSphere licenses to be used when upgrade 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.

VsphereUpgradeGuide string

The link of guidance to upgrade vSphere.

VsphereUpgradeObjects []SddcVsphereUpgradeObject

The links of binary objects needed for upgrade vSphere.

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.

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

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.

id String

The provider-assigned unique ID for this managed resource.

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.

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.

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.

state String

The current state of the SDDC.

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

The vSphere licenses to be used when upgrade 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.

vsphereUpgradeGuide String

The link of guidance to upgrade vSphere.

vsphereUpgradeObjects List<SddcVsphereUpgradeObject>

The links of binary objects needed for upgrade vSphere.

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.

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 SddcHcxOnPremLicense[]

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.

id string

The provider-assigned unique ID for this managed resource.

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.

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.

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.

state string

The current state of the SDDC.

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 SddcUpgradeLicense[]

The vSphere licenses to be used when upgrade 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.

vsphereUpgradeGuide string

The link of guidance to upgrade vSphere.

vsphereUpgradeObjects SddcVsphereUpgradeObject[]

The links of binary objects needed for upgrade vSphere.

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.

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

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.

id str

The provider-assigned unique ID for this managed resource.

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.

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

state str

The current state of the SDDC.

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

The vSphere licenses to be used when upgrade 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.

vsphere_upgrade_guide str

The link of guidance to upgrade vSphere.

vsphere_upgrade_objects SddcVsphereUpgradeObject]

The links of binary objects needed for upgrade vSphere.

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.

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.

id String

The provider-assigned unique ID for this managed resource.

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.

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.

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.

state String

The current state of the SDDC.

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 be used when upgrade 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.

vsphereUpgradeGuide String

The link of guidance to upgrade vSphere.

vsphereUpgradeObjects List<Property Map>

The links of binary objects needed for upgrade vSphere.

Look up Existing Sddc Resource

Get an existing Sddc resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: SddcState, opts?: CustomResourceOptions): Sddc
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        actual_esxi_hosts_count: Optional[int] = None,
        capacity_reservation_id: Optional[str] = None,
        compartment_id: Optional[str] = None,
        compute_availability_domain: Optional[str] = None,
        defined_tags: Optional[Mapping[str, Any]] = None,
        display_name: Optional[str] = None,
        esxi_hosts_count: Optional[int] = None,
        freeform_tags: Optional[Mapping[str, Any]] = None,
        hcx_action: Optional[str] = None,
        hcx_fqdn: Optional[str] = None,
        hcx_initial_password: Optional[str] = None,
        hcx_on_prem_key: Optional[str] = None,
        hcx_on_prem_licenses: Optional[Sequence[_ocvp.SddcHcxOnPremLicenseArgs]] = None,
        hcx_private_ip_id: Optional[str] = None,
        hcx_vlan_id: Optional[str] = None,
        initial_host_ocpu_count: Optional[float] = None,
        initial_host_shape_name: Optional[str] = None,
        initial_sku: Optional[str] = None,
        instance_display_name_prefix: Optional[str] = None,
        is_hcx_enabled: Optional[bool] = None,
        is_hcx_enterprise_enabled: Optional[bool] = None,
        is_hcx_pending_downgrade: Optional[bool] = None,
        is_shielded_instance_enabled: Optional[bool] = None,
        is_single_host_sddc: Optional[bool] = None,
        nsx_edge_uplink1vlan_id: Optional[str] = None,
        nsx_edge_uplink2vlan_id: Optional[str] = None,
        nsx_edge_uplink_ip_id: Optional[str] = None,
        nsx_edge_vtep_vlan_id: Optional[str] = None,
        nsx_manager_fqdn: Optional[str] = None,
        nsx_manager_initial_password: Optional[str] = None,
        nsx_manager_private_ip_id: Optional[str] = None,
        nsx_manager_username: Optional[str] = None,
        nsx_overlay_segment_name: Optional[str] = None,
        nsx_vtep_vlan_id: Optional[str] = None,
        provisioning_subnet_id: Optional[str] = None,
        provisioning_vlan_id: Optional[str] = None,
        refresh_hcx_license_status: Optional[bool] = None,
        replication_vlan_id: Optional[str] = None,
        reserving_hcx_on_premise_license_keys: Optional[Sequence[str]] = None,
        ssh_authorized_keys: Optional[str] = None,
        state: Optional[str] = None,
        time_created: Optional[str] = None,
        time_hcx_billing_cycle_end: Optional[str] = None,
        time_hcx_license_status_updated: Optional[str] = None,
        time_updated: Optional[str] = None,
        upgrade_licenses: Optional[Sequence[_ocvp.SddcUpgradeLicenseArgs]] = None,
        vcenter_fqdn: Optional[str] = None,
        vcenter_initial_password: Optional[str] = None,
        vcenter_private_ip_id: Optional[str] = None,
        vcenter_username: Optional[str] = None,
        vmotion_vlan_id: Optional[str] = None,
        vmware_software_version: Optional[str] = None,
        vsan_vlan_id: Optional[str] = None,
        vsphere_upgrade_guide: Optional[str] = None,
        vsphere_upgrade_objects: Optional[Sequence[_ocvp.SddcVsphereUpgradeObjectArgs]] = None,
        vsphere_vlan_id: Optional[str] = None,
        workload_network_cidr: Optional[str] = None) -> Sddc
func GetSddc(ctx *Context, name string, id IDInput, state *SddcState, opts ...ResourceOption) (*Sddc, error)
public static Sddc Get(string name, Input<string> id, SddcState? state, CustomResourceOptions? opts = null)
public static Sddc get(String name, Output<String> id, SddcState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
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

(Updatable) The OCID of the compartment to contain the SDDC.

ComputeAvailabilityDomain string

The availability domain to create the SDDC's ESXi hosts in. For multi-AD SDDC deployment, set to multi-AD.

DefinedTags Dictionary<string, object>

(Updatable) 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

(Updatable) A descriptive name for the SDDC. SDDC name requirements are 1-16 character length limit, Must start with a letter, Must be English letters, numbers, - only, No repeating hyphens, Must be unique within the region. Avoid entering confidential information.

EsxiHostsCount int

The number of ESXi hosts to create in the SDDC. You can add more hosts later (see CreateEsxiHost). Creating a SDDC with a ESXi host count of 1 will be considered a single ESXi host SDDC.

FreeformTags Dictionary<string, object>

(Updatable) 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

(Updatable) The action to be performed upon HCX licenses. "UPGRADE" will upgrade the SDDC from HCX Advanced to HCX Enterprise. "DOWNGRADE" will downgrade the SDDC from HCX Enterprise to HCX Advanced after current HCX Enterprise billing cycle end date. "CANCEL_DOWNGRADE" will cancel the pending downgrade of HCX licenses. The action will only be performed when its value is changed. This field can also be used to enable HCX Enterprise during SDDC creation. If "UPGRADE" is set during SDDC creation, the SDDC will be created with HCX Enterprise enable. Supported actions during update: UPGRADE, DOWNGRADE, CANCEL_DOWNGRADE. Supported actions during creation: UPGRADE.

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

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

(Updatable) The OCID of the VLAN to use for the HCX component of the VMware environment. This value is required only when isHcxEnabled is true.

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 to enable HCX 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 for this SDDC.

IsSingleHostSddc bool

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

NsxEdgeUplink1vlanId string

(Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 1 component of the VMware environment.

NsxEdgeUplink2vlanId string

(Updatable) The OCID of the VLAN to use 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

(Updatable) The OCID of the VLAN to use 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

(Updatable) The OCID of the VLAN to use for the NSX VTEP component of the VMware environment.

ProvisioningSubnetId string

The OCID of the management subnet to use for provisioning the SDDC.

ProvisioningVlanId string

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

RefreshHcxLicenseStatus bool

(Updatable) HCX on-premise licenses status will be refreshed whenever the value of this field is changed.

ReplicationVlanId string

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

ReservingHcxOnPremiseLicenseKeys List<string>

(Updatable) The HCX on-premise licenses to be reserved when downgrade from HCX Enterprise to HCX Advanced. It should not be provided during resource creation. It is required and can only be set when the hcx_action is "DOWNGRADE". Its value can only be changed when hcx_action is updated.

SshAuthorizedKeys string

(Updatable) 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 current state of the SDDC.

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

The vSphere licenses to be used when upgrade 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

(Updatable) The OCID of the VLAN to use for the vMotion component of the VMware environment.

VmwareSoftwareVersion string

(Updatable) The VMware software bundle to install on the ESXi hosts in the SDDC. To get a list of the available versions, use ListSupportedVmwareSoftwareVersions.

VsanVlanId string

(Updatable) The OCID of the VLAN to use for the vSAN component of the VMware environment.

VsphereUpgradeGuide string

The link of guidance to upgrade vSphere.

VsphereUpgradeObjects List<SddcVsphereUpgradeObjectArgs>

The links of binary objects needed for upgrade vSphere.

VsphereVlanId string

(Updatable) The OCID of the VLAN to use 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

(Updatable) The OCID of the compartment to contain the SDDC.

ComputeAvailabilityDomain string

The availability domain to create the SDDC's ESXi hosts in. For multi-AD SDDC deployment, set to multi-AD.

DefinedTags map[string]interface{}

(Updatable) 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

(Updatable) A descriptive name for the SDDC. SDDC name requirements are 1-16 character length limit, Must start with a letter, Must be English letters, numbers, - only, No repeating hyphens, Must be unique within the region. Avoid entering confidential information.

EsxiHostsCount int

The number of ESXi hosts to create in the SDDC. You can add more hosts later (see CreateEsxiHost). Creating a SDDC with a ESXi host count of 1 will be considered a single ESXi host SDDC.

FreeformTags map[string]interface{}

(Updatable) 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

(Updatable) The action to be performed upon HCX licenses. "UPGRADE" will upgrade the SDDC from HCX Advanced to HCX Enterprise. "DOWNGRADE" will downgrade the SDDC from HCX Enterprise to HCX Advanced after current HCX Enterprise billing cycle end date. "CANCEL_DOWNGRADE" will cancel the pending downgrade of HCX licenses. The action will only be performed when its value is changed. This field can also be used to enable HCX Enterprise during SDDC creation. If "UPGRADE" is set during SDDC creation, the SDDC will be created with HCX Enterprise enable. Supported actions during update: UPGRADE, DOWNGRADE, CANCEL_DOWNGRADE. Supported actions during creation: UPGRADE.

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 []SddcHcxOnPremLicenseArgs

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

(Updatable) The OCID of the VLAN to use for the HCX component of the VMware environment. This value is required only when isHcxEnabled is true.

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 to enable HCX 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 for this SDDC.

IsSingleHostSddc bool

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

NsxEdgeUplink1vlanId string

(Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 1 component of the VMware environment.

NsxEdgeUplink2vlanId string

(Updatable) The OCID of the VLAN to use 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

(Updatable) The OCID of the VLAN to use 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

(Updatable) The OCID of the VLAN to use for the NSX VTEP component of the VMware environment.

ProvisioningSubnetId string

The OCID of the management subnet to use for provisioning the SDDC.

ProvisioningVlanId string

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

RefreshHcxLicenseStatus bool

(Updatable) HCX on-premise licenses status will be refreshed whenever the value of this field is changed.

ReplicationVlanId string

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

ReservingHcxOnPremiseLicenseKeys []string

(Updatable) The HCX on-premise licenses to be reserved when downgrade from HCX Enterprise to HCX Advanced. It should not be provided during resource creation. It is required and can only be set when the hcx_action is "DOWNGRADE". Its value can only be changed when hcx_action is updated.

SshAuthorizedKeys string

(Updatable) 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 current state of the SDDC.

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 []SddcUpgradeLicenseArgs

The vSphere licenses to be used when upgrade 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

(Updatable) The OCID of the VLAN to use for the vMotion component of the VMware environment.

VmwareSoftwareVersion string

(Updatable) The VMware software bundle to install on the ESXi hosts in the SDDC. To get a list of the available versions, use ListSupportedVmwareSoftwareVersions.

VsanVlanId string

(Updatable) The OCID of the VLAN to use for the vSAN component of the VMware environment.

VsphereUpgradeGuide string

The link of guidance to upgrade vSphere.

VsphereUpgradeObjects []SddcVsphereUpgradeObjectArgs

The links of binary objects needed for upgrade vSphere.

VsphereVlanId string

(Updatable) The OCID of the VLAN to use 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

(Updatable) The OCID of the compartment to contain the SDDC.

computeAvailabilityDomain String

The availability domain to create the SDDC's ESXi hosts in. For multi-AD SDDC deployment, set to multi-AD.

definedTags Map<String,Object>

(Updatable) 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

(Updatable) A descriptive name for the SDDC. SDDC name requirements are 1-16 character length limit, Must start with a letter, Must be English letters, numbers, - only, No repeating hyphens, Must be unique within the region. Avoid entering confidential information.

esxiHostsCount Integer

The number of ESXi hosts to create in the SDDC. You can add more hosts later (see CreateEsxiHost). Creating a SDDC with a ESXi host count of 1 will be considered a single ESXi host SDDC.

freeformTags Map<String,Object>

(Updatable) 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

(Updatable) The action to be performed upon HCX licenses. "UPGRADE" will upgrade the SDDC from HCX Advanced to HCX Enterprise. "DOWNGRADE" will downgrade the SDDC from HCX Enterprise to HCX Advanced after current HCX Enterprise billing cycle end date. "CANCEL_DOWNGRADE" will cancel the pending downgrade of HCX licenses. The action will only be performed when its value is changed. This field can also be used to enable HCX Enterprise during SDDC creation. If "UPGRADE" is set during SDDC creation, the SDDC will be created with HCX Enterprise enable. Supported actions during update: UPGRADE, DOWNGRADE, CANCEL_DOWNGRADE. Supported actions during creation: UPGRADE.

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

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

(Updatable) The OCID of the VLAN to use for the HCX component of the VMware environment. This value is required only when isHcxEnabled is true.

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 to enable HCX 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 for this SDDC.

isSingleHostSddc Boolean

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

nsxEdgeUplink1vlanId String

(Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 1 component of the VMware environment.

nsxEdgeUplink2vlanId String

(Updatable) The OCID of the VLAN to use 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

(Updatable) The OCID of the VLAN to use 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

(Updatable) The OCID of the VLAN to use for the NSX VTEP component of the VMware environment.

provisioningSubnetId String

The OCID of the management subnet to use for provisioning the SDDC.

provisioningVlanId String

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

refreshHcxLicenseStatus Boolean

(Updatable) HCX on-premise licenses status will be refreshed whenever the value of this field is changed.

replicationVlanId String

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

reservingHcxOnPremiseLicenseKeys List<String>

(Updatable) The HCX on-premise licenses to be reserved when downgrade from HCX Enterprise to HCX Advanced. It should not be provided during resource creation. It is required and can only be set when the hcx_action is "DOWNGRADE". Its value can only be changed when hcx_action is updated.

sshAuthorizedKeys String

(Updatable) 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 current state of the SDDC.

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

The vSphere licenses to be used when upgrade 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

(Updatable) The OCID of the VLAN to use for the vMotion component of the VMware environment.

vmwareSoftwareVersion String

(Updatable) The VMware software bundle to install on the ESXi hosts in the SDDC. To get a list of the available versions, use ListSupportedVmwareSoftwareVersions.

vsanVlanId String

(Updatable) The OCID of the VLAN to use for the vSAN component of the VMware environment.

vsphereUpgradeGuide String

The link of guidance to upgrade vSphere.

vsphereUpgradeObjects List<SddcVsphereUpgradeObjectArgs>

The links of binary objects needed for upgrade vSphere.

vsphereVlanId String

(Updatable) The OCID of the VLAN to use 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

(Updatable) The OCID of the compartment to contain the SDDC.

computeAvailabilityDomain string

The availability domain to create the SDDC's ESXi hosts in. For multi-AD SDDC deployment, set to multi-AD.

definedTags {[key: string]: any}

(Updatable) 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

(Updatable) A descriptive name for the SDDC. SDDC name requirements are 1-16 character length limit, Must start with a letter, Must be English letters, numbers, - only, No repeating hyphens, Must be unique within the region. Avoid entering confidential information.

esxiHostsCount number

The number of ESXi hosts to create in the SDDC. You can add more hosts later (see CreateEsxiHost). Creating a SDDC with a ESXi host count of 1 will be considered a single ESXi host SDDC.

freeformTags {[key: string]: any}

(Updatable) 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

(Updatable) The action to be performed upon HCX licenses. "UPGRADE" will upgrade the SDDC from HCX Advanced to HCX Enterprise. "DOWNGRADE" will downgrade the SDDC from HCX Enterprise to HCX Advanced after current HCX Enterprise billing cycle end date. "CANCEL_DOWNGRADE" will cancel the pending downgrade of HCX licenses. The action will only be performed when its value is changed. This field can also be used to enable HCX Enterprise during SDDC creation. If "UPGRADE" is set during SDDC creation, the SDDC will be created with HCX Enterprise enable. Supported actions during update: UPGRADE, DOWNGRADE, CANCEL_DOWNGRADE. Supported actions during creation: UPGRADE.

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 SddcHcxOnPremLicenseArgs[]

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

(Updatable) The OCID of the VLAN to use for the HCX component of the VMware environment. This value is required only when isHcxEnabled is true.

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 to enable HCX 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 for this SDDC.

isSingleHostSddc boolean

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

nsxEdgeUplink1vlanId string

(Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 1 component of the VMware environment.

nsxEdgeUplink2vlanId string

(Updatable) The OCID of the VLAN to use 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

(Updatable) The OCID of the VLAN to use 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

(Updatable) The OCID of the VLAN to use for the NSX VTEP component of the VMware environment.

provisioningSubnetId string

The OCID of the management subnet to use for provisioning the SDDC.

provisioningVlanId string

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

refreshHcxLicenseStatus boolean

(Updatable) HCX on-premise licenses status will be refreshed whenever the value of this field is changed.

replicationVlanId string

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

reservingHcxOnPremiseLicenseKeys string[]

(Updatable) The HCX on-premise licenses to be reserved when downgrade from HCX Enterprise to HCX Advanced. It should not be provided during resource creation. It is required and can only be set when the hcx_action is "DOWNGRADE". Its value can only be changed when hcx_action is updated.

sshAuthorizedKeys string

(Updatable) 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 current state of the SDDC.

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 SddcUpgradeLicenseArgs[]

The vSphere licenses to be used when upgrade 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

(Updatable) The OCID of the VLAN to use for the vMotion component of the VMware environment.

vmwareSoftwareVersion string

(Updatable) The VMware software bundle to install on the ESXi hosts in the SDDC. To get a list of the available versions, use ListSupportedVmwareSoftwareVersions.

vsanVlanId string

(Updatable) The OCID of the VLAN to use for the vSAN component of the VMware environment.

vsphereUpgradeGuide string

The link of guidance to upgrade vSphere.

vsphereUpgradeObjects SddcVsphereUpgradeObjectArgs[]

The links of binary objects needed for upgrade vSphere.

vsphereVlanId string

(Updatable) The OCID of the VLAN to use 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

(Updatable) The OCID of the compartment to contain the SDDC.

compute_availability_domain str

The availability domain to create the SDDC's ESXi hosts in. For multi-AD SDDC deployment, set to multi-AD.

defined_tags Mapping[str, Any]

(Updatable) 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

(Updatable) A descriptive name for the SDDC. SDDC name requirements are 1-16 character length limit, Must start with a letter, Must be English letters, numbers, - only, No repeating hyphens, Must be unique within the region. Avoid entering confidential information.

esxi_hosts_count int

The number of ESXi hosts to create in the SDDC. You can add more hosts later (see CreateEsxiHost). Creating a SDDC with a ESXi host count of 1 will be considered a single ESXi host SDDC.

freeform_tags Mapping[str, Any]

(Updatable) 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

(Updatable) The action to be performed upon HCX licenses. "UPGRADE" will upgrade the SDDC from HCX Advanced to HCX Enterprise. "DOWNGRADE" will downgrade the SDDC from HCX Enterprise to HCX Advanced after current HCX Enterprise billing cycle end date. "CANCEL_DOWNGRADE" will cancel the pending downgrade of HCX licenses. The action will only be performed when its value is changed. This field can also be used to enable HCX Enterprise during SDDC creation. If "UPGRADE" is set during SDDC creation, the SDDC will be created with HCX Enterprise enable. Supported actions during update: UPGRADE, DOWNGRADE, CANCEL_DOWNGRADE. Supported actions during creation: UPGRADE.

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

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

(Updatable) The OCID of the VLAN to use for the HCX component of the VMware environment. This value is required only when isHcxEnabled is true.

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 to enable HCX 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 for this SDDC.

is_single_host_sddc bool

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

nsx_edge_uplink1vlan_id str

(Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 1 component of the VMware environment.

nsx_edge_uplink2vlan_id str

(Updatable) The OCID of the VLAN to use 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

(Updatable) The OCID of the VLAN to use 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

(Updatable) The OCID of the VLAN to use for the NSX VTEP component of the VMware environment.

provisioning_subnet_id str

The OCID of the management subnet to use for provisioning the SDDC.

provisioning_vlan_id str

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

refresh_hcx_license_status bool

(Updatable) HCX on-premise licenses status will be refreshed whenever the value of this field is changed.

replication_vlan_id str

(Updatable) 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]

(Updatable) The HCX on-premise licenses to be reserved when downgrade from HCX Enterprise to HCX Advanced. It should not be provided during resource creation. It is required and can only be set when the hcx_action is "DOWNGRADE". Its value can only be changed when hcx_action is updated.

ssh_authorized_keys str

(Updatable) 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 current state of the SDDC.

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

The vSphere licenses to be used when upgrade 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

(Updatable) The OCID of the VLAN to use for the vMotion component of the VMware environment.

vmware_software_version str

(Updatable) The VMware software bundle to install on the ESXi hosts in the SDDC. To get a list of the available versions, use ListSupportedVmwareSoftwareVersions.

vsan_vlan_id str

(Updatable) The OCID of the VLAN to use for the vSAN component of the VMware environment.

vsphere_upgrade_guide str

The link of guidance to upgrade vSphere.

vsphere_upgrade_objects SddcVsphereUpgradeObjectArgs]

The links of binary objects needed for upgrade vSphere.

vsphere_vlan_id str

(Updatable) The OCID of the VLAN to use 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

(Updatable) The OCID of the compartment to contain the SDDC.

computeAvailabilityDomain String

The availability domain to create the SDDC's ESXi hosts in. For multi-AD SDDC deployment, set to multi-AD.

definedTags Map<Any>

(Updatable) 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

(Updatable) A descriptive name for the SDDC. SDDC name requirements are 1-16 character length limit, Must start with a letter, Must be English letters, numbers, - only, No repeating hyphens, Must be unique within the region. Avoid entering confidential information.

esxiHostsCount Number

The number of ESXi hosts to create in the SDDC. You can add more hosts later (see CreateEsxiHost). Creating a SDDC with a ESXi host count of 1 will be considered a single ESXi host SDDC.

freeformTags Map<Any>

(Updatable) 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

(Updatable) The action to be performed upon HCX licenses. "UPGRADE" will upgrade the SDDC from HCX Advanced to HCX Enterprise. "DOWNGRADE" will downgrade the SDDC from HCX Enterprise to HCX Advanced after current HCX Enterprise billing cycle end date. "CANCEL_DOWNGRADE" will cancel the pending downgrade of HCX licenses. The action will only be performed when its value is changed. This field can also be used to enable HCX Enterprise during SDDC creation. If "UPGRADE" is set during SDDC creation, the SDDC will be created with HCX Enterprise enable. Supported actions during update: UPGRADE, DOWNGRADE, CANCEL_DOWNGRADE. Supported actions during creation: UPGRADE.

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

(Updatable) The OCID of the VLAN to use for the HCX component of the VMware environment. This value is required only when isHcxEnabled is true.

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 to enable HCX 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 for this SDDC.

isSingleHostSddc Boolean

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

nsxEdgeUplink1vlanId String

(Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 1 component of the VMware environment.

nsxEdgeUplink2vlanId String

(Updatable) The OCID of the VLAN to use 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

(Updatable) The OCID of the VLAN to use 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

(Updatable) The OCID of the VLAN to use for the NSX VTEP component of the VMware environment.

provisioningSubnetId String

The OCID of the management subnet to use for provisioning the SDDC.

provisioningVlanId String

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

refreshHcxLicenseStatus Boolean

(Updatable) HCX on-premise licenses status will be refreshed whenever the value of this field is changed.

replicationVlanId String

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

reservingHcxOnPremiseLicenseKeys List<String>

(Updatable) The HCX on-premise licenses to be reserved when downgrade from HCX Enterprise to HCX Advanced. It should not be provided during resource creation. It is required and can only be set when the hcx_action is "DOWNGRADE". Its value can only be changed when hcx_action is updated.

sshAuthorizedKeys String

(Updatable) 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 current state of the SDDC.

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 be used when upgrade 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

(Updatable) The OCID of the VLAN to use for the vMotion component of the VMware environment.

vmwareSoftwareVersion String

(Updatable) The VMware software bundle to install on the ESXi hosts in the SDDC. To get a list of the available versions, use ListSupportedVmwareSoftwareVersions.

vsanVlanId String

(Updatable) The OCID of the VLAN to use for the vSAN component of the VMware environment.

vsphereUpgradeGuide String

The link of guidance to upgrade vSphere.

vsphereUpgradeObjects List<Property Map>

The links of binary objects needed for upgrade vSphere.

vsphereVlanId String

(Updatable) The OCID of the VLAN to use 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.

Supporting Types

SddcHcxOnPremLicense

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

SddcUpgradeLicense

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.

SddcVsphereUpgradeObject

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.

Import

Sddcs can be imported using the id, e.g.

 $ pulumi import oci:Ocvp/sddc:Sddc test_sddc "id"

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes

This Pulumi package is based on the oci Terraform Provider.