Show / Hide Table of Contents

Class RecordState

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

Constructors

View Source

RecordState()

Declaration
public RecordState()

Properties

View Source

CreatedOn

The RFC3339 timestamp of when the record was created

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

Data

Map of attributes that constitute the record value. Primarily used for LOC and SRV record types. Either this or value must be specified

Declaration
public Input<RecordDataGetArgs> Data { get; set; }
Property Value
Type Description
Input<RecordDataGetArgs>
View Source

Hostname

The FQDN of the record

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

Metadata

A key-value map of string metadata Cloudflare associates with the record

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

ModifiedOn

The RFC3339 timestamp of when the record was last modified

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

Name

The name of the record

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

Priority

The priority of the record

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

Proxiable

Shows whether this record can be proxied, must be true if setting proxied=true

Declaration
public Input<bool> Proxiable { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Proxied

Whether the record gets Cloudflare's origin protection; defaults to false.

Declaration
public Input<bool> Proxied { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Ttl

The TTL of the record (automatic: '1')

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

Type

The type of the record

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

Value

The (string) value of the record. Either this or data must be specified

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

ZoneId

The DNS zone ID to add the record to

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