Class RecordSetArgs
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: Pulumi.Gcp.Dns
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class RecordSetArgs : ResourceArgs
Constructors
View SourceRecordSetArgs()
Declaration
public RecordSetArgs()
Properties
View SourceManagedZone
The name of the zone in which this record set will reside.
Declaration
public Input<string> ManagedZone { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Name
The DNS name this record set will apply to.
Declaration
public Input<string> Name { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Project
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
Declaration
public Input<string> Project { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Rrdatas
The string data for the records in this record set
whose meaning depends on the DNS type. For TXT record, if the string data contains spaces, add surrounding \" if you don't want your string to get split on spaces. To specify a single record value longer than 255 characters such as a TXT record for DKIM, add \"\" inside the provider configuration string (e.g. "first255characters\"\"morecharacters").
Declaration
public InputList<string> Rrdatas { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<System.String> |
Ttl
The time-to-live of this record set (seconds).
Declaration
public Input<int> Ttl { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
Type
The DNS record set type.
Declaration
public Input<string> Type { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |