Class ResourceRecordSet
A unit of data that is returned by the DNS servers.
Inheritance
System.Object
ResourceRecordSet
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Dns.v2.Data
Assembly: Google.Apis.Dns.v2.dll
Syntax
public class ResourceRecordSet : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Kind
Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Name
For example, www.example.com.
Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type | Description |
---|---|
System.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<System.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<System.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 |
---|---|
System.Nullable<System.Int32> |
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 |
---|---|
System.String |
Implements
Google.Apis.Requests.IDirectResponseSchema