1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. dcdn
  5. Er
Alibaba Cloud v3.45.0 published on Monday, Nov 27, 2023 by Pulumi

alicloud.dcdn.Er

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.45.0 published on Monday, Nov 27, 2023 by Pulumi

    Provides a DCDN Er resource.

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

    NOTE: Available since v1.201.0.

    Example Usage

    Basic Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var name = config.Get("name") ?? "tf-example";
        var @default = new AliCloud.Dcdn.Er("default", new()
        {
            ErName = name,
            Description = name,
            EnvConf = new AliCloud.Dcdn.Inputs.ErEnvConfArgs
            {
                Staging = new AliCloud.Dcdn.Inputs.ErEnvConfStagingArgs
                {
                    SpecName = "5ms",
                    AllowedHosts = new[]
                    {
                        "example.com",
                    },
                },
                Production = new AliCloud.Dcdn.Inputs.ErEnvConfProductionArgs
                {
                    SpecName = "5ms",
                    AllowedHosts = new[]
                    {
                        "example.com",
                    },
                },
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/dcdn"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		name := "tf-example"
    		if param := cfg.Get("name"); param != "" {
    			name = param
    		}
    		_, err := dcdn.NewEr(ctx, "default", &dcdn.ErArgs{
    			ErName:      pulumi.String(name),
    			Description: pulumi.String(name),
    			EnvConf: &dcdn.ErEnvConfArgs{
    				Staging: &dcdn.ErEnvConfStagingArgs{
    					SpecName: pulumi.String("5ms"),
    					AllowedHosts: pulumi.StringArray{
    						pulumi.String("example.com"),
    					},
    				},
    				Production: &dcdn.ErEnvConfProductionArgs{
    					SpecName: pulumi.String("5ms"),
    					AllowedHosts: pulumi.StringArray{
    						pulumi.String("example.com"),
    					},
    				},
    			},
    		})
    		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.ErEnvConfStagingArgs;
    import com.pulumi.alicloud.dcdn.inputs.ErEnvConfProductionArgs;
    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) {
            final var config = ctx.config();
            final var name = config.get("name").orElse("tf-example");
            var default_ = new Er("default", ErArgs.builder()        
                .erName(name)
                .description(name)
                .envConf(ErEnvConfArgs.builder()
                    .staging(ErEnvConfStagingArgs.builder()
                        .specName("5ms")
                        .allowedHosts("example.com")
                        .build())
                    .production(ErEnvConfProductionArgs.builder()
                        .specName("5ms")
                        .allowedHosts("example.com")
                        .build())
                    .build())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "tf-example"
    default = alicloud.dcdn.Er("default",
        er_name=name,
        description=name,
        env_conf=alicloud.dcdn.ErEnvConfArgs(
            staging=alicloud.dcdn.ErEnvConfStagingArgs(
                spec_name="5ms",
                allowed_hosts=["example.com"],
            ),
            production=alicloud.dcdn.ErEnvConfProductionArgs(
                spec_name="5ms",
                allowed_hosts=["example.com"],
            ),
        ))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const config = new pulumi.Config();
    const name = config.get("name") || "tf-example";
    const _default = new alicloud.dcdn.Er("default", {
        erName: name,
        description: name,
        envConf: {
            staging: {
                specName: "5ms",
                allowedHosts: ["example.com"],
            },
            production: {
                specName: "5ms",
                allowedHosts: ["example.com"],
            },
        },
    });
    
    configuration:
      name:
        type: string
        default: tf-example
    resources:
      default:
        type: alicloud:dcdn:Er
        properties:
          erName: ${name}
          description: ${name}
          envConf:
            staging:
              specName: 5ms
              allowedHosts:
                - example.com
            production:
              specName: 5ms
              allowedHosts:
                - example.com
    

    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.ErEnvConf

    The configurations of the specified environment. See env_conf below.

    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 env_conf below.

    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 ErEnvConf

    The configurations of the specified environment. See env_conf below.

    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 ErEnvConf

    The configurations of the specified environment. See env_conf below.

    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 env_conf below.

    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 env_conf below.

    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.ErEnvConf

    The configurations of the specified environment. See env_conf below.

    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 env_conf below.

    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 ErEnvConf

    The configurations of the specified environment. See env_conf below.

    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 ErEnvConf

    The configurations of the specified environment. See env_conf below.

    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 env_conf below.

    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 env_conf below.

    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, ErEnvConfArgs

    PresetCanaryAnhui Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryAnhui

    The configuration of a presetCanaryAnhui environment. See staging below.

    PresetCanaryBeijing Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryBeijing

    The configuration of a presetCanaryBeijing environment. See staging below.

    PresetCanaryChongqing Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryChongqing

    The configuration of a presetCanaryChongqing environment. See staging below.

    PresetCanaryFujian Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryFujian

    The configuration of a presetCanaryFujian environment. See staging below.

    PresetCanaryGansu Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryGansu

    The configuration of a presetCanaryGansu environment. See staging below.

    PresetCanaryGuangdong Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryGuangdong

    The configuration of a presetCanaryGuangdong environment. See staging below.

    PresetCanaryGuangxi Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryGuangxi

    The configuration of a presetCanaryGuangxi environment. See staging below.

    PresetCanaryGuizhou Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryGuizhou

    The configuration of a presetCanaryGuizhou environment. See staging below.

    PresetCanaryHainan Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryHainan

    The configuration of a presetCanaryHainan environment. See staging below.

    PresetCanaryHebei Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryHebei

    The configuration of a presetCanaryHebei environment. See staging below.

    PresetCanaryHeilongjiang Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryHeilongjiang

    The configuration of a presetCanaryHeilongjiang environment. See staging below.

    PresetCanaryHenan Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryHenan

    The configuration of a presetCanaryHenan environment. See staging below.

    PresetCanaryHongKong Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryHongKong

    The configuration of a presetCanaryHongKong environment. See staging below.

    PresetCanaryHubei Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryHubei

    The configuration of a presetCanaryHubei environment. See staging below.

    PresetCanaryHunan Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryHunan

    The configuration of a presetCanaryHunan environment. See staging below.

    PresetCanaryJiangsu Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryJiangsu

    The configuration of a presetCanaryJiangsu environment. See staging below.

    PresetCanaryJiangxi Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryJiangxi

    The configuration of a presetCanaryJiangxi environment. See staging below.

    PresetCanaryJilin Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryJilin

    The configuration of a presetCanaryJilin environment. See staging below.

    PresetCanaryLiaoning Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryLiaoning

    The configuration of a presetCanaryLiaoning environment. See staging below.

    PresetCanaryMacau Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryMacau

    The configuration of a presetCanaryMacau environment. See staging below.

    PresetCanaryNeimenggu Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryNeimenggu

    The configuration of a presetCanaryNeimenggu environment. See staging below.

    PresetCanaryNingxia Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryNingxia

    The configuration of a presetCanaryNingxia environment. See staging below.

    PresetCanaryOverseas Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryOverseas

    The configuration of a presetCanaryOverseas environment. See staging below.

    PresetCanaryQinghai Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryQinghai

    The configuration of a presetCanaryQinghai environment. See staging below.

    PresetCanaryShaanxi Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryShaanxi

    The configuration of a presetCanaryShaanxi environment. See staging below.

    PresetCanaryShandong Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryShandong

    The configuration of a presetCanaryShandong environment. See staging below.

    PresetCanaryShanghai Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryShanghai

    The configuration of a presetCanaryShanghai environment. See staging below.

    PresetCanaryShanxi Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryShanxi

    The configuration of a presetCanaryShanxi environment. See staging below.

    PresetCanarySichuan Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanarySichuan

    The configuration of a presetCanarySichuan environment. See staging below.

    PresetCanaryTaiwan Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryTaiwan

    The configuration of a presetCanaryTaiwan environment. See staging below.

    PresetCanaryTianjin Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryTianjin

    The configuration of a presetCanaryTianjin environment. See staging below.

    PresetCanaryXinjiang Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryXinjiang

    The configuration of a presetCanaryXinjiang environment. See staging below.

    PresetCanaryXizang Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryXizang

    The configuration of a presetCanaryXizang environment. See staging below.

    PresetCanaryYunnan Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryYunnan

    The configuration of a presetCanaryYunnan environment. See staging below.

    PresetCanaryZhejiang Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryZhejiang

    The configuration of a presetCanaryZhejiang environment. See staging below.

    Production Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfProduction

    The configuration of a production environment. See staging below.

    Staging Pulumi.AliCloud.Dcdn.Inputs.ErEnvConfStaging

    The configuration of a staging environment. See staging below.

    PresetCanaryAnhui ErEnvConfPresetCanaryAnhui

    The configuration of a presetCanaryAnhui environment. See staging below.

    PresetCanaryBeijing ErEnvConfPresetCanaryBeijing

    The configuration of a presetCanaryBeijing environment. See staging below.

    PresetCanaryChongqing ErEnvConfPresetCanaryChongqing

    The configuration of a presetCanaryChongqing environment. See staging below.

    PresetCanaryFujian ErEnvConfPresetCanaryFujian

    The configuration of a presetCanaryFujian environment. See staging below.

    PresetCanaryGansu ErEnvConfPresetCanaryGansu

    The configuration of a presetCanaryGansu environment. See staging below.

    PresetCanaryGuangdong ErEnvConfPresetCanaryGuangdong

    The configuration of a presetCanaryGuangdong environment. See staging below.

    PresetCanaryGuangxi ErEnvConfPresetCanaryGuangxi

    The configuration of a presetCanaryGuangxi environment. See staging below.

    PresetCanaryGuizhou ErEnvConfPresetCanaryGuizhou

    The configuration of a presetCanaryGuizhou environment. See staging below.

    PresetCanaryHainan ErEnvConfPresetCanaryHainan

    The configuration of a presetCanaryHainan environment. See staging below.

    PresetCanaryHebei ErEnvConfPresetCanaryHebei

    The configuration of a presetCanaryHebei environment. See staging below.

    PresetCanaryHeilongjiang ErEnvConfPresetCanaryHeilongjiang

    The configuration of a presetCanaryHeilongjiang environment. See staging below.

    PresetCanaryHenan ErEnvConfPresetCanaryHenan

    The configuration of a presetCanaryHenan environment. See staging below.

    PresetCanaryHongKong ErEnvConfPresetCanaryHongKong

    The configuration of a presetCanaryHongKong environment. See staging below.

    PresetCanaryHubei ErEnvConfPresetCanaryHubei

    The configuration of a presetCanaryHubei environment. See staging below.

    PresetCanaryHunan ErEnvConfPresetCanaryHunan

    The configuration of a presetCanaryHunan environment. See staging below.

    PresetCanaryJiangsu ErEnvConfPresetCanaryJiangsu

    The configuration of a presetCanaryJiangsu environment. See staging below.

    PresetCanaryJiangxi ErEnvConfPresetCanaryJiangxi

    The configuration of a presetCanaryJiangxi environment. See staging below.

    PresetCanaryJilin ErEnvConfPresetCanaryJilin

    The configuration of a presetCanaryJilin environment. See staging below.

    PresetCanaryLiaoning ErEnvConfPresetCanaryLiaoning

    The configuration of a presetCanaryLiaoning environment. See staging below.

    PresetCanaryMacau ErEnvConfPresetCanaryMacau

    The configuration of a presetCanaryMacau environment. See staging below.

    PresetCanaryNeimenggu ErEnvConfPresetCanaryNeimenggu

    The configuration of a presetCanaryNeimenggu environment. See staging below.

    PresetCanaryNingxia ErEnvConfPresetCanaryNingxia

    The configuration of a presetCanaryNingxia environment. See staging below.

    PresetCanaryOverseas ErEnvConfPresetCanaryOverseas

    The configuration of a presetCanaryOverseas environment. See staging below.

    PresetCanaryQinghai ErEnvConfPresetCanaryQinghai

    The configuration of a presetCanaryQinghai environment. See staging below.

    PresetCanaryShaanxi ErEnvConfPresetCanaryShaanxi

    The configuration of a presetCanaryShaanxi environment. See staging below.

    PresetCanaryShandong ErEnvConfPresetCanaryShandong

    The configuration of a presetCanaryShandong environment. See staging below.

    PresetCanaryShanghai ErEnvConfPresetCanaryShanghai

    The configuration of a presetCanaryShanghai environment. See staging below.

    PresetCanaryShanxi ErEnvConfPresetCanaryShanxi

    The configuration of a presetCanaryShanxi environment. See staging below.

    PresetCanarySichuan ErEnvConfPresetCanarySichuan

    The configuration of a presetCanarySichuan environment. See staging below.

    PresetCanaryTaiwan ErEnvConfPresetCanaryTaiwan

    The configuration of a presetCanaryTaiwan environment. See staging below.

    PresetCanaryTianjin ErEnvConfPresetCanaryTianjin

    The configuration of a presetCanaryTianjin environment. See staging below.

    PresetCanaryXinjiang ErEnvConfPresetCanaryXinjiang

    The configuration of a presetCanaryXinjiang environment. See staging below.

    PresetCanaryXizang ErEnvConfPresetCanaryXizang

    The configuration of a presetCanaryXizang environment. See staging below.

    PresetCanaryYunnan ErEnvConfPresetCanaryYunnan

    The configuration of a presetCanaryYunnan environment. See staging below.

    PresetCanaryZhejiang ErEnvConfPresetCanaryZhejiang

    The configuration of a presetCanaryZhejiang environment. See staging below.

    Production ErEnvConfProduction

    The configuration of a production environment. See staging below.

    Staging ErEnvConfStaging

    The configuration of a staging environment. See staging below.

    presetCanaryAnhui ErEnvConfPresetCanaryAnhui

    The configuration of a presetCanaryAnhui environment. See staging below.

    presetCanaryBeijing ErEnvConfPresetCanaryBeijing

    The configuration of a presetCanaryBeijing environment. See staging below.

    presetCanaryChongqing ErEnvConfPresetCanaryChongqing

    The configuration of a presetCanaryChongqing environment. See staging below.

    presetCanaryFujian ErEnvConfPresetCanaryFujian

    The configuration of a presetCanaryFujian environment. See staging below.

    presetCanaryGansu ErEnvConfPresetCanaryGansu

    The configuration of a presetCanaryGansu environment. See staging below.

    presetCanaryGuangdong ErEnvConfPresetCanaryGuangdong

    The configuration of a presetCanaryGuangdong environment. See staging below.

    presetCanaryGuangxi ErEnvConfPresetCanaryGuangxi

    The configuration of a presetCanaryGuangxi environment. See staging below.

    presetCanaryGuizhou ErEnvConfPresetCanaryGuizhou

    The configuration of a presetCanaryGuizhou environment. See staging below.

    presetCanaryHainan ErEnvConfPresetCanaryHainan

    The configuration of a presetCanaryHainan environment. See staging below.

    presetCanaryHebei ErEnvConfPresetCanaryHebei

    The configuration of a presetCanaryHebei environment. See staging below.

    presetCanaryHeilongjiang ErEnvConfPresetCanaryHeilongjiang

    The configuration of a presetCanaryHeilongjiang environment. See staging below.

    presetCanaryHenan ErEnvConfPresetCanaryHenan

    The configuration of a presetCanaryHenan environment. See staging below.

    presetCanaryHongKong ErEnvConfPresetCanaryHongKong

    The configuration of a presetCanaryHongKong environment. See staging below.

    presetCanaryHubei ErEnvConfPresetCanaryHubei

    The configuration of a presetCanaryHubei environment. See staging below.

    presetCanaryHunan ErEnvConfPresetCanaryHunan

    The configuration of a presetCanaryHunan environment. See staging below.

    presetCanaryJiangsu ErEnvConfPresetCanaryJiangsu

    The configuration of a presetCanaryJiangsu environment. See staging below.

    presetCanaryJiangxi ErEnvConfPresetCanaryJiangxi

    The configuration of a presetCanaryJiangxi environment. See staging below.

    presetCanaryJilin ErEnvConfPresetCanaryJilin

    The configuration of a presetCanaryJilin environment. See staging below.

    presetCanaryLiaoning ErEnvConfPresetCanaryLiaoning

    The configuration of a presetCanaryLiaoning environment. See staging below.

    presetCanaryMacau ErEnvConfPresetCanaryMacau

    The configuration of a presetCanaryMacau environment. See staging below.

    presetCanaryNeimenggu ErEnvConfPresetCanaryNeimenggu

    The configuration of a presetCanaryNeimenggu environment. See staging below.

    presetCanaryNingxia ErEnvConfPresetCanaryNingxia

    The configuration of a presetCanaryNingxia environment. See staging below.

    presetCanaryOverseas ErEnvConfPresetCanaryOverseas

    The configuration of a presetCanaryOverseas environment. See staging below.

    presetCanaryQinghai ErEnvConfPresetCanaryQinghai

    The configuration of a presetCanaryQinghai environment. See staging below.

    presetCanaryShaanxi ErEnvConfPresetCanaryShaanxi

    The configuration of a presetCanaryShaanxi environment. See staging below.

    presetCanaryShandong ErEnvConfPresetCanaryShandong

    The configuration of a presetCanaryShandong environment. See staging below.

    presetCanaryShanghai ErEnvConfPresetCanaryShanghai

    The configuration of a presetCanaryShanghai environment. See staging below.

    presetCanaryShanxi ErEnvConfPresetCanaryShanxi

    The configuration of a presetCanaryShanxi environment. See staging below.

    presetCanarySichuan ErEnvConfPresetCanarySichuan

    The configuration of a presetCanarySichuan environment. See staging below.

    presetCanaryTaiwan ErEnvConfPresetCanaryTaiwan

    The configuration of a presetCanaryTaiwan environment. See staging below.

    presetCanaryTianjin ErEnvConfPresetCanaryTianjin

    The configuration of a presetCanaryTianjin environment. See staging below.

    presetCanaryXinjiang ErEnvConfPresetCanaryXinjiang

    The configuration of a presetCanaryXinjiang environment. See staging below.

    presetCanaryXizang ErEnvConfPresetCanaryXizang

    The configuration of a presetCanaryXizang environment. See staging below.

    presetCanaryYunnan ErEnvConfPresetCanaryYunnan

    The configuration of a presetCanaryYunnan environment. See staging below.

    presetCanaryZhejiang ErEnvConfPresetCanaryZhejiang

    The configuration of a presetCanaryZhejiang environment. See staging below.

    production ErEnvConfProduction

    The configuration of a production environment. See staging below.

    staging ErEnvConfStaging

    The configuration of a staging environment. See staging below.

    presetCanaryAnhui ErEnvConfPresetCanaryAnhui

    The configuration of a presetCanaryAnhui environment. See staging below.

    presetCanaryBeijing ErEnvConfPresetCanaryBeijing

    The configuration of a presetCanaryBeijing environment. See staging below.

    presetCanaryChongqing ErEnvConfPresetCanaryChongqing

    The configuration of a presetCanaryChongqing environment. See staging below.

    presetCanaryFujian ErEnvConfPresetCanaryFujian

    The configuration of a presetCanaryFujian environment. See staging below.

    presetCanaryGansu ErEnvConfPresetCanaryGansu

    The configuration of a presetCanaryGansu environment. See staging below.

    presetCanaryGuangdong ErEnvConfPresetCanaryGuangdong

    The configuration of a presetCanaryGuangdong environment. See staging below.

    presetCanaryGuangxi ErEnvConfPresetCanaryGuangxi

    The configuration of a presetCanaryGuangxi environment. See staging below.

    presetCanaryGuizhou ErEnvConfPresetCanaryGuizhou

    The configuration of a presetCanaryGuizhou environment. See staging below.

    presetCanaryHainan ErEnvConfPresetCanaryHainan

    The configuration of a presetCanaryHainan environment. See staging below.

    presetCanaryHebei ErEnvConfPresetCanaryHebei

    The configuration of a presetCanaryHebei environment. See staging below.

    presetCanaryHeilongjiang ErEnvConfPresetCanaryHeilongjiang

    The configuration of a presetCanaryHeilongjiang environment. See staging below.

    presetCanaryHenan ErEnvConfPresetCanaryHenan

    The configuration of a presetCanaryHenan environment. See staging below.

    presetCanaryHongKong ErEnvConfPresetCanaryHongKong

    The configuration of a presetCanaryHongKong environment. See staging below.

    presetCanaryHubei ErEnvConfPresetCanaryHubei

    The configuration of a presetCanaryHubei environment. See staging below.

    presetCanaryHunan ErEnvConfPresetCanaryHunan

    The configuration of a presetCanaryHunan environment. See staging below.

    presetCanaryJiangsu ErEnvConfPresetCanaryJiangsu

    The configuration of a presetCanaryJiangsu environment. See staging below.

    presetCanaryJiangxi ErEnvConfPresetCanaryJiangxi

    The configuration of a presetCanaryJiangxi environment. See staging below.

    presetCanaryJilin ErEnvConfPresetCanaryJilin

    The configuration of a presetCanaryJilin environment. See staging below.

    presetCanaryLiaoning ErEnvConfPresetCanaryLiaoning

    The configuration of a presetCanaryLiaoning environment. See staging below.

    presetCanaryMacau ErEnvConfPresetCanaryMacau

    The configuration of a presetCanaryMacau environment. See staging below.

    presetCanaryNeimenggu ErEnvConfPresetCanaryNeimenggu

    The configuration of a presetCanaryNeimenggu environment. See staging below.

    presetCanaryNingxia ErEnvConfPresetCanaryNingxia

    The configuration of a presetCanaryNingxia environment. See staging below.

    presetCanaryOverseas ErEnvConfPresetCanaryOverseas

    The configuration of a presetCanaryOverseas environment. See staging below.

    presetCanaryQinghai ErEnvConfPresetCanaryQinghai

    The configuration of a presetCanaryQinghai environment. See staging below.

    presetCanaryShaanxi ErEnvConfPresetCanaryShaanxi

    The configuration of a presetCanaryShaanxi environment. See staging below.

    presetCanaryShandong ErEnvConfPresetCanaryShandong

    The configuration of a presetCanaryShandong environment. See staging below.

    presetCanaryShanghai ErEnvConfPresetCanaryShanghai

    The configuration of a presetCanaryShanghai environment. See staging below.

    presetCanaryShanxi ErEnvConfPresetCanaryShanxi

    The configuration of a presetCanaryShanxi environment. See staging below.

    presetCanarySichuan ErEnvConfPresetCanarySichuan

    The configuration of a presetCanarySichuan environment. See staging below.

    presetCanaryTaiwan ErEnvConfPresetCanaryTaiwan

    The configuration of a presetCanaryTaiwan environment. See staging below.

    presetCanaryTianjin ErEnvConfPresetCanaryTianjin

    The configuration of a presetCanaryTianjin environment. See staging below.

    presetCanaryXinjiang ErEnvConfPresetCanaryXinjiang

    The configuration of a presetCanaryXinjiang environment. See staging below.

    presetCanaryXizang ErEnvConfPresetCanaryXizang

    The configuration of a presetCanaryXizang environment. See staging below.

    presetCanaryYunnan ErEnvConfPresetCanaryYunnan

    The configuration of a presetCanaryYunnan environment. See staging below.

    presetCanaryZhejiang ErEnvConfPresetCanaryZhejiang

    The configuration of a presetCanaryZhejiang environment. See staging below.

    production ErEnvConfProduction

    The configuration of a production environment. See staging below.

    staging ErEnvConfStaging

    The configuration of a staging environment. See staging below.

    preset_canary_anhui ErEnvConfPresetCanaryAnhui

    The configuration of a presetCanaryAnhui environment. See staging below.

    preset_canary_beijing ErEnvConfPresetCanaryBeijing

    The configuration of a presetCanaryBeijing environment. See staging below.

    preset_canary_chongqing ErEnvConfPresetCanaryChongqing

    The configuration of a presetCanaryChongqing environment. See staging below.

    preset_canary_fujian ErEnvConfPresetCanaryFujian

    The configuration of a presetCanaryFujian environment. See staging below.

    preset_canary_gansu ErEnvConfPresetCanaryGansu

    The configuration of a presetCanaryGansu environment. See staging below.

    preset_canary_guangdong ErEnvConfPresetCanaryGuangdong

    The configuration of a presetCanaryGuangdong environment. See staging below.

    preset_canary_guangxi ErEnvConfPresetCanaryGuangxi

    The configuration of a presetCanaryGuangxi environment. See staging below.

    preset_canary_guizhou ErEnvConfPresetCanaryGuizhou

    The configuration of a presetCanaryGuizhou environment. See staging below.

    preset_canary_hainan ErEnvConfPresetCanaryHainan

    The configuration of a presetCanaryHainan environment. See staging below.

    preset_canary_hebei ErEnvConfPresetCanaryHebei

    The configuration of a presetCanaryHebei environment. See staging below.

    preset_canary_heilongjiang ErEnvConfPresetCanaryHeilongjiang

    The configuration of a presetCanaryHeilongjiang environment. See staging below.

    preset_canary_henan ErEnvConfPresetCanaryHenan

    The configuration of a presetCanaryHenan environment. See staging below.

    preset_canary_hong_kong ErEnvConfPresetCanaryHongKong

    The configuration of a presetCanaryHongKong environment. See staging below.

    preset_canary_hubei ErEnvConfPresetCanaryHubei

    The configuration of a presetCanaryHubei environment. See staging below.

    preset_canary_hunan ErEnvConfPresetCanaryHunan

    The configuration of a presetCanaryHunan environment. See staging below.

    preset_canary_jiangsu ErEnvConfPresetCanaryJiangsu

    The configuration of a presetCanaryJiangsu environment. See staging below.

    preset_canary_jiangxi ErEnvConfPresetCanaryJiangxi

    The configuration of a presetCanaryJiangxi environment. See staging below.

    preset_canary_jilin ErEnvConfPresetCanaryJilin

    The configuration of a presetCanaryJilin environment. See staging below.

    preset_canary_liaoning ErEnvConfPresetCanaryLiaoning

    The configuration of a presetCanaryLiaoning environment. See staging below.

    preset_canary_macau ErEnvConfPresetCanaryMacau

    The configuration of a presetCanaryMacau environment. See staging below.

    preset_canary_neimenggu ErEnvConfPresetCanaryNeimenggu

    The configuration of a presetCanaryNeimenggu environment. See staging below.

    preset_canary_ningxia ErEnvConfPresetCanaryNingxia

    The configuration of a presetCanaryNingxia environment. See staging below.

    preset_canary_overseas ErEnvConfPresetCanaryOverseas

    The configuration of a presetCanaryOverseas environment. See staging below.

    preset_canary_qinghai ErEnvConfPresetCanaryQinghai

    The configuration of a presetCanaryQinghai environment. See staging below.

    preset_canary_shaanxi ErEnvConfPresetCanaryShaanxi

    The configuration of a presetCanaryShaanxi environment. See staging below.

    preset_canary_shandong ErEnvConfPresetCanaryShandong

    The configuration of a presetCanaryShandong environment. See staging below.

    preset_canary_shanghai ErEnvConfPresetCanaryShanghai

    The configuration of a presetCanaryShanghai environment. See staging below.

    preset_canary_shanxi ErEnvConfPresetCanaryShanxi

    The configuration of a presetCanaryShanxi environment. See staging below.

    preset_canary_sichuan ErEnvConfPresetCanarySichuan

    The configuration of a presetCanarySichuan environment. See staging below.

    preset_canary_taiwan ErEnvConfPresetCanaryTaiwan

    The configuration of a presetCanaryTaiwan environment. See staging below.

    preset_canary_tianjin ErEnvConfPresetCanaryTianjin

    The configuration of a presetCanaryTianjin environment. See staging below.

    preset_canary_xinjiang ErEnvConfPresetCanaryXinjiang

    The configuration of a presetCanaryXinjiang environment. See staging below.

    preset_canary_xizang ErEnvConfPresetCanaryXizang

    The configuration of a presetCanaryXizang environment. See staging below.

    preset_canary_yunnan ErEnvConfPresetCanaryYunnan

    The configuration of a presetCanaryYunnan environment. See staging below.

    preset_canary_zhejiang ErEnvConfPresetCanaryZhejiang

    The configuration of a presetCanaryZhejiang environment. See staging below.

    production ErEnvConfProduction

    The configuration of a production environment. See staging below.

    staging ErEnvConfStaging

    The configuration of a staging environment. See staging below.

    presetCanaryAnhui Property Map

    The configuration of a presetCanaryAnhui environment. See staging below.

    presetCanaryBeijing Property Map

    The configuration of a presetCanaryBeijing environment. See staging below.

    presetCanaryChongqing Property Map

    The configuration of a presetCanaryChongqing environment. See staging below.

    presetCanaryFujian Property Map

    The configuration of a presetCanaryFujian environment. See staging below.

    presetCanaryGansu Property Map

    The configuration of a presetCanaryGansu environment. See staging below.

    presetCanaryGuangdong Property Map

    The configuration of a presetCanaryGuangdong environment. See staging below.

    presetCanaryGuangxi Property Map

    The configuration of a presetCanaryGuangxi environment. See staging below.

    presetCanaryGuizhou Property Map

    The configuration of a presetCanaryGuizhou environment. See staging below.

    presetCanaryHainan Property Map

    The configuration of a presetCanaryHainan environment. See staging below.

    presetCanaryHebei Property Map

    The configuration of a presetCanaryHebei environment. See staging below.

    presetCanaryHeilongjiang Property Map

    The configuration of a presetCanaryHeilongjiang environment. See staging below.

    presetCanaryHenan Property Map

    The configuration of a presetCanaryHenan environment. See staging below.

    presetCanaryHongKong Property Map

    The configuration of a presetCanaryHongKong environment. See staging below.

    presetCanaryHubei Property Map

    The configuration of a presetCanaryHubei environment. See staging below.

    presetCanaryHunan Property Map

    The configuration of a presetCanaryHunan environment. See staging below.

    presetCanaryJiangsu Property Map

    The configuration of a presetCanaryJiangsu environment. See staging below.

    presetCanaryJiangxi Property Map

    The configuration of a presetCanaryJiangxi environment. See staging below.

    presetCanaryJilin Property Map

    The configuration of a presetCanaryJilin environment. See staging below.

    presetCanaryLiaoning Property Map

    The configuration of a presetCanaryLiaoning environment. See staging below.

    presetCanaryMacau Property Map

    The configuration of a presetCanaryMacau environment. See staging below.

    presetCanaryNeimenggu Property Map

    The configuration of a presetCanaryNeimenggu environment. See staging below.

    presetCanaryNingxia Property Map

    The configuration of a presetCanaryNingxia environment. See staging below.

    presetCanaryOverseas Property Map

    The configuration of a presetCanaryOverseas environment. See staging below.

    presetCanaryQinghai Property Map

    The configuration of a presetCanaryQinghai environment. See staging below.

    presetCanaryShaanxi Property Map

    The configuration of a presetCanaryShaanxi environment. See staging below.

    presetCanaryShandong Property Map

    The configuration of a presetCanaryShandong environment. See staging below.

    presetCanaryShanghai Property Map

    The configuration of a presetCanaryShanghai environment. See staging below.

    presetCanaryShanxi Property Map

    The configuration of a presetCanaryShanxi environment. See staging below.

    presetCanarySichuan Property Map

    The configuration of a presetCanarySichuan environment. See staging below.

    presetCanaryTaiwan Property Map

    The configuration of a presetCanaryTaiwan environment. See staging below.

    presetCanaryTianjin Property Map

    The configuration of a presetCanaryTianjin environment. See staging below.

    presetCanaryXinjiang Property Map

    The configuration of a presetCanaryXinjiang environment. See staging below.

    presetCanaryXizang Property Map

    The configuration of a presetCanaryXizang environment. See staging below.

    presetCanaryYunnan Property Map

    The configuration of a presetCanaryYunnan environment. See staging below.

    presetCanaryZhejiang Property Map

    The configuration of a presetCanaryZhejiang environment. See staging below.

    production Property Map

    The configuration of a production environment. See staging below.

    staging Property Map

    The configuration of a staging environment. See staging below.

    ErEnvConfPresetCanaryAnhui, ErEnvConfPresetCanaryAnhuiArgs

    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, ErEnvConfPresetCanaryBeijingArgs

    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, ErEnvConfPresetCanaryChongqingArgs

    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, ErEnvConfPresetCanaryFujianArgs

    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, ErEnvConfPresetCanaryGansuArgs

    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, ErEnvConfPresetCanaryGuangdongArgs

    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, ErEnvConfPresetCanaryGuangxiArgs

    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, ErEnvConfPresetCanaryGuizhouArgs

    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, ErEnvConfPresetCanaryHainanArgs

    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, ErEnvConfPresetCanaryHebeiArgs

    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, ErEnvConfPresetCanaryHeilongjiangArgs

    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, ErEnvConfPresetCanaryHenanArgs

    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, ErEnvConfPresetCanaryHongKongArgs

    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, ErEnvConfPresetCanaryHubeiArgs

    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, ErEnvConfPresetCanaryHunanArgs

    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, ErEnvConfPresetCanaryJiangsuArgs

    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, ErEnvConfPresetCanaryJiangxiArgs

    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, ErEnvConfPresetCanaryJilinArgs

    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, ErEnvConfPresetCanaryLiaoningArgs

    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, ErEnvConfPresetCanaryMacauArgs

    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, ErEnvConfPresetCanaryNeimengguArgs

    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, ErEnvConfPresetCanaryNingxiaArgs

    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, ErEnvConfPresetCanaryOverseasArgs

    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, ErEnvConfPresetCanaryQinghaiArgs

    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, ErEnvConfPresetCanaryShaanxiArgs

    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, ErEnvConfPresetCanaryShandongArgs

    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, ErEnvConfPresetCanaryShanghaiArgs

    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, ErEnvConfPresetCanaryShanxiArgs

    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, ErEnvConfPresetCanarySichuanArgs

    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, ErEnvConfPresetCanaryTaiwanArgs

    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, ErEnvConfPresetCanaryTianjinArgs

    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, ErEnvConfPresetCanaryXinjiangArgs

    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, ErEnvConfPresetCanaryXizangArgs

    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, ErEnvConfPresetCanaryYunnanArgs

    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, ErEnvConfPresetCanaryZhejiangArgs

    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, ErEnvConfProductionArgs

    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, ErEnvConfStagingArgs

    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.

    alicloud logo
    Alibaba Cloud v3.45.0 published on Monday, Nov 27, 2023 by Pulumi