Show / Hide Table of Contents

Class CreateSddcDetails

Details of the SDDC.

Inheritance
object
CreateSddcDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OcvpService.Models
Assembly: OCI.DotNetSDK.Ocvp.dll
Syntax
public class CreateSddcDetails

Properties

CompartmentId

Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

The OCID of the compartment to contain the SDDC.

Remarks

Required

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Example: {"Operations": {"CostCenter": "42"}}

DisplayName

Declaration
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

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.

EsxiSoftwareVersion

Declaration
[JsonProperty(PropertyName = "esxiSoftwareVersion")]
public string EsxiSoftwareVersion { get; set; }
Property Value
Type Description
string

The ESXi software bundle to install on the ESXi hosts in the SDDC. Only versions under the same vmwareSoftwareVersion and have been validate by Oracle Cloud VMware Solution will be accepted. To get a list of the available versions, use {@link #listSupportedVmwareSoftwareVersions(ListSupportedVmwareSoftwareVersionsRequest) listSupportedVmwareSoftwareVersions}.

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

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

HcxMode

Declaration
[Required(ErrorMessage = "HcxMode is required.")]
[JsonProperty(PropertyName = "hcxMode")]
[JsonConverter(typeof(StringEnumConverter))]
public HcxModes? HcxMode { get; set; }
Property Value
Type Description
HcxModes?

HCX configuration of the SDDC.

Remarks

Required

InitialConfiguration

Declaration
[Required(ErrorMessage = "InitialConfiguration is required.")]
[JsonProperty(PropertyName = "initialConfiguration")]
public InitialConfiguration InitialConfiguration { get; set; }
Property Value
Type Description
InitialConfiguration
Remarks

Required

IsSingleHostSddc

Declaration
[JsonProperty(PropertyName = "isSingleHostSddc")]
public bool? IsSingleHostSddc { get; set; }
Property Value
Type Description
bool?

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

SshAuthorizedKeys

Declaration
[Required(ErrorMessage = "SshAuthorizedKeys is required.")]
[JsonProperty(PropertyName = "sshAuthorizedKeys")]
public string SshAuthorizedKeys { get; set; }
Property Value
Type Description
string

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

Remarks

Required

VmwareSoftwareVersion

Declaration
[Required(ErrorMessage = "VmwareSoftwareVersion is required.")]
[JsonProperty(PropertyName = "vmwareSoftwareVersion")]
public string VmwareSoftwareVersion { get; set; }
Property Value
Type Description
string

The VMware software bundle to install on the ESXi hosts in the SDDC. To get a list of the available versions, use {@link #listSupportedVmwareSoftwareVersions(ListSupportedVmwareSoftwareVersionsRequest) listSupportedVmwareSoftwareVersions}.

Remarks

Required

In this article
Back to top