@volcengine/pulumi 0.0.34 → 0.0.35
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/autoscaling/scalingGroup.d.ts +24 -0
- package/autoscaling/scalingGroup.js +4 -0
- package/autoscaling/scalingGroup.js.map +1 -1
- package/config/vars.d.ts +4 -0
- package/config/vars.js +6 -0
- package/config/vars.js.map +1 -1
- package/ecs/command.d.ts +65 -18
- package/ecs/command.js +10 -15
- package/ecs/command.js.map +1 -1
- package/ecs/commands.d.ts +26 -1
- package/ecs/commands.js +2 -0
- package/ecs/commands.js.map +1 -1
- package/ecs/getCommands.d.ts +26 -1
- package/ecs/getCommands.js +2 -0
- package/ecs/getCommands.js.map +1 -1
- package/ecs/getInvocations.d.ts +25 -0
- package/ecs/getInvocations.js +2 -0
- package/ecs/getInvocations.js.map +1 -1
- package/ecs/instance.d.ts +20 -0
- package/ecs/instance.js +4 -0
- package/ecs/instance.js.map +1 -1
- package/ecs/invocation.d.ts +53 -6
- package/ecs/invocation.js +15 -0
- package/ecs/invocation.js.map +1 -1
- package/ecs/invocations.d.ts +25 -0
- package/ecs/invocations.js +2 -0
- package/ecs/invocations.js.map +1 -1
- package/kafka/instance.d.ts +12 -0
- package/kafka/instance.js +2 -0
- package/kafka/instance.js.map +1 -1
- package/package.json +1 -1
- package/provider.d.ts +4 -0
- package/provider.js +1 -0
- package/provider.js.map +1 -1
- package/redis/getParameterGroups.d.ts +22 -0
- package/redis/getParameterGroups.js +22 -0
- package/redis/getParameterGroups.js.map +1 -1
- package/redis/parameterGroups.d.ts +22 -0
- package/redis/parameterGroups.js +22 -0
- package/redis/parameterGroups.js.map +1 -1
- package/tos/bucketCors.d.ts +120 -0
- package/tos/bucketCors.js +115 -0
- package/tos/bucketCors.js.map +1 -0
- package/tos/bucketEncryption.d.ts +105 -0
- package/tos/bucketEncryption.js +100 -0
- package/tos/bucketEncryption.js.map +1 -0
- package/tos/bucketNotification.d.ts +166 -0
- package/tos/bucketNotification.js +155 -0
- package/tos/bucketNotification.js.map +1 -0
- package/tos/index.d.ts +9 -0
- package/tos/index.js +16 -1
- package/tos/index.js.map +1 -1
- package/types/input.d.ts +258 -0
- package/types/output.d.ts +450 -0
- package/vke/node.d.ts +12 -0
- package/vke/node.js +2 -0
- package/vke/node.js.map +1 -1
- package/vpc/networkInterface.d.ts +27 -7
- package/vpc/networkInterface.js +27 -7
- package/vpc/networkInterface.js.map +1 -1
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.BucketNotification = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides a resource to manage tos bucket notification
|
|
10
|
+
* ## Example Usage
|
|
11
|
+
*
|
|
12
|
+
* ```typescript
|
|
13
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
14
|
+
* import * as volcengine from "@volcengine/pulumi";
|
|
15
|
+
*
|
|
16
|
+
* const fooBucket = new volcengine.tos.Bucket("fooBucket", {
|
|
17
|
+
* bucketName: "tf-acc-test-bucket",
|
|
18
|
+
* publicAcl: "private",
|
|
19
|
+
* azRedundancy: "multi-az",
|
|
20
|
+
* projectName: "default",
|
|
21
|
+
* tags: [{
|
|
22
|
+
* key: "k1",
|
|
23
|
+
* value: "v1",
|
|
24
|
+
* }],
|
|
25
|
+
* });
|
|
26
|
+
* const fooBucketNotification = new volcengine.tos.BucketNotification("fooBucketNotification", {
|
|
27
|
+
* bucketName: fooBucket.id,
|
|
28
|
+
* rules: {
|
|
29
|
+
* ruleId: "acc-test-rule",
|
|
30
|
+
* events: [
|
|
31
|
+
* "tos:ObjectCreated:Put",
|
|
32
|
+
* "tos:ObjectCreated:Post",
|
|
33
|
+
* ],
|
|
34
|
+
* destination: {
|
|
35
|
+
* veFaas: [
|
|
36
|
+
* {
|
|
37
|
+
* functionId: "80w95pns",
|
|
38
|
+
* },
|
|
39
|
+
* {
|
|
40
|
+
* functionId: "crnrfajj",
|
|
41
|
+
* },
|
|
42
|
+
* ],
|
|
43
|
+
* },
|
|
44
|
+
* filter: {
|
|
45
|
+
* tosKey: {
|
|
46
|
+
* filterRules: [
|
|
47
|
+
* {
|
|
48
|
+
* name: "prefix",
|
|
49
|
+
* value: "a",
|
|
50
|
+
* },
|
|
51
|
+
* {
|
|
52
|
+
* name: "suffix",
|
|
53
|
+
* value: "b",
|
|
54
|
+
* },
|
|
55
|
+
* ],
|
|
56
|
+
* },
|
|
57
|
+
* },
|
|
58
|
+
* },
|
|
59
|
+
* });
|
|
60
|
+
* const foo1 = new volcengine.tos.BucketNotification("foo1", {
|
|
61
|
+
* bucketName: fooBucket.id,
|
|
62
|
+
* rules: {
|
|
63
|
+
* ruleId: "acc-test-rule-1",
|
|
64
|
+
* events: [
|
|
65
|
+
* "tos:ObjectRemoved:Delete",
|
|
66
|
+
* "tos:ObjectRemoved:DeleteMarkerCreated",
|
|
67
|
+
* ],
|
|
68
|
+
* destination: {
|
|
69
|
+
* veFaas: [
|
|
70
|
+
* {
|
|
71
|
+
* functionId: "80w95pns",
|
|
72
|
+
* },
|
|
73
|
+
* {
|
|
74
|
+
* functionId: "crnrfajj",
|
|
75
|
+
* },
|
|
76
|
+
* ],
|
|
77
|
+
* },
|
|
78
|
+
* filter: {
|
|
79
|
+
* tosKey: {
|
|
80
|
+
* filterRules: [
|
|
81
|
+
* {
|
|
82
|
+
* name: "prefix",
|
|
83
|
+
* value: "aaa",
|
|
84
|
+
* },
|
|
85
|
+
* {
|
|
86
|
+
* name: "suffix",
|
|
87
|
+
* value: "bbb",
|
|
88
|
+
* },
|
|
89
|
+
* ],
|
|
90
|
+
* },
|
|
91
|
+
* },
|
|
92
|
+
* },
|
|
93
|
+
* });
|
|
94
|
+
* ```
|
|
95
|
+
*
|
|
96
|
+
* ## Import
|
|
97
|
+
*
|
|
98
|
+
* TosBucketNotification can be imported using the bucketName, e.g.
|
|
99
|
+
*
|
|
100
|
+
* ```sh
|
|
101
|
+
* $ pulumi import volcengine:tos/bucketNotification:BucketNotification default resource_id
|
|
102
|
+
* ```
|
|
103
|
+
*/
|
|
104
|
+
class BucketNotification extends pulumi.CustomResource {
|
|
105
|
+
/**
|
|
106
|
+
* Get an existing BucketNotification resource's state with the given name, ID, and optional extra
|
|
107
|
+
* properties used to qualify the lookup.
|
|
108
|
+
*
|
|
109
|
+
* @param name The _unique_ name of the resulting resource.
|
|
110
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
111
|
+
* @param state Any extra arguments used during the lookup.
|
|
112
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
113
|
+
*/
|
|
114
|
+
static get(name, id, state, opts) {
|
|
115
|
+
return new BucketNotification(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
116
|
+
}
|
|
117
|
+
/**
|
|
118
|
+
* Returns true if the given object is an instance of BucketNotification. This is designed to work even
|
|
119
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
120
|
+
*/
|
|
121
|
+
static isInstance(obj) {
|
|
122
|
+
if (obj === undefined || obj === null) {
|
|
123
|
+
return false;
|
|
124
|
+
}
|
|
125
|
+
return obj['__pulumiType'] === BucketNotification.__pulumiType;
|
|
126
|
+
}
|
|
127
|
+
constructor(name, argsOrState, opts) {
|
|
128
|
+
let resourceInputs = {};
|
|
129
|
+
opts = opts || {};
|
|
130
|
+
if (opts.id) {
|
|
131
|
+
const state = argsOrState;
|
|
132
|
+
resourceInputs["bucketName"] = state ? state.bucketName : undefined;
|
|
133
|
+
resourceInputs["rules"] = state ? state.rules : undefined;
|
|
134
|
+
resourceInputs["version"] = state ? state.version : undefined;
|
|
135
|
+
}
|
|
136
|
+
else {
|
|
137
|
+
const args = argsOrState;
|
|
138
|
+
if ((!args || args.bucketName === undefined) && !opts.urn) {
|
|
139
|
+
throw new Error("Missing required property 'bucketName'");
|
|
140
|
+
}
|
|
141
|
+
if ((!args || args.rules === undefined) && !opts.urn) {
|
|
142
|
+
throw new Error("Missing required property 'rules'");
|
|
143
|
+
}
|
|
144
|
+
resourceInputs["bucketName"] = args ? args.bucketName : undefined;
|
|
145
|
+
resourceInputs["rules"] = args ? args.rules : undefined;
|
|
146
|
+
resourceInputs["version"] = undefined /*out*/;
|
|
147
|
+
}
|
|
148
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
149
|
+
super(BucketNotification.__pulumiType, name, resourceInputs, opts);
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
exports.BucketNotification = BucketNotification;
|
|
153
|
+
/** @internal */
|
|
154
|
+
BucketNotification.__pulumiType = 'volcengine:tos/bucketNotification:BucketNotification';
|
|
155
|
+
//# sourceMappingURL=bucketNotification.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bucketNotification.js","sourceRoot":"","sources":["../../tos/bucketNotification.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+FG;AACH,MAAa,kBAAmB,SAAQ,MAAM,CAAC,cAAc;IACzD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA+B,EAAE,IAAmC;QAC7H,OAAO,IAAI,kBAAkB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACzE,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,kBAAkB,CAAC,YAAY,CAAC;IACnE,CAAC;IAuBD,YAAY,IAAY,EAAE,WAA8D,EAAE,IAAmC;QACzH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAkD,CAAC;YACjE,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;aAAM;YACH,MAAM,IAAI,GAAG,WAAiD,CAAC;YAC/D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,UAAU,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvD,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,KAAK,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAClD,MAAM,IAAI,KAAK,CAAC,mCAAmC,CAAC,CAAC;aACxD;YACD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACjD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,kBAAkB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACvE,CAAC;;AAvEL,gDAwEC;AA1DG,gBAAgB;AACO,+BAAY,GAAG,sDAAsD,CAAC"}
|
package/tos/index.d.ts
CHANGED
|
@@ -1,12 +1,21 @@
|
|
|
1
1
|
export { BucketArgs, BucketState } from "./bucket";
|
|
2
2
|
export type Bucket = import("./bucket").Bucket;
|
|
3
3
|
export declare const Bucket: typeof import("./bucket").Bucket;
|
|
4
|
+
export { BucketCorsArgs, BucketCorsState } from "./bucketCors";
|
|
5
|
+
export type BucketCors = import("./bucketCors").BucketCors;
|
|
6
|
+
export declare const BucketCors: typeof import("./bucketCors").BucketCors;
|
|
7
|
+
export { BucketEncryptionArgs, BucketEncryptionState } from "./bucketEncryption";
|
|
8
|
+
export type BucketEncryption = import("./bucketEncryption").BucketEncryption;
|
|
9
|
+
export declare const BucketEncryption: typeof import("./bucketEncryption").BucketEncryption;
|
|
4
10
|
export { BucketInventoriesArgs, BucketInventoriesResult, BucketInventoriesOutputArgs } from "./bucketInventories";
|
|
5
11
|
export declare const bucketInventories: typeof import("./bucketInventories").bucketInventories;
|
|
6
12
|
export declare const bucketInventoriesOutput: typeof import("./bucketInventories").bucketInventoriesOutput;
|
|
7
13
|
export { BucketInventoryArgs, BucketInventoryState } from "./bucketInventory";
|
|
8
14
|
export type BucketInventory = import("./bucketInventory").BucketInventory;
|
|
9
15
|
export declare const BucketInventory: typeof import("./bucketInventory").BucketInventory;
|
|
16
|
+
export { BucketNotificationArgs, BucketNotificationState } from "./bucketNotification";
|
|
17
|
+
export type BucketNotification = import("./bucketNotification").BucketNotification;
|
|
18
|
+
export declare const BucketNotification: typeof import("./bucketNotification").BucketNotification;
|
|
10
19
|
export { BucketObjectArgs, BucketObjectState } from "./bucketObject";
|
|
11
20
|
export type BucketObject = import("./bucketObject").BucketObject;
|
|
12
21
|
export declare const BucketObject: typeof import("./bucketObject").BucketObject;
|
package/tos/index.js
CHANGED
|
@@ -2,16 +2,22 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.getBucketsOutput = exports.getBuckets = exports.getBucketObjectsOutput = exports.getBucketObjects = exports.getBucketInventoriesOutput = exports.getBucketInventories = exports.bucketsOutput = exports.buckets = exports.BucketRealtimeLog = exports.BucketPolicy = exports.bucketObjectsOutput = exports.bucketObjects = exports.BucketObject = exports.BucketInventory = exports.bucketInventoriesOutput = exports.bucketInventories = exports.Bucket = void 0;
|
|
5
|
+
exports.getBucketsOutput = exports.getBuckets = exports.getBucketObjectsOutput = exports.getBucketObjects = exports.getBucketInventoriesOutput = exports.getBucketInventories = exports.bucketsOutput = exports.buckets = exports.BucketRealtimeLog = exports.BucketPolicy = exports.bucketObjectsOutput = exports.bucketObjects = exports.BucketObject = exports.BucketNotification = exports.BucketInventory = exports.bucketInventoriesOutput = exports.bucketInventories = exports.BucketEncryption = exports.BucketCors = exports.Bucket = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
exports.Bucket = null;
|
|
9
9
|
utilities.lazyLoad(exports, ["Bucket"], () => require("./bucket"));
|
|
10
|
+
exports.BucketCors = null;
|
|
11
|
+
utilities.lazyLoad(exports, ["BucketCors"], () => require("./bucketCors"));
|
|
12
|
+
exports.BucketEncryption = null;
|
|
13
|
+
utilities.lazyLoad(exports, ["BucketEncryption"], () => require("./bucketEncryption"));
|
|
10
14
|
exports.bucketInventories = null;
|
|
11
15
|
exports.bucketInventoriesOutput = null;
|
|
12
16
|
utilities.lazyLoad(exports, ["bucketInventories", "bucketInventoriesOutput"], () => require("./bucketInventories"));
|
|
13
17
|
exports.BucketInventory = null;
|
|
14
18
|
utilities.lazyLoad(exports, ["BucketInventory"], () => require("./bucketInventory"));
|
|
19
|
+
exports.BucketNotification = null;
|
|
20
|
+
utilities.lazyLoad(exports, ["BucketNotification"], () => require("./bucketNotification"));
|
|
15
21
|
exports.BucketObject = null;
|
|
16
22
|
utilities.lazyLoad(exports, ["BucketObject"], () => require("./bucketObject"));
|
|
17
23
|
exports.bucketObjects = null;
|
|
@@ -39,8 +45,14 @@ const _module = {
|
|
|
39
45
|
switch (type) {
|
|
40
46
|
case "volcengine:tos/bucket:Bucket":
|
|
41
47
|
return new exports.Bucket(name, undefined, { urn });
|
|
48
|
+
case "volcengine:tos/bucketCors:BucketCors":
|
|
49
|
+
return new exports.BucketCors(name, undefined, { urn });
|
|
50
|
+
case "volcengine:tos/bucketEncryption:BucketEncryption":
|
|
51
|
+
return new exports.BucketEncryption(name, undefined, { urn });
|
|
42
52
|
case "volcengine:tos/bucketInventory:BucketInventory":
|
|
43
53
|
return new exports.BucketInventory(name, undefined, { urn });
|
|
54
|
+
case "volcengine:tos/bucketNotification:BucketNotification":
|
|
55
|
+
return new exports.BucketNotification(name, undefined, { urn });
|
|
44
56
|
case "volcengine:tos/bucketObject:BucketObject":
|
|
45
57
|
return new exports.BucketObject(name, undefined, { urn });
|
|
46
58
|
case "volcengine:tos/bucketPolicy:BucketPolicy":
|
|
@@ -53,7 +65,10 @@ const _module = {
|
|
|
53
65
|
},
|
|
54
66
|
};
|
|
55
67
|
pulumi.runtime.registerResourceModule("volcengine", "tos/bucket", _module);
|
|
68
|
+
pulumi.runtime.registerResourceModule("volcengine", "tos/bucketCors", _module);
|
|
69
|
+
pulumi.runtime.registerResourceModule("volcengine", "tos/bucketEncryption", _module);
|
|
56
70
|
pulumi.runtime.registerResourceModule("volcengine", "tos/bucketInventory", _module);
|
|
71
|
+
pulumi.runtime.registerResourceModule("volcengine", "tos/bucketNotification", _module);
|
|
57
72
|
pulumi.runtime.registerResourceModule("volcengine", "tos/bucketObject", _module);
|
|
58
73
|
pulumi.runtime.registerResourceModule("volcengine", "tos/bucketPolicy", _module);
|
|
59
74
|
pulumi.runtime.registerResourceModule("volcengine", "tos/bucketRealtimeLog", _module);
|
package/tos/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../tos/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,MAAM,GAAqC,IAAW,CAAC;AACpE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../tos/index.ts"],"names":[],"mappings":"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"}
|
package/types/input.d.ts
CHANGED
|
@@ -2328,6 +2328,94 @@ export declare namespace ebs {
|
|
|
2328
2328
|
}
|
|
2329
2329
|
}
|
|
2330
2330
|
export declare namespace ecs {
|
|
2331
|
+
interface CommandParameterDefinition {
|
|
2332
|
+
/**
|
|
2333
|
+
* The decimal precision of the custom parameter. This field is required when the parameter type is `Digit`.
|
|
2334
|
+
*/
|
|
2335
|
+
decimalPrecision?: pulumi.Input<number>;
|
|
2336
|
+
/**
|
|
2337
|
+
* The default value of the custom parameter.
|
|
2338
|
+
*/
|
|
2339
|
+
defaultValue?: pulumi.Input<string>;
|
|
2340
|
+
/**
|
|
2341
|
+
* The maximum length of the custom parameter. This field is required when the parameter type is `String`.
|
|
2342
|
+
*/
|
|
2343
|
+
maxLength?: pulumi.Input<number>;
|
|
2344
|
+
/**
|
|
2345
|
+
* The maximum value of the custom parameter. This field is required when the parameter type is `Digit`.
|
|
2346
|
+
*/
|
|
2347
|
+
maxValue?: pulumi.Input<string>;
|
|
2348
|
+
/**
|
|
2349
|
+
* The minimum length of the custom parameter. This field is required when the parameter type is `String`.
|
|
2350
|
+
*/
|
|
2351
|
+
minLength?: pulumi.Input<number>;
|
|
2352
|
+
/**
|
|
2353
|
+
* The minimum value of the custom parameter. This field is required when the parameter type is `Digit`.
|
|
2354
|
+
*/
|
|
2355
|
+
minValue?: pulumi.Input<string>;
|
|
2356
|
+
/**
|
|
2357
|
+
* The name of the custom parameter.
|
|
2358
|
+
*/
|
|
2359
|
+
name: pulumi.Input<string>;
|
|
2360
|
+
/**
|
|
2361
|
+
* Whether the custom parameter is required.
|
|
2362
|
+
*/
|
|
2363
|
+
required?: pulumi.Input<boolean>;
|
|
2364
|
+
/**
|
|
2365
|
+
* The type of the custom parameter. Valid values: `String`, `Digit`.
|
|
2366
|
+
*/
|
|
2367
|
+
type: pulumi.Input<string>;
|
|
2368
|
+
}
|
|
2369
|
+
interface CommandTag {
|
|
2370
|
+
/**
|
|
2371
|
+
* The Key of Tags.
|
|
2372
|
+
*/
|
|
2373
|
+
key: pulumi.Input<string>;
|
|
2374
|
+
/**
|
|
2375
|
+
* The Value of Tags.
|
|
2376
|
+
*/
|
|
2377
|
+
value: pulumi.Input<string>;
|
|
2378
|
+
}
|
|
2379
|
+
interface CommandsTag {
|
|
2380
|
+
/**
|
|
2381
|
+
* The Key of Tags.
|
|
2382
|
+
*/
|
|
2383
|
+
key: string;
|
|
2384
|
+
/**
|
|
2385
|
+
* The Value of Tags.
|
|
2386
|
+
*/
|
|
2387
|
+
value: string;
|
|
2388
|
+
}
|
|
2389
|
+
interface CommandsTagArgs {
|
|
2390
|
+
/**
|
|
2391
|
+
* The Key of Tags.
|
|
2392
|
+
*/
|
|
2393
|
+
key: pulumi.Input<string>;
|
|
2394
|
+
/**
|
|
2395
|
+
* The Value of Tags.
|
|
2396
|
+
*/
|
|
2397
|
+
value: pulumi.Input<string>;
|
|
2398
|
+
}
|
|
2399
|
+
interface GetCommandsTag {
|
|
2400
|
+
/**
|
|
2401
|
+
* The Key of Tags.
|
|
2402
|
+
*/
|
|
2403
|
+
key: string;
|
|
2404
|
+
/**
|
|
2405
|
+
* The Value of Tags.
|
|
2406
|
+
*/
|
|
2407
|
+
value: string;
|
|
2408
|
+
}
|
|
2409
|
+
interface GetCommandsTagArgs {
|
|
2410
|
+
/**
|
|
2411
|
+
* The Key of Tags.
|
|
2412
|
+
*/
|
|
2413
|
+
key: pulumi.Input<string>;
|
|
2414
|
+
/**
|
|
2415
|
+
* The Value of Tags.
|
|
2416
|
+
*/
|
|
2417
|
+
value: pulumi.Input<string>;
|
|
2418
|
+
}
|
|
2331
2419
|
interface GetImagesTag {
|
|
2332
2420
|
/**
|
|
2333
2421
|
* The Key of Tags.
|
|
@@ -2368,6 +2456,26 @@ export declare namespace ecs {
|
|
|
2368
2456
|
*/
|
|
2369
2457
|
value: pulumi.Input<string>;
|
|
2370
2458
|
}
|
|
2459
|
+
interface GetInvocationsTag {
|
|
2460
|
+
/**
|
|
2461
|
+
* The Key of Tags.
|
|
2462
|
+
*/
|
|
2463
|
+
key: string;
|
|
2464
|
+
/**
|
|
2465
|
+
* The Value of Tags.
|
|
2466
|
+
*/
|
|
2467
|
+
value: string;
|
|
2468
|
+
}
|
|
2469
|
+
interface GetInvocationsTagArgs {
|
|
2470
|
+
/**
|
|
2471
|
+
* The Key of Tags.
|
|
2472
|
+
*/
|
|
2473
|
+
key: pulumi.Input<string>;
|
|
2474
|
+
/**
|
|
2475
|
+
* The Value of Tags.
|
|
2476
|
+
*/
|
|
2477
|
+
value: pulumi.Input<string>;
|
|
2478
|
+
}
|
|
2371
2479
|
interface ImageImportTag {
|
|
2372
2480
|
/**
|
|
2373
2481
|
* The Key of Tags.
|
|
@@ -2512,6 +2620,46 @@ export declare namespace ecs {
|
|
|
2512
2620
|
*/
|
|
2513
2621
|
value: pulumi.Input<string>;
|
|
2514
2622
|
}
|
|
2623
|
+
interface InvocationParameter {
|
|
2624
|
+
/**
|
|
2625
|
+
* The name of the parameter.
|
|
2626
|
+
*/
|
|
2627
|
+
name: pulumi.Input<string>;
|
|
2628
|
+
/**
|
|
2629
|
+
* The value of the parameter.
|
|
2630
|
+
*/
|
|
2631
|
+
value: pulumi.Input<string>;
|
|
2632
|
+
}
|
|
2633
|
+
interface InvocationTag {
|
|
2634
|
+
/**
|
|
2635
|
+
* The Key of Tags.
|
|
2636
|
+
*/
|
|
2637
|
+
key: pulumi.Input<string>;
|
|
2638
|
+
/**
|
|
2639
|
+
* The Value of Tags.
|
|
2640
|
+
*/
|
|
2641
|
+
value: pulumi.Input<string>;
|
|
2642
|
+
}
|
|
2643
|
+
interface InvocationsTag {
|
|
2644
|
+
/**
|
|
2645
|
+
* The Key of Tags.
|
|
2646
|
+
*/
|
|
2647
|
+
key: string;
|
|
2648
|
+
/**
|
|
2649
|
+
* The Value of Tags.
|
|
2650
|
+
*/
|
|
2651
|
+
value: string;
|
|
2652
|
+
}
|
|
2653
|
+
interface InvocationsTagArgs {
|
|
2654
|
+
/**
|
|
2655
|
+
* The Key of Tags.
|
|
2656
|
+
*/
|
|
2657
|
+
key: pulumi.Input<string>;
|
|
2658
|
+
/**
|
|
2659
|
+
* The Value of Tags.
|
|
2660
|
+
*/
|
|
2661
|
+
value: pulumi.Input<string>;
|
|
2662
|
+
}
|
|
2515
2663
|
interface LaunchTemplateNetworkInterface {
|
|
2516
2664
|
/**
|
|
2517
2665
|
* The security group ID associated with the NIC.
|
|
@@ -5763,6 +5911,52 @@ export declare namespace tos {
|
|
|
5763
5911
|
*/
|
|
5764
5912
|
permission: pulumi.Input<string>;
|
|
5765
5913
|
}
|
|
5914
|
+
interface BucketCorsCorsRule {
|
|
5915
|
+
/**
|
|
5916
|
+
* The list of headers that are allowed in a preflight request.
|
|
5917
|
+
*/
|
|
5918
|
+
allowedHeaders?: pulumi.Input<pulumi.Input<string>[]>;
|
|
5919
|
+
/**
|
|
5920
|
+
* The list of HTTP methods that are allowed in a preflight request. Valid values: `PUT`, `POST`, `DELETE`, `GET`, `HEAD`.
|
|
5921
|
+
*/
|
|
5922
|
+
allowedMethods: pulumi.Input<pulumi.Input<string>[]>;
|
|
5923
|
+
/**
|
|
5924
|
+
* The list of origins that are allowed to make requests to the bucket.
|
|
5925
|
+
*/
|
|
5926
|
+
allowedOrigins: pulumi.Input<pulumi.Input<string>[]>;
|
|
5927
|
+
/**
|
|
5928
|
+
* The list of headers that are exposed in the response to a preflight request. It is recommended to add two expose headers, X-Tos-Request-Id and ETag.
|
|
5929
|
+
*/
|
|
5930
|
+
exposeHeaders?: pulumi.Input<pulumi.Input<string>[]>;
|
|
5931
|
+
/**
|
|
5932
|
+
* The maximum amount of time that a preflight request can be cached. Unit: second. Default value: 3600.
|
|
5933
|
+
*/
|
|
5934
|
+
maxAgeSeconds?: pulumi.Input<number>;
|
|
5935
|
+
/**
|
|
5936
|
+
* Indicates whether the bucket returns the 'Vary: Origin' header in the response to preflight requests. Default value: false.
|
|
5937
|
+
*/
|
|
5938
|
+
responseVary?: pulumi.Input<boolean>;
|
|
5939
|
+
}
|
|
5940
|
+
interface BucketEncryptionRule {
|
|
5941
|
+
/**
|
|
5942
|
+
* The server side encryption configuration.
|
|
5943
|
+
*/
|
|
5944
|
+
applyServerSideEncryptionByDefault: pulumi.Input<inputs.tos.BucketEncryptionRuleApplyServerSideEncryptionByDefault>;
|
|
5945
|
+
}
|
|
5946
|
+
interface BucketEncryptionRuleApplyServerSideEncryptionByDefault {
|
|
5947
|
+
/**
|
|
5948
|
+
* The kms data encryption. Valid values: `AES256`, `SM4`. Default is `AES256`.
|
|
5949
|
+
*/
|
|
5950
|
+
kmsDataEncryption?: pulumi.Input<string>;
|
|
5951
|
+
/**
|
|
5952
|
+
* The kms master key id. This field is required when `sseAlgorithm` is `kms`. The format is `trn:kms:<region>:<accountID>:keyrings/<keyring>/keys/<key>`.
|
|
5953
|
+
*/
|
|
5954
|
+
kmsMasterKeyId?: pulumi.Input<string>;
|
|
5955
|
+
/**
|
|
5956
|
+
* The server side encryption algorithm. Valid values: `kms`, `AES256`, `SM4`.
|
|
5957
|
+
*/
|
|
5958
|
+
sseAlgorithm: pulumi.Input<string>;
|
|
5959
|
+
}
|
|
5766
5960
|
interface BucketInventoryDestination {
|
|
5767
5961
|
/**
|
|
5768
5962
|
* The destination tos bucket information of the bucket inventory.
|
|
@@ -5809,6 +6003,58 @@ export declare namespace tos {
|
|
|
5809
6003
|
*/
|
|
5810
6004
|
frequency: pulumi.Input<string>;
|
|
5811
6005
|
}
|
|
6006
|
+
interface BucketNotificationRules {
|
|
6007
|
+
/**
|
|
6008
|
+
* The destination info of the notification.
|
|
6009
|
+
*/
|
|
6010
|
+
destination: pulumi.Input<inputs.tos.BucketNotificationRulesDestination>;
|
|
6011
|
+
/**
|
|
6012
|
+
* The event type of the notification.
|
|
6013
|
+
*/
|
|
6014
|
+
events: pulumi.Input<pulumi.Input<string>[]>;
|
|
6015
|
+
/**
|
|
6016
|
+
* The filter of the notification.
|
|
6017
|
+
*/
|
|
6018
|
+
filter?: pulumi.Input<inputs.tos.BucketNotificationRulesFilter>;
|
|
6019
|
+
/**
|
|
6020
|
+
* The rule name of the notification.
|
|
6021
|
+
*/
|
|
6022
|
+
ruleId: pulumi.Input<string>;
|
|
6023
|
+
}
|
|
6024
|
+
interface BucketNotificationRulesDestination {
|
|
6025
|
+
/**
|
|
6026
|
+
* The VeFaas info of the destination.
|
|
6027
|
+
*/
|
|
6028
|
+
veFaas?: pulumi.Input<pulumi.Input<inputs.tos.BucketNotificationRulesDestinationVeFaa>[]>;
|
|
6029
|
+
}
|
|
6030
|
+
interface BucketNotificationRulesDestinationVeFaa {
|
|
6031
|
+
/**
|
|
6032
|
+
* The function id of the destination.
|
|
6033
|
+
*/
|
|
6034
|
+
functionId: pulumi.Input<string>;
|
|
6035
|
+
}
|
|
6036
|
+
interface BucketNotificationRulesFilter {
|
|
6037
|
+
/**
|
|
6038
|
+
* The tos filter of the notification.
|
|
6039
|
+
*/
|
|
6040
|
+
tosKey?: pulumi.Input<inputs.tos.BucketNotificationRulesFilterTosKey>;
|
|
6041
|
+
}
|
|
6042
|
+
interface BucketNotificationRulesFilterTosKey {
|
|
6043
|
+
/**
|
|
6044
|
+
* The filter rules of the notification.
|
|
6045
|
+
*/
|
|
6046
|
+
filterRules?: pulumi.Input<pulumi.Input<inputs.tos.BucketNotificationRulesFilterTosKeyFilterRule>[]>;
|
|
6047
|
+
}
|
|
6048
|
+
interface BucketNotificationRulesFilterTosKeyFilterRule {
|
|
6049
|
+
/**
|
|
6050
|
+
* The name of the filter rule. Valid values: `prefix`, `suffix`.
|
|
6051
|
+
*/
|
|
6052
|
+
name?: pulumi.Input<string>;
|
|
6053
|
+
/**
|
|
6054
|
+
* The value of the filter rule.
|
|
6055
|
+
*/
|
|
6056
|
+
value?: pulumi.Input<string>;
|
|
6057
|
+
}
|
|
5812
6058
|
interface BucketObjectAccountAcl {
|
|
5813
6059
|
/**
|
|
5814
6060
|
* The accountId to control.
|
|
@@ -7672,6 +7918,10 @@ export declare namespace vke {
|
|
|
7672
7918
|
* The NamePrefix of NodeConfig.
|
|
7673
7919
|
*/
|
|
7674
7920
|
namePrefix?: pulumi.Input<string>;
|
|
7921
|
+
/**
|
|
7922
|
+
* The PreScript of NodeConfig.
|
|
7923
|
+
*/
|
|
7924
|
+
preScript?: pulumi.Input<string>;
|
|
7675
7925
|
/**
|
|
7676
7926
|
* The Security of NodeConfig.
|
|
7677
7927
|
*/
|
|
@@ -7806,6 +8056,10 @@ export declare namespace vke {
|
|
|
7806
8056
|
* The NamePrefix of NodeConfig.
|
|
7807
8057
|
*/
|
|
7808
8058
|
namePrefix?: pulumi.Input<string>;
|
|
8059
|
+
/**
|
|
8060
|
+
* The PreScript of NodeConfig.
|
|
8061
|
+
*/
|
|
8062
|
+
preScript?: pulumi.Input<string>;
|
|
7809
8063
|
/**
|
|
7810
8064
|
* The Security of NodeConfig.
|
|
7811
8065
|
*/
|
|
@@ -8158,6 +8412,10 @@ export declare namespace vke {
|
|
|
8158
8412
|
* The Period of PrePaid instance of NodeConfig. Valid values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 24, 36. Unit: month. when InstanceChargeType is PrePaid, default value is 12.
|
|
8159
8413
|
*/
|
|
8160
8414
|
period?: pulumi.Input<number>;
|
|
8415
|
+
/**
|
|
8416
|
+
* The PreScript of NodeConfig.
|
|
8417
|
+
*/
|
|
8418
|
+
preScript?: pulumi.Input<string>;
|
|
8161
8419
|
/**
|
|
8162
8420
|
* The project name of the ecs instance.
|
|
8163
8421
|
*/
|