Show / Hide Table of Contents

Class CreateResolverVnicEndpointDetails

The body for defining a new resolver VNIC endpoint. Either isForwarding or isListening must be true, but not both. If isListening is true, a listeningAddress may be provided. If isForwarding is true, a forwardingAddress may be provided. When not provided, an address will be chosen automatically.
Warning: Oracle recommends that you avoid using any confidential information when you supply string values using the API.

Inheritance
object
CreateResolverEndpointDetails
CreateResolverVnicEndpointDetails
Inherited Members
CreateResolverEndpointDetails.Name
CreateResolverEndpointDetails.ForwardingAddress
CreateResolverEndpointDetails.IsForwarding
CreateResolverEndpointDetails.IsListening
CreateResolverEndpointDetails.ListeningAddress
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 CreateResolverVnicEndpointDetails : CreateResolverEndpointDetails

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
[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

In this article
Back to top