Show / Hide Table of Contents

Class OciNetworkMetadata

Oracle Cloud Infrastructure network anchor related meta data items

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

Properties

Dns

Declaration
[JsonProperty(PropertyName = "dns")]
public OciDns Dns { get; set; }
Property Value
Type Description
OciDns

DnsForwardingConfig

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

DNS forward configuration

DnsForwardingEndpointIpAddress

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

The DNS Listener Forwarding Address.

DnsListeningEndpointIpAddress

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

The DNS Listener Endpoint Address.

NetworkAnchorConnectionStatus

Declaration
[Required(ErrorMessage = "NetworkAnchorConnectionStatus is required.")]
[JsonProperty(PropertyName = "networkAnchorConnectionStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public NetworkAnchorConnectionStatus? NetworkAnchorConnectionStatus { get; set; }
Property Value
Type Description
NetworkAnchorConnectionStatus?

Defines status of the Network Anchor.

Remarks

Required

Subnets

Declaration
[JsonProperty(PropertyName = "subnets")]
public List<OciNetworkSubnet> Subnets { get; set; }
Property Value
Type Description
List<OciNetworkSubnet>

Network subnets

Vcn

Declaration
[JsonProperty(PropertyName = "vcn")]
public OciVcn Vcn { get; set; }
Property Value
Type Description
OciVcn
In this article
Back to top