alicloud.dcdn.Er
Explore with Pulumi AI
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={
"staging": {
"spec_name": "5ms",
"allowed_hosts": ["example.com"],
},
"production": {
"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)
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.
Constructor 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:
- Er
Name 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.
- Env
Conf Pulumi.Ali Cloud. Dcdn. Inputs. Er Env Conf - The configurations of the specified environment. See
env_conf
below.
- Er
Name 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.
- Env
Conf ErEnv Conf Args - The configurations of the specified environment. See
env_conf
below.
- er
Name 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.
- env
Conf ErEnv Conf - The configurations of the specified environment. See
env_conf
below.
- er
Name 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.
- env
Conf ErEnv Conf - 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 ErEnv Conf Args - The configurations of the specified environment. See
env_conf
below.
- er
Name 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.
- env
Conf 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.
- Description string
- Routine The description of the routine.
- Env
Conf Pulumi.Ali Cloud. Dcdn. Inputs. Er Env Conf - The configurations of the specified environment. See
env_conf
below. - Er
Name 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.
- Env
Conf ErEnv Conf Args - The configurations of the specified environment. See
env_conf
below. - Er
Name 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.
- env
Conf ErEnv Conf - The configurations of the specified environment. See
env_conf
below. - er
Name 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.
- env
Conf ErEnv Conf - The configurations of the specified environment. See
env_conf
below. - er
Name 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 ErEnv Conf Args - 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.
- env
Conf Property Map - The configurations of the specified environment. See
env_conf
below. - er
Name 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
- Preset
Canary Pulumi.Anhui Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Anhui - The configuration of a presetCanaryAnhui environment. See
staging
below. - Preset
Canary Pulumi.Beijing Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Beijing - The configuration of a presetCanaryBeijing environment. See
staging
below. - Preset
Canary Pulumi.Chongqing Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Chongqing - The configuration of a presetCanaryChongqing environment. See
staging
below. - Preset
Canary Pulumi.Fujian Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Fujian - The configuration of a presetCanaryFujian environment. See
staging
below. - Preset
Canary Pulumi.Gansu Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Gansu - The configuration of a presetCanaryGansu environment. See
staging
below. - Preset
Canary Pulumi.Guangdong Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Guangdong - The configuration of a presetCanaryGuangdong environment. See
staging
below. - Preset
Canary Pulumi.Guangxi Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Guangxi - The configuration of a presetCanaryGuangxi environment. See
staging
below. - Preset
Canary Pulumi.Guizhou Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Guizhou - The configuration of a presetCanaryGuizhou environment. See
staging
below. - Preset
Canary Pulumi.Hainan Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Hainan - The configuration of a presetCanaryHainan environment. See
staging
below. - Preset
Canary Pulumi.Hebei Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Hebei - The configuration of a presetCanaryHebei environment. See
staging
below. - Preset
Canary Pulumi.Heilongjiang Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Heilongjiang - The configuration of a presetCanaryHeilongjiang environment. See
staging
below. - Preset
Canary Pulumi.Henan Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Henan - The configuration of a presetCanaryHenan environment. See
staging
below. - Preset
Canary Pulumi.Hong Kong Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Hong Kong - The configuration of a presetCanaryHongKong environment. See
staging
below. - Preset
Canary Pulumi.Hubei Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Hubei - The configuration of a presetCanaryHubei environment. See
staging
below. - Preset
Canary Pulumi.Hunan Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Hunan - The configuration of a presetCanaryHunan environment. See
staging
below. - Preset
Canary Pulumi.Jiangsu Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Jiangsu - The configuration of a presetCanaryJiangsu environment. See
staging
below. - Preset
Canary Pulumi.Jiangxi Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Jiangxi - The configuration of a presetCanaryJiangxi environment. See
staging
below. - Preset
Canary Pulumi.Jilin Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Jilin - The configuration of a presetCanaryJilin environment. See
staging
below. - Preset
Canary Pulumi.Liaoning Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Liaoning - The configuration of a presetCanaryLiaoning environment. See
staging
below. - Preset
Canary Pulumi.Macau Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Macau - The configuration of a presetCanaryMacau environment. See
staging
below. - Preset
Canary Pulumi.Neimenggu Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Neimenggu - The configuration of a presetCanaryNeimenggu environment. See
staging
below. - Preset
Canary Pulumi.Ningxia Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Ningxia - The configuration of a presetCanaryNingxia environment. See
staging
below. - Preset
Canary Pulumi.Overseas Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Overseas - The configuration of a presetCanaryOverseas environment. See
staging
below. - Preset
Canary Pulumi.Qinghai Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Qinghai - The configuration of a presetCanaryQinghai environment. See
staging
below. - Preset
Canary Pulumi.Shaanxi Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Shaanxi - The configuration of a presetCanaryShaanxi environment. See
staging
below. - Preset
Canary Pulumi.Shandong Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Shandong - The configuration of a presetCanaryShandong environment. See
staging
below. - Preset
Canary Pulumi.Shanghai Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Shanghai - The configuration of a presetCanaryShanghai environment. See
staging
below. - Preset
Canary Pulumi.Shanxi Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Shanxi - The configuration of a presetCanaryShanxi environment. See
staging
below. - Preset
Canary Pulumi.Sichuan Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Sichuan - The configuration of a presetCanarySichuan environment. See
staging
below. - Preset
Canary Pulumi.Taiwan Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Taiwan - The configuration of a presetCanaryTaiwan environment. See
staging
below. - Preset
Canary Pulumi.Tianjin Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Tianjin - The configuration of a presetCanaryTianjin environment. See
staging
below. - Preset
Canary Pulumi.Xinjiang Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Xinjiang - The configuration of a presetCanaryXinjiang environment. See
staging
below. - Preset
Canary Pulumi.Xizang Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Xizang - The configuration of a presetCanaryXizang environment. See
staging
below. - Preset
Canary Pulumi.Yunnan Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Yunnan - The configuration of a presetCanaryYunnan environment. See
staging
below. - Preset
Canary Pulumi.Zhejiang Ali Cloud. Dcdn. Inputs. Er Env Conf Preset Canary Zhejiang - The configuration of a presetCanaryZhejiang environment. See
staging
below. - Production
Pulumi.
Ali Cloud. Dcdn. Inputs. Er Env Conf Production - The configuration of a production environment. See
staging
below. - Staging
Pulumi.
Ali Cloud. Dcdn. Inputs. Er Env Conf Staging - The configuration of a staging environment. See
staging
below.
- Preset
Canary ErAnhui Env Conf Preset Canary Anhui - The configuration of a presetCanaryAnhui environment. See
staging
below. - Preset
Canary ErBeijing Env Conf Preset Canary Beijing - The configuration of a presetCanaryBeijing environment. See
staging
below. - Preset
Canary ErChongqing Env Conf Preset Canary Chongqing - The configuration of a presetCanaryChongqing environment. See
staging
below. - Preset
Canary ErFujian Env Conf Preset Canary Fujian - The configuration of a presetCanaryFujian environment. See
staging
below. - Preset
Canary ErGansu Env Conf Preset Canary Gansu - The configuration of a presetCanaryGansu environment. See
staging
below. - Preset
Canary ErGuangdong Env Conf Preset Canary Guangdong - The configuration of a presetCanaryGuangdong environment. See
staging
below. - Preset
Canary ErGuangxi Env Conf Preset Canary Guangxi - The configuration of a presetCanaryGuangxi environment. See
staging
below. - Preset
Canary ErGuizhou Env Conf Preset Canary Guizhou - The configuration of a presetCanaryGuizhou environment. See
staging
below. - Preset
Canary ErHainan Env Conf Preset Canary Hainan - The configuration of a presetCanaryHainan environment. See
staging
below. - Preset
Canary ErHebei Env Conf Preset Canary Hebei - The configuration of a presetCanaryHebei environment. See
staging
below. - Preset
Canary ErHeilongjiang Env Conf Preset Canary Heilongjiang - The configuration of a presetCanaryHeilongjiang environment. See
staging
below. - Preset
Canary ErHenan Env Conf Preset Canary Henan - The configuration of a presetCanaryHenan environment. See
staging
below. - Preset
Canary ErHong Kong Env Conf Preset Canary Hong Kong - The configuration of a presetCanaryHongKong environment. See
staging
below. - Preset
Canary ErHubei Env Conf Preset Canary Hubei - The configuration of a presetCanaryHubei environment. See
staging
below. - Preset
Canary ErHunan Env Conf Preset Canary Hunan - The configuration of a presetCanaryHunan environment. See
staging
below. - Preset
Canary ErJiangsu Env Conf Preset Canary Jiangsu - The configuration of a presetCanaryJiangsu environment. See
staging
below. - Preset
Canary ErJiangxi Env Conf Preset Canary Jiangxi - The configuration of a presetCanaryJiangxi environment. See
staging
below. - Preset
Canary ErJilin Env Conf Preset Canary Jilin - The configuration of a presetCanaryJilin environment. See
staging
below. - Preset
Canary ErLiaoning Env Conf Preset Canary Liaoning - The configuration of a presetCanaryLiaoning environment. See
staging
below. - Preset
Canary ErMacau Env Conf Preset Canary Macau - The configuration of a presetCanaryMacau environment. See
staging
below. - Preset
Canary ErNeimenggu Env Conf Preset Canary Neimenggu - The configuration of a presetCanaryNeimenggu environment. See
staging
below. - Preset
Canary ErNingxia Env Conf Preset Canary Ningxia - The configuration of a presetCanaryNingxia environment. See
staging
below. - Preset
Canary ErOverseas Env Conf Preset Canary Overseas - The configuration of a presetCanaryOverseas environment. See
staging
below. - Preset
Canary ErQinghai Env Conf Preset Canary Qinghai - The configuration of a presetCanaryQinghai environment. See
staging
below. - Preset
Canary ErShaanxi Env Conf Preset Canary Shaanxi - The configuration of a presetCanaryShaanxi environment. See
staging
below. - Preset
Canary ErShandong Env Conf Preset Canary Shandong - The configuration of a presetCanaryShandong environment. See
staging
below. - Preset
Canary ErShanghai Env Conf Preset Canary Shanghai - The configuration of a presetCanaryShanghai environment. See
staging
below. - Preset
Canary ErShanxi Env Conf Preset Canary Shanxi - The configuration of a presetCanaryShanxi environment. See
staging
below. - Preset
Canary ErSichuan Env Conf Preset Canary Sichuan - The configuration of a presetCanarySichuan environment. See
staging
below. - Preset
Canary ErTaiwan Env Conf Preset Canary Taiwan - The configuration of a presetCanaryTaiwan environment. See
staging
below. - Preset
Canary ErTianjin Env Conf Preset Canary Tianjin - The configuration of a presetCanaryTianjin environment. See
staging
below. - Preset
Canary ErXinjiang Env Conf Preset Canary Xinjiang - The configuration of a presetCanaryXinjiang environment. See
staging
below. - Preset
Canary ErXizang Env Conf Preset Canary Xizang - The configuration of a presetCanaryXizang environment. See
staging
below. - Preset
Canary ErYunnan Env Conf Preset Canary Yunnan - The configuration of a presetCanaryYunnan environment. See
staging
below. - Preset
Canary ErZhejiang Env Conf Preset Canary Zhejiang - The configuration of a presetCanaryZhejiang environment. See
staging
below. - Production
Er
Env Conf Production - The configuration of a production environment. See
staging
below. - Staging
Er
Env Conf Staging - The configuration of a staging environment. See
staging
below.
- preset
Canary ErAnhui Env Conf Preset Canary Anhui - The configuration of a presetCanaryAnhui environment. See
staging
below. - preset
Canary ErBeijing Env Conf Preset Canary Beijing - The configuration of a presetCanaryBeijing environment. See
staging
below. - preset
Canary ErChongqing Env Conf Preset Canary Chongqing - The configuration of a presetCanaryChongqing environment. See
staging
below. - preset
Canary ErFujian Env Conf Preset Canary Fujian - The configuration of a presetCanaryFujian environment. See
staging
below. - preset
Canary ErGansu Env Conf Preset Canary Gansu - The configuration of a presetCanaryGansu environment. See
staging
below. - preset
Canary ErGuangdong Env Conf Preset Canary Guangdong - The configuration of a presetCanaryGuangdong environment. See
staging
below. - preset
Canary ErGuangxi Env Conf Preset Canary Guangxi - The configuration of a presetCanaryGuangxi environment. See
staging
below. - preset
Canary ErGuizhou Env Conf Preset Canary Guizhou - The configuration of a presetCanaryGuizhou environment. See
staging
below. - preset
Canary ErHainan Env Conf Preset Canary Hainan - The configuration of a presetCanaryHainan environment. See
staging
below. - preset
Canary ErHebei Env Conf Preset Canary Hebei - The configuration of a presetCanaryHebei environment. See
staging
below. - preset
Canary ErHeilongjiang Env Conf Preset Canary Heilongjiang - The configuration of a presetCanaryHeilongjiang environment. See
staging
below. - preset
Canary ErHenan Env Conf Preset Canary Henan - The configuration of a presetCanaryHenan environment. See
staging
below. - preset
Canary ErHong Kong Env Conf Preset Canary Hong Kong - The configuration of a presetCanaryHongKong environment. See
staging
below. - preset
Canary ErHubei Env Conf Preset Canary Hubei - The configuration of a presetCanaryHubei environment. See
staging
below. - preset
Canary ErHunan Env Conf Preset Canary Hunan - The configuration of a presetCanaryHunan environment. See
staging
below. - preset
Canary ErJiangsu Env Conf Preset Canary Jiangsu - The configuration of a presetCanaryJiangsu environment. See
staging
below. - preset
Canary ErJiangxi Env Conf Preset Canary Jiangxi - The configuration of a presetCanaryJiangxi environment. See
staging
below. - preset
Canary ErJilin Env Conf Preset Canary Jilin - The configuration of a presetCanaryJilin environment. See
staging
below. - preset
Canary ErLiaoning Env Conf Preset Canary Liaoning - The configuration of a presetCanaryLiaoning environment. See
staging
below. - preset
Canary ErMacau Env Conf Preset Canary Macau - The configuration of a presetCanaryMacau environment. See
staging
below. - preset
Canary ErNeimenggu Env Conf Preset Canary Neimenggu - The configuration of a presetCanaryNeimenggu environment. See
staging
below. - preset
Canary ErNingxia Env Conf Preset Canary Ningxia - The configuration of a presetCanaryNingxia environment. See
staging
below. - preset
Canary ErOverseas Env Conf Preset Canary Overseas - The configuration of a presetCanaryOverseas environment. See
staging
below. - preset
Canary ErQinghai Env Conf Preset Canary Qinghai - The configuration of a presetCanaryQinghai environment. See
staging
below. - preset
Canary ErShaanxi Env Conf Preset Canary Shaanxi - The configuration of a presetCanaryShaanxi environment. See
staging
below. - preset
Canary ErShandong Env Conf Preset Canary Shandong - The configuration of a presetCanaryShandong environment. See
staging
below. - preset
Canary ErShanghai Env Conf Preset Canary Shanghai - The configuration of a presetCanaryShanghai environment. See
staging
below. - preset
Canary ErShanxi Env Conf Preset Canary Shanxi - The configuration of a presetCanaryShanxi environment. See
staging
below. - preset
Canary ErSichuan Env Conf Preset Canary Sichuan - The configuration of a presetCanarySichuan environment. See
staging
below. - preset
Canary ErTaiwan Env Conf Preset Canary Taiwan - The configuration of a presetCanaryTaiwan environment. See
staging
below. - preset
Canary ErTianjin Env Conf Preset Canary Tianjin - The configuration of a presetCanaryTianjin environment. See
staging
below. - preset
Canary ErXinjiang Env Conf Preset Canary Xinjiang - The configuration of a presetCanaryXinjiang environment. See
staging
below. - preset
Canary ErXizang Env Conf Preset Canary Xizang - The configuration of a presetCanaryXizang environment. See
staging
below. - preset
Canary ErYunnan Env Conf Preset Canary Yunnan - The configuration of a presetCanaryYunnan environment. See
staging
below. - preset
Canary ErZhejiang Env Conf Preset Canary Zhejiang - The configuration of a presetCanaryZhejiang environment. See
staging
below. - production
Er
Env Conf Production - The configuration of a production environment. See
staging
below. - staging
Er
Env Conf Staging - The configuration of a staging environment. See
staging
below.
- preset
Canary ErAnhui Env Conf Preset Canary Anhui - The configuration of a presetCanaryAnhui environment. See
staging
below. - preset
Canary ErBeijing Env Conf Preset Canary Beijing - The configuration of a presetCanaryBeijing environment. See
staging
below. - preset
Canary ErChongqing Env Conf Preset Canary Chongqing - The configuration of a presetCanaryChongqing environment. See
staging
below. - preset
Canary ErFujian Env Conf Preset Canary Fujian - The configuration of a presetCanaryFujian environment. See
staging
below. - preset
Canary ErGansu Env Conf Preset Canary Gansu - The configuration of a presetCanaryGansu environment. See
staging
below. - preset
Canary ErGuangdong Env Conf Preset Canary Guangdong - The configuration of a presetCanaryGuangdong environment. See
staging
below. - preset
Canary ErGuangxi Env Conf Preset Canary Guangxi - The configuration of a presetCanaryGuangxi environment. See
staging
below. - preset
Canary ErGuizhou Env Conf Preset Canary Guizhou - The configuration of a presetCanaryGuizhou environment. See
staging
below. - preset
Canary ErHainan Env Conf Preset Canary Hainan - The configuration of a presetCanaryHainan environment. See
staging
below. - preset
Canary ErHebei Env Conf Preset Canary Hebei - The configuration of a presetCanaryHebei environment. See
staging
below. - preset
Canary ErHeilongjiang Env Conf Preset Canary Heilongjiang - The configuration of a presetCanaryHeilongjiang environment. See
staging
below. - preset
Canary ErHenan Env Conf Preset Canary Henan - The configuration of a presetCanaryHenan environment. See
staging
below. - preset
Canary ErHong Kong Env Conf Preset Canary Hong Kong - The configuration of a presetCanaryHongKong environment. See
staging
below. - preset
Canary ErHubei Env Conf Preset Canary Hubei - The configuration of a presetCanaryHubei environment. See
staging
below. - preset
Canary ErHunan Env Conf Preset Canary Hunan - The configuration of a presetCanaryHunan environment. See
staging
below. - preset
Canary ErJiangsu Env Conf Preset Canary Jiangsu - The configuration of a presetCanaryJiangsu environment. See
staging
below. - preset
Canary ErJiangxi Env Conf Preset Canary Jiangxi - The configuration of a presetCanaryJiangxi environment. See
staging
below. - preset
Canary ErJilin Env Conf Preset Canary Jilin - The configuration of a presetCanaryJilin environment. See
staging
below. - preset
Canary ErLiaoning Env Conf Preset Canary Liaoning - The configuration of a presetCanaryLiaoning environment. See
staging
below. - preset
Canary ErMacau Env Conf Preset Canary Macau - The configuration of a presetCanaryMacau environment. See
staging
below. - preset
Canary ErNeimenggu Env Conf Preset Canary Neimenggu - The configuration of a presetCanaryNeimenggu environment. See
staging
below. - preset
Canary ErNingxia Env Conf Preset Canary Ningxia - The configuration of a presetCanaryNingxia environment. See
staging
below. - preset
Canary ErOverseas Env Conf Preset Canary Overseas - The configuration of a presetCanaryOverseas environment. See
staging
below. - preset
Canary ErQinghai Env Conf Preset Canary Qinghai - The configuration of a presetCanaryQinghai environment. See
staging
below. - preset
Canary ErShaanxi Env Conf Preset Canary Shaanxi - The configuration of a presetCanaryShaanxi environment. See
staging
below. - preset
Canary ErShandong Env Conf Preset Canary Shandong - The configuration of a presetCanaryShandong environment. See
staging
below. - preset
Canary ErShanghai Env Conf Preset Canary Shanghai - The configuration of a presetCanaryShanghai environment. See
staging
below. - preset
Canary ErShanxi Env Conf Preset Canary Shanxi - The configuration of a presetCanaryShanxi environment. See
staging
below. - preset
Canary ErSichuan Env Conf Preset Canary Sichuan - The configuration of a presetCanarySichuan environment. See
staging
below. - preset
Canary ErTaiwan Env Conf Preset Canary Taiwan - The configuration of a presetCanaryTaiwan environment. See
staging
below. - preset
Canary ErTianjin Env Conf Preset Canary Tianjin - The configuration of a presetCanaryTianjin environment. See
staging
below. - preset
Canary ErXinjiang Env Conf Preset Canary Xinjiang - The configuration of a presetCanaryXinjiang environment. See
staging
below. - preset
Canary ErXizang Env Conf Preset Canary Xizang - The configuration of a presetCanaryXizang environment. See
staging
below. - preset
Canary ErYunnan Env Conf Preset Canary Yunnan - The configuration of a presetCanaryYunnan environment. See
staging
below. - preset
Canary ErZhejiang Env Conf Preset Canary Zhejiang - The configuration of a presetCanaryZhejiang environment. See
staging
below. - production
Er
Env Conf Production - The configuration of a production environment. See
staging
below. - staging
Er
Env Conf Staging - The configuration of a staging environment. See
staging
below.
- preset_
canary_ Eranhui Env Conf Preset Canary Anhui - The configuration of a presetCanaryAnhui environment. See
staging
below. - preset_
canary_ Erbeijing Env Conf Preset Canary Beijing - The configuration of a presetCanaryBeijing environment. See
staging
below. - preset_
canary_ Erchongqing Env Conf Preset Canary Chongqing - The configuration of a presetCanaryChongqing environment. See
staging
below. - preset_
canary_ Erfujian Env Conf Preset Canary Fujian - The configuration of a presetCanaryFujian environment. See
staging
below. - preset_
canary_ Ergansu Env Conf Preset Canary Gansu - The configuration of a presetCanaryGansu environment. See
staging
below. - preset_
canary_ Erguangdong Env Conf Preset Canary Guangdong - The configuration of a presetCanaryGuangdong environment. See
staging
below. - preset_
canary_ Erguangxi Env Conf Preset Canary Guangxi - The configuration of a presetCanaryGuangxi environment. See
staging
below. - preset_
canary_ Erguizhou Env Conf Preset Canary Guizhou - The configuration of a presetCanaryGuizhou environment. See
staging
below. - preset_
canary_ Erhainan Env Conf Preset Canary Hainan - The configuration of a presetCanaryHainan environment. See
staging
below. - preset_
canary_ Erhebei Env Conf Preset Canary Hebei - The configuration of a presetCanaryHebei environment. See
staging
below. - preset_
canary_ Erheilongjiang Env Conf Preset Canary Heilongjiang - The configuration of a presetCanaryHeilongjiang environment. See
staging
below. - preset_
canary_ Erhenan Env Conf Preset Canary Henan - The configuration of a presetCanaryHenan environment. See
staging
below. - preset_
canary_ Erhong_ kong Env Conf Preset Canary Hong Kong - The configuration of a presetCanaryHongKong environment. See
staging
below. - preset_
canary_ Erhubei Env Conf Preset Canary Hubei - The configuration of a presetCanaryHubei environment. See
staging
below. - preset_
canary_ Erhunan Env Conf Preset Canary Hunan - The configuration of a presetCanaryHunan environment. See
staging
below. - preset_
canary_ Erjiangsu Env Conf Preset Canary Jiangsu - The configuration of a presetCanaryJiangsu environment. See
staging
below. - preset_
canary_ Erjiangxi Env Conf Preset Canary Jiangxi - The configuration of a presetCanaryJiangxi environment. See
staging
below. - preset_
canary_ Erjilin Env Conf Preset Canary Jilin - The configuration of a presetCanaryJilin environment. See
staging
below. - preset_
canary_ Erliaoning Env Conf Preset Canary Liaoning - The configuration of a presetCanaryLiaoning environment. See
staging
below. - preset_
canary_ Ermacau Env Conf Preset Canary Macau - The configuration of a presetCanaryMacau environment. See
staging
below. - preset_
canary_ Erneimenggu Env Conf Preset Canary Neimenggu - The configuration of a presetCanaryNeimenggu environment. See
staging
below. - preset_
canary_ Erningxia Env Conf Preset Canary Ningxia - The configuration of a presetCanaryNingxia environment. See
staging
below. - preset_
canary_ Eroverseas Env Conf Preset Canary Overseas - The configuration of a presetCanaryOverseas environment. See
staging
below. - preset_
canary_ Erqinghai Env Conf Preset Canary Qinghai - The configuration of a presetCanaryQinghai environment. See
staging
below. - preset_
canary_ Ershaanxi Env Conf Preset Canary Shaanxi - The configuration of a presetCanaryShaanxi environment. See
staging
below. - preset_
canary_ Ershandong Env Conf Preset Canary Shandong - The configuration of a presetCanaryShandong environment. See
staging
below. - preset_
canary_ Ershanghai Env Conf Preset Canary Shanghai - The configuration of a presetCanaryShanghai environment. See
staging
below. - preset_
canary_ Ershanxi Env Conf Preset Canary Shanxi - The configuration of a presetCanaryShanxi environment. See
staging
below. - preset_
canary_ Ersichuan Env Conf Preset Canary Sichuan - The configuration of a presetCanarySichuan environment. See
staging
below. - preset_
canary_ Ertaiwan Env Conf Preset Canary Taiwan - The configuration of a presetCanaryTaiwan environment. See
staging
below. - preset_
canary_ Ertianjin Env Conf Preset Canary Tianjin - The configuration of a presetCanaryTianjin environment. See
staging
below. - preset_
canary_ Erxinjiang Env Conf Preset Canary Xinjiang - The configuration of a presetCanaryXinjiang environment. See
staging
below. - preset_
canary_ Erxizang Env Conf Preset Canary Xizang - The configuration of a presetCanaryXizang environment. See
staging
below. - preset_
canary_ Eryunnan Env Conf Preset Canary Yunnan - The configuration of a presetCanaryYunnan environment. See
staging
below. - preset_
canary_ Erzhejiang Env Conf Preset Canary Zhejiang - The configuration of a presetCanaryZhejiang environment. See
staging
below. - production
Er
Env Conf Production - The configuration of a production environment. See
staging
below. - staging
Er
Env Conf Staging - The configuration of a staging environment. See
staging
below.
- preset
Canary Property MapAnhui - The configuration of a presetCanaryAnhui environment. See
staging
below. - preset
Canary Property MapBeijing - The configuration of a presetCanaryBeijing environment. See
staging
below. - preset
Canary Property MapChongqing - The configuration of a presetCanaryChongqing environment. See
staging
below. - preset
Canary Property MapFujian - The configuration of a presetCanaryFujian environment. See
staging
below. - preset
Canary Property MapGansu - The configuration of a presetCanaryGansu environment. See
staging
below. - preset
Canary Property MapGuangdong - The configuration of a presetCanaryGuangdong environment. See
staging
below. - preset
Canary Property MapGuangxi - The configuration of a presetCanaryGuangxi environment. See
staging
below. - preset
Canary Property MapGuizhou - The configuration of a presetCanaryGuizhou environment. See
staging
below. - preset
Canary Property MapHainan - The configuration of a presetCanaryHainan environment. See
staging
below. - preset
Canary Property MapHebei - The configuration of a presetCanaryHebei environment. See
staging
below. - preset
Canary Property MapHeilongjiang - The configuration of a presetCanaryHeilongjiang environment. See
staging
below. - preset
Canary Property MapHenan - The configuration of a presetCanaryHenan environment. See
staging
below. - preset
Canary Property MapHong Kong - The configuration of a presetCanaryHongKong environment. See
staging
below. - preset
Canary Property MapHubei - The configuration of a presetCanaryHubei environment. See
staging
below. - preset
Canary Property MapHunan - The configuration of a presetCanaryHunan environment. See
staging
below. - preset
Canary Property MapJiangsu - The configuration of a presetCanaryJiangsu environment. See
staging
below. - preset
Canary Property MapJiangxi - The configuration of a presetCanaryJiangxi environment. See
staging
below. - preset
Canary Property MapJilin - The configuration of a presetCanaryJilin environment. See
staging
below. - preset
Canary Property MapLiaoning - The configuration of a presetCanaryLiaoning environment. See
staging
below. - preset
Canary Property MapMacau - The configuration of a presetCanaryMacau environment. See
staging
below. - preset
Canary Property MapNeimenggu - The configuration of a presetCanaryNeimenggu environment. See
staging
below. - preset
Canary Property MapNingxia - The configuration of a presetCanaryNingxia environment. See
staging
below. - preset
Canary Property MapOverseas - The configuration of a presetCanaryOverseas environment. See
staging
below. - preset
Canary Property MapQinghai - The configuration of a presetCanaryQinghai environment. See
staging
below. - preset
Canary Property MapShaanxi - The configuration of a presetCanaryShaanxi environment. See
staging
below. - preset
Canary Property MapShandong - The configuration of a presetCanaryShandong environment. See
staging
below. - preset
Canary Property MapShanghai - The configuration of a presetCanaryShanghai environment. See
staging
below. - preset
Canary Property MapShanxi - The configuration of a presetCanaryShanxi environment. See
staging
below. - preset
Canary Property MapSichuan - The configuration of a presetCanarySichuan environment. See
staging
below. - preset
Canary Property MapTaiwan - The configuration of a presetCanaryTaiwan environment. See
staging
below. - preset
Canary Property MapTianjin - The configuration of a presetCanaryTianjin environment. See
staging
below. - preset
Canary Property MapXinjiang - The configuration of a presetCanaryXinjiang environment. See
staging
below. - preset
Canary Property MapXizang - The configuration of a presetCanaryXizang environment. See
staging
below. - preset
Canary Property MapYunnan - The configuration of a presetCanaryYunnan environment. See
staging
below. - preset
Canary Property MapZhejiang - 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
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryBeijing, ErEnvConfPresetCanaryBeijingArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryChongqing, ErEnvConfPresetCanaryChongqingArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryFujian, ErEnvConfPresetCanaryFujianArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryGansu, ErEnvConfPresetCanaryGansuArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryGuangdong, ErEnvConfPresetCanaryGuangdongArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryGuangxi, ErEnvConfPresetCanaryGuangxiArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryGuizhou, ErEnvConfPresetCanaryGuizhouArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryHainan, ErEnvConfPresetCanaryHainanArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryHebei, ErEnvConfPresetCanaryHebeiArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryHeilongjiang, ErEnvConfPresetCanaryHeilongjiangArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryHenan, ErEnvConfPresetCanaryHenanArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryHongKong, ErEnvConfPresetCanaryHongKongArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryHubei, ErEnvConfPresetCanaryHubeiArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryHunan, ErEnvConfPresetCanaryHunanArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryJiangsu, ErEnvConfPresetCanaryJiangsuArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryJiangxi, ErEnvConfPresetCanaryJiangxiArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryJilin, ErEnvConfPresetCanaryJilinArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryLiaoning, ErEnvConfPresetCanaryLiaoningArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryMacau, ErEnvConfPresetCanaryMacauArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryNeimenggu, ErEnvConfPresetCanaryNeimengguArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryNingxia, ErEnvConfPresetCanaryNingxiaArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryOverseas, ErEnvConfPresetCanaryOverseasArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryQinghai, ErEnvConfPresetCanaryQinghaiArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryShaanxi, ErEnvConfPresetCanaryShaanxiArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryShandong, ErEnvConfPresetCanaryShandongArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryShanghai, ErEnvConfPresetCanaryShanghaiArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryShanxi, ErEnvConfPresetCanaryShanxiArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanarySichuan, ErEnvConfPresetCanarySichuanArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryTaiwan, ErEnvConfPresetCanaryTaiwanArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryTianjin, ErEnvConfPresetCanaryTianjinArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryXinjiang, ErEnvConfPresetCanaryXinjiangArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryXizang, ErEnvConfPresetCanaryXizangArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryYunnan, ErEnvConfPresetCanaryYunnanArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfPresetCanaryZhejiang, ErEnvConfPresetCanaryZhejiangArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfProduction, ErEnvConfProductionArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
ErEnvConfStaging, ErEnvConfStagingArgs
- Allowed
Hosts List<string> - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- Allowed
Hosts []string - Allowed DCDN domain names.
- Code
Rev string - The version number of the code.
- Spec
Name string - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name String - The specification of the CPU time slice. Valid values:
5ms
,50ms
,100ms
.
- allowed
Hosts string[] - Allowed DCDN domain names.
- code
Rev string - The version number of the code.
- spec
Name 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
.
- allowed
Hosts List<String> - Allowed DCDN domain names.
- code
Rev String - The version number of the code.
- spec
Name 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.