Show / Hide Table of Contents

Class ResolverForwardRule

Inheritance
object
ResolverRule
ResolverForwardRule
Inherited Members
ResolverRule.ClientAddressConditions
ResolverRule.QnameCoverConditions
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 ResolverForwardRule : ResolverRule

Properties

DestinationAddresses

Declaration
[Required(ErrorMessage = "DestinationAddresses is required.")]
[JsonProperty(PropertyName = "destinationAddresses")]
public List<string> DestinationAddresses { get; set; }
Property Value
Type Description
List<string>

IP addresses to which queries should be forwarded. Currently limited to a single address.

Remarks

Required

SourceEndpointName

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

Case-insensitive name of an endpoint, that is a sub-resource of the resolver, to use as the forwarding interface. The endpoint must have isForwarding set to true.

In this article
Back to top