1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. dcdn
  5. Er
Alibaba Cloud v3.52.1 published on Thursday, Apr 4, 2024 by Pulumi

alicloud.dcdn.Er

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.52.1 published on Thursday, Apr 4, 2024 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

    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"],
            },
        },
    });
    
    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"],
            ),
        ))
    
    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
    	})
    }
    
    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 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());
    
        }
    }
    
    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

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

    Constructor syntax

    new Er(name: string, args: ErArgs, opts?: CustomResourceOptions);
    @overload
    def Er(resource_name: str,
           args: ErArgs,
           opts: Optional[ResourceOptions] = None)
    
    @overload
    def Er(resource_name: str,
           opts: Optional[ResourceOptions] = None,
           er_name: Optional[str] = None,
           description: Optional[str] = None,
           env_conf: Optional[ErEnvConfArgs] = 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.
    
    

    Parameters

    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.

    Example

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

    var erResource = new AliCloud.Dcdn.Er("erResource", new()
    {
        ErName = "string",
        Description = "string",
        EnvConf = new AliCloud.Dcdn.Inputs.ErEnvConfArgs
        {
            PresetCanaryAnhui = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryAnhuiArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryBeijing = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryBeijingArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryChongqing = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryChongqingArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryFujian = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryFujianArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryGansu = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryGansuArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryGuangdong = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryGuangdongArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryGuangxi = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryGuangxiArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryGuizhou = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryGuizhouArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryHainan = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryHainanArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryHebei = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryHebeiArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryHeilongjiang = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryHeilongjiangArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryHenan = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryHenanArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryHongKong = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryHongKongArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryHubei = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryHubeiArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryHunan = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryHunanArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryJiangsu = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryJiangsuArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryJiangxi = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryJiangxiArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryJilin = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryJilinArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryLiaoning = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryLiaoningArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryMacau = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryMacauArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryNeimenggu = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryNeimengguArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryNingxia = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryNingxiaArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryOverseas = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryOverseasArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryQinghai = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryQinghaiArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryShaanxi = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryShaanxiArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryShandong = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryShandongArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryShanghai = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryShanghaiArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryShanxi = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryShanxiArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanarySichuan = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanarySichuanArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryTaiwan = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryTaiwanArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryTianjin = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryTianjinArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryXinjiang = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryXinjiangArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryXizang = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryXizangArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryYunnan = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryYunnanArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            PresetCanaryZhejiang = new AliCloud.Dcdn.Inputs.ErEnvConfPresetCanaryZhejiangArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            Production = new AliCloud.Dcdn.Inputs.ErEnvConfProductionArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
            Staging = new AliCloud.Dcdn.Inputs.ErEnvConfStagingArgs
            {
                AllowedHosts = new[]
                {
                    "string",
                },
                CodeRev = "string",
                SpecName = "string",
            },
        },
    });
    
    example, err := dcdn.NewEr(ctx, "erResource", &dcdn.ErArgs{
    	ErName:      pulumi.String("string"),
    	Description: pulumi.String("string"),
    	EnvConf: &dcdn.ErEnvConfArgs{
    		PresetCanaryAnhui: &dcdn.ErEnvConfPresetCanaryAnhuiArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryBeijing: &dcdn.ErEnvConfPresetCanaryBeijingArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryChongqing: &dcdn.ErEnvConfPresetCanaryChongqingArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryFujian: &dcdn.ErEnvConfPresetCanaryFujianArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryGansu: &dcdn.ErEnvConfPresetCanaryGansuArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryGuangdong: &dcdn.ErEnvConfPresetCanaryGuangdongArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryGuangxi: &dcdn.ErEnvConfPresetCanaryGuangxiArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryGuizhou: &dcdn.ErEnvConfPresetCanaryGuizhouArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryHainan: &dcdn.ErEnvConfPresetCanaryHainanArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryHebei: &dcdn.ErEnvConfPresetCanaryHebeiArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryHeilongjiang: &dcdn.ErEnvConfPresetCanaryHeilongjiangArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryHenan: &dcdn.ErEnvConfPresetCanaryHenanArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryHongKong: &dcdn.ErEnvConfPresetCanaryHongKongArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryHubei: &dcdn.ErEnvConfPresetCanaryHubeiArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryHunan: &dcdn.ErEnvConfPresetCanaryHunanArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryJiangsu: &dcdn.ErEnvConfPresetCanaryJiangsuArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryJiangxi: &dcdn.ErEnvConfPresetCanaryJiangxiArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryJilin: &dcdn.ErEnvConfPresetCanaryJilinArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryLiaoning: &dcdn.ErEnvConfPresetCanaryLiaoningArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryMacau: &dcdn.ErEnvConfPresetCanaryMacauArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryNeimenggu: &dcdn.ErEnvConfPresetCanaryNeimengguArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryNingxia: &dcdn.ErEnvConfPresetCanaryNingxiaArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryOverseas: &dcdn.ErEnvConfPresetCanaryOverseasArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryQinghai: &dcdn.ErEnvConfPresetCanaryQinghaiArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryShaanxi: &dcdn.ErEnvConfPresetCanaryShaanxiArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryShandong: &dcdn.ErEnvConfPresetCanaryShandongArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryShanghai: &dcdn.ErEnvConfPresetCanaryShanghaiArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryShanxi: &dcdn.ErEnvConfPresetCanaryShanxiArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanarySichuan: &dcdn.ErEnvConfPresetCanarySichuanArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryTaiwan: &dcdn.ErEnvConfPresetCanaryTaiwanArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryTianjin: &dcdn.ErEnvConfPresetCanaryTianjinArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryXinjiang: &dcdn.ErEnvConfPresetCanaryXinjiangArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryXizang: &dcdn.ErEnvConfPresetCanaryXizangArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryYunnan: &dcdn.ErEnvConfPresetCanaryYunnanArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		PresetCanaryZhejiang: &dcdn.ErEnvConfPresetCanaryZhejiangArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		Production: &dcdn.ErEnvConfProductionArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    		Staging: &dcdn.ErEnvConfStagingArgs{
    			AllowedHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			CodeRev:  pulumi.String("string"),
    			SpecName: pulumi.String("string"),
    		},
    	},
    })
    
    var erResource = new Er("erResource", ErArgs.builder()        
        .erName("string")
        .description("string")
        .envConf(ErEnvConfArgs.builder()
            .presetCanaryAnhui(ErEnvConfPresetCanaryAnhuiArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryBeijing(ErEnvConfPresetCanaryBeijingArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryChongqing(ErEnvConfPresetCanaryChongqingArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryFujian(ErEnvConfPresetCanaryFujianArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryGansu(ErEnvConfPresetCanaryGansuArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryGuangdong(ErEnvConfPresetCanaryGuangdongArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryGuangxi(ErEnvConfPresetCanaryGuangxiArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryGuizhou(ErEnvConfPresetCanaryGuizhouArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryHainan(ErEnvConfPresetCanaryHainanArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryHebei(ErEnvConfPresetCanaryHebeiArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryHeilongjiang(ErEnvConfPresetCanaryHeilongjiangArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryHenan(ErEnvConfPresetCanaryHenanArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryHongKong(ErEnvConfPresetCanaryHongKongArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryHubei(ErEnvConfPresetCanaryHubeiArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryHunan(ErEnvConfPresetCanaryHunanArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryJiangsu(ErEnvConfPresetCanaryJiangsuArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryJiangxi(ErEnvConfPresetCanaryJiangxiArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryJilin(ErEnvConfPresetCanaryJilinArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryLiaoning(ErEnvConfPresetCanaryLiaoningArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryMacau(ErEnvConfPresetCanaryMacauArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryNeimenggu(ErEnvConfPresetCanaryNeimengguArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryNingxia(ErEnvConfPresetCanaryNingxiaArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryOverseas(ErEnvConfPresetCanaryOverseasArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryQinghai(ErEnvConfPresetCanaryQinghaiArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryShaanxi(ErEnvConfPresetCanaryShaanxiArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryShandong(ErEnvConfPresetCanaryShandongArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryShanghai(ErEnvConfPresetCanaryShanghaiArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryShanxi(ErEnvConfPresetCanaryShanxiArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanarySichuan(ErEnvConfPresetCanarySichuanArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryTaiwan(ErEnvConfPresetCanaryTaiwanArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryTianjin(ErEnvConfPresetCanaryTianjinArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryXinjiang(ErEnvConfPresetCanaryXinjiangArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryXizang(ErEnvConfPresetCanaryXizangArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryYunnan(ErEnvConfPresetCanaryYunnanArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .presetCanaryZhejiang(ErEnvConfPresetCanaryZhejiangArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .production(ErEnvConfProductionArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .staging(ErEnvConfStagingArgs.builder()
                .allowedHosts("string")
                .codeRev("string")
                .specName("string")
                .build())
            .build())
        .build());
    
    er_resource = alicloud.dcdn.Er("erResource",
        er_name="string",
        description="string",
        env_conf=alicloud.dcdn.ErEnvConfArgs(
            preset_canary_anhui=alicloud.dcdn.ErEnvConfPresetCanaryAnhuiArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_beijing=alicloud.dcdn.ErEnvConfPresetCanaryBeijingArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_chongqing=alicloud.dcdn.ErEnvConfPresetCanaryChongqingArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_fujian=alicloud.dcdn.ErEnvConfPresetCanaryFujianArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_gansu=alicloud.dcdn.ErEnvConfPresetCanaryGansuArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_guangdong=alicloud.dcdn.ErEnvConfPresetCanaryGuangdongArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_guangxi=alicloud.dcdn.ErEnvConfPresetCanaryGuangxiArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_guizhou=alicloud.dcdn.ErEnvConfPresetCanaryGuizhouArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_hainan=alicloud.dcdn.ErEnvConfPresetCanaryHainanArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_hebei=alicloud.dcdn.ErEnvConfPresetCanaryHebeiArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_heilongjiang=alicloud.dcdn.ErEnvConfPresetCanaryHeilongjiangArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_henan=alicloud.dcdn.ErEnvConfPresetCanaryHenanArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_hong_kong=alicloud.dcdn.ErEnvConfPresetCanaryHongKongArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_hubei=alicloud.dcdn.ErEnvConfPresetCanaryHubeiArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_hunan=alicloud.dcdn.ErEnvConfPresetCanaryHunanArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_jiangsu=alicloud.dcdn.ErEnvConfPresetCanaryJiangsuArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_jiangxi=alicloud.dcdn.ErEnvConfPresetCanaryJiangxiArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_jilin=alicloud.dcdn.ErEnvConfPresetCanaryJilinArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_liaoning=alicloud.dcdn.ErEnvConfPresetCanaryLiaoningArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_macau=alicloud.dcdn.ErEnvConfPresetCanaryMacauArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_neimenggu=alicloud.dcdn.ErEnvConfPresetCanaryNeimengguArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_ningxia=alicloud.dcdn.ErEnvConfPresetCanaryNingxiaArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_overseas=alicloud.dcdn.ErEnvConfPresetCanaryOverseasArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_qinghai=alicloud.dcdn.ErEnvConfPresetCanaryQinghaiArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_shaanxi=alicloud.dcdn.ErEnvConfPresetCanaryShaanxiArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_shandong=alicloud.dcdn.ErEnvConfPresetCanaryShandongArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_shanghai=alicloud.dcdn.ErEnvConfPresetCanaryShanghaiArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_shanxi=alicloud.dcdn.ErEnvConfPresetCanaryShanxiArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_sichuan=alicloud.dcdn.ErEnvConfPresetCanarySichuanArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_taiwan=alicloud.dcdn.ErEnvConfPresetCanaryTaiwanArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_tianjin=alicloud.dcdn.ErEnvConfPresetCanaryTianjinArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_xinjiang=alicloud.dcdn.ErEnvConfPresetCanaryXinjiangArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_xizang=alicloud.dcdn.ErEnvConfPresetCanaryXizangArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_yunnan=alicloud.dcdn.ErEnvConfPresetCanaryYunnanArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            preset_canary_zhejiang=alicloud.dcdn.ErEnvConfPresetCanaryZhejiangArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            production=alicloud.dcdn.ErEnvConfProductionArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
            staging=alicloud.dcdn.ErEnvConfStagingArgs(
                allowed_hosts=["string"],
                code_rev="string",
                spec_name="string",
            ),
        ))
    
    const erResource = new alicloud.dcdn.Er("erResource", {
        erName: "string",
        description: "string",
        envConf: {
            presetCanaryAnhui: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryBeijing: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryChongqing: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryFujian: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryGansu: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryGuangdong: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryGuangxi: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryGuizhou: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryHainan: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryHebei: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryHeilongjiang: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryHenan: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryHongKong: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryHubei: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryHunan: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryJiangsu: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryJiangxi: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryJilin: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryLiaoning: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryMacau: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryNeimenggu: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryNingxia: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryOverseas: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryQinghai: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryShaanxi: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryShandong: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryShanghai: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryShanxi: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanarySichuan: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryTaiwan: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryTianjin: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryXinjiang: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryXizang: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryYunnan: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            presetCanaryZhejiang: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            production: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
            staging: {
                allowedHosts: ["string"],
                codeRev: "string",
                specName: "string",
            },
        },
    });
    
    type: alicloud:dcdn:Er
    properties:
        description: string
        envConf:
            presetCanaryAnhui:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryBeijing:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryChongqing:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryFujian:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryGansu:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryGuangdong:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryGuangxi:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryGuizhou:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryHainan:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryHebei:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryHeilongjiang:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryHenan:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryHongKong:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryHubei:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryHunan:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryJiangsu:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryJiangxi:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryJilin:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryLiaoning:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryMacau:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryNeimenggu:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryNingxia:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryOverseas:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryQinghai:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryShaanxi:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryShandong:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryShanghai:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryShanxi:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanarySichuan:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryTaiwan:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryTianjin:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryXinjiang:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryXizang:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryYunnan:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            presetCanaryZhejiang:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            production:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
            staging:
                allowedHosts:
                    - string
                codeRev: string
                specName: string
        erName: string
    

    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>
    

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

    Package Details

    Repository
    Alibaba Cloud pulumi/pulumi-alicloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the alicloud Terraform Provider.
    alicloud logo
    Alibaba Cloud v3.52.1 published on Thursday, Apr 4, 2024 by Pulumi