alicloud logo
Alibaba Cloud v3.34.0, Mar 17 23

alicloud.dcdn.Er

Provides a DCDN Er resource.

For information about DCDN Er and how to use it, see What is Er.

NOTE: Available in v1.201.0+.

Example Usage

Basic Usage

using System.Collections.Generic;
using Pulumi;
using AliCloud = Pulumi.AliCloud;

return await Deployment.RunAsync(() => 
{
    var @default = new AliCloud.Dcdn.Er("default", new()
    {
        Description = "tf-example-description",
        EnvConf = new AliCloud.Dcdn.Inputs.ErEnvConfArgs
        {
            Production = new AliCloud.Dcdn.Inputs.ErEnvConfProductionArgs
            {
                AllowedHosts = new[]
                {
                    "example.com",
                },
                SpecName = "5ms",
            },
            Staging = new AliCloud.Dcdn.Inputs.ErEnvConfStagingArgs
            {
                AllowedHosts = new[]
                {
                    "example.com",
                },
                SpecName = "5ms",
            },
        },
        ErName = "tf-example-name",
    });

});
package main

import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/dcdn"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := dcdn.NewEr(ctx, "default", &dcdn.ErArgs{
			Description: pulumi.String("tf-example-description"),
			EnvConf: &dcdn.ErEnvConfArgs{
				Production: &dcdn.ErEnvConfProductionArgs{
					AllowedHosts: pulumi.StringArray{
						pulumi.String("example.com"),
					},
					SpecName: pulumi.String("5ms"),
				},
				Staging: &dcdn.ErEnvConfStagingArgs{
					AllowedHosts: pulumi.StringArray{
						pulumi.String("example.com"),
					},
					SpecName: pulumi.String("5ms"),
				},
			},
			ErName: pulumi.String("tf-example-name"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.dcdn.Er;
import com.pulumi.alicloud.dcdn.ErArgs;
import com.pulumi.alicloud.dcdn.inputs.ErEnvConfArgs;
import com.pulumi.alicloud.dcdn.inputs.ErEnvConfProductionArgs;
import com.pulumi.alicloud.dcdn.inputs.ErEnvConfStagingArgs;
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 Er("default", ErArgs.builder()        
            .description("tf-example-description")
            .envConf(ErEnvConfArgs.builder()
                .production(ErEnvConfProductionArgs.builder()
                    .allowedHosts("example.com")
                    .specName("5ms")
                    .build())
                .staging(ErEnvConfStagingArgs.builder()
                    .allowedHosts("example.com")
                    .specName("5ms")
                    .build())
                .build())
            .erName("tf-example-name")
            .build());

    }
}
import pulumi
import pulumi_alicloud as alicloud

default = alicloud.dcdn.Er("default",
    description="tf-example-description",
    env_conf=alicloud.dcdn.ErEnvConfArgs(
        production=alicloud.dcdn.ErEnvConfProductionArgs(
            allowed_hosts=["example.com"],
            spec_name="5ms",
        ),
        staging=alicloud.dcdn.ErEnvConfStagingArgs(
            allowed_hosts=["example.com"],
            spec_name="5ms",
        ),
    ),
    er_name="tf-example-name")
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";

const _default = new alicloud.dcdn.Er("default", {
    description: "tf-example-description",
    envConf: {
        production: {
            allowedHosts: ["example.com"],
            specName: "5ms",
        },
        staging: {
            allowedHosts: ["example.com"],
            specName: "5ms",
        },
    },
    erName: "tf-example-name",
});
resources:
  default:
    type: alicloud:dcdn:Er
    properties:
      description: tf-example-description
      envConf:
        production:
          allowedHosts:
            - example.com
          specName: 5ms
        staging:
          allowedHosts:
            - example.com
          specName: 5ms
      erName: tf-example-name

Create Er Resource

new Er(name: string, args: ErArgs, opts?: CustomResourceOptions);
@overload
def Er(resource_name: str,
       opts: Optional[ResourceOptions] = None,
       description: Optional[str] = None,
       env_conf: Optional[ErEnvConfArgs] = None,
       er_name: Optional[str] = None)
@overload
def Er(resource_name: str,
       args: ErArgs,
       opts: Optional[ResourceOptions] = None)
func NewEr(ctx *Context, name string, args ErArgs, opts ...ResourceOption) (*Er, error)
public Er(string name, ErArgs args, CustomResourceOptions? opts = null)
public Er(String name, ErArgs args)
public Er(String name, ErArgs args, CustomResourceOptions options)
type: alicloud:dcdn:Er
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

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

Er Resource Properties

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

Inputs

The Er resource accepts the following input properties:

ErName string

The name of the routine. The name must be unique among the routines that belong to the same Alibaba Cloud account.

Description string

Routine The description of the routine.

EnvConf Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfArgs

The configurations of the specified environment. See the following Block env_conf.

ErName string

The name of the routine. The name must be unique among the routines that belong to the same Alibaba Cloud account.

Description string

Routine The description of the routine.

EnvConf ErEnvConfArgs

The configurations of the specified environment. See the following Block env_conf.

erName String

The name of the routine. The name must be unique among the routines that belong to the same Alibaba Cloud account.

description String

Routine The description of the routine.

envConf ErEnvConfArgs

The configurations of the specified environment. See the following Block env_conf.

erName string

The name of the routine. The name must be unique among the routines that belong to the same Alibaba Cloud account.

description string

Routine The description of the routine.

envConf ErEnvConfArgs

The configurations of the specified environment. See the following Block env_conf.

er_name str

The name of the routine. The name must be unique among the routines that belong to the same Alibaba Cloud account.

description str

Routine The description of the routine.

env_conf ErEnvConfArgs

The configurations of the specified environment. See the following Block env_conf.

erName String

The name of the routine. The name must be unique among the routines that belong to the same Alibaba Cloud account.

description String

Routine The description of the routine.

envConf Property Map

The configurations of the specified environment. See the following Block env_conf.

Outputs

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

Id string

The provider-assigned unique ID for this managed resource.

Id string

The provider-assigned unique ID for this managed resource.

id String

The provider-assigned unique ID for this managed resource.

id string

The provider-assigned unique ID for this managed resource.

id str

The provider-assigned unique ID for this managed resource.

id String

The provider-assigned unique ID for this managed resource.

Look up Existing Er Resource

Get an existing Er 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?: ErState, opts?: CustomResourceOptions): Er
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        description: Optional[str] = None,
        env_conf: Optional[ErEnvConfArgs] = None,
        er_name: Optional[str] = None) -> Er
func GetEr(ctx *Context, name string, id IDInput, state *ErState, opts ...ResourceOption) (*Er, error)
public static Er Get(string name, Input<string> id, ErState? state, CustomResourceOptions? opts = null)
public static Er get(String name, Output<String> id, ErState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
name
The unique name of the resulting resource.
id
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
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
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
The unique name of the resulting resource.
id
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
The unique name of the resulting resource.
id
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:
Description string

Routine The description of the routine.

EnvConf Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfArgs

The configurations of the specified environment. See the following Block env_conf.

ErName string

The name of the routine. The name must be unique among the routines that belong to the same Alibaba Cloud account.

Description string

Routine The description of the routine.

EnvConf ErEnvConfArgs

The configurations of the specified environment. See the following Block env_conf.

ErName string

The name of the routine. The name must be unique among the routines that belong to the same Alibaba Cloud account.

description String

Routine The description of the routine.

envConf ErEnvConfArgs

The configurations of the specified environment. See the following Block env_conf.

erName String

The name of the routine. The name must be unique among the routines that belong to the same Alibaba Cloud account.

description string

Routine The description of the routine.

envConf ErEnvConfArgs

The configurations of the specified environment. See the following Block env_conf.

erName string

The name of the routine. The name must be unique among the routines that belong to the same Alibaba Cloud account.

description str

Routine The description of the routine.

env_conf ErEnvConfArgs

The configurations of the specified environment. See the following Block env_conf.

er_name str

The name of the routine. The name must be unique among the routines that belong to the same Alibaba Cloud account.

description String

Routine The description of the routine.

envConf Property Map

The configurations of the specified environment. See the following Block env_conf.

erName String

The name of the routine. The name must be unique among the routines that belong to the same Alibaba Cloud account.

Supporting Types

ErEnvConf

PresetCanaryAnhui Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryAnhui

The configuration of a presetCanaryAnhui environment. The Block preset_canary_anhui is same as Block staging.

PresetCanaryBeijing Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryBeijing

The configuration of a presetCanaryBeijing environment. The Block preset_canary_beijing is same as Block staging.

PresetCanaryChongqing Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryChongqing

The configuration of a presetCanaryChongqing environment. The Block preset_canary_chongqing is same as Block staging.

PresetCanaryFujian Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryFujian

The configuration of a presetCanaryFujian environment. The Block preset_canary_fujian is same as Block staging.

PresetCanaryGansu Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryGansu

The configuration of a presetCanaryGansu environment. The Block preset_canary_gansu is same as Block staging.

PresetCanaryGuangdong Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryGuangdong

The configuration of a presetCanaryGuangdong environment. The Block preset_canary_guangdong is same as Block staging.

PresetCanaryGuangxi Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryGuangxi

The configuration of a presetCanaryGuangxi environment. The Block preset_canary_guangxi is same as Block staging.

PresetCanaryGuizhou Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryGuizhou

The configuration of a presetCanaryGuizhou environment. The Block preset_canary_guizhou is same as Block staging.

PresetCanaryHainan Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryHainan

The configuration of a presetCanaryHainan environment. The Block preset_canary_hainan is same as Block staging.

PresetCanaryHebei Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryHebei

The configuration of a presetCanaryHebei environment. The Block preset_canary_hebei is same as Block staging.

PresetCanaryHeilongjiang Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryHeilongjiang

The configuration of a presetCanaryHeilongjiang environment. The Block preset_canary_heilongjiang is same as Block staging.

PresetCanaryHenan Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryHenan

The configuration of a presetCanaryHenan environment. The Block preset_canary_henan is same as Block staging.

PresetCanaryHongKong Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryHongKong

The configuration of a presetCanaryHongKong environment. The Block preset_canary_hong_kong is same as Block staging.

PresetCanaryHubei Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryHubei

The configuration of a presetCanaryHubei environment. The Block preset_canary_hubei is same as Block staging.

PresetCanaryHunan Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryHunan

The configuration of a presetCanaryHunan environment. The Block preset_canary_hunan is same as Block staging.

PresetCanaryJiangsu Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryJiangsu

The configuration of a presetCanaryJiangsu environment. The Block preset_canary_jiangsu is same as Block staging.

PresetCanaryJiangxi Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryJiangxi

The configuration of a presetCanaryJiangxi environment. The Block preset_canary_jiangxi is same as Block staging.

PresetCanaryJilin Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryJilin

The configuration of a presetCanaryJilin environment. The Block preset_canary_jilin is same as Block staging.

PresetCanaryLiaoning Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryLiaoning

The configuration of a presetCanaryLiaoning environment. The Block preset_canary_liaoning is same as Block staging.

PresetCanaryMacau Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryMacau

The configuration of a presetCanaryMacau environment. The Block preset_canary_macau is same as Block staging.

PresetCanaryNeimenggu Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryNeimenggu

The configuration of a presetCanaryNeimenggu environment. The Block preset_canary_neimenggu is same as Block staging.

PresetCanaryNingxia Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryNingxia

The configuration of a presetCanaryNingxia environment. The Block preset_canary_ningxia is same as Block staging.

PresetCanaryOverseas Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryOverseas

The configuration of a presetCanaryOverseas environment. The Block preset_canary_overseas is same as Block staging.

PresetCanaryQinghai Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryQinghai

The configuration of a presetCanaryQinghai environment. The Block preset_canary_qinghai is same as Block staging.

PresetCanaryShaanxi Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryShaanxi

The configuration of a presetCanaryShaanxi environment. The Block preset_canary_shaanxi is same as Block staging.

PresetCanaryShandong Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryShandong

The configuration of a presetCanaryShandong environment. The Block preset_canary_shandong is same as Block staging.

PresetCanaryShanghai Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryShanghai

The configuration of a presetCanaryShanghai environment. The Block preset_canary_shanghai is same as Block staging.

PresetCanaryShanxi Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryShanxi

The configuration of a presetCanaryShanxi environment. The Block preset_canary_shanxi is same as Block staging.

PresetCanarySichuan Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanarySichuan

The configuration of a presetCanarySichuan environment. The Block preset_canary_sichuan is same as Block staging.

PresetCanaryTaiwan Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryTaiwan

The configuration of a presetCanaryTaiwan environment. The Block preset_canary_taiwan is same as Block staging.

PresetCanaryTianjin Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryTianjin

The configuration of a presetCanaryTianjin environment. The Block preset_canary_tianjin is same as Block staging.

PresetCanaryXinjiang Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryXinjiang

The configuration of a presetCanaryXinjiang environment. The Block preset_canary_xinjiang is same as Block staging.

PresetCanaryXizang Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryXizang

The configuration of a presetCanaryXizang environment. The Block preset_canary_xizang is same as Block staging.

PresetCanaryYunnan Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryYunnan

The configuration of a presetCanaryYunnan environment. The Block preset_canary_yunnan is same as Block staging.

PresetCanaryZhejiang Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryZhejiang

The configuration of a presetCanaryZhejiang environment. The Block preset_canary_zhejiang is same as Block staging.

Production Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfProduction

The configuration of a production environment. The Block production is same as Block staging.

Staging Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfStaging

The configuration of a staging environment. See the following Block staging.

PresetCanaryAnhui ErEnvConfPresetCanaryAnhui

The configuration of a presetCanaryAnhui environment. The Block preset_canary_anhui is same as Block staging.

PresetCanaryBeijing ErEnvConfPresetCanaryBeijing

The configuration of a presetCanaryBeijing environment. The Block preset_canary_beijing is same as Block staging.

PresetCanaryChongqing ErEnvConfPresetCanaryChongqing

The configuration of a presetCanaryChongqing environment. The Block preset_canary_chongqing is same as Block staging.

PresetCanaryFujian ErEnvConfPresetCanaryFujian

The configuration of a presetCanaryFujian environment. The Block preset_canary_fujian is same as Block staging.

PresetCanaryGansu ErEnvConfPresetCanaryGansu

The configuration of a presetCanaryGansu environment. The Block preset_canary_gansu is same as Block staging.

PresetCanaryGuangdong ErEnvConfPresetCanaryGuangdong

The configuration of a presetCanaryGuangdong environment. The Block preset_canary_guangdong is same as Block staging.

PresetCanaryGuangxi ErEnvConfPresetCanaryGuangxi

The configuration of a presetCanaryGuangxi environment. The Block preset_canary_guangxi is same as Block staging.

PresetCanaryGuizhou ErEnvConfPresetCanaryGuizhou

The configuration of a presetCanaryGuizhou environment. The Block preset_canary_guizhou is same as Block staging.

PresetCanaryHainan ErEnvConfPresetCanaryHainan

The configuration of a presetCanaryHainan environment. The Block preset_canary_hainan is same as Block staging.

PresetCanaryHebei ErEnvConfPresetCanaryHebei

The configuration of a presetCanaryHebei environment. The Block preset_canary_hebei is same as Block staging.

PresetCanaryHeilongjiang ErEnvConfPresetCanaryHeilongjiang

The configuration of a presetCanaryHeilongjiang environment. The Block preset_canary_heilongjiang is same as Block staging.

PresetCanaryHenan ErEnvConfPresetCanaryHenan

The configuration of a presetCanaryHenan environment. The Block preset_canary_henan is same as Block staging.

PresetCanaryHongKong ErEnvConfPresetCanaryHongKong

The configuration of a presetCanaryHongKong environment. The Block preset_canary_hong_kong is same as Block staging.

PresetCanaryHubei ErEnvConfPresetCanaryHubei

The configuration of a presetCanaryHubei environment. The Block preset_canary_hubei is same as Block staging.

PresetCanaryHunan ErEnvConfPresetCanaryHunan

The configuration of a presetCanaryHunan environment. The Block preset_canary_hunan is same as Block staging.

PresetCanaryJiangsu ErEnvConfPresetCanaryJiangsu

The configuration of a presetCanaryJiangsu environment. The Block preset_canary_jiangsu is same as Block staging.

PresetCanaryJiangxi ErEnvConfPresetCanaryJiangxi

The configuration of a presetCanaryJiangxi environment. The Block preset_canary_jiangxi is same as Block staging.

PresetCanaryJilin ErEnvConfPresetCanaryJilin

The configuration of a presetCanaryJilin environment. The Block preset_canary_jilin is same as Block staging.

PresetCanaryLiaoning ErEnvConfPresetCanaryLiaoning

The configuration of a presetCanaryLiaoning environment. The Block preset_canary_liaoning is same as Block staging.

PresetCanaryMacau ErEnvConfPresetCanaryMacau

The configuration of a presetCanaryMacau environment. The Block preset_canary_macau is same as Block staging.

PresetCanaryNeimenggu ErEnvConfPresetCanaryNeimenggu

The configuration of a presetCanaryNeimenggu environment. The Block preset_canary_neimenggu is same as Block staging.

PresetCanaryNingxia ErEnvConfPresetCanaryNingxia

The configuration of a presetCanaryNingxia environment. The Block preset_canary_ningxia is same as Block staging.

PresetCanaryOverseas ErEnvConfPresetCanaryOverseas

The configuration of a presetCanaryOverseas environment. The Block preset_canary_overseas is same as Block staging.

PresetCanaryQinghai ErEnvConfPresetCanaryQinghai

The configuration of a presetCanaryQinghai environment. The Block preset_canary_qinghai is same as Block staging.

PresetCanaryShaanxi ErEnvConfPresetCanaryShaanxi

The configuration of a presetCanaryShaanxi environment. The Block preset_canary_shaanxi is same as Block staging.

PresetCanaryShandong ErEnvConfPresetCanaryShandong

The configuration of a presetCanaryShandong environment. The Block preset_canary_shandong is same as Block staging.

PresetCanaryShanghai ErEnvConfPresetCanaryShanghai

The configuration of a presetCanaryShanghai environment. The Block preset_canary_shanghai is same as Block staging.

PresetCanaryShanxi ErEnvConfPresetCanaryShanxi

The configuration of a presetCanaryShanxi environment. The Block preset_canary_shanxi is same as Block staging.

PresetCanarySichuan ErEnvConfPresetCanarySichuan

The configuration of a presetCanarySichuan environment. The Block preset_canary_sichuan is same as Block staging.

PresetCanaryTaiwan ErEnvConfPresetCanaryTaiwan

The configuration of a presetCanaryTaiwan environment. The Block preset_canary_taiwan is same as Block staging.

PresetCanaryTianjin ErEnvConfPresetCanaryTianjin

The configuration of a presetCanaryTianjin environment. The Block preset_canary_tianjin is same as Block staging.

PresetCanaryXinjiang ErEnvConfPresetCanaryXinjiang

The configuration of a presetCanaryXinjiang environment. The Block preset_canary_xinjiang is same as Block staging.

PresetCanaryXizang ErEnvConfPresetCanaryXizang

The configuration of a presetCanaryXizang environment. The Block preset_canary_xizang is same as Block staging.

PresetCanaryYunnan ErEnvConfPresetCanaryYunnan

The configuration of a presetCanaryYunnan environment. The Block preset_canary_yunnan is same as Block staging.

PresetCanaryZhejiang ErEnvConfPresetCanaryZhejiang

The configuration of a presetCanaryZhejiang environment. The Block preset_canary_zhejiang is same as Block staging.

Production ErEnvConfProduction

The configuration of a production environment. The Block production is same as Block staging.

Staging ErEnvConfStaging

The configuration of a staging environment. See the following Block staging.

presetCanaryAnhui ErEnvConfPresetCanaryAnhui

The configuration of a presetCanaryAnhui environment. The Block preset_canary_anhui is same as Block staging.

presetCanaryBeijing ErEnvConfPresetCanaryBeijing

The configuration of a presetCanaryBeijing environment. The Block preset_canary_beijing is same as Block staging.

presetCanaryChongqing ErEnvConfPresetCanaryChongqing

The configuration of a presetCanaryChongqing environment. The Block preset_canary_chongqing is same as Block staging.

presetCanaryFujian ErEnvConfPresetCanaryFujian

The configuration of a presetCanaryFujian environment. The Block preset_canary_fujian is same as Block staging.

presetCanaryGansu ErEnvConfPresetCanaryGansu

The configuration of a presetCanaryGansu environment. The Block preset_canary_gansu is same as Block staging.

presetCanaryGuangdong ErEnvConfPresetCanaryGuangdong

The configuration of a presetCanaryGuangdong environment. The Block preset_canary_guangdong is same as Block staging.

presetCanaryGuangxi ErEnvConfPresetCanaryGuangxi

The configuration of a presetCanaryGuangxi environment. The Block preset_canary_guangxi is same as Block staging.

presetCanaryGuizhou ErEnvConfPresetCanaryGuizhou

The configuration of a presetCanaryGuizhou environment. The Block preset_canary_guizhou is same as Block staging.

presetCanaryHainan ErEnvConfPresetCanaryHainan

The configuration of a presetCanaryHainan environment. The Block preset_canary_hainan is same as Block staging.

presetCanaryHebei ErEnvConfPresetCanaryHebei

The configuration of a presetCanaryHebei environment. The Block preset_canary_hebei is same as Block staging.

presetCanaryHeilongjiang ErEnvConfPresetCanaryHeilongjiang

The configuration of a presetCanaryHeilongjiang environment. The Block preset_canary_heilongjiang is same as Block staging.

presetCanaryHenan ErEnvConfPresetCanaryHenan

The configuration of a presetCanaryHenan environment. The Block preset_canary_henan is same as Block staging.

presetCanaryHongKong ErEnvConfPresetCanaryHongKong

The configuration of a presetCanaryHongKong environment. The Block preset_canary_hong_kong is same as Block staging.

presetCanaryHubei ErEnvConfPresetCanaryHubei

The configuration of a presetCanaryHubei environment. The Block preset_canary_hubei is same as Block staging.

presetCanaryHunan ErEnvConfPresetCanaryHunan

The configuration of a presetCanaryHunan environment. The Block preset_canary_hunan is same as Block staging.

presetCanaryJiangsu ErEnvConfPresetCanaryJiangsu

The configuration of a presetCanaryJiangsu environment. The Block preset_canary_jiangsu is same as Block staging.

presetCanaryJiangxi ErEnvConfPresetCanaryJiangxi

The configuration of a presetCanaryJiangxi environment. The Block preset_canary_jiangxi is same as Block staging.

presetCanaryJilin ErEnvConfPresetCanaryJilin

The configuration of a presetCanaryJilin environment. The Block preset_canary_jilin is same as Block staging.

presetCanaryLiaoning ErEnvConfPresetCanaryLiaoning

The configuration of a presetCanaryLiaoning environment. The Block preset_canary_liaoning is same as Block staging.

presetCanaryMacau ErEnvConfPresetCanaryMacau

The configuration of a presetCanaryMacau environment. The Block preset_canary_macau is same as Block staging.

presetCanaryNeimenggu ErEnvConfPresetCanaryNeimenggu

The configuration of a presetCanaryNeimenggu environment. The Block preset_canary_neimenggu is same as Block staging.

presetCanaryNingxia ErEnvConfPresetCanaryNingxia

The configuration of a presetCanaryNingxia environment. The Block preset_canary_ningxia is same as Block staging.

presetCanaryOverseas ErEnvConfPresetCanaryOverseas

The configuration of a presetCanaryOverseas environment. The Block preset_canary_overseas is same as Block staging.

presetCanaryQinghai ErEnvConfPresetCanaryQinghai

The configuration of a presetCanaryQinghai environment. The Block preset_canary_qinghai is same as Block staging.

presetCanaryShaanxi ErEnvConfPresetCanaryShaanxi

The configuration of a presetCanaryShaanxi environment. The Block preset_canary_shaanxi is same as Block staging.

presetCanaryShandong ErEnvConfPresetCanaryShandong

The configuration of a presetCanaryShandong environment. The Block preset_canary_shandong is same as Block staging.

presetCanaryShanghai ErEnvConfPresetCanaryShanghai

The configuration of a presetCanaryShanghai environment. The Block preset_canary_shanghai is same as Block staging.

presetCanaryShanxi ErEnvConfPresetCanaryShanxi

The configuration of a presetCanaryShanxi environment. The Block preset_canary_shanxi is same as Block staging.

presetCanarySichuan ErEnvConfPresetCanarySichuan

The configuration of a presetCanarySichuan environment. The Block preset_canary_sichuan is same as Block staging.

presetCanaryTaiwan ErEnvConfPresetCanaryTaiwan

The configuration of a presetCanaryTaiwan environment. The Block preset_canary_taiwan is same as Block staging.

presetCanaryTianjin ErEnvConfPresetCanaryTianjin

The configuration of a presetCanaryTianjin environment. The Block preset_canary_tianjin is same as Block staging.

presetCanaryXinjiang ErEnvConfPresetCanaryXinjiang

The configuration of a presetCanaryXinjiang environment. The Block preset_canary_xinjiang is same as Block staging.

presetCanaryXizang ErEnvConfPresetCanaryXizang

The configuration of a presetCanaryXizang environment. The Block preset_canary_xizang is same as Block staging.

presetCanaryYunnan ErEnvConfPresetCanaryYunnan

The configuration of a presetCanaryYunnan environment. The Block preset_canary_yunnan is same as Block staging.

presetCanaryZhejiang ErEnvConfPresetCanaryZhejiang

The configuration of a presetCanaryZhejiang environment. The Block preset_canary_zhejiang is same as Block staging.

production ErEnvConfProduction

The configuration of a production environment. The Block production is same as Block staging.

staging ErEnvConfStaging

The configuration of a staging environment. See the following Block staging.

presetCanaryAnhui ErEnvConfPresetCanaryAnhui

The configuration of a presetCanaryAnhui environment. The Block preset_canary_anhui is same as Block staging.

presetCanaryBeijing ErEnvConfPresetCanaryBeijing

The configuration of a presetCanaryBeijing environment. The Block preset_canary_beijing is same as Block staging.

presetCanaryChongqing ErEnvConfPresetCanaryChongqing

The configuration of a presetCanaryChongqing environment. The Block preset_canary_chongqing is same as Block staging.

presetCanaryFujian ErEnvConfPresetCanaryFujian

The configuration of a presetCanaryFujian environment. The Block preset_canary_fujian is same as Block staging.

presetCanaryGansu ErEnvConfPresetCanaryGansu

The configuration of a presetCanaryGansu environment. The Block preset_canary_gansu is same as Block staging.

presetCanaryGuangdong ErEnvConfPresetCanaryGuangdong

The configuration of a presetCanaryGuangdong environment. The Block preset_canary_guangdong is same as Block staging.

presetCanaryGuangxi ErEnvConfPresetCanaryGuangxi

The configuration of a presetCanaryGuangxi environment. The Block preset_canary_guangxi is same as Block staging.

presetCanaryGuizhou ErEnvConfPresetCanaryGuizhou

The configuration of a presetCanaryGuizhou environment. The Block preset_canary_guizhou is same as Block staging.

presetCanaryHainan ErEnvConfPresetCanaryHainan

The configuration of a presetCanaryHainan environment. The Block preset_canary_hainan is same as Block staging.

presetCanaryHebei ErEnvConfPresetCanaryHebei

The configuration of a presetCanaryHebei environment. The Block preset_canary_hebei is same as Block staging.

presetCanaryHeilongjiang ErEnvConfPresetCanaryHeilongjiang

The configuration of a presetCanaryHeilongjiang environment. The Block preset_canary_heilongjiang is same as Block staging.

presetCanaryHenan ErEnvConfPresetCanaryHenan

The configuration of a presetCanaryHenan environment. The Block preset_canary_henan is same as Block staging.

presetCanaryHongKong ErEnvConfPresetCanaryHongKong

The configuration of a presetCanaryHongKong environment. The Block preset_canary_hong_kong is same as Block staging.

presetCanaryHubei ErEnvConfPresetCanaryHubei

The configuration of a presetCanaryHubei environment. The Block preset_canary_hubei is same as Block staging.

presetCanaryHunan ErEnvConfPresetCanaryHunan

The configuration of a presetCanaryHunan environment. The Block preset_canary_hunan is same as Block staging.

presetCanaryJiangsu ErEnvConfPresetCanaryJiangsu

The configuration of a presetCanaryJiangsu environment. The Block preset_canary_jiangsu is same as Block staging.

presetCanaryJiangxi ErEnvConfPresetCanaryJiangxi

The configuration of a presetCanaryJiangxi environment. The Block preset_canary_jiangxi is same as Block staging.

presetCanaryJilin ErEnvConfPresetCanaryJilin

The configuration of a presetCanaryJilin environment. The Block preset_canary_jilin is same as Block staging.

presetCanaryLiaoning ErEnvConfPresetCanaryLiaoning

The configuration of a presetCanaryLiaoning environment. The Block preset_canary_liaoning is same as Block staging.

presetCanaryMacau ErEnvConfPresetCanaryMacau

The configuration of a presetCanaryMacau environment. The Block preset_canary_macau is same as Block staging.

presetCanaryNeimenggu ErEnvConfPresetCanaryNeimenggu

The configuration of a presetCanaryNeimenggu environment. The Block preset_canary_neimenggu is same as Block staging.

presetCanaryNingxia ErEnvConfPresetCanaryNingxia

The configuration of a presetCanaryNingxia environment. The Block preset_canary_ningxia is same as Block staging.

presetCanaryOverseas ErEnvConfPresetCanaryOverseas

The configuration of a presetCanaryOverseas environment. The Block preset_canary_overseas is same as Block staging.

presetCanaryQinghai ErEnvConfPresetCanaryQinghai

The configuration of a presetCanaryQinghai environment. The Block preset_canary_qinghai is same as Block staging.

presetCanaryShaanxi ErEnvConfPresetCanaryShaanxi

The configuration of a presetCanaryShaanxi environment. The Block preset_canary_shaanxi is same as Block staging.

presetCanaryShandong ErEnvConfPresetCanaryShandong

The configuration of a presetCanaryShandong environment. The Block preset_canary_shandong is same as Block staging.

presetCanaryShanghai ErEnvConfPresetCanaryShanghai

The configuration of a presetCanaryShanghai environment. The Block preset_canary_shanghai is same as Block staging.

presetCanaryShanxi ErEnvConfPresetCanaryShanxi

The configuration of a presetCanaryShanxi environment. The Block preset_canary_shanxi is same as Block staging.

presetCanarySichuan ErEnvConfPresetCanarySichuan

The configuration of a presetCanarySichuan environment. The Block preset_canary_sichuan is same as Block staging.

presetCanaryTaiwan ErEnvConfPresetCanaryTaiwan

The configuration of a presetCanaryTaiwan environment. The Block preset_canary_taiwan is same as Block staging.

presetCanaryTianjin ErEnvConfPresetCanaryTianjin

The configuration of a presetCanaryTianjin environment. The Block preset_canary_tianjin is same as Block staging.

presetCanaryXinjiang ErEnvConfPresetCanaryXinjiang

The configuration of a presetCanaryXinjiang environment. The Block preset_canary_xinjiang is same as Block staging.

presetCanaryXizang ErEnvConfPresetCanaryXizang

The configuration of a presetCanaryXizang environment. The Block preset_canary_xizang is same as Block staging.

presetCanaryYunnan ErEnvConfPresetCanaryYunnan

The configuration of a presetCanaryYunnan environment. The Block preset_canary_yunnan is same as Block staging.

presetCanaryZhejiang ErEnvConfPresetCanaryZhejiang

The configuration of a presetCanaryZhejiang environment. The Block preset_canary_zhejiang is same as Block staging.

production ErEnvConfProduction

The configuration of a production environment. The Block production is same as Block staging.

staging ErEnvConfStaging

The configuration of a staging environment. See the following Block staging.

preset_canary_anhui ErEnvConfPresetCanaryAnhui

The configuration of a presetCanaryAnhui environment. The Block preset_canary_anhui is same as Block staging.

preset_canary_beijing ErEnvConfPresetCanaryBeijing

The configuration of a presetCanaryBeijing environment. The Block preset_canary_beijing is same as Block staging.

preset_canary_chongqing ErEnvConfPresetCanaryChongqing

The configuration of a presetCanaryChongqing environment. The Block preset_canary_chongqing is same as Block staging.

preset_canary_fujian ErEnvConfPresetCanaryFujian

The configuration of a presetCanaryFujian environment. The Block preset_canary_fujian is same as Block staging.

preset_canary_gansu ErEnvConfPresetCanaryGansu

The configuration of a presetCanaryGansu environment. The Block preset_canary_gansu is same as Block staging.

preset_canary_guangdong ErEnvConfPresetCanaryGuangdong

The configuration of a presetCanaryGuangdong environment. The Block preset_canary_guangdong is same as Block staging.

preset_canary_guangxi ErEnvConfPresetCanaryGuangxi

The configuration of a presetCanaryGuangxi environment. The Block preset_canary_guangxi is same as Block staging.

preset_canary_guizhou ErEnvConfPresetCanaryGuizhou

The configuration of a presetCanaryGuizhou environment. The Block preset_canary_guizhou is same as Block staging.

preset_canary_hainan ErEnvConfPresetCanaryHainan

The configuration of a presetCanaryHainan environment. The Block preset_canary_hainan is same as Block staging.

preset_canary_hebei ErEnvConfPresetCanaryHebei

The configuration of a presetCanaryHebei environment. The Block preset_canary_hebei is same as Block staging.

preset_canary_heilongjiang ErEnvConfPresetCanaryHeilongjiang

The configuration of a presetCanaryHeilongjiang environment. The Block preset_canary_heilongjiang is same as Block staging.

preset_canary_henan ErEnvConfPresetCanaryHenan

The configuration of a presetCanaryHenan environment. The Block preset_canary_henan is same as Block staging.

preset_canary_hong_kong ErEnvConfPresetCanaryHongKong

The configuration of a presetCanaryHongKong environment. The Block preset_canary_hong_kong is same as Block staging.

preset_canary_hubei ErEnvConfPresetCanaryHubei

The configuration of a presetCanaryHubei environment. The Block preset_canary_hubei is same as Block staging.

preset_canary_hunan ErEnvConfPresetCanaryHunan

The configuration of a presetCanaryHunan environment. The Block preset_canary_hunan is same as Block staging.

preset_canary_jiangsu ErEnvConfPresetCanaryJiangsu

The configuration of a presetCanaryJiangsu environment. The Block preset_canary_jiangsu is same as Block staging.

preset_canary_jiangxi ErEnvConfPresetCanaryJiangxi

The configuration of a presetCanaryJiangxi environment. The Block preset_canary_jiangxi is same as Block staging.

preset_canary_jilin ErEnvConfPresetCanaryJilin

The configuration of a presetCanaryJilin environment. The Block preset_canary_jilin is same as Block staging.

preset_canary_liaoning ErEnvConfPresetCanaryLiaoning

The configuration of a presetCanaryLiaoning environment. The Block preset_canary_liaoning is same as Block staging.

preset_canary_macau ErEnvConfPresetCanaryMacau

The configuration of a presetCanaryMacau environment. The Block preset_canary_macau is same as Block staging.

preset_canary_neimenggu ErEnvConfPresetCanaryNeimenggu

The configuration of a presetCanaryNeimenggu environment. The Block preset_canary_neimenggu is same as Block staging.

preset_canary_ningxia ErEnvConfPresetCanaryNingxia

The configuration of a presetCanaryNingxia environment. The Block preset_canary_ningxia is same as Block staging.

preset_canary_overseas ErEnvConfPresetCanaryOverseas

The configuration of a presetCanaryOverseas environment. The Block preset_canary_overseas is same as Block staging.

preset_canary_qinghai ErEnvConfPresetCanaryQinghai

The configuration of a presetCanaryQinghai environment. The Block preset_canary_qinghai is same as Block staging.

preset_canary_shaanxi ErEnvConfPresetCanaryShaanxi

The configuration of a presetCanaryShaanxi environment. The Block preset_canary_shaanxi is same as Block staging.

preset_canary_shandong ErEnvConfPresetCanaryShandong

The configuration of a presetCanaryShandong environment. The Block preset_canary_shandong is same as Block staging.

preset_canary_shanghai ErEnvConfPresetCanaryShanghai

The configuration of a presetCanaryShanghai environment. The Block preset_canary_shanghai is same as Block staging.

preset_canary_shanxi ErEnvConfPresetCanaryShanxi

The configuration of a presetCanaryShanxi environment. The Block preset_canary_shanxi is same as Block staging.

preset_canary_sichuan ErEnvConfPresetCanarySichuan

The configuration of a presetCanarySichuan environment. The Block preset_canary_sichuan is same as Block staging.

preset_canary_taiwan ErEnvConfPresetCanaryTaiwan

The configuration of a presetCanaryTaiwan environment. The Block preset_canary_taiwan is same as Block staging.

preset_canary_tianjin ErEnvConfPresetCanaryTianjin

The configuration of a presetCanaryTianjin environment. The Block preset_canary_tianjin is same as Block staging.

preset_canary_xinjiang ErEnvConfPresetCanaryXinjiang

The configuration of a presetCanaryXinjiang environment. The Block preset_canary_xinjiang is same as Block staging.

preset_canary_xizang ErEnvConfPresetCanaryXizang

The configuration of a presetCanaryXizang environment. The Block preset_canary_xizang is same as Block staging.

preset_canary_yunnan ErEnvConfPresetCanaryYunnan

The configuration of a presetCanaryYunnan environment. The Block preset_canary_yunnan is same as Block staging.

preset_canary_zhejiang ErEnvConfPresetCanaryZhejiang

The configuration of a presetCanaryZhejiang environment. The Block preset_canary_zhejiang is same as Block staging.

production ErEnvConfProduction

The configuration of a production environment. The Block production is same as Block staging.

staging ErEnvConfStaging

The configuration of a staging environment. See the following Block staging.

presetCanaryAnhui Property Map

The configuration of a presetCanaryAnhui environment. The Block preset_canary_anhui is same as Block staging.

presetCanaryBeijing Property Map

The configuration of a presetCanaryBeijing environment. The Block preset_canary_beijing is same as Block staging.

presetCanaryChongqing Property Map

The configuration of a presetCanaryChongqing environment. The Block preset_canary_chongqing is same as Block staging.

presetCanaryFujian Property Map

The configuration of a presetCanaryFujian environment. The Block preset_canary_fujian is same as Block staging.

presetCanaryGansu Property Map

The configuration of a presetCanaryGansu environment. The Block preset_canary_gansu is same as Block staging.

presetCanaryGuangdong Property Map

The configuration of a presetCanaryGuangdong environment. The Block preset_canary_guangdong is same as Block staging.

presetCanaryGuangxi Property Map

The configuration of a presetCanaryGuangxi environment. The Block preset_canary_guangxi is same as Block staging.

presetCanaryGuizhou Property Map

The configuration of a presetCanaryGuizhou environment. The Block preset_canary_guizhou is same as Block staging.

presetCanaryHainan Property Map

The configuration of a presetCanaryHainan environment. The Block preset_canary_hainan is same as Block staging.

presetCanaryHebei Property Map

The configuration of a presetCanaryHebei environment. The Block preset_canary_hebei is same as Block staging.

presetCanaryHeilongjiang Property Map

The configuration of a presetCanaryHeilongjiang environment. The Block preset_canary_heilongjiang is same as Block staging.

presetCanaryHenan Property Map

The configuration of a presetCanaryHenan environment. The Block preset_canary_henan is same as Block staging.

presetCanaryHongKong Property Map

The configuration of a presetCanaryHongKong environment. The Block preset_canary_hong_kong is same as Block staging.

presetCanaryHubei Property Map

The configuration of a presetCanaryHubei environment. The Block preset_canary_hubei is same as Block staging.

presetCanaryHunan Property Map

The configuration of a presetCanaryHunan environment. The Block preset_canary_hunan is same as Block staging.

presetCanaryJiangsu Property Map

The configuration of a presetCanaryJiangsu environment. The Block preset_canary_jiangsu is same as Block staging.

presetCanaryJiangxi Property Map

The configuration of a presetCanaryJiangxi environment. The Block preset_canary_jiangxi is same as Block staging.

presetCanaryJilin Property Map

The configuration of a presetCanaryJilin environment. The Block preset_canary_jilin is same as Block staging.

presetCanaryLiaoning Property Map

The configuration of a presetCanaryLiaoning environment. The Block preset_canary_liaoning is same as Block staging.

presetCanaryMacau Property Map

The configuration of a presetCanaryMacau environment. The Block preset_canary_macau is same as Block staging.

presetCanaryNeimenggu Property Map

The configuration of a presetCanaryNeimenggu environment. The Block preset_canary_neimenggu is same as Block staging.

presetCanaryNingxia Property Map

The configuration of a presetCanaryNingxia environment. The Block preset_canary_ningxia is same as Block staging.

presetCanaryOverseas Property Map

The configuration of a presetCanaryOverseas environment. The Block preset_canary_overseas is same as Block staging.

presetCanaryQinghai Property Map

The configuration of a presetCanaryQinghai environment. The Block preset_canary_qinghai is same as Block staging.

presetCanaryShaanxi Property Map

The configuration of a presetCanaryShaanxi environment. The Block preset_canary_shaanxi is same as Block staging.

presetCanaryShandong Property Map

The configuration of a presetCanaryShandong environment. The Block preset_canary_shandong is same as Block staging.

presetCanaryShanghai Property Map

The configuration of a presetCanaryShanghai environment. The Block preset_canary_shanghai is same as Block staging.

presetCanaryShanxi Property Map

The configuration of a presetCanaryShanxi environment. The Block preset_canary_shanxi is same as Block staging.

presetCanarySichuan Property Map

The configuration of a presetCanarySichuan environment. The Block preset_canary_sichuan is same as Block staging.

presetCanaryTaiwan Property Map

The configuration of a presetCanaryTaiwan environment. The Block preset_canary_taiwan is same as Block staging.

presetCanaryTianjin Property Map

The configuration of a presetCanaryTianjin environment. The Block preset_canary_tianjin is same as Block staging.

presetCanaryXinjiang Property Map

The configuration of a presetCanaryXinjiang environment. The Block preset_canary_xinjiang is same as Block staging.

presetCanaryXizang Property Map

The configuration of a presetCanaryXizang environment. The Block preset_canary_xizang is same as Block staging.

presetCanaryYunnan Property Map

The configuration of a presetCanaryYunnan environment. The Block preset_canary_yunnan is same as Block staging.

presetCanaryZhejiang Property Map

The configuration of a presetCanaryZhejiang environment. The Block preset_canary_zhejiang is same as Block staging.

production Property Map

The configuration of a production environment. The Block production is same as Block staging.

staging Property Map

The configuration of a staging environment. See the following Block staging.

ErEnvConfPresetCanaryAnhui

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryBeijing

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryChongqing

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryFujian

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryGansu

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryGuangdong

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryGuangxi

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryGuizhou

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryHainan

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryHebei

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryHeilongjiang

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryHenan

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryHongKong

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryHubei

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryHunan

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryJiangsu

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryJiangxi

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryJilin

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryLiaoning

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryMacau

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryNeimenggu

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryNingxia

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryOverseas

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryQinghai

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryShaanxi

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryShandong

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryShanghai

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryShanxi

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanarySichuan

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryTaiwan

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryTianjin

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryXinjiang

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryXizang

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryYunnan

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfPresetCanaryZhejiang

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfProduction

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

ErEnvConfStaging

AllowedHosts List<string>

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

AllowedHosts []string

Allowed DCDN domain names.

CodeRev string

The version number of the code.

SpecName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts string[]

Allowed DCDN domain names.

codeRev string

The version number of the code.

specName string

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowed_hosts Sequence[str]

Allowed DCDN domain names.

code_rev str

The version number of the code.

spec_name str

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

allowedHosts List<String>

Allowed DCDN domain names.

codeRev String

The version number of the code.

specName String

The specification of the CPU time slice. Valid values: 5ms, 50ms, 100ms.

Import

DCDN Er can be imported using the id, e.g.

 $ pulumi import alicloud:dcdn/er:Er example <id>

Package Details

Repository
Alibaba Cloud pulumi/pulumi-alicloud
License
Apache-2.0
Notes

This Pulumi package is based on the alicloud Terraform Provider.