@byteplus/pulumi-bytepluscc 0.0.30 → 0.0.31
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 +7 -2
- package/config/vars.js +7 -0
- package/config/vars.js.map +1 -1
- package/iam/getRole.d.ts +4 -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 +14 -4
- 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
|
@@ -7065,6 +7065,52 @@ export declare namespace kafka {
|
|
|
7065
7065
|
}
|
|
7066
7066
|
}
|
|
7067
7067
|
export declare namespace kms {
|
|
7068
|
+
interface KeyAsymmetricCiphertext {
|
|
7069
|
+
/**
|
|
7070
|
+
* Encryption algorithm. Optional values: RSAES*OAEP*SHA_256, SM2PKE.
|
|
7071
|
+
*/
|
|
7072
|
+
algorithm?: pulumi.Input<string>;
|
|
7073
|
+
/**
|
|
7074
|
+
* Ciphertext of encryption result, Base64-encoded.
|
|
7075
|
+
*/
|
|
7076
|
+
ciphertextBlob?: pulumi.Input<string>;
|
|
7077
|
+
/**
|
|
7078
|
+
* Plaintext to be encrypted, Base64-encoded.
|
|
7079
|
+
*/
|
|
7080
|
+
plaintext?: pulumi.Input<string>;
|
|
7081
|
+
}
|
|
7082
|
+
interface KeyAsymmetricSignature {
|
|
7083
|
+
/**
|
|
7084
|
+
* Signature algorithm, for example: RSA*PSS*SHA*256, RSA*PKCS1*SHA*256, ECDSA*SHA*256, SM2_DSA.
|
|
7085
|
+
*/
|
|
7086
|
+
algorithm?: pulumi.Input<string>;
|
|
7087
|
+
/**
|
|
7088
|
+
* Message to be signed, Base64-encoded.
|
|
7089
|
+
*/
|
|
7090
|
+
message?: pulumi.Input<string>;
|
|
7091
|
+
/**
|
|
7092
|
+
* Message type. Optional values: RAW, DIGEST.
|
|
7093
|
+
*/
|
|
7094
|
+
messageType?: pulumi.Input<string>;
|
|
7095
|
+
/**
|
|
7096
|
+
* Signature result, Base64-encoded.
|
|
7097
|
+
*/
|
|
7098
|
+
signature?: pulumi.Input<string>;
|
|
7099
|
+
}
|
|
7100
|
+
interface KeyCiphertext {
|
|
7101
|
+
/**
|
|
7102
|
+
* Ciphertext of encryption result, Base64-encoded.
|
|
7103
|
+
*/
|
|
7104
|
+
ciphertextBlob?: pulumi.Input<string>;
|
|
7105
|
+
/**
|
|
7106
|
+
* Encryption context JSON string.
|
|
7107
|
+
*/
|
|
7108
|
+
encryptionContext?: pulumi.Input<string>;
|
|
7109
|
+
/**
|
|
7110
|
+
* Plaintext to be encrypted, Base64-encoded.
|
|
7111
|
+
*/
|
|
7112
|
+
plaintext?: pulumi.Input<string>;
|
|
7113
|
+
}
|
|
7068
7114
|
interface KeyMultiRegionConfiguration {
|
|
7069
7115
|
/**
|
|
7070
7116
|
* Multi-region key type.
|
|
@@ -7096,6 +7142,61 @@ export declare namespace kms {
|
|
|
7096
7142
|
*/
|
|
7097
7143
|
trn?: pulumi.Input<string>;
|
|
7098
7144
|
}
|
|
7145
|
+
interface KeyReEncrypt {
|
|
7146
|
+
/**
|
|
7147
|
+
* Re-encrypted ciphertext, Base64-encoded.
|
|
7148
|
+
*/
|
|
7149
|
+
ciphertextBlob?: pulumi.Input<string>;
|
|
7150
|
+
/**
|
|
7151
|
+
* New encryption context JSON string.
|
|
7152
|
+
*/
|
|
7153
|
+
newEncryptionContext?: pulumi.Input<string>;
|
|
7154
|
+
/**
|
|
7155
|
+
* Target key ID. If not specified, you must provide NewKeyringName and NewKeyName.
|
|
7156
|
+
*/
|
|
7157
|
+
newKeyId?: pulumi.Input<string>;
|
|
7158
|
+
/**
|
|
7159
|
+
* Target key name.
|
|
7160
|
+
*/
|
|
7161
|
+
newKeyName?: pulumi.Input<string>;
|
|
7162
|
+
/**
|
|
7163
|
+
* Name of the keyring to which the target key belongs.
|
|
7164
|
+
*/
|
|
7165
|
+
newKeyringName?: pulumi.Input<string>;
|
|
7166
|
+
/**
|
|
7167
|
+
* Old encryption context JSON string.
|
|
7168
|
+
*/
|
|
7169
|
+
oldEncryptionContext?: pulumi.Input<string>;
|
|
7170
|
+
/**
|
|
7171
|
+
* Source ciphertext to be re-encrypted, Base64-encoded.
|
|
7172
|
+
*/
|
|
7173
|
+
sourceCiphertextBlob?: pulumi.Input<string>;
|
|
7174
|
+
}
|
|
7175
|
+
interface KeyReplicateKey {
|
|
7176
|
+
/**
|
|
7177
|
+
* Replica key description.
|
|
7178
|
+
*/
|
|
7179
|
+
description?: pulumi.Input<string>;
|
|
7180
|
+
/**
|
|
7181
|
+
* Replica key ID.
|
|
7182
|
+
*/
|
|
7183
|
+
replicaKeyId?: pulumi.Input<string>;
|
|
7184
|
+
/**
|
|
7185
|
+
* Target region of the replica key.
|
|
7186
|
+
*/
|
|
7187
|
+
replicaRegion?: pulumi.Input<string>;
|
|
7188
|
+
tags?: pulumi.Input<pulumi.Input<inputs.kms.KeyReplicateKeyTag>[]>;
|
|
7189
|
+
}
|
|
7190
|
+
interface KeyReplicateKeyTag {
|
|
7191
|
+
/**
|
|
7192
|
+
* KMS key label key.
|
|
7193
|
+
*/
|
|
7194
|
+
key?: pulumi.Input<string>;
|
|
7195
|
+
/**
|
|
7196
|
+
* KMS key label value.
|
|
7197
|
+
*/
|
|
7198
|
+
value?: pulumi.Input<string>;
|
|
7199
|
+
}
|
|
7099
7200
|
interface KeyTag {
|
|
7100
7201
|
/**
|
|
7101
7202
|
* KMS key label key.
|
|
@@ -8898,6 +8999,16 @@ export declare namespace rdspostgresql {
|
|
|
8898
8999
|
*/
|
|
8899
9000
|
value?: pulumi.Input<string>;
|
|
8900
9001
|
}
|
|
9002
|
+
interface ParameterTemplateTemplateParam {
|
|
9003
|
+
/**
|
|
9004
|
+
* Parameter name
|
|
9005
|
+
*/
|
|
9006
|
+
name: pulumi.Input<string>;
|
|
9007
|
+
/**
|
|
9008
|
+
* Parameter value
|
|
9009
|
+
*/
|
|
9010
|
+
value: pulumi.Input<string>;
|
|
9011
|
+
}
|
|
8901
9012
|
}
|
|
8902
9013
|
export declare namespace redis {
|
|
8903
9014
|
interface AllowListAssociatedInstance {
|
package/types/output.d.ts
CHANGED
|
@@ -13957,15 +13957,49 @@ export declare namespace iam {
|
|
|
13957
13957
|
projectName: string;
|
|
13958
13958
|
}
|
|
13959
13959
|
interface GetRolePolicy {
|
|
13960
|
+
/**
|
|
13961
|
+
* Policy binding time.
|
|
13962
|
+
*/
|
|
13963
|
+
attachDate: string;
|
|
13964
|
+
/**
|
|
13965
|
+
* Policy description.
|
|
13966
|
+
*/
|
|
13967
|
+
description: string;
|
|
13960
13968
|
/**
|
|
13961
13969
|
* Policy name
|
|
13962
13970
|
*/
|
|
13963
13971
|
policyName: string;
|
|
13972
|
+
/**
|
|
13973
|
+
* Policy authorization scope, specifically refers to the project scope.
|
|
13974
|
+
*/
|
|
13975
|
+
policyScopes: outputs.iam.GetRolePolicyPolicyScope[];
|
|
13976
|
+
/**
|
|
13977
|
+
* Policy TRN.
|
|
13978
|
+
*/
|
|
13979
|
+
policyTrn: string;
|
|
13964
13980
|
/**
|
|
13965
13981
|
* Policy type. Policy type. System indicates a system preset policy; Custom indicates a custom policy.
|
|
13966
13982
|
*/
|
|
13967
13983
|
policyType: string;
|
|
13968
13984
|
}
|
|
13985
|
+
interface GetRolePolicyPolicyScope {
|
|
13986
|
+
/**
|
|
13987
|
+
* Project authorization time.
|
|
13988
|
+
*/
|
|
13989
|
+
attachDate: string;
|
|
13990
|
+
/**
|
|
13991
|
+
* Authorization type. Global means global authorization (not limited to any project), Project means project-based authorization.
|
|
13992
|
+
*/
|
|
13993
|
+
policyScopeType: string;
|
|
13994
|
+
/**
|
|
13995
|
+
* Project display name for project-based authorization.
|
|
13996
|
+
*/
|
|
13997
|
+
projectDisplayName: string;
|
|
13998
|
+
/**
|
|
13999
|
+
* Project name for project-based authorization.
|
|
14000
|
+
*/
|
|
14001
|
+
projectName: string;
|
|
14002
|
+
}
|
|
13969
14003
|
interface GetRoleTag {
|
|
13970
14004
|
/**
|
|
13971
14005
|
* Tag key
|
|
@@ -14606,6 +14640,52 @@ export declare namespace kafka {
|
|
|
14606
14640
|
}
|
|
14607
14641
|
}
|
|
14608
14642
|
export declare namespace kms {
|
|
14643
|
+
interface GetKeyAsymmetricCiphertext {
|
|
14644
|
+
/**
|
|
14645
|
+
* Encryption algorithm. Optional values: RSAES*OAEP*SHA_256, SM2PKE.
|
|
14646
|
+
*/
|
|
14647
|
+
algorithm: string;
|
|
14648
|
+
/**
|
|
14649
|
+
* Ciphertext of encryption result, Base64-encoded.
|
|
14650
|
+
*/
|
|
14651
|
+
ciphertextBlob: string;
|
|
14652
|
+
/**
|
|
14653
|
+
* Plaintext to be encrypted, Base64-encoded.
|
|
14654
|
+
*/
|
|
14655
|
+
plaintext: string;
|
|
14656
|
+
}
|
|
14657
|
+
interface GetKeyAsymmetricSignature {
|
|
14658
|
+
/**
|
|
14659
|
+
* Signature algorithm, for example: RSA*PSS*SHA*256, RSA*PKCS1*SHA*256, ECDSA*SHA*256, SM2_DSA.
|
|
14660
|
+
*/
|
|
14661
|
+
algorithm: string;
|
|
14662
|
+
/**
|
|
14663
|
+
* Message to be signed, Base64-encoded.
|
|
14664
|
+
*/
|
|
14665
|
+
message: string;
|
|
14666
|
+
/**
|
|
14667
|
+
* Message type. Optional values: RAW, DIGEST.
|
|
14668
|
+
*/
|
|
14669
|
+
messageType: string;
|
|
14670
|
+
/**
|
|
14671
|
+
* Signature result, Base64-encoded.
|
|
14672
|
+
*/
|
|
14673
|
+
signature: string;
|
|
14674
|
+
}
|
|
14675
|
+
interface GetKeyCiphertext {
|
|
14676
|
+
/**
|
|
14677
|
+
* Ciphertext of encryption result, Base64-encoded.
|
|
14678
|
+
*/
|
|
14679
|
+
ciphertextBlob: string;
|
|
14680
|
+
/**
|
|
14681
|
+
* Encryption context JSON string.
|
|
14682
|
+
*/
|
|
14683
|
+
encryptionContext: string;
|
|
14684
|
+
/**
|
|
14685
|
+
* Plaintext to be encrypted, Base64-encoded.
|
|
14686
|
+
*/
|
|
14687
|
+
plaintext: string;
|
|
14688
|
+
}
|
|
14609
14689
|
interface GetKeyMultiRegionConfiguration {
|
|
14610
14690
|
/**
|
|
14611
14691
|
* Multi-region key type.
|
|
@@ -14640,6 +14720,64 @@ export declare namespace kms {
|
|
|
14640
14720
|
*/
|
|
14641
14721
|
trn: string;
|
|
14642
14722
|
}
|
|
14723
|
+
interface GetKeyReEncrypt {
|
|
14724
|
+
/**
|
|
14725
|
+
* Re-encrypted ciphertext, Base64-encoded.
|
|
14726
|
+
*/
|
|
14727
|
+
ciphertextBlob: string;
|
|
14728
|
+
/**
|
|
14729
|
+
* New encryption context JSON string.
|
|
14730
|
+
*/
|
|
14731
|
+
newEncryptionContext: string;
|
|
14732
|
+
/**
|
|
14733
|
+
* Target key ID. If not specified, you must provide NewKeyringName and NewKeyName.
|
|
14734
|
+
*/
|
|
14735
|
+
newKeyId: string;
|
|
14736
|
+
/**
|
|
14737
|
+
* Target key name.
|
|
14738
|
+
*/
|
|
14739
|
+
newKeyName: string;
|
|
14740
|
+
/**
|
|
14741
|
+
* Name of the keyring to which the target key belongs.
|
|
14742
|
+
*/
|
|
14743
|
+
newKeyringName: string;
|
|
14744
|
+
/**
|
|
14745
|
+
* Old encryption context JSON string.
|
|
14746
|
+
*/
|
|
14747
|
+
oldEncryptionContext: string;
|
|
14748
|
+
/**
|
|
14749
|
+
* Source ciphertext to be re-encrypted, Base64-encoded.
|
|
14750
|
+
*/
|
|
14751
|
+
sourceCiphertextBlob: string;
|
|
14752
|
+
}
|
|
14753
|
+
interface GetKeyReplicateKey {
|
|
14754
|
+
/**
|
|
14755
|
+
* Replica key description.
|
|
14756
|
+
*/
|
|
14757
|
+
description: string;
|
|
14758
|
+
/**
|
|
14759
|
+
* Replica key ID.
|
|
14760
|
+
*/
|
|
14761
|
+
replicaKeyId: string;
|
|
14762
|
+
/**
|
|
14763
|
+
* Target region of the replica key.
|
|
14764
|
+
*/
|
|
14765
|
+
replicaRegion: string;
|
|
14766
|
+
/**
|
|
14767
|
+
* Replica key label.
|
|
14768
|
+
*/
|
|
14769
|
+
tags: outputs.kms.GetKeyReplicateKeyTag[];
|
|
14770
|
+
}
|
|
14771
|
+
interface GetKeyReplicateKeyTag {
|
|
14772
|
+
/**
|
|
14773
|
+
* KMS key label key.
|
|
14774
|
+
*/
|
|
14775
|
+
key: string;
|
|
14776
|
+
/**
|
|
14777
|
+
* KMS key label value.
|
|
14778
|
+
*/
|
|
14779
|
+
value: string;
|
|
14780
|
+
}
|
|
14643
14781
|
interface GetKeyTag {
|
|
14644
14782
|
/**
|
|
14645
14783
|
* KMS key label key.
|
|
@@ -14650,6 +14788,52 @@ export declare namespace kms {
|
|
|
14650
14788
|
*/
|
|
14651
14789
|
value: string;
|
|
14652
14790
|
}
|
|
14791
|
+
interface KeyAsymmetricCiphertext {
|
|
14792
|
+
/**
|
|
14793
|
+
* Encryption algorithm. Optional values: RSAES*OAEP*SHA_256, SM2PKE.
|
|
14794
|
+
*/
|
|
14795
|
+
algorithm: string;
|
|
14796
|
+
/**
|
|
14797
|
+
* Ciphertext of encryption result, Base64-encoded.
|
|
14798
|
+
*/
|
|
14799
|
+
ciphertextBlob: string;
|
|
14800
|
+
/**
|
|
14801
|
+
* Plaintext to be encrypted, Base64-encoded.
|
|
14802
|
+
*/
|
|
14803
|
+
plaintext: string;
|
|
14804
|
+
}
|
|
14805
|
+
interface KeyAsymmetricSignature {
|
|
14806
|
+
/**
|
|
14807
|
+
* Signature algorithm, for example: RSA*PSS*SHA*256, RSA*PKCS1*SHA*256, ECDSA*SHA*256, SM2_DSA.
|
|
14808
|
+
*/
|
|
14809
|
+
algorithm: string;
|
|
14810
|
+
/**
|
|
14811
|
+
* Message to be signed, Base64-encoded.
|
|
14812
|
+
*/
|
|
14813
|
+
message: string;
|
|
14814
|
+
/**
|
|
14815
|
+
* Message type. Optional values: RAW, DIGEST.
|
|
14816
|
+
*/
|
|
14817
|
+
messageType: string;
|
|
14818
|
+
/**
|
|
14819
|
+
* Signature result, Base64-encoded.
|
|
14820
|
+
*/
|
|
14821
|
+
signature: string;
|
|
14822
|
+
}
|
|
14823
|
+
interface KeyCiphertext {
|
|
14824
|
+
/**
|
|
14825
|
+
* Ciphertext of encryption result, Base64-encoded.
|
|
14826
|
+
*/
|
|
14827
|
+
ciphertextBlob: string;
|
|
14828
|
+
/**
|
|
14829
|
+
* Encryption context JSON string.
|
|
14830
|
+
*/
|
|
14831
|
+
encryptionContext: string;
|
|
14832
|
+
/**
|
|
14833
|
+
* Plaintext to be encrypted, Base64-encoded.
|
|
14834
|
+
*/
|
|
14835
|
+
plaintext: string;
|
|
14836
|
+
}
|
|
14653
14837
|
interface KeyMultiRegionConfiguration {
|
|
14654
14838
|
/**
|
|
14655
14839
|
* Multi-region key type.
|
|
@@ -14681,6 +14865,61 @@ export declare namespace kms {
|
|
|
14681
14865
|
*/
|
|
14682
14866
|
trn: string;
|
|
14683
14867
|
}
|
|
14868
|
+
interface KeyReEncrypt {
|
|
14869
|
+
/**
|
|
14870
|
+
* Re-encrypted ciphertext, Base64-encoded.
|
|
14871
|
+
*/
|
|
14872
|
+
ciphertextBlob: string;
|
|
14873
|
+
/**
|
|
14874
|
+
* New encryption context JSON string.
|
|
14875
|
+
*/
|
|
14876
|
+
newEncryptionContext: string;
|
|
14877
|
+
/**
|
|
14878
|
+
* Target key ID. If not specified, you must provide NewKeyringName and NewKeyName.
|
|
14879
|
+
*/
|
|
14880
|
+
newKeyId: string;
|
|
14881
|
+
/**
|
|
14882
|
+
* Target key name.
|
|
14883
|
+
*/
|
|
14884
|
+
newKeyName: string;
|
|
14885
|
+
/**
|
|
14886
|
+
* Name of the keyring to which the target key belongs.
|
|
14887
|
+
*/
|
|
14888
|
+
newKeyringName: string;
|
|
14889
|
+
/**
|
|
14890
|
+
* Old encryption context JSON string.
|
|
14891
|
+
*/
|
|
14892
|
+
oldEncryptionContext: string;
|
|
14893
|
+
/**
|
|
14894
|
+
* Source ciphertext to be re-encrypted, Base64-encoded.
|
|
14895
|
+
*/
|
|
14896
|
+
sourceCiphertextBlob: string;
|
|
14897
|
+
}
|
|
14898
|
+
interface KeyReplicateKey {
|
|
14899
|
+
/**
|
|
14900
|
+
* Replica key description.
|
|
14901
|
+
*/
|
|
14902
|
+
description: string;
|
|
14903
|
+
/**
|
|
14904
|
+
* Replica key ID.
|
|
14905
|
+
*/
|
|
14906
|
+
replicaKeyId: string;
|
|
14907
|
+
/**
|
|
14908
|
+
* Target region of the replica key.
|
|
14909
|
+
*/
|
|
14910
|
+
replicaRegion: string;
|
|
14911
|
+
tags: outputs.kms.KeyReplicateKeyTag[];
|
|
14912
|
+
}
|
|
14913
|
+
interface KeyReplicateKeyTag {
|
|
14914
|
+
/**
|
|
14915
|
+
* KMS key label key.
|
|
14916
|
+
*/
|
|
14917
|
+
key: string;
|
|
14918
|
+
/**
|
|
14919
|
+
* KMS key label value.
|
|
14920
|
+
*/
|
|
14921
|
+
value: string;
|
|
14922
|
+
}
|
|
14684
14923
|
interface KeyTag {
|
|
14685
14924
|
/**
|
|
14686
14925
|
* KMS key label key.
|
|
@@ -18228,6 +18467,40 @@ export declare namespace rdspostgresql {
|
|
|
18228
18467
|
*/
|
|
18229
18468
|
value: string;
|
|
18230
18469
|
}
|
|
18470
|
+
interface GetParameterTemplateTemplateParam {
|
|
18471
|
+
/**
|
|
18472
|
+
* Parameter validation rules
|
|
18473
|
+
*/
|
|
18474
|
+
checkingCode: string;
|
|
18475
|
+
/**
|
|
18476
|
+
* Default value of the parameter
|
|
18477
|
+
*/
|
|
18478
|
+
defaultValue: string;
|
|
18479
|
+
/**
|
|
18480
|
+
* Parameter description information in English
|
|
18481
|
+
*/
|
|
18482
|
+
description: string;
|
|
18483
|
+
/**
|
|
18484
|
+
* Parameter description information in Chinese
|
|
18485
|
+
*/
|
|
18486
|
+
descriptionZh: string;
|
|
18487
|
+
/**
|
|
18488
|
+
* Whether modifying this parameter requires a restart
|
|
18489
|
+
*/
|
|
18490
|
+
forceRestart: boolean;
|
|
18491
|
+
/**
|
|
18492
|
+
* Parameter name
|
|
18493
|
+
*/
|
|
18494
|
+
name: string;
|
|
18495
|
+
/**
|
|
18496
|
+
* Data type of the parameter
|
|
18497
|
+
*/
|
|
18498
|
+
type: string;
|
|
18499
|
+
/**
|
|
18500
|
+
* Parameter value
|
|
18501
|
+
*/
|
|
18502
|
+
value: string;
|
|
18503
|
+
}
|
|
18231
18504
|
interface InstanceChargeDetail {
|
|
18232
18505
|
/**
|
|
18233
18506
|
* Enable auto-renewal for prepaid scenarios
|
|
@@ -18456,6 +18729,16 @@ export declare namespace rdspostgresql {
|
|
|
18456
18729
|
*/
|
|
18457
18730
|
value: string;
|
|
18458
18731
|
}
|
|
18732
|
+
interface ParameterTemplateTemplateParam {
|
|
18733
|
+
/**
|
|
18734
|
+
* Parameter name
|
|
18735
|
+
*/
|
|
18736
|
+
name: string;
|
|
18737
|
+
/**
|
|
18738
|
+
* Parameter value
|
|
18739
|
+
*/
|
|
18740
|
+
value: string;
|
|
18741
|
+
}
|
|
18459
18742
|
}
|
|
18460
18743
|
export declare namespace redis {
|
|
18461
18744
|
interface AllowListAssociatedInstance {
|