Show / Hide Table of Contents

Class ResolverVnicEndpointSummary

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
ResolverEndpointSummary
ResolverVnicEndpointSummary
Inherited Members
ResolverEndpointSummary.Name
ResolverEndpointSummary.ForwardingAddress
ResolverEndpointSummary.IsForwarding
ResolverEndpointSummary.IsListening
ResolverEndpointSummary.ListeningAddress
ResolverEndpointSummary.Id
ResolverEndpointSummary.ResolverId
ResolverEndpointSummary.CompartmentId
ResolverEndpointSummary.TimeCreated
ResolverEndpointSummary.TimeUpdated
ResolverEndpointSummary.LifecycleState
ResolverEndpointSummary.Self
ResolverEndpointSummary.FreeformTags
ResolverEndpointSummary.DefinedTags
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 ResolverVnicEndpointSummary : ResolverEndpointSummary

Properties

PeId

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

The OCID of the private endpoint resource that this resolver endpoint corresponds to.

SecurityAttributes

Declaration
[Required(ErrorMessage = "SecurityAttributes is required.")]
[JsonProperty(PropertyName = "securityAttributes")]
public Dictionary<string, Dictionary<string, object>> SecurityAttributes { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>
Remarks

Required

SubnetId

Declaration
[Required(ErrorMessage = "SubnetId is required.")]
[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.

Remarks

Required

VnicId

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

The OCID of the VNIC resource that this resolver endpoint corresponds to.

In this article
Back to top