@volcengine/pulumi-volcenginecc 0.0.38 → 0.0.39
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 +1 -0
- 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/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 +111 -0
- package/types/output.d.ts +283 -0
package/redis/instance.d.ts
CHANGED
|
@@ -113,11 +113,11 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
113
113
|
*/
|
|
114
114
|
readonly dataLayout: pulumi.Output<string>;
|
|
115
115
|
/**
|
|
116
|
-
* Enable or disable instance deletion protection.
|
|
116
|
+
* Enable or disable instance deletion protection. disabled: Off. enabled: On.
|
|
117
117
|
*/
|
|
118
118
|
readonly deletionProtection: pulumi.Output<string>;
|
|
119
119
|
/**
|
|
120
|
-
* Database version number.
|
|
120
|
+
* Database version number. Valid values: 5.0: Version 5.0. 6.0: Version 6.0. 7.0: Version 7.0.
|
|
121
121
|
*/
|
|
122
122
|
readonly engineVersion: pulumi.Output<string>;
|
|
123
123
|
/**
|
|
@@ -146,7 +146,7 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
146
146
|
*/
|
|
147
147
|
readonly maxConnections: pulumi.Output<number>;
|
|
148
148
|
/**
|
|
149
|
-
* Set the deployment scheme
|
|
149
|
+
* Set the instance's availability zone deployment scheme. Valid values: enabled: Multi-availability zone deployment. disabled: Single availability zone deployment.
|
|
150
150
|
*/
|
|
151
151
|
readonly multiAz: pulumi.Output<string>;
|
|
152
152
|
/**
|
|
@@ -194,7 +194,11 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
194
194
|
*/
|
|
195
195
|
readonly reserveAdditionalBandwidth: pulumi.Output<boolean>;
|
|
196
196
|
/**
|
|
197
|
-
*
|
|
197
|
+
* Restart instance? Only instances with the status Running support restart operations. During the restart process, access to some services may be temporarily affected. Proceed with caution. It is recommended to restart during off-peak hours and ensure your application supports automatic reconnection.
|
|
198
|
+
*/
|
|
199
|
+
readonly restartInstance: pulumi.Output<boolean>;
|
|
200
|
+
/**
|
|
201
|
+
* Instance service type. Valid values: Basic: Community Edition. Enterprise: Enterprise Edition.
|
|
198
202
|
*/
|
|
199
203
|
readonly serviceType: pulumi.Output<string>;
|
|
200
204
|
/**
|
|
@@ -210,7 +214,7 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
210
214
|
*/
|
|
211
215
|
readonly shardedCluster: pulumi.Output<number>;
|
|
212
216
|
/**
|
|
213
|
-
*
|
|
217
|
+
* Current status of the instance.
|
|
214
218
|
*/
|
|
215
219
|
readonly status: pulumi.Output<string>;
|
|
216
220
|
/**
|
|
@@ -298,11 +302,11 @@ export interface InstanceState {
|
|
|
298
302
|
*/
|
|
299
303
|
dataLayout?: pulumi.Input<string>;
|
|
300
304
|
/**
|
|
301
|
-
* Enable or disable instance deletion protection.
|
|
305
|
+
* Enable or disable instance deletion protection. disabled: Off. enabled: On.
|
|
302
306
|
*/
|
|
303
307
|
deletionProtection?: pulumi.Input<string>;
|
|
304
308
|
/**
|
|
305
|
-
* Database version number.
|
|
309
|
+
* Database version number. Valid values: 5.0: Version 5.0. 6.0: Version 6.0. 7.0: Version 7.0.
|
|
306
310
|
*/
|
|
307
311
|
engineVersion?: pulumi.Input<string>;
|
|
308
312
|
/**
|
|
@@ -331,7 +335,7 @@ export interface InstanceState {
|
|
|
331
335
|
*/
|
|
332
336
|
maxConnections?: pulumi.Input<number>;
|
|
333
337
|
/**
|
|
334
|
-
* Set the deployment scheme
|
|
338
|
+
* Set the instance's availability zone deployment scheme. Valid values: enabled: Multi-availability zone deployment. disabled: Single availability zone deployment.
|
|
335
339
|
*/
|
|
336
340
|
multiAz?: pulumi.Input<string>;
|
|
337
341
|
/**
|
|
@@ -379,7 +383,11 @@ export interface InstanceState {
|
|
|
379
383
|
*/
|
|
380
384
|
reserveAdditionalBandwidth?: pulumi.Input<boolean>;
|
|
381
385
|
/**
|
|
382
|
-
*
|
|
386
|
+
* Restart instance? Only instances with the status Running support restart operations. During the restart process, access to some services may be temporarily affected. Proceed with caution. It is recommended to restart during off-peak hours and ensure your application supports automatic reconnection.
|
|
387
|
+
*/
|
|
388
|
+
restartInstance?: pulumi.Input<boolean>;
|
|
389
|
+
/**
|
|
390
|
+
* Instance service type. Valid values: Basic: Community Edition. Enterprise: Enterprise Edition.
|
|
383
391
|
*/
|
|
384
392
|
serviceType?: pulumi.Input<string>;
|
|
385
393
|
/**
|
|
@@ -395,7 +403,7 @@ export interface InstanceState {
|
|
|
395
403
|
*/
|
|
396
404
|
shardedCluster?: pulumi.Input<number>;
|
|
397
405
|
/**
|
|
398
|
-
*
|
|
406
|
+
* Current status of the instance.
|
|
399
407
|
*/
|
|
400
408
|
status?: pulumi.Input<string>;
|
|
401
409
|
/**
|
|
@@ -459,11 +467,11 @@ export interface InstanceArgs {
|
|
|
459
467
|
*/
|
|
460
468
|
createBackup?: pulumi.Input<boolean>;
|
|
461
469
|
/**
|
|
462
|
-
* Enable or disable instance deletion protection.
|
|
470
|
+
* Enable or disable instance deletion protection. disabled: Off. enabled: On.
|
|
463
471
|
*/
|
|
464
472
|
deletionProtection?: pulumi.Input<string>;
|
|
465
473
|
/**
|
|
466
|
-
* Database version number.
|
|
474
|
+
* Database version number. Valid values: 5.0: Version 5.0. 6.0: Version 6.0. 7.0: Version 7.0.
|
|
467
475
|
*/
|
|
468
476
|
engineVersion: pulumi.Input<string>;
|
|
469
477
|
/**
|
|
@@ -471,7 +479,7 @@ export interface InstanceArgs {
|
|
|
471
479
|
*/
|
|
472
480
|
instanceName?: pulumi.Input<string>;
|
|
473
481
|
/**
|
|
474
|
-
* Set the deployment scheme
|
|
482
|
+
* Set the instance's availability zone deployment scheme. Valid values: enabled: Multi-availability zone deployment. disabled: Single availability zone deployment.
|
|
475
483
|
*/
|
|
476
484
|
multiAz: pulumi.Input<string>;
|
|
477
485
|
/**
|
|
@@ -506,6 +514,10 @@ export interface InstanceArgs {
|
|
|
506
514
|
* Set whether to reserve additional bandwidth
|
|
507
515
|
*/
|
|
508
516
|
reserveAdditionalBandwidth?: pulumi.Input<boolean>;
|
|
517
|
+
/**
|
|
518
|
+
* Restart instance? Only instances with the status Running support restart operations. During the restart process, access to some services may be temporarily affected. Proceed with caution. It is recommended to restart during off-peak hours and ensure your application supports automatic reconnection.
|
|
519
|
+
*/
|
|
520
|
+
restartInstance?: pulumi.Input<boolean>;
|
|
509
521
|
/**
|
|
510
522
|
* Memory capacity of each shard in the instance. Unit: MiB.
|
|
511
523
|
*/
|
package/redis/instance.js
CHANGED
|
@@ -116,6 +116,7 @@ class Instance extends pulumi.CustomResource {
|
|
|
116
116
|
resourceInputs["projectName"] = state ? state.projectName : undefined;
|
|
117
117
|
resourceInputs["purchaseMonths"] = state ? state.purchaseMonths : undefined;
|
|
118
118
|
resourceInputs["reserveAdditionalBandwidth"] = state ? state.reserveAdditionalBandwidth : undefined;
|
|
119
|
+
resourceInputs["restartInstance"] = state ? state.restartInstance : undefined;
|
|
119
120
|
resourceInputs["serviceType"] = state ? state.serviceType : undefined;
|
|
120
121
|
resourceInputs["shardCapacity"] = state ? state.shardCapacity : undefined;
|
|
121
122
|
resourceInputs["shardNumber"] = state ? state.shardNumber : undefined;
|
|
@@ -176,6 +177,7 @@ class Instance extends pulumi.CustomResource {
|
|
|
176
177
|
resourceInputs["projectName"] = args ? args.projectName : undefined;
|
|
177
178
|
resourceInputs["purchaseMonths"] = args ? args.purchaseMonths : undefined;
|
|
178
179
|
resourceInputs["reserveAdditionalBandwidth"] = args ? args.reserveAdditionalBandwidth : undefined;
|
|
180
|
+
resourceInputs["restartInstance"] = args ? args.restartInstance : undefined;
|
|
179
181
|
resourceInputs["shardCapacity"] = args ? args.shardCapacity : undefined;
|
|
180
182
|
resourceInputs["shardNumber"] = args ? args.shardNumber : undefined;
|
|
181
183
|
resourceInputs["shardedCluster"] = args ? args.shardedCluster : undefined;
|
package/redis/instance.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"instance.js","sourceRoot":"","sources":["../../redis/instance.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiDG;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;
|
|
1
|
+
{"version":3,"file":"instance.js","sourceRoot":"","sources":["../../redis/instance.ts"],"names":[],"mappings":"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"}
|
package/types/input.d.ts
CHANGED
|
@@ -7265,6 +7265,52 @@ export declare namespace kafka {
|
|
|
7265
7265
|
}
|
|
7266
7266
|
}
|
|
7267
7267
|
export declare namespace kms {
|
|
7268
|
+
interface KeyAsymmetricCiphertext {
|
|
7269
|
+
/**
|
|
7270
|
+
* Encryption algorithm. Optional values: RSAES*OAEP*SHA_256, SM2PKE.
|
|
7271
|
+
*/
|
|
7272
|
+
algorithm?: pulumi.Input<string>;
|
|
7273
|
+
/**
|
|
7274
|
+
* Ciphertext of encryption result, Base64-encoded.
|
|
7275
|
+
*/
|
|
7276
|
+
ciphertextBlob?: pulumi.Input<string>;
|
|
7277
|
+
/**
|
|
7278
|
+
* Plaintext to be encrypted, Base64-encoded.
|
|
7279
|
+
*/
|
|
7280
|
+
plaintext?: pulumi.Input<string>;
|
|
7281
|
+
}
|
|
7282
|
+
interface KeyAsymmetricSignature {
|
|
7283
|
+
/**
|
|
7284
|
+
* Signature algorithm, for example: RSA*PSS*SHA*256, RSA*PKCS1*SHA*256, ECDSA*SHA*256, SM2_DSA.
|
|
7285
|
+
*/
|
|
7286
|
+
algorithm?: pulumi.Input<string>;
|
|
7287
|
+
/**
|
|
7288
|
+
* Message to be signed, Base64-encoded.
|
|
7289
|
+
*/
|
|
7290
|
+
message?: pulumi.Input<string>;
|
|
7291
|
+
/**
|
|
7292
|
+
* Message type. Optional values: RAW, DIGEST.
|
|
7293
|
+
*/
|
|
7294
|
+
messageType?: pulumi.Input<string>;
|
|
7295
|
+
/**
|
|
7296
|
+
* Signature result, Base64-encoded.
|
|
7297
|
+
*/
|
|
7298
|
+
signature?: pulumi.Input<string>;
|
|
7299
|
+
}
|
|
7300
|
+
interface KeyCiphertext {
|
|
7301
|
+
/**
|
|
7302
|
+
* Ciphertext of encryption result, Base64-encoded.
|
|
7303
|
+
*/
|
|
7304
|
+
ciphertextBlob?: pulumi.Input<string>;
|
|
7305
|
+
/**
|
|
7306
|
+
* Encryption context JSON string.
|
|
7307
|
+
*/
|
|
7308
|
+
encryptionContext?: pulumi.Input<string>;
|
|
7309
|
+
/**
|
|
7310
|
+
* Plaintext to be encrypted, Base64-encoded.
|
|
7311
|
+
*/
|
|
7312
|
+
plaintext?: pulumi.Input<string>;
|
|
7313
|
+
}
|
|
7268
7314
|
interface KeyMultiRegionConfiguration {
|
|
7269
7315
|
/**
|
|
7270
7316
|
* Multi-region key type.
|
|
@@ -7296,6 +7342,61 @@ export declare namespace kms {
|
|
|
7296
7342
|
*/
|
|
7297
7343
|
trn?: pulumi.Input<string>;
|
|
7298
7344
|
}
|
|
7345
|
+
interface KeyReEncrypt {
|
|
7346
|
+
/**
|
|
7347
|
+
* Re-encrypted ciphertext, Base64-encoded.
|
|
7348
|
+
*/
|
|
7349
|
+
ciphertextBlob?: pulumi.Input<string>;
|
|
7350
|
+
/**
|
|
7351
|
+
* New encryption context JSON string.
|
|
7352
|
+
*/
|
|
7353
|
+
newEncryptionContext?: pulumi.Input<string>;
|
|
7354
|
+
/**
|
|
7355
|
+
* Target key ID. If not specified, you must provide NewKeyringName and NewKeyName.
|
|
7356
|
+
*/
|
|
7357
|
+
newKeyId?: pulumi.Input<string>;
|
|
7358
|
+
/**
|
|
7359
|
+
* Target key name.
|
|
7360
|
+
*/
|
|
7361
|
+
newKeyName?: pulumi.Input<string>;
|
|
7362
|
+
/**
|
|
7363
|
+
* Name of the keyring to which the target key belongs.
|
|
7364
|
+
*/
|
|
7365
|
+
newKeyringName?: pulumi.Input<string>;
|
|
7366
|
+
/**
|
|
7367
|
+
* Old encryption context JSON string.
|
|
7368
|
+
*/
|
|
7369
|
+
oldEncryptionContext?: pulumi.Input<string>;
|
|
7370
|
+
/**
|
|
7371
|
+
* Source ciphertext to be re-encrypted, Base64-encoded.
|
|
7372
|
+
*/
|
|
7373
|
+
sourceCiphertextBlob?: pulumi.Input<string>;
|
|
7374
|
+
}
|
|
7375
|
+
interface KeyReplicateKey {
|
|
7376
|
+
/**
|
|
7377
|
+
* Replica key description.
|
|
7378
|
+
*/
|
|
7379
|
+
description?: pulumi.Input<string>;
|
|
7380
|
+
/**
|
|
7381
|
+
* Replica key ID.
|
|
7382
|
+
*/
|
|
7383
|
+
replicaKeyId?: pulumi.Input<string>;
|
|
7384
|
+
/**
|
|
7385
|
+
* Target region of the replica key.
|
|
7386
|
+
*/
|
|
7387
|
+
replicaRegion?: pulumi.Input<string>;
|
|
7388
|
+
tags?: pulumi.Input<pulumi.Input<inputs.kms.KeyReplicateKeyTag>[]>;
|
|
7389
|
+
}
|
|
7390
|
+
interface KeyReplicateKeyTag {
|
|
7391
|
+
/**
|
|
7392
|
+
* KMS key label key.
|
|
7393
|
+
*/
|
|
7394
|
+
key?: pulumi.Input<string>;
|
|
7395
|
+
/**
|
|
7396
|
+
* KMS key label value.
|
|
7397
|
+
*/
|
|
7398
|
+
value?: pulumi.Input<string>;
|
|
7399
|
+
}
|
|
7299
7400
|
interface KeyTag {
|
|
7300
7401
|
/**
|
|
7301
7402
|
* KMS key label key.
|
|
@@ -9098,6 +9199,16 @@ export declare namespace rdspostgresql {
|
|
|
9098
9199
|
*/
|
|
9099
9200
|
value?: pulumi.Input<string>;
|
|
9100
9201
|
}
|
|
9202
|
+
interface ParameterTemplateTemplateParam {
|
|
9203
|
+
/**
|
|
9204
|
+
* Parameter name
|
|
9205
|
+
*/
|
|
9206
|
+
name: pulumi.Input<string>;
|
|
9207
|
+
/**
|
|
9208
|
+
* Parameter value
|
|
9209
|
+
*/
|
|
9210
|
+
value: pulumi.Input<string>;
|
|
9211
|
+
}
|
|
9101
9212
|
}
|
|
9102
9213
|
export declare namespace redis {
|
|
9103
9214
|
interface AllowListAssociatedInstance {
|
package/types/output.d.ts
CHANGED
|
@@ -14337,15 +14337,49 @@ export declare namespace iam {
|
|
|
14337
14337
|
projectName: string;
|
|
14338
14338
|
}
|
|
14339
14339
|
interface GetRolePolicy {
|
|
14340
|
+
/**
|
|
14341
|
+
* Policy binding time.
|
|
14342
|
+
*/
|
|
14343
|
+
attachDate: string;
|
|
14344
|
+
/**
|
|
14345
|
+
* Policy description.
|
|
14346
|
+
*/
|
|
14347
|
+
description: string;
|
|
14340
14348
|
/**
|
|
14341
14349
|
* Policy name
|
|
14342
14350
|
*/
|
|
14343
14351
|
policyName: string;
|
|
14352
|
+
/**
|
|
14353
|
+
* Policy authorization scope, specifically refers to the project scope.
|
|
14354
|
+
*/
|
|
14355
|
+
policyScopes: outputs.iam.GetRolePolicyPolicyScope[];
|
|
14356
|
+
/**
|
|
14357
|
+
* Policy TRN.
|
|
14358
|
+
*/
|
|
14359
|
+
policyTrn: string;
|
|
14344
14360
|
/**
|
|
14345
14361
|
* Policy type. Policy type. System indicates a system preset policy; Custom indicates a custom policy.
|
|
14346
14362
|
*/
|
|
14347
14363
|
policyType: string;
|
|
14348
14364
|
}
|
|
14365
|
+
interface GetRolePolicyPolicyScope {
|
|
14366
|
+
/**
|
|
14367
|
+
* Project authorization time.
|
|
14368
|
+
*/
|
|
14369
|
+
attachDate: string;
|
|
14370
|
+
/**
|
|
14371
|
+
* Authorization type. Global means global authorization (not limited to any project), Project means project-based authorization.
|
|
14372
|
+
*/
|
|
14373
|
+
policyScopeType: string;
|
|
14374
|
+
/**
|
|
14375
|
+
* Project display name for project-based authorization.
|
|
14376
|
+
*/
|
|
14377
|
+
projectDisplayName: string;
|
|
14378
|
+
/**
|
|
14379
|
+
* Project name for project-based authorization.
|
|
14380
|
+
*/
|
|
14381
|
+
projectName: string;
|
|
14382
|
+
}
|
|
14349
14383
|
interface GetRoleTag {
|
|
14350
14384
|
/**
|
|
14351
14385
|
* Tag key
|
|
@@ -14986,6 +15020,52 @@ export declare namespace kafka {
|
|
|
14986
15020
|
}
|
|
14987
15021
|
}
|
|
14988
15022
|
export declare namespace kms {
|
|
15023
|
+
interface GetKeyAsymmetricCiphertext {
|
|
15024
|
+
/**
|
|
15025
|
+
* Encryption algorithm. Optional values: RSAES*OAEP*SHA_256, SM2PKE.
|
|
15026
|
+
*/
|
|
15027
|
+
algorithm: string;
|
|
15028
|
+
/**
|
|
15029
|
+
* Ciphertext of encryption result, Base64-encoded.
|
|
15030
|
+
*/
|
|
15031
|
+
ciphertextBlob: string;
|
|
15032
|
+
/**
|
|
15033
|
+
* Plaintext to be encrypted, Base64-encoded.
|
|
15034
|
+
*/
|
|
15035
|
+
plaintext: string;
|
|
15036
|
+
}
|
|
15037
|
+
interface GetKeyAsymmetricSignature {
|
|
15038
|
+
/**
|
|
15039
|
+
* Signature algorithm, for example: RSA*PSS*SHA*256, RSA*PKCS1*SHA*256, ECDSA*SHA*256, SM2_DSA.
|
|
15040
|
+
*/
|
|
15041
|
+
algorithm: string;
|
|
15042
|
+
/**
|
|
15043
|
+
* Message to be signed, Base64-encoded.
|
|
15044
|
+
*/
|
|
15045
|
+
message: string;
|
|
15046
|
+
/**
|
|
15047
|
+
* Message type. Optional values: RAW, DIGEST.
|
|
15048
|
+
*/
|
|
15049
|
+
messageType: string;
|
|
15050
|
+
/**
|
|
15051
|
+
* Signature result, Base64-encoded.
|
|
15052
|
+
*/
|
|
15053
|
+
signature: string;
|
|
15054
|
+
}
|
|
15055
|
+
interface GetKeyCiphertext {
|
|
15056
|
+
/**
|
|
15057
|
+
* Ciphertext of encryption result, Base64-encoded.
|
|
15058
|
+
*/
|
|
15059
|
+
ciphertextBlob: string;
|
|
15060
|
+
/**
|
|
15061
|
+
* Encryption context JSON string.
|
|
15062
|
+
*/
|
|
15063
|
+
encryptionContext: string;
|
|
15064
|
+
/**
|
|
15065
|
+
* Plaintext to be encrypted, Base64-encoded.
|
|
15066
|
+
*/
|
|
15067
|
+
plaintext: string;
|
|
15068
|
+
}
|
|
14989
15069
|
interface GetKeyMultiRegionConfiguration {
|
|
14990
15070
|
/**
|
|
14991
15071
|
* Multi-region key type.
|
|
@@ -15020,6 +15100,64 @@ export declare namespace kms {
|
|
|
15020
15100
|
*/
|
|
15021
15101
|
trn: string;
|
|
15022
15102
|
}
|
|
15103
|
+
interface GetKeyReEncrypt {
|
|
15104
|
+
/**
|
|
15105
|
+
* Re-encrypted ciphertext, Base64-encoded.
|
|
15106
|
+
*/
|
|
15107
|
+
ciphertextBlob: string;
|
|
15108
|
+
/**
|
|
15109
|
+
* New encryption context JSON string.
|
|
15110
|
+
*/
|
|
15111
|
+
newEncryptionContext: string;
|
|
15112
|
+
/**
|
|
15113
|
+
* Target key ID. If not specified, you must provide NewKeyringName and NewKeyName.
|
|
15114
|
+
*/
|
|
15115
|
+
newKeyId: string;
|
|
15116
|
+
/**
|
|
15117
|
+
* Target key name.
|
|
15118
|
+
*/
|
|
15119
|
+
newKeyName: string;
|
|
15120
|
+
/**
|
|
15121
|
+
* Name of the keyring to which the target key belongs.
|
|
15122
|
+
*/
|
|
15123
|
+
newKeyringName: string;
|
|
15124
|
+
/**
|
|
15125
|
+
* Old encryption context JSON string.
|
|
15126
|
+
*/
|
|
15127
|
+
oldEncryptionContext: string;
|
|
15128
|
+
/**
|
|
15129
|
+
* Source ciphertext to be re-encrypted, Base64-encoded.
|
|
15130
|
+
*/
|
|
15131
|
+
sourceCiphertextBlob: string;
|
|
15132
|
+
}
|
|
15133
|
+
interface GetKeyReplicateKey {
|
|
15134
|
+
/**
|
|
15135
|
+
* Replica key description.
|
|
15136
|
+
*/
|
|
15137
|
+
description: string;
|
|
15138
|
+
/**
|
|
15139
|
+
* Replica key ID.
|
|
15140
|
+
*/
|
|
15141
|
+
replicaKeyId: string;
|
|
15142
|
+
/**
|
|
15143
|
+
* Target region of the replica key.
|
|
15144
|
+
*/
|
|
15145
|
+
replicaRegion: string;
|
|
15146
|
+
/**
|
|
15147
|
+
* Replica key label.
|
|
15148
|
+
*/
|
|
15149
|
+
tags: outputs.kms.GetKeyReplicateKeyTag[];
|
|
15150
|
+
}
|
|
15151
|
+
interface GetKeyReplicateKeyTag {
|
|
15152
|
+
/**
|
|
15153
|
+
* KMS key label key.
|
|
15154
|
+
*/
|
|
15155
|
+
key: string;
|
|
15156
|
+
/**
|
|
15157
|
+
* KMS key label value.
|
|
15158
|
+
*/
|
|
15159
|
+
value: string;
|
|
15160
|
+
}
|
|
15023
15161
|
interface GetKeyTag {
|
|
15024
15162
|
/**
|
|
15025
15163
|
* KMS key label key.
|
|
@@ -15030,6 +15168,52 @@ export declare namespace kms {
|
|
|
15030
15168
|
*/
|
|
15031
15169
|
value: string;
|
|
15032
15170
|
}
|
|
15171
|
+
interface KeyAsymmetricCiphertext {
|
|
15172
|
+
/**
|
|
15173
|
+
* Encryption algorithm. Optional values: RSAES*OAEP*SHA_256, SM2PKE.
|
|
15174
|
+
*/
|
|
15175
|
+
algorithm: string;
|
|
15176
|
+
/**
|
|
15177
|
+
* Ciphertext of encryption result, Base64-encoded.
|
|
15178
|
+
*/
|
|
15179
|
+
ciphertextBlob: string;
|
|
15180
|
+
/**
|
|
15181
|
+
* Plaintext to be encrypted, Base64-encoded.
|
|
15182
|
+
*/
|
|
15183
|
+
plaintext: string;
|
|
15184
|
+
}
|
|
15185
|
+
interface KeyAsymmetricSignature {
|
|
15186
|
+
/**
|
|
15187
|
+
* Signature algorithm, for example: RSA*PSS*SHA*256, RSA*PKCS1*SHA*256, ECDSA*SHA*256, SM2_DSA.
|
|
15188
|
+
*/
|
|
15189
|
+
algorithm: string;
|
|
15190
|
+
/**
|
|
15191
|
+
* Message to be signed, Base64-encoded.
|
|
15192
|
+
*/
|
|
15193
|
+
message: string;
|
|
15194
|
+
/**
|
|
15195
|
+
* Message type. Optional values: RAW, DIGEST.
|
|
15196
|
+
*/
|
|
15197
|
+
messageType: string;
|
|
15198
|
+
/**
|
|
15199
|
+
* Signature result, Base64-encoded.
|
|
15200
|
+
*/
|
|
15201
|
+
signature: string;
|
|
15202
|
+
}
|
|
15203
|
+
interface KeyCiphertext {
|
|
15204
|
+
/**
|
|
15205
|
+
* Ciphertext of encryption result, Base64-encoded.
|
|
15206
|
+
*/
|
|
15207
|
+
ciphertextBlob: string;
|
|
15208
|
+
/**
|
|
15209
|
+
* Encryption context JSON string.
|
|
15210
|
+
*/
|
|
15211
|
+
encryptionContext: string;
|
|
15212
|
+
/**
|
|
15213
|
+
* Plaintext to be encrypted, Base64-encoded.
|
|
15214
|
+
*/
|
|
15215
|
+
plaintext: string;
|
|
15216
|
+
}
|
|
15033
15217
|
interface KeyMultiRegionConfiguration {
|
|
15034
15218
|
/**
|
|
15035
15219
|
* Multi-region key type.
|
|
@@ -15061,6 +15245,61 @@ export declare namespace kms {
|
|
|
15061
15245
|
*/
|
|
15062
15246
|
trn: string;
|
|
15063
15247
|
}
|
|
15248
|
+
interface KeyReEncrypt {
|
|
15249
|
+
/**
|
|
15250
|
+
* Re-encrypted ciphertext, Base64-encoded.
|
|
15251
|
+
*/
|
|
15252
|
+
ciphertextBlob: string;
|
|
15253
|
+
/**
|
|
15254
|
+
* New encryption context JSON string.
|
|
15255
|
+
*/
|
|
15256
|
+
newEncryptionContext: string;
|
|
15257
|
+
/**
|
|
15258
|
+
* Target key ID. If not specified, you must provide NewKeyringName and NewKeyName.
|
|
15259
|
+
*/
|
|
15260
|
+
newKeyId: string;
|
|
15261
|
+
/**
|
|
15262
|
+
* Target key name.
|
|
15263
|
+
*/
|
|
15264
|
+
newKeyName: string;
|
|
15265
|
+
/**
|
|
15266
|
+
* Name of the keyring to which the target key belongs.
|
|
15267
|
+
*/
|
|
15268
|
+
newKeyringName: string;
|
|
15269
|
+
/**
|
|
15270
|
+
* Old encryption context JSON string.
|
|
15271
|
+
*/
|
|
15272
|
+
oldEncryptionContext: string;
|
|
15273
|
+
/**
|
|
15274
|
+
* Source ciphertext to be re-encrypted, Base64-encoded.
|
|
15275
|
+
*/
|
|
15276
|
+
sourceCiphertextBlob: string;
|
|
15277
|
+
}
|
|
15278
|
+
interface KeyReplicateKey {
|
|
15279
|
+
/**
|
|
15280
|
+
* Replica key description.
|
|
15281
|
+
*/
|
|
15282
|
+
description: string;
|
|
15283
|
+
/**
|
|
15284
|
+
* Replica key ID.
|
|
15285
|
+
*/
|
|
15286
|
+
replicaKeyId: string;
|
|
15287
|
+
/**
|
|
15288
|
+
* Target region of the replica key.
|
|
15289
|
+
*/
|
|
15290
|
+
replicaRegion: string;
|
|
15291
|
+
tags: outputs.kms.KeyReplicateKeyTag[];
|
|
15292
|
+
}
|
|
15293
|
+
interface KeyReplicateKeyTag {
|
|
15294
|
+
/**
|
|
15295
|
+
* KMS key label key.
|
|
15296
|
+
*/
|
|
15297
|
+
key: string;
|
|
15298
|
+
/**
|
|
15299
|
+
* KMS key label value.
|
|
15300
|
+
*/
|
|
15301
|
+
value: string;
|
|
15302
|
+
}
|
|
15064
15303
|
interface KeyTag {
|
|
15065
15304
|
/**
|
|
15066
15305
|
* KMS key label key.
|
|
@@ -18608,6 +18847,40 @@ export declare namespace rdspostgresql {
|
|
|
18608
18847
|
*/
|
|
18609
18848
|
value: string;
|
|
18610
18849
|
}
|
|
18850
|
+
interface GetParameterTemplateTemplateParam {
|
|
18851
|
+
/**
|
|
18852
|
+
* Parameter validation rules
|
|
18853
|
+
*/
|
|
18854
|
+
checkingCode: string;
|
|
18855
|
+
/**
|
|
18856
|
+
* Default value of the parameter
|
|
18857
|
+
*/
|
|
18858
|
+
defaultValue: string;
|
|
18859
|
+
/**
|
|
18860
|
+
* Parameter description information in English
|
|
18861
|
+
*/
|
|
18862
|
+
description: string;
|
|
18863
|
+
/**
|
|
18864
|
+
* Parameter description information in Chinese
|
|
18865
|
+
*/
|
|
18866
|
+
descriptionZh: string;
|
|
18867
|
+
/**
|
|
18868
|
+
* Whether modifying this parameter requires a restart
|
|
18869
|
+
*/
|
|
18870
|
+
forceRestart: boolean;
|
|
18871
|
+
/**
|
|
18872
|
+
* Parameter name
|
|
18873
|
+
*/
|
|
18874
|
+
name: string;
|
|
18875
|
+
/**
|
|
18876
|
+
* Data type of the parameter
|
|
18877
|
+
*/
|
|
18878
|
+
type: string;
|
|
18879
|
+
/**
|
|
18880
|
+
* Parameter value
|
|
18881
|
+
*/
|
|
18882
|
+
value: string;
|
|
18883
|
+
}
|
|
18611
18884
|
interface InstanceChargeDetail {
|
|
18612
18885
|
/**
|
|
18613
18886
|
* Enable auto-renewal for prepaid scenarios
|
|
@@ -18836,6 +19109,16 @@ export declare namespace rdspostgresql {
|
|
|
18836
19109
|
*/
|
|
18837
19110
|
value: string;
|
|
18838
19111
|
}
|
|
19112
|
+
interface ParameterTemplateTemplateParam {
|
|
19113
|
+
/**
|
|
19114
|
+
* Parameter name
|
|
19115
|
+
*/
|
|
19116
|
+
name: string;
|
|
19117
|
+
/**
|
|
19118
|
+
* Parameter value
|
|
19119
|
+
*/
|
|
19120
|
+
value: string;
|
|
19121
|
+
}
|
|
18839
19122
|
}
|
|
18840
19123
|
export declare namespace redis {
|
|
18841
19124
|
interface AllowListAssociatedInstance {
|