Show / Hide Table of Contents

Class RecordSetState

Inheritance
System.Object
InputArgs
ResourceArgs
RecordSetState
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.OpenStack.Dns
Assembly: Pulumi.OpenStack.dll
Syntax
public sealed class RecordSetState : ResourceArgs

Constructors

View Source

RecordSetState()

Declaration
public RecordSetState()

Properties

View Source

Description

A description of the record set.

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

Name

The name of the record set. Note the . at the end of the name. Changing this creates a new DNS record set.

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

Records

An array of DNS records. Note: if an IPv6 address contains brackets ([ ]), the brackets will be stripped and the modified address will be recorded in the state.

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

Region

The region in which to obtain the V2 DNS client. If omitted, the region argument of the provider is used. Changing this creates a new DNS record set.

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

Ttl

The time to live (TTL) of the record set.

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

Type

The type of record set. Examples: "A", "MX". Changing this creates a new DNS record set.

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

ValueSpecs

Map of additional options. Changing this creates a new record set.

Declaration
public InputMap<object> ValueSpecs { get; set; }
Property Value
Type Description
InputMap<System.Object>
View Source

ZoneId

The ID of the zone in which to create the record set. Changing this creates a new DNS record set.

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