@alicloud/eas20210701 6.0.0 → 6.0.1
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/dist/client.d.ts +227 -12
- package/dist/client.js +19 -12
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +235 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alicloud/eas20210701",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/client.js",
|
|
6
6
|
"scripts": {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@alicloud/tea-typescript": "^1.7.1",
|
|
23
23
|
"@alicloud/tea-util": "^1.4.9",
|
|
24
|
-
"@alicloud/openapi-client": "^0.4.
|
|
24
|
+
"@alicloud/openapi-client": "^0.4.12",
|
|
25
25
|
"@alicloud/openapi-util": "^0.3.2",
|
|
26
26
|
"@alicloud/endpoint-util": "^0.0.1"
|
|
27
27
|
},
|
package/src/client.ts
CHANGED
|
@@ -578,6 +578,10 @@ export class Service extends $tea.Model {
|
|
|
578
578
|
}
|
|
579
579
|
|
|
580
580
|
export class CloneServiceRequest extends $tea.Model {
|
|
581
|
+
/**
|
|
582
|
+
* @remarks
|
|
583
|
+
* The label of the service to be cloned.
|
|
584
|
+
*/
|
|
581
585
|
labels?: { [key: string]: string };
|
|
582
586
|
/**
|
|
583
587
|
* @remarks
|
|
@@ -607,6 +611,10 @@ export class CloneServiceRequest extends $tea.Model {
|
|
|
607
611
|
}
|
|
608
612
|
|
|
609
613
|
export class CloneServiceShrinkRequest extends $tea.Model {
|
|
614
|
+
/**
|
|
615
|
+
* @remarks
|
|
616
|
+
* The label of the service to be cloned.
|
|
617
|
+
*/
|
|
610
618
|
labelsShrink?: string;
|
|
611
619
|
/**
|
|
612
620
|
* @remarks
|
|
@@ -798,8 +806,15 @@ export class CommitServiceResponse extends $tea.Model {
|
|
|
798
806
|
}
|
|
799
807
|
|
|
800
808
|
export class CreateAclPolicyRequest extends $tea.Model {
|
|
809
|
+
/**
|
|
810
|
+
* @remarks
|
|
811
|
+
* The whitelisted IP CIDR blocks in the VPC that can access the private gateway.
|
|
812
|
+
*/
|
|
801
813
|
aclPolicyList?: CreateAclPolicyRequestAclPolicyList[];
|
|
802
814
|
/**
|
|
815
|
+
* @remarks
|
|
816
|
+
* The ID of the virtual private cloud (VPC). For more information about how to obtain the VPC ID, see DescribeVpcs.
|
|
817
|
+
*
|
|
803
818
|
* @example
|
|
804
819
|
* vpc-uf66uio7md****
|
|
805
820
|
*/
|
|
@@ -824,8 +839,15 @@ export class CreateAclPolicyRequest extends $tea.Model {
|
|
|
824
839
|
}
|
|
825
840
|
|
|
826
841
|
export class CreateAclPolicyShrinkRequest extends $tea.Model {
|
|
842
|
+
/**
|
|
843
|
+
* @remarks
|
|
844
|
+
* The whitelisted IP CIDR blocks in the VPC that can access the private gateway.
|
|
845
|
+
*/
|
|
827
846
|
aclPolicyListShrink?: string;
|
|
828
847
|
/**
|
|
848
|
+
* @remarks
|
|
849
|
+
* The ID of the virtual private cloud (VPC). For more information about how to obtain the VPC ID, see DescribeVpcs.
|
|
850
|
+
*
|
|
829
851
|
* @example
|
|
830
852
|
* vpc-uf66uio7md****
|
|
831
853
|
*/
|
|
@@ -851,16 +873,25 @@ export class CreateAclPolicyShrinkRequest extends $tea.Model {
|
|
|
851
873
|
|
|
852
874
|
export class CreateAclPolicyResponseBody extends $tea.Model {
|
|
853
875
|
/**
|
|
876
|
+
* @remarks
|
|
877
|
+
* The private gateway ID.
|
|
878
|
+
*
|
|
854
879
|
* @example
|
|
855
880
|
* gw-1uhcqmsc7x22******
|
|
856
881
|
*/
|
|
857
882
|
gatewayId?: string;
|
|
858
883
|
/**
|
|
884
|
+
* @remarks
|
|
885
|
+
* The returned message.
|
|
886
|
+
*
|
|
859
887
|
* @example
|
|
860
888
|
* Successfully add acl policy for gateway
|
|
861
889
|
*/
|
|
862
890
|
message?: string;
|
|
863
891
|
/**
|
|
892
|
+
* @remarks
|
|
893
|
+
* The request ID.
|
|
894
|
+
*
|
|
864
895
|
* @example
|
|
865
896
|
* 40325405-579C-4D82****
|
|
866
897
|
*/
|
|
@@ -2720,8 +2751,15 @@ export class CreateServiceMirrorResponse extends $tea.Model {
|
|
|
2720
2751
|
}
|
|
2721
2752
|
|
|
2722
2753
|
export class DeleteAclPolicyRequest extends $tea.Model {
|
|
2754
|
+
/**
|
|
2755
|
+
* @remarks
|
|
2756
|
+
* The whitelisted IP CIDR blocks in the VPC that can access the private gateway.
|
|
2757
|
+
*/
|
|
2723
2758
|
aclPolicyList?: DeleteAclPolicyRequestAclPolicyList[];
|
|
2724
2759
|
/**
|
|
2760
|
+
* @remarks
|
|
2761
|
+
* The ID of the virtual private cloud (VPC). For more information about how to obtain the VPC ID, see DescribeVpcs.
|
|
2762
|
+
*
|
|
2725
2763
|
* @example
|
|
2726
2764
|
* vpc-uf66uio7md****
|
|
2727
2765
|
*/
|
|
@@ -2746,8 +2784,15 @@ export class DeleteAclPolicyRequest extends $tea.Model {
|
|
|
2746
2784
|
}
|
|
2747
2785
|
|
|
2748
2786
|
export class DeleteAclPolicyShrinkRequest extends $tea.Model {
|
|
2787
|
+
/**
|
|
2788
|
+
* @remarks
|
|
2789
|
+
* The whitelisted IP CIDR blocks in the VPC that can access the private gateway.
|
|
2790
|
+
*/
|
|
2749
2791
|
aclPolicyListShrink?: string;
|
|
2750
2792
|
/**
|
|
2793
|
+
* @remarks
|
|
2794
|
+
* The ID of the virtual private cloud (VPC). For more information about how to obtain the VPC ID, see DescribeVpcs.
|
|
2795
|
+
*
|
|
2751
2796
|
* @example
|
|
2752
2797
|
* vpc-uf66uio7md****
|
|
2753
2798
|
*/
|
|
@@ -2773,16 +2818,25 @@ export class DeleteAclPolicyShrinkRequest extends $tea.Model {
|
|
|
2773
2818
|
|
|
2774
2819
|
export class DeleteAclPolicyResponseBody extends $tea.Model {
|
|
2775
2820
|
/**
|
|
2821
|
+
* @remarks
|
|
2822
|
+
* The private gateway ID.
|
|
2823
|
+
*
|
|
2776
2824
|
* @example
|
|
2777
2825
|
* gw-1uhcqmsc7x22******
|
|
2778
2826
|
*/
|
|
2779
2827
|
gatewayId?: string;
|
|
2780
2828
|
/**
|
|
2829
|
+
* @remarks
|
|
2830
|
+
* The returned message.
|
|
2831
|
+
*
|
|
2781
2832
|
* @example
|
|
2782
2833
|
* Successfully delete acl policy for gateway
|
|
2783
2834
|
*/
|
|
2784
2835
|
message?: string;
|
|
2785
2836
|
/**
|
|
2837
|
+
* @remarks
|
|
2838
|
+
* The request ID.
|
|
2839
|
+
*
|
|
2786
2840
|
* @example
|
|
2787
2841
|
* 40325405-579C-4D82****
|
|
2788
2842
|
*/
|
|
@@ -5805,6 +5859,9 @@ export class DevelopServiceResponse extends $tea.Model {
|
|
|
5805
5859
|
|
|
5806
5860
|
export class ListAclPolicyRequest extends $tea.Model {
|
|
5807
5861
|
/**
|
|
5862
|
+
* @remarks
|
|
5863
|
+
* The ID of the virtual private cloud (VPC). For more information about how to obtain the VPC ID, see DescribeVpcs.
|
|
5864
|
+
*
|
|
5808
5865
|
* @example
|
|
5809
5866
|
* vpc-uf66uio7md****
|
|
5810
5867
|
*/
|
|
@@ -5828,13 +5885,27 @@ export class ListAclPolicyRequest extends $tea.Model {
|
|
|
5828
5885
|
|
|
5829
5886
|
export class ListAclPolicyResponseBody extends $tea.Model {
|
|
5830
5887
|
/**
|
|
5888
|
+
* @remarks
|
|
5889
|
+
* The private gateway ID.
|
|
5890
|
+
*
|
|
5831
5891
|
* @example
|
|
5832
5892
|
* gw-1uhcqmsc7x22******
|
|
5833
5893
|
*/
|
|
5834
5894
|
gatewayId?: string;
|
|
5895
|
+
/**
|
|
5896
|
+
* @remarks
|
|
5897
|
+
* The access control policies of the private gateway over the Internet.
|
|
5898
|
+
*/
|
|
5835
5899
|
internetAclPolicyList?: ListAclPolicyResponseBodyInternetAclPolicyList[];
|
|
5900
|
+
/**
|
|
5901
|
+
* @remarks
|
|
5902
|
+
* The access control policies of the private gateway over the internal network.
|
|
5903
|
+
*/
|
|
5836
5904
|
intranetVpcAclPolicyList?: ListAclPolicyResponseBodyIntranetVpcAclPolicyList[];
|
|
5837
5905
|
/**
|
|
5906
|
+
* @remarks
|
|
5907
|
+
* The request ID.
|
|
5908
|
+
*
|
|
5838
5909
|
* @example
|
|
5839
5910
|
* 40325405-579C-4D82****
|
|
5840
5911
|
*/
|
|
@@ -6033,21 +6104,33 @@ export class ListBenchmarkTaskResponse extends $tea.Model {
|
|
|
6033
6104
|
|
|
6034
6105
|
export class ListGatewayRequest extends $tea.Model {
|
|
6035
6106
|
/**
|
|
6107
|
+
* @remarks
|
|
6108
|
+
* The private gateway ID. To obtain the private gateway ID, see the private_gateway_id parameter in the response parameters of the ListResources operation.
|
|
6109
|
+
*
|
|
6036
6110
|
* @example
|
|
6037
6111
|
* gw-1uhcqmsc7x22******
|
|
6038
6112
|
*/
|
|
6039
6113
|
gatewayId?: string;
|
|
6040
6114
|
/**
|
|
6115
|
+
* @remarks
|
|
6116
|
+
* The private gateway alias.
|
|
6117
|
+
*
|
|
6041
6118
|
* @example
|
|
6042
6119
|
* mygateway1
|
|
6043
6120
|
*/
|
|
6044
6121
|
gatewayName?: string;
|
|
6045
6122
|
/**
|
|
6123
|
+
* @remarks
|
|
6124
|
+
* The page number. Default value: 1.
|
|
6125
|
+
*
|
|
6046
6126
|
* @example
|
|
6047
6127
|
* 1
|
|
6048
6128
|
*/
|
|
6049
6129
|
pageNumber?: number;
|
|
6050
6130
|
/**
|
|
6131
|
+
* @remarks
|
|
6132
|
+
* The number of entries per page. Default value: 100.
|
|
6133
|
+
*
|
|
6051
6134
|
* @example
|
|
6052
6135
|
* 100
|
|
6053
6136
|
*/
|
|
@@ -6076,23 +6159,39 @@ export class ListGatewayRequest extends $tea.Model {
|
|
|
6076
6159
|
}
|
|
6077
6160
|
|
|
6078
6161
|
export class ListGatewayResponseBody extends $tea.Model {
|
|
6162
|
+
/**
|
|
6163
|
+
* @remarks
|
|
6164
|
+
* The private gateways.
|
|
6165
|
+
*/
|
|
6079
6166
|
gateways?: ListGatewayResponseBodyGateways[];
|
|
6080
6167
|
/**
|
|
6168
|
+
* @remarks
|
|
6169
|
+
* The page number.
|
|
6170
|
+
*
|
|
6081
6171
|
* @example
|
|
6082
6172
|
* 1
|
|
6083
6173
|
*/
|
|
6084
6174
|
pageNumber?: number;
|
|
6085
6175
|
/**
|
|
6176
|
+
* @remarks
|
|
6177
|
+
* The number of entries per page.
|
|
6178
|
+
*
|
|
6086
6179
|
* @example
|
|
6087
6180
|
* 100
|
|
6088
6181
|
*/
|
|
6089
6182
|
pageSize?: number;
|
|
6090
6183
|
/**
|
|
6184
|
+
* @remarks
|
|
6185
|
+
* The request ID.
|
|
6186
|
+
*
|
|
6091
6187
|
* @example
|
|
6092
6188
|
* 40325405-579C-4D82****
|
|
6093
6189
|
*/
|
|
6094
6190
|
requestId?: string;
|
|
6095
6191
|
/**
|
|
6192
|
+
* @remarks
|
|
6193
|
+
* The total number of private gateways returned.
|
|
6194
|
+
*
|
|
6096
6195
|
* @example
|
|
6097
6196
|
* 5
|
|
6098
6197
|
*/
|
|
@@ -7766,6 +7865,7 @@ export class ListServicesRequest extends $tea.Model {
|
|
|
7766
7865
|
* eas-r-hd0qwy8cxxxx
|
|
7767
7866
|
*/
|
|
7768
7867
|
resourceName?: string;
|
|
7868
|
+
role?: string;
|
|
7769
7869
|
/**
|
|
7770
7870
|
* @remarks
|
|
7771
7871
|
* The service name.
|
|
@@ -8011,6 +8111,7 @@ export class ListServicesRequest extends $tea.Model {
|
|
|
8011
8111
|
parentServiceUid: 'ParentServiceUid',
|
|
8012
8112
|
quotaId: 'QuotaId',
|
|
8013
8113
|
resourceName: 'ResourceName',
|
|
8114
|
+
role: 'Role',
|
|
8014
8115
|
serviceName: 'ServiceName',
|
|
8015
8116
|
serviceStatus: 'ServiceStatus',
|
|
8016
8117
|
serviceType: 'ServiceType',
|
|
@@ -8032,6 +8133,7 @@ export class ListServicesRequest extends $tea.Model {
|
|
|
8032
8133
|
parentServiceUid: 'string',
|
|
8033
8134
|
quotaId: 'string',
|
|
8034
8135
|
resourceName: 'string',
|
|
8136
|
+
role: 'string',
|
|
8035
8137
|
serviceName: 'string',
|
|
8036
8138
|
serviceStatus: 'string',
|
|
8037
8139
|
serviceType: 'string',
|
|
@@ -8127,6 +8229,7 @@ export class ListServicesShrinkRequest extends $tea.Model {
|
|
|
8127
8229
|
* eas-r-hd0qwy8cxxxx
|
|
8128
8230
|
*/
|
|
8129
8231
|
resourceName?: string;
|
|
8232
|
+
role?: string;
|
|
8130
8233
|
/**
|
|
8131
8234
|
* @remarks
|
|
8132
8235
|
* The service name.
|
|
@@ -8372,6 +8475,7 @@ export class ListServicesShrinkRequest extends $tea.Model {
|
|
|
8372
8475
|
parentServiceUid: 'ParentServiceUid',
|
|
8373
8476
|
quotaId: 'QuotaId',
|
|
8374
8477
|
resourceName: 'ResourceName',
|
|
8478
|
+
role: 'Role',
|
|
8375
8479
|
serviceName: 'ServiceName',
|
|
8376
8480
|
serviceStatus: 'ServiceStatus',
|
|
8377
8481
|
serviceType: 'ServiceType',
|
|
@@ -8393,6 +8497,7 @@ export class ListServicesShrinkRequest extends $tea.Model {
|
|
|
8393
8497
|
parentServiceUid: 'string',
|
|
8394
8498
|
quotaId: 'string',
|
|
8395
8499
|
resourceName: 'string',
|
|
8500
|
+
role: 'string',
|
|
8396
8501
|
serviceName: 'string',
|
|
8397
8502
|
serviceStatus: 'string',
|
|
8398
8503
|
serviceType: 'string',
|
|
@@ -8496,8 +8601,15 @@ export class ListServicesResponse extends $tea.Model {
|
|
|
8496
8601
|
}
|
|
8497
8602
|
|
|
8498
8603
|
export class ListTenantAddonsResponseBody extends $tea.Model {
|
|
8604
|
+
/**
|
|
8605
|
+
* @remarks
|
|
8606
|
+
* The information about the plug-in.
|
|
8607
|
+
*/
|
|
8499
8608
|
addons?: ListTenantAddonsResponseBodyAddons[];
|
|
8500
8609
|
/**
|
|
8610
|
+
* @remarks
|
|
8611
|
+
* The request ID.
|
|
8612
|
+
*
|
|
8501
8613
|
* @example
|
|
8502
8614
|
* 40325405-579C-4D82****
|
|
8503
8615
|
*/
|
|
@@ -8548,11 +8660,17 @@ export class ListTenantAddonsResponse extends $tea.Model {
|
|
|
8548
8660
|
|
|
8549
8661
|
export class ReinstallTenantAddonResponseBody extends $tea.Model {
|
|
8550
8662
|
/**
|
|
8663
|
+
* @remarks
|
|
8664
|
+
* The returned message.
|
|
8665
|
+
*
|
|
8551
8666
|
* @example
|
|
8552
8667
|
* Addon prometheus_discovery is successfully reinstalled
|
|
8553
8668
|
*/
|
|
8554
8669
|
message?: string;
|
|
8555
8670
|
/**
|
|
8671
|
+
* @remarks
|
|
8672
|
+
* The request ID.
|
|
8673
|
+
*
|
|
8556
8674
|
* @example
|
|
8557
8675
|
* 40325405-579C-4D82****
|
|
8558
8676
|
*/
|
|
@@ -10538,11 +10656,17 @@ export class ServiceLabels extends $tea.Model {
|
|
|
10538
10656
|
|
|
10539
10657
|
export class CreateAclPolicyRequestAclPolicyList extends $tea.Model {
|
|
10540
10658
|
/**
|
|
10659
|
+
* @remarks
|
|
10660
|
+
* The comment on the IP CIDR block in the VPC that can access the private gateway.
|
|
10661
|
+
*
|
|
10541
10662
|
* @example
|
|
10542
10663
|
* default
|
|
10543
10664
|
*/
|
|
10544
10665
|
comment?: string;
|
|
10545
10666
|
/**
|
|
10667
|
+
* @remarks
|
|
10668
|
+
* The IP CIDR block in the VPC that can access the private gateway.
|
|
10669
|
+
*
|
|
10546
10670
|
* @example
|
|
10547
10671
|
* 10.23.XX.XX/32
|
|
10548
10672
|
*/
|
|
@@ -10918,11 +11042,17 @@ export class CreateServiceCronScalerRequestScaleJobs extends $tea.Model {
|
|
|
10918
11042
|
|
|
10919
11043
|
export class DeleteAclPolicyRequestAclPolicyList extends $tea.Model {
|
|
10920
11044
|
/**
|
|
11045
|
+
* @remarks
|
|
11046
|
+
* The comment on the IP CIDR block in the VPC that can access the private gateway.
|
|
11047
|
+
*
|
|
10921
11048
|
* @example
|
|
10922
11049
|
* default
|
|
10923
11050
|
*/
|
|
10924
11051
|
comment?: string;
|
|
10925
11052
|
/**
|
|
11053
|
+
* @remarks
|
|
11054
|
+
* The IP CIDR block in the VPC that can access the private gateway.
|
|
11055
|
+
*
|
|
10926
11056
|
* @example
|
|
10927
11057
|
* 10.23.XX.XX/32
|
|
10928
11058
|
*/
|
|
@@ -11329,7 +11459,21 @@ export class DescribeSpotDiscountHistoryResponseBodySpotDiscounts extends $tea.M
|
|
|
11329
11459
|
}
|
|
11330
11460
|
|
|
11331
11461
|
export class ListAclPolicyResponseBodyInternetAclPolicyListAclPolicyList extends $tea.Model {
|
|
11462
|
+
/**
|
|
11463
|
+
* @remarks
|
|
11464
|
+
* The comment on the IP CIDR block in the VPC that can access the private gateway over the Internet.
|
|
11465
|
+
*
|
|
11466
|
+
* @example
|
|
11467
|
+
* default
|
|
11468
|
+
*/
|
|
11332
11469
|
comment?: string;
|
|
11470
|
+
/**
|
|
11471
|
+
* @remarks
|
|
11472
|
+
* The IP CIDR block in the VPC that can access the private gateway over the Internet.
|
|
11473
|
+
*
|
|
11474
|
+
* @example
|
|
11475
|
+
* 10.23.XX.XX/32
|
|
11476
|
+
*/
|
|
11333
11477
|
entry?: string;
|
|
11334
11478
|
static names(): { [key: string]: string } {
|
|
11335
11479
|
return {
|
|
@@ -11351,6 +11495,10 @@ export class ListAclPolicyResponseBodyInternetAclPolicyListAclPolicyList extends
|
|
|
11351
11495
|
}
|
|
11352
11496
|
|
|
11353
11497
|
export class ListAclPolicyResponseBodyInternetAclPolicyList extends $tea.Model {
|
|
11498
|
+
/**
|
|
11499
|
+
* @remarks
|
|
11500
|
+
* The whitelisted IP CIDR blocks in the VPC that can access the private gateway over the Internet.
|
|
11501
|
+
*/
|
|
11354
11502
|
aclPolicyList?: ListAclPolicyResponseBodyInternetAclPolicyListAclPolicyList[];
|
|
11355
11503
|
static names(): { [key: string]: string } {
|
|
11356
11504
|
return {
|
|
@@ -11370,7 +11518,21 @@ export class ListAclPolicyResponseBodyInternetAclPolicyList extends $tea.Model {
|
|
|
11370
11518
|
}
|
|
11371
11519
|
|
|
11372
11520
|
export class ListAclPolicyResponseBodyIntranetVpcAclPolicyListAclPolicyList extends $tea.Model {
|
|
11521
|
+
/**
|
|
11522
|
+
* @remarks
|
|
11523
|
+
* The comment on the IP CIDR block in the VPC that can access the private gateway over the internal network.
|
|
11524
|
+
*
|
|
11525
|
+
* @example
|
|
11526
|
+
* Test Entry
|
|
11527
|
+
*/
|
|
11373
11528
|
comment?: string;
|
|
11529
|
+
/**
|
|
11530
|
+
* @remarks
|
|
11531
|
+
* The IP CIDR block in the VPC that can access the private gateway over the internal network.
|
|
11532
|
+
*
|
|
11533
|
+
* @example
|
|
11534
|
+
* 192.168.XX.XX/24
|
|
11535
|
+
*/
|
|
11374
11536
|
entry?: string;
|
|
11375
11537
|
static names(): { [key: string]: string } {
|
|
11376
11538
|
return {
|
|
@@ -11392,8 +11554,15 @@ export class ListAclPolicyResponseBodyIntranetVpcAclPolicyListAclPolicyList exte
|
|
|
11392
11554
|
}
|
|
11393
11555
|
|
|
11394
11556
|
export class ListAclPolicyResponseBodyIntranetVpcAclPolicyList extends $tea.Model {
|
|
11557
|
+
/**
|
|
11558
|
+
* @remarks
|
|
11559
|
+
* The whitelisted IP CIDR blocks in the VPC that can access the private gateway over the internal network.
|
|
11560
|
+
*/
|
|
11395
11561
|
aclPolicyList?: ListAclPolicyResponseBodyIntranetVpcAclPolicyListAclPolicyList[];
|
|
11396
11562
|
/**
|
|
11563
|
+
* @remarks
|
|
11564
|
+
* The VPC ID. For more information about how to obtain the VPC ID, see DescribeVpcs.
|
|
11565
|
+
*
|
|
11397
11566
|
* @example
|
|
11398
11567
|
* vpc-uf66uio7md****
|
|
11399
11568
|
*/
|
|
@@ -11599,56 +11768,99 @@ export class ListBenchmarkTaskResponseBodyTasks extends $tea.Model {
|
|
|
11599
11768
|
|
|
11600
11769
|
export class ListGatewayResponseBodyGateways extends $tea.Model {
|
|
11601
11770
|
/**
|
|
11771
|
+
* @remarks
|
|
11772
|
+
* The time when the private gateway was created. The time is displayed in UTC.
|
|
11773
|
+
*
|
|
11602
11774
|
* @example
|
|
11603
11775
|
* 2020-05-19T14:19:42Z
|
|
11604
11776
|
*/
|
|
11605
11777
|
createTime?: string;
|
|
11606
11778
|
/**
|
|
11779
|
+
* @remarks
|
|
11780
|
+
* The private gateway ID.
|
|
11781
|
+
*
|
|
11607
11782
|
* @example
|
|
11608
11783
|
* gw-1uhcqmsc7x22******
|
|
11609
11784
|
*/
|
|
11610
11785
|
gatewayId?: string;
|
|
11611
11786
|
/**
|
|
11787
|
+
* @remarks
|
|
11788
|
+
* The private gateway alias.
|
|
11789
|
+
*
|
|
11612
11790
|
* @example
|
|
11613
11791
|
* mygateway1
|
|
11614
11792
|
*/
|
|
11615
11793
|
gatewayName?: string;
|
|
11616
11794
|
/**
|
|
11795
|
+
* @remarks
|
|
11796
|
+
* The type of instances used for the private gateway.
|
|
11797
|
+
*
|
|
11617
11798
|
* @example
|
|
11618
11799
|
* 2c4g
|
|
11619
11800
|
*/
|
|
11620
11801
|
instanceType?: string;
|
|
11621
11802
|
/**
|
|
11803
|
+
* @remarks
|
|
11804
|
+
* The public endpoint.
|
|
11805
|
+
*
|
|
11622
11806
|
* @example
|
|
11623
11807
|
* gw-1uhcqmsc7x22******-1801786532******.cn-wulanchabu.pai-eas.aliyuncs.com
|
|
11624
11808
|
*/
|
|
11625
11809
|
internetDomain?: string;
|
|
11626
11810
|
/**
|
|
11811
|
+
* @remarks
|
|
11812
|
+
* Indicates whether Internet access is enabled.
|
|
11813
|
+
*
|
|
11627
11814
|
* @example
|
|
11628
11815
|
* true
|
|
11629
11816
|
*/
|
|
11630
11817
|
internetEnabled?: boolean;
|
|
11631
11818
|
/**
|
|
11819
|
+
* @remarks
|
|
11820
|
+
* The internal endpoint.
|
|
11821
|
+
*
|
|
11632
11822
|
* @example
|
|
11633
11823
|
* gw-1uhcqmsc7x22******-1801786532******-vpc.cn-wulanchabu.pai-eas.aliyuncs.com
|
|
11634
11824
|
*/
|
|
11635
11825
|
intranetDomain?: string;
|
|
11636
11826
|
/**
|
|
11827
|
+
* @remarks
|
|
11828
|
+
* Indicates whether it is the default private gateway.
|
|
11829
|
+
*
|
|
11637
11830
|
* @example
|
|
11638
11831
|
* true
|
|
11639
11832
|
*/
|
|
11640
11833
|
isDefault?: boolean;
|
|
11641
11834
|
/**
|
|
11835
|
+
* @remarks
|
|
11836
|
+
* The number of nodes in the private gateway.
|
|
11837
|
+
*
|
|
11642
11838
|
* @example
|
|
11643
11839
|
* 2
|
|
11644
11840
|
*/
|
|
11645
11841
|
replicas?: number;
|
|
11646
11842
|
/**
|
|
11843
|
+
* @remarks
|
|
11844
|
+
* The state of the private gateway.
|
|
11845
|
+
*
|
|
11846
|
+
* Valid values:
|
|
11847
|
+
*
|
|
11848
|
+
* * Creating
|
|
11849
|
+
* * Stopped
|
|
11850
|
+
* * Failed
|
|
11851
|
+
* * Running
|
|
11852
|
+
* * Deleted
|
|
11853
|
+
* * Deleting
|
|
11854
|
+
* * Waiting
|
|
11855
|
+
*
|
|
11647
11856
|
* @example
|
|
11648
11857
|
* Running
|
|
11649
11858
|
*/
|
|
11650
11859
|
status?: string;
|
|
11651
11860
|
/**
|
|
11861
|
+
* @remarks
|
|
11862
|
+
* The time when the private gateway was updated. The time is displayed in UTC.
|
|
11863
|
+
*
|
|
11652
11864
|
* @example
|
|
11653
11865
|
* 2021-02-24T11:52:17Z
|
|
11654
11866
|
*/
|
|
@@ -11874,8 +12086,15 @@ export class ListServiceVersionsResponseBodyVersions extends $tea.Model {
|
|
|
11874
12086
|
}
|
|
11875
12087
|
|
|
11876
12088
|
export class ListTenantAddonsResponseBodyAddons extends $tea.Model {
|
|
12089
|
+
/**
|
|
12090
|
+
* @remarks
|
|
12091
|
+
* The attributes of the plug-in.
|
|
12092
|
+
*/
|
|
11877
12093
|
attributes?: { [key: string]: string };
|
|
11878
12094
|
/**
|
|
12095
|
+
* @remarks
|
|
12096
|
+
* The name of the plug-in.
|
|
12097
|
+
*
|
|
11879
12098
|
* @example
|
|
11880
12099
|
* prometheus_discovery
|
|
11881
12100
|
*/
|
|
@@ -12351,7 +12570,7 @@ export default class Client extends OpenApi {
|
|
|
12351
12570
|
}
|
|
12352
12571
|
|
|
12353
12572
|
/**
|
|
12354
|
-
*
|
|
12573
|
+
* Creates an access control list (ACL) for a private gateway. The IP CIDR blocks added to the ACL can access the private gateway.
|
|
12355
12574
|
*
|
|
12356
12575
|
* @param tmpReq - CreateAclPolicyRequest
|
|
12357
12576
|
* @param headers - map
|
|
@@ -12394,7 +12613,7 @@ export default class Client extends OpenApi {
|
|
|
12394
12613
|
}
|
|
12395
12614
|
|
|
12396
12615
|
/**
|
|
12397
|
-
*
|
|
12616
|
+
* Creates an access control list (ACL) for a private gateway. The IP CIDR blocks added to the ACL can access the private gateway.
|
|
12398
12617
|
*
|
|
12399
12618
|
* @param request - CreateAclPolicyRequest
|
|
12400
12619
|
* @returns CreateAclPolicyResponse
|
|
@@ -13055,7 +13274,7 @@ export default class Client extends OpenApi {
|
|
|
13055
13274
|
}
|
|
13056
13275
|
|
|
13057
13276
|
/**
|
|
13058
|
-
*
|
|
13277
|
+
* Deletes an access control list (ACL) for a private gateway. The IP CIDR block that is deleted from the ACL cannot access the private gateway.
|
|
13059
13278
|
*
|
|
13060
13279
|
* @param tmpReq - DeleteAclPolicyRequest
|
|
13061
13280
|
* @param headers - map
|
|
@@ -13098,7 +13317,7 @@ export default class Client extends OpenApi {
|
|
|
13098
13317
|
}
|
|
13099
13318
|
|
|
13100
13319
|
/**
|
|
13101
|
-
*
|
|
13320
|
+
* Deletes an access control list (ACL) for a private gateway. The IP CIDR block that is deleted from the ACL cannot access the private gateway.
|
|
13102
13321
|
*
|
|
13103
13322
|
* @param request - DeleteAclPolicyRequest
|
|
13104
13323
|
* @returns DeleteAclPolicyResponse
|
|
@@ -14328,7 +14547,7 @@ export default class Client extends OpenApi {
|
|
|
14328
14547
|
}
|
|
14329
14548
|
|
|
14330
14549
|
/**
|
|
14331
|
-
*
|
|
14550
|
+
* Queries access control lists (ACLs) created for a private gateway.
|
|
14332
14551
|
*
|
|
14333
14552
|
* @param request - ListAclPolicyRequest
|
|
14334
14553
|
* @param headers - map
|
|
@@ -14361,7 +14580,7 @@ export default class Client extends OpenApi {
|
|
|
14361
14580
|
}
|
|
14362
14581
|
|
|
14363
14582
|
/**
|
|
14364
|
-
*
|
|
14583
|
+
* Queries access control lists (ACLs) created for a private gateway.
|
|
14365
14584
|
*
|
|
14366
14585
|
* @param request - ListAclPolicyRequest
|
|
14367
14586
|
* @returns ListAclPolicyResponse
|
|
@@ -14430,7 +14649,7 @@ export default class Client extends OpenApi {
|
|
|
14430
14649
|
}
|
|
14431
14650
|
|
|
14432
14651
|
/**
|
|
14433
|
-
*
|
|
14652
|
+
* Queries a list of private gateways.
|
|
14434
14653
|
*
|
|
14435
14654
|
* @param request - ListGatewayRequest
|
|
14436
14655
|
* @param headers - map
|
|
@@ -14475,7 +14694,7 @@ export default class Client extends OpenApi {
|
|
|
14475
14694
|
}
|
|
14476
14695
|
|
|
14477
14696
|
/**
|
|
14478
|
-
*
|
|
14697
|
+
* Queries a list of private gateways.
|
|
14479
14698
|
*
|
|
14480
14699
|
* @param request - ListGatewayRequest
|
|
14481
14700
|
* @returns ListGatewayResponse
|
|
@@ -15058,6 +15277,10 @@ export default class Client extends OpenApi {
|
|
|
15058
15277
|
query["ResourceName"] = request.resourceName;
|
|
15059
15278
|
}
|
|
15060
15279
|
|
|
15280
|
+
if (!Util.isUnset(request.role)) {
|
|
15281
|
+
query["Role"] = request.role;
|
|
15282
|
+
}
|
|
15283
|
+
|
|
15061
15284
|
if (!Util.isUnset(request.serviceName)) {
|
|
15062
15285
|
query["ServiceName"] = request.serviceName;
|
|
15063
15286
|
}
|
|
@@ -15113,7 +15336,7 @@ export default class Client extends OpenApi {
|
|
|
15113
15336
|
}
|
|
15114
15337
|
|
|
15115
15338
|
/**
|
|
15116
|
-
*
|
|
15339
|
+
* Queries a list of tenant plug-ins.
|
|
15117
15340
|
*
|
|
15118
15341
|
* @param headers - map
|
|
15119
15342
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -15138,7 +15361,7 @@ export default class Client extends OpenApi {
|
|
|
15138
15361
|
}
|
|
15139
15362
|
|
|
15140
15363
|
/**
|
|
15141
|
-
*
|
|
15364
|
+
* Queries a list of tenant plug-ins.
|
|
15142
15365
|
* @returns ListTenantAddonsResponse
|
|
15143
15366
|
*/
|
|
15144
15367
|
async listTenantAddons(): Promise<ListTenantAddonsResponse> {
|
|
@@ -15148,7 +15371,7 @@ export default class Client extends OpenApi {
|
|
|
15148
15371
|
}
|
|
15149
15372
|
|
|
15150
15373
|
/**
|
|
15151
|
-
*
|
|
15374
|
+
* Updates the information about a tenant plug-in.
|
|
15152
15375
|
*
|
|
15153
15376
|
* @param headers - map
|
|
15154
15377
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -15173,7 +15396,7 @@ export default class Client extends OpenApi {
|
|
|
15173
15396
|
}
|
|
15174
15397
|
|
|
15175
15398
|
/**
|
|
15176
|
-
*
|
|
15399
|
+
* Updates the information about a tenant plug-in.
|
|
15177
15400
|
* @returns ReinstallTenantAddonResponse
|
|
15178
15401
|
*/
|
|
15179
15402
|
async reinstallTenantAddon(ClusterId: string, TenantAddonName: string): Promise<ReinstallTenantAddonResponse> {
|