@volcengine/pulumi-volcenginecc 0.0.40 → 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/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 +15 -15
- package/cloudmonitor/contactGroup.js +1 -1
- package/cloudmonitor/getContactGroup.d.ts +7 -7
- 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 +92 -5
- package/types/output.d.ts +190 -13
package/types/output.d.ts
CHANGED
|
@@ -264,6 +264,20 @@ export declare namespace alb {
|
|
|
264
264
|
*/
|
|
265
265
|
weight: number;
|
|
266
266
|
}
|
|
267
|
+
interface GetLoadBalancerHealthLog {
|
|
268
|
+
/**
|
|
269
|
+
* Whether to enable access log
|
|
270
|
+
*/
|
|
271
|
+
enabled: boolean;
|
|
272
|
+
/**
|
|
273
|
+
* TLS project ID bound to access log
|
|
274
|
+
*/
|
|
275
|
+
projectId: string;
|
|
276
|
+
/**
|
|
277
|
+
* TLS subject ID bound to access log
|
|
278
|
+
*/
|
|
279
|
+
topicId: string;
|
|
280
|
+
}
|
|
267
281
|
interface GetLoadBalancerIpv6EipBillingConfig {
|
|
268
282
|
/**
|
|
269
283
|
* Peak bandwidth of IPv6 EIP, in Mbps.
|
|
@@ -288,6 +302,20 @@ export declare namespace alb {
|
|
|
288
302
|
*/
|
|
289
303
|
value: string;
|
|
290
304
|
}
|
|
305
|
+
interface GetLoadBalancerTlsAccessLog {
|
|
306
|
+
/**
|
|
307
|
+
* Whether to enable access log
|
|
308
|
+
*/
|
|
309
|
+
enabled: boolean;
|
|
310
|
+
/**
|
|
311
|
+
* TLS project ID bound to access log
|
|
312
|
+
*/
|
|
313
|
+
projectId: string;
|
|
314
|
+
/**
|
|
315
|
+
* TLS subject ID bound to access log
|
|
316
|
+
*/
|
|
317
|
+
topicId: string;
|
|
318
|
+
}
|
|
291
319
|
interface GetLoadBalancerZoneMapping {
|
|
292
320
|
/**
|
|
293
321
|
* List of IP addresses provided by the load balancer in this availability zone.
|
|
@@ -830,6 +858,20 @@ export declare namespace alb {
|
|
|
830
858
|
*/
|
|
831
859
|
weight: number;
|
|
832
860
|
}
|
|
861
|
+
interface LoadBalancerHealthLog {
|
|
862
|
+
/**
|
|
863
|
+
* Whether to enable access log
|
|
864
|
+
*/
|
|
865
|
+
enabled: boolean;
|
|
866
|
+
/**
|
|
867
|
+
* TLS project ID bound to access log
|
|
868
|
+
*/
|
|
869
|
+
projectId: string;
|
|
870
|
+
/**
|
|
871
|
+
* TLS subject ID bound to access log
|
|
872
|
+
*/
|
|
873
|
+
topicId: string;
|
|
874
|
+
}
|
|
833
875
|
interface LoadBalancerIpv6EipBillingConfig {
|
|
834
876
|
/**
|
|
835
877
|
* Peak bandwidth of IPv6 EIP, in Mbps.
|
|
@@ -854,6 +896,20 @@ export declare namespace alb {
|
|
|
854
896
|
*/
|
|
855
897
|
value: string;
|
|
856
898
|
}
|
|
899
|
+
interface LoadBalancerTlsAccessLog {
|
|
900
|
+
/**
|
|
901
|
+
* Whether to enable access log
|
|
902
|
+
*/
|
|
903
|
+
enabled: boolean;
|
|
904
|
+
/**
|
|
905
|
+
* TLS project ID bound to access log
|
|
906
|
+
*/
|
|
907
|
+
projectId: string;
|
|
908
|
+
/**
|
|
909
|
+
* TLS subject ID bound to access log
|
|
910
|
+
*/
|
|
911
|
+
topicId: string;
|
|
912
|
+
}
|
|
857
913
|
interface LoadBalancerZoneMapping {
|
|
858
914
|
/**
|
|
859
915
|
* Subnet ID providing services within the availability zone.
|
|
@@ -8147,13 +8203,13 @@ export declare namespace clb {
|
|
|
8147
8203
|
*/
|
|
8148
8204
|
bucketName: string;
|
|
8149
8205
|
/**
|
|
8150
|
-
*
|
|
8206
|
+
* Enable access log TOS feature?
|
|
8151
8207
|
*/
|
|
8152
|
-
|
|
8208
|
+
enabled: boolean;
|
|
8153
8209
|
/**
|
|
8154
|
-
* Enable access log
|
|
8210
|
+
* Enable access log TLS feature?
|
|
8155
8211
|
*/
|
|
8156
|
-
|
|
8212
|
+
tlsEnabled: boolean;
|
|
8157
8213
|
/**
|
|
8158
8214
|
* Log project
|
|
8159
8215
|
*/
|
|
@@ -8319,13 +8375,13 @@ export declare namespace clb {
|
|
|
8319
8375
|
*/
|
|
8320
8376
|
bucketName: string;
|
|
8321
8377
|
/**
|
|
8322
|
-
*
|
|
8378
|
+
* Enable access log TOS feature?
|
|
8323
8379
|
*/
|
|
8324
|
-
|
|
8380
|
+
enabled: boolean;
|
|
8325
8381
|
/**
|
|
8326
|
-
* Enable access log
|
|
8382
|
+
* Enable access log TLS feature?
|
|
8327
8383
|
*/
|
|
8328
|
-
|
|
8384
|
+
tlsEnabled: boolean;
|
|
8329
8385
|
/**
|
|
8330
8386
|
* Log project
|
|
8331
8387
|
*/
|
|
@@ -9275,25 +9331,25 @@ export declare namespace cloudidentity {
|
|
|
9275
9331
|
export declare namespace cloudmonitor {
|
|
9276
9332
|
interface ContactGroupContact {
|
|
9277
9333
|
/**
|
|
9278
|
-
*
|
|
9334
|
+
* Contact ID
|
|
9279
9335
|
*/
|
|
9280
9336
|
contactId: string;
|
|
9281
9337
|
}
|
|
9282
9338
|
interface GetContactGroupContact {
|
|
9283
9339
|
/**
|
|
9284
|
-
*
|
|
9340
|
+
* Contact ID
|
|
9285
9341
|
*/
|
|
9286
9342
|
contactId: string;
|
|
9287
9343
|
/**
|
|
9288
|
-
*
|
|
9344
|
+
* Contact email address
|
|
9289
9345
|
*/
|
|
9290
9346
|
email: string;
|
|
9291
9347
|
/**
|
|
9292
|
-
*
|
|
9348
|
+
* Contact name
|
|
9293
9349
|
*/
|
|
9294
9350
|
name: string;
|
|
9295
9351
|
/**
|
|
9296
|
-
*
|
|
9352
|
+
* Contact mobile number
|
|
9297
9353
|
*/
|
|
9298
9354
|
phone: string;
|
|
9299
9355
|
}
|
|
@@ -19170,6 +19226,68 @@ export declare namespace rdspostgresql {
|
|
|
19170
19226
|
*/
|
|
19171
19227
|
zoneId: string;
|
|
19172
19228
|
}
|
|
19229
|
+
interface GetInstanceReplicationSlot {
|
|
19230
|
+
/**
|
|
19231
|
+
* Database associated with the slot
|
|
19232
|
+
*/
|
|
19233
|
+
database: string;
|
|
19234
|
+
/**
|
|
19235
|
+
* Connected client IP address
|
|
19236
|
+
*/
|
|
19237
|
+
ipAddress: string;
|
|
19238
|
+
/**
|
|
19239
|
+
* Plugin used by the slot
|
|
19240
|
+
*/
|
|
19241
|
+
plugin: string;
|
|
19242
|
+
/**
|
|
19243
|
+
* Slot name
|
|
19244
|
+
*/
|
|
19245
|
+
slotName: string;
|
|
19246
|
+
/**
|
|
19247
|
+
* Slot status
|
|
19248
|
+
*/
|
|
19249
|
+
slotStatus: string;
|
|
19250
|
+
/**
|
|
19251
|
+
* Slot type
|
|
19252
|
+
*/
|
|
19253
|
+
slotType: string;
|
|
19254
|
+
/**
|
|
19255
|
+
* Whether it is a temporary slot
|
|
19256
|
+
*/
|
|
19257
|
+
temporary: boolean;
|
|
19258
|
+
/**
|
|
19259
|
+
* WAL delay size
|
|
19260
|
+
*/
|
|
19261
|
+
walDelay: number;
|
|
19262
|
+
}
|
|
19263
|
+
interface GetInstanceRestoreToExistedInstance {
|
|
19264
|
+
/**
|
|
19265
|
+
* Backup set ID
|
|
19266
|
+
*/
|
|
19267
|
+
backupId: string;
|
|
19268
|
+
/**
|
|
19269
|
+
* List of databases to restore
|
|
19270
|
+
*/
|
|
19271
|
+
databases: outputs.rdspostgresql.GetInstanceRestoreToExistedInstanceDatabase[];
|
|
19272
|
+
/**
|
|
19273
|
+
* Source instance ID
|
|
19274
|
+
*/
|
|
19275
|
+
sourceDbInstanceId: string;
|
|
19276
|
+
/**
|
|
19277
|
+
* Database account for the target instance
|
|
19278
|
+
*/
|
|
19279
|
+
targetDbInstanceAccount: string;
|
|
19280
|
+
}
|
|
19281
|
+
interface GetInstanceRestoreToExistedInstanceDatabase {
|
|
19282
|
+
/**
|
|
19283
|
+
* Source database name
|
|
19284
|
+
*/
|
|
19285
|
+
dbName: string;
|
|
19286
|
+
/**
|
|
19287
|
+
* Name of the new database after restoration
|
|
19288
|
+
*/
|
|
19289
|
+
newDbName: string;
|
|
19290
|
+
}
|
|
19173
19291
|
interface GetInstanceTag {
|
|
19174
19292
|
/**
|
|
19175
19293
|
* Tag key
|
|
@@ -19432,6 +19550,65 @@ export declare namespace rdspostgresql {
|
|
|
19432
19550
|
*/
|
|
19433
19551
|
zoneId: string;
|
|
19434
19552
|
}
|
|
19553
|
+
interface InstanceReplicationSlot {
|
|
19554
|
+
/**
|
|
19555
|
+
* Database associated with the slot
|
|
19556
|
+
*/
|
|
19557
|
+
database: string;
|
|
19558
|
+
/**
|
|
19559
|
+
* Connected client IP address
|
|
19560
|
+
*/
|
|
19561
|
+
ipAddress: string;
|
|
19562
|
+
/**
|
|
19563
|
+
* Plugin used by the slot
|
|
19564
|
+
*/
|
|
19565
|
+
plugin: string;
|
|
19566
|
+
/**
|
|
19567
|
+
* Slot name
|
|
19568
|
+
*/
|
|
19569
|
+
slotName: string;
|
|
19570
|
+
/**
|
|
19571
|
+
* Slot status
|
|
19572
|
+
*/
|
|
19573
|
+
slotStatus: string;
|
|
19574
|
+
/**
|
|
19575
|
+
* Slot type
|
|
19576
|
+
*/
|
|
19577
|
+
slotType: string;
|
|
19578
|
+
/**
|
|
19579
|
+
* Whether it is a temporary slot
|
|
19580
|
+
*/
|
|
19581
|
+
temporary: boolean;
|
|
19582
|
+
/**
|
|
19583
|
+
* WAL delay size
|
|
19584
|
+
*/
|
|
19585
|
+
walDelay: number;
|
|
19586
|
+
}
|
|
19587
|
+
interface InstanceRestoreToExistedInstance {
|
|
19588
|
+
/**
|
|
19589
|
+
* Backup set ID
|
|
19590
|
+
*/
|
|
19591
|
+
backupId: string;
|
|
19592
|
+
databases: outputs.rdspostgresql.InstanceRestoreToExistedInstanceDatabase[];
|
|
19593
|
+
/**
|
|
19594
|
+
* Source instance ID
|
|
19595
|
+
*/
|
|
19596
|
+
sourceDbInstanceId: string;
|
|
19597
|
+
/**
|
|
19598
|
+
* Database account for the target instance
|
|
19599
|
+
*/
|
|
19600
|
+
targetDbInstanceAccount: string;
|
|
19601
|
+
}
|
|
19602
|
+
interface InstanceRestoreToExistedInstanceDatabase {
|
|
19603
|
+
/**
|
|
19604
|
+
* Source database name
|
|
19605
|
+
*/
|
|
19606
|
+
dbName: string;
|
|
19607
|
+
/**
|
|
19608
|
+
* Name of the new database after restoration
|
|
19609
|
+
*/
|
|
19610
|
+
newDbName: string;
|
|
19611
|
+
}
|
|
19435
19612
|
interface InstanceTag {
|
|
19436
19613
|
/**
|
|
19437
19614
|
* Tag key
|