@byteplus/pulumi-bytepluscc 0.0.32 → 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.
- 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
|
@@ -248,6 +248,20 @@ export declare namespace alb {
|
|
|
248
248
|
*/
|
|
249
249
|
weight: number;
|
|
250
250
|
}
|
|
251
|
+
interface GetLoadBalancerHealthLog {
|
|
252
|
+
/**
|
|
253
|
+
* Whether to enable access log
|
|
254
|
+
*/
|
|
255
|
+
enabled: boolean;
|
|
256
|
+
/**
|
|
257
|
+
* TLS project ID bound to access log
|
|
258
|
+
*/
|
|
259
|
+
projectId: string;
|
|
260
|
+
/**
|
|
261
|
+
* TLS subject ID bound to access log
|
|
262
|
+
*/
|
|
263
|
+
topicId: string;
|
|
264
|
+
}
|
|
251
265
|
interface GetLoadBalancerIpv6EipBillingConfig {
|
|
252
266
|
/**
|
|
253
267
|
* Peak bandwidth of IPv6 EIP, in Mbps.
|
|
@@ -272,6 +286,20 @@ export declare namespace alb {
|
|
|
272
286
|
*/
|
|
273
287
|
value: string;
|
|
274
288
|
}
|
|
289
|
+
interface GetLoadBalancerTlsAccessLog {
|
|
290
|
+
/**
|
|
291
|
+
* Whether to enable access log
|
|
292
|
+
*/
|
|
293
|
+
enabled: boolean;
|
|
294
|
+
/**
|
|
295
|
+
* TLS project ID bound to access log
|
|
296
|
+
*/
|
|
297
|
+
projectId: string;
|
|
298
|
+
/**
|
|
299
|
+
* TLS subject ID bound to access log
|
|
300
|
+
*/
|
|
301
|
+
topicId: string;
|
|
302
|
+
}
|
|
275
303
|
interface GetLoadBalancerZoneMapping {
|
|
276
304
|
/**
|
|
277
305
|
* List of IP addresses provided by the load balancer in this availability zone.
|
|
@@ -814,6 +842,20 @@ export declare namespace alb {
|
|
|
814
842
|
*/
|
|
815
843
|
weight: number;
|
|
816
844
|
}
|
|
845
|
+
interface LoadBalancerHealthLog {
|
|
846
|
+
/**
|
|
847
|
+
* Whether to enable access log
|
|
848
|
+
*/
|
|
849
|
+
enabled: boolean;
|
|
850
|
+
/**
|
|
851
|
+
* TLS project ID bound to access log
|
|
852
|
+
*/
|
|
853
|
+
projectId: string;
|
|
854
|
+
/**
|
|
855
|
+
* TLS subject ID bound to access log
|
|
856
|
+
*/
|
|
857
|
+
topicId: string;
|
|
858
|
+
}
|
|
817
859
|
interface LoadBalancerIpv6EipBillingConfig {
|
|
818
860
|
/**
|
|
819
861
|
* Peak bandwidth of IPv6 EIP, in Mbps.
|
|
@@ -838,6 +880,20 @@ export declare namespace alb {
|
|
|
838
880
|
*/
|
|
839
881
|
value: string;
|
|
840
882
|
}
|
|
883
|
+
interface LoadBalancerTlsAccessLog {
|
|
884
|
+
/**
|
|
885
|
+
* Whether to enable access log
|
|
886
|
+
*/
|
|
887
|
+
enabled: boolean;
|
|
888
|
+
/**
|
|
889
|
+
* TLS project ID bound to access log
|
|
890
|
+
*/
|
|
891
|
+
projectId: string;
|
|
892
|
+
/**
|
|
893
|
+
* TLS subject ID bound to access log
|
|
894
|
+
*/
|
|
895
|
+
topicId: string;
|
|
896
|
+
}
|
|
841
897
|
interface LoadBalancerZoneMapping {
|
|
842
898
|
/**
|
|
843
899
|
* Subnet ID providing services within the availability zone.
|
|
@@ -7937,13 +7993,13 @@ export declare namespace clb {
|
|
|
7937
7993
|
*/
|
|
7938
7994
|
bucketName: string;
|
|
7939
7995
|
/**
|
|
7940
|
-
*
|
|
7996
|
+
* Enable access log TOS feature?
|
|
7941
7997
|
*/
|
|
7942
|
-
|
|
7998
|
+
enabled: boolean;
|
|
7943
7999
|
/**
|
|
7944
|
-
* Enable access log
|
|
8000
|
+
* Enable access log TLS feature?
|
|
7945
8001
|
*/
|
|
7946
|
-
|
|
8002
|
+
tlsEnabled: boolean;
|
|
7947
8003
|
/**
|
|
7948
8004
|
* Log project
|
|
7949
8005
|
*/
|
|
@@ -8109,13 +8165,13 @@ export declare namespace clb {
|
|
|
8109
8165
|
*/
|
|
8110
8166
|
bucketName: string;
|
|
8111
8167
|
/**
|
|
8112
|
-
*
|
|
8168
|
+
* Enable access log TOS feature?
|
|
8113
8169
|
*/
|
|
8114
|
-
|
|
8170
|
+
enabled: boolean;
|
|
8115
8171
|
/**
|
|
8116
|
-
* Enable access log
|
|
8172
|
+
* Enable access log TLS feature?
|
|
8117
8173
|
*/
|
|
8118
|
-
|
|
8174
|
+
tlsEnabled: boolean;
|
|
8119
8175
|
/**
|
|
8120
8176
|
* Log project
|
|
8121
8177
|
*/
|
|
@@ -9065,25 +9121,25 @@ export declare namespace cloudidentity {
|
|
|
9065
9121
|
export declare namespace cloudmonitor {
|
|
9066
9122
|
interface ContactGroupContact {
|
|
9067
9123
|
/**
|
|
9068
|
-
*
|
|
9124
|
+
* Contact ID
|
|
9069
9125
|
*/
|
|
9070
9126
|
contactId: string;
|
|
9071
9127
|
}
|
|
9072
9128
|
interface GetContactGroupContact {
|
|
9073
9129
|
/**
|
|
9074
|
-
*
|
|
9130
|
+
* Contact ID
|
|
9075
9131
|
*/
|
|
9076
9132
|
contactId: string;
|
|
9077
9133
|
/**
|
|
9078
|
-
*
|
|
9134
|
+
* Contact email address
|
|
9079
9135
|
*/
|
|
9080
9136
|
email: string;
|
|
9081
9137
|
/**
|
|
9082
|
-
*
|
|
9138
|
+
* Contact name
|
|
9083
9139
|
*/
|
|
9084
9140
|
name: string;
|
|
9085
9141
|
/**
|
|
9086
|
-
*
|
|
9142
|
+
* Contact mobile number
|
|
9087
9143
|
*/
|
|
9088
9144
|
phone: string;
|
|
9089
9145
|
}
|
|
@@ -18790,6 +18846,68 @@ export declare namespace rdspostgresql {
|
|
|
18790
18846
|
*/
|
|
18791
18847
|
zoneId: string;
|
|
18792
18848
|
}
|
|
18849
|
+
interface GetInstanceReplicationSlot {
|
|
18850
|
+
/**
|
|
18851
|
+
* Database associated with the slot
|
|
18852
|
+
*/
|
|
18853
|
+
database: string;
|
|
18854
|
+
/**
|
|
18855
|
+
* Connected client IP address
|
|
18856
|
+
*/
|
|
18857
|
+
ipAddress: string;
|
|
18858
|
+
/**
|
|
18859
|
+
* Plugin used by the slot
|
|
18860
|
+
*/
|
|
18861
|
+
plugin: string;
|
|
18862
|
+
/**
|
|
18863
|
+
* Slot name
|
|
18864
|
+
*/
|
|
18865
|
+
slotName: string;
|
|
18866
|
+
/**
|
|
18867
|
+
* Slot status
|
|
18868
|
+
*/
|
|
18869
|
+
slotStatus: string;
|
|
18870
|
+
/**
|
|
18871
|
+
* Slot type
|
|
18872
|
+
*/
|
|
18873
|
+
slotType: string;
|
|
18874
|
+
/**
|
|
18875
|
+
* Whether it is a temporary slot
|
|
18876
|
+
*/
|
|
18877
|
+
temporary: boolean;
|
|
18878
|
+
/**
|
|
18879
|
+
* WAL delay size
|
|
18880
|
+
*/
|
|
18881
|
+
walDelay: number;
|
|
18882
|
+
}
|
|
18883
|
+
interface GetInstanceRestoreToExistedInstance {
|
|
18884
|
+
/**
|
|
18885
|
+
* Backup set ID
|
|
18886
|
+
*/
|
|
18887
|
+
backupId: string;
|
|
18888
|
+
/**
|
|
18889
|
+
* List of databases to restore
|
|
18890
|
+
*/
|
|
18891
|
+
databases: outputs.rdspostgresql.GetInstanceRestoreToExistedInstanceDatabase[];
|
|
18892
|
+
/**
|
|
18893
|
+
* Source instance ID
|
|
18894
|
+
*/
|
|
18895
|
+
sourceDbInstanceId: string;
|
|
18896
|
+
/**
|
|
18897
|
+
* Database account for the target instance
|
|
18898
|
+
*/
|
|
18899
|
+
targetDbInstanceAccount: string;
|
|
18900
|
+
}
|
|
18901
|
+
interface GetInstanceRestoreToExistedInstanceDatabase {
|
|
18902
|
+
/**
|
|
18903
|
+
* Source database name
|
|
18904
|
+
*/
|
|
18905
|
+
dbName: string;
|
|
18906
|
+
/**
|
|
18907
|
+
* Name of the new database after restoration
|
|
18908
|
+
*/
|
|
18909
|
+
newDbName: string;
|
|
18910
|
+
}
|
|
18793
18911
|
interface GetInstanceTag {
|
|
18794
18912
|
/**
|
|
18795
18913
|
* Tag key
|
|
@@ -19052,6 +19170,65 @@ export declare namespace rdspostgresql {
|
|
|
19052
19170
|
*/
|
|
19053
19171
|
zoneId: string;
|
|
19054
19172
|
}
|
|
19173
|
+
interface InstanceReplicationSlot {
|
|
19174
|
+
/**
|
|
19175
|
+
* Database associated with the slot
|
|
19176
|
+
*/
|
|
19177
|
+
database: string;
|
|
19178
|
+
/**
|
|
19179
|
+
* Connected client IP address
|
|
19180
|
+
*/
|
|
19181
|
+
ipAddress: string;
|
|
19182
|
+
/**
|
|
19183
|
+
* Plugin used by the slot
|
|
19184
|
+
*/
|
|
19185
|
+
plugin: string;
|
|
19186
|
+
/**
|
|
19187
|
+
* Slot name
|
|
19188
|
+
*/
|
|
19189
|
+
slotName: string;
|
|
19190
|
+
/**
|
|
19191
|
+
* Slot status
|
|
19192
|
+
*/
|
|
19193
|
+
slotStatus: string;
|
|
19194
|
+
/**
|
|
19195
|
+
* Slot type
|
|
19196
|
+
*/
|
|
19197
|
+
slotType: string;
|
|
19198
|
+
/**
|
|
19199
|
+
* Whether it is a temporary slot
|
|
19200
|
+
*/
|
|
19201
|
+
temporary: boolean;
|
|
19202
|
+
/**
|
|
19203
|
+
* WAL delay size
|
|
19204
|
+
*/
|
|
19205
|
+
walDelay: number;
|
|
19206
|
+
}
|
|
19207
|
+
interface InstanceRestoreToExistedInstance {
|
|
19208
|
+
/**
|
|
19209
|
+
* Backup set ID
|
|
19210
|
+
*/
|
|
19211
|
+
backupId: string;
|
|
19212
|
+
databases: outputs.rdspostgresql.InstanceRestoreToExistedInstanceDatabase[];
|
|
19213
|
+
/**
|
|
19214
|
+
* Source instance ID
|
|
19215
|
+
*/
|
|
19216
|
+
sourceDbInstanceId: string;
|
|
19217
|
+
/**
|
|
19218
|
+
* Database account for the target instance
|
|
19219
|
+
*/
|
|
19220
|
+
targetDbInstanceAccount: string;
|
|
19221
|
+
}
|
|
19222
|
+
interface InstanceRestoreToExistedInstanceDatabase {
|
|
19223
|
+
/**
|
|
19224
|
+
* Source database name
|
|
19225
|
+
*/
|
|
19226
|
+
dbName: string;
|
|
19227
|
+
/**
|
|
19228
|
+
* Name of the new database after restoration
|
|
19229
|
+
*/
|
|
19230
|
+
newDbName: string;
|
|
19231
|
+
}
|
|
19055
19232
|
interface InstanceTag {
|
|
19056
19233
|
/**
|
|
19057
19234
|
* Tag key
|