@volcengine/pulumi-volcenginecc 0.0.38 → 0.0.40
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/README.md +8 -1
- package/cloudmonitor/contactGroup.d.ts +106 -0
- package/cloudmonitor/contactGroup.js +73 -0
- package/cloudmonitor/contactGroup.js.map +1 -0
- package/cloudmonitor/getContactGroup.d.ts +65 -0
- package/cloudmonitor/getContactGroup.js +28 -0
- package/cloudmonitor/getContactGroup.js.map +1 -0
- package/cloudmonitor/getContactGroups.d.ts +22 -0
- package/cloudmonitor/getContactGroups.js +24 -0
- package/cloudmonitor/getContactGroups.js.map +1 -0
- package/cloudmonitor/index.d.ts +9 -0
- package/cloudmonitor/index.js +12 -1
- package/cloudmonitor/index.js.map +1 -1
- package/config/vars.d.ts +5 -0
- package/config/vars.js +7 -0
- package/config/vars.js.map +1 -1
- package/iam/getRole.d.ts +10 -0
- package/iam/getRole.js.map +1 -1
- package/iam/role.d.ts +18 -34
- package/iam/role.js +3 -36
- package/iam/role.js.map +1 -1
- package/id/getService.d.ts +109 -0
- package/id/getService.js +28 -0
- package/id/getService.js.map +1 -0
- package/id/getServices.d.ts +22 -0
- package/id/getServices.js +24 -0
- package/id/getServices.js.map +1 -0
- package/id/index.d.ts +9 -0
- package/id/index.js +28 -0
- package/id/index.js.map +1 -0
- package/id/service.d.ts +209 -0
- package/id/service.js +101 -0
- package/id/service.js.map +1 -0
- package/index.d.ts +2 -1
- package/index.js +4 -1
- package/index.js.map +1 -1
- package/kms/getKey.d.ts +24 -0
- package/kms/getKey.js.map +1 -1
- package/kms/key.d.ts +72 -0
- package/kms/key.js +12 -0
- package/kms/key.js.map +1 -1
- package/package.json +1 -1
- package/provider.d.ts +10 -0
- package/provider.js +2 -1
- package/provider.js.map +1 -1
- package/rdspostgresql/getParameterTemplate.d.ts +89 -0
- package/rdspostgresql/getParameterTemplate.js +28 -0
- package/rdspostgresql/getParameterTemplate.js.map +1 -0
- package/rdspostgresql/getParameterTemplates.d.ts +22 -0
- package/rdspostgresql/getParameterTemplates.js +24 -0
- package/rdspostgresql/getParameterTemplates.js.map +1 -0
- package/rdspostgresql/index.d.ts +9 -0
- package/rdspostgresql/index.js +12 -1
- package/rdspostgresql/index.js.map +1 -1
- package/rdspostgresql/parameterTemplate.d.ts +186 -0
- package/rdspostgresql/parameterTemplate.js +118 -0
- package/rdspostgresql/parameterTemplate.js.map +1 -0
- package/redis/getInstance.d.ts +9 -5
- package/redis/getInstance.js.map +1 -1
- package/redis/instance.d.ts +25 -13
- package/redis/instance.js +2 -0
- package/redis/instance.js.map +1 -1
- package/types/input.d.ts +268 -0
- package/types/output.d.ts +616 -0
package/kms/getKey.d.ts
CHANGED
|
@@ -17,6 +17,18 @@ export interface GetKeyArgs {
|
|
|
17
17
|
* A collection of values returned by getKey.
|
|
18
18
|
*/
|
|
19
19
|
export interface GetKeyResult {
|
|
20
|
+
/**
|
|
21
|
+
* Asymmetric encryption action parameters and results. AsymmetricEncrypt can be triggered during the Create/Update phase; the result is only guaranteed to be returned in the current response.
|
|
22
|
+
*/
|
|
23
|
+
readonly asymmetricCiphertext: outputs.kms.GetKeyAsymmetricCiphertext;
|
|
24
|
+
/**
|
|
25
|
+
* Asymmetric signature action parameters and results. AsymmetricSign can be triggered during the Create/Update phase; the result is only guaranteed to be returned in the current response.
|
|
26
|
+
*/
|
|
27
|
+
readonly asymmetricSignature: outputs.kms.GetKeyAsymmetricSignature;
|
|
28
|
+
/**
|
|
29
|
+
* Symmetric encryption action parameters and results. Encrypt can be triggered during the Create/Update phase; the result is only guaranteed to be returned in the current response.
|
|
30
|
+
*/
|
|
31
|
+
readonly ciphertext: outputs.kms.GetKeyCiphertext;
|
|
20
32
|
/**
|
|
21
33
|
* Key creation time.
|
|
22
34
|
*/
|
|
@@ -49,6 +61,10 @@ export interface GetKeyResult {
|
|
|
49
61
|
* Master key name. Length 2–31 characters. Valid characters: [a-zA-Z0-9-_].
|
|
50
62
|
*/
|
|
51
63
|
readonly keyName: string;
|
|
64
|
+
/**
|
|
65
|
+
* Primary region of the multi-region key. Set the target primary region during the Create/Update phase; the current primary region is returned during the Read phase.
|
|
66
|
+
*/
|
|
67
|
+
readonly keyPrimaryRegion: string;
|
|
52
68
|
/**
|
|
53
69
|
* User master key rotation operation (enter 1 to enable, 2 to disable).
|
|
54
70
|
*/
|
|
@@ -89,6 +105,14 @@ export interface GetKeyResult {
|
|
|
89
105
|
* Key protection level. Options: SOFTWARE, HSM.
|
|
90
106
|
*/
|
|
91
107
|
readonly protectionLevel: string;
|
|
108
|
+
/**
|
|
109
|
+
* Re-encryption action parameters and results. ReEncrypt can be triggered during the Create/Update phase; the result is only guaranteed to be returned in the current response.
|
|
110
|
+
*/
|
|
111
|
+
readonly reEncrypt: outputs.kms.GetKeyReEncrypt;
|
|
112
|
+
/**
|
|
113
|
+
* Replicate key action parameters and results. ReplicateKey can be triggered during the Create/Update phase; the result is only guaranteed to be returned in the current response.
|
|
114
|
+
*/
|
|
115
|
+
readonly replicateKey: outputs.kms.GetKeyReplicateKey;
|
|
92
116
|
/**
|
|
93
117
|
* Key rotation period (days). Range: [90, 2560].
|
|
94
118
|
*/
|
package/kms/getKey.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getKey.js","sourceRoot":"","sources":["../../kms/getKey.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,MAAM,CAAC,IAAgB,EAAE,IAA2B;IAChE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gCAAgC,EAAE;QAC3D,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,wBAKC;
|
|
1
|
+
{"version":3,"file":"getKey.js","sourceRoot":"","sources":["../../kms/getKey.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,MAAM,CAAC,IAAgB,EAAE,IAA2B;IAChE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gCAAgC,EAAE;QAC3D,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,wBAKC;AA6ID;;GAEG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAAiC;IAClF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,gCAAgC,EAAE;QACjE,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,oCAKC"}
|
package/kms/key.d.ts
CHANGED
|
@@ -26,6 +26,18 @@ export declare class Key extends pulumi.CustomResource {
|
|
|
26
26
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
27
27
|
*/
|
|
28
28
|
static isInstance(obj: any): obj is Key;
|
|
29
|
+
/**
|
|
30
|
+
* Asymmetric encryption action parameters and results. AsymmetricEncrypt can be triggered during the Create/Update phase; the result is only guaranteed to be returned in the current response.
|
|
31
|
+
*/
|
|
32
|
+
readonly asymmetricCiphertext: pulumi.Output<outputs.kms.KeyAsymmetricCiphertext>;
|
|
33
|
+
/**
|
|
34
|
+
* Asymmetric signature action parameters and results. AsymmetricSign can be triggered during the Create/Update phase; the result is only guaranteed to be returned in the current response.
|
|
35
|
+
*/
|
|
36
|
+
readonly asymmetricSignature: pulumi.Output<outputs.kms.KeyAsymmetricSignature>;
|
|
37
|
+
/**
|
|
38
|
+
* Symmetric encryption action parameters and results. Encrypt can be triggered during the Create/Update phase; the result is only guaranteed to be returned in the current response.
|
|
39
|
+
*/
|
|
40
|
+
readonly ciphertext: pulumi.Output<outputs.kms.KeyCiphertext>;
|
|
29
41
|
/**
|
|
30
42
|
* Key creation time.
|
|
31
43
|
*/
|
|
@@ -54,6 +66,10 @@ export declare class Key extends pulumi.CustomResource {
|
|
|
54
66
|
* Master key name. Length 2–31 characters. Valid characters: [a-zA-Z0-9-_].
|
|
55
67
|
*/
|
|
56
68
|
readonly keyName: pulumi.Output<string>;
|
|
69
|
+
/**
|
|
70
|
+
* Primary region of the multi-region key. Set the target primary region during the Create/Update phase; the current primary region is returned during the Read phase.
|
|
71
|
+
*/
|
|
72
|
+
readonly keyPrimaryRegion: pulumi.Output<string>;
|
|
57
73
|
/**
|
|
58
74
|
* User master key rotation operation (enter 1 to enable, 2 to disable).
|
|
59
75
|
*/
|
|
@@ -94,6 +110,14 @@ export declare class Key extends pulumi.CustomResource {
|
|
|
94
110
|
* Key protection level. Options: SOFTWARE, HSM.
|
|
95
111
|
*/
|
|
96
112
|
readonly protectionLevel: pulumi.Output<string>;
|
|
113
|
+
/**
|
|
114
|
+
* Re-encryption action parameters and results. ReEncrypt can be triggered during the Create/Update phase; the result is only guaranteed to be returned in the current response.
|
|
115
|
+
*/
|
|
116
|
+
readonly reEncrypt: pulumi.Output<outputs.kms.KeyReEncrypt>;
|
|
117
|
+
/**
|
|
118
|
+
* Replicate key action parameters and results. ReplicateKey can be triggered during the Create/Update phase; the result is only guaranteed to be returned in the current response.
|
|
119
|
+
*/
|
|
120
|
+
readonly replicateKey: pulumi.Output<outputs.kms.KeyReplicateKey>;
|
|
97
121
|
/**
|
|
98
122
|
* Key rotation period (days). Range: [90, 2560].
|
|
99
123
|
*/
|
|
@@ -132,6 +156,18 @@ export declare class Key extends pulumi.CustomResource {
|
|
|
132
156
|
* Input properties used for looking up and filtering Key resources.
|
|
133
157
|
*/
|
|
134
158
|
export interface KeyState {
|
|
159
|
+
/**
|
|
160
|
+
* Asymmetric encryption action parameters and results. AsymmetricEncrypt can be triggered during the Create/Update phase; the result is only guaranteed to be returned in the current response.
|
|
161
|
+
*/
|
|
162
|
+
asymmetricCiphertext?: pulumi.Input<inputs.kms.KeyAsymmetricCiphertext>;
|
|
163
|
+
/**
|
|
164
|
+
* Asymmetric signature action parameters and results. AsymmetricSign can be triggered during the Create/Update phase; the result is only guaranteed to be returned in the current response.
|
|
165
|
+
*/
|
|
166
|
+
asymmetricSignature?: pulumi.Input<inputs.kms.KeyAsymmetricSignature>;
|
|
167
|
+
/**
|
|
168
|
+
* Symmetric encryption action parameters and results. Encrypt can be triggered during the Create/Update phase; the result is only guaranteed to be returned in the current response.
|
|
169
|
+
*/
|
|
170
|
+
ciphertext?: pulumi.Input<inputs.kms.KeyCiphertext>;
|
|
135
171
|
/**
|
|
136
172
|
* Key creation time.
|
|
137
173
|
*/
|
|
@@ -160,6 +196,10 @@ export interface KeyState {
|
|
|
160
196
|
* Master key name. Length 2–31 characters. Valid characters: [a-zA-Z0-9-_].
|
|
161
197
|
*/
|
|
162
198
|
keyName?: pulumi.Input<string>;
|
|
199
|
+
/**
|
|
200
|
+
* Primary region of the multi-region key. Set the target primary region during the Create/Update phase; the current primary region is returned during the Read phase.
|
|
201
|
+
*/
|
|
202
|
+
keyPrimaryRegion?: pulumi.Input<string>;
|
|
163
203
|
/**
|
|
164
204
|
* User master key rotation operation (enter 1 to enable, 2 to disable).
|
|
165
205
|
*/
|
|
@@ -200,6 +240,14 @@ export interface KeyState {
|
|
|
200
240
|
* Key protection level. Options: SOFTWARE, HSM.
|
|
201
241
|
*/
|
|
202
242
|
protectionLevel?: pulumi.Input<string>;
|
|
243
|
+
/**
|
|
244
|
+
* Re-encryption action parameters and results. ReEncrypt can be triggered during the Create/Update phase; the result is only guaranteed to be returned in the current response.
|
|
245
|
+
*/
|
|
246
|
+
reEncrypt?: pulumi.Input<inputs.kms.KeyReEncrypt>;
|
|
247
|
+
/**
|
|
248
|
+
* Replicate key action parameters and results. ReplicateKey can be triggered during the Create/Update phase; the result is only guaranteed to be returned in the current response.
|
|
249
|
+
*/
|
|
250
|
+
replicateKey?: pulumi.Input<inputs.kms.KeyReplicateKey>;
|
|
203
251
|
/**
|
|
204
252
|
* Key rotation period (days). Range: [90, 2560].
|
|
205
253
|
*/
|
|
@@ -230,6 +278,18 @@ export interface KeyState {
|
|
|
230
278
|
* The set of arguments for constructing a Key resource.
|
|
231
279
|
*/
|
|
232
280
|
export interface KeyArgs {
|
|
281
|
+
/**
|
|
282
|
+
* Asymmetric encryption action parameters and results. AsymmetricEncrypt can be triggered during the Create/Update phase; the result is only guaranteed to be returned in the current response.
|
|
283
|
+
*/
|
|
284
|
+
asymmetricCiphertext?: pulumi.Input<inputs.kms.KeyAsymmetricCiphertext>;
|
|
285
|
+
/**
|
|
286
|
+
* Asymmetric signature action parameters and results. AsymmetricSign can be triggered during the Create/Update phase; the result is only guaranteed to be returned in the current response.
|
|
287
|
+
*/
|
|
288
|
+
asymmetricSignature?: pulumi.Input<inputs.kms.KeyAsymmetricSignature>;
|
|
289
|
+
/**
|
|
290
|
+
* Symmetric encryption action parameters and results. Encrypt can be triggered during the Create/Update phase; the result is only guaranteed to be returned in the current response.
|
|
291
|
+
*/
|
|
292
|
+
ciphertext?: pulumi.Input<inputs.kms.KeyCiphertext>;
|
|
233
293
|
/**
|
|
234
294
|
* Key description: Length 0–8192 characters.
|
|
235
295
|
*/
|
|
@@ -246,6 +306,10 @@ export interface KeyArgs {
|
|
|
246
306
|
* Master key name. Length 2–31 characters. Valid characters: [a-zA-Z0-9-_].
|
|
247
307
|
*/
|
|
248
308
|
keyName: pulumi.Input<string>;
|
|
309
|
+
/**
|
|
310
|
+
* Primary region of the multi-region key. Set the target primary region during the Create/Update phase; the current primary region is returned during the Read phase.
|
|
311
|
+
*/
|
|
312
|
+
keyPrimaryRegion?: pulumi.Input<string>;
|
|
249
313
|
/**
|
|
250
314
|
* User master key rotation operation (enter 1 to enable, 2 to disable).
|
|
251
315
|
*/
|
|
@@ -274,6 +338,14 @@ export interface KeyArgs {
|
|
|
274
338
|
* Key protection level. Options: SOFTWARE, HSM.
|
|
275
339
|
*/
|
|
276
340
|
protectionLevel?: pulumi.Input<string>;
|
|
341
|
+
/**
|
|
342
|
+
* Re-encryption action parameters and results. ReEncrypt can be triggered during the Create/Update phase; the result is only guaranteed to be returned in the current response.
|
|
343
|
+
*/
|
|
344
|
+
reEncrypt?: pulumi.Input<inputs.kms.KeyReEncrypt>;
|
|
345
|
+
/**
|
|
346
|
+
* Replicate key action parameters and results. ReplicateKey can be triggered during the Create/Update phase; the result is only guaranteed to be returned in the current response.
|
|
347
|
+
*/
|
|
348
|
+
replicateKey?: pulumi.Input<inputs.kms.KeyReplicateKey>;
|
|
277
349
|
/**
|
|
278
350
|
* Key rotation period (days). Range: [90, 2560].
|
|
279
351
|
*/
|
package/kms/key.js
CHANGED
|
@@ -42,6 +42,9 @@ class Key extends pulumi.CustomResource {
|
|
|
42
42
|
opts = opts || {};
|
|
43
43
|
if (opts.id) {
|
|
44
44
|
const state = argsOrState;
|
|
45
|
+
resourceInputs["asymmetricCiphertext"] = state ? state.asymmetricCiphertext : undefined;
|
|
46
|
+
resourceInputs["asymmetricSignature"] = state ? state.asymmetricSignature : undefined;
|
|
47
|
+
resourceInputs["ciphertext"] = state ? state.ciphertext : undefined;
|
|
45
48
|
resourceInputs["createdTime"] = state ? state.createdTime : undefined;
|
|
46
49
|
resourceInputs["description"] = state ? state.description : undefined;
|
|
47
50
|
resourceInputs["keyArchiveOperation"] = state ? state.keyArchiveOperation : undefined;
|
|
@@ -49,6 +52,7 @@ class Key extends pulumi.CustomResource {
|
|
|
49
52
|
resourceInputs["keyId"] = state ? state.keyId : undefined;
|
|
50
53
|
resourceInputs["keyMaterialExpireTime"] = state ? state.keyMaterialExpireTime : undefined;
|
|
51
54
|
resourceInputs["keyName"] = state ? state.keyName : undefined;
|
|
55
|
+
resourceInputs["keyPrimaryRegion"] = state ? state.keyPrimaryRegion : undefined;
|
|
52
56
|
resourceInputs["keyRotationOperation"] = state ? state.keyRotationOperation : undefined;
|
|
53
57
|
resourceInputs["keySpec"] = state ? state.keySpec : undefined;
|
|
54
58
|
resourceInputs["keyState"] = state ? state.keyState : undefined;
|
|
@@ -59,6 +63,8 @@ class Key extends pulumi.CustomResource {
|
|
|
59
63
|
resourceInputs["multiRegionConfiguration"] = state ? state.multiRegionConfiguration : undefined;
|
|
60
64
|
resourceInputs["origin"] = state ? state.origin : undefined;
|
|
61
65
|
resourceInputs["protectionLevel"] = state ? state.protectionLevel : undefined;
|
|
66
|
+
resourceInputs["reEncrypt"] = state ? state.reEncrypt : undefined;
|
|
67
|
+
resourceInputs["replicateKey"] = state ? state.replicateKey : undefined;
|
|
62
68
|
resourceInputs["rotateInterval"] = state ? state.rotateInterval : undefined;
|
|
63
69
|
resourceInputs["rotateState"] = state ? state.rotateState : undefined;
|
|
64
70
|
resourceInputs["scheduleDeleteTime"] = state ? state.scheduleDeleteTime : undefined;
|
|
@@ -75,10 +81,14 @@ class Key extends pulumi.CustomResource {
|
|
|
75
81
|
if ((!args || args.keyringName === undefined) && !opts.urn) {
|
|
76
82
|
throw new Error("Missing required property 'keyringName'");
|
|
77
83
|
}
|
|
84
|
+
resourceInputs["asymmetricCiphertext"] = args ? args.asymmetricCiphertext : undefined;
|
|
85
|
+
resourceInputs["asymmetricSignature"] = args ? args.asymmetricSignature : undefined;
|
|
86
|
+
resourceInputs["ciphertext"] = args ? args.ciphertext : undefined;
|
|
78
87
|
resourceInputs["description"] = args ? args.description : undefined;
|
|
79
88
|
resourceInputs["keyArchiveOperation"] = args ? args.keyArchiveOperation : undefined;
|
|
80
89
|
resourceInputs["keyEnableOperation"] = args ? args.keyEnableOperation : undefined;
|
|
81
90
|
resourceInputs["keyName"] = args ? args.keyName : undefined;
|
|
91
|
+
resourceInputs["keyPrimaryRegion"] = args ? args.keyPrimaryRegion : undefined;
|
|
82
92
|
resourceInputs["keyRotationOperation"] = args ? args.keyRotationOperation : undefined;
|
|
83
93
|
resourceInputs["keySpec"] = args ? args.keySpec : undefined;
|
|
84
94
|
resourceInputs["keyUsage"] = args ? args.keyUsage : undefined;
|
|
@@ -86,6 +96,8 @@ class Key extends pulumi.CustomResource {
|
|
|
86
96
|
resourceInputs["multiRegion"] = args ? args.multiRegion : undefined;
|
|
87
97
|
resourceInputs["origin"] = args ? args.origin : undefined;
|
|
88
98
|
resourceInputs["protectionLevel"] = args ? args.protectionLevel : undefined;
|
|
99
|
+
resourceInputs["reEncrypt"] = args ? args.reEncrypt : undefined;
|
|
100
|
+
resourceInputs["replicateKey"] = args ? args.replicateKey : undefined;
|
|
89
101
|
resourceInputs["rotateInterval"] = args ? args.rotateInterval : undefined;
|
|
90
102
|
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
91
103
|
resourceInputs["createdTime"] = undefined /*out*/;
|
package/kms/key.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"key.js","sourceRoot":"","sources":["../../kms/key.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;GAQG;AACH,MAAa,GAAI,SAAQ,MAAM,CAAC,cAAc;IAC1C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAgB,EAAE,IAAmC;QAC9G,OAAO,IAAI,GAAG,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC1D,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,GAAG,CAAC,YAAY,CAAC;IACpD,CAAC;
|
|
1
|
+
{"version":3,"file":"key.js","sourceRoot":"","sources":["../../kms/key.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
package/provider.d.ts
CHANGED
|
@@ -45,6 +45,11 @@ export declare class Provider extends pulumi.ProviderResource {
|
|
|
45
45
|
* environment variable
|
|
46
46
|
*/
|
|
47
47
|
readonly secretKey: pulumi.Output<string | undefined>;
|
|
48
|
+
/**
|
|
49
|
+
* The Session Token for Volcengine Provider. It can also be sourced from the `VOLCENGINE_SESSION_TOKEN` environment
|
|
50
|
+
* variable
|
|
51
|
+
*/
|
|
52
|
+
readonly sessionToken: pulumi.Output<string | undefined>;
|
|
48
53
|
/**
|
|
49
54
|
* Create a Provider resource with the given unique name, arguments, and options.
|
|
50
55
|
*
|
|
@@ -107,6 +112,11 @@ export interface ProviderArgs {
|
|
|
107
112
|
* environment variable
|
|
108
113
|
*/
|
|
109
114
|
secretKey?: pulumi.Input<string>;
|
|
115
|
+
/**
|
|
116
|
+
* The Session Token for Volcengine Provider. It can also be sourced from the `VOLCENGINE_SESSION_TOKEN` environment
|
|
117
|
+
* variable
|
|
118
|
+
*/
|
|
119
|
+
sessionToken?: pulumi.Input<string>;
|
|
110
120
|
}
|
|
111
121
|
export declare namespace Provider {
|
|
112
122
|
/**
|
package/provider.js
CHANGED
|
@@ -30,7 +30,7 @@ class Provider extends pulumi.ProviderResource {
|
|
|
30
30
|
* @param opts A bag of options that control this resource's behavior.
|
|
31
31
|
*/
|
|
32
32
|
constructor(name, args, opts) {
|
|
33
|
-
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
33
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
34
34
|
let resourceInputs = {};
|
|
35
35
|
opts = opts || {};
|
|
36
36
|
{
|
|
@@ -44,6 +44,7 @@ class Provider extends pulumi.ProviderResource {
|
|
|
44
44
|
resourceInputs["proxyUrl"] = (_f = (args ? args.proxyUrl : undefined)) !== null && _f !== void 0 ? _f : utilities.getEnv("VOLCENGINE_PROXY_URL");
|
|
45
45
|
resourceInputs["region"] = (_g = (args ? args.region : undefined)) !== null && _g !== void 0 ? _g : utilities.getEnv("VOLCENGINE_REGION");
|
|
46
46
|
resourceInputs["secretKey"] = (_h = (args ? args.secretKey : undefined)) !== null && _h !== void 0 ? _h : utilities.getEnv("VOLCENGINE_SECRET_KEY");
|
|
47
|
+
resourceInputs["sessionToken"] = (_j = (args ? args.sessionToken : undefined)) !== null && _j !== void 0 ? _j : utilities.getEnv("VOLCENGINE_SESSION_TOKEN");
|
|
47
48
|
}
|
|
48
49
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
49
50
|
super(Provider.__pulumiType, name, resourceInputs, opts);
|
package/provider.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"provider.js","sourceRoot":"","sources":["../provider.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;GAKG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,gBAAgB;IAIjD;;;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,mBAAmB,GAAG,QAAQ,CAAC,YAAY,CAAC;IAC/E,CAAC;
|
|
1
|
+
{"version":3,"file":"provider.js","sourceRoot":"","sources":["../provider.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Data Source schema for Volcengine::RDSPostgreSQL::ParameterTemplate
|
|
5
|
+
*/
|
|
6
|
+
export declare function getParameterTemplate(args: GetParameterTemplateArgs, opts?: pulumi.InvokeOptions): Promise<GetParameterTemplateResult>;
|
|
7
|
+
/**
|
|
8
|
+
* A collection of arguments for invoking getParameterTemplate.
|
|
9
|
+
*/
|
|
10
|
+
export interface GetParameterTemplateArgs {
|
|
11
|
+
/**
|
|
12
|
+
* Uniquely identifies the resource.
|
|
13
|
+
*/
|
|
14
|
+
id: string;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* A collection of values returned by getParameterTemplate.
|
|
18
|
+
*/
|
|
19
|
+
export interface GetParameterTemplateResult {
|
|
20
|
+
/**
|
|
21
|
+
* Account ID
|
|
22
|
+
*/
|
|
23
|
+
readonly accountId: string;
|
|
24
|
+
/**
|
|
25
|
+
* Parameter template creation time
|
|
26
|
+
*/
|
|
27
|
+
readonly createTime: string;
|
|
28
|
+
/**
|
|
29
|
+
* Uniquely identifies the resource.
|
|
30
|
+
*/
|
|
31
|
+
readonly id: string;
|
|
32
|
+
/**
|
|
33
|
+
* Whether the template contains parameters that require a restart to take effect
|
|
34
|
+
*/
|
|
35
|
+
readonly needRestart: boolean;
|
|
36
|
+
/**
|
|
37
|
+
* Number of parameters included in the template
|
|
38
|
+
*/
|
|
39
|
+
readonly parameterNum: number;
|
|
40
|
+
/**
|
|
41
|
+
* Template category
|
|
42
|
+
*/
|
|
43
|
+
readonly templateCategory: string;
|
|
44
|
+
/**
|
|
45
|
+
* Parameter template description information
|
|
46
|
+
*/
|
|
47
|
+
readonly templateDesc: string;
|
|
48
|
+
/**
|
|
49
|
+
* Parameter template ID, automatically generated by the system
|
|
50
|
+
*/
|
|
51
|
+
readonly templateId: string;
|
|
52
|
+
/**
|
|
53
|
+
* Parameter template name
|
|
54
|
+
*/
|
|
55
|
+
readonly templateName: string;
|
|
56
|
+
/**
|
|
57
|
+
* List of parameters included in the parameter template
|
|
58
|
+
*/
|
|
59
|
+
readonly templateParams: outputs.rdspostgresql.GetParameterTemplateTemplateParam[];
|
|
60
|
+
/**
|
|
61
|
+
* Parameter template source type. Options: System (system template), User (user template)
|
|
62
|
+
*/
|
|
63
|
+
readonly templateSource: string;
|
|
64
|
+
/**
|
|
65
|
+
* Database type of the parameter template. Value: PostgreSQL
|
|
66
|
+
*/
|
|
67
|
+
readonly templateType: string;
|
|
68
|
+
/**
|
|
69
|
+
* Database version of the parameter template, such as PostgreSQL*13, PostgreSQL*14, PostgreSQL_15, etc
|
|
70
|
+
*/
|
|
71
|
+
readonly templateTypeVersion: string;
|
|
72
|
+
/**
|
|
73
|
+
* Last modified time of the parameter template
|
|
74
|
+
*/
|
|
75
|
+
readonly updateTime: string;
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* Data Source schema for Volcengine::RDSPostgreSQL::ParameterTemplate
|
|
79
|
+
*/
|
|
80
|
+
export declare function getParameterTemplateOutput(args: GetParameterTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetParameterTemplateResult>;
|
|
81
|
+
/**
|
|
82
|
+
* A collection of arguments for invoking getParameterTemplate.
|
|
83
|
+
*/
|
|
84
|
+
export interface GetParameterTemplateOutputArgs {
|
|
85
|
+
/**
|
|
86
|
+
* Uniquely identifies the resource.
|
|
87
|
+
*/
|
|
88
|
+
id: pulumi.Input<string>;
|
|
89
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
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.getParameterTemplateOutput = exports.getParameterTemplate = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Data Source schema for Volcengine::RDSPostgreSQL::ParameterTemplate
|
|
10
|
+
*/
|
|
11
|
+
function getParameterTemplate(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("volcenginecc:rdspostgresql/getParameterTemplate:getParameterTemplate", {
|
|
14
|
+
"id": args.id,
|
|
15
|
+
}, opts);
|
|
16
|
+
}
|
|
17
|
+
exports.getParameterTemplate = getParameterTemplate;
|
|
18
|
+
/**
|
|
19
|
+
* Data Source schema for Volcengine::RDSPostgreSQL::ParameterTemplate
|
|
20
|
+
*/
|
|
21
|
+
function getParameterTemplateOutput(args, opts) {
|
|
22
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
23
|
+
return pulumi.runtime.invokeOutput("volcenginecc:rdspostgresql/getParameterTemplate:getParameterTemplate", {
|
|
24
|
+
"id": args.id,
|
|
25
|
+
}, opts);
|
|
26
|
+
}
|
|
27
|
+
exports.getParameterTemplateOutput = getParameterTemplateOutput;
|
|
28
|
+
//# sourceMappingURL=getParameterTemplate.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getParameterTemplate.js","sourceRoot":"","sources":["../../rdspostgresql/getParameterTemplate.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sEAAsE,EAAE;QACjG,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,oDAKC;AAyED;;GAEG;AACH,SAAgB,0BAA0B,CAAC,IAAoC,EAAE,IAAiC;IAC9G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,sEAAsE,EAAE;QACvG,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,gEAKC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Plural Data Source schema for Volcengine::RDSPostgreSQL::ParameterTemplate
|
|
4
|
+
*/
|
|
5
|
+
export declare function getParameterTemplates(opts?: pulumi.InvokeOptions): Promise<GetParameterTemplatesResult>;
|
|
6
|
+
/**
|
|
7
|
+
* A collection of values returned by getParameterTemplates.
|
|
8
|
+
*/
|
|
9
|
+
export interface GetParameterTemplatesResult {
|
|
10
|
+
/**
|
|
11
|
+
* Uniquely identifies the data source.
|
|
12
|
+
*/
|
|
13
|
+
readonly id: string;
|
|
14
|
+
/**
|
|
15
|
+
* Set of Resource Identifiers.
|
|
16
|
+
*/
|
|
17
|
+
readonly ids: string[];
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* Plural Data Source schema for Volcengine::RDSPostgreSQL::ParameterTemplate
|
|
21
|
+
*/
|
|
22
|
+
export declare function getParameterTemplatesOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetParameterTemplatesResult>;
|
|
@@ -0,0 +1,24 @@
|
|
|
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.getParameterTemplatesOutput = exports.getParameterTemplates = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Plural Data Source schema for Volcengine::RDSPostgreSQL::ParameterTemplate
|
|
10
|
+
*/
|
|
11
|
+
function getParameterTemplates(opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("volcenginecc:rdspostgresql/getParameterTemplates:getParameterTemplates", {}, opts);
|
|
14
|
+
}
|
|
15
|
+
exports.getParameterTemplates = getParameterTemplates;
|
|
16
|
+
/**
|
|
17
|
+
* Plural Data Source schema for Volcengine::RDSPostgreSQL::ParameterTemplate
|
|
18
|
+
*/
|
|
19
|
+
function getParameterTemplatesOutput(opts) {
|
|
20
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
21
|
+
return pulumi.runtime.invokeOutput("volcenginecc:rdspostgresql/getParameterTemplates:getParameterTemplates", {}, opts);
|
|
22
|
+
}
|
|
23
|
+
exports.getParameterTemplatesOutput = getParameterTemplatesOutput;
|
|
24
|
+
//# sourceMappingURL=getParameterTemplates.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getParameterTemplates.js","sourceRoot":"","sources":["../../rdspostgresql/getParameterTemplates.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,qBAAqB,CAAC,IAA2B;IAC7D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wEAAwE,EAAE,EACtG,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,sDAIC;AAeD;;GAEG;AACH,SAAgB,2BAA2B,CAAC,IAAiC;IACzE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,wEAAwE,EAAE,EAC5G,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,kEAIC"}
|
package/rdspostgresql/index.d.ts
CHANGED
|
@@ -49,6 +49,12 @@ export declare const getInstanceOutput: typeof import("./getInstance").getInstan
|
|
|
49
49
|
export { GetInstancesResult } from "./getInstances";
|
|
50
50
|
export declare const getInstances: typeof import("./getInstances").getInstances;
|
|
51
51
|
export declare const getInstancesOutput: typeof import("./getInstances").getInstancesOutput;
|
|
52
|
+
export { GetParameterTemplateArgs, GetParameterTemplateResult, GetParameterTemplateOutputArgs } from "./getParameterTemplate";
|
|
53
|
+
export declare const getParameterTemplate: typeof import("./getParameterTemplate").getParameterTemplate;
|
|
54
|
+
export declare const getParameterTemplateOutput: typeof import("./getParameterTemplate").getParameterTemplateOutput;
|
|
55
|
+
export { GetParameterTemplatesResult } from "./getParameterTemplates";
|
|
56
|
+
export declare const getParameterTemplates: typeof import("./getParameterTemplates").getParameterTemplates;
|
|
57
|
+
export declare const getParameterTemplatesOutput: typeof import("./getParameterTemplates").getParameterTemplatesOutput;
|
|
52
58
|
export { GetSchemaArgs, GetSchemaResult, GetSchemaOutputArgs } from "./getSchema";
|
|
53
59
|
export declare const getSchema: typeof import("./getSchema").getSchema;
|
|
54
60
|
export declare const getSchemaOutput: typeof import("./getSchema").getSchemaOutput;
|
|
@@ -58,6 +64,9 @@ export declare const getSchemasOutput: typeof import("./getSchemas").getSchemasO
|
|
|
58
64
|
export { InstanceArgs, InstanceState } from "./instance";
|
|
59
65
|
export type Instance = import("./instance").Instance;
|
|
60
66
|
export declare const Instance: typeof import("./instance").Instance;
|
|
67
|
+
export { ParameterTemplateArgs, ParameterTemplateState } from "./parameterTemplate";
|
|
68
|
+
export type ParameterTemplate = import("./parameterTemplate").ParameterTemplate;
|
|
69
|
+
export declare const ParameterTemplate: typeof import("./parameterTemplate").ParameterTemplate;
|
|
61
70
|
export { SchemaArgs, SchemaState } from "./schema";
|
|
62
71
|
export type Schema = import("./schema").Schema;
|
|
63
72
|
export declare const Schema: typeof import("./schema").Schema;
|
package/rdspostgresql/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
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.Schema = exports.Instance = exports.getSchemasOutput = exports.getSchemas = exports.getSchemaOutput = exports.getSchema = exports.getInstancesOutput = exports.getInstances = exports.getInstanceOutput = exports.getInstance = exports.getDbEndpointsOutput = exports.getDbEndpoints = exports.getDbEndpointOutput = exports.getDbEndpoint = exports.getDbAccountsOutput = exports.getDbAccounts = exports.getDbAccountOutput = exports.getDbAccount = exports.getDatabasesOutput = exports.getDatabases = exports.getDatabaseOutput = exports.getDatabase = exports.getBackupsOutput = exports.getBackups = exports.getBackupOutput = exports.getBackup = exports.getAllowListsOutput = exports.getAllowLists = exports.getAllowListOutput = exports.getAllowList = exports.DbEndpoint = exports.DbAccount = exports.Database = exports.Backup = exports.AllowList = void 0;
|
|
5
|
+
exports.Schema = exports.ParameterTemplate = exports.Instance = exports.getSchemasOutput = exports.getSchemas = exports.getSchemaOutput = exports.getSchema = exports.getParameterTemplatesOutput = exports.getParameterTemplates = exports.getParameterTemplateOutput = exports.getParameterTemplate = exports.getInstancesOutput = exports.getInstances = exports.getInstanceOutput = exports.getInstance = exports.getDbEndpointsOutput = exports.getDbEndpoints = exports.getDbEndpointOutput = exports.getDbEndpoint = exports.getDbAccountsOutput = exports.getDbAccounts = exports.getDbAccountOutput = exports.getDbAccount = exports.getDatabasesOutput = exports.getDatabases = exports.getDatabaseOutput = exports.getDatabase = exports.getBackupsOutput = exports.getBackups = exports.getBackupOutput = exports.getBackup = exports.getAllowListsOutput = exports.getAllowLists = exports.getAllowListOutput = exports.getAllowList = exports.DbEndpoint = exports.DbAccount = exports.Database = exports.Backup = exports.AllowList = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
exports.AllowList = null;
|
|
@@ -51,6 +51,12 @@ utilities.lazyLoad(exports, ["getInstance", "getInstanceOutput"], () => require(
|
|
|
51
51
|
exports.getInstances = null;
|
|
52
52
|
exports.getInstancesOutput = null;
|
|
53
53
|
utilities.lazyLoad(exports, ["getInstances", "getInstancesOutput"], () => require("./getInstances"));
|
|
54
|
+
exports.getParameterTemplate = null;
|
|
55
|
+
exports.getParameterTemplateOutput = null;
|
|
56
|
+
utilities.lazyLoad(exports, ["getParameterTemplate", "getParameterTemplateOutput"], () => require("./getParameterTemplate"));
|
|
57
|
+
exports.getParameterTemplates = null;
|
|
58
|
+
exports.getParameterTemplatesOutput = null;
|
|
59
|
+
utilities.lazyLoad(exports, ["getParameterTemplates", "getParameterTemplatesOutput"], () => require("./getParameterTemplates"));
|
|
54
60
|
exports.getSchema = null;
|
|
55
61
|
exports.getSchemaOutput = null;
|
|
56
62
|
utilities.lazyLoad(exports, ["getSchema", "getSchemaOutput"], () => require("./getSchema"));
|
|
@@ -59,6 +65,8 @@ exports.getSchemasOutput = null;
|
|
|
59
65
|
utilities.lazyLoad(exports, ["getSchemas", "getSchemasOutput"], () => require("./getSchemas"));
|
|
60
66
|
exports.Instance = null;
|
|
61
67
|
utilities.lazyLoad(exports, ["Instance"], () => require("./instance"));
|
|
68
|
+
exports.ParameterTemplate = null;
|
|
69
|
+
utilities.lazyLoad(exports, ["ParameterTemplate"], () => require("./parameterTemplate"));
|
|
62
70
|
exports.Schema = null;
|
|
63
71
|
utilities.lazyLoad(exports, ["Schema"], () => require("./schema"));
|
|
64
72
|
const _module = {
|
|
@@ -77,6 +85,8 @@ const _module = {
|
|
|
77
85
|
return new exports.DbEndpoint(name, undefined, { urn });
|
|
78
86
|
case "volcenginecc:rdspostgresql/instance:Instance":
|
|
79
87
|
return new exports.Instance(name, undefined, { urn });
|
|
88
|
+
case "volcenginecc:rdspostgresql/parameterTemplate:ParameterTemplate":
|
|
89
|
+
return new exports.ParameterTemplate(name, undefined, { urn });
|
|
80
90
|
case "volcenginecc:rdspostgresql/schema:Schema":
|
|
81
91
|
return new exports.Schema(name, undefined, { urn });
|
|
82
92
|
default:
|
|
@@ -90,5 +100,6 @@ pulumi.runtime.registerResourceModule("volcenginecc", "rdspostgresql/database",
|
|
|
90
100
|
pulumi.runtime.registerResourceModule("volcenginecc", "rdspostgresql/dbAccount", _module);
|
|
91
101
|
pulumi.runtime.registerResourceModule("volcenginecc", "rdspostgresql/dbEndpoint", _module);
|
|
92
102
|
pulumi.runtime.registerResourceModule("volcenginecc", "rdspostgresql/instance", _module);
|
|
103
|
+
pulumi.runtime.registerResourceModule("volcenginecc", "rdspostgresql/parameterTemplate", _module);
|
|
93
104
|
pulumi.runtime.registerResourceModule("volcenginecc", "rdspostgresql/schema", _module);
|
|
94
105
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../rdspostgresql/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../rdspostgresql/index.ts"],"names":[],"mappings":"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"}
|