@pulumi/alicloud 3.55.1 → 3.55.2
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/cs/edgeKubernetes.d.ts +13 -7
- package/cs/edgeKubernetes.js.map +1 -1
- package/cs/kubernetes.d.ts +15 -3
- package/cs/kubernetes.js +2 -0
- package/cs/kubernetes.js.map +1 -1
- package/cs/managedKubernetes.d.ts +3 -0
- package/cs/managedKubernetes.js +2 -0
- package/cs/managedKubernetes.js.map +1 -1
- package/ecs/ecsDeploymentSet.d.ts +4 -4
- package/ecs/ecsDeploymentSet.js +1 -1
- package/ecs/eip.d.ts +6 -0
- package/ecs/eip.js +4 -0
- package/ecs/eip.js.map +1 -1
- package/ecs/eipAddress.d.ts +33 -0
- package/ecs/eipAddress.js +4 -0
- package/ecs/eipAddress.js.map +1 -1
- package/ecs/instance.d.ts +57 -48
- package/ecs/instance.js +2 -0
- package/ecs/instance.js.map +1 -1
- package/ess/scalingGroup.d.ts +3 -3
- package/kms/instance.d.ts +59 -35
- package/kms/instance.js +4 -12
- package/kms/instance.js.map +1 -1
- package/message/serviceQueue.d.ts +40 -38
- package/message/serviceQueue.js +13 -17
- package/message/serviceQueue.js.map +1 -1
- package/nas/accessRule.d.ts +17 -8
- package/nas/accessRule.js +17 -8
- package/nas/accessRule.js.map +1 -1
- package/nas/autoSnapshotPolicy.d.ts +36 -13
- package/nas/autoSnapshotPolicy.js +20 -13
- package/nas/autoSnapshotPolicy.js.map +1 -1
- package/package.json +3 -2
- package/privatelink/vpcEndpoint.d.ts +48 -19
- package/privatelink/vpcEndpoint.js +33 -14
- package/privatelink/vpcEndpoint.js.map +1 -1
- package/simpleapplicationserver/snapshot.d.ts +6 -2
- package/simpleapplicationserver/snapshot.js +6 -2
- package/simpleapplicationserver/snapshot.js.map +1 -1
- package/types/input.d.ts +57 -9
- package/types/output.d.ts +57 -9
- package/package.json.bak +0 -26
|
@@ -15,25 +15,42 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
15
15
|
* import * as alicloud from "@pulumi/alicloud";
|
|
16
16
|
*
|
|
17
17
|
* const config = new pulumi.Config();
|
|
18
|
-
* const name = config.get("name") || "
|
|
19
|
-
* const
|
|
20
|
-
*
|
|
21
|
-
*
|
|
22
|
-
*
|
|
23
|
-
* });
|
|
24
|
-
* const exampleNetwork = new alicloud.vpc.Network("example", {
|
|
18
|
+
* const name = config.get("name") || "terraform-example";
|
|
19
|
+
* const default = alicloud.resourcemanager.getResourceGroups({});
|
|
20
|
+
* const defaultbFzA4a = new alicloud.vpc.Network("defaultbFzA4a", {
|
|
21
|
+
* description: "example-terraform",
|
|
22
|
+
* cidrBlock: "172.16.0.0/12",
|
|
25
23
|
* vpcName: name,
|
|
26
|
-
* cidrBlock: "10.0.0.0/8",
|
|
27
24
|
* });
|
|
28
|
-
* const
|
|
25
|
+
* const default1FTFrP = new alicloud.ecs.SecurityGroup("default1FTFrP", {
|
|
26
|
+
* name: name,
|
|
27
|
+
* vpcId: defaultbFzA4a.id,
|
|
28
|
+
* });
|
|
29
|
+
* const defaultjljY5S = new alicloud.ecs.SecurityGroup("defaultjljY5S", {
|
|
29
30
|
* name: name,
|
|
30
|
-
* vpcId:
|
|
31
|
+
* vpcId: defaultbFzA4a.id,
|
|
31
32
|
* });
|
|
32
|
-
* const
|
|
33
|
-
*
|
|
34
|
-
* securityGroupIds: [exampleSecurityGroup.id],
|
|
35
|
-
* vpcId: exampleNetwork.id,
|
|
33
|
+
* const defaultVpcEndpoint = new alicloud.privatelink.VpcEndpoint("default", {
|
|
34
|
+
* endpointDescription: name,
|
|
36
35
|
* vpcEndpointName: name,
|
|
36
|
+
* resourceGroupId: _default.then(_default => _default.ids?.[0]),
|
|
37
|
+
* endpointType: "Interface",
|
|
38
|
+
* vpcId: defaultbFzA4a.id,
|
|
39
|
+
* serviceName: "com.aliyuncs.privatelink.ap-southeast-5.oss",
|
|
40
|
+
* dryRun: false,
|
|
41
|
+
* zonePrivateIpAddressCount: 1,
|
|
42
|
+
* policyDocument: JSON.stringify({
|
|
43
|
+
* Version: "1",
|
|
44
|
+
* Statement: [{
|
|
45
|
+
* Effect: "Allow",
|
|
46
|
+
* Action: ["*"],
|
|
47
|
+
* Resource: ["*"],
|
|
48
|
+
* Principal: "*",
|
|
49
|
+
* }],
|
|
50
|
+
* }),
|
|
51
|
+
* securityGroupIds: [default1FTFrP.id],
|
|
52
|
+
* serviceId: "epsrv-k1apjysze8u1l9t6uyg9",
|
|
53
|
+
* protectedEnabled: false,
|
|
37
54
|
* });
|
|
38
55
|
* ```
|
|
39
56
|
*
|
|
@@ -62,7 +79,7 @@ export declare class VpcEndpoint extends pulumi.CustomResource {
|
|
|
62
79
|
*/
|
|
63
80
|
static isInstance(obj: any): obj is VpcEndpoint;
|
|
64
81
|
/**
|
|
65
|
-
* The bandwidth of the endpoint connection. 1024 to 10240. Unit: Mbit/s.Note: The bandwidth of an endpoint connection is in the range of 100 to 10,240 Mbit/s. The default bandwidth is 1,024 Mbit/s. When the endpoint is connected to the endpoint service, the default bandwidth is the minimum bandwidth. In this case, the connection bandwidth range is 1,024 to 10,240 Mbit/s.
|
|
82
|
+
* The bandwidth of the endpoint connection. 1024 to 10240. Unit: Mbit/s. Note: The bandwidth of an endpoint connection is in the range of 100 to 10,240 Mbit/s. The default bandwidth is 1,024 Mbit/s. When the endpoint is connected to the endpoint service, the default bandwidth is the minimum bandwidth. In this case, the connection bandwidth range is 1,024 to 10,240 Mbit/s.
|
|
66
83
|
*/
|
|
67
84
|
readonly bandwidth: pulumi.Output<number>;
|
|
68
85
|
/**
|
|
@@ -92,9 +109,13 @@ export declare class VpcEndpoint extends pulumi.CustomResource {
|
|
|
92
109
|
*/
|
|
93
110
|
readonly endpointDomain: pulumi.Output<string>;
|
|
94
111
|
/**
|
|
95
|
-
* The endpoint type.Only the value: Interface, indicating the Interface endpoint. You can add the service resource types of Application Load Balancer (ALB), Classic Load Balancer (CLB), and Network Load Balancer (NLB).
|
|
112
|
+
* The endpoint type. Only the value: Interface, indicating the Interface endpoint. You can add the service resource types of Application Load Balancer (ALB), Classic Load Balancer (CLB), and Network Load Balancer (NLB).
|
|
96
113
|
*/
|
|
97
114
|
readonly endpointType: pulumi.Output<string>;
|
|
115
|
+
/**
|
|
116
|
+
* RAM access policies.
|
|
117
|
+
*/
|
|
118
|
+
readonly policyDocument: pulumi.Output<string>;
|
|
98
119
|
/**
|
|
99
120
|
* Specifies whether to enable user authentication. This parameter is available in Security Token Service (STS) mode. Valid values:
|
|
100
121
|
* - **true**: enables user authentication. After user authentication is enabled, only the user who creates the endpoint can modify or delete the endpoint in STS mode.
|
|
@@ -153,7 +174,7 @@ export declare class VpcEndpoint extends pulumi.CustomResource {
|
|
|
153
174
|
*/
|
|
154
175
|
export interface VpcEndpointState {
|
|
155
176
|
/**
|
|
156
|
-
* The bandwidth of the endpoint connection. 1024 to 10240. Unit: Mbit/s.Note: The bandwidth of an endpoint connection is in the range of 100 to 10,240 Mbit/s. The default bandwidth is 1,024 Mbit/s. When the endpoint is connected to the endpoint service, the default bandwidth is the minimum bandwidth. In this case, the connection bandwidth range is 1,024 to 10,240 Mbit/s.
|
|
177
|
+
* The bandwidth of the endpoint connection. 1024 to 10240. Unit: Mbit/s. Note: The bandwidth of an endpoint connection is in the range of 100 to 10,240 Mbit/s. The default bandwidth is 1,024 Mbit/s. When the endpoint is connected to the endpoint service, the default bandwidth is the minimum bandwidth. In this case, the connection bandwidth range is 1,024 to 10,240 Mbit/s.
|
|
157
178
|
*/
|
|
158
179
|
bandwidth?: pulumi.Input<number>;
|
|
159
180
|
/**
|
|
@@ -183,9 +204,13 @@ export interface VpcEndpointState {
|
|
|
183
204
|
*/
|
|
184
205
|
endpointDomain?: pulumi.Input<string>;
|
|
185
206
|
/**
|
|
186
|
-
* The endpoint type.Only the value: Interface, indicating the Interface endpoint. You can add the service resource types of Application Load Balancer (ALB), Classic Load Balancer (CLB), and Network Load Balancer (NLB).
|
|
207
|
+
* The endpoint type. Only the value: Interface, indicating the Interface endpoint. You can add the service resource types of Application Load Balancer (ALB), Classic Load Balancer (CLB), and Network Load Balancer (NLB).
|
|
187
208
|
*/
|
|
188
209
|
endpointType?: pulumi.Input<string>;
|
|
210
|
+
/**
|
|
211
|
+
* RAM access policies.
|
|
212
|
+
*/
|
|
213
|
+
policyDocument?: pulumi.Input<string>;
|
|
189
214
|
/**
|
|
190
215
|
* Specifies whether to enable user authentication. This parameter is available in Security Token Service (STS) mode. Valid values:
|
|
191
216
|
* - **true**: enables user authentication. After user authentication is enabled, only the user who creates the endpoint can modify or delete the endpoint in STS mode.
|
|
@@ -246,9 +271,13 @@ export interface VpcEndpointArgs {
|
|
|
246
271
|
*/
|
|
247
272
|
endpointDescription?: pulumi.Input<string>;
|
|
248
273
|
/**
|
|
249
|
-
* The endpoint type.Only the value: Interface, indicating the Interface endpoint. You can add the service resource types of Application Load Balancer (ALB), Classic Load Balancer (CLB), and Network Load Balancer (NLB).
|
|
274
|
+
* The endpoint type. Only the value: Interface, indicating the Interface endpoint. You can add the service resource types of Application Load Balancer (ALB), Classic Load Balancer (CLB), and Network Load Balancer (NLB).
|
|
250
275
|
*/
|
|
251
276
|
endpointType?: pulumi.Input<string>;
|
|
277
|
+
/**
|
|
278
|
+
* RAM access policies.
|
|
279
|
+
*/
|
|
280
|
+
policyDocument?: pulumi.Input<string>;
|
|
252
281
|
/**
|
|
253
282
|
* Specifies whether to enable user authentication. This parameter is available in Security Token Service (STS) mode. Valid values:
|
|
254
283
|
* - **true**: enables user authentication. After user authentication is enabled, only the user who creates the endpoint can modify or delete the endpoint in STS mode.
|
|
@@ -21,25 +21,42 @@ const utilities = require("../utilities");
|
|
|
21
21
|
* import * as alicloud from "@pulumi/alicloud";
|
|
22
22
|
*
|
|
23
23
|
* const config = new pulumi.Config();
|
|
24
|
-
* const name = config.get("name") || "
|
|
25
|
-
* const
|
|
26
|
-
*
|
|
27
|
-
*
|
|
28
|
-
*
|
|
29
|
-
* });
|
|
30
|
-
* const exampleNetwork = new alicloud.vpc.Network("example", {
|
|
24
|
+
* const name = config.get("name") || "terraform-example";
|
|
25
|
+
* const default = alicloud.resourcemanager.getResourceGroups({});
|
|
26
|
+
* const defaultbFzA4a = new alicloud.vpc.Network("defaultbFzA4a", {
|
|
27
|
+
* description: "example-terraform",
|
|
28
|
+
* cidrBlock: "172.16.0.0/12",
|
|
31
29
|
* vpcName: name,
|
|
32
|
-
* cidrBlock: "10.0.0.0/8",
|
|
33
30
|
* });
|
|
34
|
-
* const
|
|
31
|
+
* const default1FTFrP = new alicloud.ecs.SecurityGroup("default1FTFrP", {
|
|
32
|
+
* name: name,
|
|
33
|
+
* vpcId: defaultbFzA4a.id,
|
|
34
|
+
* });
|
|
35
|
+
* const defaultjljY5S = new alicloud.ecs.SecurityGroup("defaultjljY5S", {
|
|
35
36
|
* name: name,
|
|
36
|
-
* vpcId:
|
|
37
|
+
* vpcId: defaultbFzA4a.id,
|
|
37
38
|
* });
|
|
38
|
-
* const
|
|
39
|
-
*
|
|
40
|
-
* securityGroupIds: [exampleSecurityGroup.id],
|
|
41
|
-
* vpcId: exampleNetwork.id,
|
|
39
|
+
* const defaultVpcEndpoint = new alicloud.privatelink.VpcEndpoint("default", {
|
|
40
|
+
* endpointDescription: name,
|
|
42
41
|
* vpcEndpointName: name,
|
|
42
|
+
* resourceGroupId: _default.then(_default => _default.ids?.[0]),
|
|
43
|
+
* endpointType: "Interface",
|
|
44
|
+
* vpcId: defaultbFzA4a.id,
|
|
45
|
+
* serviceName: "com.aliyuncs.privatelink.ap-southeast-5.oss",
|
|
46
|
+
* dryRun: false,
|
|
47
|
+
* zonePrivateIpAddressCount: 1,
|
|
48
|
+
* policyDocument: JSON.stringify({
|
|
49
|
+
* Version: "1",
|
|
50
|
+
* Statement: [{
|
|
51
|
+
* Effect: "Allow",
|
|
52
|
+
* Action: ["*"],
|
|
53
|
+
* Resource: ["*"],
|
|
54
|
+
* Principal: "*",
|
|
55
|
+
* }],
|
|
56
|
+
* }),
|
|
57
|
+
* securityGroupIds: [default1FTFrP.id],
|
|
58
|
+
* serviceId: "epsrv-k1apjysze8u1l9t6uyg9",
|
|
59
|
+
* protectedEnabled: false,
|
|
43
60
|
* });
|
|
44
61
|
* ```
|
|
45
62
|
*
|
|
@@ -87,6 +104,7 @@ class VpcEndpoint extends pulumi.CustomResource {
|
|
|
87
104
|
resourceInputs["endpointDescription"] = state ? state.endpointDescription : undefined;
|
|
88
105
|
resourceInputs["endpointDomain"] = state ? state.endpointDomain : undefined;
|
|
89
106
|
resourceInputs["endpointType"] = state ? state.endpointType : undefined;
|
|
107
|
+
resourceInputs["policyDocument"] = state ? state.policyDocument : undefined;
|
|
90
108
|
resourceInputs["protectedEnabled"] = state ? state.protectedEnabled : undefined;
|
|
91
109
|
resourceInputs["resourceGroupId"] = state ? state.resourceGroupId : undefined;
|
|
92
110
|
resourceInputs["securityGroupIds"] = state ? state.securityGroupIds : undefined;
|
|
@@ -109,6 +127,7 @@ class VpcEndpoint extends pulumi.CustomResource {
|
|
|
109
127
|
resourceInputs["dryRun"] = args ? args.dryRun : undefined;
|
|
110
128
|
resourceInputs["endpointDescription"] = args ? args.endpointDescription : undefined;
|
|
111
129
|
resourceInputs["endpointType"] = args ? args.endpointType : undefined;
|
|
130
|
+
resourceInputs["policyDocument"] = args ? args.policyDocument : undefined;
|
|
112
131
|
resourceInputs["protectedEnabled"] = args ? args.protectedEnabled : undefined;
|
|
113
132
|
resourceInputs["resourceGroupId"] = args ? args.resourceGroupId : undefined;
|
|
114
133
|
resourceInputs["securityGroupIds"] = args ? args.securityGroupIds : undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vpcEndpoint.js","sourceRoot":"","sources":["../../privatelink/vpcEndpoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"vpcEndpoint.js","sourceRoot":"","sources":["../../privatelink/vpcEndpoint.ts"],"names":[],"mappings":"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"}
|
|
@@ -16,8 +16,12 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
16
16
|
*
|
|
17
17
|
* const config = new pulumi.Config();
|
|
18
18
|
* const name = config.get("name") || "tf_example";
|
|
19
|
-
* const default = alicloud.simpleapplicationserver.getImages({
|
|
20
|
-
*
|
|
19
|
+
* const default = alicloud.simpleapplicationserver.getImages({
|
|
20
|
+
* platform: "Linux",
|
|
21
|
+
* });
|
|
22
|
+
* const defaultGetServerPlans = alicloud.simpleapplicationserver.getServerPlans({
|
|
23
|
+
* platform: "Linux",
|
|
24
|
+
* });
|
|
21
25
|
* const defaultInstance = new alicloud.simpleapplicationserver.Instance("default", {
|
|
22
26
|
* paymentType: "Subscription",
|
|
23
27
|
* planId: defaultGetServerPlans.then(defaultGetServerPlans => defaultGetServerPlans.plans?.[0]?.id),
|
|
@@ -22,8 +22,12 @@ const utilities = require("../utilities");
|
|
|
22
22
|
*
|
|
23
23
|
* const config = new pulumi.Config();
|
|
24
24
|
* const name = config.get("name") || "tf_example";
|
|
25
|
-
* const default = alicloud.simpleapplicationserver.getImages({
|
|
26
|
-
*
|
|
25
|
+
* const default = alicloud.simpleapplicationserver.getImages({
|
|
26
|
+
* platform: "Linux",
|
|
27
|
+
* });
|
|
28
|
+
* const defaultGetServerPlans = alicloud.simpleapplicationserver.getServerPlans({
|
|
29
|
+
* platform: "Linux",
|
|
30
|
+
* });
|
|
27
31
|
* const defaultInstance = new alicloud.simpleapplicationserver.Instance("default", {
|
|
28
32
|
* paymentType: "Subscription",
|
|
29
33
|
* planId: defaultGetServerPlans.then(defaultGetServerPlans => defaultGetServerPlans.plans?.[0]?.id),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"snapshot.js","sourceRoot":"","sources":["../../simpleapplicationserver/snapshot.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"snapshot.js","sourceRoot":"","sources":["../../simpleapplicationserver/snapshot.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+CG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,cAAc;IAC/C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqB,EAAE,IAAmC;QACnH,OAAO,IAAI,QAAQ,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC/D,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,QAAQ,CAAC,YAAY,CAAC;IACzD,CAAC;IAuBD,YAAY,IAAY,EAAE,WAA0C,EAAE,IAAmC;QACrG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAwC,CAAC;YACvD,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,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/D;aAAM;YACH,MAAM,IAAI,GAAG,WAAuC,CAAC;YACrD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnD,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,YAAY,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzD,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;YACD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,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,QAAQ,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC7D,CAAC;;AAvEL,4BAwEC;AA1DG,gBAAgB;AACO,qBAAY,GAAG,oDAAoD,CAAC"}
|
package/types/input.d.ts
CHANGED
|
@@ -2889,13 +2889,11 @@ export declare namespace cs {
|
|
|
2889
2889
|
}
|
|
2890
2890
|
interface EdgeKubernetesCertificateAuthority {
|
|
2891
2891
|
/**
|
|
2892
|
-
* The
|
|
2892
|
+
* The path of client certificate, like `~/.kube/client-cert.pem`.
|
|
2893
2893
|
*/
|
|
2894
2894
|
clientCert?: pulumi.Input<string>;
|
|
2895
2895
|
/**
|
|
2896
|
-
* The
|
|
2897
|
-
*
|
|
2898
|
-
* *Network params*
|
|
2896
|
+
* The path of client key, like `~/.kube/client-key.pem`.
|
|
2899
2897
|
*/
|
|
2900
2898
|
clientKey?: pulumi.Input<string>;
|
|
2901
2899
|
/**
|
|
@@ -2933,11 +2931,20 @@ export declare namespace cs {
|
|
|
2933
2931
|
}
|
|
2934
2932
|
interface EdgeKubernetesRuntime {
|
|
2935
2933
|
/**
|
|
2936
|
-
* The
|
|
2934
|
+
* The name of the runtime. Supported runtimes can be queried by data source alicloud_cs_kubernetes_version.
|
|
2937
2935
|
*/
|
|
2938
2936
|
name?: pulumi.Input<string>;
|
|
2939
2937
|
/**
|
|
2940
|
-
*
|
|
2938
|
+
* The version of the runtime.
|
|
2939
|
+
*
|
|
2940
|
+
* The following example is the definition of runtime block:
|
|
2941
|
+
*
|
|
2942
|
+
* ```
|
|
2943
|
+
* runtime = {
|
|
2944
|
+
* name = "containerd"
|
|
2945
|
+
* version = "1.6.28"
|
|
2946
|
+
* }
|
|
2947
|
+
* ```
|
|
2941
2948
|
*/
|
|
2942
2949
|
version?: pulumi.Input<string>;
|
|
2943
2950
|
}
|
|
@@ -3070,6 +3077,16 @@ export declare namespace cs {
|
|
|
3070
3077
|
*/
|
|
3071
3078
|
serviceDomain?: pulumi.Input<string>;
|
|
3072
3079
|
}
|
|
3080
|
+
interface KubernetesDeleteOption {
|
|
3081
|
+
/**
|
|
3082
|
+
* The deletion mode of the cluster. Different resources may have different default behavior, see `resourceType` for details. Valid values:
|
|
3083
|
+
*/
|
|
3084
|
+
deleteMode?: pulumi.Input<string>;
|
|
3085
|
+
/**
|
|
3086
|
+
* The type of resources that are created by cluster. Valid values:
|
|
3087
|
+
*/
|
|
3088
|
+
resourceType?: pulumi.Input<string>;
|
|
3089
|
+
}
|
|
3073
3090
|
interface KubernetesMasterNode {
|
|
3074
3091
|
/**
|
|
3075
3092
|
* ID of the node.
|
|
@@ -3112,11 +3129,20 @@ export declare namespace cs {
|
|
|
3112
3129
|
}
|
|
3113
3130
|
interface KubernetesRuntime {
|
|
3114
3131
|
/**
|
|
3115
|
-
* The
|
|
3132
|
+
* The name of the runtime. Supported runtimes can be queried by data source alicloud_cs_kubernetes_version.
|
|
3116
3133
|
*/
|
|
3117
3134
|
name?: pulumi.Input<string>;
|
|
3118
3135
|
/**
|
|
3119
|
-
*
|
|
3136
|
+
* The version of the runtime.
|
|
3137
|
+
*
|
|
3138
|
+
* The following example is the definition of runtime block:
|
|
3139
|
+
*
|
|
3140
|
+
* ```
|
|
3141
|
+
* runtime = {
|
|
3142
|
+
* name = "containerd"
|
|
3143
|
+
* version = "1.6.28"
|
|
3144
|
+
* }
|
|
3145
|
+
* ```
|
|
3120
3146
|
*/
|
|
3121
3147
|
version?: pulumi.Input<string>;
|
|
3122
3148
|
}
|
|
@@ -3180,6 +3206,16 @@ export declare namespace cs {
|
|
|
3180
3206
|
*/
|
|
3181
3207
|
serviceDomain?: pulumi.Input<string>;
|
|
3182
3208
|
}
|
|
3209
|
+
interface ManagedKubernetesDeleteOption {
|
|
3210
|
+
/**
|
|
3211
|
+
* The deletion mode of the cluster. Different resources may have different default behavior, see `resourceType` for details. Valid values:
|
|
3212
|
+
*/
|
|
3213
|
+
deleteMode?: pulumi.Input<string>;
|
|
3214
|
+
/**
|
|
3215
|
+
* The type of resources that are created by cluster. Valid values:
|
|
3216
|
+
*/
|
|
3217
|
+
resourceType?: pulumi.Input<string>;
|
|
3218
|
+
}
|
|
3183
3219
|
interface ManagedKubernetesMaintenanceWindow {
|
|
3184
3220
|
/**
|
|
3185
3221
|
* The maintenance time, values range from 1 to 24,unit is hour. For example: "3h".
|
|
@@ -4991,6 +5027,18 @@ export declare namespace ecs {
|
|
|
4991
5027
|
* The ID of the secondary ENI.
|
|
4992
5028
|
*/
|
|
4993
5029
|
networkInterfaceId?: pulumi.Input<string>;
|
|
5030
|
+
/**
|
|
5031
|
+
* The communication mode of the ENI. Default value: `Standard`. Valid values:
|
|
5032
|
+
*/
|
|
5033
|
+
networkInterfaceTrafficMode?: pulumi.Input<string>;
|
|
5034
|
+
/**
|
|
5035
|
+
* The ID of security group N to which to assign ENI N.
|
|
5036
|
+
*/
|
|
5037
|
+
securityGroupIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
5038
|
+
/**
|
|
5039
|
+
* The ID of the vSwitch to which to connect ENI N.
|
|
5040
|
+
*/
|
|
5041
|
+
vswitchId?: pulumi.Input<string>;
|
|
4994
5042
|
}
|
|
4995
5043
|
interface LaunchTemplateDataDisk {
|
|
4996
5044
|
/**
|
|
@@ -5942,7 +5990,7 @@ export declare namespace ess {
|
|
|
5942
5990
|
*/
|
|
5943
5991
|
autoSnapshotPolicyId?: pulumi.Input<string>;
|
|
5944
5992
|
/**
|
|
5945
|
-
* Category of data disk. The parameter value options are `ephemeralSsd`, `cloudEfficiency`, `cloudSsd` and `cloud`.
|
|
5993
|
+
* Category of data disk. The parameter value options are `ephemeralSsd`, `cloudEfficiency`, `cloudSsd` , `cloudEssd` and `cloud`.
|
|
5946
5994
|
*/
|
|
5947
5995
|
category?: pulumi.Input<string>;
|
|
5948
5996
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -11480,13 +11480,11 @@ export declare namespace cs {
|
|
|
11480
11480
|
}
|
|
11481
11481
|
interface EdgeKubernetesCertificateAuthority {
|
|
11482
11482
|
/**
|
|
11483
|
-
* The
|
|
11483
|
+
* The path of client certificate, like `~/.kube/client-cert.pem`.
|
|
11484
11484
|
*/
|
|
11485
11485
|
clientCert: string;
|
|
11486
11486
|
/**
|
|
11487
|
-
* The
|
|
11488
|
-
*
|
|
11489
|
-
* *Network params*
|
|
11487
|
+
* The path of client key, like `~/.kube/client-key.pem`.
|
|
11490
11488
|
*/
|
|
11491
11489
|
clientKey: string;
|
|
11492
11490
|
/**
|
|
@@ -11524,11 +11522,20 @@ export declare namespace cs {
|
|
|
11524
11522
|
}
|
|
11525
11523
|
interface EdgeKubernetesRuntime {
|
|
11526
11524
|
/**
|
|
11527
|
-
* The
|
|
11525
|
+
* The name of the runtime. Supported runtimes can be queried by data source alicloud_cs_kubernetes_version.
|
|
11528
11526
|
*/
|
|
11529
11527
|
name?: string;
|
|
11530
11528
|
/**
|
|
11531
|
-
*
|
|
11529
|
+
* The version of the runtime.
|
|
11530
|
+
*
|
|
11531
|
+
* The following example is the definition of runtime block:
|
|
11532
|
+
*
|
|
11533
|
+
* ```
|
|
11534
|
+
* runtime = {
|
|
11535
|
+
* name = "containerd"
|
|
11536
|
+
* version = "1.6.28"
|
|
11537
|
+
* }
|
|
11538
|
+
* ```
|
|
11532
11539
|
*/
|
|
11533
11540
|
version?: string;
|
|
11534
11541
|
}
|
|
@@ -12325,6 +12332,16 @@ export declare namespace cs {
|
|
|
12325
12332
|
*/
|
|
12326
12333
|
serviceDomain: string;
|
|
12327
12334
|
}
|
|
12335
|
+
interface KubernetesDeleteOption {
|
|
12336
|
+
/**
|
|
12337
|
+
* The deletion mode of the cluster. Different resources may have different default behavior, see `resourceType` for details. Valid values:
|
|
12338
|
+
*/
|
|
12339
|
+
deleteMode?: string;
|
|
12340
|
+
/**
|
|
12341
|
+
* The type of resources that are created by cluster. Valid values:
|
|
12342
|
+
*/
|
|
12343
|
+
resourceType?: string;
|
|
12344
|
+
}
|
|
12328
12345
|
interface KubernetesMasterNode {
|
|
12329
12346
|
/**
|
|
12330
12347
|
* ID of the node.
|
|
@@ -12367,11 +12384,20 @@ export declare namespace cs {
|
|
|
12367
12384
|
}
|
|
12368
12385
|
interface KubernetesRuntime {
|
|
12369
12386
|
/**
|
|
12370
|
-
* The
|
|
12387
|
+
* The name of the runtime. Supported runtimes can be queried by data source alicloud_cs_kubernetes_version.
|
|
12371
12388
|
*/
|
|
12372
12389
|
name?: string;
|
|
12373
12390
|
/**
|
|
12374
|
-
*
|
|
12391
|
+
* The version of the runtime.
|
|
12392
|
+
*
|
|
12393
|
+
* The following example is the definition of runtime block:
|
|
12394
|
+
*
|
|
12395
|
+
* ```
|
|
12396
|
+
* runtime = {
|
|
12397
|
+
* name = "containerd"
|
|
12398
|
+
* version = "1.6.28"
|
|
12399
|
+
* }
|
|
12400
|
+
* ```
|
|
12375
12401
|
*/
|
|
12376
12402
|
version?: string;
|
|
12377
12403
|
}
|
|
@@ -12435,6 +12461,16 @@ export declare namespace cs {
|
|
|
12435
12461
|
*/
|
|
12436
12462
|
serviceDomain: string;
|
|
12437
12463
|
}
|
|
12464
|
+
interface ManagedKubernetesDeleteOption {
|
|
12465
|
+
/**
|
|
12466
|
+
* The deletion mode of the cluster. Different resources may have different default behavior, see `resourceType` for details. Valid values:
|
|
12467
|
+
*/
|
|
12468
|
+
deleteMode?: string;
|
|
12469
|
+
/**
|
|
12470
|
+
* The type of resources that are created by cluster. Valid values:
|
|
12471
|
+
*/
|
|
12472
|
+
resourceType?: string;
|
|
12473
|
+
}
|
|
12438
12474
|
interface ManagedKubernetesMaintenanceWindow {
|
|
12439
12475
|
/**
|
|
12440
12476
|
* The maintenance time, values range from 1 to 24,unit is hour. For example: "3h".
|
|
@@ -20865,6 +20901,18 @@ export declare namespace ecs {
|
|
|
20865
20901
|
* The ID of the secondary ENI.
|
|
20866
20902
|
*/
|
|
20867
20903
|
networkInterfaceId: string;
|
|
20904
|
+
/**
|
|
20905
|
+
* The communication mode of the ENI. Default value: `Standard`. Valid values:
|
|
20906
|
+
*/
|
|
20907
|
+
networkInterfaceTrafficMode: string;
|
|
20908
|
+
/**
|
|
20909
|
+
* The ID of security group N to which to assign ENI N.
|
|
20910
|
+
*/
|
|
20911
|
+
securityGroupIds: string[];
|
|
20912
|
+
/**
|
|
20913
|
+
* The ID of the vSwitch to which to connect ENI N.
|
|
20914
|
+
*/
|
|
20915
|
+
vswitchId: string;
|
|
20868
20916
|
}
|
|
20869
20917
|
interface LaunchTemplateDataDisk {
|
|
20870
20918
|
/**
|
|
@@ -24391,7 +24439,7 @@ export declare namespace ess {
|
|
|
24391
24439
|
*/
|
|
24392
24440
|
autoSnapshotPolicyId?: string;
|
|
24393
24441
|
/**
|
|
24394
|
-
* Category of data disk. The parameter value options are `ephemeralSsd`, `cloudEfficiency`, `cloudSsd` and `cloud`.
|
|
24442
|
+
* Category of data disk. The parameter value options are `ephemeralSsd`, `cloudEfficiency`, `cloudSsd` , `cloudEssd` and `cloud`.
|
|
24395
24443
|
*/
|
|
24396
24444
|
category?: string;
|
|
24397
24445
|
/**
|
package/package.json.bak
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@pulumi/alicloud",
|
|
3
|
-
"version": "${VERSION}",
|
|
4
|
-
"description": "A Pulumi package for creating and managing AliCloud resources.",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"pulumi",
|
|
7
|
-
"alicloud"
|
|
8
|
-
],
|
|
9
|
-
"homepage": "https://pulumi.io",
|
|
10
|
-
"repository": "https://github.com/pulumi/pulumi-alicloud",
|
|
11
|
-
"license": "Apache-2.0",
|
|
12
|
-
"scripts": {
|
|
13
|
-
"build": "tsc"
|
|
14
|
-
},
|
|
15
|
-
"dependencies": {
|
|
16
|
-
"@pulumi/pulumi": "^3.0.0"
|
|
17
|
-
},
|
|
18
|
-
"devDependencies": {
|
|
19
|
-
"@types/node": "^10.0.0",
|
|
20
|
-
"typescript": "^4.3.5"
|
|
21
|
-
},
|
|
22
|
-
"pulumi": {
|
|
23
|
-
"resource": true,
|
|
24
|
-
"name": "alicloud"
|
|
25
|
-
}
|
|
26
|
-
}
|