@byteplus/pulumi-bytepluscc 0.0.30 → 0.0.32

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.
Files changed (64) hide show
  1. package/README.md +7 -1
  2. package/cloudmonitor/contactGroup.d.ts +106 -0
  3. package/cloudmonitor/contactGroup.js +73 -0
  4. package/cloudmonitor/contactGroup.js.map +1 -0
  5. package/cloudmonitor/getContactGroup.d.ts +65 -0
  6. package/cloudmonitor/getContactGroup.js +28 -0
  7. package/cloudmonitor/getContactGroup.js.map +1 -0
  8. package/cloudmonitor/getContactGroups.d.ts +22 -0
  9. package/cloudmonitor/getContactGroups.js +24 -0
  10. package/cloudmonitor/getContactGroups.js.map +1 -0
  11. package/cloudmonitor/index.d.ts +9 -0
  12. package/cloudmonitor/index.js +12 -1
  13. package/cloudmonitor/index.js.map +1 -1
  14. package/config/vars.d.ts +7 -2
  15. package/config/vars.js +7 -0
  16. package/config/vars.js.map +1 -1
  17. package/iam/getRole.d.ts +4 -0
  18. package/iam/getRole.js.map +1 -1
  19. package/iam/role.d.ts +18 -34
  20. package/iam/role.js +3 -36
  21. package/iam/role.js.map +1 -1
  22. package/id/getService.d.ts +109 -0
  23. package/id/getService.js +28 -0
  24. package/id/getService.js.map +1 -0
  25. package/id/getServices.d.ts +22 -0
  26. package/id/getServices.js +24 -0
  27. package/id/getServices.js.map +1 -0
  28. package/id/index.d.ts +9 -0
  29. package/id/index.js +28 -0
  30. package/id/index.js.map +1 -0
  31. package/id/service.d.ts +209 -0
  32. package/id/service.js +101 -0
  33. package/id/service.js.map +1 -0
  34. package/index.d.ts +2 -1
  35. package/index.js +3 -1
  36. package/index.js.map +1 -1
  37. package/kms/getKey.d.ts +24 -0
  38. package/kms/getKey.js.map +1 -1
  39. package/kms/key.d.ts +72 -0
  40. package/kms/key.js +12 -0
  41. package/kms/key.js.map +1 -1
  42. package/package.json +1 -1
  43. package/provider.d.ts +14 -4
  44. package/provider.js +2 -1
  45. package/provider.js.map +1 -1
  46. package/rdspostgresql/getParameterTemplate.d.ts +89 -0
  47. package/rdspostgresql/getParameterTemplate.js +28 -0
  48. package/rdspostgresql/getParameterTemplate.js.map +1 -0
  49. package/rdspostgresql/getParameterTemplates.d.ts +22 -0
  50. package/rdspostgresql/getParameterTemplates.js +24 -0
  51. package/rdspostgresql/getParameterTemplates.js.map +1 -0
  52. package/rdspostgresql/index.d.ts +9 -0
  53. package/rdspostgresql/index.js +12 -1
  54. package/rdspostgresql/index.js.map +1 -1
  55. package/rdspostgresql/parameterTemplate.d.ts +186 -0
  56. package/rdspostgresql/parameterTemplate.js +118 -0
  57. package/rdspostgresql/parameterTemplate.js.map +1 -0
  58. package/redis/getInstance.d.ts +9 -5
  59. package/redis/getInstance.js.map +1 -1
  60. package/redis/instance.d.ts +25 -13
  61. package/redis/instance.js +2 -0
  62. package/redis/instance.js.map +1 -1
  63. package/types/input.d.ts +268 -0
  64. package/types/output.d.ts +616 -0
package/types/input.d.ts CHANGED
@@ -4390,6 +4390,12 @@ export declare namespace cloudidentity {
4390
4390
  }
4391
4391
  }
4392
4392
  export declare namespace cloudmonitor {
4393
+ interface ContactGroupContact {
4394
+ /**
4395
+ * 联系人ID。
4396
+ */
4397
+ contactId?: pulumi.Input<string>;
4398
+ }
4393
4399
  interface RuleCondition {
4394
4400
  /**
4395
4401
  * 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.
@@ -6970,6 +6976,157 @@ export declare namespace iam {
6970
6976
  value?: pulumi.Input<string>;
6971
6977
  }
6972
6978
  }
6979
+ export declare namespace id {
6980
+ interface ServiceBackend {
6981
+ /**
6982
+ * Backend service domain name, for example api.example.com
6983
+ */
6984
+ backendDomain: pulumi.Input<string>;
6985
+ /**
6986
+ * Backend service port, default is 443
6987
+ */
6988
+ backendPort?: pulumi.Input<number>;
6989
+ /**
6990
+ * Whether to enable TLS
6991
+ */
6992
+ enableTls: pulumi.Input<boolean>;
6993
+ /**
6994
+ * Communication protocol, for example HTTP or HTTPS
6995
+ */
6996
+ protocol?: pulumi.Input<string>;
6997
+ /**
6998
+ * Request timeout in seconds, default is 30 seconds
6999
+ */
7000
+ timeoutSeconds?: pulumi.Input<number>;
7001
+ }
7002
+ interface ServiceRoute {
7003
+ /**
7004
+ * API specification configuration
7005
+ */
7006
+ apiSpec?: pulumi.Input<inputs.id.ServiceRouteApiSpec>;
7007
+ /**
7008
+ * Authentication resource type
7009
+ */
7010
+ authResourceType?: pulumi.Input<string>;
7011
+ /**
7012
+ * Route description
7013
+ */
7014
+ description?: pulumi.Input<string>;
7015
+ /**
7016
+ * HTTP methods, separated by commas
7017
+ */
7018
+ method?: pulumi.Input<string>;
7019
+ /**
7020
+ * Request path, 1–256 characters
7021
+ */
7022
+ path?: pulumi.Input<string>;
7023
+ /**
7024
+ * Path match type, for example Exact, Prefix
7025
+ */
7026
+ pathMatchType?: pulumi.Input<string>;
7027
+ /**
7028
+ * Permission pool name
7029
+ */
7030
+ permissionPool?: pulumi.Input<string>;
7031
+ /**
7032
+ * Route priority, lower values indicate higher priority
7033
+ */
7034
+ priority?: pulumi.Input<number>;
7035
+ /**
7036
+ * Resource type, for example Collection
7037
+ */
7038
+ resourceType?: pulumi.Input<string>;
7039
+ /**
7040
+ * Route name, 1–64 characters
7041
+ */
7042
+ routeName?: pulumi.Input<string>;
7043
+ }
7044
+ interface ServiceRouteApiSpec {
7045
+ /**
7046
+ * Operation type, for example READ
7047
+ */
7048
+ actionType?: pulumi.Input<string>;
7049
+ /**
7050
+ * Operation value, for example search
7051
+ */
7052
+ actionValue?: pulumi.Input<string>;
7053
+ extractors?: pulumi.Input<pulumi.Input<inputs.id.ServiceRouteApiSpecExtractor>[]>;
7054
+ /**
7055
+ * Resource identifier type
7056
+ */
7057
+ identifierType?: pulumi.Input<number>;
7058
+ /**
7059
+ * Resource identifier value, for example JSON Pointer
7060
+ */
7061
+ identifierValue?: pulumi.Input<string>;
7062
+ responseFilters?: pulumi.Input<pulumi.Input<inputs.id.ServiceRouteApiSpecResponseFilter>[]>;
7063
+ }
7064
+ interface ServiceRouteApiSpecExtractor {
7065
+ /**
7066
+ * Whether used for authentication
7067
+ */
7068
+ isAuth?: pulumi.Input<boolean>;
7069
+ /**
7070
+ * JSON Pointer expression
7071
+ */
7072
+ path?: pulumi.Input<string>;
7073
+ /**
7074
+ * Extracted resource type
7075
+ */
7076
+ resourceType?: pulumi.Input<string>;
7077
+ /**
7078
+ * Extraction source enumeration value
7079
+ */
7080
+ source?: pulumi.Input<number>;
7081
+ }
7082
+ interface ServiceRouteApiSpecResponseFilter {
7083
+ attributes?: pulumi.Input<pulumi.Input<inputs.id.ServiceRouteApiSpecResponseFilterAttribute>[]>;
7084
+ /**
7085
+ * Array path JSON Pointer
7086
+ */
7087
+ filterPath?: pulumi.Input<string>;
7088
+ /**
7089
+ * ID field name
7090
+ */
7091
+ idField?: pulumi.Input<string>;
7092
+ /**
7093
+ * Whether used for authentication
7094
+ */
7095
+ isAuth?: pulumi.Input<boolean>;
7096
+ /**
7097
+ * Filter mode enumeration value
7098
+ */
7099
+ mode?: pulumi.Input<number>;
7100
+ /**
7101
+ * Resource path JSON Pointer
7102
+ */
7103
+ resourcePath?: pulumi.Input<string>;
7104
+ /**
7105
+ * Filtered resource type
7106
+ */
7107
+ resourceType?: pulumi.Input<string>;
7108
+ }
7109
+ interface ServiceRouteApiSpecResponseFilterAttribute {
7110
+ /**
7111
+ * Source field path JSON Pointer
7112
+ */
7113
+ field?: pulumi.Input<string>;
7114
+ /**
7115
+ * Target attribute name
7116
+ */
7117
+ target?: pulumi.Input<string>;
7118
+ }
7119
+ interface ServiceTag {
7120
+ /**
7121
+ * Tag key
7122
+ */
7123
+ key?: pulumi.Input<string>;
7124
+ /**
7125
+ * Tag value
7126
+ */
7127
+ value?: pulumi.Input<string>;
7128
+ }
7129
+ }
6973
7130
  export declare namespace kafka {
6974
7131
  interface AllowListAssociatedInstance {
6975
7132
  /**
@@ -7065,6 +7222,52 @@ export declare namespace kafka {
7065
7222
  }
7066
7223
  }
7067
7224
  export declare namespace kms {
7225
+ interface KeyAsymmetricCiphertext {
7226
+ /**
7227
+ * Encryption algorithm. Optional values: RSAES*OAEP*SHA_256, SM2PKE.
7228
+ */
7229
+ algorithm?: pulumi.Input<string>;
7230
+ /**
7231
+ * Ciphertext of encryption result, Base64-encoded.
7232
+ */
7233
+ ciphertextBlob?: pulumi.Input<string>;
7234
+ /**
7235
+ * Plaintext to be encrypted, Base64-encoded.
7236
+ */
7237
+ plaintext?: pulumi.Input<string>;
7238
+ }
7239
+ interface KeyAsymmetricSignature {
7240
+ /**
7241
+ * Signature algorithm, for example: RSA*PSS*SHA*256, RSA*PKCS1*SHA*256, ECDSA*SHA*256, SM2_DSA.
7242
+ */
7243
+ algorithm?: pulumi.Input<string>;
7244
+ /**
7245
+ * Message to be signed, Base64-encoded.
7246
+ */
7247
+ message?: pulumi.Input<string>;
7248
+ /**
7249
+ * Message type. Optional values: RAW, DIGEST.
7250
+ */
7251
+ messageType?: pulumi.Input<string>;
7252
+ /**
7253
+ * Signature result, Base64-encoded.
7254
+ */
7255
+ signature?: pulumi.Input<string>;
7256
+ }
7257
+ interface KeyCiphertext {
7258
+ /**
7259
+ * Ciphertext of encryption result, Base64-encoded.
7260
+ */
7261
+ ciphertextBlob?: pulumi.Input<string>;
7262
+ /**
7263
+ * Encryption context JSON string.
7264
+ */
7265
+ encryptionContext?: pulumi.Input<string>;
7266
+ /**
7267
+ * Plaintext to be encrypted, Base64-encoded.
7268
+ */
7269
+ plaintext?: pulumi.Input<string>;
7270
+ }
7068
7271
  interface KeyMultiRegionConfiguration {
7069
7272
  /**
7070
7273
  * Multi-region key type.
@@ -7096,6 +7299,61 @@ export declare namespace kms {
7096
7299
  */
7097
7300
  trn?: pulumi.Input<string>;
7098
7301
  }
7302
+ interface KeyReEncrypt {
7303
+ /**
7304
+ * Re-encrypted ciphertext, Base64-encoded.
7305
+ */
7306
+ ciphertextBlob?: pulumi.Input<string>;
7307
+ /**
7308
+ * New encryption context JSON string.
7309
+ */
7310
+ newEncryptionContext?: pulumi.Input<string>;
7311
+ /**
7312
+ * Target key ID. If not specified, you must provide NewKeyringName and NewKeyName.
7313
+ */
7314
+ newKeyId?: pulumi.Input<string>;
7315
+ /**
7316
+ * Target key name.
7317
+ */
7318
+ newKeyName?: pulumi.Input<string>;
7319
+ /**
7320
+ * Name of the keyring to which the target key belongs.
7321
+ */
7322
+ newKeyringName?: pulumi.Input<string>;
7323
+ /**
7324
+ * Old encryption context JSON string.
7325
+ */
7326
+ oldEncryptionContext?: pulumi.Input<string>;
7327
+ /**
7328
+ * Source ciphertext to be re-encrypted, Base64-encoded.
7329
+ */
7330
+ sourceCiphertextBlob?: pulumi.Input<string>;
7331
+ }
7332
+ interface KeyReplicateKey {
7333
+ /**
7334
+ * Replica key description.
7335
+ */
7336
+ description?: pulumi.Input<string>;
7337
+ /**
7338
+ * Replica key ID.
7339
+ */
7340
+ replicaKeyId?: pulumi.Input<string>;
7341
+ /**
7342
+ * Target region of the replica key.
7343
+ */
7344
+ replicaRegion?: pulumi.Input<string>;
7345
+ tags?: pulumi.Input<pulumi.Input<inputs.kms.KeyReplicateKeyTag>[]>;
7346
+ }
7347
+ interface KeyReplicateKeyTag {
7348
+ /**
7349
+ * KMS key label key.
7350
+ */
7351
+ key?: pulumi.Input<string>;
7352
+ /**
7353
+ * KMS key label value.
7354
+ */
7355
+ value?: pulumi.Input<string>;
7356
+ }
7099
7357
  interface KeyTag {
7100
7358
  /**
7101
7359
  * KMS key label key.
@@ -8898,6 +9156,16 @@ export declare namespace rdspostgresql {
8898
9156
  */
8899
9157
  value?: pulumi.Input<string>;
8900
9158
  }
9159
+ interface ParameterTemplateTemplateParam {
9160
+ /**
9161
+ * Parameter name
9162
+ */
9163
+ name: pulumi.Input<string>;
9164
+ /**
9165
+ * Parameter value
9166
+ */
9167
+ value: pulumi.Input<string>;
9168
+ }
8901
9169
  }
8902
9170
  export declare namespace redis {
8903
9171
  interface AllowListAssociatedInstance {