Show / Hide Table of Contents

Class VcnDnsResolverAssociation

The information about the VCN and the DNS resolver in the association.

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

Properties

DnsResolverId

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

The OCID of the DNS resolver in the association.

LifecycleState

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

The current state of the association.

Remarks

Required

VcnId

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

The OCID of the VCN in the association.

Remarks

Required

In this article
Back to top