Show / Hide Table of Contents

Class DnsRecordSet

Represents a DNS record set resource.

Inheritance
System.Object
DnsRecordSet
Implements
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.ServiceNetworking.v1beta.Data
Assembly: Google.Apis.ServiceNetworking.v1beta.dll
Syntax
public class DnsRecordSet : IDirectResponseSchema

Properties

Data

Required. As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1) for examples see https://cloud.google.com/dns/records/json-record.

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

Domain

Required. The DNS or domain name of the record set, e.g. test.example.com.

Declaration
[JsonProperty("domain")]
public virtual string Domain { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

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

Ttl

Required. The period of time for which this RecordSet can be cached by resolvers.

Declaration
[JsonProperty("ttl")]
public virtual object Ttl { get; set; }
Property Value
Type Description
System.Object

Type

Required. The identifier of a supported record type.

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

Implements

IDirectResponseSchema
Back to top