@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/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
|
*/
|
|
@@ -9273,6 +9329,30 @@ export declare namespace cloudidentity {
|
|
|
9273
9329
|
}
|
|
9274
9330
|
}
|
|
9275
9331
|
export declare namespace cloudmonitor {
|
|
9332
|
+
interface ContactGroupContact {
|
|
9333
|
+
/**
|
|
9334
|
+
* Contact ID
|
|
9335
|
+
*/
|
|
9336
|
+
contactId: string;
|
|
9337
|
+
}
|
|
9338
|
+
interface GetContactGroupContact {
|
|
9339
|
+
/**
|
|
9340
|
+
* Contact ID
|
|
9341
|
+
*/
|
|
9342
|
+
contactId: string;
|
|
9343
|
+
/**
|
|
9344
|
+
* Contact email address
|
|
9345
|
+
*/
|
|
9346
|
+
email: string;
|
|
9347
|
+
/**
|
|
9348
|
+
* Contact name
|
|
9349
|
+
*/
|
|
9350
|
+
name: string;
|
|
9351
|
+
/**
|
|
9352
|
+
* Contact mobile number
|
|
9353
|
+
*/
|
|
9354
|
+
phone: string;
|
|
9355
|
+
}
|
|
9276
9356
|
interface GetRuleCondition {
|
|
9277
9357
|
/**
|
|
9278
9358
|
* 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.
|
|
@@ -14829,6 +14909,315 @@ export declare namespace iam {
|
|
|
14829
14909
|
value: string;
|
|
14830
14910
|
}
|
|
14831
14911
|
}
|
|
14912
|
+
export declare namespace id {
|
|
14913
|
+
interface GetServiceBackend {
|
|
14914
|
+
/**
|
|
14915
|
+
* Backend service domain name, for example api.example.com
|
|
14916
|
+
*/
|
|
14917
|
+
backendDomain: string;
|
|
14918
|
+
/**
|
|
14919
|
+
* Backend service port, default is 443
|
|
14920
|
+
*/
|
|
14921
|
+
backendPort: number;
|
|
14922
|
+
/**
|
|
14923
|
+
* Whether to enable TLS
|
|
14924
|
+
*/
|
|
14925
|
+
enableTls: boolean;
|
|
14926
|
+
/**
|
|
14927
|
+
* Communication protocol, for example HTTP or HTTPS
|
|
14928
|
+
*/
|
|
14929
|
+
protocol: string;
|
|
14930
|
+
/**
|
|
14931
|
+
* Request timeout in seconds, default is 30 seconds
|
|
14932
|
+
*/
|
|
14933
|
+
timeoutSeconds: number;
|
|
14934
|
+
}
|
|
14935
|
+
interface GetServiceRoute {
|
|
14936
|
+
/**
|
|
14937
|
+
* API specification configuration
|
|
14938
|
+
*/
|
|
14939
|
+
apiSpec: outputs.id.GetServiceRouteApiSpec;
|
|
14940
|
+
/**
|
|
14941
|
+
* Authentication resource type
|
|
14942
|
+
*/
|
|
14943
|
+
authResourceType: string;
|
|
14944
|
+
/**
|
|
14945
|
+
* Route description
|
|
14946
|
+
*/
|
|
14947
|
+
description: string;
|
|
14948
|
+
/**
|
|
14949
|
+
* HTTP methods, separated by commas
|
|
14950
|
+
*/
|
|
14951
|
+
method: string;
|
|
14952
|
+
/**
|
|
14953
|
+
* Request path, 1–256 characters
|
|
14954
|
+
*/
|
|
14955
|
+
path: string;
|
|
14956
|
+
/**
|
|
14957
|
+
* Path match type, for example Exact, Prefix
|
|
14958
|
+
*/
|
|
14959
|
+
pathMatchType: string;
|
|
14960
|
+
/**
|
|
14961
|
+
* Permission pool name
|
|
14962
|
+
*/
|
|
14963
|
+
permissionPool: string;
|
|
14964
|
+
/**
|
|
14965
|
+
* Route priority, lower values indicate higher priority
|
|
14966
|
+
*/
|
|
14967
|
+
priority: number;
|
|
14968
|
+
/**
|
|
14969
|
+
* Resource type, for example Collection
|
|
14970
|
+
*/
|
|
14971
|
+
resourceType: string;
|
|
14972
|
+
/**
|
|
14973
|
+
* Route name, 1–64 characters
|
|
14974
|
+
*/
|
|
14975
|
+
routeName: string;
|
|
14976
|
+
}
|
|
14977
|
+
interface GetServiceRouteApiSpec {
|
|
14978
|
+
/**
|
|
14979
|
+
* Operation type, for example READ
|
|
14980
|
+
*/
|
|
14981
|
+
actionType: string;
|
|
14982
|
+
/**
|
|
14983
|
+
* Operation value, for example search
|
|
14984
|
+
*/
|
|
14985
|
+
actionValue: string;
|
|
14986
|
+
/**
|
|
14987
|
+
* Attribute extractor list
|
|
14988
|
+
*/
|
|
14989
|
+
extractors: outputs.id.GetServiceRouteApiSpecExtractor[];
|
|
14990
|
+
/**
|
|
14991
|
+
* Resource identifier type
|
|
14992
|
+
*/
|
|
14993
|
+
identifierType: number;
|
|
14994
|
+
/**
|
|
14995
|
+
* Resource identifier value, for example JSON Pointer
|
|
14996
|
+
*/
|
|
14997
|
+
identifierValue: string;
|
|
14998
|
+
/**
|
|
14999
|
+
* Response filter list
|
|
15000
|
+
*/
|
|
15001
|
+
responseFilters: outputs.id.GetServiceRouteApiSpecResponseFilter[];
|
|
15002
|
+
}
|
|
15003
|
+
interface GetServiceRouteApiSpecExtractor {
|
|
15004
|
+
/**
|
|
15005
|
+
* Whether used for authentication
|
|
15006
|
+
*/
|
|
15007
|
+
isAuth: boolean;
|
|
15008
|
+
/**
|
|
15009
|
+
* JSON Pointer expression
|
|
15010
|
+
*/
|
|
15011
|
+
path: string;
|
|
15012
|
+
/**
|
|
15013
|
+
* Extracted resource type
|
|
15014
|
+
*/
|
|
15015
|
+
resourceType: string;
|
|
15016
|
+
/**
|
|
15017
|
+
* Extraction source enumeration value
|
|
15018
|
+
*/
|
|
15019
|
+
source: number;
|
|
15020
|
+
}
|
|
15021
|
+
interface GetServiceRouteApiSpecResponseFilter {
|
|
15022
|
+
/**
|
|
15023
|
+
* Attribute mapping list
|
|
15024
|
+
*/
|
|
15025
|
+
attributes: outputs.id.GetServiceRouteApiSpecResponseFilterAttribute[];
|
|
15026
|
+
/**
|
|
15027
|
+
* Array path JSON Pointer
|
|
15028
|
+
*/
|
|
15029
|
+
filterPath: string;
|
|
15030
|
+
/**
|
|
15031
|
+
* ID field name
|
|
15032
|
+
*/
|
|
15033
|
+
idField: string;
|
|
15034
|
+
/**
|
|
15035
|
+
* Whether used for authentication
|
|
15036
|
+
*/
|
|
15037
|
+
isAuth: boolean;
|
|
15038
|
+
/**
|
|
15039
|
+
* Filter mode enumeration value
|
|
15040
|
+
*/
|
|
15041
|
+
mode: number;
|
|
15042
|
+
/**
|
|
15043
|
+
* Resource path JSON Pointer
|
|
15044
|
+
*/
|
|
15045
|
+
resourcePath: string;
|
|
15046
|
+
/**
|
|
15047
|
+
* Filtered resource type
|
|
15048
|
+
*/
|
|
15049
|
+
resourceType: string;
|
|
15050
|
+
}
|
|
15051
|
+
interface GetServiceRouteApiSpecResponseFilterAttribute {
|
|
15052
|
+
/**
|
|
15053
|
+
* Source field path JSON Pointer
|
|
15054
|
+
*/
|
|
15055
|
+
field: string;
|
|
15056
|
+
/**
|
|
15057
|
+
* Target attribute name
|
|
15058
|
+
*/
|
|
15059
|
+
target: string;
|
|
15060
|
+
}
|
|
15061
|
+
interface GetServiceTag {
|
|
15062
|
+
/**
|
|
15063
|
+
* Tag key
|
|
15064
|
+
*/
|
|
15065
|
+
key: string;
|
|
15066
|
+
/**
|
|
15067
|
+
* Tag value
|
|
15068
|
+
*/
|
|
15069
|
+
value: string;
|
|
15070
|
+
}
|
|
15071
|
+
interface ServiceBackend {
|
|
15072
|
+
/**
|
|
15073
|
+
* Backend service domain name, for example api.example.com
|
|
15074
|
+
*/
|
|
15075
|
+
backendDomain: string;
|
|
15076
|
+
/**
|
|
15077
|
+
* Backend service port, default is 443
|
|
15078
|
+
*/
|
|
15079
|
+
backendPort: number;
|
|
15080
|
+
/**
|
|
15081
|
+
* Whether to enable TLS
|
|
15082
|
+
*/
|
|
15083
|
+
enableTls: boolean;
|
|
15084
|
+
/**
|
|
15085
|
+
* Communication protocol, for example HTTP or HTTPS
|
|
15086
|
+
*/
|
|
15087
|
+
protocol: string;
|
|
15088
|
+
/**
|
|
15089
|
+
* Request timeout in seconds, default is 30 seconds
|
|
15090
|
+
*/
|
|
15091
|
+
timeoutSeconds: number;
|
|
15092
|
+
}
|
|
15093
|
+
interface ServiceRoute {
|
|
15094
|
+
/**
|
|
15095
|
+
* API specification configuration
|
|
15096
|
+
*/
|
|
15097
|
+
apiSpec: outputs.id.ServiceRouteApiSpec;
|
|
15098
|
+
/**
|
|
15099
|
+
* Authentication resource type
|
|
15100
|
+
*/
|
|
15101
|
+
authResourceType: string;
|
|
15102
|
+
/**
|
|
15103
|
+
* Route description
|
|
15104
|
+
*/
|
|
15105
|
+
description: string;
|
|
15106
|
+
/**
|
|
15107
|
+
* HTTP methods, separated by commas
|
|
15108
|
+
*/
|
|
15109
|
+
method: string;
|
|
15110
|
+
/**
|
|
15111
|
+
* Request path, 1–256 characters
|
|
15112
|
+
*/
|
|
15113
|
+
path: string;
|
|
15114
|
+
/**
|
|
15115
|
+
* Path match type, for example Exact, Prefix
|
|
15116
|
+
*/
|
|
15117
|
+
pathMatchType: string;
|
|
15118
|
+
/**
|
|
15119
|
+
* Permission pool name
|
|
15120
|
+
*/
|
|
15121
|
+
permissionPool: string;
|
|
15122
|
+
/**
|
|
15123
|
+
* Route priority, lower values indicate higher priority
|
|
15124
|
+
*/
|
|
15125
|
+
priority: number;
|
|
15126
|
+
/**
|
|
15127
|
+
* Resource type, for example Collection
|
|
15128
|
+
*/
|
|
15129
|
+
resourceType: string;
|
|
15130
|
+
/**
|
|
15131
|
+
* Route name, 1–64 characters
|
|
15132
|
+
*/
|
|
15133
|
+
routeName: string;
|
|
15134
|
+
}
|
|
15135
|
+
interface ServiceRouteApiSpec {
|
|
15136
|
+
/**
|
|
15137
|
+
* Operation type, for example READ
|
|
15138
|
+
*/
|
|
15139
|
+
actionType: string;
|
|
15140
|
+
/**
|
|
15141
|
+
* Operation value, for example search
|
|
15142
|
+
*/
|
|
15143
|
+
actionValue: string;
|
|
15144
|
+
extractors: outputs.id.ServiceRouteApiSpecExtractor[];
|
|
15145
|
+
/**
|
|
15146
|
+
* Resource identifier type
|
|
15147
|
+
*/
|
|
15148
|
+
identifierType: number;
|
|
15149
|
+
/**
|
|
15150
|
+
* Resource identifier value, for example JSON Pointer
|
|
15151
|
+
*/
|
|
15152
|
+
identifierValue: string;
|
|
15153
|
+
responseFilters: outputs.id.ServiceRouteApiSpecResponseFilter[];
|
|
15154
|
+
}
|
|
15155
|
+
interface ServiceRouteApiSpecExtractor {
|
|
15156
|
+
/**
|
|
15157
|
+
* Whether used for authentication
|
|
15158
|
+
*/
|
|
15159
|
+
isAuth: boolean;
|
|
15160
|
+
/**
|
|
15161
|
+
* JSON Pointer expression
|
|
15162
|
+
*/
|
|
15163
|
+
path: string;
|
|
15164
|
+
/**
|
|
15165
|
+
* Extracted resource type
|
|
15166
|
+
*/
|
|
15167
|
+
resourceType: string;
|
|
15168
|
+
/**
|
|
15169
|
+
* Extraction source enumeration value
|
|
15170
|
+
*/
|
|
15171
|
+
source: number;
|
|
15172
|
+
}
|
|
15173
|
+
interface ServiceRouteApiSpecResponseFilter {
|
|
15174
|
+
attributes: outputs.id.ServiceRouteApiSpecResponseFilterAttribute[];
|
|
15175
|
+
/**
|
|
15176
|
+
* Array path JSON Pointer
|
|
15177
|
+
*/
|
|
15178
|
+
filterPath: string;
|
|
15179
|
+
/**
|
|
15180
|
+
* ID field name
|
|
15181
|
+
*/
|
|
15182
|
+
idField: string;
|
|
15183
|
+
/**
|
|
15184
|
+
* Whether used for authentication
|
|
15185
|
+
*/
|
|
15186
|
+
isAuth: boolean;
|
|
15187
|
+
/**
|
|
15188
|
+
* Filter mode enumeration value
|
|
15189
|
+
*/
|
|
15190
|
+
mode: number;
|
|
15191
|
+
/**
|
|
15192
|
+
* Resource path JSON Pointer
|
|
15193
|
+
*/
|
|
15194
|
+
resourcePath: string;
|
|
15195
|
+
/**
|
|
15196
|
+
* Filtered resource type
|
|
15197
|
+
*/
|
|
15198
|
+
resourceType: string;
|
|
15199
|
+
}
|
|
15200
|
+
interface ServiceRouteApiSpecResponseFilterAttribute {
|
|
15201
|
+
/**
|
|
15202
|
+
* Source field path JSON Pointer
|
|
15203
|
+
*/
|
|
15204
|
+
field: string;
|
|
15205
|
+
/**
|
|
15206
|
+
* Target attribute name
|
|
15207
|
+
*/
|
|
15208
|
+
target: string;
|
|
15209
|
+
}
|
|
15210
|
+
interface ServiceTag {
|
|
15211
|
+
/**
|
|
15212
|
+
* Tag key
|
|
15213
|
+
*/
|
|
15214
|
+
key: string;
|
|
15215
|
+
/**
|
|
15216
|
+
* Tag value
|
|
15217
|
+
*/
|
|
15218
|
+
value: string;
|
|
15219
|
+
}
|
|
15220
|
+
}
|
|
14832
15221
|
export declare namespace kafka {
|
|
14833
15222
|
interface AllowListAssociatedInstance {
|
|
14834
15223
|
/**
|
|
@@ -18837,6 +19226,68 @@ export declare namespace rdspostgresql {
|
|
|
18837
19226
|
*/
|
|
18838
19227
|
zoneId: string;
|
|
18839
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
|
+
}
|
|
18840
19291
|
interface GetInstanceTag {
|
|
18841
19292
|
/**
|
|
18842
19293
|
* Tag key
|
|
@@ -19099,6 +19550,65 @@ export declare namespace rdspostgresql {
|
|
|
19099
19550
|
*/
|
|
19100
19551
|
zoneId: string;
|
|
19101
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
|
+
}
|
|
19102
19612
|
interface InstanceTag {
|
|
19103
19613
|
/**
|
|
19104
19614
|
* Tag key
|