Show / Hide Table of Contents

Class ResourceRecordSet

A unit of data that is returned by the DNS servers.

Inheritance
object
ResourceRecordSet
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Dns.v1beta2.Data
Assembly: Google.Apis.Dns.v1beta2.dll
Syntax
public class ResourceRecordSet : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

Kind

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
string

Name

For example, www.example.com.

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
string

RoutingPolicy

Configures dynamic query responses based on geo location of querying user or a weighted round robin based routing policy. A ResourceRecordSet should only have either rrdata (static) or routing_policy (dynamic). An error is returned otherwise.

Declaration
[JsonProperty("routingPolicy")]
public virtual RRSetRoutingPolicy RoutingPolicy { get; set; }
Property Value
Type Description
RRSetRoutingPolicy

Rrdatas

As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1) -- see examples.

Declaration
[JsonProperty("rrdatas")]
public virtual IList<string> Rrdatas { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<T><string>

SignatureRrdatas

As defined in RFC 4034 (section 3.2).

Declaration
[JsonProperty("signatureRrdatas")]
public virtual IList<string> SignatureRrdatas { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<T><string>

Ttl

Number of seconds that this ResourceRecordSet can be cached by resolvers.

Declaration
[JsonProperty("ttl")]
public virtual int? Ttl { get; set; }
Property Value
Type Description
int?

Type

The identifier of a supported record type. See the list of Supported DNS record types.

Declaration
[JsonProperty("type")]
public virtual string Type { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In This Article
Back to top Generated by DocFX