Show / Hide Table of Contents

Class GetDomainTxtGuid

Inheritance
System.Object
GetDomainTxtGuid
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.AliCloud.Dns
Assembly: Pulumi.AliCloud.dll
Syntax
public static class GetDomainTxtGuid

Methods

View Source

InvokeAsync(GetDomainTxtGuidArgs, InvokeOptions)

Provides the generation of txt records to realize the retrieval and verification of domain names.

NOTE: Available in v1.80.0+.

{{% examples %}}

Example Usage

{{% example %}}

using Pulumi;
using AliCloud = Pulumi.AliCloud;

class MyStack : Stack
{
public MyStack()
{
    var @this = Output.Create(AliCloud.Dns.GetDomainTxtGuid.InvokeAsync(new AliCloud.Dns.GetDomainTxtGuidArgs
    {
        DomainName = "test111.abc",
        Type = "ADD_SUB_DOMAIN",
    }));
    this.Rr = @this.Apply(@this => @this.Rr);
    this.Value = @this.Apply(@this => @this.Value);
}

[Output("rr")]
public Output<string> Rr { get; set; }
[Output("value")]
public Output<string> Value { get; set; }
}

{{% /example %}} {{% /examples %}}

Declaration
public static Task<GetDomainTxtGuidResult> InvokeAsync(GetDomainTxtGuidArgs args, InvokeOptions options = null)
Parameters
Type Name Description
GetDomainTxtGuidArgs args
InvokeOptions options
Returns
Type Description
System.Threading.Tasks.Task<GetDomainTxtGuidResult>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.