@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.
- package/README.md +6 -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 +3 -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
|
@@ -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
|
*/
|
|
@@ -9063,6 +9119,30 @@ export declare namespace cloudidentity {
|
|
|
9063
9119
|
}
|
|
9064
9120
|
}
|
|
9065
9121
|
export declare namespace cloudmonitor {
|
|
9122
|
+
interface ContactGroupContact {
|
|
9123
|
+
/**
|
|
9124
|
+
* Contact ID
|
|
9125
|
+
*/
|
|
9126
|
+
contactId: string;
|
|
9127
|
+
}
|
|
9128
|
+
interface GetContactGroupContact {
|
|
9129
|
+
/**
|
|
9130
|
+
* Contact ID
|
|
9131
|
+
*/
|
|
9132
|
+
contactId: string;
|
|
9133
|
+
/**
|
|
9134
|
+
* Contact email address
|
|
9135
|
+
*/
|
|
9136
|
+
email: string;
|
|
9137
|
+
/**
|
|
9138
|
+
* Contact name
|
|
9139
|
+
*/
|
|
9140
|
+
name: string;
|
|
9141
|
+
/**
|
|
9142
|
+
* Contact mobile number
|
|
9143
|
+
*/
|
|
9144
|
+
phone: string;
|
|
9145
|
+
}
|
|
9066
9146
|
interface GetRuleCondition {
|
|
9067
9147
|
/**
|
|
9068
9148
|
* 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.
|
|
@@ -14449,6 +14529,315 @@ export declare namespace iam {
|
|
|
14449
14529
|
value: string;
|
|
14450
14530
|
}
|
|
14451
14531
|
}
|
|
14532
|
+
export declare namespace id {
|
|
14533
|
+
interface GetServiceBackend {
|
|
14534
|
+
/**
|
|
14535
|
+
* Backend service domain name, for example api.example.com
|
|
14536
|
+
*/
|
|
14537
|
+
backendDomain: string;
|
|
14538
|
+
/**
|
|
14539
|
+
* Backend service port, default is 443
|
|
14540
|
+
*/
|
|
14541
|
+
backendPort: number;
|
|
14542
|
+
/**
|
|
14543
|
+
* Whether to enable TLS
|
|
14544
|
+
*/
|
|
14545
|
+
enableTls: boolean;
|
|
14546
|
+
/**
|
|
14547
|
+
* Communication protocol, for example HTTP or HTTPS
|
|
14548
|
+
*/
|
|
14549
|
+
protocol: string;
|
|
14550
|
+
/**
|
|
14551
|
+
* Request timeout in seconds, default is 30 seconds
|
|
14552
|
+
*/
|
|
14553
|
+
timeoutSeconds: number;
|
|
14554
|
+
}
|
|
14555
|
+
interface GetServiceRoute {
|
|
14556
|
+
/**
|
|
14557
|
+
* API specification configuration
|
|
14558
|
+
*/
|
|
14559
|
+
apiSpec: outputs.id.GetServiceRouteApiSpec;
|
|
14560
|
+
/**
|
|
14561
|
+
* Authentication resource type
|
|
14562
|
+
*/
|
|
14563
|
+
authResourceType: string;
|
|
14564
|
+
/**
|
|
14565
|
+
* Route description
|
|
14566
|
+
*/
|
|
14567
|
+
description: string;
|
|
14568
|
+
/**
|
|
14569
|
+
* HTTP methods, separated by commas
|
|
14570
|
+
*/
|
|
14571
|
+
method: string;
|
|
14572
|
+
/**
|
|
14573
|
+
* Request path, 1–256 characters
|
|
14574
|
+
*/
|
|
14575
|
+
path: string;
|
|
14576
|
+
/**
|
|
14577
|
+
* Path match type, for example Exact, Prefix
|
|
14578
|
+
*/
|
|
14579
|
+
pathMatchType: string;
|
|
14580
|
+
/**
|
|
14581
|
+
* Permission pool name
|
|
14582
|
+
*/
|
|
14583
|
+
permissionPool: string;
|
|
14584
|
+
/**
|
|
14585
|
+
* Route priority, lower values indicate higher priority
|
|
14586
|
+
*/
|
|
14587
|
+
priority: number;
|
|
14588
|
+
/**
|
|
14589
|
+
* Resource type, for example Collection
|
|
14590
|
+
*/
|
|
14591
|
+
resourceType: string;
|
|
14592
|
+
/**
|
|
14593
|
+
* Route name, 1–64 characters
|
|
14594
|
+
*/
|
|
14595
|
+
routeName: string;
|
|
14596
|
+
}
|
|
14597
|
+
interface GetServiceRouteApiSpec {
|
|
14598
|
+
/**
|
|
14599
|
+
* Operation type, for example READ
|
|
14600
|
+
*/
|
|
14601
|
+
actionType: string;
|
|
14602
|
+
/**
|
|
14603
|
+
* Operation value, for example search
|
|
14604
|
+
*/
|
|
14605
|
+
actionValue: string;
|
|
14606
|
+
/**
|
|
14607
|
+
* Attribute extractor list
|
|
14608
|
+
*/
|
|
14609
|
+
extractors: outputs.id.GetServiceRouteApiSpecExtractor[];
|
|
14610
|
+
/**
|
|
14611
|
+
* Resource identifier type
|
|
14612
|
+
*/
|
|
14613
|
+
identifierType: number;
|
|
14614
|
+
/**
|
|
14615
|
+
* Resource identifier value, for example JSON Pointer
|
|
14616
|
+
*/
|
|
14617
|
+
identifierValue: string;
|
|
14618
|
+
/**
|
|
14619
|
+
* Response filter list
|
|
14620
|
+
*/
|
|
14621
|
+
responseFilters: outputs.id.GetServiceRouteApiSpecResponseFilter[];
|
|
14622
|
+
}
|
|
14623
|
+
interface GetServiceRouteApiSpecExtractor {
|
|
14624
|
+
/**
|
|
14625
|
+
* Whether used for authentication
|
|
14626
|
+
*/
|
|
14627
|
+
isAuth: boolean;
|
|
14628
|
+
/**
|
|
14629
|
+
* JSON Pointer expression
|
|
14630
|
+
*/
|
|
14631
|
+
path: string;
|
|
14632
|
+
/**
|
|
14633
|
+
* Extracted resource type
|
|
14634
|
+
*/
|
|
14635
|
+
resourceType: string;
|
|
14636
|
+
/**
|
|
14637
|
+
* Extraction source enumeration value
|
|
14638
|
+
*/
|
|
14639
|
+
source: number;
|
|
14640
|
+
}
|
|
14641
|
+
interface GetServiceRouteApiSpecResponseFilter {
|
|
14642
|
+
/**
|
|
14643
|
+
* Attribute mapping list
|
|
14644
|
+
*/
|
|
14645
|
+
attributes: outputs.id.GetServiceRouteApiSpecResponseFilterAttribute[];
|
|
14646
|
+
/**
|
|
14647
|
+
* Array path JSON Pointer
|
|
14648
|
+
*/
|
|
14649
|
+
filterPath: string;
|
|
14650
|
+
/**
|
|
14651
|
+
* ID field name
|
|
14652
|
+
*/
|
|
14653
|
+
idField: string;
|
|
14654
|
+
/**
|
|
14655
|
+
* Whether used for authentication
|
|
14656
|
+
*/
|
|
14657
|
+
isAuth: boolean;
|
|
14658
|
+
/**
|
|
14659
|
+
* Filter mode enumeration value
|
|
14660
|
+
*/
|
|
14661
|
+
mode: number;
|
|
14662
|
+
/**
|
|
14663
|
+
* Resource path JSON Pointer
|
|
14664
|
+
*/
|
|
14665
|
+
resourcePath: string;
|
|
14666
|
+
/**
|
|
14667
|
+
* Filtered resource type
|
|
14668
|
+
*/
|
|
14669
|
+
resourceType: string;
|
|
14670
|
+
}
|
|
14671
|
+
interface GetServiceRouteApiSpecResponseFilterAttribute {
|
|
14672
|
+
/**
|
|
14673
|
+
* Source field path JSON Pointer
|
|
14674
|
+
*/
|
|
14675
|
+
field: string;
|
|
14676
|
+
/**
|
|
14677
|
+
* Target attribute name
|
|
14678
|
+
*/
|
|
14679
|
+
target: string;
|
|
14680
|
+
}
|
|
14681
|
+
interface GetServiceTag {
|
|
14682
|
+
/**
|
|
14683
|
+
* Tag key
|
|
14684
|
+
*/
|
|
14685
|
+
key: string;
|
|
14686
|
+
/**
|
|
14687
|
+
* Tag value
|
|
14688
|
+
*/
|
|
14689
|
+
value: string;
|
|
14690
|
+
}
|
|
14691
|
+
interface ServiceBackend {
|
|
14692
|
+
/**
|
|
14693
|
+
* Backend service domain name, for example api.example.com
|
|
14694
|
+
*/
|
|
14695
|
+
backendDomain: string;
|
|
14696
|
+
/**
|
|
14697
|
+
* Backend service port, default is 443
|
|
14698
|
+
*/
|
|
14699
|
+
backendPort: number;
|
|
14700
|
+
/**
|
|
14701
|
+
* Whether to enable TLS
|
|
14702
|
+
*/
|
|
14703
|
+
enableTls: boolean;
|
|
14704
|
+
/**
|
|
14705
|
+
* Communication protocol, for example HTTP or HTTPS
|
|
14706
|
+
*/
|
|
14707
|
+
protocol: string;
|
|
14708
|
+
/**
|
|
14709
|
+
* Request timeout in seconds, default is 30 seconds
|
|
14710
|
+
*/
|
|
14711
|
+
timeoutSeconds: number;
|
|
14712
|
+
}
|
|
14713
|
+
interface ServiceRoute {
|
|
14714
|
+
/**
|
|
14715
|
+
* API specification configuration
|
|
14716
|
+
*/
|
|
14717
|
+
apiSpec: outputs.id.ServiceRouteApiSpec;
|
|
14718
|
+
/**
|
|
14719
|
+
* Authentication resource type
|
|
14720
|
+
*/
|
|
14721
|
+
authResourceType: string;
|
|
14722
|
+
/**
|
|
14723
|
+
* Route description
|
|
14724
|
+
*/
|
|
14725
|
+
description: string;
|
|
14726
|
+
/**
|
|
14727
|
+
* HTTP methods, separated by commas
|
|
14728
|
+
*/
|
|
14729
|
+
method: string;
|
|
14730
|
+
/**
|
|
14731
|
+
* Request path, 1–256 characters
|
|
14732
|
+
*/
|
|
14733
|
+
path: string;
|
|
14734
|
+
/**
|
|
14735
|
+
* Path match type, for example Exact, Prefix
|
|
14736
|
+
*/
|
|
14737
|
+
pathMatchType: string;
|
|
14738
|
+
/**
|
|
14739
|
+
* Permission pool name
|
|
14740
|
+
*/
|
|
14741
|
+
permissionPool: string;
|
|
14742
|
+
/**
|
|
14743
|
+
* Route priority, lower values indicate higher priority
|
|
14744
|
+
*/
|
|
14745
|
+
priority: number;
|
|
14746
|
+
/**
|
|
14747
|
+
* Resource type, for example Collection
|
|
14748
|
+
*/
|
|
14749
|
+
resourceType: string;
|
|
14750
|
+
/**
|
|
14751
|
+
* Route name, 1–64 characters
|
|
14752
|
+
*/
|
|
14753
|
+
routeName: string;
|
|
14754
|
+
}
|
|
14755
|
+
interface ServiceRouteApiSpec {
|
|
14756
|
+
/**
|
|
14757
|
+
* Operation type, for example READ
|
|
14758
|
+
*/
|
|
14759
|
+
actionType: string;
|
|
14760
|
+
/**
|
|
14761
|
+
* Operation value, for example search
|
|
14762
|
+
*/
|
|
14763
|
+
actionValue: string;
|
|
14764
|
+
extractors: outputs.id.ServiceRouteApiSpecExtractor[];
|
|
14765
|
+
/**
|
|
14766
|
+
* Resource identifier type
|
|
14767
|
+
*/
|
|
14768
|
+
identifierType: number;
|
|
14769
|
+
/**
|
|
14770
|
+
* Resource identifier value, for example JSON Pointer
|
|
14771
|
+
*/
|
|
14772
|
+
identifierValue: string;
|
|
14773
|
+
responseFilters: outputs.id.ServiceRouteApiSpecResponseFilter[];
|
|
14774
|
+
}
|
|
14775
|
+
interface ServiceRouteApiSpecExtractor {
|
|
14776
|
+
/**
|
|
14777
|
+
* Whether used for authentication
|
|
14778
|
+
*/
|
|
14779
|
+
isAuth: boolean;
|
|
14780
|
+
/**
|
|
14781
|
+
* JSON Pointer expression
|
|
14782
|
+
*/
|
|
14783
|
+
path: string;
|
|
14784
|
+
/**
|
|
14785
|
+
* Extracted resource type
|
|
14786
|
+
*/
|
|
14787
|
+
resourceType: string;
|
|
14788
|
+
/**
|
|
14789
|
+
* Extraction source enumeration value
|
|
14790
|
+
*/
|
|
14791
|
+
source: number;
|
|
14792
|
+
}
|
|
14793
|
+
interface ServiceRouteApiSpecResponseFilter {
|
|
14794
|
+
attributes: outputs.id.ServiceRouteApiSpecResponseFilterAttribute[];
|
|
14795
|
+
/**
|
|
14796
|
+
* Array path JSON Pointer
|
|
14797
|
+
*/
|
|
14798
|
+
filterPath: string;
|
|
14799
|
+
/**
|
|
14800
|
+
* ID field name
|
|
14801
|
+
*/
|
|
14802
|
+
idField: string;
|
|
14803
|
+
/**
|
|
14804
|
+
* Whether used for authentication
|
|
14805
|
+
*/
|
|
14806
|
+
isAuth: boolean;
|
|
14807
|
+
/**
|
|
14808
|
+
* Filter mode enumeration value
|
|
14809
|
+
*/
|
|
14810
|
+
mode: number;
|
|
14811
|
+
/**
|
|
14812
|
+
* Resource path JSON Pointer
|
|
14813
|
+
*/
|
|
14814
|
+
resourcePath: string;
|
|
14815
|
+
/**
|
|
14816
|
+
* Filtered resource type
|
|
14817
|
+
*/
|
|
14818
|
+
resourceType: string;
|
|
14819
|
+
}
|
|
14820
|
+
interface ServiceRouteApiSpecResponseFilterAttribute {
|
|
14821
|
+
/**
|
|
14822
|
+
* Source field path JSON Pointer
|
|
14823
|
+
*/
|
|
14824
|
+
field: string;
|
|
14825
|
+
/**
|
|
14826
|
+
* Target attribute name
|
|
14827
|
+
*/
|
|
14828
|
+
target: string;
|
|
14829
|
+
}
|
|
14830
|
+
interface ServiceTag {
|
|
14831
|
+
/**
|
|
14832
|
+
* Tag key
|
|
14833
|
+
*/
|
|
14834
|
+
key: string;
|
|
14835
|
+
/**
|
|
14836
|
+
* Tag value
|
|
14837
|
+
*/
|
|
14838
|
+
value: string;
|
|
14839
|
+
}
|
|
14840
|
+
}
|
|
14452
14841
|
export declare namespace kafka {
|
|
14453
14842
|
interface AllowListAssociatedInstance {
|
|
14454
14843
|
/**
|
|
@@ -18457,6 +18846,68 @@ export declare namespace rdspostgresql {
|
|
|
18457
18846
|
*/
|
|
18458
18847
|
zoneId: string;
|
|
18459
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
|
+
}
|
|
18460
18911
|
interface GetInstanceTag {
|
|
18461
18912
|
/**
|
|
18462
18913
|
* Tag key
|
|
@@ -18719,6 +19170,65 @@ export declare namespace rdspostgresql {
|
|
|
18719
19170
|
*/
|
|
18720
19171
|
zoneId: string;
|
|
18721
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
|
+
}
|
|
18722
19232
|
interface InstanceTag {
|
|
18723
19233
|
/**
|
|
18724
19234
|
* Tag key
|