@byteplus/pulumi-bytepluscc 0.0.31 → 0.0.33

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 (77) hide show
  1. package/README.md +6 -1
  2. package/alb/getLoadBalancer.d.ts +8 -0
  3. package/alb/getLoadBalancer.js.map +1 -1
  4. package/alb/loadBalancer.d.ts +24 -0
  5. package/alb/loadBalancer.js +4 -0
  6. package/alb/loadBalancer.js.map +1 -1
  7. package/clb/checkLogProject.d.ts +62 -0
  8. package/clb/checkLogProject.js +67 -0
  9. package/clb/checkLogProject.js.map +1 -0
  10. package/clb/checkLogTopic.d.ts +81 -0
  11. package/clb/checkLogTopic.js +78 -0
  12. package/clb/checkLogTopic.js.map +1 -0
  13. package/clb/clb.d.ts +0 -8
  14. package/clb/clb.js +2 -2
  15. package/clb/clb.js.map +1 -1
  16. package/clb/getCheckLogProject.d.ts +40 -0
  17. package/clb/getCheckLogProject.js +28 -0
  18. package/clb/getCheckLogProject.js.map +1 -0
  19. package/clb/getCheckLogProjects.d.ts +22 -0
  20. package/clb/getCheckLogProjects.js +24 -0
  21. package/clb/getCheckLogProjects.js.map +1 -0
  22. package/clb/getCheckLogTopic.d.ts +44 -0
  23. package/clb/getCheckLogTopic.js +28 -0
  24. package/clb/getCheckLogTopic.js.map +1 -0
  25. package/clb/getCheckLogTopics.d.ts +22 -0
  26. package/clb/getCheckLogTopics.js +24 -0
  27. package/clb/getCheckLogTopics.js.map +1 -0
  28. package/clb/index.d.ts +18 -0
  29. package/clb/index.js +24 -1
  30. package/clb/index.js.map +1 -1
  31. package/cloudmonitor/contactGroup.d.ts +106 -0
  32. package/cloudmonitor/contactGroup.js +73 -0
  33. package/cloudmonitor/contactGroup.js.map +1 -0
  34. package/cloudmonitor/getContactGroup.d.ts +65 -0
  35. package/cloudmonitor/getContactGroup.js +28 -0
  36. package/cloudmonitor/getContactGroup.js.map +1 -0
  37. package/cloudmonitor/getContactGroups.d.ts +22 -0
  38. package/cloudmonitor/getContactGroups.js +24 -0
  39. package/cloudmonitor/getContactGroups.js.map +1 -0
  40. package/cloudmonitor/index.d.ts +9 -0
  41. package/cloudmonitor/index.js +12 -1
  42. package/cloudmonitor/index.js.map +1 -1
  43. package/id/getService.d.ts +109 -0
  44. package/id/getService.js +28 -0
  45. package/id/getService.js.map +1 -0
  46. package/id/getServices.d.ts +22 -0
  47. package/id/getServices.js +24 -0
  48. package/id/getServices.js.map +1 -0
  49. package/id/index.d.ts +9 -0
  50. package/id/index.js +28 -0
  51. package/id/index.js.map +1 -0
  52. package/id/service.d.ts +209 -0
  53. package/id/service.js +101 -0
  54. package/id/service.js.map +1 -0
  55. package/index.d.ts +2 -1
  56. package/index.js +3 -1
  57. package/index.js.map +1 -1
  58. package/package.json +1 -1
  59. package/rdspostgresql/getInstance.d.ts +8 -0
  60. package/rdspostgresql/getInstance.js.map +1 -1
  61. package/rdspostgresql/instance.d.ts +15 -0
  62. package/rdspostgresql/instance.js +4 -0
  63. package/rdspostgresql/instance.js.map +1 -1
  64. package/transitrouter/getRouteTablePropagation.d.ts +52 -0
  65. package/transitrouter/getRouteTablePropagation.js +28 -0
  66. package/transitrouter/getRouteTablePropagation.js.map +1 -0
  67. package/transitrouter/getRouteTablePropagations.d.ts +22 -0
  68. package/transitrouter/getRouteTablePropagations.js +24 -0
  69. package/transitrouter/getRouteTablePropagations.js.map +1 -0
  70. package/transitrouter/index.d.ts +9 -0
  71. package/transitrouter/index.js +12 -1
  72. package/transitrouter/index.js.map +1 -1
  73. package/transitrouter/routeTablePropagation.d.ts +97 -0
  74. package/transitrouter/routeTablePropagation.js +82 -0
  75. package/transitrouter/routeTablePropagation.js.map +1 -0
  76. package/types/input.d.ts +248 -4
  77. package/types/output.d.ts +518 -8
package/types/input.d.ts CHANGED
@@ -185,6 +185,20 @@ export declare namespace alb {
185
185
  */
186
186
  weight?: pulumi.Input<number>;
187
187
  }
188
+ interface LoadBalancerHealthLog {
189
+ /**
190
+ * Whether to enable access log
191
+ */
192
+ enabled?: pulumi.Input<boolean>;
193
+ /**
194
+ * TLS project ID bound to access log
195
+ */
196
+ projectId?: pulumi.Input<string>;
197
+ /**
198
+ * TLS subject ID bound to access log
199
+ */
200
+ topicId?: pulumi.Input<string>;
201
+ }
188
202
  interface LoadBalancerIpv6EipBillingConfig {
189
203
  /**
190
204
  * Peak bandwidth of IPv6 EIP, in Mbps.
@@ -209,6 +223,20 @@ export declare namespace alb {
209
223
  */
210
224
  value?: pulumi.Input<string>;
211
225
  }
226
+ interface LoadBalancerTlsAccessLog {
227
+ /**
228
+ * Whether to enable access log
229
+ */
230
+ enabled?: pulumi.Input<boolean>;
231
+ /**
232
+ * TLS project ID bound to access log
233
+ */
234
+ projectId?: pulumi.Input<string>;
235
+ /**
236
+ * TLS subject ID bound to access log
237
+ */
238
+ topicId?: pulumi.Input<string>;
239
+ }
212
240
  interface LoadBalancerZoneMapping {
213
241
  /**
214
242
  * Subnet ID providing services within the availability zone.
@@ -3878,13 +3906,13 @@ export declare namespace clb {
3878
3906
  */
3879
3907
  bucketName?: pulumi.Input<string>;
3880
3908
  /**
3881
- * Log delivery type. Available values: tos (default): Deliver logs to object storage service TOS. tls: Deliver logs to log service TLS
3909
+ * Enable access log TOS feature?
3882
3910
  */
3883
- deliveryType?: pulumi.Input<string>;
3911
+ enabled?: pulumi.Input<boolean>;
3884
3912
  /**
3885
- * Enable access log (Layer 7) delivery to object storage TOS
3913
+ * Enable access log TLS feature?
3886
3914
  */
3887
- enabled?: pulumi.Input<boolean>;
3915
+ tlsEnabled?: pulumi.Input<boolean>;
3888
3916
  /**
3889
3917
  * Log project
3890
3918
  */
@@ -4390,6 +4418,12 @@ export declare namespace cloudidentity {
4390
4418
  }
4391
4419
  }
4392
4420
  export declare namespace cloudmonitor {
4421
+ interface ContactGroupContact {
4422
+ /**
4423
+ * Contact ID
4424
+ */
4425
+ contactId?: pulumi.Input<string>;
4426
+ }
4393
4427
  interface RuleCondition {
4394
4428
  /**
4395
4429
  * 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 +7004,157 @@ export declare namespace iam {
6970
7004
  value?: pulumi.Input<string>;
6971
7005
  }
6972
7006
  }
7007
+ export declare namespace id {
7008
+ interface ServiceBackend {
7009
+ /**
7010
+ * Backend service domain name, for example api.example.com
7011
+ */
7012
+ backendDomain: pulumi.Input<string>;
7013
+ /**
7014
+ * Backend service port, default is 443
7015
+ */
7016
+ backendPort?: pulumi.Input<number>;
7017
+ /**
7018
+ * Whether to enable TLS
7019
+ */
7020
+ enableTls: pulumi.Input<boolean>;
7021
+ /**
7022
+ * Communication protocol, for example HTTP or HTTPS
7023
+ */
7024
+ protocol?: pulumi.Input<string>;
7025
+ /**
7026
+ * Request timeout in seconds, default is 30 seconds
7027
+ */
7028
+ timeoutSeconds?: pulumi.Input<number>;
7029
+ }
7030
+ interface ServiceRoute {
7031
+ /**
7032
+ * API specification configuration
7033
+ */
7034
+ apiSpec?: pulumi.Input<inputs.id.ServiceRouteApiSpec>;
7035
+ /**
7036
+ * Authentication resource type
7037
+ */
7038
+ authResourceType?: pulumi.Input<string>;
7039
+ /**
7040
+ * Route description
7041
+ */
7042
+ description?: pulumi.Input<string>;
7043
+ /**
7044
+ * HTTP methods, separated by commas
7045
+ */
7046
+ method?: pulumi.Input<string>;
7047
+ /**
7048
+ * Request path, 1–256 characters
7049
+ */
7050
+ path?: pulumi.Input<string>;
7051
+ /**
7052
+ * Path match type, for example Exact, Prefix
7053
+ */
7054
+ pathMatchType?: pulumi.Input<string>;
7055
+ /**
7056
+ * Permission pool name
7057
+ */
7058
+ permissionPool?: pulumi.Input<string>;
7059
+ /**
7060
+ * Route priority, lower values indicate higher priority
7061
+ */
7062
+ priority?: pulumi.Input<number>;
7063
+ /**
7064
+ * Resource type, for example Collection
7065
+ */
7066
+ resourceType?: pulumi.Input<string>;
7067
+ /**
7068
+ * Route name, 1–64 characters
7069
+ */
7070
+ routeName?: pulumi.Input<string>;
7071
+ }
7072
+ interface ServiceRouteApiSpec {
7073
+ /**
7074
+ * Operation type, for example READ
7075
+ */
7076
+ actionType?: pulumi.Input<string>;
7077
+ /**
7078
+ * Operation value, for example search
7079
+ */
7080
+ actionValue?: pulumi.Input<string>;
7081
+ extractors?: pulumi.Input<pulumi.Input<inputs.id.ServiceRouteApiSpecExtractor>[]>;
7082
+ /**
7083
+ * Resource identifier type
7084
+ */
7085
+ identifierType?: pulumi.Input<number>;
7086
+ /**
7087
+ * Resource identifier value, for example JSON Pointer
7088
+ */
7089
+ identifierValue?: pulumi.Input<string>;
7090
+ responseFilters?: pulumi.Input<pulumi.Input<inputs.id.ServiceRouteApiSpecResponseFilter>[]>;
7091
+ }
7092
+ interface ServiceRouteApiSpecExtractor {
7093
+ /**
7094
+ * Whether used for authentication
7095
+ */
7096
+ isAuth?: pulumi.Input<boolean>;
7097
+ /**
7098
+ * JSON Pointer expression
7099
+ */
7100
+ path?: pulumi.Input<string>;
7101
+ /**
7102
+ * Extracted resource type
7103
+ */
7104
+ resourceType?: pulumi.Input<string>;
7105
+ /**
7106
+ * Extraction source enumeration value
7107
+ */
7108
+ source?: pulumi.Input<number>;
7109
+ }
7110
+ interface ServiceRouteApiSpecResponseFilter {
7111
+ attributes?: pulumi.Input<pulumi.Input<inputs.id.ServiceRouteApiSpecResponseFilterAttribute>[]>;
7112
+ /**
7113
+ * Array path JSON Pointer
7114
+ */
7115
+ filterPath?: pulumi.Input<string>;
7116
+ /**
7117
+ * ID field name
7118
+ */
7119
+ idField?: pulumi.Input<string>;
7120
+ /**
7121
+ * Whether used for authentication
7122
+ */
7123
+ isAuth?: pulumi.Input<boolean>;
7124
+ /**
7125
+ * Filter mode enumeration value
7126
+ */
7127
+ mode?: pulumi.Input<number>;
7128
+ /**
7129
+ * Resource path JSON Pointer
7130
+ */
7131
+ resourcePath?: pulumi.Input<string>;
7132
+ /**
7133
+ * Filtered resource type
7134
+ */
7135
+ resourceType?: pulumi.Input<string>;
7136
+ }
7137
+ interface ServiceRouteApiSpecResponseFilterAttribute {
7138
+ /**
7139
+ * Source field path JSON Pointer
7140
+ */
7141
+ field?: pulumi.Input<string>;
7142
+ /**
7143
+ * Target attribute name
7144
+ */
7145
+ target?: pulumi.Input<string>;
7146
+ }
7147
+ interface ServiceTag {
7148
+ /**
7149
+ * Tag key
7150
+ */
7151
+ key?: pulumi.Input<string>;
7152
+ /**
7153
+ * Tag value
7154
+ */
7155
+ value?: pulumi.Input<string>;
7156
+ }
7157
+ }
6973
7158
  export declare namespace kafka {
6974
7159
  interface AllowListAssociatedInstance {
6975
7160
  /**
@@ -8989,6 +9174,65 @@ export declare namespace rdspostgresql {
8989
9174
  */
8990
9175
  zoneId: pulumi.Input<string>;
8991
9176
  }
9177
+ interface InstanceReplicationSlot {
9178
+ /**
9179
+ * Database associated with the slot
9180
+ */
9181
+ database?: pulumi.Input<string>;
9182
+ /**
9183
+ * Connected client IP address
9184
+ */
9185
+ ipAddress?: pulumi.Input<string>;
9186
+ /**
9187
+ * Plugin used by the slot
9188
+ */
9189
+ plugin?: pulumi.Input<string>;
9190
+ /**
9191
+ * Slot name
9192
+ */
9193
+ slotName?: pulumi.Input<string>;
9194
+ /**
9195
+ * Slot status
9196
+ */
9197
+ slotStatus?: pulumi.Input<string>;
9198
+ /**
9199
+ * Slot type
9200
+ */
9201
+ slotType?: pulumi.Input<string>;
9202
+ /**
9203
+ * Whether it is a temporary slot
9204
+ */
9205
+ temporary?: pulumi.Input<boolean>;
9206
+ /**
9207
+ * WAL delay size
9208
+ */
9209
+ walDelay?: pulumi.Input<number>;
9210
+ }
9211
+ interface InstanceRestoreToExistedInstance {
9212
+ /**
9213
+ * Backup set ID
9214
+ */
9215
+ backupId?: pulumi.Input<string>;
9216
+ databases?: pulumi.Input<pulumi.Input<inputs.rdspostgresql.InstanceRestoreToExistedInstanceDatabase>[]>;
9217
+ /**
9218
+ * Source instance ID
9219
+ */
9220
+ sourceDbInstanceId?: pulumi.Input<string>;
9221
+ /**
9222
+ * Database account for the target instance
9223
+ */
9224
+ targetDbInstanceAccount?: pulumi.Input<string>;
9225
+ }
9226
+ interface InstanceRestoreToExistedInstanceDatabase {
9227
+ /**
9228
+ * Source database name
9229
+ */
9230
+ dbName?: pulumi.Input<string>;
9231
+ /**
9232
+ * Name of the new database after restoration
9233
+ */
9234
+ newDbName?: pulumi.Input<string>;
9235
+ }
8992
9236
  interface InstanceTag {
8993
9237
  /**
8994
9238
  * Tag key