Show / Hide Table of Contents

Class ResolverVnicEndpoint

An OCI DNS resolver VNIC endpoint. A VNIC is created for each ResolverVnicEndpoint. VCNs and subnets cannot be deleted while ResolverVnicEndpoints exist in them due to the VNIC.
Warning: Oracle recommends that you avoid using any confidential information when you supply string values using the API.

Inheritance
object
ResolverEndpoint
ResolverVnicEndpoint
Inherited Members
ResolverEndpoint.Name
ResolverEndpoint.ForwardingAddress
ResolverEndpoint.IsForwarding
ResolverEndpoint.IsListening
ResolverEndpoint.ListeningAddress
ResolverEndpoint.CompartmentId
ResolverEndpoint.TimeCreated
ResolverEndpoint.TimeUpdated
ResolverEndpoint.LifecycleState
ResolverEndpoint.Self
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DnsService.Models
Assembly: OCI.DotNetSDK.Dns.dll
Syntax
public class ResolverVnicEndpoint : ResolverEndpoint

Properties

NsgIds

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

An array of network security group OCIDs for the resolver endpoint. These must be part of the VCN that the resolver endpoint is a part of.

SubnetId

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

The OCID of a subnet. Must be part of the VCN that the resolver is attached to.

In this article
Back to top