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 OciNetworkMetadata.NetworkAnchorConnectionStatusEnum? NetworkAnchorConnectionStatus { get; set; }
Property Value
Type Description
OciNetworkMetadata.NetworkAnchorConnectionStatusEnum?

This can be merge to lifecycleState CONNECTED - Partner and CSI information is assigned and MulticloudLink provisioned. DISCONNECTED - Only partner cloud information is assigned. CONNECTING - Oracle Cloud Infrastructure information is assigned and the control plane is provisioning resources. ACTIVE - Network anchor is connected and resources (VNICs) exist within a subnet. ERROR - DRG attach fails during connection. FAILED - Network anchor creation failed NEEDS_ATTENTION - Network anchor is in temporary bad state UPDATING - Network anchor is getting updated. DELETING - Network anchor is getting deleted DELETED - A connected network anchor is deleted.

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