Show / Hide Table of Contents

Class UpdateResolverDetails

The body for updating an existing resolver.
Warning: Oracle recommends that you avoid using any confidential information when you supply string values using the API.

Inheritance
object
UpdateResolverDetails
Inherited Members
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 UpdateResolverDetails

Properties

AttachedViews

Declaration
[JsonProperty(PropertyName = "attachedViews")]
public List<AttachedViewDetails> AttachedViews { get; set; }
Property Value
Type Description
List<AttachedViewDetails>

The attached views. Views are evaluated in order.

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

**Example: ** {"Operations": {"CostCenter": "42"}}

DisplayName

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

The display name of the resolver.

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.

**Example: ** {"Department": "Finance"}

Rules

Declaration
[JsonProperty(PropertyName = "rules")]
public List<ResolverRuleDetails> Rules { get; set; }
Property Value
Type Description
List<ResolverRuleDetails>

Rules for the resolver. Rules are evaluated in order.

In this article
Back to top