Show / Hide Table of Contents

Class UpdateVmClusterNetworkDetails

Details for an VM cluster network.

Inheritance
object
UpdateVmClusterNetworkDetails
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 UpdateVmClusterNetworkDetails

Properties

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

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

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. Default is 2484.

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
[JsonProperty(PropertyName = "scans")]
public List<ScanDetails> Scans { get; set; }
Property Value
Type Description
List<ScanDetails>

The SCAN details.

VmNetworks

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

Details of the client and backup networks.

In this article
Back to top