Show / Hide Table of Contents

Class VmClusterNetwork

Details of the VM cluster network on Database Infrastructure.

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

Properties

AssociatedResourceId

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

The OCID of the associated resource.

BaseVmClusterId

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

The OCID of the associated VM cluster.

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 containing the VM cluster network.

Remarks

Required

ConsumerType

Declaration
[JsonProperty(PropertyName = "consumerType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public VmNetworkConsumerType? ConsumerType { get; set; }
Property Value
Type Description
VmNetworkConsumerType?

Consumer type for the VM cluster network.

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. Example: {"foo-namespace": {"bar-key": "value"}}

DisplayName

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

The user-friendly name for the VM cluster network. The name does not need to be unique.

Remarks

Required

DnsServers

Declaration
[JsonProperty(PropertyName = "dnsServers")]
public List<string> DnsServers { get; set; }
Property Value
Type Description
List<string>

The list of DNS server IP addresses. Maximum of 3 allowed.

FreeformTags

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

Simple key-value pair that is applied without any predefined name, type or scope. This tag option exists for cross-compatibility only. Example: {"bar-key": "value"}

Id

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

The OCID of the VM cluster network.

Remarks

Required

InfrastructureId

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

The OCID of the Database Infrastructure.

Remarks

Required

IsScanEnabled

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

Indicates whether Single Client Access Name (SCAN) is enabled on the VM cluster.

LifecycleDetails

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

Lifecycle state details of the VM cluster network.

LifecycleState

Declaration
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public VmClusterNetworkLifecycleState? LifecycleState { get; set; }
Property Value
Type Description
VmClusterNetworkLifecycleState?

The current state of the virtual machine cluster network.

ListenerPort

Declaration
[JsonProperty(PropertyName = "listenerPort")]
public int? ListenerPort { get; set; }
Property Value
Type Description
int?

The listener TCP/IP port.

ListenerPortSsl

Declaration
[JsonProperty(PropertyName = "listenerPortSsl")]
public int? ListenerPortSsl { get; set; }
Property Value
Type Description
int?

The listener TCP/IP SSL port.

NodeCount

Declaration
[JsonProperty(PropertyName = "nodeCount")]
public int? NodeCount { get; set; }
Property Value
Type Description
int?

Count of virtual machines in this VM cluster.

NtpServers

Declaration
[JsonProperty(PropertyName = "ntpServers")]
public List<string> NtpServers { get; set; }
Property Value
Type Description
List<string>

The list of NTP server IP addresses. Maximum of 3 allowed.

Scans

Declaration
[Required(ErrorMessage = "Scans is required.")]
[JsonProperty(PropertyName = "scans")]
public List<ScanDetails> Scans { get; set; }
Property Value
Type Description
List<ScanDetails>

The SCAN details.

Remarks

Required

SystemTags

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

Usage of system tag keys. These predefined keys are scoped to namespaces. Example: { "orcl-cloud": { "free-tier-retained": "true" } }

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The time that the VM cluster network was created. An RFC3339 formatted datetime string.

TimeUpdated

Declaration
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

The time that the VM cluster network was last updated. An RFC3339 formatted datetime string.

VmNetworks

Declaration
[Required(ErrorMessage = "VmNetworks is required.")]
[JsonProperty(PropertyName = "vmNetworks")]
public List<VmNetworkDetails> VmNetworks { get; set; }
Property Value
Type Description
List<VmNetworkDetails>

Details of the client and backup networks.

Remarks

Required

In this article
Back to top