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)
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:
- Compartment
Id string (Updatable) The OCID of the compartment to contain the SDDC.
- Compute
Availability stringDomain The availability domain to create the SDDC's ESXi hosts in. For multi-AD SDDC deployment, set to
multi-AD
.- Esxi
Hosts intCount 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 stringUplink1vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 1 component of the VMware environment.
- Nsx
Edge stringUplink2vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 2 component of the VMware environment.
- Nsx
Edge stringVtep Vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge VTEP component of the VMware environment.
- Nsx
Vtep stringVlan Id (Updatable) The OCID of the VLAN to use for the NSX VTEP component of the VMware environment.
- Provisioning
Subnet stringId The OCID of the management subnet to use for provisioning the SDDC.
- 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 theauthorized_keys
file- Vmotion
Vlan stringId (Updatable) The OCID of the VLAN to use for the vMotion component of the VMware environment.
- Vmware
Software stringVersion (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 stringId (Updatable) The OCID of the VLAN to use for the vSAN component of the VMware environment.
- Vsphere
Vlan stringId (Updatable) The OCID of the VLAN to use for the vSphere component of the VMware environment.
- Capacity
Reservation stringId The OCID of the Capacity Reservation.
- 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"}
- Display
Name 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.
- 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"}
- Hcx
Action 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.
- Hcx
Vlan stringId (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 doubleOcpu Count The initial OCPU count of the SDDC's ESXi hosts.
- Initial
Host stringShape Name The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.
- Initial
Sku string The billing option selected during SDDC creation. ListSupportedSkus.
- Instance
Display stringName Prefix 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 boolEnabled Indicates whether to enable HCX for this SDDC.
- Is
Shielded boolInstance Enabled Indicates whether shielded instance is enabled for this SDDC.
- Is
Single boolHost Sddc Indicates whether this SDDC is designated for only single ESXi host.
- Provisioning
Vlan stringId (Updatable) The OCID of the VLAN used by the SDDC for the Provisioning component of the VMware environment.
- Refresh
Hcx boolLicense Status (Updatable) HCX on-premise licenses status will be refreshed whenever the value of this field is changed.
- Replication
Vlan stringId (Updatable) The OCID of the VLAN used by the SDDC for the vSphere Replication component of the VMware environment.
- Reserving
Hcx List<string>On Premise License Keys (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 stringCidr The CIDR block for the IP addresses that VMware VMs in the SDDC use to run application workloads.
- Compartment
Id string (Updatable) The OCID of the compartment to contain the SDDC.
- Compute
Availability stringDomain The availability domain to create the SDDC's ESXi hosts in. For multi-AD SDDC deployment, set to
multi-AD
.- Esxi
Hosts intCount 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 stringUplink1vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 1 component of the VMware environment.
- Nsx
Edge stringUplink2vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 2 component of the VMware environment.
- Nsx
Edge stringVtep Vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge VTEP component of the VMware environment.
- Nsx
Vtep stringVlan Id (Updatable) The OCID of the VLAN to use for the NSX VTEP component of the VMware environment.
- Provisioning
Subnet stringId The OCID of the management subnet to use for provisioning the SDDC.
- 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 theauthorized_keys
file- Vmotion
Vlan stringId (Updatable) The OCID of the VLAN to use for the vMotion component of the VMware environment.
- Vmware
Software stringVersion (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 stringId (Updatable) The OCID of the VLAN to use for the vSAN component of the VMware environment.
- Vsphere
Vlan stringId (Updatable) The OCID of the VLAN to use for the vSphere component of the VMware environment.
- Capacity
Reservation stringId The OCID of the Capacity Reservation.
- 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"}
- Display
Name 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.
- 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"}
- Hcx
Action 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.
- Hcx
Vlan stringId (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 float64Ocpu Count The initial OCPU count of the SDDC's ESXi hosts.
- Initial
Host stringShape Name The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.
- Initial
Sku string The billing option selected during SDDC creation. ListSupportedSkus.
- Instance
Display stringName Prefix 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 boolEnabled Indicates whether to enable HCX for this SDDC.
- Is
Shielded boolInstance Enabled Indicates whether shielded instance is enabled for this SDDC.
- Is
Single boolHost Sddc Indicates whether this SDDC is designated for only single ESXi host.
- Provisioning
Vlan stringId (Updatable) The OCID of the VLAN used by the SDDC for the Provisioning component of the VMware environment.
- Refresh
Hcx boolLicense Status (Updatable) HCX on-premise licenses status will be refreshed whenever the value of this field is changed.
- Replication
Vlan stringId (Updatable) The OCID of the VLAN used by the SDDC for the vSphere Replication component of the VMware environment.
- Reserving
Hcx []stringOn Premise License Keys (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 stringCidr The CIDR block for the IP addresses that VMware VMs in the SDDC use to run application workloads.
- compartment
Id String (Updatable) The OCID of the compartment to contain the SDDC.
- compute
Availability StringDomain The availability domain to create the SDDC's ESXi hosts in. For multi-AD SDDC deployment, set to
multi-AD
.- esxi
Hosts IntegerCount 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 StringUplink1vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 1 component of the VMware environment.
- nsx
Edge StringUplink2vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 2 component of the VMware environment.
- nsx
Edge StringVtep Vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge VTEP component of the VMware environment.
- nsx
Vtep StringVlan Id (Updatable) The OCID of the VLAN to use for the NSX VTEP component of the VMware environment.
- provisioning
Subnet StringId The OCID of the management subnet to use for provisioning the SDDC.
- 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 theauthorized_keys
file- vmotion
Vlan StringId (Updatable) The OCID of the VLAN to use for the vMotion component of the VMware environment.
- vmware
Software StringVersion (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 StringId (Updatable) The OCID of the VLAN to use for the vSAN component of the VMware environment.
- vsphere
Vlan StringId (Updatable) The OCID of the VLAN to use for the vSphere component of the VMware environment.
- capacity
Reservation StringId The OCID of the Capacity Reservation.
- 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"}
- display
Name 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.
- 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"}
- hcx
Action 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.
- hcx
Vlan StringId (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 DoubleOcpu Count The initial OCPU count of the SDDC's ESXi hosts.
- initial
Host StringShape Name The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.
- initial
Sku String The billing option selected during SDDC creation. ListSupportedSkus.
- instance
Display StringName Prefix 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 BooleanEnabled Indicates whether to enable HCX for this SDDC.
- is
Shielded BooleanInstance Enabled Indicates whether shielded instance is enabled for this SDDC.
- is
Single BooleanHost Sddc Indicates whether this SDDC is designated for only single ESXi host.
- provisioning
Vlan StringId (Updatable) The OCID of the VLAN used by the SDDC for the Provisioning component of the VMware environment.
- refresh
Hcx BooleanLicense Status (Updatable) HCX on-premise licenses status will be refreshed whenever the value of this field is changed.
- replication
Vlan StringId (Updatable) The OCID of the VLAN used by the SDDC for the vSphere Replication component of the VMware environment.
- reserving
Hcx List<String>On Premise License Keys (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 StringCidr The CIDR block for the IP addresses that VMware VMs in the SDDC use to run application workloads.
- compartment
Id string (Updatable) The OCID of the compartment to contain the SDDC.
- compute
Availability stringDomain The availability domain to create the SDDC's ESXi hosts in. For multi-AD SDDC deployment, set to
multi-AD
.- esxi
Hosts numberCount 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 stringUplink1vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 1 component of the VMware environment.
- nsx
Edge stringUplink2vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 2 component of the VMware environment.
- nsx
Edge stringVtep Vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge VTEP component of the VMware environment.
- nsx
Vtep stringVlan Id (Updatable) The OCID of the VLAN to use for the NSX VTEP component of the VMware environment.
- provisioning
Subnet stringId The OCID of the management subnet to use for provisioning the SDDC.
- 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 theauthorized_keys
file- vmotion
Vlan stringId (Updatable) The OCID of the VLAN to use for the vMotion component of the VMware environment.
- vmware
Software stringVersion (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 stringId (Updatable) The OCID of the VLAN to use for the vSAN component of the VMware environment.
- vsphere
Vlan stringId (Updatable) The OCID of the VLAN to use for the vSphere component of the VMware environment.
- capacity
Reservation stringId The OCID of the Capacity Reservation.
- {[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"}
- display
Name 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.
- {[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"}
- hcx
Action 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.
- hcx
Vlan stringId (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 numberOcpu Count The initial OCPU count of the SDDC's ESXi hosts.
- initial
Host stringShape Name The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.
- initial
Sku string The billing option selected during SDDC creation. ListSupportedSkus.
- instance
Display stringName Prefix 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 booleanEnabled Indicates whether to enable HCX for this SDDC.
- is
Shielded booleanInstance Enabled Indicates whether shielded instance is enabled for this SDDC.
- is
Single booleanHost Sddc Indicates whether this SDDC is designated for only single ESXi host.
- provisioning
Vlan stringId (Updatable) The OCID of the VLAN used by the SDDC for the Provisioning component of the VMware environment.
- refresh
Hcx booleanLicense Status (Updatable) HCX on-premise licenses status will be refreshed whenever the value of this field is changed.
- replication
Vlan stringId (Updatable) The OCID of the VLAN used by the SDDC for the vSphere Replication component of the VMware environment.
- reserving
Hcx string[]On Premise License Keys (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 stringCidr 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_ strdomain The availability domain to create the SDDC's ESXi hosts in. For multi-AD SDDC deployment, set to
multi-AD
.- esxi_
hosts_ intcount 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_ struplink1vlan_ id (Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 1 component of the VMware environment.
- nsx_
edge_ struplink2vlan_ id (Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 2 component of the VMware environment.
- nsx_
edge_ strvtep_ vlan_ id (Updatable) The OCID of the VLAN to use for the NSX Edge VTEP component of the VMware environment.
- nsx_
vtep_ strvlan_ id (Updatable) The OCID of the VLAN to use for the NSX VTEP component of the VMware environment.
- provisioning_
subnet_ strid The OCID of the management subnet to use for provisioning the SDDC.
- 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 theauthorized_keys
file- vmotion_
vlan_ strid (Updatable) The OCID of the VLAN to use for the vMotion component of the VMware environment.
- vmware_
software_ strversion (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_ strid (Updatable) The OCID of the VLAN to use for the vSAN component of the VMware environment.
- vsphere_
vlan_ strid (Updatable) The OCID of the VLAN to use for the vSphere component of the VMware environment.
- capacity_
reservation_ strid The OCID of the Capacity Reservation.
- 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.
- 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_ strid (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_ floatocpu_ count The initial OCPU count of the SDDC's ESXi hosts.
- initial_
host_ strshape_ name The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.
- initial_
sku str The billing option selected during SDDC creation. ListSupportedSkus.
- instance_
display_ strname_ prefix 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_ boolenabled Indicates whether to enable HCX for this SDDC.
- is_
shielded_ boolinstance_ enabled Indicates whether shielded instance is enabled for this SDDC.
- is_
single_ boolhost_ sddc Indicates whether this SDDC is designated for only single ESXi host.
- provisioning_
vlan_ strid (Updatable) The OCID of the VLAN used by the SDDC for the Provisioning component of the VMware environment.
- refresh_
hcx_ boollicense_ status (Updatable) HCX on-premise licenses status will be refreshed whenever the value of this field is changed.
- replication_
vlan_ strid (Updatable) The OCID of the VLAN used by the SDDC for the vSphere Replication component of the VMware environment.
- reserving_
hcx_ Sequence[str]on_ premise_ license_ keys (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_ strcidr The CIDR block for the IP addresses that VMware VMs in the SDDC use to run application workloads.
- compartment
Id String (Updatable) The OCID of the compartment to contain the SDDC.
- compute
Availability StringDomain The availability domain to create the SDDC's ESXi hosts in. For multi-AD SDDC deployment, set to
multi-AD
.- esxi
Hosts NumberCount 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 StringUplink1vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 1 component of the VMware environment.
- nsx
Edge StringUplink2vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 2 component of the VMware environment.
- nsx
Edge StringVtep Vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge VTEP component of the VMware environment.
- nsx
Vtep StringVlan Id (Updatable) The OCID of the VLAN to use for the NSX VTEP component of the VMware environment.
- provisioning
Subnet StringId The OCID of the management subnet to use for provisioning the SDDC.
- 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 theauthorized_keys
file- vmotion
Vlan StringId (Updatable) The OCID of the VLAN to use for the vMotion component of the VMware environment.
- vmware
Software StringVersion (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 StringId (Updatable) The OCID of the VLAN to use for the vSAN component of the VMware environment.
- vsphere
Vlan StringId (Updatable) The OCID of the VLAN to use for the vSphere component of the VMware environment.
- capacity
Reservation StringId The OCID of the Capacity Reservation.
- 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"}
- display
Name 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.
- 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"}
- hcx
Action 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.
- hcx
Vlan StringId (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 NumberOcpu Count The initial OCPU count of the SDDC's ESXi hosts.
- initial
Host StringShape Name The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.
- initial
Sku String The billing option selected during SDDC creation. ListSupportedSkus.
- instance
Display StringName Prefix 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 BooleanEnabled Indicates whether to enable HCX for this SDDC.
- is
Shielded BooleanInstance Enabled Indicates whether shielded instance is enabled for this SDDC.
- is
Single BooleanHost Sddc Indicates whether this SDDC is designated for only single ESXi host.
- provisioning
Vlan StringId (Updatable) The OCID of the VLAN used by the SDDC for the Provisioning component of the VMware environment.
- refresh
Hcx BooleanLicense Status (Updatable) HCX on-premise licenses status will be refreshed whenever the value of this field is changed.
- replication
Vlan StringId (Updatable) The OCID of the VLAN used by the SDDC for the vSphere Replication component of the VMware environment.
- reserving
Hcx List<String>On Premise License Keys (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 StringCidr 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:
- Actual
Esxi intHosts Count 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 string The FQDN for HCX Manager. Example:
hcx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- Hcx
Initial stringPassword 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 stringPrem Key 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 List<SddcPrem Licenses Hcx On Prem License> The activation licenses to use on the on-premises HCX Enterprise appliance you site pair with HCX Manager in your VMware Solution.
- Hcx
Private stringIp Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for HCX Manager. For information aboutPrivateIp
objects, see the Core Services API.- Id string
The provider-assigned unique ID for this managed resource.
- Is
Hcx boolEnterprise Enabled Indicates whether HCX Enterprise is enabled for this SDDC.
- Is
Hcx boolPending Downgrade Indicates whether SDDC is pending downgrade from HCX Enterprise to HCX Advanced.
- Nsx
Edge stringUplink Ip Id 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 aboutPrivateIp
objects, see the Core Services API.- Nsx
Manager stringFqdn The FQDN for NSX Manager. Example:
nsx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- Nsx
Manager stringInitial Password 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 stringPrivate Ip Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for NSX Manager. For information aboutPrivateIp
objects, see the Core Services API.- Nsx
Manager stringUsername 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 stringSegment Name 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.
- Time
Created string The date and time the SDDC was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Time
Hcx stringBilling Cycle End 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 stringLicense Status Updated 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 string The date and time the SDDC was updated, in the format defined by RFC3339.
- Upgrade
Licenses List<SddcUpgrade License> The vSphere licenses to be used when upgrade SDDC.
- Vcenter
Fqdn string The FQDN for vCenter. Example:
vcenter-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- Vcenter
Initial stringPassword 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 stringIp Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for vCenter. For information aboutPrivateIp
objects, see the Core Services API.- Vcenter
Username string 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 stringGuide The link of guidance to upgrade vSphere.
- Vsphere
Upgrade List<SddcObjects Vsphere Upgrade Object> The links of binary objects needed for upgrade vSphere.
- Actual
Esxi intHosts Count 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 string The FQDN for HCX Manager. Example:
hcx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- Hcx
Initial stringPassword 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 stringPrem Key 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 []SddcPrem Licenses Hcx On Prem License The activation licenses to use on the on-premises HCX Enterprise appliance you site pair with HCX Manager in your VMware Solution.
- Hcx
Private stringIp Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for HCX Manager. For information aboutPrivateIp
objects, see the Core Services API.- Id string
The provider-assigned unique ID for this managed resource.
- Is
Hcx boolEnterprise Enabled Indicates whether HCX Enterprise is enabled for this SDDC.
- Is
Hcx boolPending Downgrade Indicates whether SDDC is pending downgrade from HCX Enterprise to HCX Advanced.
- Nsx
Edge stringUplink Ip Id 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 aboutPrivateIp
objects, see the Core Services API.- Nsx
Manager stringFqdn The FQDN for NSX Manager. Example:
nsx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- Nsx
Manager stringInitial Password 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 stringPrivate Ip Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for NSX Manager. For information aboutPrivateIp
objects, see the Core Services API.- Nsx
Manager stringUsername 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 stringSegment Name 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.
- Time
Created string The date and time the SDDC was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Time
Hcx stringBilling Cycle End 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 stringLicense Status Updated 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 string The date and time the SDDC was updated, in the format defined by RFC3339.
- Upgrade
Licenses []SddcUpgrade License The vSphere licenses to be used when upgrade SDDC.
- Vcenter
Fqdn string The FQDN for vCenter. Example:
vcenter-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- Vcenter
Initial stringPassword 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 stringIp Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for vCenter. For information aboutPrivateIp
objects, see the Core Services API.- Vcenter
Username string 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 stringGuide The link of guidance to upgrade vSphere.
- Vsphere
Upgrade []SddcObjects Vsphere Upgrade Object The links of binary objects needed for upgrade vSphere.
- actual
Esxi IntegerHosts Count 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 String The FQDN for HCX Manager. Example:
hcx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- hcx
Initial StringPassword 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 StringPrem Key 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 List<SddcPrem Licenses Hcx On Prem License> The activation licenses to use on the on-premises HCX Enterprise appliance you site pair with HCX Manager in your VMware Solution.
- hcx
Private StringIp Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for HCX Manager. For information aboutPrivateIp
objects, see the Core Services API.- id String
The provider-assigned unique ID for this managed resource.
- is
Hcx BooleanEnterprise Enabled Indicates whether HCX Enterprise is enabled for this SDDC.
- is
Hcx BooleanPending Downgrade Indicates whether SDDC is pending downgrade from HCX Enterprise to HCX Advanced.
- nsx
Edge StringUplink Ip Id 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 aboutPrivateIp
objects, see the Core Services API.- nsx
Manager StringFqdn The FQDN for NSX Manager. Example:
nsx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- nsx
Manager StringInitial Password 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 StringPrivate Ip Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for NSX Manager. For information aboutPrivateIp
objects, see the Core Services API.- nsx
Manager StringUsername 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 StringSegment Name 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.
- time
Created String The date and time the SDDC was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time
Hcx StringBilling Cycle End 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 StringLicense Status Updated 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 String The date and time the SDDC was updated, in the format defined by RFC3339.
- upgrade
Licenses List<SddcUpgrade License> The vSphere licenses to be used when upgrade SDDC.
- vcenter
Fqdn String The FQDN for vCenter. Example:
vcenter-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- vcenter
Initial StringPassword 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 StringIp Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for vCenter. For information aboutPrivateIp
objects, see the Core Services API.- vcenter
Username String 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 StringGuide The link of guidance to upgrade vSphere.
- vsphere
Upgrade List<SddcObjects Vsphere Upgrade Object> The links of binary objects needed for upgrade vSphere.
- actual
Esxi numberHosts Count 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 string The FQDN for HCX Manager. Example:
hcx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- hcx
Initial stringPassword 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 stringPrem Key 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 SddcPrem Licenses Hcx On Prem License[] The activation licenses to use on the on-premises HCX Enterprise appliance you site pair with HCX Manager in your VMware Solution.
- hcx
Private stringIp Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for HCX Manager. For information aboutPrivateIp
objects, see the Core Services API.- id string
The provider-assigned unique ID for this managed resource.
- is
Hcx booleanEnterprise Enabled Indicates whether HCX Enterprise is enabled for this SDDC.
- is
Hcx booleanPending Downgrade Indicates whether SDDC is pending downgrade from HCX Enterprise to HCX Advanced.
- nsx
Edge stringUplink Ip Id 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 aboutPrivateIp
objects, see the Core Services API.- nsx
Manager stringFqdn The FQDN for NSX Manager. Example:
nsx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- nsx
Manager stringInitial Password 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 stringPrivate Ip Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for NSX Manager. For information aboutPrivateIp
objects, see the Core Services API.- nsx
Manager stringUsername 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 stringSegment Name 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.
- time
Created string The date and time the SDDC was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time
Hcx stringBilling Cycle End 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 stringLicense Status Updated 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 string The date and time the SDDC was updated, in the format defined by RFC3339.
- upgrade
Licenses SddcUpgrade License[] The vSphere licenses to be used when upgrade SDDC.
- vcenter
Fqdn string The FQDN for vCenter. Example:
vcenter-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- vcenter
Initial stringPassword 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 stringIp Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for vCenter. For information aboutPrivateIp
objects, see the Core Services API.- vcenter
Username string 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 stringGuide The link of guidance to upgrade vSphere.
- vsphere
Upgrade SddcObjects Vsphere Upgrade Object[] The links of binary objects needed for upgrade vSphere.
- actual_
esxi_ inthosts_ count 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_ strpassword 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_ strprem_ key 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_ Sddcprem_ licenses Hcx On Prem License] The activation licenses to use on the on-premises HCX Enterprise appliance you site pair with HCX Manager in your VMware Solution.
- hcx_
private_ strip_ id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for HCX Manager. For information aboutPrivateIp
objects, see the Core Services API.- id str
The provider-assigned unique ID for this managed resource.
- is_
hcx_ boolenterprise_ enabled Indicates whether HCX Enterprise is enabled for this SDDC.
- is_
hcx_ boolpending_ downgrade Indicates whether SDDC is pending downgrade from HCX Enterprise to HCX Advanced.
- nsx_
edge_ struplink_ ip_ id 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 aboutPrivateIp
objects, see the Core Services API.- nsx_
manager_ strfqdn The FQDN for NSX Manager. Example:
nsx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- nsx_
manager_ strinitial_ password 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_ strprivate_ ip_ id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for NSX Manager. For information aboutPrivateIp
objects, see the Core Services API.- nsx_
manager_ strusername 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_ strsegment_ name 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_ strbilling_ cycle_ end 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_ strlicense_ status_ updated 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 SddcUpgrade License] 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_ strpassword 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_ strip_ id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for vCenter. For information aboutPrivateIp
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_ strguide The link of guidance to upgrade vSphere.
- vsphere_
upgrade_ Sddcobjects Vsphere Upgrade Object] The links of binary objects needed for upgrade vSphere.
- actual
Esxi NumberHosts Count 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 String The FQDN for HCX Manager. Example:
hcx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- hcx
Initial StringPassword 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 StringPrem Key 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 List<Property Map>Prem Licenses The activation licenses to use on the on-premises HCX Enterprise appliance you site pair with HCX Manager in your VMware Solution.
- hcx
Private StringIp Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for HCX Manager. For information aboutPrivateIp
objects, see the Core Services API.- id String
The provider-assigned unique ID for this managed resource.
- is
Hcx BooleanEnterprise Enabled Indicates whether HCX Enterprise is enabled for this SDDC.
- is
Hcx BooleanPending Downgrade Indicates whether SDDC is pending downgrade from HCX Enterprise to HCX Advanced.
- nsx
Edge StringUplink Ip Id 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 aboutPrivateIp
objects, see the Core Services API.- nsx
Manager StringFqdn The FQDN for NSX Manager. Example:
nsx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- nsx
Manager StringInitial Password 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 StringPrivate Ip Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for NSX Manager. For information aboutPrivateIp
objects, see the Core Services API.- nsx
Manager StringUsername 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 StringSegment Name 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.
- time
Created String The date and time the SDDC was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time
Hcx StringBilling Cycle End 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 StringLicense Status Updated 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 String The date and time the SDDC was updated, in the format defined by RFC3339.
- upgrade
Licenses List<Property Map> The vSphere licenses to be used when upgrade SDDC.
- vcenter
Fqdn String The FQDN for vCenter. Example:
vcenter-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- vcenter
Initial StringPassword 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 StringIp Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for vCenter. For information aboutPrivateIp
objects, see the Core Services API.- vcenter
Username String 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 StringGuide The link of guidance to upgrade vSphere.
- vsphere
Upgrade List<Property Map>Objects 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.
- Actual
Esxi intHosts Count 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 stringId The OCID of the Capacity Reservation.
- Compartment
Id string (Updatable) The OCID of the compartment to contain the SDDC.
- Compute
Availability stringDomain The availability domain to create the SDDC's ESXi hosts in. For multi-AD SDDC deployment, set to
multi-AD
.- 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"}
- Display
Name 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.
- Esxi
Hosts intCount 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.
- 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"}
- Hcx
Action 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.
- Hcx
Fqdn string The FQDN for HCX Manager. Example:
hcx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- Hcx
Initial stringPassword 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 stringPrem Key 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 List<SddcPrem Licenses Hcx On Prem License Args> The activation licenses to use on the on-premises HCX Enterprise appliance you site pair with HCX Manager in your VMware Solution.
- Hcx
Private stringIp Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for HCX Manager. For information aboutPrivateIp
objects, see the Core Services API.- Hcx
Vlan stringId (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 doubleOcpu Count The initial OCPU count of the SDDC's ESXi hosts.
- Initial
Host stringShape Name The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.
- Initial
Sku string The billing option selected during SDDC creation. ListSupportedSkus.
- Instance
Display stringName Prefix 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 boolEnabled Indicates whether to enable HCX for this SDDC.
- Is
Hcx boolEnterprise Enabled Indicates whether HCX Enterprise is enabled for this SDDC.
- Is
Hcx boolPending Downgrade Indicates whether SDDC is pending downgrade from HCX Enterprise to HCX Advanced.
- Is
Shielded boolInstance Enabled Indicates whether shielded instance is enabled for this SDDC.
- Is
Single boolHost Sddc Indicates whether this SDDC is designated for only single ESXi host.
- Nsx
Edge stringUplink1vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 1 component of the VMware environment.
- Nsx
Edge stringUplink2vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 2 component of the VMware environment.
- Nsx
Edge stringUplink Ip Id 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 aboutPrivateIp
objects, see the Core Services API.- Nsx
Edge stringVtep Vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge VTEP component of the VMware environment.
- Nsx
Manager stringFqdn The FQDN for NSX Manager. Example:
nsx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- Nsx
Manager stringInitial Password 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 stringPrivate Ip Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for NSX Manager. For information aboutPrivateIp
objects, see the Core Services API.- Nsx
Manager stringUsername 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 stringSegment Name The VMware NSX overlay workload segment to host your application. Connect to workload portgroup in vCenter to access this overlay segment.
- Nsx
Vtep stringVlan Id (Updatable) The OCID of the VLAN to use for the NSX VTEP component of the VMware environment.
- Provisioning
Subnet stringId The OCID of the management subnet to use for provisioning the SDDC.
- Provisioning
Vlan stringId (Updatable) The OCID of the VLAN used by the SDDC for the Provisioning component of the VMware environment.
- Refresh
Hcx boolLicense Status (Updatable) HCX on-premise licenses status will be refreshed whenever the value of this field is changed.
- Replication
Vlan stringId (Updatable) The OCID of the VLAN used by the SDDC for the vSphere Replication component of the VMware environment.
- Reserving
Hcx List<string>On Premise License Keys (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.
- 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 theauthorized_keys
file- State string
The current state of the SDDC.
- Time
Created string The date and time the SDDC was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Time
Hcx stringBilling Cycle End 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 stringLicense Status Updated 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 string The date and time the SDDC was updated, in the format defined by RFC3339.
- Upgrade
Licenses List<SddcUpgrade License Args> The vSphere licenses to be used when upgrade SDDC.
- Vcenter
Fqdn string The FQDN for vCenter. Example:
vcenter-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- Vcenter
Initial stringPassword 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 stringIp Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for vCenter. For information aboutPrivateIp
objects, see the Core Services API.- Vcenter
Username string 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 stringId (Updatable) The OCID of the VLAN to use for the vMotion component of the VMware environment.
- Vmware
Software stringVersion (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 stringId (Updatable) The OCID of the VLAN to use for the vSAN component of the VMware environment.
- Vsphere
Upgrade stringGuide The link of guidance to upgrade vSphere.
- Vsphere
Upgrade List<SddcObjects Vsphere Upgrade Object Args> The links of binary objects needed for upgrade vSphere.
- Vsphere
Vlan stringId (Updatable) The OCID of the VLAN to use for the vSphere component of the VMware environment.
- Workload
Network stringCidr The CIDR block for the IP addresses that VMware VMs in the SDDC use to run application workloads.
- Actual
Esxi intHosts Count 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 stringId The OCID of the Capacity Reservation.
- Compartment
Id string (Updatable) The OCID of the compartment to contain the SDDC.
- Compute
Availability stringDomain The availability domain to create the SDDC's ESXi hosts in. For multi-AD SDDC deployment, set to
multi-AD
.- 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"}
- Display
Name 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.
- Esxi
Hosts intCount 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.
- 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"}
- Hcx
Action 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.
- Hcx
Fqdn string The FQDN for HCX Manager. Example:
hcx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- Hcx
Initial stringPassword 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 stringPrem Key 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 []SddcPrem Licenses Hcx On Prem License Args The activation licenses to use on the on-premises HCX Enterprise appliance you site pair with HCX Manager in your VMware Solution.
- Hcx
Private stringIp Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for HCX Manager. For information aboutPrivateIp
objects, see the Core Services API.- Hcx
Vlan stringId (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 float64Ocpu Count The initial OCPU count of the SDDC's ESXi hosts.
- Initial
Host stringShape Name The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.
- Initial
Sku string The billing option selected during SDDC creation. ListSupportedSkus.
- Instance
Display stringName Prefix 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 boolEnabled Indicates whether to enable HCX for this SDDC.
- Is
Hcx boolEnterprise Enabled Indicates whether HCX Enterprise is enabled for this SDDC.
- Is
Hcx boolPending Downgrade Indicates whether SDDC is pending downgrade from HCX Enterprise to HCX Advanced.
- Is
Shielded boolInstance Enabled Indicates whether shielded instance is enabled for this SDDC.
- Is
Single boolHost Sddc Indicates whether this SDDC is designated for only single ESXi host.
- Nsx
Edge stringUplink1vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 1 component of the VMware environment.
- Nsx
Edge stringUplink2vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 2 component of the VMware environment.
- Nsx
Edge stringUplink Ip Id 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 aboutPrivateIp
objects, see the Core Services API.- Nsx
Edge stringVtep Vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge VTEP component of the VMware environment.
- Nsx
Manager stringFqdn The FQDN for NSX Manager. Example:
nsx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- Nsx
Manager stringInitial Password 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 stringPrivate Ip Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for NSX Manager. For information aboutPrivateIp
objects, see the Core Services API.- Nsx
Manager stringUsername 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 stringSegment Name The VMware NSX overlay workload segment to host your application. Connect to workload portgroup in vCenter to access this overlay segment.
- Nsx
Vtep stringVlan Id (Updatable) The OCID of the VLAN to use for the NSX VTEP component of the VMware environment.
- Provisioning
Subnet stringId The OCID of the management subnet to use for provisioning the SDDC.
- Provisioning
Vlan stringId (Updatable) The OCID of the VLAN used by the SDDC for the Provisioning component of the VMware environment.
- Refresh
Hcx boolLicense Status (Updatable) HCX on-premise licenses status will be refreshed whenever the value of this field is changed.
- Replication
Vlan stringId (Updatable) The OCID of the VLAN used by the SDDC for the vSphere Replication component of the VMware environment.
- Reserving
Hcx []stringOn Premise License Keys (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.
- 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 theauthorized_keys
file- State string
The current state of the SDDC.
- Time
Created string The date and time the SDDC was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Time
Hcx stringBilling Cycle End 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 stringLicense Status Updated 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 string The date and time the SDDC was updated, in the format defined by RFC3339.
- Upgrade
Licenses []SddcUpgrade License Args The vSphere licenses to be used when upgrade SDDC.
- Vcenter
Fqdn string The FQDN for vCenter. Example:
vcenter-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- Vcenter
Initial stringPassword 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 stringIp Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for vCenter. For information aboutPrivateIp
objects, see the Core Services API.- Vcenter
Username string 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 stringId (Updatable) The OCID of the VLAN to use for the vMotion component of the VMware environment.
- Vmware
Software stringVersion (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 stringId (Updatable) The OCID of the VLAN to use for the vSAN component of the VMware environment.
- Vsphere
Upgrade stringGuide The link of guidance to upgrade vSphere.
- Vsphere
Upgrade []SddcObjects Vsphere Upgrade Object Args The links of binary objects needed for upgrade vSphere.
- Vsphere
Vlan stringId (Updatable) The OCID of the VLAN to use for the vSphere component of the VMware environment.
- Workload
Network stringCidr The CIDR block for the IP addresses that VMware VMs in the SDDC use to run application workloads.
- actual
Esxi IntegerHosts Count 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 StringId The OCID of the Capacity Reservation.
- compartment
Id String (Updatable) The OCID of the compartment to contain the SDDC.
- compute
Availability StringDomain The availability domain to create the SDDC's ESXi hosts in. For multi-AD SDDC deployment, set to
multi-AD
.- 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"}
- display
Name 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.
- esxi
Hosts IntegerCount 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.
- 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"}
- hcx
Action 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.
- hcx
Fqdn String The FQDN for HCX Manager. Example:
hcx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- hcx
Initial StringPassword 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 StringPrem Key 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 List<SddcPrem Licenses Hcx On Prem License Args> The activation licenses to use on the on-premises HCX Enterprise appliance you site pair with HCX Manager in your VMware Solution.
- hcx
Private StringIp Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for HCX Manager. For information aboutPrivateIp
objects, see the Core Services API.- hcx
Vlan StringId (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 DoubleOcpu Count The initial OCPU count of the SDDC's ESXi hosts.
- initial
Host StringShape Name The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.
- initial
Sku String The billing option selected during SDDC creation. ListSupportedSkus.
- instance
Display StringName Prefix 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 BooleanEnabled Indicates whether to enable HCX for this SDDC.
- is
Hcx BooleanEnterprise Enabled Indicates whether HCX Enterprise is enabled for this SDDC.
- is
Hcx BooleanPending Downgrade Indicates whether SDDC is pending downgrade from HCX Enterprise to HCX Advanced.
- is
Shielded BooleanInstance Enabled Indicates whether shielded instance is enabled for this SDDC.
- is
Single BooleanHost Sddc Indicates whether this SDDC is designated for only single ESXi host.
- nsx
Edge StringUplink1vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 1 component of the VMware environment.
- nsx
Edge StringUplink2vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 2 component of the VMware environment.
- nsx
Edge StringUplink Ip Id 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 aboutPrivateIp
objects, see the Core Services API.- nsx
Edge StringVtep Vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge VTEP component of the VMware environment.
- nsx
Manager StringFqdn The FQDN for NSX Manager. Example:
nsx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- nsx
Manager StringInitial Password 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 StringPrivate Ip Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for NSX Manager. For information aboutPrivateIp
objects, see the Core Services API.- nsx
Manager StringUsername 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 StringSegment Name The VMware NSX overlay workload segment to host your application. Connect to workload portgroup in vCenter to access this overlay segment.
- nsx
Vtep StringVlan Id (Updatable) The OCID of the VLAN to use for the NSX VTEP component of the VMware environment.
- provisioning
Subnet StringId The OCID of the management subnet to use for provisioning the SDDC.
- provisioning
Vlan StringId (Updatable) The OCID of the VLAN used by the SDDC for the Provisioning component of the VMware environment.
- refresh
Hcx BooleanLicense Status (Updatable) HCX on-premise licenses status will be refreshed whenever the value of this field is changed.
- replication
Vlan StringId (Updatable) The OCID of the VLAN used by the SDDC for the vSphere Replication component of the VMware environment.
- reserving
Hcx List<String>On Premise License Keys (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.
- 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 theauthorized_keys
file- state String
The current state of the SDDC.
- time
Created String The date and time the SDDC was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time
Hcx StringBilling Cycle End 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 StringLicense Status Updated 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 String The date and time the SDDC was updated, in the format defined by RFC3339.
- upgrade
Licenses List<SddcUpgrade License Args> The vSphere licenses to be used when upgrade SDDC.
- vcenter
Fqdn String The FQDN for vCenter. Example:
vcenter-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- vcenter
Initial StringPassword 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 StringIp Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for vCenter. For information aboutPrivateIp
objects, see the Core Services API.- vcenter
Username String 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 StringId (Updatable) The OCID of the VLAN to use for the vMotion component of the VMware environment.
- vmware
Software StringVersion (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 StringId (Updatable) The OCID of the VLAN to use for the vSAN component of the VMware environment.
- vsphere
Upgrade StringGuide The link of guidance to upgrade vSphere.
- vsphere
Upgrade List<SddcObjects Vsphere Upgrade Object Args> The links of binary objects needed for upgrade vSphere.
- vsphere
Vlan StringId (Updatable) The OCID of the VLAN to use for the vSphere component of the VMware environment.
- workload
Network StringCidr The CIDR block for the IP addresses that VMware VMs in the SDDC use to run application workloads.
- actual
Esxi numberHosts Count 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 stringId The OCID of the Capacity Reservation.
- compartment
Id string (Updatable) The OCID of the compartment to contain the SDDC.
- compute
Availability stringDomain The availability domain to create the SDDC's ESXi hosts in. For multi-AD SDDC deployment, set to
multi-AD
.- {[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"}
- display
Name 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.
- esxi
Hosts numberCount 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.
- {[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"}
- hcx
Action 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.
- hcx
Fqdn string The FQDN for HCX Manager. Example:
hcx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- hcx
Initial stringPassword 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 stringPrem Key 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 SddcPrem Licenses Hcx On Prem License Args[] The activation licenses to use on the on-premises HCX Enterprise appliance you site pair with HCX Manager in your VMware Solution.
- hcx
Private stringIp Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for HCX Manager. For information aboutPrivateIp
objects, see the Core Services API.- hcx
Vlan stringId (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 numberOcpu Count The initial OCPU count of the SDDC's ESXi hosts.
- initial
Host stringShape Name The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.
- initial
Sku string The billing option selected during SDDC creation. ListSupportedSkus.
- instance
Display stringName Prefix 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 booleanEnabled Indicates whether to enable HCX for this SDDC.
- is
Hcx booleanEnterprise Enabled Indicates whether HCX Enterprise is enabled for this SDDC.
- is
Hcx booleanPending Downgrade Indicates whether SDDC is pending downgrade from HCX Enterprise to HCX Advanced.
- is
Shielded booleanInstance Enabled Indicates whether shielded instance is enabled for this SDDC.
- is
Single booleanHost Sddc Indicates whether this SDDC is designated for only single ESXi host.
- nsx
Edge stringUplink1vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 1 component of the VMware environment.
- nsx
Edge stringUplink2vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 2 component of the VMware environment.
- nsx
Edge stringUplink Ip Id 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 aboutPrivateIp
objects, see the Core Services API.- nsx
Edge stringVtep Vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge VTEP component of the VMware environment.
- nsx
Manager stringFqdn The FQDN for NSX Manager. Example:
nsx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- nsx
Manager stringInitial Password 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 stringPrivate Ip Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for NSX Manager. For information aboutPrivateIp
objects, see the Core Services API.- nsx
Manager stringUsername 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 stringSegment Name The VMware NSX overlay workload segment to host your application. Connect to workload portgroup in vCenter to access this overlay segment.
- nsx
Vtep stringVlan Id (Updatable) The OCID of the VLAN to use for the NSX VTEP component of the VMware environment.
- provisioning
Subnet stringId The OCID of the management subnet to use for provisioning the SDDC.
- provisioning
Vlan stringId (Updatable) The OCID of the VLAN used by the SDDC for the Provisioning component of the VMware environment.
- refresh
Hcx booleanLicense Status (Updatable) HCX on-premise licenses status will be refreshed whenever the value of this field is changed.
- replication
Vlan stringId (Updatable) The OCID of the VLAN used by the SDDC for the vSphere Replication component of the VMware environment.
- reserving
Hcx string[]On Premise License Keys (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.
- 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 theauthorized_keys
file- state string
The current state of the SDDC.
- time
Created string The date and time the SDDC was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time
Hcx stringBilling Cycle End 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 stringLicense Status Updated 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 string The date and time the SDDC was updated, in the format defined by RFC3339.
- upgrade
Licenses SddcUpgrade License Args[] The vSphere licenses to be used when upgrade SDDC.
- vcenter
Fqdn string The FQDN for vCenter. Example:
vcenter-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- vcenter
Initial stringPassword 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 stringIp Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for vCenter. For information aboutPrivateIp
objects, see the Core Services API.- vcenter
Username string 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 stringId (Updatable) The OCID of the VLAN to use for the vMotion component of the VMware environment.
- vmware
Software stringVersion (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 stringId (Updatable) The OCID of the VLAN to use for the vSAN component of the VMware environment.
- vsphere
Upgrade stringGuide The link of guidance to upgrade vSphere.
- vsphere
Upgrade SddcObjects Vsphere Upgrade Object Args[] The links of binary objects needed for upgrade vSphere.
- vsphere
Vlan stringId (Updatable) The OCID of the VLAN to use for the vSphere component of the VMware environment.
- workload
Network stringCidr The CIDR block for the IP addresses that VMware VMs in the SDDC use to run application workloads.
- actual_
esxi_ inthosts_ count 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_ strid The OCID of the Capacity Reservation.
- compartment_
id str (Updatable) The OCID of the compartment to contain the SDDC.
- compute_
availability_ strdomain The availability domain to create the SDDC's ESXi hosts in. For multi-AD SDDC deployment, set to
multi-AD
.- 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_ intcount 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.
- 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_ strpassword 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_ strprem_ key 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_ Sddcprem_ licenses Hcx On Prem License Args] The activation licenses to use on the on-premises HCX Enterprise appliance you site pair with HCX Manager in your VMware Solution.
- hcx_
private_ strip_ id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for HCX Manager. For information aboutPrivateIp
objects, see the Core Services API.- hcx_
vlan_ strid (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_ floatocpu_ count The initial OCPU count of the SDDC's ESXi hosts.
- initial_
host_ strshape_ name The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.
- initial_
sku str The billing option selected during SDDC creation. ListSupportedSkus.
- instance_
display_ strname_ prefix 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_ boolenabled Indicates whether to enable HCX for this SDDC.
- is_
hcx_ boolenterprise_ enabled Indicates whether HCX Enterprise is enabled for this SDDC.
- is_
hcx_ boolpending_ downgrade Indicates whether SDDC is pending downgrade from HCX Enterprise to HCX Advanced.
- is_
shielded_ boolinstance_ enabled Indicates whether shielded instance is enabled for this SDDC.
- is_
single_ boolhost_ sddc Indicates whether this SDDC is designated for only single ESXi host.
- nsx_
edge_ struplink1vlan_ id (Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 1 component of the VMware environment.
- nsx_
edge_ struplink2vlan_ id (Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 2 component of the VMware environment.
- nsx_
edge_ struplink_ ip_ id 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 aboutPrivateIp
objects, see the Core Services API.- nsx_
edge_ strvtep_ vlan_ id (Updatable) The OCID of the VLAN to use for the NSX Edge VTEP component of the VMware environment.
- nsx_
manager_ strfqdn The FQDN for NSX Manager. Example:
nsx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- nsx_
manager_ strinitial_ password 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_ strprivate_ ip_ id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for NSX Manager. For information aboutPrivateIp
objects, see the Core Services API.- nsx_
manager_ strusername 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_ strsegment_ name The VMware NSX overlay workload segment to host your application. Connect to workload portgroup in vCenter to access this overlay segment.
- nsx_
vtep_ strvlan_ id (Updatable) The OCID of the VLAN to use for the NSX VTEP component of the VMware environment.
- provisioning_
subnet_ strid The OCID of the management subnet to use for provisioning the SDDC.
- provisioning_
vlan_ strid (Updatable) The OCID of the VLAN used by the SDDC for the Provisioning component of the VMware environment.
- refresh_
hcx_ boollicense_ status (Updatable) HCX on-premise licenses status will be refreshed whenever the value of this field is changed.
- replication_
vlan_ strid (Updatable) The OCID of the VLAN used by the SDDC for the vSphere Replication component of the VMware environment.
- reserving_
hcx_ Sequence[str]on_ premise_ license_ keys (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.
- 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 theauthorized_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_ strbilling_ cycle_ end 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_ strlicense_ status_ updated 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 SddcUpgrade License Args] 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_ strpassword 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_ strip_ id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for vCenter. For information aboutPrivateIp
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_ strid (Updatable) The OCID of the VLAN to use for the vMotion component of the VMware environment.
- vmware_
software_ strversion (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_ strid (Updatable) The OCID of the VLAN to use for the vSAN component of the VMware environment.
- vsphere_
upgrade_ strguide The link of guidance to upgrade vSphere.
- vsphere_
upgrade_ Sddcobjects Vsphere Upgrade Object Args] The links of binary objects needed for upgrade vSphere.
- vsphere_
vlan_ strid (Updatable) The OCID of the VLAN to use for the vSphere component of the VMware environment.
- workload_
network_ strcidr The CIDR block for the IP addresses that VMware VMs in the SDDC use to run application workloads.
- actual
Esxi NumberHosts Count 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 StringId The OCID of the Capacity Reservation.
- compartment
Id String (Updatable) The OCID of the compartment to contain the SDDC.
- compute
Availability StringDomain The availability domain to create the SDDC's ESXi hosts in. For multi-AD SDDC deployment, set to
multi-AD
.- 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"}
- display
Name 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.
- esxi
Hosts NumberCount 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.
- 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"}
- hcx
Action 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.
- hcx
Fqdn String The FQDN for HCX Manager. Example:
hcx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- hcx
Initial StringPassword 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 StringPrem Key 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 List<Property Map>Prem Licenses The activation licenses to use on the on-premises HCX Enterprise appliance you site pair with HCX Manager in your VMware Solution.
- hcx
Private StringIp Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for HCX Manager. For information aboutPrivateIp
objects, see the Core Services API.- hcx
Vlan StringId (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 NumberOcpu Count The initial OCPU count of the SDDC's ESXi hosts.
- initial
Host StringShape Name The initial compute shape of the SDDC's ESXi hosts. ListSupportedHostShapes.
- initial
Sku String The billing option selected during SDDC creation. ListSupportedSkus.
- instance
Display StringName Prefix 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 BooleanEnabled Indicates whether to enable HCX for this SDDC.
- is
Hcx BooleanEnterprise Enabled Indicates whether HCX Enterprise is enabled for this SDDC.
- is
Hcx BooleanPending Downgrade Indicates whether SDDC is pending downgrade from HCX Enterprise to HCX Advanced.
- is
Shielded BooleanInstance Enabled Indicates whether shielded instance is enabled for this SDDC.
- is
Single BooleanHost Sddc Indicates whether this SDDC is designated for only single ESXi host.
- nsx
Edge StringUplink1vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 1 component of the VMware environment.
- nsx
Edge StringUplink2vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge Uplink 2 component of the VMware environment.
- nsx
Edge StringUplink Ip Id 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 aboutPrivateIp
objects, see the Core Services API.- nsx
Edge StringVtep Vlan Id (Updatable) The OCID of the VLAN to use for the NSX Edge VTEP component of the VMware environment.
- nsx
Manager StringFqdn The FQDN for NSX Manager. Example:
nsx-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- nsx
Manager StringInitial Password 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 StringPrivate Ip Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for NSX Manager. For information aboutPrivateIp
objects, see the Core Services API.- nsx
Manager StringUsername 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 StringSegment Name The VMware NSX overlay workload segment to host your application. Connect to workload portgroup in vCenter to access this overlay segment.
- nsx
Vtep StringVlan Id (Updatable) The OCID of the VLAN to use for the NSX VTEP component of the VMware environment.
- provisioning
Subnet StringId The OCID of the management subnet to use for provisioning the SDDC.
- provisioning
Vlan StringId (Updatable) The OCID of the VLAN used by the SDDC for the Provisioning component of the VMware environment.
- refresh
Hcx BooleanLicense Status (Updatable) HCX on-premise licenses status will be refreshed whenever the value of this field is changed.
- replication
Vlan StringId (Updatable) The OCID of the VLAN used by the SDDC for the vSphere Replication component of the VMware environment.
- reserving
Hcx List<String>On Premise License Keys (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.
- 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 theauthorized_keys
file- state String
The current state of the SDDC.
- time
Created String The date and time the SDDC was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time
Hcx StringBilling Cycle End 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 StringLicense Status Updated 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 String The date and time the SDDC was updated, in the format defined by RFC3339.
- upgrade
Licenses List<Property Map> The vSphere licenses to be used when upgrade SDDC.
- vcenter
Fqdn String The FQDN for vCenter. Example:
vcenter-my-sddc.sddc.us-phoenix-1.oraclecloud.com
- vcenter
Initial StringPassword 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 StringIp Id The OCID of the
PrivateIp
object that is the virtual IP (VIP) for vCenter. For information aboutPrivateIp
objects, see the Core Services API.- vcenter
Username String 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 StringId (Updatable) The OCID of the VLAN to use for the vMotion component of the VMware environment.
- vmware
Software StringVersion (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 StringId (Updatable) The OCID of the VLAN to use for the vSAN component of the VMware environment.
- vsphere
Upgrade StringGuide The link of guidance to upgrade vSphere.
- vsphere
Upgrade List<Property Map>Objects The links of binary objects needed for upgrade vSphere.
- vsphere
Vlan StringId (Updatable) The OCID of the VLAN to use for the vSphere component of the VMware environment.
- workload
Network StringCidr The CIDR block for the IP addresses that VMware VMs in the SDDC use to run application workloads.
Supporting Types
SddcHcxOnPremLicense
- Activation
Key string HCX on-premise license key value.
- Status string
status of HCX on-premise license.
- System
Name string Name of the system that consumed the HCX on-premise license
- Activation
Key string HCX on-premise license key value.
- Status string
status of HCX on-premise license.
- System
Name string Name of the system that consumed the HCX on-premise license
- activation
Key String HCX on-premise license key value.
- status String
status of HCX on-premise license.
- system
Name String Name of the system that consumed the HCX on-premise license
- activation
Key string HCX on-premise license key value.
- status string
status of HCX on-premise license.
- system
Name 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
- activation
Key String HCX on-premise license key value.
- status String
status of HCX on-premise license.
- system
Name String Name of the system that consumed the HCX on-premise license
SddcUpgradeLicense
- License
Key string vSphere license key value.
- License
Type string vSphere license type.
- License
Key string vSphere license key value.
- License
Type string vSphere license type.
- license
Key String vSphere license key value.
- license
Type String vSphere license type.
- license
Key string vSphere license key value.
- license
Type string vSphere license type.
- license_
key str vSphere license key value.
- license_
type str vSphere license type.
- license
Key String vSphere license key value.
- license
Type String vSphere license type.
SddcVsphereUpgradeObject
- Download
Link string Binary object download link.
- Link
Description string Binary object description.
- Download
Link string Binary object download link.
- Link
Description string Binary object description.
- download
Link String Binary object download link.
- link
Description String Binary object description.
- download
Link string Binary object download link.
- link
Description string Binary object description.
- download_
link str Binary object download link.
- link_
description str Binary object description.
- download
Link String Binary object download link.
- link
Description 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.