1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. directmail
  5. Domain
Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

alicloud.directmail.Domain

Explore with Pulumi AI

Provides a Direct Mail Domain resource.

For information about Direct Mail Domain and how to use it, see What is Domain.

NOTE: Available since v1.134.0.

Example Usage

Basic Usage

import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
import * as random from "@pulumi/random";

const _default = new random.index.Integer("default", {
    min: 10000,
    max: 99999,
});
const example = new alicloud.directmail.Domain("example", {domainName: `alicloud-provider-${_default.result}.online`});
Copy
import pulumi
import pulumi_alicloud as alicloud
import pulumi_random as random

default = random.index.Integer("default",
    min=10000,
    max=99999)
example = alicloud.directmail.Domain("example", domain_name=f"alicloud-provider-{default['result']}.online")
Copy
package main

import (
	"fmt"

	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/directmail"
	"github.com/pulumi/pulumi-random/sdk/v4/go/random"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_default, err := random.NewInteger(ctx, "default", &random.IntegerArgs{
			Min: 10000,
			Max: 99999,
		})
		if err != nil {
			return err
		}
		_, err = directmail.NewDomain(ctx, "example", &directmail.DomainArgs{
			DomainName: pulumi.Sprintf("alicloud-provider-%v.online", _default.Result),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
using Random = Pulumi.Random;

return await Deployment.RunAsync(() => 
{
    var @default = new Random.Index.Integer("default", new()
    {
        Min = 10000,
        Max = 99999,
    });

    var example = new AliCloud.DirectMail.Domain("example", new()
    {
        DomainName = $"alicloud-provider-{@default.Result}.online",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.random.integer;
import com.pulumi.random.IntegerArgs;
import com.pulumi.alicloud.directmail.Domain;
import com.pulumi.alicloud.directmail.DomainArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var default_ = new Integer("default", IntegerArgs.builder()
            .min(10000)
            .max(99999)
            .build());

        var example = new Domain("example", DomainArgs.builder()
            .domainName(String.format("alicloud-provider-%s.online", default_.result()))
            .build());

    }
}
Copy
resources:
  default:
    type: random:integer
    properties:
      min: 10000
      max: 99999
  example:
    type: alicloud:directmail:Domain
    properties:
      domainName: alicloud-provider-${default.result}.online
Copy

Create Domain Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Domain(name: string, args: DomainArgs, opts?: CustomResourceOptions);
@overload
def Domain(resource_name: str,
           args: DomainArgs,
           opts: Optional[ResourceOptions] = None)

@overload
def Domain(resource_name: str,
           opts: Optional[ResourceOptions] = None,
           domain_name: Optional[str] = None)
func NewDomain(ctx *Context, name string, args DomainArgs, opts ...ResourceOption) (*Domain, error)
public Domain(string name, DomainArgs args, CustomResourceOptions? opts = null)
public Domain(String name, DomainArgs args)
public Domain(String name, DomainArgs args, CustomResourceOptions options)
type: alicloud:directmail:Domain
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. DomainArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. DomainArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. DomainArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. DomainArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. DomainArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var exampledomainResourceResourceFromDirectmaildomain = new AliCloud.DirectMail.Domain("exampledomainResourceResourceFromDirectmaildomain", new()
{
    DomainName = "string",
});
Copy
example, err := directmail.NewDomain(ctx, "exampledomainResourceResourceFromDirectmaildomain", &directmail.DomainArgs{
	DomainName: pulumi.String("string"),
})
Copy
var exampledomainResourceResourceFromDirectmaildomain = new com.pulumi.alicloud.directmail.Domain("exampledomainResourceResourceFromDirectmaildomain", com.pulumi.alicloud.directmail.DomainArgs.builder()
    .domainName("string")
    .build());
Copy
exampledomain_resource_resource_from_directmaildomain = alicloud.directmail.Domain("exampledomainResourceResourceFromDirectmaildomain", domain_name="string")
Copy
const exampledomainResourceResourceFromDirectmaildomain = new alicloud.directmail.Domain("exampledomainResourceResourceFromDirectmaildomain", {domainName: "string"});
Copy
type: alicloud:directmail:Domain
properties:
    domainName: string
Copy

Domain Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Domain resource accepts the following input properties:

DomainName
This property is required.
Changes to this property will trigger replacement.
string
Domain, length 1 to 50, including numbers or capitals or lowercase letters or . or -
DomainName
This property is required.
Changes to this property will trigger replacement.
string
Domain, length 1 to 50, including numbers or capitals or lowercase letters or . or -
domainName
This property is required.
Changes to this property will trigger replacement.
String
Domain, length 1 to 50, including numbers or capitals or lowercase letters or . or -
domainName
This property is required.
Changes to this property will trigger replacement.
string
Domain, length 1 to 50, including numbers or capitals or lowercase letters or . or -
domain_name
This property is required.
Changes to this property will trigger replacement.
str
Domain, length 1 to 50, including numbers or capitals or lowercase letters or . or -
domainName
This property is required.
Changes to this property will trigger replacement.
String
Domain, length 1 to 50, including numbers or capitals or lowercase letters or . or -

Outputs

All input properties are implicitly available as output properties. Additionally, the Domain resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Status string
The status of the domain name. Valid values:0 to 4. 0:Available, Passed. 1: Unavailable, No passed. 2: Available, cname no passed, icp no passed. 3: Available, icp no passed. 4: Available, cname no passed.
Id string
The provider-assigned unique ID for this managed resource.
Status string
The status of the domain name. Valid values:0 to 4. 0:Available, Passed. 1: Unavailable, No passed. 2: Available, cname no passed, icp no passed. 3: Available, icp no passed. 4: Available, cname no passed.
id String
The provider-assigned unique ID for this managed resource.
status String
The status of the domain name. Valid values:0 to 4. 0:Available, Passed. 1: Unavailable, No passed. 2: Available, cname no passed, icp no passed. 3: Available, icp no passed. 4: Available, cname no passed.
id string
The provider-assigned unique ID for this managed resource.
status string
The status of the domain name. Valid values:0 to 4. 0:Available, Passed. 1: Unavailable, No passed. 2: Available, cname no passed, icp no passed. 3: Available, icp no passed. 4: Available, cname no passed.
id str
The provider-assigned unique ID for this managed resource.
status str
The status of the domain name. Valid values:0 to 4. 0:Available, Passed. 1: Unavailable, No passed. 2: Available, cname no passed, icp no passed. 3: Available, icp no passed. 4: Available, cname no passed.
id String
The provider-assigned unique ID for this managed resource.
status String
The status of the domain name. Valid values:0 to 4. 0:Available, Passed. 1: Unavailable, No passed. 2: Available, cname no passed, icp no passed. 3: Available, icp no passed. 4: Available, cname no passed.

Look up Existing Domain Resource

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

public static get(name: string, id: Input<ID>, state?: DomainState, opts?: CustomResourceOptions): Domain
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        domain_name: Optional[str] = None,
        status: Optional[str] = None) -> Domain
func GetDomain(ctx *Context, name string, id IDInput, state *DomainState, opts ...ResourceOption) (*Domain, error)
public static Domain Get(string name, Input<string> id, DomainState? state, CustomResourceOptions? opts = null)
public static Domain get(String name, Output<String> id, DomainState state, CustomResourceOptions options)
resources:  _:    type: alicloud:directmail:Domain    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
DomainName Changes to this property will trigger replacement. string
Domain, length 1 to 50, including numbers or capitals or lowercase letters or . or -
Status string
The status of the domain name. Valid values:0 to 4. 0:Available, Passed. 1: Unavailable, No passed. 2: Available, cname no passed, icp no passed. 3: Available, icp no passed. 4: Available, cname no passed.
DomainName Changes to this property will trigger replacement. string
Domain, length 1 to 50, including numbers or capitals or lowercase letters or . or -
Status string
The status of the domain name. Valid values:0 to 4. 0:Available, Passed. 1: Unavailable, No passed. 2: Available, cname no passed, icp no passed. 3: Available, icp no passed. 4: Available, cname no passed.
domainName Changes to this property will trigger replacement. String
Domain, length 1 to 50, including numbers or capitals or lowercase letters or . or -
status String
The status of the domain name. Valid values:0 to 4. 0:Available, Passed. 1: Unavailable, No passed. 2: Available, cname no passed, icp no passed. 3: Available, icp no passed. 4: Available, cname no passed.
domainName Changes to this property will trigger replacement. string
Domain, length 1 to 50, including numbers or capitals or lowercase letters or . or -
status string
The status of the domain name. Valid values:0 to 4. 0:Available, Passed. 1: Unavailable, No passed. 2: Available, cname no passed, icp no passed. 3: Available, icp no passed. 4: Available, cname no passed.
domain_name Changes to this property will trigger replacement. str
Domain, length 1 to 50, including numbers or capitals or lowercase letters or . or -
status str
The status of the domain name. Valid values:0 to 4. 0:Available, Passed. 1: Unavailable, No passed. 2: Available, cname no passed, icp no passed. 3: Available, icp no passed. 4: Available, cname no passed.
domainName Changes to this property will trigger replacement. String
Domain, length 1 to 50, including numbers or capitals or lowercase letters or . or -
status String
The status of the domain name. Valid values:0 to 4. 0:Available, Passed. 1: Unavailable, No passed. 2: Available, cname no passed, icp no passed. 3: Available, icp no passed. 4: Available, cname no passed.

Import

Direct Mail Domain can be imported using the id, e.g.

$ pulumi import alicloud:directmail/domain:Domain example <id>
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Alibaba Cloud pulumi/pulumi-alicloud
License
Apache-2.0
Notes
This Pulumi package is based on the alicloud Terraform Provider.