Show / Hide Table of Contents

Class RecordSetArgs

Inheritance
System.Object
InputArgs
ResourceArgs
RecordSetArgs
Inherited Members
ResourceArgs.Empty
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 Source

RecordSetArgs()

Declaration
public RecordSetArgs()

Properties

View Source

ManagedZone

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>
View Source

Name

The DNS name this record set will apply to.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

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>
View Source

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 \&quot; 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 \&quot;\&quot; inside the provider configuration string (e.g. &quot;first255characters\&quot;\&quot;morecharacters&quot;).

Declaration
public InputList<string> Rrdatas { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

Ttl

The time-to-live of this record set (seconds).

Declaration
public Input<int> Ttl { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Type

The DNS record set type.

Declaration
public Input<string> Type { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.