@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/types/input.d.ts
CHANGED
|
@@ -4504,6 +4504,12 @@ export declare namespace cloudidentity {
|
|
|
4504
4504
|
}
|
|
4505
4505
|
}
|
|
4506
4506
|
export declare namespace cloudmonitor {
|
|
4507
|
+
interface ContactGroupContact {
|
|
4508
|
+
/**
|
|
4509
|
+
* 联系人ID。
|
|
4510
|
+
*/
|
|
4511
|
+
contactId?: pulumi.Input<string>;
|
|
4512
|
+
}
|
|
4507
4513
|
interface RuleCondition {
|
|
4508
4514
|
/**
|
|
4509
4515
|
* Comparison operators. Supports standard threshold alerting: >, >=, <, <=, !=, =, as well as the following period-over-period alerting: last*period*increase*pct: Increased compared to last period. last*period*decrease*pct: Decreased compared to last period. last*period*abs*pct: Increased or decreased compared to last period. last*day*increase*pct: Increased compared to the same period yesterday. last*day*decrease*pct: Decreased compared to the same period yesterday. last*day*abs*pct: Increased or decreased compared to the same period yesterday. last*week*increase*pct: Increased compared to the same period last week. last*week*decrease*pct: Decreased compared to the same period last week. last*week*abs_pct: Increased or decreased compared to the same period last week.
|
|
@@ -7170,6 +7176,157 @@ export declare namespace iam {
|
|
|
7170
7176
|
value?: pulumi.Input<string>;
|
|
7171
7177
|
}
|
|
7172
7178
|
}
|
|
7179
|
+
export declare namespace id {
|
|
7180
|
+
interface ServiceBackend {
|
|
7181
|
+
/**
|
|
7182
|
+
* Backend service domain name, for example api.example.com
|
|
7183
|
+
*/
|
|
7184
|
+
backendDomain: pulumi.Input<string>;
|
|
7185
|
+
/**
|
|
7186
|
+
* Backend service port, default is 443
|
|
7187
|
+
*/
|
|
7188
|
+
backendPort?: pulumi.Input<number>;
|
|
7189
|
+
/**
|
|
7190
|
+
* Whether to enable TLS
|
|
7191
|
+
*/
|
|
7192
|
+
enableTls: pulumi.Input<boolean>;
|
|
7193
|
+
/**
|
|
7194
|
+
* Communication protocol, for example HTTP or HTTPS
|
|
7195
|
+
*/
|
|
7196
|
+
protocol?: pulumi.Input<string>;
|
|
7197
|
+
/**
|
|
7198
|
+
* Request timeout in seconds, default is 30 seconds
|
|
7199
|
+
*/
|
|
7200
|
+
timeoutSeconds?: pulumi.Input<number>;
|
|
7201
|
+
}
|
|
7202
|
+
interface ServiceRoute {
|
|
7203
|
+
/**
|
|
7204
|
+
* API specification configuration
|
|
7205
|
+
*/
|
|
7206
|
+
apiSpec?: pulumi.Input<inputs.id.ServiceRouteApiSpec>;
|
|
7207
|
+
/**
|
|
7208
|
+
* Authentication resource type
|
|
7209
|
+
*/
|
|
7210
|
+
authResourceType?: pulumi.Input<string>;
|
|
7211
|
+
/**
|
|
7212
|
+
* Route description
|
|
7213
|
+
*/
|
|
7214
|
+
description?: pulumi.Input<string>;
|
|
7215
|
+
/**
|
|
7216
|
+
* HTTP methods, separated by commas
|
|
7217
|
+
*/
|
|
7218
|
+
method?: pulumi.Input<string>;
|
|
7219
|
+
/**
|
|
7220
|
+
* Request path, 1–256 characters
|
|
7221
|
+
*/
|
|
7222
|
+
path?: pulumi.Input<string>;
|
|
7223
|
+
/**
|
|
7224
|
+
* Path match type, for example Exact, Prefix
|
|
7225
|
+
*/
|
|
7226
|
+
pathMatchType?: pulumi.Input<string>;
|
|
7227
|
+
/**
|
|
7228
|
+
* Permission pool name
|
|
7229
|
+
*/
|
|
7230
|
+
permissionPool?: pulumi.Input<string>;
|
|
7231
|
+
/**
|
|
7232
|
+
* Route priority, lower values indicate higher priority
|
|
7233
|
+
*/
|
|
7234
|
+
priority?: pulumi.Input<number>;
|
|
7235
|
+
/**
|
|
7236
|
+
* Resource type, for example Collection
|
|
7237
|
+
*/
|
|
7238
|
+
resourceType?: pulumi.Input<string>;
|
|
7239
|
+
/**
|
|
7240
|
+
* Route name, 1–64 characters
|
|
7241
|
+
*/
|
|
7242
|
+
routeName?: pulumi.Input<string>;
|
|
7243
|
+
}
|
|
7244
|
+
interface ServiceRouteApiSpec {
|
|
7245
|
+
/**
|
|
7246
|
+
* Operation type, for example READ
|
|
7247
|
+
*/
|
|
7248
|
+
actionType?: pulumi.Input<string>;
|
|
7249
|
+
/**
|
|
7250
|
+
* Operation value, for example search
|
|
7251
|
+
*/
|
|
7252
|
+
actionValue?: pulumi.Input<string>;
|
|
7253
|
+
extractors?: pulumi.Input<pulumi.Input<inputs.id.ServiceRouteApiSpecExtractor>[]>;
|
|
7254
|
+
/**
|
|
7255
|
+
* Resource identifier type
|
|
7256
|
+
*/
|
|
7257
|
+
identifierType?: pulumi.Input<number>;
|
|
7258
|
+
/**
|
|
7259
|
+
* Resource identifier value, for example JSON Pointer
|
|
7260
|
+
*/
|
|
7261
|
+
identifierValue?: pulumi.Input<string>;
|
|
7262
|
+
responseFilters?: pulumi.Input<pulumi.Input<inputs.id.ServiceRouteApiSpecResponseFilter>[]>;
|
|
7263
|
+
}
|
|
7264
|
+
interface ServiceRouteApiSpecExtractor {
|
|
7265
|
+
/**
|
|
7266
|
+
* Whether used for authentication
|
|
7267
|
+
*/
|
|
7268
|
+
isAuth?: pulumi.Input<boolean>;
|
|
7269
|
+
/**
|
|
7270
|
+
* JSON Pointer expression
|
|
7271
|
+
*/
|
|
7272
|
+
path?: pulumi.Input<string>;
|
|
7273
|
+
/**
|
|
7274
|
+
* Extracted resource type
|
|
7275
|
+
*/
|
|
7276
|
+
resourceType?: pulumi.Input<string>;
|
|
7277
|
+
/**
|
|
7278
|
+
* Extraction source enumeration value
|
|
7279
|
+
*/
|
|
7280
|
+
source?: pulumi.Input<number>;
|
|
7281
|
+
}
|
|
7282
|
+
interface ServiceRouteApiSpecResponseFilter {
|
|
7283
|
+
attributes?: pulumi.Input<pulumi.Input<inputs.id.ServiceRouteApiSpecResponseFilterAttribute>[]>;
|
|
7284
|
+
/**
|
|
7285
|
+
* Array path JSON Pointer
|
|
7286
|
+
*/
|
|
7287
|
+
filterPath?: pulumi.Input<string>;
|
|
7288
|
+
/**
|
|
7289
|
+
* ID field name
|
|
7290
|
+
*/
|
|
7291
|
+
idField?: pulumi.Input<string>;
|
|
7292
|
+
/**
|
|
7293
|
+
* Whether used for authentication
|
|
7294
|
+
*/
|
|
7295
|
+
isAuth?: pulumi.Input<boolean>;
|
|
7296
|
+
/**
|
|
7297
|
+
* Filter mode enumeration value
|
|
7298
|
+
*/
|
|
7299
|
+
mode?: pulumi.Input<number>;
|
|
7300
|
+
/**
|
|
7301
|
+
* Resource path JSON Pointer
|
|
7302
|
+
*/
|
|
7303
|
+
resourcePath?: pulumi.Input<string>;
|
|
7304
|
+
/**
|
|
7305
|
+
* Filtered resource type
|
|
7306
|
+
*/
|
|
7307
|
+
resourceType?: pulumi.Input<string>;
|
|
7308
|
+
}
|
|
7309
|
+
interface ServiceRouteApiSpecResponseFilterAttribute {
|
|
7310
|
+
/**
|
|
7311
|
+
* Source field path JSON Pointer
|
|
7312
|
+
*/
|
|
7313
|
+
field?: pulumi.Input<string>;
|
|
7314
|
+
/**
|
|
7315
|
+
* Target attribute name
|
|
7316
|
+
*/
|
|
7317
|
+
target?: pulumi.Input<string>;
|
|
7318
|
+
}
|
|
7319
|
+
interface ServiceTag {
|
|
7320
|
+
/**
|
|
7321
|
+
* Tag key
|
|
7322
|
+
*/
|
|
7323
|
+
key?: pulumi.Input<string>;
|
|
7324
|
+
/**
|
|
7325
|
+
* Tag value
|
|
7326
|
+
*/
|
|
7327
|
+
value?: pulumi.Input<string>;
|
|
7328
|
+
}
|
|
7329
|
+
}
|
|
7173
7330
|
export declare namespace kafka {
|
|
7174
7331
|
interface AllowListAssociatedInstance {
|
|
7175
7332
|
/**
|
|
@@ -7265,6 +7422,52 @@ export declare namespace kafka {
|
|
|
7265
7422
|
}
|
|
7266
7423
|
}
|
|
7267
7424
|
export declare namespace kms {
|
|
7425
|
+
interface KeyAsymmetricCiphertext {
|
|
7426
|
+
/**
|
|
7427
|
+
* Encryption algorithm. Optional values: RSAES*OAEP*SHA_256, SM2PKE.
|
|
7428
|
+
*/
|
|
7429
|
+
algorithm?: pulumi.Input<string>;
|
|
7430
|
+
/**
|
|
7431
|
+
* Ciphertext of encryption result, Base64-encoded.
|
|
7432
|
+
*/
|
|
7433
|
+
ciphertextBlob?: pulumi.Input<string>;
|
|
7434
|
+
/**
|
|
7435
|
+
* Plaintext to be encrypted, Base64-encoded.
|
|
7436
|
+
*/
|
|
7437
|
+
plaintext?: pulumi.Input<string>;
|
|
7438
|
+
}
|
|
7439
|
+
interface KeyAsymmetricSignature {
|
|
7440
|
+
/**
|
|
7441
|
+
* Signature algorithm, for example: RSA*PSS*SHA*256, RSA*PKCS1*SHA*256, ECDSA*SHA*256, SM2_DSA.
|
|
7442
|
+
*/
|
|
7443
|
+
algorithm?: pulumi.Input<string>;
|
|
7444
|
+
/**
|
|
7445
|
+
* Message to be signed, Base64-encoded.
|
|
7446
|
+
*/
|
|
7447
|
+
message?: pulumi.Input<string>;
|
|
7448
|
+
/**
|
|
7449
|
+
* Message type. Optional values: RAW, DIGEST.
|
|
7450
|
+
*/
|
|
7451
|
+
messageType?: pulumi.Input<string>;
|
|
7452
|
+
/**
|
|
7453
|
+
* Signature result, Base64-encoded.
|
|
7454
|
+
*/
|
|
7455
|
+
signature?: pulumi.Input<string>;
|
|
7456
|
+
}
|
|
7457
|
+
interface KeyCiphertext {
|
|
7458
|
+
/**
|
|
7459
|
+
* Ciphertext of encryption result, Base64-encoded.
|
|
7460
|
+
*/
|
|
7461
|
+
ciphertextBlob?: pulumi.Input<string>;
|
|
7462
|
+
/**
|
|
7463
|
+
* Encryption context JSON string.
|
|
7464
|
+
*/
|
|
7465
|
+
encryptionContext?: pulumi.Input<string>;
|
|
7466
|
+
/**
|
|
7467
|
+
* Plaintext to be encrypted, Base64-encoded.
|
|
7468
|
+
*/
|
|
7469
|
+
plaintext?: pulumi.Input<string>;
|
|
7470
|
+
}
|
|
7268
7471
|
interface KeyMultiRegionConfiguration {
|
|
7269
7472
|
/**
|
|
7270
7473
|
* Multi-region key type.
|
|
@@ -7296,6 +7499,61 @@ export declare namespace kms {
|
|
|
7296
7499
|
*/
|
|
7297
7500
|
trn?: pulumi.Input<string>;
|
|
7298
7501
|
}
|
|
7502
|
+
interface KeyReEncrypt {
|
|
7503
|
+
/**
|
|
7504
|
+
* Re-encrypted ciphertext, Base64-encoded.
|
|
7505
|
+
*/
|
|
7506
|
+
ciphertextBlob?: pulumi.Input<string>;
|
|
7507
|
+
/**
|
|
7508
|
+
* New encryption context JSON string.
|
|
7509
|
+
*/
|
|
7510
|
+
newEncryptionContext?: pulumi.Input<string>;
|
|
7511
|
+
/**
|
|
7512
|
+
* Target key ID. If not specified, you must provide NewKeyringName and NewKeyName.
|
|
7513
|
+
*/
|
|
7514
|
+
newKeyId?: pulumi.Input<string>;
|
|
7515
|
+
/**
|
|
7516
|
+
* Target key name.
|
|
7517
|
+
*/
|
|
7518
|
+
newKeyName?: pulumi.Input<string>;
|
|
7519
|
+
/**
|
|
7520
|
+
* Name of the keyring to which the target key belongs.
|
|
7521
|
+
*/
|
|
7522
|
+
newKeyringName?: pulumi.Input<string>;
|
|
7523
|
+
/**
|
|
7524
|
+
* Old encryption context JSON string.
|
|
7525
|
+
*/
|
|
7526
|
+
oldEncryptionContext?: pulumi.Input<string>;
|
|
7527
|
+
/**
|
|
7528
|
+
* Source ciphertext to be re-encrypted, Base64-encoded.
|
|
7529
|
+
*/
|
|
7530
|
+
sourceCiphertextBlob?: pulumi.Input<string>;
|
|
7531
|
+
}
|
|
7532
|
+
interface KeyReplicateKey {
|
|
7533
|
+
/**
|
|
7534
|
+
* Replica key description.
|
|
7535
|
+
*/
|
|
7536
|
+
description?: pulumi.Input<string>;
|
|
7537
|
+
/**
|
|
7538
|
+
* Replica key ID.
|
|
7539
|
+
*/
|
|
7540
|
+
replicaKeyId?: pulumi.Input<string>;
|
|
7541
|
+
/**
|
|
7542
|
+
* Target region of the replica key.
|
|
7543
|
+
*/
|
|
7544
|
+
replicaRegion?: pulumi.Input<string>;
|
|
7545
|
+
tags?: pulumi.Input<pulumi.Input<inputs.kms.KeyReplicateKeyTag>[]>;
|
|
7546
|
+
}
|
|
7547
|
+
interface KeyReplicateKeyTag {
|
|
7548
|
+
/**
|
|
7549
|
+
* KMS key label key.
|
|
7550
|
+
*/
|
|
7551
|
+
key?: pulumi.Input<string>;
|
|
7552
|
+
/**
|
|
7553
|
+
* KMS key label value.
|
|
7554
|
+
*/
|
|
7555
|
+
value?: pulumi.Input<string>;
|
|
7556
|
+
}
|
|
7299
7557
|
interface KeyTag {
|
|
7300
7558
|
/**
|
|
7301
7559
|
* KMS key label key.
|
|
@@ -9098,6 +9356,16 @@ export declare namespace rdspostgresql {
|
|
|
9098
9356
|
*/
|
|
9099
9357
|
value?: pulumi.Input<string>;
|
|
9100
9358
|
}
|
|
9359
|
+
interface ParameterTemplateTemplateParam {
|
|
9360
|
+
/**
|
|
9361
|
+
* Parameter name
|
|
9362
|
+
*/
|
|
9363
|
+
name: pulumi.Input<string>;
|
|
9364
|
+
/**
|
|
9365
|
+
* Parameter value
|
|
9366
|
+
*/
|
|
9367
|
+
value: pulumi.Input<string>;
|
|
9368
|
+
}
|
|
9101
9369
|
}
|
|
9102
9370
|
export declare namespace redis {
|
|
9103
9371
|
interface AllowListAssociatedInstance {
|