Show / Hide Table of Contents

Class DomainGroup

Provides a Alidns Domain Group resource. For information about Alidns Domain Group and how to use it, see What is Resource Alidns Domain Group.

NOTE: Available in v1.84.0+.

Example Usage

using Pulumi;
using AliCloud = Pulumi.AliCloud;

class MyStack : Stack
{
public MyStack()
{
    // Add a new Alinds Domain Group.
    var example = new AliCloud.Dns.DomainGroup("example", new AliCloud.Dns.DomainGroupArgs
    {
        GroupName = "tf-testDG",
    });
}

}
Inheritance
System.Object
Resource
CustomResource
DomainGroup
Inherited Members
CustomResource.Id
Resource.GetResourceType()
Resource.GetResourceName()
Resource.Urn
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 class DomainGroup : CustomResource

Constructors

View Source

DomainGroup(String, DomainGroupArgs, CustomResourceOptions)

Create a DomainGroup resource with the given unique name, arguments, and options.

Declaration
public DomainGroup(string name, DomainGroupArgs args, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resource

DomainGroupArgs args

The arguments used to populate this resource's properties

CustomResourceOptions options

A bag of options that control this resource's behavior

Properties

View Source

GroupName

Name of the domain group.

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

Lang

User language.

Declaration
public Output<string> Lang { get; }
Property Value
Type Description
Output<System.String>

Methods

View Source

Get(String, Input<String>, DomainGroupState, CustomResourceOptions)

Get an existing DomainGroup resource's state with the given name, ID, and optional extra properties used to qualify the lookup.

Declaration
public static DomainGroup Get(string name, Input<string> id, DomainGroupState state = null, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resulting resource.

Input<System.String> id

The unique provider ID of the resource to lookup.

DomainGroupState state

Any extra arguments used during the lookup.

CustomResourceOptions options

A bag of options that control this resource's behavior

Returns
Type Description
DomainGroup
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.