@pulumi/alicloud 3.59.0 → 3.59.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cen/getTransitRouterService.d.ts +2 -2
- package/cen/getTransitRouterService.js +2 -2
- package/cloudfirewall/controlPolicyOrder.d.ts +24 -19
- package/cloudfirewall/controlPolicyOrder.js +16 -11
- package/cloudfirewall/controlPolicyOrder.js.map +1 -1
- package/cs/nodePool.d.ts +3 -3
- package/dcdn/domain.d.ts +111 -76
- package/dcdn/domain.js +21 -14
- package/dcdn/domain.js.map +1 -1
- package/directmail/getDomains.d.ts +29 -34
- package/directmail/getDomains.js +14 -28
- package/directmail/getDomains.js.map +1 -1
- package/ecs/ecsDisk.d.ts +3 -0
- package/ecs/ecsDisk.js.map +1 -1
- package/ecs/instance.d.ts +98 -44
- package/ecs/instance.js +8 -0
- package/ecs/instance.js.map +1 -1
- package/maxcompute/project.d.ts +77 -23
- package/maxcompute/project.js +20 -5
- package/maxcompute/project.js.map +1 -1
- package/package.json +2 -2
- package/polardb/cluster.d.ts +12 -12
- package/rdc/organization.d.ts +1 -1
- package/rdc/organization.js +1 -1
- package/slb/serverGroup.d.ts +58 -36
- package/slb/serverGroup.js +24 -21
- package/slb/serverGroup.js.map +1 -1
- package/types/input.d.ts +2415 -37
- package/types/output.d.ts +2641 -74
- package/vpc/network.d.ts +119 -59
- package/vpc/network.js +13 -5
- package/vpc/network.js.map +1 -1
- package/vpc/publicIpAddressPool.d.ts +35 -5
- package/vpc/publicIpAddressPool.js +7 -3
- package/vpc/publicIpAddressPool.js.map +1 -1
package/dcdn/domain.js
CHANGED
|
@@ -6,15 +6,15 @@ exports.Domain = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* Provides a DCDN Domain resource.
|
|
10
10
|
*
|
|
11
|
-
*
|
|
11
|
+
* Full station accelerated domain name.
|
|
12
12
|
*
|
|
13
|
-
*
|
|
13
|
+
* For information about DCDN Domain and how to use it, see [What is Domain](https://www.alibabacloud.com/help/en/doc-detail/130628.htm).
|
|
14
14
|
*
|
|
15
|
-
* > **NOTE:**
|
|
15
|
+
* > **NOTE:** Available since v1.94.0.
|
|
16
16
|
*
|
|
17
|
-
* > **NOTE:**
|
|
17
|
+
* > **NOTE:** Field `forceSet`, `securityToken` has been removed from provider version 1.227.1.
|
|
18
18
|
*
|
|
19
19
|
* ## Example Usage
|
|
20
20
|
*
|
|
@@ -46,7 +46,7 @@ const utilities = require("../utilities");
|
|
|
46
46
|
*
|
|
47
47
|
* ## Import
|
|
48
48
|
*
|
|
49
|
-
* DCDN Domain can be imported using the id
|
|
49
|
+
* DCDN Domain can be imported using the id, e.g.
|
|
50
50
|
*
|
|
51
51
|
* ```sh
|
|
52
52
|
* $ pulumi import alicloud:dcdn/domain:Domain example <id>
|
|
@@ -80,15 +80,19 @@ class Domain extends pulumi.CustomResource {
|
|
|
80
80
|
opts = opts || {};
|
|
81
81
|
if (opts.id) {
|
|
82
82
|
const state = argsOrState;
|
|
83
|
+
resourceInputs["certId"] = state ? state.certId : undefined;
|
|
83
84
|
resourceInputs["certName"] = state ? state.certName : undefined;
|
|
85
|
+
resourceInputs["certRegion"] = state ? state.certRegion : undefined;
|
|
84
86
|
resourceInputs["certType"] = state ? state.certType : undefined;
|
|
85
87
|
resourceInputs["checkUrl"] = state ? state.checkUrl : undefined;
|
|
86
88
|
resourceInputs["cname"] = state ? state.cname : undefined;
|
|
89
|
+
resourceInputs["createTime"] = state ? state.createTime : undefined;
|
|
87
90
|
resourceInputs["domainName"] = state ? state.domainName : undefined;
|
|
88
|
-
resourceInputs["
|
|
91
|
+
resourceInputs["env"] = state ? state.env : undefined;
|
|
92
|
+
resourceInputs["functionType"] = state ? state.functionType : undefined;
|
|
89
93
|
resourceInputs["resourceGroupId"] = state ? state.resourceGroupId : undefined;
|
|
94
|
+
resourceInputs["scene"] = state ? state.scene : undefined;
|
|
90
95
|
resourceInputs["scope"] = state ? state.scope : undefined;
|
|
91
|
-
resourceInputs["securityToken"] = state ? state.securityToken : undefined;
|
|
92
96
|
resourceInputs["sources"] = state ? state.sources : undefined;
|
|
93
97
|
resourceInputs["sslPri"] = state ? state.sslPri : undefined;
|
|
94
98
|
resourceInputs["sslProtocol"] = state ? state.sslProtocol : undefined;
|
|
@@ -102,27 +106,30 @@ class Domain extends pulumi.CustomResource {
|
|
|
102
106
|
if ((!args || args.domainName === undefined) && !opts.urn) {
|
|
103
107
|
throw new Error("Missing required property 'domainName'");
|
|
104
108
|
}
|
|
105
|
-
|
|
106
|
-
throw new Error("Missing required property 'sources'");
|
|
107
|
-
}
|
|
109
|
+
resourceInputs["certId"] = args ? args.certId : undefined;
|
|
108
110
|
resourceInputs["certName"] = args ? args.certName : undefined;
|
|
111
|
+
resourceInputs["certRegion"] = args ? args.certRegion : undefined;
|
|
109
112
|
resourceInputs["certType"] = args ? args.certType : undefined;
|
|
110
113
|
resourceInputs["checkUrl"] = args ? args.checkUrl : undefined;
|
|
111
114
|
resourceInputs["domainName"] = args ? args.domainName : undefined;
|
|
112
|
-
resourceInputs["
|
|
115
|
+
resourceInputs["env"] = args ? args.env : undefined;
|
|
116
|
+
resourceInputs["functionType"] = args ? args.functionType : undefined;
|
|
113
117
|
resourceInputs["resourceGroupId"] = args ? args.resourceGroupId : undefined;
|
|
118
|
+
resourceInputs["scene"] = args ? args.scene : undefined;
|
|
114
119
|
resourceInputs["scope"] = args ? args.scope : undefined;
|
|
115
|
-
resourceInputs["securityToken"] = args ? args.securityToken : undefined;
|
|
116
120
|
resourceInputs["sources"] = args ? args.sources : undefined;
|
|
117
|
-
resourceInputs["sslPri"] = args ? args.sslPri : undefined;
|
|
121
|
+
resourceInputs["sslPri"] = (args === null || args === void 0 ? void 0 : args.sslPri) ? pulumi.secret(args.sslPri) : undefined;
|
|
118
122
|
resourceInputs["sslProtocol"] = args ? args.sslProtocol : undefined;
|
|
119
123
|
resourceInputs["sslPub"] = args ? args.sslPub : undefined;
|
|
120
124
|
resourceInputs["status"] = args ? args.status : undefined;
|
|
121
125
|
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
122
126
|
resourceInputs["topLevelDomain"] = args ? args.topLevelDomain : undefined;
|
|
123
127
|
resourceInputs["cname"] = undefined /*out*/;
|
|
128
|
+
resourceInputs["createTime"] = undefined /*out*/;
|
|
124
129
|
}
|
|
125
130
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
131
|
+
const secretOpts = { additionalSecretOutputs: ["sslPri"] };
|
|
132
|
+
opts = pulumi.mergeOptions(opts, secretOpts);
|
|
126
133
|
super(Domain.__pulumiType, name, resourceInputs, opts);
|
|
127
134
|
}
|
|
128
135
|
}
|
package/dcdn/domain.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"domain.js","sourceRoot":"","sources":["../../dcdn/domain.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8CG;AACH,MAAa,MAAO,SAAQ,MAAM,CAAC,cAAc;IAC7C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmB,EAAE,IAAmC;QACjH,OAAO,IAAI,MAAM,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC7D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,MAAM,CAAC,YAAY,CAAC;IACvD,CAAC;
|
|
1
|
+
{"version":3,"file":"domain.js","sourceRoot":"","sources":["../../dcdn/domain.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,7 +3,7 @@ import * as outputs from "../types/output";
|
|
|
3
3
|
/**
|
|
4
4
|
* This data source provides the Direct Mail Domains of the current Alibaba Cloud user.
|
|
5
5
|
*
|
|
6
|
-
* > **NOTE:** Available
|
|
6
|
+
* > **NOTE:** Available since v1.134.0.
|
|
7
7
|
*
|
|
8
8
|
* ## Example Usage
|
|
9
9
|
*
|
|
@@ -13,20 +13,13 @@ import * as outputs from "../types/output";
|
|
|
13
13
|
* import * as pulumi from "@pulumi/pulumi";
|
|
14
14
|
* import * as alicloud from "@pulumi/alicloud";
|
|
15
15
|
*
|
|
16
|
-
* const
|
|
17
|
-
*
|
|
16
|
+
* const config = new pulumi.Config();
|
|
17
|
+
* const name = config.get("name") || "terraform-example.pop.com";
|
|
18
|
+
* const _default = new alicloud.directmail.Domain("default", {domainName: name});
|
|
19
|
+
* const ids = alicloud.directmail.getDomainsOutput({
|
|
20
|
+
* ids: [_default.id],
|
|
18
21
|
* });
|
|
19
|
-
* export const
|
|
20
|
-
* const nameRegex = alicloud.directmail.getDomains({
|
|
21
|
-
* nameRegex: "^my-Domain",
|
|
22
|
-
* });
|
|
23
|
-
* export const directMailDomainId2 = nameRegex.then(nameRegex => nameRegex.domains?.[0]?.id);
|
|
24
|
-
* const example = alicloud.directmail.getDomains({
|
|
25
|
-
* status: "1",
|
|
26
|
-
* keyWord: "^my-Domain",
|
|
27
|
-
* ids: ["example_id"],
|
|
28
|
-
* });
|
|
29
|
-
* export const directMailDomainId3 = example.then(example => example.domains?.[0]?.id);
|
|
22
|
+
* export const directMailDomainsId0 = ids.apply(ids => ids.domains?.[0]?.id);
|
|
30
23
|
* ```
|
|
31
24
|
*/
|
|
32
25
|
export declare function getDomains(args?: GetDomainsArgs, opts?: pulumi.InvokeOptions): Promise<GetDomainsResult>;
|
|
@@ -35,7 +28,7 @@ export declare function getDomains(args?: GetDomainsArgs, opts?: pulumi.InvokeOp
|
|
|
35
28
|
*/
|
|
36
29
|
export interface GetDomainsArgs {
|
|
37
30
|
/**
|
|
38
|
-
*
|
|
31
|
+
* Whether to query the detailed list of resource attributes. Default value: `false`.
|
|
39
32
|
*/
|
|
40
33
|
enableDetails?: boolean;
|
|
41
34
|
/**
|
|
@@ -43,7 +36,7 @@ export interface GetDomainsArgs {
|
|
|
43
36
|
*/
|
|
44
37
|
ids?: string[];
|
|
45
38
|
/**
|
|
46
|
-
* domain
|
|
39
|
+
* The domain name. It must be 1 to 50 characters in length and can contain digits, letters, periods (.), and hyphens (-).
|
|
47
40
|
*/
|
|
48
41
|
keyWord?: string;
|
|
49
42
|
/**
|
|
@@ -55,7 +48,7 @@ export interface GetDomainsArgs {
|
|
|
55
48
|
*/
|
|
56
49
|
outputFile?: string;
|
|
57
50
|
/**
|
|
58
|
-
* The status of the domain name. Valid values
|
|
51
|
+
* The status of the domain name. Valid values:
|
|
59
52
|
*/
|
|
60
53
|
status?: string;
|
|
61
54
|
}
|
|
@@ -63,6 +56,9 @@ export interface GetDomainsArgs {
|
|
|
63
56
|
* A collection of values returned by getDomains.
|
|
64
57
|
*/
|
|
65
58
|
export interface GetDomainsResult {
|
|
59
|
+
/**
|
|
60
|
+
* A list of Domains. Each element contains the following attributes:
|
|
61
|
+
*/
|
|
66
62
|
readonly domains: outputs.directmail.GetDomainsDomain[];
|
|
67
63
|
readonly enableDetails?: boolean;
|
|
68
64
|
/**
|
|
@@ -72,14 +68,20 @@ export interface GetDomainsResult {
|
|
|
72
68
|
readonly ids: string[];
|
|
73
69
|
readonly keyWord?: string;
|
|
74
70
|
readonly nameRegex?: string;
|
|
71
|
+
/**
|
|
72
|
+
* A list of Domain names.
|
|
73
|
+
*/
|
|
75
74
|
readonly names: string[];
|
|
76
75
|
readonly outputFile?: string;
|
|
76
|
+
/**
|
|
77
|
+
* The status of the domain name.
|
|
78
|
+
*/
|
|
77
79
|
readonly status?: string;
|
|
78
80
|
}
|
|
79
81
|
/**
|
|
80
82
|
* This data source provides the Direct Mail Domains of the current Alibaba Cloud user.
|
|
81
83
|
*
|
|
82
|
-
* > **NOTE:** Available
|
|
84
|
+
* > **NOTE:** Available since v1.134.0.
|
|
83
85
|
*
|
|
84
86
|
* ## Example Usage
|
|
85
87
|
*
|
|
@@ -89,20 +91,13 @@ export interface GetDomainsResult {
|
|
|
89
91
|
* import * as pulumi from "@pulumi/pulumi";
|
|
90
92
|
* import * as alicloud from "@pulumi/alicloud";
|
|
91
93
|
*
|
|
92
|
-
* const
|
|
93
|
-
*
|
|
94
|
-
* });
|
|
95
|
-
*
|
|
96
|
-
*
|
|
97
|
-
* nameRegex: "^my-Domain",
|
|
98
|
-
* });
|
|
99
|
-
* export const directMailDomainId2 = nameRegex.then(nameRegex => nameRegex.domains?.[0]?.id);
|
|
100
|
-
* const example = alicloud.directmail.getDomains({
|
|
101
|
-
* status: "1",
|
|
102
|
-
* keyWord: "^my-Domain",
|
|
103
|
-
* ids: ["example_id"],
|
|
94
|
+
* const config = new pulumi.Config();
|
|
95
|
+
* const name = config.get("name") || "terraform-example.pop.com";
|
|
96
|
+
* const _default = new alicloud.directmail.Domain("default", {domainName: name});
|
|
97
|
+
* const ids = alicloud.directmail.getDomainsOutput({
|
|
98
|
+
* ids: [_default.id],
|
|
104
99
|
* });
|
|
105
|
-
* export const
|
|
100
|
+
* export const directMailDomainsId0 = ids.apply(ids => ids.domains?.[0]?.id);
|
|
106
101
|
* ```
|
|
107
102
|
*/
|
|
108
103
|
export declare function getDomainsOutput(args?: GetDomainsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetDomainsResult>;
|
|
@@ -111,7 +106,7 @@ export declare function getDomainsOutput(args?: GetDomainsOutputArgs, opts?: pul
|
|
|
111
106
|
*/
|
|
112
107
|
export interface GetDomainsOutputArgs {
|
|
113
108
|
/**
|
|
114
|
-
*
|
|
109
|
+
* Whether to query the detailed list of resource attributes. Default value: `false`.
|
|
115
110
|
*/
|
|
116
111
|
enableDetails?: pulumi.Input<boolean>;
|
|
117
112
|
/**
|
|
@@ -119,7 +114,7 @@ export interface GetDomainsOutputArgs {
|
|
|
119
114
|
*/
|
|
120
115
|
ids?: pulumi.Input<pulumi.Input<string>[]>;
|
|
121
116
|
/**
|
|
122
|
-
* domain
|
|
117
|
+
* The domain name. It must be 1 to 50 characters in length and can contain digits, letters, periods (.), and hyphens (-).
|
|
123
118
|
*/
|
|
124
119
|
keyWord?: pulumi.Input<string>;
|
|
125
120
|
/**
|
|
@@ -131,7 +126,7 @@ export interface GetDomainsOutputArgs {
|
|
|
131
126
|
*/
|
|
132
127
|
outputFile?: pulumi.Input<string>;
|
|
133
128
|
/**
|
|
134
|
-
* The status of the domain name. Valid values
|
|
129
|
+
* The status of the domain name. Valid values:
|
|
135
130
|
*/
|
|
136
131
|
status?: pulumi.Input<string>;
|
|
137
132
|
}
|
package/directmail/getDomains.js
CHANGED
|
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* This data source provides the Direct Mail Domains of the current Alibaba Cloud user.
|
|
10
10
|
*
|
|
11
|
-
* > **NOTE:** Available
|
|
11
|
+
* > **NOTE:** Available since v1.134.0.
|
|
12
12
|
*
|
|
13
13
|
* ## Example Usage
|
|
14
14
|
*
|
|
@@ -18,20 +18,13 @@ const utilities = require("../utilities");
|
|
|
18
18
|
* import * as pulumi from "@pulumi/pulumi";
|
|
19
19
|
* import * as alicloud from "@pulumi/alicloud";
|
|
20
20
|
*
|
|
21
|
-
* const
|
|
22
|
-
*
|
|
21
|
+
* const config = new pulumi.Config();
|
|
22
|
+
* const name = config.get("name") || "terraform-example.pop.com";
|
|
23
|
+
* const _default = new alicloud.directmail.Domain("default", {domainName: name});
|
|
24
|
+
* const ids = alicloud.directmail.getDomainsOutput({
|
|
25
|
+
* ids: [_default.id],
|
|
23
26
|
* });
|
|
24
|
-
* export const
|
|
25
|
-
* const nameRegex = alicloud.directmail.getDomains({
|
|
26
|
-
* nameRegex: "^my-Domain",
|
|
27
|
-
* });
|
|
28
|
-
* export const directMailDomainId2 = nameRegex.then(nameRegex => nameRegex.domains?.[0]?.id);
|
|
29
|
-
* const example = alicloud.directmail.getDomains({
|
|
30
|
-
* status: "1",
|
|
31
|
-
* keyWord: "^my-Domain",
|
|
32
|
-
* ids: ["example_id"],
|
|
33
|
-
* });
|
|
34
|
-
* export const directMailDomainId3 = example.then(example => example.domains?.[0]?.id);
|
|
27
|
+
* export const directMailDomainsId0 = ids.apply(ids => ids.domains?.[0]?.id);
|
|
35
28
|
* ```
|
|
36
29
|
*/
|
|
37
30
|
function getDomains(args, opts) {
|
|
@@ -50,7 +43,7 @@ exports.getDomains = getDomains;
|
|
|
50
43
|
/**
|
|
51
44
|
* This data source provides the Direct Mail Domains of the current Alibaba Cloud user.
|
|
52
45
|
*
|
|
53
|
-
* > **NOTE:** Available
|
|
46
|
+
* > **NOTE:** Available since v1.134.0.
|
|
54
47
|
*
|
|
55
48
|
* ## Example Usage
|
|
56
49
|
*
|
|
@@ -60,20 +53,13 @@ exports.getDomains = getDomains;
|
|
|
60
53
|
* import * as pulumi from "@pulumi/pulumi";
|
|
61
54
|
* import * as alicloud from "@pulumi/alicloud";
|
|
62
55
|
*
|
|
63
|
-
* const
|
|
64
|
-
*
|
|
65
|
-
* });
|
|
66
|
-
*
|
|
67
|
-
*
|
|
68
|
-
* nameRegex: "^my-Domain",
|
|
69
|
-
* });
|
|
70
|
-
* export const directMailDomainId2 = nameRegex.then(nameRegex => nameRegex.domains?.[0]?.id);
|
|
71
|
-
* const example = alicloud.directmail.getDomains({
|
|
72
|
-
* status: "1",
|
|
73
|
-
* keyWord: "^my-Domain",
|
|
74
|
-
* ids: ["example_id"],
|
|
56
|
+
* const config = new pulumi.Config();
|
|
57
|
+
* const name = config.get("name") || "terraform-example.pop.com";
|
|
58
|
+
* const _default = new alicloud.directmail.Domain("default", {domainName: name});
|
|
59
|
+
* const ids = alicloud.directmail.getDomainsOutput({
|
|
60
|
+
* ids: [_default.id],
|
|
75
61
|
* });
|
|
76
|
-
* export const
|
|
62
|
+
* export const directMailDomainsId0 = ids.apply(ids => ids.domains?.[0]?.id);
|
|
77
63
|
* ```
|
|
78
64
|
*/
|
|
79
65
|
function getDomainsOutput(args, opts) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getDomains.js","sourceRoot":"","sources":["../../directmail/getDomains.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"getDomains.js","sourceRoot":"","sources":["../../directmail/getDomains.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,UAAU,CAAC,IAAqB,EAAE,IAA2B;IACzE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2CAA2C,EAAE;QACtE,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,gCAYC;AA0DD;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,gBAAgB,CAAC,IAA2B,EAAE,IAA2B;IACrF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACrE,CAAC;AAFD,4CAEC"}
|
package/ecs/ecsDisk.d.ts
CHANGED
|
@@ -86,6 +86,7 @@ export declare class EcsDisk extends pulumi.CustomResource {
|
|
|
86
86
|
readonly paymentType: pulumi.Output<string>;
|
|
87
87
|
/**
|
|
88
88
|
* Specifies the performance level of an ESSD when you create the ESSD. Valid values:
|
|
89
|
+
* * `PL0`: A single ESSD delivers up to 10,000 random read/write IOPS.
|
|
89
90
|
* * `PL1`: A single ESSD delivers up to 50,000 random read/write IOPS.
|
|
90
91
|
* * `PL2`: A single ESSD delivers up to 100,000 random read/write IOPS.
|
|
91
92
|
* * `PL3`: A single ESSD delivers up to 1,000,000 random read/write IOPS.
|
|
@@ -204,6 +205,7 @@ export interface EcsDiskState {
|
|
|
204
205
|
paymentType?: pulumi.Input<string>;
|
|
205
206
|
/**
|
|
206
207
|
* Specifies the performance level of an ESSD when you create the ESSD. Valid values:
|
|
208
|
+
* * `PL0`: A single ESSD delivers up to 10,000 random read/write IOPS.
|
|
207
209
|
* * `PL1`: A single ESSD delivers up to 50,000 random read/write IOPS.
|
|
208
210
|
* * `PL2`: A single ESSD delivers up to 100,000 random read/write IOPS.
|
|
209
211
|
* * `PL3`: A single ESSD delivers up to 1,000,000 random read/write IOPS.
|
|
@@ -314,6 +316,7 @@ export interface EcsDiskArgs {
|
|
|
314
316
|
paymentType?: pulumi.Input<string>;
|
|
315
317
|
/**
|
|
316
318
|
* Specifies the performance level of an ESSD when you create the ESSD. Valid values:
|
|
319
|
+
* * `PL0`: A single ESSD delivers up to 10,000 random read/write IOPS.
|
|
317
320
|
* * `PL1`: A single ESSD delivers up to 50,000 random read/write IOPS.
|
|
318
321
|
* * `PL2`: A single ESSD delivers up to 100,000 random read/write IOPS.
|
|
319
322
|
* * `PL3`: A single ESSD delivers up to 1,000,000 random read/write IOPS.
|
package/ecs/ecsDisk.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ecsDisk.js","sourceRoot":"","sources":["../../ecs/ecsDisk.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;GAQG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;IAC9C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoB,EAAE,IAAmC;QAClH,OAAO,IAAI,OAAO,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC9D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,OAAO,CAAC,YAAY,CAAC;IACxD,CAAC;
|
|
1
|
+
{"version":3,"file":"ecsDisk.js","sourceRoot":"","sources":["../../ecs/ecsDisk.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;GAQG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;IAC9C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoB,EAAE,IAAmC;QAClH,OAAO,IAAI,OAAO,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC9D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,OAAO,CAAC,YAAY,CAAC;IACxD,CAAC;IAmHD,YAAY,IAAY,EAAE,WAAwC,EAAE,IAAmC;QACnG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAuC,CAAC;YACtD,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,2BAA2B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,yBAAyB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClG,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/D;aAAM;YACH,MAAM,IAAI,GAAG,WAAsC,CAAC;YACpD,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,2BAA2B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,yBAAyB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChG,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAChD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,OAAO,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC5D,CAAC;;AAzML,0BA0MC;AA5LG,gBAAgB;AACO,oBAAY,GAAG,8BAA8B,CAAC"}
|
package/ecs/instance.d.ts
CHANGED
|
@@ -160,20 +160,6 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
160
160
|
readonly dryRun: pulumi.Output<boolean | undefined>;
|
|
161
161
|
/**
|
|
162
162
|
* Specifies whether to enable the Jumbo Frames feature for the instance. Valid values: `true`, `false`.
|
|
163
|
-
*
|
|
164
|
-
* > **NOTE:** System disk category `cloud` has been outdated and it only can be used none I/O Optimized ECS instances. Recommend `cloudEfficiency` and `cloudSsd` disk.
|
|
165
|
-
*
|
|
166
|
-
* > **NOTE:** From version 1.5.0, instance's charge type can be changed to "PrePaid" by specifying `period` and `periodUnit`, but it is irreversible.
|
|
167
|
-
*
|
|
168
|
-
* > **NOTE:** From version 1.5.0, instance's private IP address can be specified when creating VPC network instance.
|
|
169
|
-
*
|
|
170
|
-
* > **NOTE:** From version 1.5.0, instance's vswitch and private IP can be changed in the same availability zone. When they are changed, the instance will reboot to make the change take effect.
|
|
171
|
-
*
|
|
172
|
-
* > **NOTE:** From version 1.7.0, setting "internetMaxBandwidthOut" larger than 0 can allocate a public IP for an instance.
|
|
173
|
-
* Setting "internetMaxBandwidthOut" to 0 can release allocated public IP for VPC instance(For Classic instnace, its public IP cannot be release once it allocated, even thougth its bandwidth out is 0).
|
|
174
|
-
* However, at present, 'PrePaid' instance cannot narrow its max bandwidth out when its 'internet_charge_type' is "PayByBandwidth".
|
|
175
|
-
*
|
|
176
|
-
* > **NOTE:** From version 1.7.0, instance's type can be changed. When it is changed, the instance will reboot to make the change take effect.
|
|
177
163
|
*/
|
|
178
164
|
readonly enableJumboFrame: pulumi.Output<boolean>;
|
|
179
165
|
/**
|
|
@@ -296,9 +282,19 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
296
282
|
*/
|
|
297
283
|
readonly memory: pulumi.Output<number>;
|
|
298
284
|
/**
|
|
299
|
-
* The
|
|
285
|
+
* The index of the network card for Primary ENI.
|
|
286
|
+
*/
|
|
287
|
+
readonly networkCardIndex: pulumi.Output<number | undefined>;
|
|
288
|
+
/**
|
|
289
|
+
* The ID of the Primary ENI.
|
|
300
290
|
*/
|
|
301
291
|
readonly networkInterfaceId: pulumi.Output<string>;
|
|
292
|
+
/**
|
|
293
|
+
* The communication mode of the Primary ENI. Default value: `Standard`. Valid values:
|
|
294
|
+
* - `Standard`: Uses the TCP communication mode.
|
|
295
|
+
* - `HighPerformance`: Uses the remote direct memory access (RDMA) communication mode with Elastic RDMA Interface (ERI) enabled.
|
|
296
|
+
*/
|
|
297
|
+
readonly networkInterfaceTrafficMode: pulumi.Output<string>;
|
|
302
298
|
/**
|
|
303
299
|
* The list of network interfaces created with instance. See `networkInterfaces` below.
|
|
304
300
|
*/
|
|
@@ -343,6 +339,24 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
343
339
|
* The instance public ip.
|
|
344
340
|
*/
|
|
345
341
|
readonly publicIp: pulumi.Output<string>;
|
|
342
|
+
/**
|
|
343
|
+
* The number of queues supported by the ERI.
|
|
344
|
+
*
|
|
345
|
+
* > **NOTE:** System disk category `cloud` has been outdated and it only can be used none I/O Optimized ECS instances. Recommend `cloudEfficiency` and `cloudSsd` disk.
|
|
346
|
+
*
|
|
347
|
+
* > **NOTE:** From version 1.5.0, instance's charge type can be changed to "PrePaid" by specifying `period` and `periodUnit`, but it is irreversible.
|
|
348
|
+
*
|
|
349
|
+
* > **NOTE:** From version 1.5.0, instance's private IP address can be specified when creating VPC network instance.
|
|
350
|
+
*
|
|
351
|
+
* > **NOTE:** From version 1.5.0, instance's vswitch and private IP can be changed in the same availability zone. When they are changed, the instance will reboot to make the change take effect.
|
|
352
|
+
*
|
|
353
|
+
* > **NOTE:** From version 1.7.0, setting "internetMaxBandwidthOut" larger than 0 can allocate a public IP for an instance.
|
|
354
|
+
* Setting "internetMaxBandwidthOut" to 0 can release allocated public IP for VPC instance(For Classic instnace, its public IP cannot be release once it allocated, even thougth its bandwidth out is 0).
|
|
355
|
+
* However, at present, 'PrePaid' instance cannot narrow its max bandwidth out when its 'internet_charge_type' is "PayByBandwidth".
|
|
356
|
+
*
|
|
357
|
+
* > **NOTE:** From version 1.7.0, instance's type can be changed. When it is changed, the instance will reboot to make the change take effect.
|
|
358
|
+
*/
|
|
359
|
+
readonly queuePairNumber: pulumi.Output<number | undefined>;
|
|
346
360
|
/**
|
|
347
361
|
* Whether to renew an ECS instance automatically or not. It is valid when `instanceChargeType` is `PrePaid`. Default to "Normal". Valid values:
|
|
348
362
|
* - `AutoRenewal`: Enable auto renewal.
|
|
@@ -470,6 +484,10 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
470
484
|
readonly volumeTags: pulumi.Output<{
|
|
471
485
|
[key: string]: any;
|
|
472
486
|
}>;
|
|
487
|
+
/**
|
|
488
|
+
* The ID of the VPC.
|
|
489
|
+
*/
|
|
490
|
+
readonly vpcId: pulumi.Output<string>;
|
|
473
491
|
/**
|
|
474
492
|
* The virtual switch ID to launch in VPC. This parameter must be set unless you can create classic network instances. When it is changed, the instance will reboot to make the change take effect.
|
|
475
493
|
*/
|
|
@@ -551,20 +569,6 @@ export interface InstanceState {
|
|
|
551
569
|
dryRun?: pulumi.Input<boolean>;
|
|
552
570
|
/**
|
|
553
571
|
* Specifies whether to enable the Jumbo Frames feature for the instance. Valid values: `true`, `false`.
|
|
554
|
-
*
|
|
555
|
-
* > **NOTE:** System disk category `cloud` has been outdated and it only can be used none I/O Optimized ECS instances. Recommend `cloudEfficiency` and `cloudSsd` disk.
|
|
556
|
-
*
|
|
557
|
-
* > **NOTE:** From version 1.5.0, instance's charge type can be changed to "PrePaid" by specifying `period` and `periodUnit`, but it is irreversible.
|
|
558
|
-
*
|
|
559
|
-
* > **NOTE:** From version 1.5.0, instance's private IP address can be specified when creating VPC network instance.
|
|
560
|
-
*
|
|
561
|
-
* > **NOTE:** From version 1.5.0, instance's vswitch and private IP can be changed in the same availability zone. When they are changed, the instance will reboot to make the change take effect.
|
|
562
|
-
*
|
|
563
|
-
* > **NOTE:** From version 1.7.0, setting "internetMaxBandwidthOut" larger than 0 can allocate a public IP for an instance.
|
|
564
|
-
* Setting "internetMaxBandwidthOut" to 0 can release allocated public IP for VPC instance(For Classic instnace, its public IP cannot be release once it allocated, even thougth its bandwidth out is 0).
|
|
565
|
-
* However, at present, 'PrePaid' instance cannot narrow its max bandwidth out when its 'internet_charge_type' is "PayByBandwidth".
|
|
566
|
-
*
|
|
567
|
-
* > **NOTE:** From version 1.7.0, instance's type can be changed. When it is changed, the instance will reboot to make the change take effect.
|
|
568
572
|
*/
|
|
569
573
|
enableJumboFrame?: pulumi.Input<boolean>;
|
|
570
574
|
/**
|
|
@@ -687,9 +691,19 @@ export interface InstanceState {
|
|
|
687
691
|
*/
|
|
688
692
|
memory?: pulumi.Input<number>;
|
|
689
693
|
/**
|
|
690
|
-
* The
|
|
694
|
+
* The index of the network card for Primary ENI.
|
|
695
|
+
*/
|
|
696
|
+
networkCardIndex?: pulumi.Input<number>;
|
|
697
|
+
/**
|
|
698
|
+
* The ID of the Primary ENI.
|
|
691
699
|
*/
|
|
692
700
|
networkInterfaceId?: pulumi.Input<string>;
|
|
701
|
+
/**
|
|
702
|
+
* The communication mode of the Primary ENI. Default value: `Standard`. Valid values:
|
|
703
|
+
* - `Standard`: Uses the TCP communication mode.
|
|
704
|
+
* - `HighPerformance`: Uses the remote direct memory access (RDMA) communication mode with Elastic RDMA Interface (ERI) enabled.
|
|
705
|
+
*/
|
|
706
|
+
networkInterfaceTrafficMode?: pulumi.Input<string>;
|
|
693
707
|
/**
|
|
694
708
|
* The list of network interfaces created with instance. See `networkInterfaces` below.
|
|
695
709
|
*/
|
|
@@ -734,6 +748,24 @@ export interface InstanceState {
|
|
|
734
748
|
* The instance public ip.
|
|
735
749
|
*/
|
|
736
750
|
publicIp?: pulumi.Input<string>;
|
|
751
|
+
/**
|
|
752
|
+
* The number of queues supported by the ERI.
|
|
753
|
+
*
|
|
754
|
+
* > **NOTE:** System disk category `cloud` has been outdated and it only can be used none I/O Optimized ECS instances. Recommend `cloudEfficiency` and `cloudSsd` disk.
|
|
755
|
+
*
|
|
756
|
+
* > **NOTE:** From version 1.5.0, instance's charge type can be changed to "PrePaid" by specifying `period` and `periodUnit`, but it is irreversible.
|
|
757
|
+
*
|
|
758
|
+
* > **NOTE:** From version 1.5.0, instance's private IP address can be specified when creating VPC network instance.
|
|
759
|
+
*
|
|
760
|
+
* > **NOTE:** From version 1.5.0, instance's vswitch and private IP can be changed in the same availability zone. When they are changed, the instance will reboot to make the change take effect.
|
|
761
|
+
*
|
|
762
|
+
* > **NOTE:** From version 1.7.0, setting "internetMaxBandwidthOut" larger than 0 can allocate a public IP for an instance.
|
|
763
|
+
* Setting "internetMaxBandwidthOut" to 0 can release allocated public IP for VPC instance(For Classic instnace, its public IP cannot be release once it allocated, even thougth its bandwidth out is 0).
|
|
764
|
+
* However, at present, 'PrePaid' instance cannot narrow its max bandwidth out when its 'internet_charge_type' is "PayByBandwidth".
|
|
765
|
+
*
|
|
766
|
+
* > **NOTE:** From version 1.7.0, instance's type can be changed. When it is changed, the instance will reboot to make the change take effect.
|
|
767
|
+
*/
|
|
768
|
+
queuePairNumber?: pulumi.Input<number>;
|
|
737
769
|
/**
|
|
738
770
|
* Whether to renew an ECS instance automatically or not. It is valid when `instanceChargeType` is `PrePaid`. Default to "Normal". Valid values:
|
|
739
771
|
* - `AutoRenewal`: Enable auto renewal.
|
|
@@ -861,6 +893,10 @@ export interface InstanceState {
|
|
|
861
893
|
volumeTags?: pulumi.Input<{
|
|
862
894
|
[key: string]: any;
|
|
863
895
|
}>;
|
|
896
|
+
/**
|
|
897
|
+
* The ID of the VPC.
|
|
898
|
+
*/
|
|
899
|
+
vpcId?: pulumi.Input<string>;
|
|
864
900
|
/**
|
|
865
901
|
* The virtual switch ID to launch in VPC. This parameter must be set unless you can create classic network instances. When it is changed, the instance will reboot to make the change take effect.
|
|
866
902
|
*/
|
|
@@ -926,20 +962,6 @@ export interface InstanceArgs {
|
|
|
926
962
|
dryRun?: pulumi.Input<boolean>;
|
|
927
963
|
/**
|
|
928
964
|
* Specifies whether to enable the Jumbo Frames feature for the instance. Valid values: `true`, `false`.
|
|
929
|
-
*
|
|
930
|
-
* > **NOTE:** System disk category `cloud` has been outdated and it only can be used none I/O Optimized ECS instances. Recommend `cloudEfficiency` and `cloudSsd` disk.
|
|
931
|
-
*
|
|
932
|
-
* > **NOTE:** From version 1.5.0, instance's charge type can be changed to "PrePaid" by specifying `period` and `periodUnit`, but it is irreversible.
|
|
933
|
-
*
|
|
934
|
-
* > **NOTE:** From version 1.5.0, instance's private IP address can be specified when creating VPC network instance.
|
|
935
|
-
*
|
|
936
|
-
* > **NOTE:** From version 1.5.0, instance's vswitch and private IP can be changed in the same availability zone. When they are changed, the instance will reboot to make the change take effect.
|
|
937
|
-
*
|
|
938
|
-
* > **NOTE:** From version 1.7.0, setting "internetMaxBandwidthOut" larger than 0 can allocate a public IP for an instance.
|
|
939
|
-
* Setting "internetMaxBandwidthOut" to 0 can release allocated public IP for VPC instance(For Classic instnace, its public IP cannot be release once it allocated, even thougth its bandwidth out is 0).
|
|
940
|
-
* However, at present, 'PrePaid' instance cannot narrow its max bandwidth out when its 'internet_charge_type' is "PayByBandwidth".
|
|
941
|
-
*
|
|
942
|
-
* > **NOTE:** From version 1.7.0, instance's type can be changed. When it is changed, the instance will reboot to make the change take effect.
|
|
943
965
|
*/
|
|
944
966
|
enableJumboFrame?: pulumi.Input<boolean>;
|
|
945
967
|
/**
|
|
@@ -1057,6 +1079,16 @@ export interface InstanceArgs {
|
|
|
1057
1079
|
* The time of maintenance. See `maintenanceTime` below.
|
|
1058
1080
|
*/
|
|
1059
1081
|
maintenanceTime?: pulumi.Input<inputs.ecs.InstanceMaintenanceTime>;
|
|
1082
|
+
/**
|
|
1083
|
+
* The index of the network card for Primary ENI.
|
|
1084
|
+
*/
|
|
1085
|
+
networkCardIndex?: pulumi.Input<number>;
|
|
1086
|
+
/**
|
|
1087
|
+
* The communication mode of the Primary ENI. Default value: `Standard`. Valid values:
|
|
1088
|
+
* - `Standard`: Uses the TCP communication mode.
|
|
1089
|
+
* - `HighPerformance`: Uses the remote direct memory access (RDMA) communication mode with Elastic RDMA Interface (ERI) enabled.
|
|
1090
|
+
*/
|
|
1091
|
+
networkInterfaceTrafficMode?: pulumi.Input<string>;
|
|
1060
1092
|
/**
|
|
1061
1093
|
* The list of network interfaces created with instance. See `networkInterfaces` below.
|
|
1062
1094
|
*/
|
|
@@ -1085,6 +1117,24 @@ export interface InstanceArgs {
|
|
|
1085
1117
|
* Instance private IP address can be specified when you creating new instance. It is valid when `vswitchId` is specified. When it is changed, the instance will reboot to make the change take effect.
|
|
1086
1118
|
*/
|
|
1087
1119
|
privateIp?: pulumi.Input<string>;
|
|
1120
|
+
/**
|
|
1121
|
+
* The number of queues supported by the ERI.
|
|
1122
|
+
*
|
|
1123
|
+
* > **NOTE:** System disk category `cloud` has been outdated and it only can be used none I/O Optimized ECS instances. Recommend `cloudEfficiency` and `cloudSsd` disk.
|
|
1124
|
+
*
|
|
1125
|
+
* > **NOTE:** From version 1.5.0, instance's charge type can be changed to "PrePaid" by specifying `period` and `periodUnit`, but it is irreversible.
|
|
1126
|
+
*
|
|
1127
|
+
* > **NOTE:** From version 1.5.0, instance's private IP address can be specified when creating VPC network instance.
|
|
1128
|
+
*
|
|
1129
|
+
* > **NOTE:** From version 1.5.0, instance's vswitch and private IP can be changed in the same availability zone. When they are changed, the instance will reboot to make the change take effect.
|
|
1130
|
+
*
|
|
1131
|
+
* > **NOTE:** From version 1.7.0, setting "internetMaxBandwidthOut" larger than 0 can allocate a public IP for an instance.
|
|
1132
|
+
* Setting "internetMaxBandwidthOut" to 0 can release allocated public IP for VPC instance(For Classic instnace, its public IP cannot be release once it allocated, even thougth its bandwidth out is 0).
|
|
1133
|
+
* However, at present, 'PrePaid' instance cannot narrow its max bandwidth out when its 'internet_charge_type' is "PayByBandwidth".
|
|
1134
|
+
*
|
|
1135
|
+
* > **NOTE:** From version 1.7.0, instance's type can be changed. When it is changed, the instance will reboot to make the change take effect.
|
|
1136
|
+
*/
|
|
1137
|
+
queuePairNumber?: pulumi.Input<number>;
|
|
1088
1138
|
/**
|
|
1089
1139
|
* Whether to renew an ECS instance automatically or not. It is valid when `instanceChargeType` is `PrePaid`. Default to "Normal". Valid values:
|
|
1090
1140
|
* - `AutoRenewal`: Enable auto renewal.
|
|
@@ -1208,6 +1258,10 @@ export interface InstanceArgs {
|
|
|
1208
1258
|
volumeTags?: pulumi.Input<{
|
|
1209
1259
|
[key: string]: any;
|
|
1210
1260
|
}>;
|
|
1261
|
+
/**
|
|
1262
|
+
* The ID of the VPC.
|
|
1263
|
+
*/
|
|
1264
|
+
vpcId?: pulumi.Input<string>;
|
|
1211
1265
|
/**
|
|
1212
1266
|
* The virtual switch ID to launch in VPC. This parameter must be set unless you can create classic network instances. When it is changed, the instance will reboot to make the change take effect.
|
|
1213
1267
|
*/
|