@volcengine/pulumi-volcenginecc 0.0.39 → 0.0.41
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 +7 -1
- package/alb/getLoadBalancer.d.ts +8 -0
- package/alb/getLoadBalancer.js.map +1 -1
- package/alb/loadBalancer.d.ts +24 -0
- package/alb/loadBalancer.js +4 -0
- package/alb/loadBalancer.js.map +1 -1
- package/clb/checkLogProject.d.ts +62 -0
- package/clb/checkLogProject.js +67 -0
- package/clb/checkLogProject.js.map +1 -0
- package/clb/checkLogTopic.d.ts +81 -0
- package/clb/checkLogTopic.js +78 -0
- package/clb/checkLogTopic.js.map +1 -0
- package/clb/clb.d.ts +0 -8
- package/clb/clb.js +2 -2
- package/clb/clb.js.map +1 -1
- package/clb/getCheckLogProject.d.ts +40 -0
- package/clb/getCheckLogProject.js +28 -0
- package/clb/getCheckLogProject.js.map +1 -0
- package/clb/getCheckLogProjects.d.ts +22 -0
- package/clb/getCheckLogProjects.js +24 -0
- package/clb/getCheckLogProjects.js.map +1 -0
- package/clb/getCheckLogTopic.d.ts +44 -0
- package/clb/getCheckLogTopic.js +28 -0
- package/clb/getCheckLogTopic.js.map +1 -0
- package/clb/getCheckLogTopics.d.ts +22 -0
- package/clb/getCheckLogTopics.js +24 -0
- package/clb/getCheckLogTopics.js.map +1 -0
- package/clb/index.d.ts +18 -0
- package/clb/index.js +24 -1
- package/clb/index.js.map +1 -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/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/package.json +1 -1
- package/rdspostgresql/getInstance.d.ts +8 -0
- package/rdspostgresql/getInstance.js.map +1 -1
- package/rdspostgresql/instance.d.ts +15 -0
- package/rdspostgresql/instance.js +4 -0
- package/rdspostgresql/instance.js.map +1 -1
- package/transitrouter/getRouteTablePropagation.d.ts +52 -0
- package/transitrouter/getRouteTablePropagation.js +28 -0
- package/transitrouter/getRouteTablePropagation.js.map +1 -0
- package/transitrouter/getRouteTablePropagations.d.ts +22 -0
- package/transitrouter/getRouteTablePropagations.js +24 -0
- package/transitrouter/getRouteTablePropagations.js.map +1 -0
- package/transitrouter/index.d.ts +9 -0
- package/transitrouter/index.js +12 -1
- package/transitrouter/index.js.map +1 -1
- package/transitrouter/routeTablePropagation.d.ts +97 -0
- package/transitrouter/routeTablePropagation.js +82 -0
- package/transitrouter/routeTablePropagation.js.map +1 -0
- package/types/input.d.ts +248 -4
- package/types/output.d.ts +518 -8
package/types/input.d.ts
CHANGED
|
@@ -201,6 +201,20 @@ export declare namespace alb {
|
|
|
201
201
|
*/
|
|
202
202
|
weight?: pulumi.Input<number>;
|
|
203
203
|
}
|
|
204
|
+
interface LoadBalancerHealthLog {
|
|
205
|
+
/**
|
|
206
|
+
* Whether to enable access log
|
|
207
|
+
*/
|
|
208
|
+
enabled?: pulumi.Input<boolean>;
|
|
209
|
+
/**
|
|
210
|
+
* TLS project ID bound to access log
|
|
211
|
+
*/
|
|
212
|
+
projectId?: pulumi.Input<string>;
|
|
213
|
+
/**
|
|
214
|
+
* TLS subject ID bound to access log
|
|
215
|
+
*/
|
|
216
|
+
topicId?: pulumi.Input<string>;
|
|
217
|
+
}
|
|
204
218
|
interface LoadBalancerIpv6EipBillingConfig {
|
|
205
219
|
/**
|
|
206
220
|
* Peak bandwidth of IPv6 EIP, in Mbps.
|
|
@@ -225,6 +239,20 @@ export declare namespace alb {
|
|
|
225
239
|
*/
|
|
226
240
|
value?: pulumi.Input<string>;
|
|
227
241
|
}
|
|
242
|
+
interface LoadBalancerTlsAccessLog {
|
|
243
|
+
/**
|
|
244
|
+
* Whether to enable access log
|
|
245
|
+
*/
|
|
246
|
+
enabled?: pulumi.Input<boolean>;
|
|
247
|
+
/**
|
|
248
|
+
* TLS project ID bound to access log
|
|
249
|
+
*/
|
|
250
|
+
projectId?: pulumi.Input<string>;
|
|
251
|
+
/**
|
|
252
|
+
* TLS subject ID bound to access log
|
|
253
|
+
*/
|
|
254
|
+
topicId?: pulumi.Input<string>;
|
|
255
|
+
}
|
|
228
256
|
interface LoadBalancerZoneMapping {
|
|
229
257
|
/**
|
|
230
258
|
* Subnet ID providing services within the availability zone.
|
|
@@ -3992,13 +4020,13 @@ export declare namespace clb {
|
|
|
3992
4020
|
*/
|
|
3993
4021
|
bucketName?: pulumi.Input<string>;
|
|
3994
4022
|
/**
|
|
3995
|
-
*
|
|
4023
|
+
* Enable access log TOS feature?
|
|
3996
4024
|
*/
|
|
3997
|
-
|
|
4025
|
+
enabled?: pulumi.Input<boolean>;
|
|
3998
4026
|
/**
|
|
3999
|
-
* Enable access log
|
|
4027
|
+
* Enable access log TLS feature?
|
|
4000
4028
|
*/
|
|
4001
|
-
|
|
4029
|
+
tlsEnabled?: pulumi.Input<boolean>;
|
|
4002
4030
|
/**
|
|
4003
4031
|
* Log project
|
|
4004
4032
|
*/
|
|
@@ -4504,6 +4532,12 @@ export declare namespace cloudidentity {
|
|
|
4504
4532
|
}
|
|
4505
4533
|
}
|
|
4506
4534
|
export declare namespace cloudmonitor {
|
|
4535
|
+
interface ContactGroupContact {
|
|
4536
|
+
/**
|
|
4537
|
+
* Contact ID
|
|
4538
|
+
*/
|
|
4539
|
+
contactId?: pulumi.Input<string>;
|
|
4540
|
+
}
|
|
4507
4541
|
interface RuleCondition {
|
|
4508
4542
|
/**
|
|
4509
4543
|
* 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 +7204,157 @@ export declare namespace iam {
|
|
|
7170
7204
|
value?: pulumi.Input<string>;
|
|
7171
7205
|
}
|
|
7172
7206
|
}
|
|
7207
|
+
export declare namespace id {
|
|
7208
|
+
interface ServiceBackend {
|
|
7209
|
+
/**
|
|
7210
|
+
* Backend service domain name, for example api.example.com
|
|
7211
|
+
*/
|
|
7212
|
+
backendDomain: pulumi.Input<string>;
|
|
7213
|
+
/**
|
|
7214
|
+
* Backend service port, default is 443
|
|
7215
|
+
*/
|
|
7216
|
+
backendPort?: pulumi.Input<number>;
|
|
7217
|
+
/**
|
|
7218
|
+
* Whether to enable TLS
|
|
7219
|
+
*/
|
|
7220
|
+
enableTls: pulumi.Input<boolean>;
|
|
7221
|
+
/**
|
|
7222
|
+
* Communication protocol, for example HTTP or HTTPS
|
|
7223
|
+
*/
|
|
7224
|
+
protocol?: pulumi.Input<string>;
|
|
7225
|
+
/**
|
|
7226
|
+
* Request timeout in seconds, default is 30 seconds
|
|
7227
|
+
*/
|
|
7228
|
+
timeoutSeconds?: pulumi.Input<number>;
|
|
7229
|
+
}
|
|
7230
|
+
interface ServiceRoute {
|
|
7231
|
+
/**
|
|
7232
|
+
* API specification configuration
|
|
7233
|
+
*/
|
|
7234
|
+
apiSpec?: pulumi.Input<inputs.id.ServiceRouteApiSpec>;
|
|
7235
|
+
/**
|
|
7236
|
+
* Authentication resource type
|
|
7237
|
+
*/
|
|
7238
|
+
authResourceType?: pulumi.Input<string>;
|
|
7239
|
+
/**
|
|
7240
|
+
* Route description
|
|
7241
|
+
*/
|
|
7242
|
+
description?: pulumi.Input<string>;
|
|
7243
|
+
/**
|
|
7244
|
+
* HTTP methods, separated by commas
|
|
7245
|
+
*/
|
|
7246
|
+
method?: pulumi.Input<string>;
|
|
7247
|
+
/**
|
|
7248
|
+
* Request path, 1–256 characters
|
|
7249
|
+
*/
|
|
7250
|
+
path?: pulumi.Input<string>;
|
|
7251
|
+
/**
|
|
7252
|
+
* Path match type, for example Exact, Prefix
|
|
7253
|
+
*/
|
|
7254
|
+
pathMatchType?: pulumi.Input<string>;
|
|
7255
|
+
/**
|
|
7256
|
+
* Permission pool name
|
|
7257
|
+
*/
|
|
7258
|
+
permissionPool?: pulumi.Input<string>;
|
|
7259
|
+
/**
|
|
7260
|
+
* Route priority, lower values indicate higher priority
|
|
7261
|
+
*/
|
|
7262
|
+
priority?: pulumi.Input<number>;
|
|
7263
|
+
/**
|
|
7264
|
+
* Resource type, for example Collection
|
|
7265
|
+
*/
|
|
7266
|
+
resourceType?: pulumi.Input<string>;
|
|
7267
|
+
/**
|
|
7268
|
+
* Route name, 1–64 characters
|
|
7269
|
+
*/
|
|
7270
|
+
routeName?: pulumi.Input<string>;
|
|
7271
|
+
}
|
|
7272
|
+
interface ServiceRouteApiSpec {
|
|
7273
|
+
/**
|
|
7274
|
+
* Operation type, for example READ
|
|
7275
|
+
*/
|
|
7276
|
+
actionType?: pulumi.Input<string>;
|
|
7277
|
+
/**
|
|
7278
|
+
* Operation value, for example search
|
|
7279
|
+
*/
|
|
7280
|
+
actionValue?: pulumi.Input<string>;
|
|
7281
|
+
extractors?: pulumi.Input<pulumi.Input<inputs.id.ServiceRouteApiSpecExtractor>[]>;
|
|
7282
|
+
/**
|
|
7283
|
+
* Resource identifier type
|
|
7284
|
+
*/
|
|
7285
|
+
identifierType?: pulumi.Input<number>;
|
|
7286
|
+
/**
|
|
7287
|
+
* Resource identifier value, for example JSON Pointer
|
|
7288
|
+
*/
|
|
7289
|
+
identifierValue?: pulumi.Input<string>;
|
|
7290
|
+
responseFilters?: pulumi.Input<pulumi.Input<inputs.id.ServiceRouteApiSpecResponseFilter>[]>;
|
|
7291
|
+
}
|
|
7292
|
+
interface ServiceRouteApiSpecExtractor {
|
|
7293
|
+
/**
|
|
7294
|
+
* Whether used for authentication
|
|
7295
|
+
*/
|
|
7296
|
+
isAuth?: pulumi.Input<boolean>;
|
|
7297
|
+
/**
|
|
7298
|
+
* JSON Pointer expression
|
|
7299
|
+
*/
|
|
7300
|
+
path?: pulumi.Input<string>;
|
|
7301
|
+
/**
|
|
7302
|
+
* Extracted resource type
|
|
7303
|
+
*/
|
|
7304
|
+
resourceType?: pulumi.Input<string>;
|
|
7305
|
+
/**
|
|
7306
|
+
* Extraction source enumeration value
|
|
7307
|
+
*/
|
|
7308
|
+
source?: pulumi.Input<number>;
|
|
7309
|
+
}
|
|
7310
|
+
interface ServiceRouteApiSpecResponseFilter {
|
|
7311
|
+
attributes?: pulumi.Input<pulumi.Input<inputs.id.ServiceRouteApiSpecResponseFilterAttribute>[]>;
|
|
7312
|
+
/**
|
|
7313
|
+
* Array path JSON Pointer
|
|
7314
|
+
*/
|
|
7315
|
+
filterPath?: pulumi.Input<string>;
|
|
7316
|
+
/**
|
|
7317
|
+
* ID field name
|
|
7318
|
+
*/
|
|
7319
|
+
idField?: pulumi.Input<string>;
|
|
7320
|
+
/**
|
|
7321
|
+
* Whether used for authentication
|
|
7322
|
+
*/
|
|
7323
|
+
isAuth?: pulumi.Input<boolean>;
|
|
7324
|
+
/**
|
|
7325
|
+
* Filter mode enumeration value
|
|
7326
|
+
*/
|
|
7327
|
+
mode?: pulumi.Input<number>;
|
|
7328
|
+
/**
|
|
7329
|
+
* Resource path JSON Pointer
|
|
7330
|
+
*/
|
|
7331
|
+
resourcePath?: pulumi.Input<string>;
|
|
7332
|
+
/**
|
|
7333
|
+
* Filtered resource type
|
|
7334
|
+
*/
|
|
7335
|
+
resourceType?: pulumi.Input<string>;
|
|
7336
|
+
}
|
|
7337
|
+
interface ServiceRouteApiSpecResponseFilterAttribute {
|
|
7338
|
+
/**
|
|
7339
|
+
* Source field path JSON Pointer
|
|
7340
|
+
*/
|
|
7341
|
+
field?: pulumi.Input<string>;
|
|
7342
|
+
/**
|
|
7343
|
+
* Target attribute name
|
|
7344
|
+
*/
|
|
7345
|
+
target?: pulumi.Input<string>;
|
|
7346
|
+
}
|
|
7347
|
+
interface ServiceTag {
|
|
7348
|
+
/**
|
|
7349
|
+
* Tag key
|
|
7350
|
+
*/
|
|
7351
|
+
key?: pulumi.Input<string>;
|
|
7352
|
+
/**
|
|
7353
|
+
* Tag value
|
|
7354
|
+
*/
|
|
7355
|
+
value?: pulumi.Input<string>;
|
|
7356
|
+
}
|
|
7357
|
+
}
|
|
7173
7358
|
export declare namespace kafka {
|
|
7174
7359
|
interface AllowListAssociatedInstance {
|
|
7175
7360
|
/**
|
|
@@ -9189,6 +9374,65 @@ export declare namespace rdspostgresql {
|
|
|
9189
9374
|
*/
|
|
9190
9375
|
zoneId: pulumi.Input<string>;
|
|
9191
9376
|
}
|
|
9377
|
+
interface InstanceReplicationSlot {
|
|
9378
|
+
/**
|
|
9379
|
+
* Database associated with the slot
|
|
9380
|
+
*/
|
|
9381
|
+
database?: pulumi.Input<string>;
|
|
9382
|
+
/**
|
|
9383
|
+
* Connected client IP address
|
|
9384
|
+
*/
|
|
9385
|
+
ipAddress?: pulumi.Input<string>;
|
|
9386
|
+
/**
|
|
9387
|
+
* Plugin used by the slot
|
|
9388
|
+
*/
|
|
9389
|
+
plugin?: pulumi.Input<string>;
|
|
9390
|
+
/**
|
|
9391
|
+
* Slot name
|
|
9392
|
+
*/
|
|
9393
|
+
slotName?: pulumi.Input<string>;
|
|
9394
|
+
/**
|
|
9395
|
+
* Slot status
|
|
9396
|
+
*/
|
|
9397
|
+
slotStatus?: pulumi.Input<string>;
|
|
9398
|
+
/**
|
|
9399
|
+
* Slot type
|
|
9400
|
+
*/
|
|
9401
|
+
slotType?: pulumi.Input<string>;
|
|
9402
|
+
/**
|
|
9403
|
+
* Whether it is a temporary slot
|
|
9404
|
+
*/
|
|
9405
|
+
temporary?: pulumi.Input<boolean>;
|
|
9406
|
+
/**
|
|
9407
|
+
* WAL delay size
|
|
9408
|
+
*/
|
|
9409
|
+
walDelay?: pulumi.Input<number>;
|
|
9410
|
+
}
|
|
9411
|
+
interface InstanceRestoreToExistedInstance {
|
|
9412
|
+
/**
|
|
9413
|
+
* Backup set ID
|
|
9414
|
+
*/
|
|
9415
|
+
backupId?: pulumi.Input<string>;
|
|
9416
|
+
databases?: pulumi.Input<pulumi.Input<inputs.rdspostgresql.InstanceRestoreToExistedInstanceDatabase>[]>;
|
|
9417
|
+
/**
|
|
9418
|
+
* Source instance ID
|
|
9419
|
+
*/
|
|
9420
|
+
sourceDbInstanceId?: pulumi.Input<string>;
|
|
9421
|
+
/**
|
|
9422
|
+
* Database account for the target instance
|
|
9423
|
+
*/
|
|
9424
|
+
targetDbInstanceAccount?: pulumi.Input<string>;
|
|
9425
|
+
}
|
|
9426
|
+
interface InstanceRestoreToExistedInstanceDatabase {
|
|
9427
|
+
/**
|
|
9428
|
+
* Source database name
|
|
9429
|
+
*/
|
|
9430
|
+
dbName?: pulumi.Input<string>;
|
|
9431
|
+
/**
|
|
9432
|
+
* Name of the new database after restoration
|
|
9433
|
+
*/
|
|
9434
|
+
newDbName?: pulumi.Input<string>;
|
|
9435
|
+
}
|
|
9192
9436
|
interface InstanceTag {
|
|
9193
9437
|
/**
|
|
9194
9438
|
* Tag key
|