@alicloud/slb20140515 2.0.5 → 2.0.7
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 +1635 -750
- package/dist/client.js +2665 -1734
- package/dist/client.js.map +1 -1
- package/package.json +7 -7
- package/src/client.ts +1673 -750
package/src/client.ts
CHANGED
|
@@ -65,9 +65,9 @@ export class AddAccessControlListEntryResponseBody extends $tea.Model {
|
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
export class AddAccessControlListEntryResponse extends $tea.Model {
|
|
68
|
-
headers
|
|
69
|
-
statusCode
|
|
70
|
-
body
|
|
68
|
+
headers?: { [key: string]: string };
|
|
69
|
+
statusCode?: number;
|
|
70
|
+
body?: AddAccessControlListEntryResponseBody;
|
|
71
71
|
static names(): { [key: string]: string } {
|
|
72
72
|
return {
|
|
73
73
|
headers: 'headers',
|
|
@@ -152,9 +152,9 @@ export class AddBackendServersResponseBody extends $tea.Model {
|
|
|
152
152
|
}
|
|
153
153
|
|
|
154
154
|
export class AddBackendServersResponse extends $tea.Model {
|
|
155
|
-
headers
|
|
156
|
-
statusCode
|
|
157
|
-
body
|
|
155
|
+
headers?: { [key: string]: string };
|
|
156
|
+
statusCode?: number;
|
|
157
|
+
body?: AddBackendServersResponseBody;
|
|
158
158
|
static names(): { [key: string]: string } {
|
|
159
159
|
return {
|
|
160
160
|
headers: 'headers',
|
|
@@ -239,9 +239,9 @@ export class AddListenerWhiteListItemResponseBody extends $tea.Model {
|
|
|
239
239
|
}
|
|
240
240
|
|
|
241
241
|
export class AddListenerWhiteListItemResponse extends $tea.Model {
|
|
242
|
-
headers
|
|
243
|
-
statusCode
|
|
244
|
-
body
|
|
242
|
+
headers?: { [key: string]: string };
|
|
243
|
+
statusCode?: number;
|
|
244
|
+
body?: AddListenerWhiteListItemResponseBody;
|
|
245
245
|
static names(): { [key: string]: string } {
|
|
246
246
|
return {
|
|
247
247
|
headers: 'headers',
|
|
@@ -320,9 +320,9 @@ export class AddTagsResponseBody extends $tea.Model {
|
|
|
320
320
|
}
|
|
321
321
|
|
|
322
322
|
export class AddTagsResponse extends $tea.Model {
|
|
323
|
-
headers
|
|
324
|
-
statusCode
|
|
325
|
-
body
|
|
323
|
+
headers?: { [key: string]: string };
|
|
324
|
+
statusCode?: number;
|
|
325
|
+
body?: AddTagsResponseBody;
|
|
326
326
|
static names(): { [key: string]: string } {
|
|
327
327
|
return {
|
|
328
328
|
headers: 'headers',
|
|
@@ -407,9 +407,9 @@ export class AddVServerGroupBackendServersResponseBody extends $tea.Model {
|
|
|
407
407
|
}
|
|
408
408
|
|
|
409
409
|
export class AddVServerGroupBackendServersResponse extends $tea.Model {
|
|
410
|
-
headers
|
|
411
|
-
statusCode
|
|
412
|
-
body
|
|
410
|
+
headers?: { [key: string]: string };
|
|
411
|
+
statusCode?: number;
|
|
412
|
+
body?: AddVServerGroupBackendServersResponseBody;
|
|
413
413
|
static names(): { [key: string]: string } {
|
|
414
414
|
return {
|
|
415
415
|
headers: 'headers',
|
|
@@ -497,9 +497,9 @@ export class CreateAccessControlListResponseBody extends $tea.Model {
|
|
|
497
497
|
}
|
|
498
498
|
|
|
499
499
|
export class CreateAccessControlListResponse extends $tea.Model {
|
|
500
|
-
headers
|
|
501
|
-
statusCode
|
|
502
|
-
body
|
|
500
|
+
headers?: { [key: string]: string };
|
|
501
|
+
statusCode?: number;
|
|
502
|
+
body?: CreateAccessControlListResponseBody;
|
|
503
503
|
static names(): { [key: string]: string } {
|
|
504
504
|
return {
|
|
505
505
|
headers: 'headers',
|
|
@@ -590,9 +590,9 @@ export class CreateDomainExtensionResponseBody extends $tea.Model {
|
|
|
590
590
|
}
|
|
591
591
|
|
|
592
592
|
export class CreateDomainExtensionResponse extends $tea.Model {
|
|
593
|
-
headers
|
|
594
|
-
statusCode
|
|
595
|
-
body
|
|
593
|
+
headers?: { [key: string]: string };
|
|
594
|
+
statusCode?: number;
|
|
595
|
+
body?: CreateDomainExtensionResponseBody;
|
|
596
596
|
static names(): { [key: string]: string } {
|
|
597
597
|
return {
|
|
598
598
|
headers: 'headers',
|
|
@@ -758,9 +758,9 @@ export class CreateLoadBalancerResponseBody extends $tea.Model {
|
|
|
758
758
|
}
|
|
759
759
|
|
|
760
760
|
export class CreateLoadBalancerResponse extends $tea.Model {
|
|
761
|
-
headers
|
|
762
|
-
statusCode
|
|
763
|
-
body
|
|
761
|
+
headers?: { [key: string]: string };
|
|
762
|
+
statusCode?: number;
|
|
763
|
+
body?: CreateLoadBalancerResponseBody;
|
|
764
764
|
static names(): { [key: string]: string } {
|
|
765
765
|
return {
|
|
766
766
|
headers: 'headers',
|
|
@@ -941,9 +941,9 @@ export class CreateLoadBalancerHTTPListenerResponseBody extends $tea.Model {
|
|
|
941
941
|
}
|
|
942
942
|
|
|
943
943
|
export class CreateLoadBalancerHTTPListenerResponse extends $tea.Model {
|
|
944
|
-
headers
|
|
945
|
-
statusCode
|
|
946
|
-
body
|
|
944
|
+
headers?: { [key: string]: string };
|
|
945
|
+
statusCode?: number;
|
|
946
|
+
body?: CreateLoadBalancerHTTPListenerResponseBody;
|
|
947
947
|
static names(): { [key: string]: string } {
|
|
948
948
|
return {
|
|
949
949
|
headers: 'headers',
|
|
@@ -1130,9 +1130,9 @@ export class CreateLoadBalancerHTTPSListenerResponseBody extends $tea.Model {
|
|
|
1130
1130
|
}
|
|
1131
1131
|
|
|
1132
1132
|
export class CreateLoadBalancerHTTPSListenerResponse extends $tea.Model {
|
|
1133
|
-
headers
|
|
1134
|
-
statusCode
|
|
1135
|
-
body
|
|
1133
|
+
headers?: { [key: string]: string };
|
|
1134
|
+
statusCode?: number;
|
|
1135
|
+
body?: CreateLoadBalancerHTTPSListenerResponseBody;
|
|
1136
1136
|
static names(): { [key: string]: string } {
|
|
1137
1137
|
return {
|
|
1138
1138
|
headers: 'headers',
|
|
@@ -1286,9 +1286,9 @@ export class CreateLoadBalancerTCPListenerResponseBody extends $tea.Model {
|
|
|
1286
1286
|
}
|
|
1287
1287
|
|
|
1288
1288
|
export class CreateLoadBalancerTCPListenerResponse extends $tea.Model {
|
|
1289
|
-
headers
|
|
1290
|
-
statusCode
|
|
1291
|
-
body
|
|
1289
|
+
headers?: { [key: string]: string };
|
|
1290
|
+
statusCode?: number;
|
|
1291
|
+
body?: CreateLoadBalancerTCPListenerResponseBody;
|
|
1292
1292
|
static names(): { [key: string]: string } {
|
|
1293
1293
|
return {
|
|
1294
1294
|
headers: 'headers',
|
|
@@ -1424,9 +1424,9 @@ export class CreateLoadBalancerUDPListenerResponseBody extends $tea.Model {
|
|
|
1424
1424
|
}
|
|
1425
1425
|
|
|
1426
1426
|
export class CreateLoadBalancerUDPListenerResponse extends $tea.Model {
|
|
1427
|
-
headers
|
|
1428
|
-
statusCode
|
|
1429
|
-
body
|
|
1427
|
+
headers?: { [key: string]: string };
|
|
1428
|
+
statusCode?: number;
|
|
1429
|
+
body?: CreateLoadBalancerUDPListenerResponseBody;
|
|
1430
1430
|
static names(): { [key: string]: string } {
|
|
1431
1431
|
return {
|
|
1432
1432
|
headers: 'headers',
|
|
@@ -1517,9 +1517,9 @@ export class CreateMasterSlaveServerGroupResponseBody extends $tea.Model {
|
|
|
1517
1517
|
}
|
|
1518
1518
|
|
|
1519
1519
|
export class CreateMasterSlaveServerGroupResponse extends $tea.Model {
|
|
1520
|
-
headers
|
|
1521
|
-
statusCode
|
|
1522
|
-
body
|
|
1520
|
+
headers?: { [key: string]: string };
|
|
1521
|
+
statusCode?: number;
|
|
1522
|
+
body?: CreateMasterSlaveServerGroupResponseBody;
|
|
1523
1523
|
static names(): { [key: string]: string } {
|
|
1524
1524
|
return {
|
|
1525
1525
|
headers: 'headers',
|
|
@@ -1607,9 +1607,9 @@ export class CreateRulesResponseBody extends $tea.Model {
|
|
|
1607
1607
|
}
|
|
1608
1608
|
|
|
1609
1609
|
export class CreateRulesResponse extends $tea.Model {
|
|
1610
|
-
headers
|
|
1611
|
-
statusCode
|
|
1612
|
-
body
|
|
1610
|
+
headers?: { [key: string]: string };
|
|
1611
|
+
statusCode?: number;
|
|
1612
|
+
body?: CreateRulesResponseBody;
|
|
1613
1613
|
static names(): { [key: string]: string } {
|
|
1614
1614
|
return {
|
|
1615
1615
|
headers: 'headers',
|
|
@@ -1694,9 +1694,9 @@ export class CreateTLSCipherPolicyResponseBody extends $tea.Model {
|
|
|
1694
1694
|
}
|
|
1695
1695
|
|
|
1696
1696
|
export class CreateTLSCipherPolicyResponse extends $tea.Model {
|
|
1697
|
-
headers
|
|
1698
|
-
statusCode
|
|
1699
|
-
body
|
|
1697
|
+
headers?: { [key: string]: string };
|
|
1698
|
+
statusCode?: number;
|
|
1699
|
+
body?: CreateTLSCipherPolicyResponseBody;
|
|
1700
1700
|
static names(): { [key: string]: string } {
|
|
1701
1701
|
return {
|
|
1702
1702
|
headers: 'headers',
|
|
@@ -1787,9 +1787,9 @@ export class CreateVServerGroupResponseBody extends $tea.Model {
|
|
|
1787
1787
|
}
|
|
1788
1788
|
|
|
1789
1789
|
export class CreateVServerGroupResponse extends $tea.Model {
|
|
1790
|
-
headers
|
|
1791
|
-
statusCode
|
|
1792
|
-
body
|
|
1790
|
+
headers?: { [key: string]: string };
|
|
1791
|
+
statusCode?: number;
|
|
1792
|
+
body?: CreateVServerGroupResponseBody;
|
|
1793
1793
|
static names(): { [key: string]: string } {
|
|
1794
1794
|
return {
|
|
1795
1795
|
headers: 'headers',
|
|
@@ -1865,9 +1865,9 @@ export class DeleteAccessControlListResponseBody extends $tea.Model {
|
|
|
1865
1865
|
}
|
|
1866
1866
|
|
|
1867
1867
|
export class DeleteAccessControlListResponse extends $tea.Model {
|
|
1868
|
-
headers
|
|
1869
|
-
statusCode
|
|
1870
|
-
body
|
|
1868
|
+
headers?: { [key: string]: string };
|
|
1869
|
+
statusCode?: number;
|
|
1870
|
+
body?: DeleteAccessControlListResponseBody;
|
|
1871
1871
|
static names(): { [key: string]: string } {
|
|
1872
1872
|
return {
|
|
1873
1873
|
headers: 'headers',
|
|
@@ -1949,9 +1949,9 @@ export class DeleteAccessLogsDownloadAttributeResponseBody extends $tea.Model {
|
|
|
1949
1949
|
}
|
|
1950
1950
|
|
|
1951
1951
|
export class DeleteAccessLogsDownloadAttributeResponse extends $tea.Model {
|
|
1952
|
-
headers
|
|
1953
|
-
statusCode
|
|
1954
|
-
body
|
|
1952
|
+
headers?: { [key: string]: string };
|
|
1953
|
+
statusCode?: number;
|
|
1954
|
+
body?: DeleteAccessLogsDownloadAttributeResponseBody;
|
|
1955
1955
|
static names(): { [key: string]: string } {
|
|
1956
1956
|
return {
|
|
1957
1957
|
headers: 'headers',
|
|
@@ -2027,9 +2027,9 @@ export class DeleteCACertificateResponseBody extends $tea.Model {
|
|
|
2027
2027
|
}
|
|
2028
2028
|
|
|
2029
2029
|
export class DeleteCACertificateResponse extends $tea.Model {
|
|
2030
|
-
headers
|
|
2031
|
-
statusCode
|
|
2032
|
-
body
|
|
2030
|
+
headers?: { [key: string]: string };
|
|
2031
|
+
statusCode?: number;
|
|
2032
|
+
body?: DeleteCACertificateResponseBody;
|
|
2033
2033
|
static names(): { [key: string]: string } {
|
|
2034
2034
|
return {
|
|
2035
2035
|
headers: 'headers',
|
|
@@ -2105,9 +2105,9 @@ export class DeleteDomainExtensionResponseBody extends $tea.Model {
|
|
|
2105
2105
|
}
|
|
2106
2106
|
|
|
2107
2107
|
export class DeleteDomainExtensionResponse extends $tea.Model {
|
|
2108
|
-
headers
|
|
2109
|
-
statusCode
|
|
2110
|
-
body
|
|
2108
|
+
headers?: { [key: string]: string };
|
|
2109
|
+
statusCode?: number;
|
|
2110
|
+
body?: DeleteDomainExtensionResponseBody;
|
|
2111
2111
|
static names(): { [key: string]: string } {
|
|
2112
2112
|
return {
|
|
2113
2113
|
headers: 'headers',
|
|
@@ -2183,9 +2183,9 @@ export class DeleteLoadBalancerResponseBody extends $tea.Model {
|
|
|
2183
2183
|
}
|
|
2184
2184
|
|
|
2185
2185
|
export class DeleteLoadBalancerResponse extends $tea.Model {
|
|
2186
|
-
headers
|
|
2187
|
-
statusCode
|
|
2188
|
-
body
|
|
2186
|
+
headers?: { [key: string]: string };
|
|
2187
|
+
statusCode?: number;
|
|
2188
|
+
body?: DeleteLoadBalancerResponseBody;
|
|
2189
2189
|
static names(): { [key: string]: string } {
|
|
2190
2190
|
return {
|
|
2191
2191
|
headers: 'headers',
|
|
@@ -2267,9 +2267,9 @@ export class DeleteLoadBalancerListenerResponseBody extends $tea.Model {
|
|
|
2267
2267
|
}
|
|
2268
2268
|
|
|
2269
2269
|
export class DeleteLoadBalancerListenerResponse extends $tea.Model {
|
|
2270
|
-
headers
|
|
2271
|
-
statusCode
|
|
2272
|
-
body
|
|
2270
|
+
headers?: { [key: string]: string };
|
|
2271
|
+
statusCode?: number;
|
|
2272
|
+
body?: DeleteLoadBalancerListenerResponseBody;
|
|
2273
2273
|
static names(): { [key: string]: string } {
|
|
2274
2274
|
return {
|
|
2275
2275
|
headers: 'headers',
|
|
@@ -2345,9 +2345,9 @@ export class DeleteMasterSlaveServerGroupResponseBody extends $tea.Model {
|
|
|
2345
2345
|
}
|
|
2346
2346
|
|
|
2347
2347
|
export class DeleteMasterSlaveServerGroupResponse extends $tea.Model {
|
|
2348
|
-
headers
|
|
2349
|
-
statusCode
|
|
2350
|
-
body
|
|
2348
|
+
headers?: { [key: string]: string };
|
|
2349
|
+
statusCode?: number;
|
|
2350
|
+
body?: DeleteMasterSlaveServerGroupResponseBody;
|
|
2351
2351
|
static names(): { [key: string]: string } {
|
|
2352
2352
|
return {
|
|
2353
2353
|
headers: 'headers',
|
|
@@ -2423,9 +2423,9 @@ export class DeleteRulesResponseBody extends $tea.Model {
|
|
|
2423
2423
|
}
|
|
2424
2424
|
|
|
2425
2425
|
export class DeleteRulesResponse extends $tea.Model {
|
|
2426
|
-
headers
|
|
2427
|
-
statusCode
|
|
2428
|
-
body
|
|
2426
|
+
headers?: { [key: string]: string };
|
|
2427
|
+
statusCode?: number;
|
|
2428
|
+
body?: DeleteRulesResponseBody;
|
|
2429
2429
|
static names(): { [key: string]: string } {
|
|
2430
2430
|
return {
|
|
2431
2431
|
headers: 'headers',
|
|
@@ -2501,9 +2501,9 @@ export class DeleteServerCertificateResponseBody extends $tea.Model {
|
|
|
2501
2501
|
}
|
|
2502
2502
|
|
|
2503
2503
|
export class DeleteServerCertificateResponse extends $tea.Model {
|
|
2504
|
-
headers
|
|
2505
|
-
statusCode
|
|
2506
|
-
body
|
|
2504
|
+
headers?: { [key: string]: string };
|
|
2505
|
+
statusCode?: number;
|
|
2506
|
+
body?: DeleteServerCertificateResponseBody;
|
|
2507
2507
|
static names(): { [key: string]: string } {
|
|
2508
2508
|
return {
|
|
2509
2509
|
headers: 'headers',
|
|
@@ -2579,9 +2579,9 @@ export class DeleteTLSCipherPolicyResponseBody extends $tea.Model {
|
|
|
2579
2579
|
}
|
|
2580
2580
|
|
|
2581
2581
|
export class DeleteTLSCipherPolicyResponse extends $tea.Model {
|
|
2582
|
-
headers
|
|
2583
|
-
statusCode
|
|
2584
|
-
body
|
|
2582
|
+
headers?: { [key: string]: string };
|
|
2583
|
+
statusCode?: number;
|
|
2584
|
+
body?: DeleteTLSCipherPolicyResponseBody;
|
|
2585
2585
|
static names(): { [key: string]: string } {
|
|
2586
2586
|
return {
|
|
2587
2587
|
headers: 'headers',
|
|
@@ -2657,9 +2657,9 @@ export class DeleteVServerGroupResponseBody extends $tea.Model {
|
|
|
2657
2657
|
}
|
|
2658
2658
|
|
|
2659
2659
|
export class DeleteVServerGroupResponse extends $tea.Model {
|
|
2660
|
-
headers
|
|
2661
|
-
statusCode
|
|
2662
|
-
body
|
|
2660
|
+
headers?: { [key: string]: string };
|
|
2661
|
+
statusCode?: number;
|
|
2662
|
+
body?: DeleteVServerGroupResponseBody;
|
|
2663
2663
|
static names(): { [key: string]: string } {
|
|
2664
2664
|
return {
|
|
2665
2665
|
headers: 'headers',
|
|
@@ -2771,9 +2771,9 @@ export class DescribeAccessControlListAttributeResponseBody extends $tea.Model {
|
|
|
2771
2771
|
}
|
|
2772
2772
|
|
|
2773
2773
|
export class DescribeAccessControlListAttributeResponse extends $tea.Model {
|
|
2774
|
-
headers
|
|
2775
|
-
statusCode
|
|
2776
|
-
body
|
|
2774
|
+
headers?: { [key: string]: string };
|
|
2775
|
+
statusCode?: number;
|
|
2776
|
+
body?: DescribeAccessControlListAttributeResponseBody;
|
|
2777
2777
|
static names(): { [key: string]: string } {
|
|
2778
2778
|
return {
|
|
2779
2779
|
headers: 'headers',
|
|
@@ -2879,9 +2879,9 @@ export class DescribeAccessControlListsResponseBody extends $tea.Model {
|
|
|
2879
2879
|
}
|
|
2880
2880
|
|
|
2881
2881
|
export class DescribeAccessControlListsResponse extends $tea.Model {
|
|
2882
|
-
headers
|
|
2883
|
-
statusCode
|
|
2884
|
-
body
|
|
2882
|
+
headers?: { [key: string]: string };
|
|
2883
|
+
statusCode?: number;
|
|
2884
|
+
body?: DescribeAccessControlListsResponseBody;
|
|
2885
2885
|
static names(): { [key: string]: string } {
|
|
2886
2886
|
return {
|
|
2887
2887
|
headers: 'headers',
|
|
@@ -2981,9 +2981,9 @@ export class DescribeAccessLogsDownloadAttributeResponseBody extends $tea.Model
|
|
|
2981
2981
|
}
|
|
2982
2982
|
|
|
2983
2983
|
export class DescribeAccessLogsDownloadAttributeResponse extends $tea.Model {
|
|
2984
|
-
headers
|
|
2985
|
-
statusCode
|
|
2986
|
-
body
|
|
2984
|
+
headers?: { [key: string]: string };
|
|
2985
|
+
statusCode?: number;
|
|
2986
|
+
body?: DescribeAccessLogsDownloadAttributeResponseBody;
|
|
2987
2987
|
static names(): { [key: string]: string } {
|
|
2988
2988
|
return {
|
|
2989
2989
|
headers: 'headers',
|
|
@@ -3065,9 +3065,9 @@ export class DescribeAvailableResourceResponseBody extends $tea.Model {
|
|
|
3065
3065
|
}
|
|
3066
3066
|
|
|
3067
3067
|
export class DescribeAvailableResourceResponse extends $tea.Model {
|
|
3068
|
-
headers
|
|
3069
|
-
statusCode
|
|
3070
|
-
body
|
|
3068
|
+
headers?: { [key: string]: string };
|
|
3069
|
+
statusCode?: number;
|
|
3070
|
+
body?: DescribeAvailableResourceResponseBody;
|
|
3071
3071
|
static names(): { [key: string]: string } {
|
|
3072
3072
|
return {
|
|
3073
3073
|
headers: 'headers',
|
|
@@ -3152,9 +3152,9 @@ export class DescribeCACertificatesResponseBody extends $tea.Model {
|
|
|
3152
3152
|
}
|
|
3153
3153
|
|
|
3154
3154
|
export class DescribeCACertificatesResponse extends $tea.Model {
|
|
3155
|
-
headers
|
|
3156
|
-
statusCode
|
|
3157
|
-
body
|
|
3155
|
+
headers?: { [key: string]: string };
|
|
3156
|
+
statusCode?: number;
|
|
3157
|
+
body?: DescribeCACertificatesResponseBody;
|
|
3158
3158
|
static names(): { [key: string]: string } {
|
|
3159
3159
|
return {
|
|
3160
3160
|
headers: 'headers',
|
|
@@ -3245,9 +3245,9 @@ export class DescribeDomainExtensionAttributeResponseBody extends $tea.Model {
|
|
|
3245
3245
|
}
|
|
3246
3246
|
|
|
3247
3247
|
export class DescribeDomainExtensionAttributeResponse extends $tea.Model {
|
|
3248
|
-
headers
|
|
3249
|
-
statusCode
|
|
3250
|
-
body
|
|
3248
|
+
headers?: { [key: string]: string };
|
|
3249
|
+
statusCode?: number;
|
|
3250
|
+
body?: DescribeDomainExtensionAttributeResponseBody;
|
|
3251
3251
|
static names(): { [key: string]: string } {
|
|
3252
3252
|
return {
|
|
3253
3253
|
headers: 'headers',
|
|
@@ -3332,9 +3332,9 @@ export class DescribeDomainExtensionsResponseBody extends $tea.Model {
|
|
|
3332
3332
|
}
|
|
3333
3333
|
|
|
3334
3334
|
export class DescribeDomainExtensionsResponse extends $tea.Model {
|
|
3335
|
-
headers
|
|
3336
|
-
statusCode
|
|
3337
|
-
body
|
|
3335
|
+
headers?: { [key: string]: string };
|
|
3336
|
+
statusCode?: number;
|
|
3337
|
+
body?: DescribeDomainExtensionsResponseBody;
|
|
3338
3338
|
static names(): { [key: string]: string } {
|
|
3339
3339
|
return {
|
|
3340
3340
|
headers: 'headers',
|
|
@@ -3419,9 +3419,9 @@ export class DescribeHealthStatusResponseBody extends $tea.Model {
|
|
|
3419
3419
|
}
|
|
3420
3420
|
|
|
3421
3421
|
export class DescribeHealthStatusResponse extends $tea.Model {
|
|
3422
|
-
headers
|
|
3423
|
-
statusCode
|
|
3424
|
-
body
|
|
3422
|
+
headers?: { [key: string]: string };
|
|
3423
|
+
statusCode?: number;
|
|
3424
|
+
body?: DescribeHealthStatusResponseBody;
|
|
3425
3425
|
static names(): { [key: string]: string } {
|
|
3426
3426
|
return {
|
|
3427
3427
|
headers: 'headers',
|
|
@@ -3506,9 +3506,9 @@ export class DescribeHighDefinationMonitorResponseBody extends $tea.Model {
|
|
|
3506
3506
|
}
|
|
3507
3507
|
|
|
3508
3508
|
export class DescribeHighDefinationMonitorResponse extends $tea.Model {
|
|
3509
|
-
headers
|
|
3510
|
-
statusCode
|
|
3511
|
-
body
|
|
3509
|
+
headers?: { [key: string]: string };
|
|
3510
|
+
statusCode?: number;
|
|
3511
|
+
body?: DescribeHighDefinationMonitorResponseBody;
|
|
3512
3512
|
static names(): { [key: string]: string } {
|
|
3513
3513
|
return {
|
|
3514
3514
|
headers: 'headers',
|
|
@@ -3596,9 +3596,9 @@ export class DescribeListenerAccessControlAttributeResponseBody extends $tea.Mod
|
|
|
3596
3596
|
}
|
|
3597
3597
|
|
|
3598
3598
|
export class DescribeListenerAccessControlAttributeResponse extends $tea.Model {
|
|
3599
|
-
headers
|
|
3600
|
-
statusCode
|
|
3601
|
-
body
|
|
3599
|
+
headers?: { [key: string]: string };
|
|
3600
|
+
statusCode?: number;
|
|
3601
|
+
body?: DescribeListenerAccessControlAttributeResponseBody;
|
|
3602
3602
|
static names(): { [key: string]: string } {
|
|
3603
3603
|
return {
|
|
3604
3604
|
headers: 'headers',
|
|
@@ -3779,9 +3779,9 @@ export class DescribeLoadBalancerAttributeResponseBody extends $tea.Model {
|
|
|
3779
3779
|
}
|
|
3780
3780
|
|
|
3781
3781
|
export class DescribeLoadBalancerAttributeResponse extends $tea.Model {
|
|
3782
|
-
headers
|
|
3783
|
-
statusCode
|
|
3784
|
-
body
|
|
3782
|
+
headers?: { [key: string]: string };
|
|
3783
|
+
statusCode?: number;
|
|
3784
|
+
body?: DescribeLoadBalancerAttributeResponseBody;
|
|
3785
3785
|
static names(): { [key: string]: string } {
|
|
3786
3786
|
return {
|
|
3787
3787
|
headers: 'headers',
|
|
@@ -3842,6 +3842,7 @@ export class DescribeLoadBalancerHTTPListenerAttributeRequest extends $tea.Model
|
|
|
3842
3842
|
|
|
3843
3843
|
export class DescribeLoadBalancerHTTPListenerAttributeResponseBody extends $tea.Model {
|
|
3844
3844
|
aclId?: string;
|
|
3845
|
+
aclIds?: DescribeLoadBalancerHTTPListenerAttributeResponseBodyAclIds;
|
|
3845
3846
|
aclStatus?: string;
|
|
3846
3847
|
aclType?: string;
|
|
3847
3848
|
backendServerPort?: number;
|
|
@@ -3884,6 +3885,7 @@ export class DescribeLoadBalancerHTTPListenerAttributeResponseBody extends $tea.
|
|
|
3884
3885
|
static names(): { [key: string]: string } {
|
|
3885
3886
|
return {
|
|
3886
3887
|
aclId: 'AclId',
|
|
3888
|
+
aclIds: 'AclIds',
|
|
3887
3889
|
aclStatus: 'AclStatus',
|
|
3888
3890
|
aclType: 'AclType',
|
|
3889
3891
|
backendServerPort: 'BackendServerPort',
|
|
@@ -3929,6 +3931,7 @@ export class DescribeLoadBalancerHTTPListenerAttributeResponseBody extends $tea.
|
|
|
3929
3931
|
static types(): { [key: string]: any } {
|
|
3930
3932
|
return {
|
|
3931
3933
|
aclId: 'string',
|
|
3934
|
+
aclIds: DescribeLoadBalancerHTTPListenerAttributeResponseBodyAclIds,
|
|
3932
3935
|
aclStatus: 'string',
|
|
3933
3936
|
aclType: 'string',
|
|
3934
3937
|
backendServerPort: 'number',
|
|
@@ -3977,9 +3980,9 @@ export class DescribeLoadBalancerHTTPListenerAttributeResponseBody extends $tea.
|
|
|
3977
3980
|
}
|
|
3978
3981
|
|
|
3979
3982
|
export class DescribeLoadBalancerHTTPListenerAttributeResponse extends $tea.Model {
|
|
3980
|
-
headers
|
|
3981
|
-
statusCode
|
|
3982
|
-
body
|
|
3983
|
+
headers?: { [key: string]: string };
|
|
3984
|
+
statusCode?: number;
|
|
3985
|
+
body?: DescribeLoadBalancerHTTPListenerAttributeResponseBody;
|
|
3983
3986
|
static names(): { [key: string]: string } {
|
|
3984
3987
|
return {
|
|
3985
3988
|
headers: 'headers',
|
|
@@ -4040,6 +4043,7 @@ export class DescribeLoadBalancerHTTPSListenerAttributeRequest extends $tea.Mode
|
|
|
4040
4043
|
|
|
4041
4044
|
export class DescribeLoadBalancerHTTPSListenerAttributeResponseBody extends $tea.Model {
|
|
4042
4045
|
aclId?: string;
|
|
4046
|
+
aclIds?: DescribeLoadBalancerHTTPSListenerAttributeResponseBodyAclIds;
|
|
4043
4047
|
aclStatus?: string;
|
|
4044
4048
|
aclType?: string;
|
|
4045
4049
|
backendServerPort?: number;
|
|
@@ -4089,6 +4093,7 @@ export class DescribeLoadBalancerHTTPSListenerAttributeResponseBody extends $tea
|
|
|
4089
4093
|
static names(): { [key: string]: string } {
|
|
4090
4094
|
return {
|
|
4091
4095
|
aclId: 'AclId',
|
|
4096
|
+
aclIds: 'AclIds',
|
|
4092
4097
|
aclStatus: 'AclStatus',
|
|
4093
4098
|
aclType: 'AclType',
|
|
4094
4099
|
backendServerPort: 'BackendServerPort',
|
|
@@ -4141,6 +4146,7 @@ export class DescribeLoadBalancerHTTPSListenerAttributeResponseBody extends $tea
|
|
|
4141
4146
|
static types(): { [key: string]: any } {
|
|
4142
4147
|
return {
|
|
4143
4148
|
aclId: 'string',
|
|
4149
|
+
aclIds: DescribeLoadBalancerHTTPSListenerAttributeResponseBodyAclIds,
|
|
4144
4150
|
aclStatus: 'string',
|
|
4145
4151
|
aclType: 'string',
|
|
4146
4152
|
backendServerPort: 'number',
|
|
@@ -4196,9 +4202,9 @@ export class DescribeLoadBalancerHTTPSListenerAttributeResponseBody extends $tea
|
|
|
4196
4202
|
}
|
|
4197
4203
|
|
|
4198
4204
|
export class DescribeLoadBalancerHTTPSListenerAttributeResponse extends $tea.Model {
|
|
4199
|
-
headers
|
|
4200
|
-
statusCode
|
|
4201
|
-
body
|
|
4205
|
+
headers?: { [key: string]: string };
|
|
4206
|
+
statusCode?: number;
|
|
4207
|
+
body?: DescribeLoadBalancerHTTPSListenerAttributeResponseBody;
|
|
4202
4208
|
static names(): { [key: string]: string } {
|
|
4203
4209
|
return {
|
|
4204
4210
|
headers: 'headers',
|
|
@@ -4304,9 +4310,9 @@ export class DescribeLoadBalancerListenersResponseBody extends $tea.Model {
|
|
|
4304
4310
|
}
|
|
4305
4311
|
|
|
4306
4312
|
export class DescribeLoadBalancerListenersResponse extends $tea.Model {
|
|
4307
|
-
headers
|
|
4308
|
-
statusCode
|
|
4309
|
-
body
|
|
4313
|
+
headers?: { [key: string]: string };
|
|
4314
|
+
statusCode?: number;
|
|
4315
|
+
body?: DescribeLoadBalancerListenersResponseBody;
|
|
4310
4316
|
static names(): { [key: string]: string } {
|
|
4311
4317
|
return {
|
|
4312
4318
|
headers: 'headers',
|
|
@@ -4367,6 +4373,7 @@ export class DescribeLoadBalancerTCPListenerAttributeRequest extends $tea.Model
|
|
|
4367
4373
|
|
|
4368
4374
|
export class DescribeLoadBalancerTCPListenerAttributeResponseBody extends $tea.Model {
|
|
4369
4375
|
aclId?: string;
|
|
4376
|
+
aclIds?: DescribeLoadBalancerTCPListenerAttributeResponseBodyAclIds;
|
|
4370
4377
|
aclStatus?: string;
|
|
4371
4378
|
aclType?: string;
|
|
4372
4379
|
backendServerPort?: number;
|
|
@@ -4400,6 +4407,7 @@ export class DescribeLoadBalancerTCPListenerAttributeResponseBody extends $tea.M
|
|
|
4400
4407
|
static names(): { [key: string]: string } {
|
|
4401
4408
|
return {
|
|
4402
4409
|
aclId: 'AclId',
|
|
4410
|
+
aclIds: 'AclIds',
|
|
4403
4411
|
aclStatus: 'AclStatus',
|
|
4404
4412
|
aclType: 'AclType',
|
|
4405
4413
|
backendServerPort: 'BackendServerPort',
|
|
@@ -4436,6 +4444,7 @@ export class DescribeLoadBalancerTCPListenerAttributeResponseBody extends $tea.M
|
|
|
4436
4444
|
static types(): { [key: string]: any } {
|
|
4437
4445
|
return {
|
|
4438
4446
|
aclId: 'string',
|
|
4447
|
+
aclIds: DescribeLoadBalancerTCPListenerAttributeResponseBodyAclIds,
|
|
4439
4448
|
aclStatus: 'string',
|
|
4440
4449
|
aclType: 'string',
|
|
4441
4450
|
backendServerPort: 'number',
|
|
@@ -4475,9 +4484,9 @@ export class DescribeLoadBalancerTCPListenerAttributeResponseBody extends $tea.M
|
|
|
4475
4484
|
}
|
|
4476
4485
|
|
|
4477
4486
|
export class DescribeLoadBalancerTCPListenerAttributeResponse extends $tea.Model {
|
|
4478
|
-
headers
|
|
4479
|
-
statusCode
|
|
4480
|
-
body
|
|
4487
|
+
headers?: { [key: string]: string };
|
|
4488
|
+
statusCode?: number;
|
|
4489
|
+
body?: DescribeLoadBalancerTCPListenerAttributeResponseBody;
|
|
4481
4490
|
static names(): { [key: string]: string } {
|
|
4482
4491
|
return {
|
|
4483
4492
|
headers: 'headers',
|
|
@@ -4538,6 +4547,7 @@ export class DescribeLoadBalancerUDPListenerAttributeRequest extends $tea.Model
|
|
|
4538
4547
|
|
|
4539
4548
|
export class DescribeLoadBalancerUDPListenerAttributeResponseBody extends $tea.Model {
|
|
4540
4549
|
aclId?: string;
|
|
4550
|
+
aclIds?: DescribeLoadBalancerUDPListenerAttributeResponseBodyAclIds;
|
|
4541
4551
|
aclStatus?: string;
|
|
4542
4552
|
aclType?: string;
|
|
4543
4553
|
backendServerPort?: number;
|
|
@@ -4563,6 +4573,7 @@ export class DescribeLoadBalancerUDPListenerAttributeResponseBody extends $tea.M
|
|
|
4563
4573
|
static names(): { [key: string]: string } {
|
|
4564
4574
|
return {
|
|
4565
4575
|
aclId: 'AclId',
|
|
4576
|
+
aclIds: 'AclIds',
|
|
4566
4577
|
aclStatus: 'AclStatus',
|
|
4567
4578
|
aclType: 'AclType',
|
|
4568
4579
|
backendServerPort: 'BackendServerPort',
|
|
@@ -4591,6 +4602,7 @@ export class DescribeLoadBalancerUDPListenerAttributeResponseBody extends $tea.M
|
|
|
4591
4602
|
static types(): { [key: string]: any } {
|
|
4592
4603
|
return {
|
|
4593
4604
|
aclId: 'string',
|
|
4605
|
+
aclIds: DescribeLoadBalancerUDPListenerAttributeResponseBodyAclIds,
|
|
4594
4606
|
aclStatus: 'string',
|
|
4595
4607
|
aclType: 'string',
|
|
4596
4608
|
backendServerPort: 'number',
|
|
@@ -4622,9 +4634,9 @@ export class DescribeLoadBalancerUDPListenerAttributeResponseBody extends $tea.M
|
|
|
4622
4634
|
}
|
|
4623
4635
|
|
|
4624
4636
|
export class DescribeLoadBalancerUDPListenerAttributeResponse extends $tea.Model {
|
|
4625
|
-
headers
|
|
4626
|
-
statusCode
|
|
4627
|
-
body
|
|
4637
|
+
headers?: { [key: string]: string };
|
|
4638
|
+
statusCode?: number;
|
|
4639
|
+
body?: DescribeLoadBalancerUDPListenerAttributeResponseBody;
|
|
4628
4640
|
static names(): { [key: string]: string } {
|
|
4629
4641
|
return {
|
|
4630
4642
|
headers: 'headers',
|
|
@@ -4769,9 +4781,9 @@ export class DescribeLoadBalancersResponseBody extends $tea.Model {
|
|
|
4769
4781
|
}
|
|
4770
4782
|
|
|
4771
4783
|
export class DescribeLoadBalancersResponse extends $tea.Model {
|
|
4772
|
-
headers
|
|
4773
|
-
statusCode
|
|
4774
|
-
body
|
|
4784
|
+
headers?: { [key: string]: string };
|
|
4785
|
+
statusCode?: number;
|
|
4786
|
+
body?: DescribeLoadBalancersResponseBody;
|
|
4775
4787
|
static names(): { [key: string]: string } {
|
|
4776
4788
|
return {
|
|
4777
4789
|
headers: 'headers',
|
|
@@ -4865,9 +4877,9 @@ export class DescribeMasterSlaveServerGroupAttributeResponseBody extends $tea.Mo
|
|
|
4865
4877
|
}
|
|
4866
4878
|
|
|
4867
4879
|
export class DescribeMasterSlaveServerGroupAttributeResponse extends $tea.Model {
|
|
4868
|
-
headers
|
|
4869
|
-
statusCode
|
|
4870
|
-
body
|
|
4880
|
+
headers?: { [key: string]: string };
|
|
4881
|
+
statusCode?: number;
|
|
4882
|
+
body?: DescribeMasterSlaveServerGroupAttributeResponseBody;
|
|
4871
4883
|
static names(): { [key: string]: string } {
|
|
4872
4884
|
return {
|
|
4873
4885
|
headers: 'headers',
|
|
@@ -4955,9 +4967,9 @@ export class DescribeMasterSlaveServerGroupsResponseBody extends $tea.Model {
|
|
|
4955
4967
|
}
|
|
4956
4968
|
|
|
4957
4969
|
export class DescribeMasterSlaveServerGroupsResponse extends $tea.Model {
|
|
4958
|
-
headers
|
|
4959
|
-
statusCode
|
|
4960
|
-
body
|
|
4970
|
+
headers?: { [key: string]: string };
|
|
4971
|
+
statusCode?: number;
|
|
4972
|
+
body?: DescribeMasterSlaveServerGroupsResponseBody;
|
|
4961
4973
|
static names(): { [key: string]: string } {
|
|
4962
4974
|
return {
|
|
4963
4975
|
headers: 'headers',
|
|
@@ -5036,9 +5048,9 @@ export class DescribeRegionsResponseBody extends $tea.Model {
|
|
|
5036
5048
|
}
|
|
5037
5049
|
|
|
5038
5050
|
export class DescribeRegionsResponse extends $tea.Model {
|
|
5039
|
-
headers
|
|
5040
|
-
statusCode
|
|
5041
|
-
body
|
|
5051
|
+
headers?: { [key: string]: string };
|
|
5052
|
+
statusCode?: number;
|
|
5053
|
+
body?: DescribeRegionsResponseBody;
|
|
5042
5054
|
static names(): { [key: string]: string } {
|
|
5043
5055
|
return {
|
|
5044
5056
|
headers: 'headers',
|
|
@@ -5180,9 +5192,9 @@ export class DescribeRuleAttributeResponseBody extends $tea.Model {
|
|
|
5180
5192
|
}
|
|
5181
5193
|
|
|
5182
5194
|
export class DescribeRuleAttributeResponse extends $tea.Model {
|
|
5183
|
-
headers
|
|
5184
|
-
statusCode
|
|
5185
|
-
body
|
|
5195
|
+
headers?: { [key: string]: string };
|
|
5196
|
+
statusCode?: number;
|
|
5197
|
+
body?: DescribeRuleAttributeResponseBody;
|
|
5186
5198
|
static names(): { [key: string]: string } {
|
|
5187
5199
|
return {
|
|
5188
5200
|
headers: 'headers',
|
|
@@ -5267,9 +5279,9 @@ export class DescribeRulesResponseBody extends $tea.Model {
|
|
|
5267
5279
|
}
|
|
5268
5280
|
|
|
5269
5281
|
export class DescribeRulesResponse extends $tea.Model {
|
|
5270
|
-
headers
|
|
5271
|
-
statusCode
|
|
5272
|
-
body
|
|
5282
|
+
headers?: { [key: string]: string };
|
|
5283
|
+
statusCode?: number;
|
|
5284
|
+
body?: DescribeRulesResponseBody;
|
|
5273
5285
|
static names(): { [key: string]: string } {
|
|
5274
5286
|
return {
|
|
5275
5287
|
headers: 'headers',
|
|
@@ -5354,9 +5366,9 @@ export class DescribeServerCertificatesResponseBody extends $tea.Model {
|
|
|
5354
5366
|
}
|
|
5355
5367
|
|
|
5356
5368
|
export class DescribeServerCertificatesResponse extends $tea.Model {
|
|
5357
|
-
headers
|
|
5358
|
-
statusCode
|
|
5359
|
-
body
|
|
5369
|
+
headers?: { [key: string]: string };
|
|
5370
|
+
statusCode?: number;
|
|
5371
|
+
body?: DescribeServerCertificatesResponseBody;
|
|
5360
5372
|
static names(): { [key: string]: string } {
|
|
5361
5373
|
return {
|
|
5362
5374
|
headers: 'headers',
|
|
@@ -5456,9 +5468,9 @@ export class DescribeTagsResponseBody extends $tea.Model {
|
|
|
5456
5468
|
}
|
|
5457
5469
|
|
|
5458
5470
|
export class DescribeTagsResponse extends $tea.Model {
|
|
5459
|
-
headers
|
|
5460
|
-
statusCode
|
|
5461
|
-
body
|
|
5471
|
+
headers?: { [key: string]: string };
|
|
5472
|
+
statusCode?: number;
|
|
5473
|
+
body?: DescribeTagsResponseBody;
|
|
5462
5474
|
static names(): { [key: string]: string } {
|
|
5463
5475
|
return {
|
|
5464
5476
|
headers: 'headers',
|
|
@@ -5552,9 +5564,9 @@ export class DescribeVServerGroupAttributeResponseBody extends $tea.Model {
|
|
|
5552
5564
|
}
|
|
5553
5565
|
|
|
5554
5566
|
export class DescribeVServerGroupAttributeResponse extends $tea.Model {
|
|
5555
|
-
headers
|
|
5556
|
-
statusCode
|
|
5557
|
-
body
|
|
5567
|
+
headers?: { [key: string]: string };
|
|
5568
|
+
statusCode?: number;
|
|
5569
|
+
body?: DescribeVServerGroupAttributeResponseBody;
|
|
5558
5570
|
static names(): { [key: string]: string } {
|
|
5559
5571
|
return {
|
|
5560
5572
|
headers: 'headers',
|
|
@@ -5645,9 +5657,9 @@ export class DescribeVServerGroupsResponseBody extends $tea.Model {
|
|
|
5645
5657
|
}
|
|
5646
5658
|
|
|
5647
5659
|
export class DescribeVServerGroupsResponse extends $tea.Model {
|
|
5648
|
-
headers
|
|
5649
|
-
statusCode
|
|
5650
|
-
body
|
|
5660
|
+
headers?: { [key: string]: string };
|
|
5661
|
+
statusCode?: number;
|
|
5662
|
+
body?: DescribeVServerGroupsResponseBody;
|
|
5651
5663
|
static names(): { [key: string]: string } {
|
|
5652
5664
|
return {
|
|
5653
5665
|
headers: 'headers',
|
|
@@ -5723,9 +5735,9 @@ export class DescribeZonesResponseBody extends $tea.Model {
|
|
|
5723
5735
|
}
|
|
5724
5736
|
|
|
5725
5737
|
export class DescribeZonesResponse extends $tea.Model {
|
|
5726
|
-
headers
|
|
5727
|
-
statusCode
|
|
5728
|
-
body
|
|
5738
|
+
headers?: { [key: string]: string };
|
|
5739
|
+
statusCode?: number;
|
|
5740
|
+
body?: DescribeZonesResponseBody;
|
|
5729
5741
|
static names(): { [key: string]: string } {
|
|
5730
5742
|
return {
|
|
5731
5743
|
headers: 'headers',
|
|
@@ -5810,9 +5822,9 @@ export class EnableHighDefinationMonitorResponseBody extends $tea.Model {
|
|
|
5810
5822
|
}
|
|
5811
5823
|
|
|
5812
5824
|
export class EnableHighDefinationMonitorResponse extends $tea.Model {
|
|
5813
|
-
headers
|
|
5814
|
-
statusCode
|
|
5815
|
-
body
|
|
5825
|
+
headers?: { [key: string]: string };
|
|
5826
|
+
statusCode?: number;
|
|
5827
|
+
body?: EnableHighDefinationMonitorResponseBody;
|
|
5816
5828
|
static names(): { [key: string]: string } {
|
|
5817
5829
|
return {
|
|
5818
5830
|
headers: 'headers',
|
|
@@ -5912,9 +5924,9 @@ export class ListTLSCipherPoliciesResponseBody extends $tea.Model {
|
|
|
5912
5924
|
}
|
|
5913
5925
|
|
|
5914
5926
|
export class ListTLSCipherPoliciesResponse extends $tea.Model {
|
|
5915
|
-
headers
|
|
5916
|
-
statusCode
|
|
5917
|
-
body
|
|
5927
|
+
headers?: { [key: string]: string };
|
|
5928
|
+
statusCode?: number;
|
|
5929
|
+
body?: ListTLSCipherPoliciesResponseBody;
|
|
5918
5930
|
static names(): { [key: string]: string } {
|
|
5919
5931
|
return {
|
|
5920
5932
|
headers: 'headers',
|
|
@@ -6005,9 +6017,9 @@ export class ListTagResourcesResponseBody extends $tea.Model {
|
|
|
6005
6017
|
}
|
|
6006
6018
|
|
|
6007
6019
|
export class ListTagResourcesResponse extends $tea.Model {
|
|
6008
|
-
headers
|
|
6009
|
-
statusCode
|
|
6010
|
-
body
|
|
6020
|
+
headers?: { [key: string]: string };
|
|
6021
|
+
statusCode?: number;
|
|
6022
|
+
body?: ListTagResourcesResponseBody;
|
|
6011
6023
|
static names(): { [key: string]: string } {
|
|
6012
6024
|
return {
|
|
6013
6025
|
headers: 'headers',
|
|
@@ -6089,9 +6101,9 @@ export class ModifyHighDefinationMonitorResponseBody extends $tea.Model {
|
|
|
6089
6101
|
}
|
|
6090
6102
|
|
|
6091
6103
|
export class ModifyHighDefinationMonitorResponse extends $tea.Model {
|
|
6092
|
-
headers
|
|
6093
|
-
statusCode
|
|
6094
|
-
body
|
|
6104
|
+
headers?: { [key: string]: string };
|
|
6105
|
+
statusCode?: number;
|
|
6106
|
+
body?: ModifyHighDefinationMonitorResponseBody;
|
|
6095
6107
|
static names(): { [key: string]: string } {
|
|
6096
6108
|
return {
|
|
6097
6109
|
headers: 'headers',
|
|
@@ -6179,9 +6191,9 @@ export class ModifyLoadBalancerInstanceChargeTypeResponseBody extends $tea.Model
|
|
|
6179
6191
|
}
|
|
6180
6192
|
|
|
6181
6193
|
export class ModifyLoadBalancerInstanceChargeTypeResponse extends $tea.Model {
|
|
6182
|
-
headers
|
|
6183
|
-
statusCode
|
|
6184
|
-
body
|
|
6194
|
+
headers?: { [key: string]: string };
|
|
6195
|
+
statusCode?: number;
|
|
6196
|
+
body?: ModifyLoadBalancerInstanceChargeTypeResponseBody;
|
|
6185
6197
|
static names(): { [key: string]: string } {
|
|
6186
6198
|
return {
|
|
6187
6199
|
headers: 'headers',
|
|
@@ -6266,9 +6278,9 @@ export class ModifyLoadBalancerInstanceSpecResponseBody extends $tea.Model {
|
|
|
6266
6278
|
}
|
|
6267
6279
|
|
|
6268
6280
|
export class ModifyLoadBalancerInstanceSpecResponse extends $tea.Model {
|
|
6269
|
-
headers
|
|
6270
|
-
statusCode
|
|
6271
|
-
body
|
|
6281
|
+
headers?: { [key: string]: string };
|
|
6282
|
+
statusCode?: number;
|
|
6283
|
+
body?: ModifyLoadBalancerInstanceSpecResponseBody;
|
|
6272
6284
|
static names(): { [key: string]: string } {
|
|
6273
6285
|
return {
|
|
6274
6286
|
headers: 'headers',
|
|
@@ -6356,9 +6368,9 @@ export class ModifyLoadBalancerInternetSpecResponseBody extends $tea.Model {
|
|
|
6356
6368
|
}
|
|
6357
6369
|
|
|
6358
6370
|
export class ModifyLoadBalancerInternetSpecResponse extends $tea.Model {
|
|
6359
|
-
headers
|
|
6360
|
-
statusCode
|
|
6361
|
-
body
|
|
6371
|
+
headers?: { [key: string]: string };
|
|
6372
|
+
statusCode?: number;
|
|
6373
|
+
body?: ModifyLoadBalancerInternetSpecResponseBody;
|
|
6362
6374
|
static names(): { [key: string]: string } {
|
|
6363
6375
|
return {
|
|
6364
6376
|
headers: 'headers',
|
|
@@ -6449,9 +6461,9 @@ export class ModifyLoadBalancerPayTypeResponseBody extends $tea.Model {
|
|
|
6449
6461
|
}
|
|
6450
6462
|
|
|
6451
6463
|
export class ModifyLoadBalancerPayTypeResponse extends $tea.Model {
|
|
6452
|
-
headers
|
|
6453
|
-
statusCode
|
|
6454
|
-
body
|
|
6464
|
+
headers?: { [key: string]: string };
|
|
6465
|
+
statusCode?: number;
|
|
6466
|
+
body?: ModifyLoadBalancerPayTypeResponseBody;
|
|
6455
6467
|
static names(): { [key: string]: string } {
|
|
6456
6468
|
return {
|
|
6457
6469
|
headers: 'headers',
|
|
@@ -6539,9 +6551,9 @@ export class ModifyVServerGroupBackendServersResponseBody extends $tea.Model {
|
|
|
6539
6551
|
}
|
|
6540
6552
|
|
|
6541
6553
|
export class ModifyVServerGroupBackendServersResponse extends $tea.Model {
|
|
6542
|
-
headers
|
|
6543
|
-
statusCode
|
|
6544
|
-
body
|
|
6554
|
+
headers?: { [key: string]: string };
|
|
6555
|
+
statusCode?: number;
|
|
6556
|
+
body?: ModifyVServerGroupBackendServersResponseBody;
|
|
6545
6557
|
static names(): { [key: string]: string } {
|
|
6546
6558
|
return {
|
|
6547
6559
|
headers: 'headers',
|
|
@@ -6629,9 +6641,9 @@ export class MoveResourceGroupResponseBody extends $tea.Model {
|
|
|
6629
6641
|
}
|
|
6630
6642
|
|
|
6631
6643
|
export class MoveResourceGroupResponse extends $tea.Model {
|
|
6632
|
-
headers
|
|
6633
|
-
statusCode
|
|
6634
|
-
body
|
|
6644
|
+
headers?: { [key: string]: string };
|
|
6645
|
+
statusCode?: number;
|
|
6646
|
+
body?: MoveResourceGroupResponseBody;
|
|
6635
6647
|
static names(): { [key: string]: string } {
|
|
6636
6648
|
return {
|
|
6637
6649
|
headers: 'headers',
|
|
@@ -6710,9 +6722,9 @@ export class RemoveAccessControlListEntryResponseBody extends $tea.Model {
|
|
|
6710
6722
|
}
|
|
6711
6723
|
|
|
6712
6724
|
export class RemoveAccessControlListEntryResponse extends $tea.Model {
|
|
6713
|
-
headers
|
|
6714
|
-
statusCode
|
|
6715
|
-
body
|
|
6725
|
+
headers?: { [key: string]: string };
|
|
6726
|
+
statusCode?: number;
|
|
6727
|
+
body?: RemoveAccessControlListEntryResponseBody;
|
|
6716
6728
|
static names(): { [key: string]: string } {
|
|
6717
6729
|
return {
|
|
6718
6730
|
headers: 'headers',
|
|
@@ -6797,9 +6809,9 @@ export class RemoveBackendServersResponseBody extends $tea.Model {
|
|
|
6797
6809
|
}
|
|
6798
6810
|
|
|
6799
6811
|
export class RemoveBackendServersResponse extends $tea.Model {
|
|
6800
|
-
headers
|
|
6801
|
-
statusCode
|
|
6802
|
-
body
|
|
6812
|
+
headers?: { [key: string]: string };
|
|
6813
|
+
statusCode?: number;
|
|
6814
|
+
body?: RemoveBackendServersResponseBody;
|
|
6803
6815
|
static names(): { [key: string]: string } {
|
|
6804
6816
|
return {
|
|
6805
6817
|
headers: 'headers',
|
|
@@ -6884,9 +6896,9 @@ export class RemoveListenerWhiteListItemResponseBody extends $tea.Model {
|
|
|
6884
6896
|
}
|
|
6885
6897
|
|
|
6886
6898
|
export class RemoveListenerWhiteListItemResponse extends $tea.Model {
|
|
6887
|
-
headers
|
|
6888
|
-
statusCode
|
|
6889
|
-
body
|
|
6899
|
+
headers?: { [key: string]: string };
|
|
6900
|
+
statusCode?: number;
|
|
6901
|
+
body?: RemoveListenerWhiteListItemResponseBody;
|
|
6890
6902
|
static names(): { [key: string]: string } {
|
|
6891
6903
|
return {
|
|
6892
6904
|
headers: 'headers',
|
|
@@ -6965,9 +6977,9 @@ export class RemoveTagsResponseBody extends $tea.Model {
|
|
|
6965
6977
|
}
|
|
6966
6978
|
|
|
6967
6979
|
export class RemoveTagsResponse extends $tea.Model {
|
|
6968
|
-
headers
|
|
6969
|
-
statusCode
|
|
6970
|
-
body
|
|
6980
|
+
headers?: { [key: string]: string };
|
|
6981
|
+
statusCode?: number;
|
|
6982
|
+
body?: RemoveTagsResponseBody;
|
|
6971
6983
|
static names(): { [key: string]: string } {
|
|
6972
6984
|
return {
|
|
6973
6985
|
headers: 'headers',
|
|
@@ -7052,9 +7064,9 @@ export class RemoveVServerGroupBackendServersResponseBody extends $tea.Model {
|
|
|
7052
7064
|
}
|
|
7053
7065
|
|
|
7054
7066
|
export class RemoveVServerGroupBackendServersResponse extends $tea.Model {
|
|
7055
|
-
headers
|
|
7056
|
-
statusCode
|
|
7057
|
-
body
|
|
7067
|
+
headers?: { [key: string]: string };
|
|
7068
|
+
statusCode?: number;
|
|
7069
|
+
body?: RemoveVServerGroupBackendServersResponseBody;
|
|
7058
7070
|
static names(): { [key: string]: string } {
|
|
7059
7071
|
return {
|
|
7060
7072
|
headers: 'headers',
|
|
@@ -7133,9 +7145,9 @@ export class SetAccessControlListAttributeResponseBody extends $tea.Model {
|
|
|
7133
7145
|
}
|
|
7134
7146
|
|
|
7135
7147
|
export class SetAccessControlListAttributeResponse extends $tea.Model {
|
|
7136
|
-
headers
|
|
7137
|
-
statusCode
|
|
7138
|
-
body
|
|
7148
|
+
headers?: { [key: string]: string };
|
|
7149
|
+
statusCode?: number;
|
|
7150
|
+
body?: SetAccessControlListAttributeResponseBody;
|
|
7139
7151
|
static names(): { [key: string]: string } {
|
|
7140
7152
|
return {
|
|
7141
7153
|
headers: 'headers',
|
|
@@ -7217,9 +7229,9 @@ export class SetAccessLogsDownloadAttributeResponseBody extends $tea.Model {
|
|
|
7217
7229
|
}
|
|
7218
7230
|
|
|
7219
7231
|
export class SetAccessLogsDownloadAttributeResponse extends $tea.Model {
|
|
7220
|
-
headers
|
|
7221
|
-
statusCode
|
|
7222
|
-
body
|
|
7232
|
+
headers?: { [key: string]: string };
|
|
7233
|
+
statusCode?: number;
|
|
7234
|
+
body?: SetAccessLogsDownloadAttributeResponseBody;
|
|
7223
7235
|
static names(): { [key: string]: string } {
|
|
7224
7236
|
return {
|
|
7225
7237
|
headers: 'headers',
|
|
@@ -7304,9 +7316,9 @@ export class SetBackendServersResponseBody extends $tea.Model {
|
|
|
7304
7316
|
}
|
|
7305
7317
|
|
|
7306
7318
|
export class SetBackendServersResponse extends $tea.Model {
|
|
7307
|
-
headers
|
|
7308
|
-
statusCode
|
|
7309
|
-
body
|
|
7319
|
+
headers?: { [key: string]: string };
|
|
7320
|
+
statusCode?: number;
|
|
7321
|
+
body?: SetBackendServersResponseBody;
|
|
7310
7322
|
static names(): { [key: string]: string } {
|
|
7311
7323
|
return {
|
|
7312
7324
|
headers: 'headers',
|
|
@@ -7385,9 +7397,9 @@ export class SetCACertificateNameResponseBody extends $tea.Model {
|
|
|
7385
7397
|
}
|
|
7386
7398
|
|
|
7387
7399
|
export class SetCACertificateNameResponse extends $tea.Model {
|
|
7388
|
-
headers
|
|
7389
|
-
statusCode
|
|
7390
|
-
body
|
|
7400
|
+
headers?: { [key: string]: string };
|
|
7401
|
+
statusCode?: number;
|
|
7402
|
+
body?: SetCACertificateNameResponseBody;
|
|
7391
7403
|
static names(): { [key: string]: string } {
|
|
7392
7404
|
return {
|
|
7393
7405
|
headers: 'headers',
|
|
@@ -7466,9 +7478,9 @@ export class SetDomainExtensionAttributeResponseBody extends $tea.Model {
|
|
|
7466
7478
|
}
|
|
7467
7479
|
|
|
7468
7480
|
export class SetDomainExtensionAttributeResponse extends $tea.Model {
|
|
7469
|
-
headers
|
|
7470
|
-
statusCode
|
|
7471
|
-
body
|
|
7481
|
+
headers?: { [key: string]: string };
|
|
7482
|
+
statusCode?: number;
|
|
7483
|
+
body?: SetDomainExtensionAttributeResponseBody;
|
|
7472
7484
|
static names(): { [key: string]: string } {
|
|
7473
7485
|
return {
|
|
7474
7486
|
headers: 'headers',
|
|
@@ -7553,9 +7565,9 @@ export class SetListenerAccessControlStatusResponseBody extends $tea.Model {
|
|
|
7553
7565
|
}
|
|
7554
7566
|
|
|
7555
7567
|
export class SetListenerAccessControlStatusResponse extends $tea.Model {
|
|
7556
|
-
headers
|
|
7557
|
-
statusCode
|
|
7558
|
-
body
|
|
7568
|
+
headers?: { [key: string]: string };
|
|
7569
|
+
statusCode?: number;
|
|
7570
|
+
body?: SetListenerAccessControlStatusResponseBody;
|
|
7559
7571
|
static names(): { [key: string]: string } {
|
|
7560
7572
|
return {
|
|
7561
7573
|
headers: 'headers',
|
|
@@ -7634,9 +7646,9 @@ export class SetLoadBalancerDeleteProtectionResponseBody extends $tea.Model {
|
|
|
7634
7646
|
}
|
|
7635
7647
|
|
|
7636
7648
|
export class SetLoadBalancerDeleteProtectionResponse extends $tea.Model {
|
|
7637
|
-
headers
|
|
7638
|
-
statusCode
|
|
7639
|
-
body
|
|
7649
|
+
headers?: { [key: string]: string };
|
|
7650
|
+
statusCode?: number;
|
|
7651
|
+
body?: SetLoadBalancerDeleteProtectionResponseBody;
|
|
7640
7652
|
static names(): { [key: string]: string } {
|
|
7641
7653
|
return {
|
|
7642
7654
|
headers: 'headers',
|
|
@@ -7808,9 +7820,9 @@ export class SetLoadBalancerHTTPListenerAttributeResponseBody extends $tea.Model
|
|
|
7808
7820
|
}
|
|
7809
7821
|
|
|
7810
7822
|
export class SetLoadBalancerHTTPListenerAttributeResponse extends $tea.Model {
|
|
7811
|
-
headers
|
|
7812
|
-
statusCode
|
|
7813
|
-
body
|
|
7823
|
+
headers?: { [key: string]: string };
|
|
7824
|
+
statusCode?: number;
|
|
7825
|
+
body?: SetLoadBalancerHTTPListenerAttributeResponseBody;
|
|
7814
7826
|
static names(): { [key: string]: string } {
|
|
7815
7827
|
return {
|
|
7816
7828
|
headers: 'headers',
|
|
@@ -7994,9 +8006,9 @@ export class SetLoadBalancerHTTPSListenerAttributeResponseBody extends $tea.Mode
|
|
|
7994
8006
|
}
|
|
7995
8007
|
|
|
7996
8008
|
export class SetLoadBalancerHTTPSListenerAttributeResponse extends $tea.Model {
|
|
7997
|
-
headers
|
|
7998
|
-
statusCode
|
|
7999
|
-
body
|
|
8009
|
+
headers?: { [key: string]: string };
|
|
8010
|
+
statusCode?: number;
|
|
8011
|
+
body?: SetLoadBalancerHTTPSListenerAttributeResponseBody;
|
|
8000
8012
|
static names(): { [key: string]: string } {
|
|
8001
8013
|
return {
|
|
8002
8014
|
headers: 'headers',
|
|
@@ -8078,9 +8090,9 @@ export class SetLoadBalancerModificationProtectionResponseBody extends $tea.Mode
|
|
|
8078
8090
|
}
|
|
8079
8091
|
|
|
8080
8092
|
export class SetLoadBalancerModificationProtectionResponse extends $tea.Model {
|
|
8081
|
-
headers
|
|
8082
|
-
statusCode
|
|
8083
|
-
body
|
|
8093
|
+
headers?: { [key: string]: string };
|
|
8094
|
+
statusCode?: number;
|
|
8095
|
+
body?: SetLoadBalancerModificationProtectionResponseBody;
|
|
8084
8096
|
static names(): { [key: string]: string } {
|
|
8085
8097
|
return {
|
|
8086
8098
|
headers: 'headers',
|
|
@@ -8159,9 +8171,9 @@ export class SetLoadBalancerNameResponseBody extends $tea.Model {
|
|
|
8159
8171
|
}
|
|
8160
8172
|
|
|
8161
8173
|
export class SetLoadBalancerNameResponse extends $tea.Model {
|
|
8162
|
-
headers
|
|
8163
|
-
statusCode
|
|
8164
|
-
body
|
|
8174
|
+
headers?: { [key: string]: string };
|
|
8175
|
+
statusCode?: number;
|
|
8176
|
+
body?: SetLoadBalancerNameResponseBody;
|
|
8165
8177
|
static names(): { [key: string]: string } {
|
|
8166
8178
|
return {
|
|
8167
8179
|
headers: 'headers',
|
|
@@ -8240,9 +8252,9 @@ export class SetLoadBalancerStatusResponseBody extends $tea.Model {
|
|
|
8240
8252
|
}
|
|
8241
8253
|
|
|
8242
8254
|
export class SetLoadBalancerStatusResponse extends $tea.Model {
|
|
8243
|
-
headers
|
|
8244
|
-
statusCode
|
|
8245
|
-
body
|
|
8255
|
+
headers?: { [key: string]: string };
|
|
8256
|
+
statusCode?: number;
|
|
8257
|
+
body?: SetLoadBalancerStatusResponseBody;
|
|
8246
8258
|
static names(): { [key: string]: string } {
|
|
8247
8259
|
return {
|
|
8248
8260
|
headers: 'headers',
|
|
@@ -8399,9 +8411,9 @@ export class SetLoadBalancerTCPListenerAttributeResponseBody extends $tea.Model
|
|
|
8399
8411
|
}
|
|
8400
8412
|
|
|
8401
8413
|
export class SetLoadBalancerTCPListenerAttributeResponse extends $tea.Model {
|
|
8402
|
-
headers
|
|
8403
|
-
statusCode
|
|
8404
|
-
body
|
|
8414
|
+
headers?: { [key: string]: string };
|
|
8415
|
+
statusCode?: number;
|
|
8416
|
+
body?: SetLoadBalancerTCPListenerAttributeResponseBody;
|
|
8405
8417
|
static names(): { [key: string]: string } {
|
|
8406
8418
|
return {
|
|
8407
8419
|
headers: 'headers',
|
|
@@ -8537,9 +8549,9 @@ export class SetLoadBalancerUDPListenerAttributeResponseBody extends $tea.Model
|
|
|
8537
8549
|
}
|
|
8538
8550
|
|
|
8539
8551
|
export class SetLoadBalancerUDPListenerAttributeResponse extends $tea.Model {
|
|
8540
|
-
headers
|
|
8541
|
-
statusCode
|
|
8542
|
-
body
|
|
8552
|
+
headers?: { [key: string]: string };
|
|
8553
|
+
statusCode?: number;
|
|
8554
|
+
body?: SetLoadBalancerUDPListenerAttributeResponseBody;
|
|
8543
8555
|
static names(): { [key: string]: string } {
|
|
8544
8556
|
return {
|
|
8545
8557
|
headers: 'headers',
|
|
@@ -8666,9 +8678,9 @@ export class SetRuleResponseBody extends $tea.Model {
|
|
|
8666
8678
|
}
|
|
8667
8679
|
|
|
8668
8680
|
export class SetRuleResponse extends $tea.Model {
|
|
8669
|
-
headers
|
|
8670
|
-
statusCode
|
|
8671
|
-
body
|
|
8681
|
+
headers?: { [key: string]: string };
|
|
8682
|
+
statusCode?: number;
|
|
8683
|
+
body?: SetRuleResponseBody;
|
|
8672
8684
|
static names(): { [key: string]: string } {
|
|
8673
8685
|
return {
|
|
8674
8686
|
headers: 'headers',
|
|
@@ -8747,9 +8759,9 @@ export class SetServerCertificateNameResponseBody extends $tea.Model {
|
|
|
8747
8759
|
}
|
|
8748
8760
|
|
|
8749
8761
|
export class SetServerCertificateNameResponse extends $tea.Model {
|
|
8750
|
-
headers
|
|
8751
|
-
statusCode
|
|
8752
|
-
body
|
|
8762
|
+
headers?: { [key: string]: string };
|
|
8763
|
+
statusCode?: number;
|
|
8764
|
+
body?: SetServerCertificateNameResponseBody;
|
|
8753
8765
|
static names(): { [key: string]: string } {
|
|
8754
8766
|
return {
|
|
8755
8767
|
headers: 'headers',
|
|
@@ -8837,9 +8849,9 @@ export class SetTLSCipherPolicyAttributeResponseBody extends $tea.Model {
|
|
|
8837
8849
|
}
|
|
8838
8850
|
|
|
8839
8851
|
export class SetTLSCipherPolicyAttributeResponse extends $tea.Model {
|
|
8840
|
-
headers
|
|
8841
|
-
statusCode
|
|
8842
|
-
body
|
|
8852
|
+
headers?: { [key: string]: string };
|
|
8853
|
+
statusCode?: number;
|
|
8854
|
+
body?: SetTLSCipherPolicyAttributeResponseBody;
|
|
8843
8855
|
static names(): { [key: string]: string } {
|
|
8844
8856
|
return {
|
|
8845
8857
|
headers: 'headers',
|
|
@@ -8930,9 +8942,9 @@ export class SetVServerGroupAttributeResponseBody extends $tea.Model {
|
|
|
8930
8942
|
}
|
|
8931
8943
|
|
|
8932
8944
|
export class SetVServerGroupAttributeResponse extends $tea.Model {
|
|
8933
|
-
headers
|
|
8934
|
-
statusCode
|
|
8935
|
-
body
|
|
8945
|
+
headers?: { [key: string]: string };
|
|
8946
|
+
statusCode?: number;
|
|
8947
|
+
body?: SetVServerGroupAttributeResponseBody;
|
|
8936
8948
|
static names(): { [key: string]: string } {
|
|
8937
8949
|
return {
|
|
8938
8950
|
headers: 'headers',
|
|
@@ -9014,9 +9026,9 @@ export class StartLoadBalancerListenerResponseBody extends $tea.Model {
|
|
|
9014
9026
|
}
|
|
9015
9027
|
|
|
9016
9028
|
export class StartLoadBalancerListenerResponse extends $tea.Model {
|
|
9017
|
-
headers
|
|
9018
|
-
statusCode
|
|
9019
|
-
body
|
|
9029
|
+
headers?: { [key: string]: string };
|
|
9030
|
+
statusCode?: number;
|
|
9031
|
+
body?: StartLoadBalancerListenerResponseBody;
|
|
9020
9032
|
static names(): { [key: string]: string } {
|
|
9021
9033
|
return {
|
|
9022
9034
|
headers: 'headers',
|
|
@@ -9098,9 +9110,9 @@ export class StopLoadBalancerListenerResponseBody extends $tea.Model {
|
|
|
9098
9110
|
}
|
|
9099
9111
|
|
|
9100
9112
|
export class StopLoadBalancerListenerResponse extends $tea.Model {
|
|
9101
|
-
headers
|
|
9102
|
-
statusCode
|
|
9103
|
-
body
|
|
9113
|
+
headers?: { [key: string]: string };
|
|
9114
|
+
statusCode?: number;
|
|
9115
|
+
body?: StopLoadBalancerListenerResponseBody;
|
|
9104
9116
|
static names(): { [key: string]: string } {
|
|
9105
9117
|
return {
|
|
9106
9118
|
headers: 'headers',
|
|
@@ -9182,9 +9194,9 @@ export class TagResourcesResponseBody extends $tea.Model {
|
|
|
9182
9194
|
}
|
|
9183
9195
|
|
|
9184
9196
|
export class TagResourcesResponse extends $tea.Model {
|
|
9185
|
-
headers
|
|
9186
|
-
statusCode
|
|
9187
|
-
body
|
|
9197
|
+
headers?: { [key: string]: string };
|
|
9198
|
+
statusCode?: number;
|
|
9199
|
+
body?: TagResourcesResponseBody;
|
|
9188
9200
|
static names(): { [key: string]: string } {
|
|
9189
9201
|
return {
|
|
9190
9202
|
headers: 'headers',
|
|
@@ -9269,9 +9281,9 @@ export class UntagResourcesResponseBody extends $tea.Model {
|
|
|
9269
9281
|
}
|
|
9270
9282
|
|
|
9271
9283
|
export class UntagResourcesResponse extends $tea.Model {
|
|
9272
|
-
headers
|
|
9273
|
-
statusCode
|
|
9274
|
-
body
|
|
9284
|
+
headers?: { [key: string]: string };
|
|
9285
|
+
statusCode?: number;
|
|
9286
|
+
body?: UntagResourcesResponseBody;
|
|
9275
9287
|
static names(): { [key: string]: string } {
|
|
9276
9288
|
return {
|
|
9277
9289
|
headers: 'headers',
|
|
@@ -9383,9 +9395,9 @@ export class UploadCACertificateResponseBody extends $tea.Model {
|
|
|
9383
9395
|
}
|
|
9384
9396
|
|
|
9385
9397
|
export class UploadCACertificateResponse extends $tea.Model {
|
|
9386
|
-
headers
|
|
9387
|
-
statusCode
|
|
9388
|
-
body
|
|
9398
|
+
headers?: { [key: string]: string };
|
|
9399
|
+
statusCode?: number;
|
|
9400
|
+
body?: UploadCACertificateResponseBody;
|
|
9389
9401
|
static names(): { [key: string]: string } {
|
|
9390
9402
|
return {
|
|
9391
9403
|
headers: 'headers',
|
|
@@ -9524,9 +9536,9 @@ export class UploadServerCertificateResponseBody extends $tea.Model {
|
|
|
9524
9536
|
}
|
|
9525
9537
|
|
|
9526
9538
|
export class UploadServerCertificateResponse extends $tea.Model {
|
|
9527
|
-
headers
|
|
9528
|
-
statusCode
|
|
9529
|
-
body
|
|
9539
|
+
headers?: { [key: string]: string };
|
|
9540
|
+
statusCode?: number;
|
|
9541
|
+
body?: UploadServerCertificateResponseBody;
|
|
9530
9542
|
static names(): { [key: string]: string } {
|
|
9531
9543
|
return {
|
|
9532
9544
|
headers: 'headers',
|
|
@@ -10774,6 +10786,25 @@ export class DescribeLoadBalancerAttributeResponseBodyTags extends $tea.Model {
|
|
|
10774
10786
|
}
|
|
10775
10787
|
}
|
|
10776
10788
|
|
|
10789
|
+
export class DescribeLoadBalancerHTTPListenerAttributeResponseBodyAclIds extends $tea.Model {
|
|
10790
|
+
aclId?: string[];
|
|
10791
|
+
static names(): { [key: string]: string } {
|
|
10792
|
+
return {
|
|
10793
|
+
aclId: 'AclId',
|
|
10794
|
+
};
|
|
10795
|
+
}
|
|
10796
|
+
|
|
10797
|
+
static types(): { [key: string]: any } {
|
|
10798
|
+
return {
|
|
10799
|
+
aclId: { 'type': 'array', 'itemType': 'string' },
|
|
10800
|
+
};
|
|
10801
|
+
}
|
|
10802
|
+
|
|
10803
|
+
constructor(map?: { [key: string]: any }) {
|
|
10804
|
+
super(map);
|
|
10805
|
+
}
|
|
10806
|
+
}
|
|
10807
|
+
|
|
10777
10808
|
export class DescribeLoadBalancerHTTPListenerAttributeResponseBodyRulesRule extends $tea.Model {
|
|
10778
10809
|
domain?: string;
|
|
10779
10810
|
ruleId?: string;
|
|
@@ -10865,6 +10896,25 @@ export class DescribeLoadBalancerHTTPListenerAttributeResponseBodyTags extends $
|
|
|
10865
10896
|
}
|
|
10866
10897
|
}
|
|
10867
10898
|
|
|
10899
|
+
export class DescribeLoadBalancerHTTPSListenerAttributeResponseBodyAclIds extends $tea.Model {
|
|
10900
|
+
aclId?: string[];
|
|
10901
|
+
static names(): { [key: string]: string } {
|
|
10902
|
+
return {
|
|
10903
|
+
aclId: 'AclId',
|
|
10904
|
+
};
|
|
10905
|
+
}
|
|
10906
|
+
|
|
10907
|
+
static types(): { [key: string]: any } {
|
|
10908
|
+
return {
|
|
10909
|
+
aclId: { 'type': 'array', 'itemType': 'string' },
|
|
10910
|
+
};
|
|
10911
|
+
}
|
|
10912
|
+
|
|
10913
|
+
constructor(map?: { [key: string]: any }) {
|
|
10914
|
+
super(map);
|
|
10915
|
+
}
|
|
10916
|
+
}
|
|
10917
|
+
|
|
10868
10918
|
export class DescribeLoadBalancerHTTPSListenerAttributeResponseBodyDomainExtensionsDomainExtension extends $tea.Model {
|
|
10869
10919
|
domain?: string;
|
|
10870
10920
|
domainExtensionId?: string;
|
|
@@ -11377,6 +11427,7 @@ export class DescribeLoadBalancerListenersResponseBodyListenersUDPListenerConfig
|
|
|
11377
11427
|
|
|
11378
11428
|
export class DescribeLoadBalancerListenersResponseBodyListeners extends $tea.Model {
|
|
11379
11429
|
aclId?: string;
|
|
11430
|
+
aclIds?: string[];
|
|
11380
11431
|
aclStatus?: string;
|
|
11381
11432
|
aclType?: string;
|
|
11382
11433
|
backendServerPort?: number;
|
|
@@ -11396,6 +11447,7 @@ export class DescribeLoadBalancerListenersResponseBodyListeners extends $tea.Mod
|
|
|
11396
11447
|
static names(): { [key: string]: string } {
|
|
11397
11448
|
return {
|
|
11398
11449
|
aclId: 'AclId',
|
|
11450
|
+
aclIds: 'AclIds',
|
|
11399
11451
|
aclStatus: 'AclStatus',
|
|
11400
11452
|
aclType: 'AclType',
|
|
11401
11453
|
backendServerPort: 'BackendServerPort',
|
|
@@ -11418,6 +11470,7 @@ export class DescribeLoadBalancerListenersResponseBodyListeners extends $tea.Mod
|
|
|
11418
11470
|
static types(): { [key: string]: any } {
|
|
11419
11471
|
return {
|
|
11420
11472
|
aclId: 'string',
|
|
11473
|
+
aclIds: { 'type': 'array', 'itemType': 'string' },
|
|
11421
11474
|
aclStatus: 'string',
|
|
11422
11475
|
aclType: 'string',
|
|
11423
11476
|
backendServerPort: 'number',
|
|
@@ -11442,6 +11495,25 @@ export class DescribeLoadBalancerListenersResponseBodyListeners extends $tea.Mod
|
|
|
11442
11495
|
}
|
|
11443
11496
|
}
|
|
11444
11497
|
|
|
11498
|
+
export class DescribeLoadBalancerTCPListenerAttributeResponseBodyAclIds extends $tea.Model {
|
|
11499
|
+
aclId?: string[];
|
|
11500
|
+
static names(): { [key: string]: string } {
|
|
11501
|
+
return {
|
|
11502
|
+
aclId: 'AclId',
|
|
11503
|
+
};
|
|
11504
|
+
}
|
|
11505
|
+
|
|
11506
|
+
static types(): { [key: string]: any } {
|
|
11507
|
+
return {
|
|
11508
|
+
aclId: { 'type': 'array', 'itemType': 'string' },
|
|
11509
|
+
};
|
|
11510
|
+
}
|
|
11511
|
+
|
|
11512
|
+
constructor(map?: { [key: string]: any }) {
|
|
11513
|
+
super(map);
|
|
11514
|
+
}
|
|
11515
|
+
}
|
|
11516
|
+
|
|
11445
11517
|
export class DescribeLoadBalancerTCPListenerAttributeResponseBodyTagsTag extends $tea.Model {
|
|
11446
11518
|
tagKey?: string;
|
|
11447
11519
|
tagValue?: string;
|
|
@@ -11483,6 +11555,25 @@ export class DescribeLoadBalancerTCPListenerAttributeResponseBodyTags extends $t
|
|
|
11483
11555
|
}
|
|
11484
11556
|
}
|
|
11485
11557
|
|
|
11558
|
+
export class DescribeLoadBalancerUDPListenerAttributeResponseBodyAclIds extends $tea.Model {
|
|
11559
|
+
aclId?: string[];
|
|
11560
|
+
static names(): { [key: string]: string } {
|
|
11561
|
+
return {
|
|
11562
|
+
aclId: 'AclId',
|
|
11563
|
+
};
|
|
11564
|
+
}
|
|
11565
|
+
|
|
11566
|
+
static types(): { [key: string]: any } {
|
|
11567
|
+
return {
|
|
11568
|
+
aclId: { 'type': 'array', 'itemType': 'string' },
|
|
11569
|
+
};
|
|
11570
|
+
}
|
|
11571
|
+
|
|
11572
|
+
constructor(map?: { [key: string]: any }) {
|
|
11573
|
+
super(map);
|
|
11574
|
+
}
|
|
11575
|
+
}
|
|
11576
|
+
|
|
11486
11577
|
export class DescribeLoadBalancerUDPListenerAttributeResponseBodyTagsTag extends $tea.Model {
|
|
11487
11578
|
tagKey?: string;
|
|
11488
11579
|
tagValue?: string;
|
|
@@ -13243,13 +13334,15 @@ export default class Client extends OpenApi {
|
|
|
13243
13334
|
}
|
|
13244
13335
|
|
|
13245
13336
|
/**
|
|
13246
|
-
|
|
13247
|
-
|
|
13248
|
-
|
|
13249
|
-
|
|
13250
|
-
|
|
13251
|
-
|
|
13252
|
-
|
|
13337
|
+
* @summary Adds IP entries to a network access control list (ACL).
|
|
13338
|
+
*
|
|
13339
|
+
* @description Each network ACL can contain one or more IP addresses or CIDR blocks. Take note of the following limits on network ACLs:
|
|
13340
|
+
* * The number of IP entries that can be added to a network ACL with each Alibaba Cloud account at a time: 50
|
|
13341
|
+
* * The maximum number of IP entries that each network ACL can contain: 300
|
|
13342
|
+
*
|
|
13343
|
+
* @param request AddAccessControlListEntryRequest
|
|
13344
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13345
|
+
* @return AddAccessControlListEntryResponse
|
|
13253
13346
|
*/
|
|
13254
13347
|
async addAccessControlListEntryWithOptions(request: AddAccessControlListEntryRequest, runtime: $Util.RuntimeOptions): Promise<AddAccessControlListEntryResponse> {
|
|
13255
13348
|
Util.validateModel(request);
|
|
@@ -13300,12 +13393,14 @@ export default class Client extends OpenApi {
|
|
|
13300
13393
|
}
|
|
13301
13394
|
|
|
13302
13395
|
/**
|
|
13303
|
-
|
|
13304
|
-
|
|
13305
|
-
|
|
13306
|
-
|
|
13307
|
-
|
|
13308
|
-
|
|
13396
|
+
* @summary Adds IP entries to a network access control list (ACL).
|
|
13397
|
+
*
|
|
13398
|
+
* @description Each network ACL can contain one or more IP addresses or CIDR blocks. Take note of the following limits on network ACLs:
|
|
13399
|
+
* * The number of IP entries that can be added to a network ACL with each Alibaba Cloud account at a time: 50
|
|
13400
|
+
* * The maximum number of IP entries that each network ACL can contain: 300
|
|
13401
|
+
*
|
|
13402
|
+
* @param request AddAccessControlListEntryRequest
|
|
13403
|
+
* @return AddAccessControlListEntryResponse
|
|
13309
13404
|
*/
|
|
13310
13405
|
async addAccessControlListEntry(request: AddAccessControlListEntryRequest): Promise<AddAccessControlListEntryResponse> {
|
|
13311
13406
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -13313,11 +13408,13 @@ export default class Client extends OpenApi {
|
|
|
13313
13408
|
}
|
|
13314
13409
|
|
|
13315
13410
|
/**
|
|
13316
|
-
|
|
13317
|
-
|
|
13318
|
-
|
|
13319
|
-
|
|
13320
|
-
|
|
13411
|
+
* @summary Adds backend servers.
|
|
13412
|
+
*
|
|
13413
|
+
* @description > If multiple identical Elastic Compute Service (ECS) instances are specified in a request, only the first ECS instance is added. The other ECS instances are ignored. If the backend server that you add is the same as one of the existing backend servers that are already associated with the listener, an error message is returned.
|
|
13414
|
+
*
|
|
13415
|
+
* @param request AddBackendServersRequest
|
|
13416
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13417
|
+
* @return AddBackendServersResponse
|
|
13321
13418
|
*/
|
|
13322
13419
|
async addBackendServersWithOptions(request: AddBackendServersRequest, runtime: $Util.RuntimeOptions): Promise<AddBackendServersResponse> {
|
|
13323
13420
|
Util.validateModel(request);
|
|
@@ -13368,16 +13465,25 @@ export default class Client extends OpenApi {
|
|
|
13368
13465
|
}
|
|
13369
13466
|
|
|
13370
13467
|
/**
|
|
13371
|
-
|
|
13372
|
-
|
|
13373
|
-
|
|
13374
|
-
|
|
13468
|
+
* @summary Adds backend servers.
|
|
13469
|
+
*
|
|
13470
|
+
* @description > If multiple identical Elastic Compute Service (ECS) instances are specified in a request, only the first ECS instance is added. The other ECS instances are ignored. If the backend server that you add is the same as one of the existing backend servers that are already associated with the listener, an error message is returned.
|
|
13471
|
+
*
|
|
13472
|
+
* @param request AddBackendServersRequest
|
|
13473
|
+
* @return AddBackendServersResponse
|
|
13375
13474
|
*/
|
|
13376
13475
|
async addBackendServers(request: AddBackendServersRequest): Promise<AddBackendServersResponse> {
|
|
13377
13476
|
let runtime = new $Util.RuntimeOptions({ });
|
|
13378
13477
|
return await this.addBackendServersWithOptions(request, runtime);
|
|
13379
13478
|
}
|
|
13380
13479
|
|
|
13480
|
+
/**
|
|
13481
|
+
* @summary Adds IP addresses to the whitelist of a listener.
|
|
13482
|
+
*
|
|
13483
|
+
* @param request AddListenerWhiteListItemRequest
|
|
13484
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13485
|
+
* @return AddListenerWhiteListItemResponse
|
|
13486
|
+
*/
|
|
13381
13487
|
async addListenerWhiteListItemWithOptions(request: AddListenerWhiteListItemRequest, runtime: $Util.RuntimeOptions): Promise<AddListenerWhiteListItemResponse> {
|
|
13382
13488
|
Util.validateModel(request);
|
|
13383
13489
|
let query = { };
|
|
@@ -13434,22 +13540,28 @@ export default class Client extends OpenApi {
|
|
|
13434
13540
|
return $tea.cast<AddListenerWhiteListItemResponse>(await this.callApi(params, req, runtime), new AddListenerWhiteListItemResponse({}));
|
|
13435
13541
|
}
|
|
13436
13542
|
|
|
13543
|
+
/**
|
|
13544
|
+
* @summary Adds IP addresses to the whitelist of a listener.
|
|
13545
|
+
*
|
|
13546
|
+
* @param request AddListenerWhiteListItemRequest
|
|
13547
|
+
* @return AddListenerWhiteListItemResponse
|
|
13548
|
+
*/
|
|
13437
13549
|
async addListenerWhiteListItem(request: AddListenerWhiteListItemRequest): Promise<AddListenerWhiteListItemResponse> {
|
|
13438
13550
|
let runtime = new $Util.RuntimeOptions({ });
|
|
13439
13551
|
return await this.addListenerWhiteListItemWithOptions(request, runtime);
|
|
13440
13552
|
}
|
|
13441
13553
|
|
|
13442
13554
|
/**
|
|
13443
|
-
|
|
13444
|
-
|
|
13445
|
-
|
|
13446
|
-
|
|
13447
|
-
|
|
13448
|
-
|
|
13449
|
-
|
|
13450
|
-
|
|
13451
|
-
|
|
13452
|
-
|
|
13555
|
+
* @description # Limits
|
|
13556
|
+
* Before you call this API, note the following limits:
|
|
13557
|
+
* * You can add up to 10 tags to each SLB instance.
|
|
13558
|
+
* * You can add up to five pairs of tags at a time.
|
|
13559
|
+
* * All the tags and keys added to an SLB instance must be unique.
|
|
13560
|
+
* * If you add a tag of which the key is the same as that of an existing tag, but the value is different, the new tag overwrites the existing one.
|
|
13561
|
+
*
|
|
13562
|
+
* @param request AddTagsRequest
|
|
13563
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13564
|
+
* @return AddTagsResponse
|
|
13453
13565
|
*/
|
|
13454
13566
|
async addTagsWithOptions(request: AddTagsRequest, runtime: $Util.RuntimeOptions): Promise<AddTagsResponse> {
|
|
13455
13567
|
Util.validateModel(request);
|
|
@@ -13500,21 +13612,28 @@ export default class Client extends OpenApi {
|
|
|
13500
13612
|
}
|
|
13501
13613
|
|
|
13502
13614
|
/**
|
|
13503
|
-
|
|
13504
|
-
|
|
13505
|
-
|
|
13506
|
-
|
|
13507
|
-
|
|
13508
|
-
|
|
13509
|
-
|
|
13510
|
-
|
|
13511
|
-
|
|
13615
|
+
* @description # Limits
|
|
13616
|
+
* Before you call this API, note the following limits:
|
|
13617
|
+
* * You can add up to 10 tags to each SLB instance.
|
|
13618
|
+
* * You can add up to five pairs of tags at a time.
|
|
13619
|
+
* * All the tags and keys added to an SLB instance must be unique.
|
|
13620
|
+
* * If you add a tag of which the key is the same as that of an existing tag, but the value is different, the new tag overwrites the existing one.
|
|
13621
|
+
*
|
|
13622
|
+
* @param request AddTagsRequest
|
|
13623
|
+
* @return AddTagsResponse
|
|
13512
13624
|
*/
|
|
13513
13625
|
async addTags(request: AddTagsRequest): Promise<AddTagsResponse> {
|
|
13514
13626
|
let runtime = new $Util.RuntimeOptions({ });
|
|
13515
13627
|
return await this.addTagsWithOptions(request, runtime);
|
|
13516
13628
|
}
|
|
13517
13629
|
|
|
13630
|
+
/**
|
|
13631
|
+
* @summary Adds backend servers to a specified server group.
|
|
13632
|
+
*
|
|
13633
|
+
* @param request AddVServerGroupBackendServersRequest
|
|
13634
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13635
|
+
* @return AddVServerGroupBackendServersResponse
|
|
13636
|
+
*/
|
|
13518
13637
|
async addVServerGroupBackendServersWithOptions(request: AddVServerGroupBackendServersRequest, runtime: $Util.RuntimeOptions): Promise<AddVServerGroupBackendServersResponse> {
|
|
13519
13638
|
Util.validateModel(request);
|
|
13520
13639
|
let query = { };
|
|
@@ -13563,20 +13682,28 @@ export default class Client extends OpenApi {
|
|
|
13563
13682
|
return $tea.cast<AddVServerGroupBackendServersResponse>(await this.callApi(params, req, runtime), new AddVServerGroupBackendServersResponse({}));
|
|
13564
13683
|
}
|
|
13565
13684
|
|
|
13685
|
+
/**
|
|
13686
|
+
* @summary Adds backend servers to a specified server group.
|
|
13687
|
+
*
|
|
13688
|
+
* @param request AddVServerGroupBackendServersRequest
|
|
13689
|
+
* @return AddVServerGroupBackendServersResponse
|
|
13690
|
+
*/
|
|
13566
13691
|
async addVServerGroupBackendServers(request: AddVServerGroupBackendServersRequest): Promise<AddVServerGroupBackendServersResponse> {
|
|
13567
13692
|
let runtime = new $Util.RuntimeOptions({ });
|
|
13568
13693
|
return await this.addVServerGroupBackendServersWithOptions(request, runtime);
|
|
13569
13694
|
}
|
|
13570
13695
|
|
|
13571
13696
|
/**
|
|
13572
|
-
|
|
13573
|
-
|
|
13574
|
-
|
|
13575
|
-
|
|
13576
|
-
|
|
13577
|
-
|
|
13578
|
-
|
|
13579
|
-
|
|
13697
|
+
* @summary Creates an access control list (ACL).
|
|
13698
|
+
*
|
|
13699
|
+
* @description You can create multiple ACLs. Each ACL can contain one or more IP addresses or CIDR blocks. Before you create an ACL, take note of the following limits:
|
|
13700
|
+
* * An account can have a maximum of 50 ACLs in each region.
|
|
13701
|
+
* * You can add a maximum of 50 IP addresses or CIDR blocks at a time within an account.
|
|
13702
|
+
* * Each ACL can contain a maximum of 300 IP addresses or CIDR blocks.
|
|
13703
|
+
*
|
|
13704
|
+
* @param request CreateAccessControlListRequest
|
|
13705
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13706
|
+
* @return CreateAccessControlListResponse
|
|
13580
13707
|
*/
|
|
13581
13708
|
async createAccessControlListWithOptions(request: CreateAccessControlListRequest, runtime: $Util.RuntimeOptions): Promise<CreateAccessControlListResponse> {
|
|
13582
13709
|
Util.validateModel(request);
|
|
@@ -13635,19 +13762,28 @@ export default class Client extends OpenApi {
|
|
|
13635
13762
|
}
|
|
13636
13763
|
|
|
13637
13764
|
/**
|
|
13638
|
-
|
|
13639
|
-
|
|
13640
|
-
|
|
13641
|
-
|
|
13642
|
-
|
|
13643
|
-
|
|
13644
|
-
|
|
13765
|
+
* @summary Creates an access control list (ACL).
|
|
13766
|
+
*
|
|
13767
|
+
* @description You can create multiple ACLs. Each ACL can contain one or more IP addresses or CIDR blocks. Before you create an ACL, take note of the following limits:
|
|
13768
|
+
* * An account can have a maximum of 50 ACLs in each region.
|
|
13769
|
+
* * You can add a maximum of 50 IP addresses or CIDR blocks at a time within an account.
|
|
13770
|
+
* * Each ACL can contain a maximum of 300 IP addresses or CIDR blocks.
|
|
13771
|
+
*
|
|
13772
|
+
* @param request CreateAccessControlListRequest
|
|
13773
|
+
* @return CreateAccessControlListResponse
|
|
13645
13774
|
*/
|
|
13646
13775
|
async createAccessControlList(request: CreateAccessControlListRequest): Promise<CreateAccessControlListResponse> {
|
|
13647
13776
|
let runtime = new $Util.RuntimeOptions({ });
|
|
13648
13777
|
return await this.createAccessControlListWithOptions(request, runtime);
|
|
13649
13778
|
}
|
|
13650
13779
|
|
|
13780
|
+
/**
|
|
13781
|
+
* @summary Creates a domain name extension.
|
|
13782
|
+
*
|
|
13783
|
+
* @param request CreateDomainExtensionRequest
|
|
13784
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13785
|
+
* @return CreateDomainExtensionResponse
|
|
13786
|
+
*/
|
|
13651
13787
|
async createDomainExtensionWithOptions(request: CreateDomainExtensionRequest, runtime: $Util.RuntimeOptions): Promise<CreateDomainExtensionResponse> {
|
|
13652
13788
|
Util.validateModel(request);
|
|
13653
13789
|
let query = { };
|
|
@@ -13704,19 +13840,27 @@ export default class Client extends OpenApi {
|
|
|
13704
13840
|
return $tea.cast<CreateDomainExtensionResponse>(await this.callApi(params, req, runtime), new CreateDomainExtensionResponse({}));
|
|
13705
13841
|
}
|
|
13706
13842
|
|
|
13843
|
+
/**
|
|
13844
|
+
* @summary Creates a domain name extension.
|
|
13845
|
+
*
|
|
13846
|
+
* @param request CreateDomainExtensionRequest
|
|
13847
|
+
* @return CreateDomainExtensionResponse
|
|
13848
|
+
*/
|
|
13707
13849
|
async createDomainExtension(request: CreateDomainExtensionRequest): Promise<CreateDomainExtensionResponse> {
|
|
13708
13850
|
let runtime = new $Util.RuntimeOptions({ });
|
|
13709
13851
|
return await this.createDomainExtensionWithOptions(request, runtime);
|
|
13710
13852
|
}
|
|
13711
13853
|
|
|
13712
13854
|
/**
|
|
13713
|
-
|
|
13714
|
-
|
|
13715
|
-
|
|
13716
|
-
|
|
13717
|
-
|
|
13718
|
-
|
|
13719
|
-
|
|
13855
|
+
* @summary Creates a Classic Load Balancer (CLB) instance.
|
|
13856
|
+
*
|
|
13857
|
+
* @description * Before you create a CLB instance, call the [DescribeAvailableResource](~~DescribeAvailableResource~~) operation to query the resources available for purchase in the region where you want to create the CLB instance.
|
|
13858
|
+
* * After a CLB instance is created, you are charged for using the CLB instance.
|
|
13859
|
+
* * The pay-as-you-go billing method supports the pay-by-specification and pay-by-LCU metering methods.
|
|
13860
|
+
*
|
|
13861
|
+
* @param request CreateLoadBalancerRequest
|
|
13862
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13863
|
+
* @return CreateLoadBalancerResponse
|
|
13720
13864
|
*/
|
|
13721
13865
|
async createLoadBalancerWithOptions(request: CreateLoadBalancerRequest, runtime: $Util.RuntimeOptions): Promise<CreateLoadBalancerResponse> {
|
|
13722
13866
|
Util.validateModel(request);
|
|
@@ -13847,12 +13991,14 @@ export default class Client extends OpenApi {
|
|
|
13847
13991
|
}
|
|
13848
13992
|
|
|
13849
13993
|
/**
|
|
13850
|
-
|
|
13851
|
-
|
|
13852
|
-
|
|
13853
|
-
|
|
13854
|
-
|
|
13855
|
-
|
|
13994
|
+
* @summary Creates a Classic Load Balancer (CLB) instance.
|
|
13995
|
+
*
|
|
13996
|
+
* @description * Before you create a CLB instance, call the [DescribeAvailableResource](~~DescribeAvailableResource~~) operation to query the resources available for purchase in the region where you want to create the CLB instance.
|
|
13997
|
+
* * After a CLB instance is created, you are charged for using the CLB instance.
|
|
13998
|
+
* * The pay-as-you-go billing method supports the pay-by-specification and pay-by-LCU metering methods.
|
|
13999
|
+
*
|
|
14000
|
+
* @param request CreateLoadBalancerRequest
|
|
14001
|
+
* @return CreateLoadBalancerResponse
|
|
13856
14002
|
*/
|
|
13857
14003
|
async createLoadBalancer(request: CreateLoadBalancerRequest): Promise<CreateLoadBalancerResponse> {
|
|
13858
14004
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -13860,13 +14006,15 @@ export default class Client extends OpenApi {
|
|
|
13860
14006
|
}
|
|
13861
14007
|
|
|
13862
14008
|
/**
|
|
13863
|
-
|
|
13864
|
-
|
|
13865
|
-
|
|
13866
|
-
|
|
13867
|
-
|
|
13868
|
-
|
|
13869
|
-
|
|
14009
|
+
* @summary Creates an HTTP listener for a Classic Load Balancer (CLB) instance.
|
|
14010
|
+
*
|
|
14011
|
+
* @description A newly created listener is in the **stopped** state. After a listener is created, you can call the [StartLoadBalancerListener](~~StartLoadBalancerListener~~) operation to start the listener. After the listener is started, the listener can forward traffic to backend servers.
|
|
14012
|
+
* ## Prerequisites
|
|
14013
|
+
* A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](~~StartLoadBalancerListener~~).
|
|
14014
|
+
*
|
|
14015
|
+
* @param request CreateLoadBalancerHTTPListenerRequest
|
|
14016
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
14017
|
+
* @return CreateLoadBalancerHTTPListenerResponse
|
|
13870
14018
|
*/
|
|
13871
14019
|
async createLoadBalancerHTTPListenerWithOptions(request: CreateLoadBalancerHTTPListenerRequest, runtime: $Util.RuntimeOptions): Promise<CreateLoadBalancerHTTPListenerResponse> {
|
|
13872
14020
|
Util.validateModel(request);
|
|
@@ -14053,12 +14201,14 @@ export default class Client extends OpenApi {
|
|
|
14053
14201
|
}
|
|
14054
14202
|
|
|
14055
14203
|
/**
|
|
14056
|
-
|
|
14057
|
-
|
|
14058
|
-
|
|
14059
|
-
|
|
14060
|
-
|
|
14061
|
-
|
|
14204
|
+
* @summary Creates an HTTP listener for a Classic Load Balancer (CLB) instance.
|
|
14205
|
+
*
|
|
14206
|
+
* @description A newly created listener is in the **stopped** state. After a listener is created, you can call the [StartLoadBalancerListener](~~StartLoadBalancerListener~~) operation to start the listener. After the listener is started, the listener can forward traffic to backend servers.
|
|
14207
|
+
* ## Prerequisites
|
|
14208
|
+
* A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](~~StartLoadBalancerListener~~).
|
|
14209
|
+
*
|
|
14210
|
+
* @param request CreateLoadBalancerHTTPListenerRequest
|
|
14211
|
+
* @return CreateLoadBalancerHTTPListenerResponse
|
|
14062
14212
|
*/
|
|
14063
14213
|
async createLoadBalancerHTTPListener(request: CreateLoadBalancerHTTPListenerRequest): Promise<CreateLoadBalancerHTTPListenerResponse> {
|
|
14064
14214
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -14066,13 +14216,15 @@ export default class Client extends OpenApi {
|
|
|
14066
14216
|
}
|
|
14067
14217
|
|
|
14068
14218
|
/**
|
|
14069
|
-
|
|
14070
|
-
|
|
14071
|
-
|
|
14072
|
-
|
|
14073
|
-
|
|
14074
|
-
|
|
14075
|
-
|
|
14219
|
+
* @summary Creates an HTTPS listener.
|
|
14220
|
+
*
|
|
14221
|
+
* @description A newly created listener is in the **stopped** state. After a listener is created, you can call the [StartLoadBalancerListener](https://help.aliyun.com/document_detail/27597.html) operation to start the listener. After the listener is started, the listener can forward traffic to backend servers.
|
|
14222
|
+
* ## Prerequisites
|
|
14223
|
+
* A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://www.alibabacloud.com/help/en/server-load-balancer/latest/createloadbalancer-2).
|
|
14224
|
+
*
|
|
14225
|
+
* @param request CreateLoadBalancerHTTPSListenerRequest
|
|
14226
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
14227
|
+
* @return CreateLoadBalancerHTTPSListenerResponse
|
|
14076
14228
|
*/
|
|
14077
14229
|
async createLoadBalancerHTTPSListenerWithOptions(request: CreateLoadBalancerHTTPSListenerRequest, runtime: $Util.RuntimeOptions): Promise<CreateLoadBalancerHTTPSListenerResponse> {
|
|
14078
14230
|
Util.validateModel(request);
|
|
@@ -14267,12 +14419,14 @@ export default class Client extends OpenApi {
|
|
|
14267
14419
|
}
|
|
14268
14420
|
|
|
14269
14421
|
/**
|
|
14270
|
-
|
|
14271
|
-
|
|
14272
|
-
|
|
14273
|
-
|
|
14274
|
-
|
|
14275
|
-
|
|
14422
|
+
* @summary Creates an HTTPS listener.
|
|
14423
|
+
*
|
|
14424
|
+
* @description A newly created listener is in the **stopped** state. After a listener is created, you can call the [StartLoadBalancerListener](https://help.aliyun.com/document_detail/27597.html) operation to start the listener. After the listener is started, the listener can forward traffic to backend servers.
|
|
14425
|
+
* ## Prerequisites
|
|
14426
|
+
* A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://www.alibabacloud.com/help/en/server-load-balancer/latest/createloadbalancer-2).
|
|
14427
|
+
*
|
|
14428
|
+
* @param request CreateLoadBalancerHTTPSListenerRequest
|
|
14429
|
+
* @return CreateLoadBalancerHTTPSListenerResponse
|
|
14276
14430
|
*/
|
|
14277
14431
|
async createLoadBalancerHTTPSListener(request: CreateLoadBalancerHTTPSListenerRequest): Promise<CreateLoadBalancerHTTPSListenerResponse> {
|
|
14278
14432
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -14280,11 +14434,13 @@ export default class Client extends OpenApi {
|
|
|
14280
14434
|
}
|
|
14281
14435
|
|
|
14282
14436
|
/**
|
|
14283
|
-
|
|
14284
|
-
|
|
14285
|
-
|
|
14286
|
-
|
|
14287
|
-
|
|
14437
|
+
* @summary Creates a TCP listener.
|
|
14438
|
+
*
|
|
14439
|
+
* @description > A newly created listener is in the **stopped** state. After a listener is created, you can call the [StartLoadBalancerListener](https://help.aliyun.com/document_detail/27597.html) operation to enable the listener to forward traffic to backend servers.
|
|
14440
|
+
*
|
|
14441
|
+
* @param request CreateLoadBalancerTCPListenerRequest
|
|
14442
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
14443
|
+
* @return CreateLoadBalancerTCPListenerResponse
|
|
14288
14444
|
*/
|
|
14289
14445
|
async createLoadBalancerTCPListenerWithOptions(request: CreateLoadBalancerTCPListenerRequest, runtime: $Util.RuntimeOptions): Promise<CreateLoadBalancerTCPListenerResponse> {
|
|
14290
14446
|
Util.validateModel(request);
|
|
@@ -14435,10 +14591,12 @@ export default class Client extends OpenApi {
|
|
|
14435
14591
|
}
|
|
14436
14592
|
|
|
14437
14593
|
/**
|
|
14438
|
-
|
|
14439
|
-
|
|
14440
|
-
|
|
14441
|
-
|
|
14594
|
+
* @summary Creates a TCP listener.
|
|
14595
|
+
*
|
|
14596
|
+
* @description > A newly created listener is in the **stopped** state. After a listener is created, you can call the [StartLoadBalancerListener](https://help.aliyun.com/document_detail/27597.html) operation to enable the listener to forward traffic to backend servers.
|
|
14597
|
+
*
|
|
14598
|
+
* @param request CreateLoadBalancerTCPListenerRequest
|
|
14599
|
+
* @return CreateLoadBalancerTCPListenerResponse
|
|
14442
14600
|
*/
|
|
14443
14601
|
async createLoadBalancerTCPListener(request: CreateLoadBalancerTCPListenerRequest): Promise<CreateLoadBalancerTCPListenerResponse> {
|
|
14444
14602
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -14446,12 +14604,14 @@ export default class Client extends OpenApi {
|
|
|
14446
14604
|
}
|
|
14447
14605
|
|
|
14448
14606
|
/**
|
|
14449
|
-
|
|
14450
|
-
|
|
14451
|
-
|
|
14452
|
-
|
|
14453
|
-
|
|
14454
|
-
|
|
14607
|
+
* @summary Creates a UDP listener.
|
|
14608
|
+
*
|
|
14609
|
+
* @description UDP listeners of Classic Load Balancer (CLB) instances in a classic network cannot pass client IP addresses to backend servers.
|
|
14610
|
+
* > A newly created listener is in the **stopped** state. After a listener is created, you can call the [StartLoadBalancerListener](https://help.aliyun.com/document_detail/27597.html) operation to enable the listener to forward traffic to backend servers.
|
|
14611
|
+
*
|
|
14612
|
+
* @param request CreateLoadBalancerUDPListenerRequest
|
|
14613
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
14614
|
+
* @return CreateLoadBalancerUDPListenerResponse
|
|
14455
14615
|
*/
|
|
14456
14616
|
async createLoadBalancerUDPListenerWithOptions(request: CreateLoadBalancerUDPListenerRequest, runtime: $Util.RuntimeOptions): Promise<CreateLoadBalancerUDPListenerResponse> {
|
|
14457
14617
|
Util.validateModel(request);
|
|
@@ -14578,17 +14738,26 @@ export default class Client extends OpenApi {
|
|
|
14578
14738
|
}
|
|
14579
14739
|
|
|
14580
14740
|
/**
|
|
14581
|
-
|
|
14582
|
-
|
|
14583
|
-
|
|
14584
|
-
|
|
14585
|
-
|
|
14741
|
+
* @summary Creates a UDP listener.
|
|
14742
|
+
*
|
|
14743
|
+
* @description UDP listeners of Classic Load Balancer (CLB) instances in a classic network cannot pass client IP addresses to backend servers.
|
|
14744
|
+
* > A newly created listener is in the **stopped** state. After a listener is created, you can call the [StartLoadBalancerListener](https://help.aliyun.com/document_detail/27597.html) operation to enable the listener to forward traffic to backend servers.
|
|
14745
|
+
*
|
|
14746
|
+
* @param request CreateLoadBalancerUDPListenerRequest
|
|
14747
|
+
* @return CreateLoadBalancerUDPListenerResponse
|
|
14586
14748
|
*/
|
|
14587
14749
|
async createLoadBalancerUDPListener(request: CreateLoadBalancerUDPListenerRequest): Promise<CreateLoadBalancerUDPListenerResponse> {
|
|
14588
14750
|
let runtime = new $Util.RuntimeOptions({ });
|
|
14589
14751
|
return await this.createLoadBalancerUDPListenerWithOptions(request, runtime);
|
|
14590
14752
|
}
|
|
14591
14753
|
|
|
14754
|
+
/**
|
|
14755
|
+
* @summary Creates a primary/secondary server group. A primary/secondary server group can contain only two Elastic Compute Service (ECS) instances. One of the ECS instances functions as the primary server and the other functions as the secondary server.
|
|
14756
|
+
*
|
|
14757
|
+
* @param request CreateMasterSlaveServerGroupRequest
|
|
14758
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
14759
|
+
* @return CreateMasterSlaveServerGroupResponse
|
|
14760
|
+
*/
|
|
14592
14761
|
async createMasterSlaveServerGroupWithOptions(request: CreateMasterSlaveServerGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateMasterSlaveServerGroupResponse> {
|
|
14593
14762
|
Util.validateModel(request);
|
|
14594
14763
|
let query = { };
|
|
@@ -14645,11 +14814,24 @@ export default class Client extends OpenApi {
|
|
|
14645
14814
|
return $tea.cast<CreateMasterSlaveServerGroupResponse>(await this.callApi(params, req, runtime), new CreateMasterSlaveServerGroupResponse({}));
|
|
14646
14815
|
}
|
|
14647
14816
|
|
|
14817
|
+
/**
|
|
14818
|
+
* @summary Creates a primary/secondary server group. A primary/secondary server group can contain only two Elastic Compute Service (ECS) instances. One of the ECS instances functions as the primary server and the other functions as the secondary server.
|
|
14819
|
+
*
|
|
14820
|
+
* @param request CreateMasterSlaveServerGroupRequest
|
|
14821
|
+
* @return CreateMasterSlaveServerGroupResponse
|
|
14822
|
+
*/
|
|
14648
14823
|
async createMasterSlaveServerGroup(request: CreateMasterSlaveServerGroupRequest): Promise<CreateMasterSlaveServerGroupResponse> {
|
|
14649
14824
|
let runtime = new $Util.RuntimeOptions({ });
|
|
14650
14825
|
return await this.createMasterSlaveServerGroupWithOptions(request, runtime);
|
|
14651
14826
|
}
|
|
14652
14827
|
|
|
14828
|
+
/**
|
|
14829
|
+
* @summary Creates forwarding rules for an HTTP or HTTPS listener.
|
|
14830
|
+
*
|
|
14831
|
+
* @param request CreateRulesRequest
|
|
14832
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
14833
|
+
* @return CreateRulesResponse
|
|
14834
|
+
*/
|
|
14653
14835
|
async createRulesWithOptions(request: CreateRulesRequest, runtime: $Util.RuntimeOptions): Promise<CreateRulesResponse> {
|
|
14654
14836
|
Util.validateModel(request);
|
|
14655
14837
|
let query = { };
|
|
@@ -14706,11 +14888,24 @@ export default class Client extends OpenApi {
|
|
|
14706
14888
|
return $tea.cast<CreateRulesResponse>(await this.callApi(params, req, runtime), new CreateRulesResponse({}));
|
|
14707
14889
|
}
|
|
14708
14890
|
|
|
14891
|
+
/**
|
|
14892
|
+
* @summary Creates forwarding rules for an HTTP or HTTPS listener.
|
|
14893
|
+
*
|
|
14894
|
+
* @param request CreateRulesRequest
|
|
14895
|
+
* @return CreateRulesResponse
|
|
14896
|
+
*/
|
|
14709
14897
|
async createRules(request: CreateRulesRequest): Promise<CreateRulesResponse> {
|
|
14710
14898
|
let runtime = new $Util.RuntimeOptions({ });
|
|
14711
14899
|
return await this.createRulesWithOptions(request, runtime);
|
|
14712
14900
|
}
|
|
14713
14901
|
|
|
14902
|
+
/**
|
|
14903
|
+
* @summary Creates a Transport Layer Security (TLS) policy.
|
|
14904
|
+
*
|
|
14905
|
+
* @param request CreateTLSCipherPolicyRequest
|
|
14906
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
14907
|
+
* @return CreateTLSCipherPolicyResponse
|
|
14908
|
+
*/
|
|
14714
14909
|
async createTLSCipherPolicyWithOptions(request: CreateTLSCipherPolicyRequest, runtime: $Util.RuntimeOptions): Promise<CreateTLSCipherPolicyResponse> {
|
|
14715
14910
|
Util.validateModel(request);
|
|
14716
14911
|
let query = { };
|
|
@@ -14763,11 +14958,24 @@ export default class Client extends OpenApi {
|
|
|
14763
14958
|
return $tea.cast<CreateTLSCipherPolicyResponse>(await this.callApi(params, req, runtime), new CreateTLSCipherPolicyResponse({}));
|
|
14764
14959
|
}
|
|
14765
14960
|
|
|
14961
|
+
/**
|
|
14962
|
+
* @summary Creates a Transport Layer Security (TLS) policy.
|
|
14963
|
+
*
|
|
14964
|
+
* @param request CreateTLSCipherPolicyRequest
|
|
14965
|
+
* @return CreateTLSCipherPolicyResponse
|
|
14966
|
+
*/
|
|
14766
14967
|
async createTLSCipherPolicy(request: CreateTLSCipherPolicyRequest): Promise<CreateTLSCipherPolicyResponse> {
|
|
14767
14968
|
let runtime = new $Util.RuntimeOptions({ });
|
|
14768
14969
|
return await this.createTLSCipherPolicyWithOptions(request, runtime);
|
|
14769
14970
|
}
|
|
14770
14971
|
|
|
14972
|
+
/**
|
|
14973
|
+
* @summary Creates a vServer group and adds backend servers to the vServer group.
|
|
14974
|
+
*
|
|
14975
|
+
* @param request CreateVServerGroupRequest
|
|
14976
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
14977
|
+
* @return CreateVServerGroupResponse
|
|
14978
|
+
*/
|
|
14771
14979
|
async createVServerGroupWithOptions(request: CreateVServerGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateVServerGroupResponse> {
|
|
14772
14980
|
Util.validateModel(request);
|
|
14773
14981
|
let query = { };
|
|
@@ -14824,17 +15032,25 @@ export default class Client extends OpenApi {
|
|
|
14824
15032
|
return $tea.cast<CreateVServerGroupResponse>(await this.callApi(params, req, runtime), new CreateVServerGroupResponse({}));
|
|
14825
15033
|
}
|
|
14826
15034
|
|
|
15035
|
+
/**
|
|
15036
|
+
* @summary Creates a vServer group and adds backend servers to the vServer group.
|
|
15037
|
+
*
|
|
15038
|
+
* @param request CreateVServerGroupRequest
|
|
15039
|
+
* @return CreateVServerGroupResponse
|
|
15040
|
+
*/
|
|
14827
15041
|
async createVServerGroup(request: CreateVServerGroupRequest): Promise<CreateVServerGroupResponse> {
|
|
14828
15042
|
let runtime = new $Util.RuntimeOptions({ });
|
|
14829
15043
|
return await this.createVServerGroupWithOptions(request, runtime);
|
|
14830
15044
|
}
|
|
14831
15045
|
|
|
14832
15046
|
/**
|
|
14833
|
-
|
|
14834
|
-
|
|
14835
|
-
|
|
14836
|
-
|
|
14837
|
-
|
|
15047
|
+
* @summary Deletes an access control list (ACL).
|
|
15048
|
+
*
|
|
15049
|
+
* @description You can delete an ACL only if it is not associated with a listener.
|
|
15050
|
+
*
|
|
15051
|
+
* @param request DeleteAccessControlListRequest
|
|
15052
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15053
|
+
* @return DeleteAccessControlListResponse
|
|
14838
15054
|
*/
|
|
14839
15055
|
async deleteAccessControlListWithOptions(request: DeleteAccessControlListRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAccessControlListResponse> {
|
|
14840
15056
|
Util.validateModel(request);
|
|
@@ -14881,16 +15097,25 @@ export default class Client extends OpenApi {
|
|
|
14881
15097
|
}
|
|
14882
15098
|
|
|
14883
15099
|
/**
|
|
14884
|
-
|
|
14885
|
-
|
|
14886
|
-
|
|
14887
|
-
|
|
15100
|
+
* @summary Deletes an access control list (ACL).
|
|
15101
|
+
*
|
|
15102
|
+
* @description You can delete an ACL only if it is not associated with a listener.
|
|
15103
|
+
*
|
|
15104
|
+
* @param request DeleteAccessControlListRequest
|
|
15105
|
+
* @return DeleteAccessControlListResponse
|
|
14888
15106
|
*/
|
|
14889
15107
|
async deleteAccessControlList(request: DeleteAccessControlListRequest): Promise<DeleteAccessControlListResponse> {
|
|
14890
15108
|
let runtime = new $Util.RuntimeOptions({ });
|
|
14891
15109
|
return await this.deleteAccessControlListWithOptions(request, runtime);
|
|
14892
15110
|
}
|
|
14893
15111
|
|
|
15112
|
+
/**
|
|
15113
|
+
* @summary Deletes the access log of a Classic Load Balancer (CLB) instance.
|
|
15114
|
+
*
|
|
15115
|
+
* @param request DeleteAccessLogsDownloadAttributeRequest
|
|
15116
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15117
|
+
* @return DeleteAccessLogsDownloadAttributeResponse
|
|
15118
|
+
*/
|
|
14894
15119
|
async deleteAccessLogsDownloadAttributeWithOptions(request: DeleteAccessLogsDownloadAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAccessLogsDownloadAttributeResponse> {
|
|
14895
15120
|
Util.validateModel(request);
|
|
14896
15121
|
let query = { };
|
|
@@ -14943,17 +15168,25 @@ export default class Client extends OpenApi {
|
|
|
14943
15168
|
return $tea.cast<DeleteAccessLogsDownloadAttributeResponse>(await this.callApi(params, req, runtime), new DeleteAccessLogsDownloadAttributeResponse({}));
|
|
14944
15169
|
}
|
|
14945
15170
|
|
|
15171
|
+
/**
|
|
15172
|
+
* @summary Deletes the access log of a Classic Load Balancer (CLB) instance.
|
|
15173
|
+
*
|
|
15174
|
+
* @param request DeleteAccessLogsDownloadAttributeRequest
|
|
15175
|
+
* @return DeleteAccessLogsDownloadAttributeResponse
|
|
15176
|
+
*/
|
|
14946
15177
|
async deleteAccessLogsDownloadAttribute(request: DeleteAccessLogsDownloadAttributeRequest): Promise<DeleteAccessLogsDownloadAttributeResponse> {
|
|
14947
15178
|
let runtime = new $Util.RuntimeOptions({ });
|
|
14948
15179
|
return await this.deleteAccessLogsDownloadAttributeWithOptions(request, runtime);
|
|
14949
15180
|
}
|
|
14950
15181
|
|
|
14951
15182
|
/**
|
|
14952
|
-
|
|
14953
|
-
|
|
14954
|
-
|
|
14955
|
-
|
|
14956
|
-
|
|
15183
|
+
* @summary Deletes a certificate authority (CA) certificate.
|
|
15184
|
+
*
|
|
15185
|
+
* @description You cannot delete a CA certificate that is in use.
|
|
15186
|
+
*
|
|
15187
|
+
* @param request DeleteCACertificateRequest
|
|
15188
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15189
|
+
* @return DeleteCACertificateResponse
|
|
14957
15190
|
*/
|
|
14958
15191
|
async deleteCACertificateWithOptions(request: DeleteCACertificateRequest, runtime: $Util.RuntimeOptions): Promise<DeleteCACertificateResponse> {
|
|
14959
15192
|
Util.validateModel(request);
|
|
@@ -15000,16 +15233,25 @@ export default class Client extends OpenApi {
|
|
|
15000
15233
|
}
|
|
15001
15234
|
|
|
15002
15235
|
/**
|
|
15003
|
-
|
|
15004
|
-
|
|
15005
|
-
|
|
15006
|
-
|
|
15236
|
+
* @summary Deletes a certificate authority (CA) certificate.
|
|
15237
|
+
*
|
|
15238
|
+
* @description You cannot delete a CA certificate that is in use.
|
|
15239
|
+
*
|
|
15240
|
+
* @param request DeleteCACertificateRequest
|
|
15241
|
+
* @return DeleteCACertificateResponse
|
|
15007
15242
|
*/
|
|
15008
15243
|
async deleteCACertificate(request: DeleteCACertificateRequest): Promise<DeleteCACertificateResponse> {
|
|
15009
15244
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15010
15245
|
return await this.deleteCACertificateWithOptions(request, runtime);
|
|
15011
15246
|
}
|
|
15012
15247
|
|
|
15248
|
+
/**
|
|
15249
|
+
* @summary Deletes an additional domain name.
|
|
15250
|
+
*
|
|
15251
|
+
* @param request DeleteDomainExtensionRequest
|
|
15252
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15253
|
+
* @return DeleteDomainExtensionResponse
|
|
15254
|
+
*/
|
|
15013
15255
|
async deleteDomainExtensionWithOptions(request: DeleteDomainExtensionRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDomainExtensionResponse> {
|
|
15014
15256
|
Util.validateModel(request);
|
|
15015
15257
|
let query = { };
|
|
@@ -15054,17 +15296,25 @@ export default class Client extends OpenApi {
|
|
|
15054
15296
|
return $tea.cast<DeleteDomainExtensionResponse>(await this.callApi(params, req, runtime), new DeleteDomainExtensionResponse({}));
|
|
15055
15297
|
}
|
|
15056
15298
|
|
|
15299
|
+
/**
|
|
15300
|
+
* @summary Deletes an additional domain name.
|
|
15301
|
+
*
|
|
15302
|
+
* @param request DeleteDomainExtensionRequest
|
|
15303
|
+
* @return DeleteDomainExtensionResponse
|
|
15304
|
+
*/
|
|
15057
15305
|
async deleteDomainExtension(request: DeleteDomainExtensionRequest): Promise<DeleteDomainExtensionResponse> {
|
|
15058
15306
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15059
15307
|
return await this.deleteDomainExtensionWithOptions(request, runtime);
|
|
15060
15308
|
}
|
|
15061
15309
|
|
|
15062
15310
|
/**
|
|
15063
|
-
|
|
15064
|
-
|
|
15065
|
-
|
|
15066
|
-
|
|
15067
|
-
|
|
15311
|
+
* @summary Deletes a pay-as-you-go Server Load Balancer (SLB) instance.
|
|
15312
|
+
*
|
|
15313
|
+
* @description > The listeners and tags of the SLB instance are deleted along with the SLB instance.
|
|
15314
|
+
*
|
|
15315
|
+
* @param request DeleteLoadBalancerRequest
|
|
15316
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15317
|
+
* @return DeleteLoadBalancerResponse
|
|
15068
15318
|
*/
|
|
15069
15319
|
async deleteLoadBalancerWithOptions(request: DeleteLoadBalancerRequest, runtime: $Util.RuntimeOptions): Promise<DeleteLoadBalancerResponse> {
|
|
15070
15320
|
Util.validateModel(request);
|
|
@@ -15111,10 +15361,12 @@ export default class Client extends OpenApi {
|
|
|
15111
15361
|
}
|
|
15112
15362
|
|
|
15113
15363
|
/**
|
|
15114
|
-
|
|
15115
|
-
|
|
15116
|
-
|
|
15117
|
-
|
|
15364
|
+
* @summary Deletes a pay-as-you-go Server Load Balancer (SLB) instance.
|
|
15365
|
+
*
|
|
15366
|
+
* @description > The listeners and tags of the SLB instance are deleted along with the SLB instance.
|
|
15367
|
+
*
|
|
15368
|
+
* @param request DeleteLoadBalancerRequest
|
|
15369
|
+
* @return DeleteLoadBalancerResponse
|
|
15118
15370
|
*/
|
|
15119
15371
|
async deleteLoadBalancer(request: DeleteLoadBalancerRequest): Promise<DeleteLoadBalancerResponse> {
|
|
15120
15372
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -15122,11 +15374,13 @@ export default class Client extends OpenApi {
|
|
|
15122
15374
|
}
|
|
15123
15375
|
|
|
15124
15376
|
/**
|
|
15125
|
-
|
|
15126
|
-
|
|
15127
|
-
|
|
15128
|
-
|
|
15129
|
-
|
|
15377
|
+
* @summary Deletes a listener.
|
|
15378
|
+
*
|
|
15379
|
+
* @description > You can delete only listeners that are in the **stopped** or **running** state.
|
|
15380
|
+
*
|
|
15381
|
+
* @param request DeleteLoadBalancerListenerRequest
|
|
15382
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15383
|
+
* @return DeleteLoadBalancerListenerResponse
|
|
15130
15384
|
*/
|
|
15131
15385
|
async deleteLoadBalancerListenerWithOptions(request: DeleteLoadBalancerListenerRequest, runtime: $Util.RuntimeOptions): Promise<DeleteLoadBalancerListenerResponse> {
|
|
15132
15386
|
Util.validateModel(request);
|
|
@@ -15181,16 +15435,25 @@ export default class Client extends OpenApi {
|
|
|
15181
15435
|
}
|
|
15182
15436
|
|
|
15183
15437
|
/**
|
|
15184
|
-
|
|
15185
|
-
|
|
15186
|
-
|
|
15187
|
-
|
|
15438
|
+
* @summary Deletes a listener.
|
|
15439
|
+
*
|
|
15440
|
+
* @description > You can delete only listeners that are in the **stopped** or **running** state.
|
|
15441
|
+
*
|
|
15442
|
+
* @param request DeleteLoadBalancerListenerRequest
|
|
15443
|
+
* @return DeleteLoadBalancerListenerResponse
|
|
15188
15444
|
*/
|
|
15189
15445
|
async deleteLoadBalancerListener(request: DeleteLoadBalancerListenerRequest): Promise<DeleteLoadBalancerListenerResponse> {
|
|
15190
15446
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15191
15447
|
return await this.deleteLoadBalancerListenerWithOptions(request, runtime);
|
|
15192
15448
|
}
|
|
15193
15449
|
|
|
15450
|
+
/**
|
|
15451
|
+
* @summary Deletes an active/standby server group.
|
|
15452
|
+
*
|
|
15453
|
+
* @param request DeleteMasterSlaveServerGroupRequest
|
|
15454
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15455
|
+
* @return DeleteMasterSlaveServerGroupResponse
|
|
15456
|
+
*/
|
|
15194
15457
|
async deleteMasterSlaveServerGroupWithOptions(request: DeleteMasterSlaveServerGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteMasterSlaveServerGroupResponse> {
|
|
15195
15458
|
Util.validateModel(request);
|
|
15196
15459
|
let query = { };
|
|
@@ -15235,18 +15498,26 @@ export default class Client extends OpenApi {
|
|
|
15235
15498
|
return $tea.cast<DeleteMasterSlaveServerGroupResponse>(await this.callApi(params, req, runtime), new DeleteMasterSlaveServerGroupResponse({}));
|
|
15236
15499
|
}
|
|
15237
15500
|
|
|
15501
|
+
/**
|
|
15502
|
+
* @summary Deletes an active/standby server group.
|
|
15503
|
+
*
|
|
15504
|
+
* @param request DeleteMasterSlaveServerGroupRequest
|
|
15505
|
+
* @return DeleteMasterSlaveServerGroupResponse
|
|
15506
|
+
*/
|
|
15238
15507
|
async deleteMasterSlaveServerGroup(request: DeleteMasterSlaveServerGroupRequest): Promise<DeleteMasterSlaveServerGroupResponse> {
|
|
15239
15508
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15240
15509
|
return await this.deleteMasterSlaveServerGroupWithOptions(request, runtime);
|
|
15241
15510
|
}
|
|
15242
15511
|
|
|
15243
15512
|
/**
|
|
15244
|
-
|
|
15245
|
-
|
|
15246
|
-
|
|
15247
|
-
|
|
15248
|
-
|
|
15249
|
-
|
|
15513
|
+
* @summary Deletes forwarding rules.
|
|
15514
|
+
*
|
|
15515
|
+
* @description ## Limits
|
|
15516
|
+
* The RuleIds parameter is required. You can specify up to 10 forwarding rules in each request.
|
|
15517
|
+
*
|
|
15518
|
+
* @param request DeleteRulesRequest
|
|
15519
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15520
|
+
* @return DeleteRulesResponse
|
|
15250
15521
|
*/
|
|
15251
15522
|
async deleteRulesWithOptions(request: DeleteRulesRequest, runtime: $Util.RuntimeOptions): Promise<DeleteRulesResponse> {
|
|
15252
15523
|
Util.validateModel(request);
|
|
@@ -15293,11 +15564,13 @@ export default class Client extends OpenApi {
|
|
|
15293
15564
|
}
|
|
15294
15565
|
|
|
15295
15566
|
/**
|
|
15296
|
-
|
|
15297
|
-
|
|
15298
|
-
|
|
15299
|
-
|
|
15300
|
-
|
|
15567
|
+
* @summary Deletes forwarding rules.
|
|
15568
|
+
*
|
|
15569
|
+
* @description ## Limits
|
|
15570
|
+
* The RuleIds parameter is required. You can specify up to 10 forwarding rules in each request.
|
|
15571
|
+
*
|
|
15572
|
+
* @param request DeleteRulesRequest
|
|
15573
|
+
* @return DeleteRulesResponse
|
|
15301
15574
|
*/
|
|
15302
15575
|
async deleteRules(request: DeleteRulesRequest): Promise<DeleteRulesResponse> {
|
|
15303
15576
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -15305,11 +15578,13 @@ export default class Client extends OpenApi {
|
|
|
15305
15578
|
}
|
|
15306
15579
|
|
|
15307
15580
|
/**
|
|
15308
|
-
|
|
15309
|
-
|
|
15310
|
-
|
|
15311
|
-
|
|
15312
|
-
|
|
15581
|
+
* @summary Deletes a server certificate.
|
|
15582
|
+
*
|
|
15583
|
+
* @description > You cannot delete server certificates that are in use.
|
|
15584
|
+
*
|
|
15585
|
+
* @param request DeleteServerCertificateRequest
|
|
15586
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15587
|
+
* @return DeleteServerCertificateResponse
|
|
15313
15588
|
*/
|
|
15314
15589
|
async deleteServerCertificateWithOptions(request: DeleteServerCertificateRequest, runtime: $Util.RuntimeOptions): Promise<DeleteServerCertificateResponse> {
|
|
15315
15590
|
Util.validateModel(request);
|
|
@@ -15356,10 +15631,12 @@ export default class Client extends OpenApi {
|
|
|
15356
15631
|
}
|
|
15357
15632
|
|
|
15358
15633
|
/**
|
|
15359
|
-
|
|
15360
|
-
|
|
15361
|
-
|
|
15362
|
-
|
|
15634
|
+
* @summary Deletes a server certificate.
|
|
15635
|
+
*
|
|
15636
|
+
* @description > You cannot delete server certificates that are in use.
|
|
15637
|
+
*
|
|
15638
|
+
* @param request DeleteServerCertificateRequest
|
|
15639
|
+
* @return DeleteServerCertificateResponse
|
|
15363
15640
|
*/
|
|
15364
15641
|
async deleteServerCertificate(request: DeleteServerCertificateRequest): Promise<DeleteServerCertificateResponse> {
|
|
15365
15642
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -15367,12 +15644,14 @@ export default class Client extends OpenApi {
|
|
|
15367
15644
|
}
|
|
15368
15645
|
|
|
15369
15646
|
/**
|
|
15370
|
-
|
|
15371
|
-
|
|
15372
|
-
|
|
15373
|
-
|
|
15374
|
-
|
|
15375
|
-
|
|
15647
|
+
* @summary Deletes a TLS policy.
|
|
15648
|
+
*
|
|
15649
|
+
* @description ## Debugging
|
|
15650
|
+
* [OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer. OpenAPI Explorer dynamically generates the sample code of the operation for different SDKs.](https://api.aliyun.com/#product=Slb\\&api=DeleteTLSCipherPolicy\\&type=RPC\\&version=2014-05-15)
|
|
15651
|
+
*
|
|
15652
|
+
* @param request DeleteTLSCipherPolicyRequest
|
|
15653
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15654
|
+
* @return DeleteTLSCipherPolicyResponse
|
|
15376
15655
|
*/
|
|
15377
15656
|
async deleteTLSCipherPolicyWithOptions(request: DeleteTLSCipherPolicyRequest, runtime: $Util.RuntimeOptions): Promise<DeleteTLSCipherPolicyResponse> {
|
|
15378
15657
|
Util.validateModel(request);
|
|
@@ -15419,17 +15698,26 @@ export default class Client extends OpenApi {
|
|
|
15419
15698
|
}
|
|
15420
15699
|
|
|
15421
15700
|
/**
|
|
15422
|
-
|
|
15423
|
-
|
|
15424
|
-
|
|
15425
|
-
|
|
15426
|
-
|
|
15701
|
+
* @summary Deletes a TLS policy.
|
|
15702
|
+
*
|
|
15703
|
+
* @description ## Debugging
|
|
15704
|
+
* [OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer. OpenAPI Explorer dynamically generates the sample code of the operation for different SDKs.](https://api.aliyun.com/#product=Slb\\&api=DeleteTLSCipherPolicy\\&type=RPC\\&version=2014-05-15)
|
|
15705
|
+
*
|
|
15706
|
+
* @param request DeleteTLSCipherPolicyRequest
|
|
15707
|
+
* @return DeleteTLSCipherPolicyResponse
|
|
15427
15708
|
*/
|
|
15428
15709
|
async deleteTLSCipherPolicy(request: DeleteTLSCipherPolicyRequest): Promise<DeleteTLSCipherPolicyResponse> {
|
|
15429
15710
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15430
15711
|
return await this.deleteTLSCipherPolicyWithOptions(request, runtime);
|
|
15431
15712
|
}
|
|
15432
15713
|
|
|
15714
|
+
/**
|
|
15715
|
+
* @summary Deletes a VServer group.
|
|
15716
|
+
*
|
|
15717
|
+
* @param request DeleteVServerGroupRequest
|
|
15718
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15719
|
+
* @return DeleteVServerGroupResponse
|
|
15720
|
+
*/
|
|
15433
15721
|
async deleteVServerGroupWithOptions(request: DeleteVServerGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteVServerGroupResponse> {
|
|
15434
15722
|
Util.validateModel(request);
|
|
15435
15723
|
let query = { };
|
|
@@ -15474,11 +15762,24 @@ export default class Client extends OpenApi {
|
|
|
15474
15762
|
return $tea.cast<DeleteVServerGroupResponse>(await this.callApi(params, req, runtime), new DeleteVServerGroupResponse({}));
|
|
15475
15763
|
}
|
|
15476
15764
|
|
|
15765
|
+
/**
|
|
15766
|
+
* @summary Deletes a VServer group.
|
|
15767
|
+
*
|
|
15768
|
+
* @param request DeleteVServerGroupRequest
|
|
15769
|
+
* @return DeleteVServerGroupResponse
|
|
15770
|
+
*/
|
|
15477
15771
|
async deleteVServerGroup(request: DeleteVServerGroupRequest): Promise<DeleteVServerGroupResponse> {
|
|
15478
15772
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15479
15773
|
return await this.deleteVServerGroupWithOptions(request, runtime);
|
|
15480
15774
|
}
|
|
15481
15775
|
|
|
15776
|
+
/**
|
|
15777
|
+
* @summary Queries the configuration of an access control list (ACL).
|
|
15778
|
+
*
|
|
15779
|
+
* @param request DescribeAccessControlListAttributeRequest
|
|
15780
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15781
|
+
* @return DescribeAccessControlListAttributeResponse
|
|
15782
|
+
*/
|
|
15482
15783
|
async describeAccessControlListAttributeWithOptions(request: DescribeAccessControlListAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAccessControlListAttributeResponse> {
|
|
15483
15784
|
Util.validateModel(request);
|
|
15484
15785
|
let query = { };
|
|
@@ -15535,11 +15836,24 @@ export default class Client extends OpenApi {
|
|
|
15535
15836
|
return $tea.cast<DescribeAccessControlListAttributeResponse>(await this.callApi(params, req, runtime), new DescribeAccessControlListAttributeResponse({}));
|
|
15536
15837
|
}
|
|
15537
15838
|
|
|
15839
|
+
/**
|
|
15840
|
+
* @summary Queries the configuration of an access control list (ACL).
|
|
15841
|
+
*
|
|
15842
|
+
* @param request DescribeAccessControlListAttributeRequest
|
|
15843
|
+
* @return DescribeAccessControlListAttributeResponse
|
|
15844
|
+
*/
|
|
15538
15845
|
async describeAccessControlListAttribute(request: DescribeAccessControlListAttributeRequest): Promise<DescribeAccessControlListAttributeResponse> {
|
|
15539
15846
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15540
15847
|
return await this.describeAccessControlListAttributeWithOptions(request, runtime);
|
|
15541
15848
|
}
|
|
15542
15849
|
|
|
15850
|
+
/**
|
|
15851
|
+
* @summary Queries access control lists (ACLs).
|
|
15852
|
+
*
|
|
15853
|
+
* @param request DescribeAccessControlListsRequest
|
|
15854
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15855
|
+
* @return DescribeAccessControlListsResponse
|
|
15856
|
+
*/
|
|
15543
15857
|
async describeAccessControlListsWithOptions(request: DescribeAccessControlListsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAccessControlListsResponse> {
|
|
15544
15858
|
Util.validateModel(request);
|
|
15545
15859
|
let query = { };
|
|
@@ -15604,11 +15918,24 @@ export default class Client extends OpenApi {
|
|
|
15604
15918
|
return $tea.cast<DescribeAccessControlListsResponse>(await this.callApi(params, req, runtime), new DescribeAccessControlListsResponse({}));
|
|
15605
15919
|
}
|
|
15606
15920
|
|
|
15921
|
+
/**
|
|
15922
|
+
* @summary Queries access control lists (ACLs).
|
|
15923
|
+
*
|
|
15924
|
+
* @param request DescribeAccessControlListsRequest
|
|
15925
|
+
* @return DescribeAccessControlListsResponse
|
|
15926
|
+
*/
|
|
15607
15927
|
async describeAccessControlLists(request: DescribeAccessControlListsRequest): Promise<DescribeAccessControlListsResponse> {
|
|
15608
15928
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15609
15929
|
return await this.describeAccessControlListsWithOptions(request, runtime);
|
|
15610
15930
|
}
|
|
15611
15931
|
|
|
15932
|
+
/**
|
|
15933
|
+
* @summary Queries the access log of a Classic Load Balancer (CLB) instance.
|
|
15934
|
+
*
|
|
15935
|
+
* @param request DescribeAccessLogsDownloadAttributeRequest
|
|
15936
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15937
|
+
* @return DescribeAccessLogsDownloadAttributeResponse
|
|
15938
|
+
*/
|
|
15612
15939
|
async describeAccessLogsDownloadAttributeWithOptions(request: DescribeAccessLogsDownloadAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAccessLogsDownloadAttributeResponse> {
|
|
15613
15940
|
Util.validateModel(request);
|
|
15614
15941
|
let query = { };
|
|
@@ -15669,17 +15996,25 @@ export default class Client extends OpenApi {
|
|
|
15669
15996
|
return $tea.cast<DescribeAccessLogsDownloadAttributeResponse>(await this.callApi(params, req, runtime), new DescribeAccessLogsDownloadAttributeResponse({}));
|
|
15670
15997
|
}
|
|
15671
15998
|
|
|
15999
|
+
/**
|
|
16000
|
+
* @summary Queries the access log of a Classic Load Balancer (CLB) instance.
|
|
16001
|
+
*
|
|
16002
|
+
* @param request DescribeAccessLogsDownloadAttributeRequest
|
|
16003
|
+
* @return DescribeAccessLogsDownloadAttributeResponse
|
|
16004
|
+
*/
|
|
15672
16005
|
async describeAccessLogsDownloadAttribute(request: DescribeAccessLogsDownloadAttributeRequest): Promise<DescribeAccessLogsDownloadAttributeResponse> {
|
|
15673
16006
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15674
16007
|
return await this.describeAccessLogsDownloadAttributeWithOptions(request, runtime);
|
|
15675
16008
|
}
|
|
15676
16009
|
|
|
15677
16010
|
/**
|
|
15678
|
-
|
|
15679
|
-
|
|
15680
|
-
|
|
15681
|
-
|
|
15682
|
-
|
|
16011
|
+
* @summary Queries the available resources and resources that are available for purchase in the zones of a region.
|
|
16012
|
+
*
|
|
16013
|
+
* @description > Only the available resources and zones are returned.
|
|
16014
|
+
*
|
|
16015
|
+
* @param request DescribeAvailableResourceRequest
|
|
16016
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16017
|
+
* @return DescribeAvailableResourceResponse
|
|
15683
16018
|
*/
|
|
15684
16019
|
async describeAvailableResourceWithOptions(request: DescribeAvailableResourceRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAvailableResourceResponse> {
|
|
15685
16020
|
Util.validateModel(request);
|
|
@@ -15730,10 +16065,12 @@ export default class Client extends OpenApi {
|
|
|
15730
16065
|
}
|
|
15731
16066
|
|
|
15732
16067
|
/**
|
|
15733
|
-
|
|
15734
|
-
|
|
15735
|
-
|
|
15736
|
-
|
|
16068
|
+
* @summary Queries the available resources and resources that are available for purchase in the zones of a region.
|
|
16069
|
+
*
|
|
16070
|
+
* @description > Only the available resources and zones are returned.
|
|
16071
|
+
*
|
|
16072
|
+
* @param request DescribeAvailableResourceRequest
|
|
16073
|
+
* @return DescribeAvailableResourceResponse
|
|
15737
16074
|
*/
|
|
15738
16075
|
async describeAvailableResource(request: DescribeAvailableResourceRequest): Promise<DescribeAvailableResourceResponse> {
|
|
15739
16076
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -15741,11 +16078,13 @@ export default class Client extends OpenApi {
|
|
|
15741
16078
|
}
|
|
15742
16079
|
|
|
15743
16080
|
/**
|
|
15744
|
-
|
|
15745
|
-
|
|
15746
|
-
|
|
15747
|
-
|
|
15748
|
-
|
|
16081
|
+
* @summary Queries certificate authority (CA) certificates.
|
|
16082
|
+
*
|
|
16083
|
+
* @description > To ensure data confidentiality, only the certificate fingerprint and name are returned. The certificate content is not returned.
|
|
16084
|
+
*
|
|
16085
|
+
* @param request DescribeCACertificatesRequest
|
|
16086
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16087
|
+
* @return DescribeCACertificatesResponse
|
|
15749
16088
|
*/
|
|
15750
16089
|
async describeCACertificatesWithOptions(request: DescribeCACertificatesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeCACertificatesResponse> {
|
|
15751
16090
|
Util.validateModel(request);
|
|
@@ -15800,16 +16139,25 @@ export default class Client extends OpenApi {
|
|
|
15800
16139
|
}
|
|
15801
16140
|
|
|
15802
16141
|
/**
|
|
15803
|
-
|
|
15804
|
-
|
|
15805
|
-
|
|
15806
|
-
|
|
16142
|
+
* @summary Queries certificate authority (CA) certificates.
|
|
16143
|
+
*
|
|
16144
|
+
* @description > To ensure data confidentiality, only the certificate fingerprint and name are returned. The certificate content is not returned.
|
|
16145
|
+
*
|
|
16146
|
+
* @param request DescribeCACertificatesRequest
|
|
16147
|
+
* @return DescribeCACertificatesResponse
|
|
15807
16148
|
*/
|
|
15808
16149
|
async describeCACertificates(request: DescribeCACertificatesRequest): Promise<DescribeCACertificatesResponse> {
|
|
15809
16150
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15810
16151
|
return await this.describeCACertificatesWithOptions(request, runtime);
|
|
15811
16152
|
}
|
|
15812
16153
|
|
|
16154
|
+
/**
|
|
16155
|
+
* @summary Queries the attributes of an additional certificate.
|
|
16156
|
+
*
|
|
16157
|
+
* @param request DescribeDomainExtensionAttributeRequest
|
|
16158
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16159
|
+
* @return DescribeDomainExtensionAttributeResponse
|
|
16160
|
+
*/
|
|
15813
16161
|
async describeDomainExtensionAttributeWithOptions(request: DescribeDomainExtensionAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDomainExtensionAttributeResponse> {
|
|
15814
16162
|
Util.validateModel(request);
|
|
15815
16163
|
let query = { };
|
|
@@ -15854,11 +16202,24 @@ export default class Client extends OpenApi {
|
|
|
15854
16202
|
return $tea.cast<DescribeDomainExtensionAttributeResponse>(await this.callApi(params, req, runtime), new DescribeDomainExtensionAttributeResponse({}));
|
|
15855
16203
|
}
|
|
15856
16204
|
|
|
16205
|
+
/**
|
|
16206
|
+
* @summary Queries the attributes of an additional certificate.
|
|
16207
|
+
*
|
|
16208
|
+
* @param request DescribeDomainExtensionAttributeRequest
|
|
16209
|
+
* @return DescribeDomainExtensionAttributeResponse
|
|
16210
|
+
*/
|
|
15857
16211
|
async describeDomainExtensionAttribute(request: DescribeDomainExtensionAttributeRequest): Promise<DescribeDomainExtensionAttributeResponse> {
|
|
15858
16212
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15859
16213
|
return await this.describeDomainExtensionAttributeWithOptions(request, runtime);
|
|
15860
16214
|
}
|
|
15861
16215
|
|
|
16216
|
+
/**
|
|
16217
|
+
* @summary Queries additional certificates.
|
|
16218
|
+
*
|
|
16219
|
+
* @param request DescribeDomainExtensionsRequest
|
|
16220
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16221
|
+
* @return DescribeDomainExtensionsResponse
|
|
16222
|
+
*/
|
|
15862
16223
|
async describeDomainExtensionsWithOptions(request: DescribeDomainExtensionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDomainExtensionsResponse> {
|
|
15863
16224
|
Util.validateModel(request);
|
|
15864
16225
|
let query = { };
|
|
@@ -15911,11 +16272,24 @@ export default class Client extends OpenApi {
|
|
|
15911
16272
|
return $tea.cast<DescribeDomainExtensionsResponse>(await this.callApi(params, req, runtime), new DescribeDomainExtensionsResponse({}));
|
|
15912
16273
|
}
|
|
15913
16274
|
|
|
16275
|
+
/**
|
|
16276
|
+
* @summary Queries additional certificates.
|
|
16277
|
+
*
|
|
16278
|
+
* @param request DescribeDomainExtensionsRequest
|
|
16279
|
+
* @return DescribeDomainExtensionsResponse
|
|
16280
|
+
*/
|
|
15914
16281
|
async describeDomainExtensions(request: DescribeDomainExtensionsRequest): Promise<DescribeDomainExtensionsResponse> {
|
|
15915
16282
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15916
16283
|
return await this.describeDomainExtensionsWithOptions(request, runtime);
|
|
15917
16284
|
}
|
|
15918
16285
|
|
|
16286
|
+
/**
|
|
16287
|
+
* @summary Queries the health status of backend servers.
|
|
16288
|
+
*
|
|
16289
|
+
* @param request DescribeHealthStatusRequest
|
|
16290
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16291
|
+
* @return DescribeHealthStatusResponse
|
|
16292
|
+
*/
|
|
15919
16293
|
async describeHealthStatusWithOptions(request: DescribeHealthStatusRequest, runtime: $Util.RuntimeOptions): Promise<DescribeHealthStatusResponse> {
|
|
15920
16294
|
Util.validateModel(request);
|
|
15921
16295
|
let query = { };
|
|
@@ -15968,11 +16342,24 @@ export default class Client extends OpenApi {
|
|
|
15968
16342
|
return $tea.cast<DescribeHealthStatusResponse>(await this.callApi(params, req, runtime), new DescribeHealthStatusResponse({}));
|
|
15969
16343
|
}
|
|
15970
16344
|
|
|
16345
|
+
/**
|
|
16346
|
+
* @summary Queries the health status of backend servers.
|
|
16347
|
+
*
|
|
16348
|
+
* @param request DescribeHealthStatusRequest
|
|
16349
|
+
* @return DescribeHealthStatusResponse
|
|
16350
|
+
*/
|
|
15971
16351
|
async describeHealthStatus(request: DescribeHealthStatusRequest): Promise<DescribeHealthStatusResponse> {
|
|
15972
16352
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15973
16353
|
return await this.describeHealthStatusWithOptions(request, runtime);
|
|
15974
16354
|
}
|
|
15975
16355
|
|
|
16356
|
+
/**
|
|
16357
|
+
* @summary Queries the configurations of fine-grained monitoring in a region.
|
|
16358
|
+
*
|
|
16359
|
+
* @param request DescribeHighDefinationMonitorRequest
|
|
16360
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16361
|
+
* @return DescribeHighDefinationMonitorResponse
|
|
16362
|
+
*/
|
|
15976
16363
|
async describeHighDefinationMonitorWithOptions(request: DescribeHighDefinationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<DescribeHighDefinationMonitorResponse> {
|
|
15977
16364
|
Util.validateModel(request);
|
|
15978
16365
|
let query = { };
|
|
@@ -16017,11 +16404,24 @@ export default class Client extends OpenApi {
|
|
|
16017
16404
|
return $tea.cast<DescribeHighDefinationMonitorResponse>(await this.callApi(params, req, runtime), new DescribeHighDefinationMonitorResponse({}));
|
|
16018
16405
|
}
|
|
16019
16406
|
|
|
16407
|
+
/**
|
|
16408
|
+
* @summary Queries the configurations of fine-grained monitoring in a region.
|
|
16409
|
+
*
|
|
16410
|
+
* @param request DescribeHighDefinationMonitorRequest
|
|
16411
|
+
* @return DescribeHighDefinationMonitorResponse
|
|
16412
|
+
*/
|
|
16020
16413
|
async describeHighDefinationMonitor(request: DescribeHighDefinationMonitorRequest): Promise<DescribeHighDefinationMonitorResponse> {
|
|
16021
16414
|
let runtime = new $Util.RuntimeOptions({ });
|
|
16022
16415
|
return await this.describeHighDefinationMonitorWithOptions(request, runtime);
|
|
16023
16416
|
}
|
|
16024
16417
|
|
|
16418
|
+
/**
|
|
16419
|
+
* @summary Queries the whitelist configurations of a listener.
|
|
16420
|
+
*
|
|
16421
|
+
* @param request DescribeListenerAccessControlAttributeRequest
|
|
16422
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16423
|
+
* @return DescribeListenerAccessControlAttributeResponse
|
|
16424
|
+
*/
|
|
16025
16425
|
async describeListenerAccessControlAttributeWithOptions(request: DescribeListenerAccessControlAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeListenerAccessControlAttributeResponse> {
|
|
16026
16426
|
Util.validateModel(request);
|
|
16027
16427
|
let query = { };
|
|
@@ -16074,17 +16474,25 @@ export default class Client extends OpenApi {
|
|
|
16074
16474
|
return $tea.cast<DescribeListenerAccessControlAttributeResponse>(await this.callApi(params, req, runtime), new DescribeListenerAccessControlAttributeResponse({}));
|
|
16075
16475
|
}
|
|
16076
16476
|
|
|
16477
|
+
/**
|
|
16478
|
+
* @summary Queries the whitelist configurations of a listener.
|
|
16479
|
+
*
|
|
16480
|
+
* @param request DescribeListenerAccessControlAttributeRequest
|
|
16481
|
+
* @return DescribeListenerAccessControlAttributeResponse
|
|
16482
|
+
*/
|
|
16077
16483
|
async describeListenerAccessControlAttribute(request: DescribeListenerAccessControlAttributeRequest): Promise<DescribeListenerAccessControlAttributeResponse> {
|
|
16078
16484
|
let runtime = new $Util.RuntimeOptions({ });
|
|
16079
16485
|
return await this.describeListenerAccessControlAttributeWithOptions(request, runtime);
|
|
16080
16486
|
}
|
|
16081
16487
|
|
|
16082
16488
|
/**
|
|
16083
|
-
|
|
16084
|
-
|
|
16085
|
-
|
|
16086
|
-
|
|
16087
|
-
|
|
16489
|
+
* @summary Queries the detail of a Classic Load Balancer (CLB) instance.
|
|
16490
|
+
*
|
|
16491
|
+
* @description > If backend servers are deployed in a vServer group, you can call the [DescribeVServerGroupAttribute](https://help.aliyun.com/document_detail/35224.html) operation to query the backend servers.
|
|
16492
|
+
*
|
|
16493
|
+
* @param request DescribeLoadBalancerAttributeRequest
|
|
16494
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16495
|
+
* @return DescribeLoadBalancerAttributeResponse
|
|
16088
16496
|
*/
|
|
16089
16497
|
async describeLoadBalancerAttributeWithOptions(request: DescribeLoadBalancerAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLoadBalancerAttributeResponse> {
|
|
16090
16498
|
Util.validateModel(request);
|
|
@@ -16131,10 +16539,12 @@ export default class Client extends OpenApi {
|
|
|
16131
16539
|
}
|
|
16132
16540
|
|
|
16133
16541
|
/**
|
|
16134
|
-
|
|
16135
|
-
|
|
16136
|
-
|
|
16137
|
-
|
|
16542
|
+
* @summary Queries the detail of a Classic Load Balancer (CLB) instance.
|
|
16543
|
+
*
|
|
16544
|
+
* @description > If backend servers are deployed in a vServer group, you can call the [DescribeVServerGroupAttribute](https://help.aliyun.com/document_detail/35224.html) operation to query the backend servers.
|
|
16545
|
+
*
|
|
16546
|
+
* @param request DescribeLoadBalancerAttributeRequest
|
|
16547
|
+
* @return DescribeLoadBalancerAttributeResponse
|
|
16138
16548
|
*/
|
|
16139
16549
|
async describeLoadBalancerAttribute(request: DescribeLoadBalancerAttributeRequest): Promise<DescribeLoadBalancerAttributeResponse> {
|
|
16140
16550
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -16142,12 +16552,14 @@ export default class Client extends OpenApi {
|
|
|
16142
16552
|
}
|
|
16143
16553
|
|
|
16144
16554
|
/**
|
|
16145
|
-
|
|
16146
|
-
|
|
16147
|
-
|
|
16148
|
-
|
|
16149
|
-
|
|
16150
|
-
|
|
16555
|
+
* @summary Queries the configurations of an HTTP listener.
|
|
16556
|
+
*
|
|
16557
|
+
* @description * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
|
|
16558
|
+
* * An HTTP listener is created. For more information about how to create an HTTP listener, see [CreateLoadBalancerHTTPListener](https://help.aliyun.com/document_detail/27592.html).
|
|
16559
|
+
*
|
|
16560
|
+
* @param request DescribeLoadBalancerHTTPListenerAttributeRequest
|
|
16561
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16562
|
+
* @return DescribeLoadBalancerHTTPListenerAttributeResponse
|
|
16151
16563
|
*/
|
|
16152
16564
|
async describeLoadBalancerHTTPListenerAttributeWithOptions(request: DescribeLoadBalancerHTTPListenerAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLoadBalancerHTTPListenerAttributeResponse> {
|
|
16153
16565
|
Util.validateModel(request);
|
|
@@ -16198,11 +16610,13 @@ export default class Client extends OpenApi {
|
|
|
16198
16610
|
}
|
|
16199
16611
|
|
|
16200
16612
|
/**
|
|
16201
|
-
|
|
16202
|
-
|
|
16203
|
-
|
|
16204
|
-
|
|
16205
|
-
|
|
16613
|
+
* @summary Queries the configurations of an HTTP listener.
|
|
16614
|
+
*
|
|
16615
|
+
* @description * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
|
|
16616
|
+
* * An HTTP listener is created. For more information about how to create an HTTP listener, see [CreateLoadBalancerHTTPListener](https://help.aliyun.com/document_detail/27592.html).
|
|
16617
|
+
*
|
|
16618
|
+
* @param request DescribeLoadBalancerHTTPListenerAttributeRequest
|
|
16619
|
+
* @return DescribeLoadBalancerHTTPListenerAttributeResponse
|
|
16206
16620
|
*/
|
|
16207
16621
|
async describeLoadBalancerHTTPListenerAttribute(request: DescribeLoadBalancerHTTPListenerAttributeRequest): Promise<DescribeLoadBalancerHTTPListenerAttributeResponse> {
|
|
16208
16622
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -16210,12 +16624,14 @@ export default class Client extends OpenApi {
|
|
|
16210
16624
|
}
|
|
16211
16625
|
|
|
16212
16626
|
/**
|
|
16213
|
-
|
|
16214
|
-
|
|
16215
|
-
|
|
16216
|
-
|
|
16217
|
-
|
|
16218
|
-
|
|
16627
|
+
* @summary Queries the configurations of an HTTPS listener.
|
|
16628
|
+
*
|
|
16629
|
+
* @description * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
|
|
16630
|
+
* * An HTTPS listener is created. For more information about how to create an HTTPS listener, see [CreateLoadBalancerHTTPSListener](https://help.aliyun.com/document_detail/27593.html).
|
|
16631
|
+
*
|
|
16632
|
+
* @param request DescribeLoadBalancerHTTPSListenerAttributeRequest
|
|
16633
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16634
|
+
* @return DescribeLoadBalancerHTTPSListenerAttributeResponse
|
|
16219
16635
|
*/
|
|
16220
16636
|
async describeLoadBalancerHTTPSListenerAttributeWithOptions(request: DescribeLoadBalancerHTTPSListenerAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLoadBalancerHTTPSListenerAttributeResponse> {
|
|
16221
16637
|
Util.validateModel(request);
|
|
@@ -16266,11 +16682,13 @@ export default class Client extends OpenApi {
|
|
|
16266
16682
|
}
|
|
16267
16683
|
|
|
16268
16684
|
/**
|
|
16269
|
-
|
|
16270
|
-
|
|
16271
|
-
|
|
16272
|
-
|
|
16273
|
-
|
|
16685
|
+
* @summary Queries the configurations of an HTTPS listener.
|
|
16686
|
+
*
|
|
16687
|
+
* @description * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
|
|
16688
|
+
* * An HTTPS listener is created. For more information about how to create an HTTPS listener, see [CreateLoadBalancerHTTPSListener](https://help.aliyun.com/document_detail/27593.html).
|
|
16689
|
+
*
|
|
16690
|
+
* @param request DescribeLoadBalancerHTTPSListenerAttributeRequest
|
|
16691
|
+
* @return DescribeLoadBalancerHTTPSListenerAttributeResponse
|
|
16274
16692
|
*/
|
|
16275
16693
|
async describeLoadBalancerHTTPSListenerAttribute(request: DescribeLoadBalancerHTTPSListenerAttributeRequest): Promise<DescribeLoadBalancerHTTPSListenerAttributeResponse> {
|
|
16276
16694
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -16278,16 +16696,18 @@ export default class Client extends OpenApi {
|
|
|
16278
16696
|
}
|
|
16279
16697
|
|
|
16280
16698
|
/**
|
|
16281
|
-
|
|
16282
|
-
|
|
16283
|
-
|
|
16284
|
-
|
|
16285
|
-
|
|
16286
|
-
|
|
16287
|
-
|
|
16288
|
-
|
|
16289
|
-
|
|
16290
|
-
|
|
16699
|
+
* @summary Queries the listeners of a Classic Load Balancer (CLB) instance.
|
|
16700
|
+
*
|
|
16701
|
+
* @description * A CLB instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/2401685.html).
|
|
16702
|
+
* * One or more listeners are added to the CLB instance. For more information, see the following topics:
|
|
16703
|
+
* * [CreateLoadBalancerUDPListener](~~CreateLoadBalancerUDPListener~~)
|
|
16704
|
+
* * [CreateLoadBalancerTCPListener](~~CreateLoadBalancerTCPListener~~)
|
|
16705
|
+
* * [CreateLoadBalancerHTTPListener](~~CreateLoadBalancerHTTPListener~~)
|
|
16706
|
+
* * [CreateLoadBalancerHTTPSListener](~~CreateLoadBalancerHTTPSListener~~)
|
|
16707
|
+
*
|
|
16708
|
+
* @param request DescribeLoadBalancerListenersRequest
|
|
16709
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16710
|
+
* @return DescribeLoadBalancerListenersResponse
|
|
16291
16711
|
*/
|
|
16292
16712
|
async describeLoadBalancerListenersWithOptions(request: DescribeLoadBalancerListenersRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLoadBalancerListenersResponse> {
|
|
16293
16713
|
Util.validateModel(request);
|
|
@@ -16358,21 +16778,30 @@ export default class Client extends OpenApi {
|
|
|
16358
16778
|
}
|
|
16359
16779
|
|
|
16360
16780
|
/**
|
|
16361
|
-
|
|
16362
|
-
|
|
16363
|
-
|
|
16364
|
-
|
|
16365
|
-
|
|
16366
|
-
|
|
16367
|
-
|
|
16368
|
-
|
|
16369
|
-
|
|
16781
|
+
* @summary Queries the listeners of a Classic Load Balancer (CLB) instance.
|
|
16782
|
+
*
|
|
16783
|
+
* @description * A CLB instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/2401685.html).
|
|
16784
|
+
* * One or more listeners are added to the CLB instance. For more information, see the following topics:
|
|
16785
|
+
* * [CreateLoadBalancerUDPListener](~~CreateLoadBalancerUDPListener~~)
|
|
16786
|
+
* * [CreateLoadBalancerTCPListener](~~CreateLoadBalancerTCPListener~~)
|
|
16787
|
+
* * [CreateLoadBalancerHTTPListener](~~CreateLoadBalancerHTTPListener~~)
|
|
16788
|
+
* * [CreateLoadBalancerHTTPSListener](~~CreateLoadBalancerHTTPSListener~~)
|
|
16789
|
+
*
|
|
16790
|
+
* @param request DescribeLoadBalancerListenersRequest
|
|
16791
|
+
* @return DescribeLoadBalancerListenersResponse
|
|
16370
16792
|
*/
|
|
16371
16793
|
async describeLoadBalancerListeners(request: DescribeLoadBalancerListenersRequest): Promise<DescribeLoadBalancerListenersResponse> {
|
|
16372
16794
|
let runtime = new $Util.RuntimeOptions({ });
|
|
16373
16795
|
return await this.describeLoadBalancerListenersWithOptions(request, runtime);
|
|
16374
16796
|
}
|
|
16375
16797
|
|
|
16798
|
+
/**
|
|
16799
|
+
* @summary Queries the configurations of a TCP listener of Classic Load Balancer (CLB).
|
|
16800
|
+
*
|
|
16801
|
+
* @param request DescribeLoadBalancerTCPListenerAttributeRequest
|
|
16802
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16803
|
+
* @return DescribeLoadBalancerTCPListenerAttributeResponse
|
|
16804
|
+
*/
|
|
16376
16805
|
async describeLoadBalancerTCPListenerAttributeWithOptions(request: DescribeLoadBalancerTCPListenerAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLoadBalancerTCPListenerAttributeResponse> {
|
|
16377
16806
|
Util.validateModel(request);
|
|
16378
16807
|
let query = { };
|
|
@@ -16421,11 +16850,24 @@ export default class Client extends OpenApi {
|
|
|
16421
16850
|
return $tea.cast<DescribeLoadBalancerTCPListenerAttributeResponse>(await this.callApi(params, req, runtime), new DescribeLoadBalancerTCPListenerAttributeResponse({}));
|
|
16422
16851
|
}
|
|
16423
16852
|
|
|
16853
|
+
/**
|
|
16854
|
+
* @summary Queries the configurations of a TCP listener of Classic Load Balancer (CLB).
|
|
16855
|
+
*
|
|
16856
|
+
* @param request DescribeLoadBalancerTCPListenerAttributeRequest
|
|
16857
|
+
* @return DescribeLoadBalancerTCPListenerAttributeResponse
|
|
16858
|
+
*/
|
|
16424
16859
|
async describeLoadBalancerTCPListenerAttribute(request: DescribeLoadBalancerTCPListenerAttributeRequest): Promise<DescribeLoadBalancerTCPListenerAttributeResponse> {
|
|
16425
16860
|
let runtime = new $Util.RuntimeOptions({ });
|
|
16426
16861
|
return await this.describeLoadBalancerTCPListenerAttributeWithOptions(request, runtime);
|
|
16427
16862
|
}
|
|
16428
16863
|
|
|
16864
|
+
/**
|
|
16865
|
+
* @summary Queries the configurations of a UDP listener.
|
|
16866
|
+
*
|
|
16867
|
+
* @param request DescribeLoadBalancerUDPListenerAttributeRequest
|
|
16868
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16869
|
+
* @return DescribeLoadBalancerUDPListenerAttributeResponse
|
|
16870
|
+
*/
|
|
16429
16871
|
async describeLoadBalancerUDPListenerAttributeWithOptions(request: DescribeLoadBalancerUDPListenerAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLoadBalancerUDPListenerAttributeResponse> {
|
|
16430
16872
|
Util.validateModel(request);
|
|
16431
16873
|
let query = { };
|
|
@@ -16474,11 +16916,24 @@ export default class Client extends OpenApi {
|
|
|
16474
16916
|
return $tea.cast<DescribeLoadBalancerUDPListenerAttributeResponse>(await this.callApi(params, req, runtime), new DescribeLoadBalancerUDPListenerAttributeResponse({}));
|
|
16475
16917
|
}
|
|
16476
16918
|
|
|
16919
|
+
/**
|
|
16920
|
+
* @summary Queries the configurations of a UDP listener.
|
|
16921
|
+
*
|
|
16922
|
+
* @param request DescribeLoadBalancerUDPListenerAttributeRequest
|
|
16923
|
+
* @return DescribeLoadBalancerUDPListenerAttributeResponse
|
|
16924
|
+
*/
|
|
16477
16925
|
async describeLoadBalancerUDPListenerAttribute(request: DescribeLoadBalancerUDPListenerAttributeRequest): Promise<DescribeLoadBalancerUDPListenerAttributeResponse> {
|
|
16478
16926
|
let runtime = new $Util.RuntimeOptions({ });
|
|
16479
16927
|
return await this.describeLoadBalancerUDPListenerAttributeWithOptions(request, runtime);
|
|
16480
16928
|
}
|
|
16481
16929
|
|
|
16930
|
+
/**
|
|
16931
|
+
* @summary Queries Classic Load Balancer (CLB) instances.
|
|
16932
|
+
*
|
|
16933
|
+
* @param request DescribeLoadBalancersRequest
|
|
16934
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16935
|
+
* @return DescribeLoadBalancersResponse
|
|
16936
|
+
*/
|
|
16482
16937
|
async describeLoadBalancersWithOptions(request: DescribeLoadBalancersRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLoadBalancersResponse> {
|
|
16483
16938
|
Util.validateModel(request);
|
|
16484
16939
|
let query = { };
|
|
@@ -16599,11 +17054,24 @@ export default class Client extends OpenApi {
|
|
|
16599
17054
|
return $tea.cast<DescribeLoadBalancersResponse>(await this.callApi(params, req, runtime), new DescribeLoadBalancersResponse({}));
|
|
16600
17055
|
}
|
|
16601
17056
|
|
|
17057
|
+
/**
|
|
17058
|
+
* @summary Queries Classic Load Balancer (CLB) instances.
|
|
17059
|
+
*
|
|
17060
|
+
* @param request DescribeLoadBalancersRequest
|
|
17061
|
+
* @return DescribeLoadBalancersResponse
|
|
17062
|
+
*/
|
|
16602
17063
|
async describeLoadBalancers(request: DescribeLoadBalancersRequest): Promise<DescribeLoadBalancersResponse> {
|
|
16603
17064
|
let runtime = new $Util.RuntimeOptions({ });
|
|
16604
17065
|
return await this.describeLoadBalancersWithOptions(request, runtime);
|
|
16605
17066
|
}
|
|
16606
17067
|
|
|
17068
|
+
/**
|
|
17069
|
+
* @summary Queries the detailed information about a primary/secondary server group.
|
|
17070
|
+
*
|
|
17071
|
+
* @param request DescribeMasterSlaveServerGroupAttributeRequest
|
|
17072
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17073
|
+
* @return DescribeMasterSlaveServerGroupAttributeResponse
|
|
17074
|
+
*/
|
|
16607
17075
|
async describeMasterSlaveServerGroupAttributeWithOptions(request: DescribeMasterSlaveServerGroupAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeMasterSlaveServerGroupAttributeResponse> {
|
|
16608
17076
|
Util.validateModel(request);
|
|
16609
17077
|
let query = { };
|
|
@@ -16648,11 +17116,24 @@ export default class Client extends OpenApi {
|
|
|
16648
17116
|
return $tea.cast<DescribeMasterSlaveServerGroupAttributeResponse>(await this.callApi(params, req, runtime), new DescribeMasterSlaveServerGroupAttributeResponse({}));
|
|
16649
17117
|
}
|
|
16650
17118
|
|
|
17119
|
+
/**
|
|
17120
|
+
* @summary Queries the detailed information about a primary/secondary server group.
|
|
17121
|
+
*
|
|
17122
|
+
* @param request DescribeMasterSlaveServerGroupAttributeRequest
|
|
17123
|
+
* @return DescribeMasterSlaveServerGroupAttributeResponse
|
|
17124
|
+
*/
|
|
16651
17125
|
async describeMasterSlaveServerGroupAttribute(request: DescribeMasterSlaveServerGroupAttributeRequest): Promise<DescribeMasterSlaveServerGroupAttributeResponse> {
|
|
16652
17126
|
let runtime = new $Util.RuntimeOptions({ });
|
|
16653
17127
|
return await this.describeMasterSlaveServerGroupAttributeWithOptions(request, runtime);
|
|
16654
17128
|
}
|
|
16655
17129
|
|
|
17130
|
+
/**
|
|
17131
|
+
* @summary Queries primary/secondary server groups.
|
|
17132
|
+
*
|
|
17133
|
+
* @param request DescribeMasterSlaveServerGroupsRequest
|
|
17134
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17135
|
+
* @return DescribeMasterSlaveServerGroupsResponse
|
|
17136
|
+
*/
|
|
16656
17137
|
async describeMasterSlaveServerGroupsWithOptions(request: DescribeMasterSlaveServerGroupsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeMasterSlaveServerGroupsResponse> {
|
|
16657
17138
|
Util.validateModel(request);
|
|
16658
17139
|
let query = { };
|
|
@@ -16709,11 +17190,24 @@ export default class Client extends OpenApi {
|
|
|
16709
17190
|
return $tea.cast<DescribeMasterSlaveServerGroupsResponse>(await this.callApi(params, req, runtime), new DescribeMasterSlaveServerGroupsResponse({}));
|
|
16710
17191
|
}
|
|
16711
17192
|
|
|
17193
|
+
/**
|
|
17194
|
+
* @summary Queries primary/secondary server groups.
|
|
17195
|
+
*
|
|
17196
|
+
* @param request DescribeMasterSlaveServerGroupsRequest
|
|
17197
|
+
* @return DescribeMasterSlaveServerGroupsResponse
|
|
17198
|
+
*/
|
|
16712
17199
|
async describeMasterSlaveServerGroups(request: DescribeMasterSlaveServerGroupsRequest): Promise<DescribeMasterSlaveServerGroupsResponse> {
|
|
16713
17200
|
let runtime = new $Util.RuntimeOptions({ });
|
|
16714
17201
|
return await this.describeMasterSlaveServerGroupsWithOptions(request, runtime);
|
|
16715
17202
|
}
|
|
16716
17203
|
|
|
17204
|
+
/**
|
|
17205
|
+
* @summary Queries regions.
|
|
17206
|
+
*
|
|
17207
|
+
* @param request DescribeRegionsRequest
|
|
17208
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17209
|
+
* @return DescribeRegionsResponse
|
|
17210
|
+
*/
|
|
16717
17211
|
async describeRegionsWithOptions(request: DescribeRegionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse> {
|
|
16718
17212
|
Util.validateModel(request);
|
|
16719
17213
|
let query = { };
|
|
@@ -16758,11 +17252,24 @@ export default class Client extends OpenApi {
|
|
|
16758
17252
|
return $tea.cast<DescribeRegionsResponse>(await this.callApi(params, req, runtime), new DescribeRegionsResponse({}));
|
|
16759
17253
|
}
|
|
16760
17254
|
|
|
17255
|
+
/**
|
|
17256
|
+
* @summary Queries regions.
|
|
17257
|
+
*
|
|
17258
|
+
* @param request DescribeRegionsRequest
|
|
17259
|
+
* @return DescribeRegionsResponse
|
|
17260
|
+
*/
|
|
16761
17261
|
async describeRegions(request: DescribeRegionsRequest): Promise<DescribeRegionsResponse> {
|
|
16762
17262
|
let runtime = new $Util.RuntimeOptions({ });
|
|
16763
17263
|
return await this.describeRegionsWithOptions(request, runtime);
|
|
16764
17264
|
}
|
|
16765
17265
|
|
|
17266
|
+
/**
|
|
17267
|
+
* @summary Queries the configurations of a specified forwarding rule.
|
|
17268
|
+
*
|
|
17269
|
+
* @param request DescribeRuleAttributeRequest
|
|
17270
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17271
|
+
* @return DescribeRuleAttributeResponse
|
|
17272
|
+
*/
|
|
16766
17273
|
async describeRuleAttributeWithOptions(request: DescribeRuleAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRuleAttributeResponse> {
|
|
16767
17274
|
Util.validateModel(request);
|
|
16768
17275
|
let query = { };
|
|
@@ -16807,11 +17314,24 @@ export default class Client extends OpenApi {
|
|
|
16807
17314
|
return $tea.cast<DescribeRuleAttributeResponse>(await this.callApi(params, req, runtime), new DescribeRuleAttributeResponse({}));
|
|
16808
17315
|
}
|
|
16809
17316
|
|
|
17317
|
+
/**
|
|
17318
|
+
* @summary Queries the configurations of a specified forwarding rule.
|
|
17319
|
+
*
|
|
17320
|
+
* @param request DescribeRuleAttributeRequest
|
|
17321
|
+
* @return DescribeRuleAttributeResponse
|
|
17322
|
+
*/
|
|
16810
17323
|
async describeRuleAttribute(request: DescribeRuleAttributeRequest): Promise<DescribeRuleAttributeResponse> {
|
|
16811
17324
|
let runtime = new $Util.RuntimeOptions({ });
|
|
16812
17325
|
return await this.describeRuleAttributeWithOptions(request, runtime);
|
|
16813
17326
|
}
|
|
16814
17327
|
|
|
17328
|
+
/**
|
|
17329
|
+
* @summary Queries the forwarding rules that are configured for a specified listener.
|
|
17330
|
+
*
|
|
17331
|
+
* @param request DescribeRulesRequest
|
|
17332
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17333
|
+
* @return DescribeRulesResponse
|
|
17334
|
+
*/
|
|
16815
17335
|
async describeRulesWithOptions(request: DescribeRulesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRulesResponse> {
|
|
16816
17336
|
Util.validateModel(request);
|
|
16817
17337
|
let query = { };
|
|
@@ -16864,17 +17384,25 @@ export default class Client extends OpenApi {
|
|
|
16864
17384
|
return $tea.cast<DescribeRulesResponse>(await this.callApi(params, req, runtime), new DescribeRulesResponse({}));
|
|
16865
17385
|
}
|
|
16866
17386
|
|
|
17387
|
+
/**
|
|
17388
|
+
* @summary Queries the forwarding rules that are configured for a specified listener.
|
|
17389
|
+
*
|
|
17390
|
+
* @param request DescribeRulesRequest
|
|
17391
|
+
* @return DescribeRulesResponse
|
|
17392
|
+
*/
|
|
16867
17393
|
async describeRules(request: DescribeRulesRequest): Promise<DescribeRulesResponse> {
|
|
16868
17394
|
let runtime = new $Util.RuntimeOptions({ });
|
|
16869
17395
|
return await this.describeRulesWithOptions(request, runtime);
|
|
16870
17396
|
}
|
|
16871
17397
|
|
|
16872
17398
|
/**
|
|
16873
|
-
|
|
16874
|
-
|
|
16875
|
-
|
|
16876
|
-
|
|
16877
|
-
|
|
17399
|
+
* @summary Queries server certificates of Classic Load Balancer (CLB) instances in a specified region.
|
|
17400
|
+
*
|
|
17401
|
+
* @description > For security reasons, only fingerprints and names of the server certificates are returned. The content of the server certificates and private keys is not returned.
|
|
17402
|
+
*
|
|
17403
|
+
* @param request DescribeServerCertificatesRequest
|
|
17404
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17405
|
+
* @return DescribeServerCertificatesResponse
|
|
16878
17406
|
*/
|
|
16879
17407
|
async describeServerCertificatesWithOptions(request: DescribeServerCertificatesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeServerCertificatesResponse> {
|
|
16880
17408
|
Util.validateModel(request);
|
|
@@ -16929,10 +17457,12 @@ export default class Client extends OpenApi {
|
|
|
16929
17457
|
}
|
|
16930
17458
|
|
|
16931
17459
|
/**
|
|
16932
|
-
|
|
16933
|
-
|
|
16934
|
-
|
|
16935
|
-
|
|
17460
|
+
* @summary Queries server certificates of Classic Load Balancer (CLB) instances in a specified region.
|
|
17461
|
+
*
|
|
17462
|
+
* @description > For security reasons, only fingerprints and names of the server certificates are returned. The content of the server certificates and private keys is not returned.
|
|
17463
|
+
*
|
|
17464
|
+
* @param request DescribeServerCertificatesRequest
|
|
17465
|
+
* @return DescribeServerCertificatesResponse
|
|
16936
17466
|
*/
|
|
16937
17467
|
async describeServerCertificates(request: DescribeServerCertificatesRequest): Promise<DescribeServerCertificatesResponse> {
|
|
16938
17468
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -16940,16 +17470,18 @@ export default class Client extends OpenApi {
|
|
|
16940
17470
|
}
|
|
16941
17471
|
|
|
16942
17472
|
/**
|
|
16943
|
-
|
|
16944
|
-
|
|
16945
|
-
|
|
16946
|
-
|
|
16947
|
-
|
|
16948
|
-
|
|
16949
|
-
|
|
16950
|
-
|
|
16951
|
-
|
|
16952
|
-
|
|
17473
|
+
* @summary Queries tags.
|
|
17474
|
+
*
|
|
17475
|
+
* @description When you call this operation, take note of the following items:
|
|
17476
|
+
* * You can query tags by instance ID, tag key, and tag value. If the operation is successful, the system returns all tags that match the specified conditions.
|
|
17477
|
+
* * The logical relationship among the specified conditions is AND. Only tags that match all the specified conditions are returned.
|
|
17478
|
+
* * If the Tagkey parameter is set and the Tagvalue parameter is not set, all tags that contain the specified tag key are returned.
|
|
17479
|
+
* * If you set the Tagvalue parameter in a request, you must also set the Tagkey parameter in the request.
|
|
17480
|
+
* * If you set both the Tagkey and Tagvalue parameters, only tags that contain the specified keys and values are returned.
|
|
17481
|
+
*
|
|
17482
|
+
* @param request DescribeTagsRequest
|
|
17483
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17484
|
+
* @return DescribeTagsResponse
|
|
16953
17485
|
*/
|
|
16954
17486
|
async describeTagsWithOptions(request: DescribeTagsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeTagsResponse> {
|
|
16955
17487
|
Util.validateModel(request);
|
|
@@ -17012,21 +17544,30 @@ export default class Client extends OpenApi {
|
|
|
17012
17544
|
}
|
|
17013
17545
|
|
|
17014
17546
|
/**
|
|
17015
|
-
|
|
17016
|
-
|
|
17017
|
-
|
|
17018
|
-
|
|
17019
|
-
|
|
17020
|
-
|
|
17021
|
-
|
|
17022
|
-
|
|
17023
|
-
|
|
17547
|
+
* @summary Queries tags.
|
|
17548
|
+
*
|
|
17549
|
+
* @description When you call this operation, take note of the following items:
|
|
17550
|
+
* * You can query tags by instance ID, tag key, and tag value. If the operation is successful, the system returns all tags that match the specified conditions.
|
|
17551
|
+
* * The logical relationship among the specified conditions is AND. Only tags that match all the specified conditions are returned.
|
|
17552
|
+
* * If the Tagkey parameter is set and the Tagvalue parameter is not set, all tags that contain the specified tag key are returned.
|
|
17553
|
+
* * If you set the Tagvalue parameter in a request, you must also set the Tagkey parameter in the request.
|
|
17554
|
+
* * If you set both the Tagkey and Tagvalue parameters, only tags that contain the specified keys and values are returned.
|
|
17555
|
+
*
|
|
17556
|
+
* @param request DescribeTagsRequest
|
|
17557
|
+
* @return DescribeTagsResponse
|
|
17024
17558
|
*/
|
|
17025
17559
|
async describeTags(request: DescribeTagsRequest): Promise<DescribeTagsResponse> {
|
|
17026
17560
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17027
17561
|
return await this.describeTagsWithOptions(request, runtime);
|
|
17028
17562
|
}
|
|
17029
17563
|
|
|
17564
|
+
/**
|
|
17565
|
+
* @summary Queries detailed information about a vServer group.
|
|
17566
|
+
*
|
|
17567
|
+
* @param request DescribeVServerGroupAttributeRequest
|
|
17568
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17569
|
+
* @return DescribeVServerGroupAttributeResponse
|
|
17570
|
+
*/
|
|
17030
17571
|
async describeVServerGroupAttributeWithOptions(request: DescribeVServerGroupAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeVServerGroupAttributeResponse> {
|
|
17031
17572
|
Util.validateModel(request);
|
|
17032
17573
|
let query = { };
|
|
@@ -17071,11 +17612,24 @@ export default class Client extends OpenApi {
|
|
|
17071
17612
|
return $tea.cast<DescribeVServerGroupAttributeResponse>(await this.callApi(params, req, runtime), new DescribeVServerGroupAttributeResponse({}));
|
|
17072
17613
|
}
|
|
17073
17614
|
|
|
17615
|
+
/**
|
|
17616
|
+
* @summary Queries detailed information about a vServer group.
|
|
17617
|
+
*
|
|
17618
|
+
* @param request DescribeVServerGroupAttributeRequest
|
|
17619
|
+
* @return DescribeVServerGroupAttributeResponse
|
|
17620
|
+
*/
|
|
17074
17621
|
async describeVServerGroupAttribute(request: DescribeVServerGroupAttributeRequest): Promise<DescribeVServerGroupAttributeResponse> {
|
|
17075
17622
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17076
17623
|
return await this.describeVServerGroupAttributeWithOptions(request, runtime);
|
|
17077
17624
|
}
|
|
17078
17625
|
|
|
17626
|
+
/**
|
|
17627
|
+
* @summary Queries server groups.
|
|
17628
|
+
*
|
|
17629
|
+
* @param request DescribeVServerGroupsRequest
|
|
17630
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17631
|
+
* @return DescribeVServerGroupsResponse
|
|
17632
|
+
*/
|
|
17079
17633
|
async describeVServerGroupsWithOptions(request: DescribeVServerGroupsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeVServerGroupsResponse> {
|
|
17080
17634
|
Util.validateModel(request);
|
|
17081
17635
|
let query = { };
|
|
@@ -17136,11 +17690,24 @@ export default class Client extends OpenApi {
|
|
|
17136
17690
|
return $tea.cast<DescribeVServerGroupsResponse>(await this.callApi(params, req, runtime), new DescribeVServerGroupsResponse({}));
|
|
17137
17691
|
}
|
|
17138
17692
|
|
|
17693
|
+
/**
|
|
17694
|
+
* @summary Queries server groups.
|
|
17695
|
+
*
|
|
17696
|
+
* @param request DescribeVServerGroupsRequest
|
|
17697
|
+
* @return DescribeVServerGroupsResponse
|
|
17698
|
+
*/
|
|
17139
17699
|
async describeVServerGroups(request: DescribeVServerGroupsRequest): Promise<DescribeVServerGroupsResponse> {
|
|
17140
17700
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17141
17701
|
return await this.describeVServerGroupsWithOptions(request, runtime);
|
|
17142
17702
|
}
|
|
17143
17703
|
|
|
17704
|
+
/**
|
|
17705
|
+
* @summary Queries the zones in a region.
|
|
17706
|
+
*
|
|
17707
|
+
* @param request DescribeZonesRequest
|
|
17708
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17709
|
+
* @return DescribeZonesResponse
|
|
17710
|
+
*/
|
|
17144
17711
|
async describeZonesWithOptions(request: DescribeZonesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeZonesResponse> {
|
|
17145
17712
|
Util.validateModel(request);
|
|
17146
17713
|
let query = { };
|
|
@@ -17181,11 +17748,24 @@ export default class Client extends OpenApi {
|
|
|
17181
17748
|
return $tea.cast<DescribeZonesResponse>(await this.callApi(params, req, runtime), new DescribeZonesResponse({}));
|
|
17182
17749
|
}
|
|
17183
17750
|
|
|
17751
|
+
/**
|
|
17752
|
+
* @summary Queries the zones in a region.
|
|
17753
|
+
*
|
|
17754
|
+
* @param request DescribeZonesRequest
|
|
17755
|
+
* @return DescribeZonesResponse
|
|
17756
|
+
*/
|
|
17184
17757
|
async describeZones(request: DescribeZonesRequest): Promise<DescribeZonesResponse> {
|
|
17185
17758
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17186
17759
|
return await this.describeZonesWithOptions(request, runtime);
|
|
17187
17760
|
}
|
|
17188
17761
|
|
|
17762
|
+
/**
|
|
17763
|
+
* @summary Enables fine-grained monitoring for the current region.
|
|
17764
|
+
*
|
|
17765
|
+
* @param request EnableHighDefinationMonitorRequest
|
|
17766
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17767
|
+
* @return EnableHighDefinationMonitorResponse
|
|
17768
|
+
*/
|
|
17189
17769
|
async enableHighDefinationMonitorWithOptions(request: EnableHighDefinationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<EnableHighDefinationMonitorResponse> {
|
|
17190
17770
|
Util.validateModel(request);
|
|
17191
17771
|
let query = { };
|
|
@@ -17238,11 +17818,24 @@ export default class Client extends OpenApi {
|
|
|
17238
17818
|
return $tea.cast<EnableHighDefinationMonitorResponse>(await this.callApi(params, req, runtime), new EnableHighDefinationMonitorResponse({}));
|
|
17239
17819
|
}
|
|
17240
17820
|
|
|
17821
|
+
/**
|
|
17822
|
+
* @summary Enables fine-grained monitoring for the current region.
|
|
17823
|
+
*
|
|
17824
|
+
* @param request EnableHighDefinationMonitorRequest
|
|
17825
|
+
* @return EnableHighDefinationMonitorResponse
|
|
17826
|
+
*/
|
|
17241
17827
|
async enableHighDefinationMonitor(request: EnableHighDefinationMonitorRequest): Promise<EnableHighDefinationMonitorResponse> {
|
|
17242
17828
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17243
17829
|
return await this.enableHighDefinationMonitorWithOptions(request, runtime);
|
|
17244
17830
|
}
|
|
17245
17831
|
|
|
17832
|
+
/**
|
|
17833
|
+
* @summary Queries Transport Layer Security (TLS) policies.
|
|
17834
|
+
*
|
|
17835
|
+
* @param request ListTLSCipherPoliciesRequest
|
|
17836
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17837
|
+
* @return ListTLSCipherPoliciesResponse
|
|
17838
|
+
*/
|
|
17246
17839
|
async listTLSCipherPoliciesWithOptions(request: ListTLSCipherPoliciesRequest, runtime: $Util.RuntimeOptions): Promise<ListTLSCipherPoliciesResponse> {
|
|
17247
17840
|
Util.validateModel(request);
|
|
17248
17841
|
let query = { };
|
|
@@ -17303,20 +17896,28 @@ export default class Client extends OpenApi {
|
|
|
17303
17896
|
return $tea.cast<ListTLSCipherPoliciesResponse>(await this.callApi(params, req, runtime), new ListTLSCipherPoliciesResponse({}));
|
|
17304
17897
|
}
|
|
17305
17898
|
|
|
17899
|
+
/**
|
|
17900
|
+
* @summary Queries Transport Layer Security (TLS) policies.
|
|
17901
|
+
*
|
|
17902
|
+
* @param request ListTLSCipherPoliciesRequest
|
|
17903
|
+
* @return ListTLSCipherPoliciesResponse
|
|
17904
|
+
*/
|
|
17306
17905
|
async listTLSCipherPolicies(request: ListTLSCipherPoliciesRequest): Promise<ListTLSCipherPoliciesResponse> {
|
|
17307
17906
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17308
17907
|
return await this.listTLSCipherPoliciesWithOptions(request, runtime);
|
|
17309
17908
|
}
|
|
17310
17909
|
|
|
17311
17910
|
/**
|
|
17312
|
-
|
|
17313
|
-
|
|
17314
|
-
|
|
17315
|
-
|
|
17316
|
-
|
|
17317
|
-
|
|
17318
|
-
|
|
17319
|
-
|
|
17911
|
+
* @summary Queries tags that are added to one or more instances.
|
|
17912
|
+
*
|
|
17913
|
+
* @description * Set **ResourceId.N** or **Tag.N** that consists of **Tag.N.Key** and **Tag.N.Value** in the request to specify the object to be queried.
|
|
17914
|
+
* * **Tag.N** is a resource tag that consists of a key-value pair. If you set only **Tag.N.Key**, all tag values that are associated with the specified tag key are returned. If you set only **Tag.N.Value**, an error message is returned.
|
|
17915
|
+
* * If you set **Tag.N** and **ResourceId.N** to filter tags, **ResourceId.N** must match all specified key-value pairs.
|
|
17916
|
+
* * If you specify multiple key-value pairs, resources that contain these key-value pairs are returned.
|
|
17917
|
+
*
|
|
17918
|
+
* @param request ListTagResourcesRequest
|
|
17919
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17920
|
+
* @return ListTagResourcesResponse
|
|
17320
17921
|
*/
|
|
17321
17922
|
async listTagResourcesWithOptions(request: ListTagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<ListTagResourcesResponse> {
|
|
17322
17923
|
Util.validateModel(request);
|
|
@@ -17375,19 +17976,28 @@ export default class Client extends OpenApi {
|
|
|
17375
17976
|
}
|
|
17376
17977
|
|
|
17377
17978
|
/**
|
|
17378
|
-
|
|
17379
|
-
|
|
17380
|
-
|
|
17381
|
-
|
|
17382
|
-
|
|
17383
|
-
|
|
17384
|
-
|
|
17979
|
+
* @summary Queries tags that are added to one or more instances.
|
|
17980
|
+
*
|
|
17981
|
+
* @description * Set **ResourceId.N** or **Tag.N** that consists of **Tag.N.Key** and **Tag.N.Value** in the request to specify the object to be queried.
|
|
17982
|
+
* * **Tag.N** is a resource tag that consists of a key-value pair. If you set only **Tag.N.Key**, all tag values that are associated with the specified tag key are returned. If you set only **Tag.N.Value**, an error message is returned.
|
|
17983
|
+
* * If you set **Tag.N** and **ResourceId.N** to filter tags, **ResourceId.N** must match all specified key-value pairs.
|
|
17984
|
+
* * If you specify multiple key-value pairs, resources that contain these key-value pairs are returned.
|
|
17985
|
+
*
|
|
17986
|
+
* @param request ListTagResourcesRequest
|
|
17987
|
+
* @return ListTagResourcesResponse
|
|
17385
17988
|
*/
|
|
17386
17989
|
async listTagResources(request: ListTagResourcesRequest): Promise<ListTagResourcesResponse> {
|
|
17387
17990
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17388
17991
|
return await this.listTagResourcesWithOptions(request, runtime);
|
|
17389
17992
|
}
|
|
17390
17993
|
|
|
17994
|
+
/**
|
|
17995
|
+
* @summary Modifies the configuration of fine-grained monitoring in a specified region.
|
|
17996
|
+
*
|
|
17997
|
+
* @param request ModifyHighDefinationMonitorRequest
|
|
17998
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17999
|
+
* @return ModifyHighDefinationMonitorResponse
|
|
18000
|
+
*/
|
|
17391
18001
|
async modifyHighDefinationMonitorWithOptions(request: ModifyHighDefinationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<ModifyHighDefinationMonitorResponse> {
|
|
17392
18002
|
Util.validateModel(request);
|
|
17393
18003
|
let query = { };
|
|
@@ -17436,18 +18046,26 @@ export default class Client extends OpenApi {
|
|
|
17436
18046
|
return $tea.cast<ModifyHighDefinationMonitorResponse>(await this.callApi(params, req, runtime), new ModifyHighDefinationMonitorResponse({}));
|
|
17437
18047
|
}
|
|
17438
18048
|
|
|
18049
|
+
/**
|
|
18050
|
+
* @summary Modifies the configuration of fine-grained monitoring in a specified region.
|
|
18051
|
+
*
|
|
18052
|
+
* @param request ModifyHighDefinationMonitorRequest
|
|
18053
|
+
* @return ModifyHighDefinationMonitorResponse
|
|
18054
|
+
*/
|
|
17439
18055
|
async modifyHighDefinationMonitor(request: ModifyHighDefinationMonitorRequest): Promise<ModifyHighDefinationMonitorResponse> {
|
|
17440
18056
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17441
18057
|
return await this.modifyHighDefinationMonitorWithOptions(request, runtime);
|
|
17442
18058
|
}
|
|
17443
18059
|
|
|
17444
18060
|
/**
|
|
17445
|
-
|
|
17446
|
-
|
|
17447
|
-
|
|
17448
|
-
|
|
17449
|
-
|
|
17450
|
-
|
|
18061
|
+
* @summary Changes the metering method of a pay-as-you-go Classic Load Balancer (CLB) instance.
|
|
18062
|
+
*
|
|
18063
|
+
* @description > * For pay-as-you-go CLB instances, you can only change the metering method from pay-by-specification to pay-by-LCU. You cannot change the metering method from pay-by-LCU to pay-by-specification.
|
|
18064
|
+
* >* This operation can change the metering method of only one instance at a time.
|
|
18065
|
+
*
|
|
18066
|
+
* @param request ModifyLoadBalancerInstanceChargeTypeRequest
|
|
18067
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18068
|
+
* @return ModifyLoadBalancerInstanceChargeTypeResponse
|
|
17451
18069
|
*/
|
|
17452
18070
|
async modifyLoadBalancerInstanceChargeTypeWithOptions(request: ModifyLoadBalancerInstanceChargeTypeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyLoadBalancerInstanceChargeTypeResponse> {
|
|
17453
18071
|
Util.validateModel(request);
|
|
@@ -17510,17 +18128,26 @@ export default class Client extends OpenApi {
|
|
|
17510
18128
|
}
|
|
17511
18129
|
|
|
17512
18130
|
/**
|
|
17513
|
-
|
|
17514
|
-
|
|
17515
|
-
|
|
17516
|
-
|
|
17517
|
-
|
|
18131
|
+
* @summary Changes the metering method of a pay-as-you-go Classic Load Balancer (CLB) instance.
|
|
18132
|
+
*
|
|
18133
|
+
* @description > * For pay-as-you-go CLB instances, you can only change the metering method from pay-by-specification to pay-by-LCU. You cannot change the metering method from pay-by-LCU to pay-by-specification.
|
|
18134
|
+
* >* This operation can change the metering method of only one instance at a time.
|
|
18135
|
+
*
|
|
18136
|
+
* @param request ModifyLoadBalancerInstanceChargeTypeRequest
|
|
18137
|
+
* @return ModifyLoadBalancerInstanceChargeTypeResponse
|
|
17518
18138
|
*/
|
|
17519
18139
|
async modifyLoadBalancerInstanceChargeType(request: ModifyLoadBalancerInstanceChargeTypeRequest): Promise<ModifyLoadBalancerInstanceChargeTypeResponse> {
|
|
17520
18140
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17521
18141
|
return await this.modifyLoadBalancerInstanceChargeTypeWithOptions(request, runtime);
|
|
17522
18142
|
}
|
|
17523
18143
|
|
|
18144
|
+
/**
|
|
18145
|
+
* @summary Modifies the specification of a Classic Load Balancer (CLB) instance.
|
|
18146
|
+
*
|
|
18147
|
+
* @param request ModifyLoadBalancerInstanceSpecRequest
|
|
18148
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18149
|
+
* @return ModifyLoadBalancerInstanceSpecResponse
|
|
18150
|
+
*/
|
|
17524
18151
|
async modifyLoadBalancerInstanceSpecWithOptions(request: ModifyLoadBalancerInstanceSpecRequest, runtime: $Util.RuntimeOptions): Promise<ModifyLoadBalancerInstanceSpecResponse> {
|
|
17525
18152
|
Util.validateModel(request);
|
|
17526
18153
|
let query = { };
|
|
@@ -17573,19 +18200,27 @@ export default class Client extends OpenApi {
|
|
|
17573
18200
|
return $tea.cast<ModifyLoadBalancerInstanceSpecResponse>(await this.callApi(params, req, runtime), new ModifyLoadBalancerInstanceSpecResponse({}));
|
|
17574
18201
|
}
|
|
17575
18202
|
|
|
18203
|
+
/**
|
|
18204
|
+
* @summary Modifies the specification of a Classic Load Balancer (CLB) instance.
|
|
18205
|
+
*
|
|
18206
|
+
* @param request ModifyLoadBalancerInstanceSpecRequest
|
|
18207
|
+
* @return ModifyLoadBalancerInstanceSpecResponse
|
|
18208
|
+
*/
|
|
17576
18209
|
async modifyLoadBalancerInstanceSpec(request: ModifyLoadBalancerInstanceSpecRequest): Promise<ModifyLoadBalancerInstanceSpecResponse> {
|
|
17577
18210
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17578
18211
|
return await this.modifyLoadBalancerInstanceSpecWithOptions(request, runtime);
|
|
17579
18212
|
}
|
|
17580
18213
|
|
|
17581
18214
|
/**
|
|
17582
|
-
|
|
17583
|
-
|
|
17584
|
-
|
|
17585
|
-
|
|
17586
|
-
|
|
17587
|
-
|
|
17588
|
-
|
|
18215
|
+
* @summary Modifies the metering method of an Internet-facing Classic Load Balancer (CLB) instance.
|
|
18216
|
+
*
|
|
18217
|
+
* @description ## Description
|
|
18218
|
+
* * If you modify only the maximum bandwidth of a pay-by-bandwidth CLB instance, the new bandwidth immediately takes effect.
|
|
18219
|
+
* * If you modify the metering method (for example, switch from pay-by-bandwidth to pay-by-data-transfer), the new metering method and the other changes specified in the operation take effect at 00:00:00 the next day.
|
|
18220
|
+
*
|
|
18221
|
+
* @param request ModifyLoadBalancerInternetSpecRequest
|
|
18222
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18223
|
+
* @return ModifyLoadBalancerInternetSpecResponse
|
|
17589
18224
|
*/
|
|
17590
18225
|
async modifyLoadBalancerInternetSpecWithOptions(request: ModifyLoadBalancerInternetSpecRequest, runtime: $Util.RuntimeOptions): Promise<ModifyLoadBalancerInternetSpecResponse> {
|
|
17591
18226
|
Util.validateModel(request);
|
|
@@ -17644,18 +18279,27 @@ export default class Client extends OpenApi {
|
|
|
17644
18279
|
}
|
|
17645
18280
|
|
|
17646
18281
|
/**
|
|
17647
|
-
|
|
17648
|
-
|
|
17649
|
-
|
|
17650
|
-
|
|
17651
|
-
|
|
17652
|
-
|
|
18282
|
+
* @summary Modifies the metering method of an Internet-facing Classic Load Balancer (CLB) instance.
|
|
18283
|
+
*
|
|
18284
|
+
* @description ## Description
|
|
18285
|
+
* * If you modify only the maximum bandwidth of a pay-by-bandwidth CLB instance, the new bandwidth immediately takes effect.
|
|
18286
|
+
* * If you modify the metering method (for example, switch from pay-by-bandwidth to pay-by-data-transfer), the new metering method and the other changes specified in the operation take effect at 00:00:00 the next day.
|
|
18287
|
+
*
|
|
18288
|
+
* @param request ModifyLoadBalancerInternetSpecRequest
|
|
18289
|
+
* @return ModifyLoadBalancerInternetSpecResponse
|
|
17653
18290
|
*/
|
|
17654
18291
|
async modifyLoadBalancerInternetSpec(request: ModifyLoadBalancerInternetSpecRequest): Promise<ModifyLoadBalancerInternetSpecResponse> {
|
|
17655
18292
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17656
18293
|
return await this.modifyLoadBalancerInternetSpecWithOptions(request, runtime);
|
|
17657
18294
|
}
|
|
17658
18295
|
|
|
18296
|
+
/**
|
|
18297
|
+
* @summary Changes the billing method of a Classic Load Balancer (CLB) instance from pay-as-you-go to subscription.
|
|
18298
|
+
*
|
|
18299
|
+
* @param request ModifyLoadBalancerPayTypeRequest
|
|
18300
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18301
|
+
* @return ModifyLoadBalancerPayTypeResponse
|
|
18302
|
+
*/
|
|
17659
18303
|
async modifyLoadBalancerPayTypeWithOptions(request: ModifyLoadBalancerPayTypeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyLoadBalancerPayTypeResponse> {
|
|
17660
18304
|
Util.validateModel(request);
|
|
17661
18305
|
let query = { };
|
|
@@ -17716,17 +18360,25 @@ export default class Client extends OpenApi {
|
|
|
17716
18360
|
return $tea.cast<ModifyLoadBalancerPayTypeResponse>(await this.callApi(params, req, runtime), new ModifyLoadBalancerPayTypeResponse({}));
|
|
17717
18361
|
}
|
|
17718
18362
|
|
|
18363
|
+
/**
|
|
18364
|
+
* @summary Changes the billing method of a Classic Load Balancer (CLB) instance from pay-as-you-go to subscription.
|
|
18365
|
+
*
|
|
18366
|
+
* @param request ModifyLoadBalancerPayTypeRequest
|
|
18367
|
+
* @return ModifyLoadBalancerPayTypeResponse
|
|
18368
|
+
*/
|
|
17719
18369
|
async modifyLoadBalancerPayType(request: ModifyLoadBalancerPayTypeRequest): Promise<ModifyLoadBalancerPayTypeResponse> {
|
|
17720
18370
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17721
18371
|
return await this.modifyLoadBalancerPayTypeWithOptions(request, runtime);
|
|
17722
18372
|
}
|
|
17723
18373
|
|
|
17724
18374
|
/**
|
|
17725
|
-
|
|
17726
|
-
|
|
17727
|
-
|
|
17728
|
-
|
|
17729
|
-
|
|
18375
|
+
* @summary Replaces backend servers in a specified vServer group.
|
|
18376
|
+
*
|
|
18377
|
+
* @description You can call this operation to replace the backend servers in a specified vServer group. To modify the configurations of the backend servers, such as their weights, you can call the [SetVServerGroupAttribute](https://help.aliyun.com/document_detail/35217.html) operation.
|
|
18378
|
+
*
|
|
18379
|
+
* @param request ModifyVServerGroupBackendServersRequest
|
|
18380
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18381
|
+
* @return ModifyVServerGroupBackendServersResponse
|
|
17730
18382
|
*/
|
|
17731
18383
|
async modifyVServerGroupBackendServersWithOptions(request: ModifyVServerGroupBackendServersRequest, runtime: $Util.RuntimeOptions): Promise<ModifyVServerGroupBackendServersResponse> {
|
|
17732
18384
|
Util.validateModel(request);
|
|
@@ -17781,16 +18433,25 @@ export default class Client extends OpenApi {
|
|
|
17781
18433
|
}
|
|
17782
18434
|
|
|
17783
18435
|
/**
|
|
17784
|
-
|
|
17785
|
-
|
|
17786
|
-
|
|
17787
|
-
|
|
18436
|
+
* @summary Replaces backend servers in a specified vServer group.
|
|
18437
|
+
*
|
|
18438
|
+
* @description You can call this operation to replace the backend servers in a specified vServer group. To modify the configurations of the backend servers, such as their weights, you can call the [SetVServerGroupAttribute](https://help.aliyun.com/document_detail/35217.html) operation.
|
|
18439
|
+
*
|
|
18440
|
+
* @param request ModifyVServerGroupBackendServersRequest
|
|
18441
|
+
* @return ModifyVServerGroupBackendServersResponse
|
|
17788
18442
|
*/
|
|
17789
18443
|
async modifyVServerGroupBackendServers(request: ModifyVServerGroupBackendServersRequest): Promise<ModifyVServerGroupBackendServersResponse> {
|
|
17790
18444
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17791
18445
|
return await this.modifyVServerGroupBackendServersWithOptions(request, runtime);
|
|
17792
18446
|
}
|
|
17793
18447
|
|
|
18448
|
+
/**
|
|
18449
|
+
* @summary Moves a resource to another resource group.
|
|
18450
|
+
*
|
|
18451
|
+
* @param request MoveResourceGroupRequest
|
|
18452
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18453
|
+
* @return MoveResourceGroupResponse
|
|
18454
|
+
*/
|
|
17794
18455
|
async moveResourceGroupWithOptions(request: MoveResourceGroupRequest, runtime: $Util.RuntimeOptions): Promise<MoveResourceGroupResponse> {
|
|
17795
18456
|
Util.validateModel(request);
|
|
17796
18457
|
let query = { };
|
|
@@ -17851,11 +18512,24 @@ export default class Client extends OpenApi {
|
|
|
17851
18512
|
return $tea.cast<MoveResourceGroupResponse>(await this.callApi(params, req, runtime), new MoveResourceGroupResponse({}));
|
|
17852
18513
|
}
|
|
17853
18514
|
|
|
18515
|
+
/**
|
|
18516
|
+
* @summary Moves a resource to another resource group.
|
|
18517
|
+
*
|
|
18518
|
+
* @param request MoveResourceGroupRequest
|
|
18519
|
+
* @return MoveResourceGroupResponse
|
|
18520
|
+
*/
|
|
17854
18521
|
async moveResourceGroup(request: MoveResourceGroupRequest): Promise<MoveResourceGroupResponse> {
|
|
17855
18522
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17856
18523
|
return await this.moveResourceGroupWithOptions(request, runtime);
|
|
17857
18524
|
}
|
|
17858
18525
|
|
|
18526
|
+
/**
|
|
18527
|
+
* @summary Removes IP entries from the network access control list (ACL) of a Classic Load Balancer (CLB) instance.
|
|
18528
|
+
*
|
|
18529
|
+
* @param request RemoveAccessControlListEntryRequest
|
|
18530
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18531
|
+
* @return RemoveAccessControlListEntryResponse
|
|
18532
|
+
*/
|
|
17859
18533
|
async removeAccessControlListEntryWithOptions(request: RemoveAccessControlListEntryRequest, runtime: $Util.RuntimeOptions): Promise<RemoveAccessControlListEntryResponse> {
|
|
17860
18534
|
Util.validateModel(request);
|
|
17861
18535
|
let query = { };
|
|
@@ -17904,17 +18578,25 @@ export default class Client extends OpenApi {
|
|
|
17904
18578
|
return $tea.cast<RemoveAccessControlListEntryResponse>(await this.callApi(params, req, runtime), new RemoveAccessControlListEntryResponse({}));
|
|
17905
18579
|
}
|
|
17906
18580
|
|
|
18581
|
+
/**
|
|
18582
|
+
* @summary Removes IP entries from the network access control list (ACL) of a Classic Load Balancer (CLB) instance.
|
|
18583
|
+
*
|
|
18584
|
+
* @param request RemoveAccessControlListEntryRequest
|
|
18585
|
+
* @return RemoveAccessControlListEntryResponse
|
|
18586
|
+
*/
|
|
17907
18587
|
async removeAccessControlListEntry(request: RemoveAccessControlListEntryRequest): Promise<RemoveAccessControlListEntryResponse> {
|
|
17908
18588
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17909
18589
|
return await this.removeAccessControlListEntryWithOptions(request, runtime);
|
|
17910
18590
|
}
|
|
17911
18591
|
|
|
17912
18592
|
/**
|
|
17913
|
-
|
|
17914
|
-
|
|
17915
|
-
|
|
17916
|
-
|
|
17917
|
-
|
|
18593
|
+
* @summary Removes backend servers.
|
|
18594
|
+
*
|
|
18595
|
+
* @description > If the backend servers that you want to remove are not in the server list of the Classic Load Balancer (CLB) instance, the request fails. However, the system does not report an error.
|
|
18596
|
+
*
|
|
18597
|
+
* @param request RemoveBackendServersRequest
|
|
18598
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18599
|
+
* @return RemoveBackendServersResponse
|
|
17918
18600
|
*/
|
|
17919
18601
|
async removeBackendServersWithOptions(request: RemoveBackendServersRequest, runtime: $Util.RuntimeOptions): Promise<RemoveBackendServersResponse> {
|
|
17920
18602
|
Util.validateModel(request);
|
|
@@ -17965,16 +18647,25 @@ export default class Client extends OpenApi {
|
|
|
17965
18647
|
}
|
|
17966
18648
|
|
|
17967
18649
|
/**
|
|
17968
|
-
|
|
17969
|
-
|
|
17970
|
-
|
|
17971
|
-
|
|
18650
|
+
* @summary Removes backend servers.
|
|
18651
|
+
*
|
|
18652
|
+
* @description > If the backend servers that you want to remove are not in the server list of the Classic Load Balancer (CLB) instance, the request fails. However, the system does not report an error.
|
|
18653
|
+
*
|
|
18654
|
+
* @param request RemoveBackendServersRequest
|
|
18655
|
+
* @return RemoveBackendServersResponse
|
|
17972
18656
|
*/
|
|
17973
18657
|
async removeBackendServers(request: RemoveBackendServersRequest): Promise<RemoveBackendServersResponse> {
|
|
17974
18658
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17975
18659
|
return await this.removeBackendServersWithOptions(request, runtime);
|
|
17976
18660
|
}
|
|
17977
18661
|
|
|
18662
|
+
/**
|
|
18663
|
+
* @summary Removes IP addresses or CIDR blocks from the whitelist of a listener.
|
|
18664
|
+
*
|
|
18665
|
+
* @param request RemoveListenerWhiteListItemRequest
|
|
18666
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18667
|
+
* @return RemoveListenerWhiteListItemResponse
|
|
18668
|
+
*/
|
|
17978
18669
|
async removeListenerWhiteListItemWithOptions(request: RemoveListenerWhiteListItemRequest, runtime: $Util.RuntimeOptions): Promise<RemoveListenerWhiteListItemResponse> {
|
|
17979
18670
|
Util.validateModel(request);
|
|
17980
18671
|
let query = { };
|
|
@@ -18031,11 +18722,22 @@ export default class Client extends OpenApi {
|
|
|
18031
18722
|
return $tea.cast<RemoveListenerWhiteListItemResponse>(await this.callApi(params, req, runtime), new RemoveListenerWhiteListItemResponse({}));
|
|
18032
18723
|
}
|
|
18033
18724
|
|
|
18725
|
+
/**
|
|
18726
|
+
* @summary Removes IP addresses or CIDR blocks from the whitelist of a listener.
|
|
18727
|
+
*
|
|
18728
|
+
* @param request RemoveListenerWhiteListItemRequest
|
|
18729
|
+
* @return RemoveListenerWhiteListItemResponse
|
|
18730
|
+
*/
|
|
18034
18731
|
async removeListenerWhiteListItem(request: RemoveListenerWhiteListItemRequest): Promise<RemoveListenerWhiteListItemResponse> {
|
|
18035
18732
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18036
18733
|
return await this.removeListenerWhiteListItemWithOptions(request, runtime);
|
|
18037
18734
|
}
|
|
18038
18735
|
|
|
18736
|
+
/**
|
|
18737
|
+
* @param request RemoveTagsRequest
|
|
18738
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18739
|
+
* @return RemoveTagsResponse
|
|
18740
|
+
*/
|
|
18039
18741
|
async removeTagsWithOptions(request: RemoveTagsRequest, runtime: $Util.RuntimeOptions): Promise<RemoveTagsResponse> {
|
|
18040
18742
|
Util.validateModel(request);
|
|
18041
18743
|
let query = { };
|
|
@@ -18084,17 +18786,23 @@ export default class Client extends OpenApi {
|
|
|
18084
18786
|
return $tea.cast<RemoveTagsResponse>(await this.callApi(params, req, runtime), new RemoveTagsResponse({}));
|
|
18085
18787
|
}
|
|
18086
18788
|
|
|
18789
|
+
/**
|
|
18790
|
+
* @param request RemoveTagsRequest
|
|
18791
|
+
* @return RemoveTagsResponse
|
|
18792
|
+
*/
|
|
18087
18793
|
async removeTags(request: RemoveTagsRequest): Promise<RemoveTagsResponse> {
|
|
18088
18794
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18089
18795
|
return await this.removeTagsWithOptions(request, runtime);
|
|
18090
18796
|
}
|
|
18091
18797
|
|
|
18092
18798
|
/**
|
|
18093
|
-
|
|
18094
|
-
|
|
18095
|
-
|
|
18096
|
-
|
|
18097
|
-
|
|
18799
|
+
* @summary Removes one or more backend servers from a specified vServer group.
|
|
18800
|
+
*
|
|
18801
|
+
* @description > If one or more backend servers specified by the **BackendServers** parameter do not exist in the specified vServer group, these backend servers are ignored and no error message is returned.
|
|
18802
|
+
*
|
|
18803
|
+
* @param request RemoveVServerGroupBackendServersRequest
|
|
18804
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18805
|
+
* @return RemoveVServerGroupBackendServersResponse
|
|
18098
18806
|
*/
|
|
18099
18807
|
async removeVServerGroupBackendServersWithOptions(request: RemoveVServerGroupBackendServersRequest, runtime: $Util.RuntimeOptions): Promise<RemoveVServerGroupBackendServersResponse> {
|
|
18100
18808
|
Util.validateModel(request);
|
|
@@ -18145,16 +18853,25 @@ export default class Client extends OpenApi {
|
|
|
18145
18853
|
}
|
|
18146
18854
|
|
|
18147
18855
|
/**
|
|
18148
|
-
|
|
18149
|
-
|
|
18150
|
-
|
|
18151
|
-
|
|
18856
|
+
* @summary Removes one or more backend servers from a specified vServer group.
|
|
18857
|
+
*
|
|
18858
|
+
* @description > If one or more backend servers specified by the **BackendServers** parameter do not exist in the specified vServer group, these backend servers are ignored and no error message is returned.
|
|
18859
|
+
*
|
|
18860
|
+
* @param request RemoveVServerGroupBackendServersRequest
|
|
18861
|
+
* @return RemoveVServerGroupBackendServersResponse
|
|
18152
18862
|
*/
|
|
18153
18863
|
async removeVServerGroupBackendServers(request: RemoveVServerGroupBackendServersRequest): Promise<RemoveVServerGroupBackendServersResponse> {
|
|
18154
18864
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18155
18865
|
return await this.removeVServerGroupBackendServersWithOptions(request, runtime);
|
|
18156
18866
|
}
|
|
18157
18867
|
|
|
18868
|
+
/**
|
|
18869
|
+
* @summary Modifies the name of a network access control list (ACL).
|
|
18870
|
+
*
|
|
18871
|
+
* @param request SetAccessControlListAttributeRequest
|
|
18872
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18873
|
+
* @return SetAccessControlListAttributeResponse
|
|
18874
|
+
*/
|
|
18158
18875
|
async setAccessControlListAttributeWithOptions(request: SetAccessControlListAttributeRequest, runtime: $Util.RuntimeOptions): Promise<SetAccessControlListAttributeResponse> {
|
|
18159
18876
|
Util.validateModel(request);
|
|
18160
18877
|
let query = { };
|
|
@@ -18203,11 +18920,24 @@ export default class Client extends OpenApi {
|
|
|
18203
18920
|
return $tea.cast<SetAccessControlListAttributeResponse>(await this.callApi(params, req, runtime), new SetAccessControlListAttributeResponse({}));
|
|
18204
18921
|
}
|
|
18205
18922
|
|
|
18923
|
+
/**
|
|
18924
|
+
* @summary Modifies the name of a network access control list (ACL).
|
|
18925
|
+
*
|
|
18926
|
+
* @param request SetAccessControlListAttributeRequest
|
|
18927
|
+
* @return SetAccessControlListAttributeResponse
|
|
18928
|
+
*/
|
|
18206
18929
|
async setAccessControlListAttribute(request: SetAccessControlListAttributeRequest): Promise<SetAccessControlListAttributeResponse> {
|
|
18207
18930
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18208
18931
|
return await this.setAccessControlListAttributeWithOptions(request, runtime);
|
|
18209
18932
|
}
|
|
18210
18933
|
|
|
18934
|
+
/**
|
|
18935
|
+
* @summary Adds an access log forwarding rule for a Classic Load Balancer (CLB) instance.
|
|
18936
|
+
*
|
|
18937
|
+
* @param request SetAccessLogsDownloadAttributeRequest
|
|
18938
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18939
|
+
* @return SetAccessLogsDownloadAttributeResponse
|
|
18940
|
+
*/
|
|
18211
18941
|
async setAccessLogsDownloadAttributeWithOptions(request: SetAccessLogsDownloadAttributeRequest, runtime: $Util.RuntimeOptions): Promise<SetAccessLogsDownloadAttributeResponse> {
|
|
18212
18942
|
Util.validateModel(request);
|
|
18213
18943
|
let query = { };
|
|
@@ -18260,11 +18990,24 @@ export default class Client extends OpenApi {
|
|
|
18260
18990
|
return $tea.cast<SetAccessLogsDownloadAttributeResponse>(await this.callApi(params, req, runtime), new SetAccessLogsDownloadAttributeResponse({}));
|
|
18261
18991
|
}
|
|
18262
18992
|
|
|
18993
|
+
/**
|
|
18994
|
+
* @summary Adds an access log forwarding rule for a Classic Load Balancer (CLB) instance.
|
|
18995
|
+
*
|
|
18996
|
+
* @param request SetAccessLogsDownloadAttributeRequest
|
|
18997
|
+
* @return SetAccessLogsDownloadAttributeResponse
|
|
18998
|
+
*/
|
|
18263
18999
|
async setAccessLogsDownloadAttribute(request: SetAccessLogsDownloadAttributeRequest): Promise<SetAccessLogsDownloadAttributeResponse> {
|
|
18264
19000
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18265
19001
|
return await this.setAccessLogsDownloadAttributeWithOptions(request, runtime);
|
|
18266
19002
|
}
|
|
18267
19003
|
|
|
19004
|
+
/**
|
|
19005
|
+
* @summary Sets the weights of backend servers.
|
|
19006
|
+
*
|
|
19007
|
+
* @param request SetBackendServersRequest
|
|
19008
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19009
|
+
* @return SetBackendServersResponse
|
|
19010
|
+
*/
|
|
18268
19011
|
async setBackendServersWithOptions(request: SetBackendServersRequest, runtime: $Util.RuntimeOptions): Promise<SetBackendServersResponse> {
|
|
18269
19012
|
Util.validateModel(request);
|
|
18270
19013
|
let query = { };
|
|
@@ -18313,11 +19056,24 @@ export default class Client extends OpenApi {
|
|
|
18313
19056
|
return $tea.cast<SetBackendServersResponse>(await this.callApi(params, req, runtime), new SetBackendServersResponse({}));
|
|
18314
19057
|
}
|
|
18315
19058
|
|
|
19059
|
+
/**
|
|
19060
|
+
* @summary Sets the weights of backend servers.
|
|
19061
|
+
*
|
|
19062
|
+
* @param request SetBackendServersRequest
|
|
19063
|
+
* @return SetBackendServersResponse
|
|
19064
|
+
*/
|
|
18316
19065
|
async setBackendServers(request: SetBackendServersRequest): Promise<SetBackendServersResponse> {
|
|
18317
19066
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18318
19067
|
return await this.setBackendServersWithOptions(request, runtime);
|
|
18319
19068
|
}
|
|
18320
19069
|
|
|
19070
|
+
/**
|
|
19071
|
+
* @summary Sets the name of a CA Certificate.
|
|
19072
|
+
*
|
|
19073
|
+
* @param request SetCACertificateNameRequest
|
|
19074
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19075
|
+
* @return SetCACertificateNameResponse
|
|
19076
|
+
*/
|
|
18321
19077
|
async setCACertificateNameWithOptions(request: SetCACertificateNameRequest, runtime: $Util.RuntimeOptions): Promise<SetCACertificateNameResponse> {
|
|
18322
19078
|
Util.validateModel(request);
|
|
18323
19079
|
let query = { };
|
|
@@ -18366,17 +19122,25 @@ export default class Client extends OpenApi {
|
|
|
18366
19122
|
return $tea.cast<SetCACertificateNameResponse>(await this.callApi(params, req, runtime), new SetCACertificateNameResponse({}));
|
|
18367
19123
|
}
|
|
18368
19124
|
|
|
19125
|
+
/**
|
|
19126
|
+
* @summary Sets the name of a CA Certificate.
|
|
19127
|
+
*
|
|
19128
|
+
* @param request SetCACertificateNameRequest
|
|
19129
|
+
* @return SetCACertificateNameResponse
|
|
19130
|
+
*/
|
|
18369
19131
|
async setCACertificateName(request: SetCACertificateNameRequest): Promise<SetCACertificateNameResponse> {
|
|
18370
19132
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18371
19133
|
return await this.setCACertificateNameWithOptions(request, runtime);
|
|
18372
19134
|
}
|
|
18373
19135
|
|
|
18374
19136
|
/**
|
|
18375
|
-
|
|
18376
|
-
|
|
18377
|
-
|
|
18378
|
-
|
|
18379
|
-
|
|
19137
|
+
* @summary Replaces an additional certificate.
|
|
19138
|
+
*
|
|
19139
|
+
* @description > You cannot replace an additional certificate for a listener that is added to a shared-resource Server Load Balancer (SLB) instance.
|
|
19140
|
+
*
|
|
19141
|
+
* @param request SetDomainExtensionAttributeRequest
|
|
19142
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19143
|
+
* @return SetDomainExtensionAttributeResponse
|
|
18380
19144
|
*/
|
|
18381
19145
|
async setDomainExtensionAttributeWithOptions(request: SetDomainExtensionAttributeRequest, runtime: $Util.RuntimeOptions): Promise<SetDomainExtensionAttributeResponse> {
|
|
18382
19146
|
Util.validateModel(request);
|
|
@@ -18427,16 +19191,25 @@ export default class Client extends OpenApi {
|
|
|
18427
19191
|
}
|
|
18428
19192
|
|
|
18429
19193
|
/**
|
|
18430
|
-
|
|
18431
|
-
|
|
18432
|
-
|
|
18433
|
-
|
|
19194
|
+
* @summary Replaces an additional certificate.
|
|
19195
|
+
*
|
|
19196
|
+
* @description > You cannot replace an additional certificate for a listener that is added to a shared-resource Server Load Balancer (SLB) instance.
|
|
19197
|
+
*
|
|
19198
|
+
* @param request SetDomainExtensionAttributeRequest
|
|
19199
|
+
* @return SetDomainExtensionAttributeResponse
|
|
18434
19200
|
*/
|
|
18435
19201
|
async setDomainExtensionAttribute(request: SetDomainExtensionAttributeRequest): Promise<SetDomainExtensionAttributeResponse> {
|
|
18436
19202
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18437
19203
|
return await this.setDomainExtensionAttributeWithOptions(request, runtime);
|
|
18438
19204
|
}
|
|
18439
19205
|
|
|
19206
|
+
/**
|
|
19207
|
+
* @summary Enables or disables the whitelist of a specified listener.
|
|
19208
|
+
*
|
|
19209
|
+
* @param request SetListenerAccessControlStatusRequest
|
|
19210
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19211
|
+
* @return SetListenerAccessControlStatusResponse
|
|
19212
|
+
*/
|
|
18440
19213
|
async setListenerAccessControlStatusWithOptions(request: SetListenerAccessControlStatusRequest, runtime: $Util.RuntimeOptions): Promise<SetListenerAccessControlStatusResponse> {
|
|
18441
19214
|
Util.validateModel(request);
|
|
18442
19215
|
let query = { };
|
|
@@ -18493,11 +19266,24 @@ export default class Client extends OpenApi {
|
|
|
18493
19266
|
return $tea.cast<SetListenerAccessControlStatusResponse>(await this.callApi(params, req, runtime), new SetListenerAccessControlStatusResponse({}));
|
|
18494
19267
|
}
|
|
18495
19268
|
|
|
19269
|
+
/**
|
|
19270
|
+
* @summary Enables or disables the whitelist of a specified listener.
|
|
19271
|
+
*
|
|
19272
|
+
* @param request SetListenerAccessControlStatusRequest
|
|
19273
|
+
* @return SetListenerAccessControlStatusResponse
|
|
19274
|
+
*/
|
|
18496
19275
|
async setListenerAccessControlStatus(request: SetListenerAccessControlStatusRequest): Promise<SetListenerAccessControlStatusResponse> {
|
|
18497
19276
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18498
19277
|
return await this.setListenerAccessControlStatusWithOptions(request, runtime);
|
|
18499
19278
|
}
|
|
18500
19279
|
|
|
19280
|
+
/**
|
|
19281
|
+
* @summary Enables or disables deletion protection for an SLB instance.
|
|
19282
|
+
*
|
|
19283
|
+
* @param request SetLoadBalancerDeleteProtectionRequest
|
|
19284
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19285
|
+
* @return SetLoadBalancerDeleteProtectionResponse
|
|
19286
|
+
*/
|
|
18501
19287
|
async setLoadBalancerDeleteProtectionWithOptions(request: SetLoadBalancerDeleteProtectionRequest, runtime: $Util.RuntimeOptions): Promise<SetLoadBalancerDeleteProtectionResponse> {
|
|
18502
19288
|
Util.validateModel(request);
|
|
18503
19289
|
let query = { };
|
|
@@ -18546,19 +19332,27 @@ export default class Client extends OpenApi {
|
|
|
18546
19332
|
return $tea.cast<SetLoadBalancerDeleteProtectionResponse>(await this.callApi(params, req, runtime), new SetLoadBalancerDeleteProtectionResponse({}));
|
|
18547
19333
|
}
|
|
18548
19334
|
|
|
19335
|
+
/**
|
|
19336
|
+
* @summary Enables or disables deletion protection for an SLB instance.
|
|
19337
|
+
*
|
|
19338
|
+
* @param request SetLoadBalancerDeleteProtectionRequest
|
|
19339
|
+
* @return SetLoadBalancerDeleteProtectionResponse
|
|
19340
|
+
*/
|
|
18549
19341
|
async setLoadBalancerDeleteProtection(request: SetLoadBalancerDeleteProtectionRequest): Promise<SetLoadBalancerDeleteProtectionResponse> {
|
|
18550
19342
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18551
19343
|
return await this.setLoadBalancerDeleteProtectionWithOptions(request, runtime);
|
|
18552
19344
|
}
|
|
18553
19345
|
|
|
18554
19346
|
/**
|
|
18555
|
-
|
|
18556
|
-
|
|
18557
|
-
|
|
18558
|
-
|
|
18559
|
-
|
|
18560
|
-
|
|
18561
|
-
|
|
19347
|
+
* @summary Modifies the configurations of an HTTP listener.
|
|
19348
|
+
*
|
|
19349
|
+
* @description ### Prerequisites
|
|
19350
|
+
* * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
|
|
19351
|
+
* * An HTTP listener is created. For more information about how to create an HTTP listener, see [CreateLoadBalancerHTTPListener](https://help.aliyun.com/document_detail/27592.html).
|
|
19352
|
+
*
|
|
19353
|
+
* @param request SetLoadBalancerHTTPListenerAttributeRequest
|
|
19354
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19355
|
+
* @return SetLoadBalancerHTTPListenerAttributeResponse
|
|
18562
19356
|
*/
|
|
18563
19357
|
async setLoadBalancerHTTPListenerAttributeWithOptions(request: SetLoadBalancerHTTPListenerAttributeRequest, runtime: $Util.RuntimeOptions): Promise<SetLoadBalancerHTTPListenerAttributeResponse> {
|
|
18564
19358
|
Util.validateModel(request);
|
|
@@ -18733,12 +19527,14 @@ export default class Client extends OpenApi {
|
|
|
18733
19527
|
}
|
|
18734
19528
|
|
|
18735
19529
|
/**
|
|
18736
|
-
|
|
18737
|
-
|
|
18738
|
-
|
|
18739
|
-
|
|
18740
|
-
|
|
18741
|
-
|
|
19530
|
+
* @summary Modifies the configurations of an HTTP listener.
|
|
19531
|
+
*
|
|
19532
|
+
* @description ### Prerequisites
|
|
19533
|
+
* * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
|
|
19534
|
+
* * An HTTP listener is created. For more information about how to create an HTTP listener, see [CreateLoadBalancerHTTPListener](https://help.aliyun.com/document_detail/27592.html).
|
|
19535
|
+
*
|
|
19536
|
+
* @param request SetLoadBalancerHTTPListenerAttributeRequest
|
|
19537
|
+
* @return SetLoadBalancerHTTPListenerAttributeResponse
|
|
18742
19538
|
*/
|
|
18743
19539
|
async setLoadBalancerHTTPListenerAttribute(request: SetLoadBalancerHTTPListenerAttributeRequest): Promise<SetLoadBalancerHTTPListenerAttributeResponse> {
|
|
18744
19540
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -18746,12 +19542,14 @@ export default class Client extends OpenApi {
|
|
|
18746
19542
|
}
|
|
18747
19543
|
|
|
18748
19544
|
/**
|
|
18749
|
-
|
|
18750
|
-
|
|
18751
|
-
|
|
18752
|
-
|
|
18753
|
-
|
|
18754
|
-
|
|
19545
|
+
* @summary Modifies the configurations of an HTTPS listener.
|
|
19546
|
+
*
|
|
19547
|
+
* @description * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
|
|
19548
|
+
* * An HTTPS listener is created. For more information about how to create an HTTPS listener, see [CreateLoadBalancerHTTPSListener](https://help.aliyun.com/document_detail/27593.html).
|
|
19549
|
+
*
|
|
19550
|
+
* @param request SetLoadBalancerHTTPSListenerAttributeRequest
|
|
19551
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19552
|
+
* @return SetLoadBalancerHTTPSListenerAttributeResponse
|
|
18755
19553
|
*/
|
|
18756
19554
|
async setLoadBalancerHTTPSListenerAttributeWithOptions(request: SetLoadBalancerHTTPSListenerAttributeRequest, runtime: $Util.RuntimeOptions): Promise<SetLoadBalancerHTTPSListenerAttributeResponse> {
|
|
18757
19555
|
Util.validateModel(request);
|
|
@@ -18942,17 +19740,26 @@ export default class Client extends OpenApi {
|
|
|
18942
19740
|
}
|
|
18943
19741
|
|
|
18944
19742
|
/**
|
|
18945
|
-
|
|
18946
|
-
|
|
18947
|
-
|
|
18948
|
-
|
|
18949
|
-
|
|
19743
|
+
* @summary Modifies the configurations of an HTTPS listener.
|
|
19744
|
+
*
|
|
19745
|
+
* @description * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
|
|
19746
|
+
* * An HTTPS listener is created. For more information about how to create an HTTPS listener, see [CreateLoadBalancerHTTPSListener](https://help.aliyun.com/document_detail/27593.html).
|
|
19747
|
+
*
|
|
19748
|
+
* @param request SetLoadBalancerHTTPSListenerAttributeRequest
|
|
19749
|
+
* @return SetLoadBalancerHTTPSListenerAttributeResponse
|
|
18950
19750
|
*/
|
|
18951
19751
|
async setLoadBalancerHTTPSListenerAttribute(request: SetLoadBalancerHTTPSListenerAttributeRequest): Promise<SetLoadBalancerHTTPSListenerAttributeResponse> {
|
|
18952
19752
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18953
19753
|
return await this.setLoadBalancerHTTPSListenerAttributeWithOptions(request, runtime);
|
|
18954
19754
|
}
|
|
18955
19755
|
|
|
19756
|
+
/**
|
|
19757
|
+
* @summary Modifies the configuration of the configuration read-only mode for a Classic Load Balancer (CLB) instance.
|
|
19758
|
+
*
|
|
19759
|
+
* @param request SetLoadBalancerModificationProtectionRequest
|
|
19760
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19761
|
+
* @return SetLoadBalancerModificationProtectionResponse
|
|
19762
|
+
*/
|
|
18956
19763
|
async setLoadBalancerModificationProtectionWithOptions(request: SetLoadBalancerModificationProtectionRequest, runtime: $Util.RuntimeOptions): Promise<SetLoadBalancerModificationProtectionResponse> {
|
|
18957
19764
|
Util.validateModel(request);
|
|
18958
19765
|
let query = { };
|
|
@@ -19005,11 +19812,24 @@ export default class Client extends OpenApi {
|
|
|
19005
19812
|
return $tea.cast<SetLoadBalancerModificationProtectionResponse>(await this.callApi(params, req, runtime), new SetLoadBalancerModificationProtectionResponse({}));
|
|
19006
19813
|
}
|
|
19007
19814
|
|
|
19815
|
+
/**
|
|
19816
|
+
* @summary Modifies the configuration of the configuration read-only mode for a Classic Load Balancer (CLB) instance.
|
|
19817
|
+
*
|
|
19818
|
+
* @param request SetLoadBalancerModificationProtectionRequest
|
|
19819
|
+
* @return SetLoadBalancerModificationProtectionResponse
|
|
19820
|
+
*/
|
|
19008
19821
|
async setLoadBalancerModificationProtection(request: SetLoadBalancerModificationProtectionRequest): Promise<SetLoadBalancerModificationProtectionResponse> {
|
|
19009
19822
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19010
19823
|
return await this.setLoadBalancerModificationProtectionWithOptions(request, runtime);
|
|
19011
19824
|
}
|
|
19012
19825
|
|
|
19826
|
+
/**
|
|
19827
|
+
* @summary Modifies the name of a Classic Load Balancer (CLB) instance.
|
|
19828
|
+
*
|
|
19829
|
+
* @param request SetLoadBalancerNameRequest
|
|
19830
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19831
|
+
* @return SetLoadBalancerNameResponse
|
|
19832
|
+
*/
|
|
19013
19833
|
async setLoadBalancerNameWithOptions(request: SetLoadBalancerNameRequest, runtime: $Util.RuntimeOptions): Promise<SetLoadBalancerNameResponse> {
|
|
19014
19834
|
Util.validateModel(request);
|
|
19015
19835
|
let query = { };
|
|
@@ -19058,11 +19878,24 @@ export default class Client extends OpenApi {
|
|
|
19058
19878
|
return $tea.cast<SetLoadBalancerNameResponse>(await this.callApi(params, req, runtime), new SetLoadBalancerNameResponse({}));
|
|
19059
19879
|
}
|
|
19060
19880
|
|
|
19881
|
+
/**
|
|
19882
|
+
* @summary Modifies the name of a Classic Load Balancer (CLB) instance.
|
|
19883
|
+
*
|
|
19884
|
+
* @param request SetLoadBalancerNameRequest
|
|
19885
|
+
* @return SetLoadBalancerNameResponse
|
|
19886
|
+
*/
|
|
19061
19887
|
async setLoadBalancerName(request: SetLoadBalancerNameRequest): Promise<SetLoadBalancerNameResponse> {
|
|
19062
19888
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19063
19889
|
return await this.setLoadBalancerNameWithOptions(request, runtime);
|
|
19064
19890
|
}
|
|
19065
19891
|
|
|
19892
|
+
/**
|
|
19893
|
+
* @summary Modifies the state of a Classic Load Balancer (CLB) instance.
|
|
19894
|
+
*
|
|
19895
|
+
* @param request SetLoadBalancerStatusRequest
|
|
19896
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19897
|
+
* @return SetLoadBalancerStatusResponse
|
|
19898
|
+
*/
|
|
19066
19899
|
async setLoadBalancerStatusWithOptions(request: SetLoadBalancerStatusRequest, runtime: $Util.RuntimeOptions): Promise<SetLoadBalancerStatusResponse> {
|
|
19067
19900
|
Util.validateModel(request);
|
|
19068
19901
|
let query = { };
|
|
@@ -19111,18 +19944,26 @@ export default class Client extends OpenApi {
|
|
|
19111
19944
|
return $tea.cast<SetLoadBalancerStatusResponse>(await this.callApi(params, req, runtime), new SetLoadBalancerStatusResponse({}));
|
|
19112
19945
|
}
|
|
19113
19946
|
|
|
19947
|
+
/**
|
|
19948
|
+
* @summary Modifies the state of a Classic Load Balancer (CLB) instance.
|
|
19949
|
+
*
|
|
19950
|
+
* @param request SetLoadBalancerStatusRequest
|
|
19951
|
+
* @return SetLoadBalancerStatusResponse
|
|
19952
|
+
*/
|
|
19114
19953
|
async setLoadBalancerStatus(request: SetLoadBalancerStatusRequest): Promise<SetLoadBalancerStatusResponse> {
|
|
19115
19954
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19116
19955
|
return await this.setLoadBalancerStatusWithOptions(request, runtime);
|
|
19117
19956
|
}
|
|
19118
19957
|
|
|
19119
19958
|
/**
|
|
19120
|
-
|
|
19121
|
-
|
|
19122
|
-
|
|
19123
|
-
|
|
19124
|
-
|
|
19125
|
-
|
|
19959
|
+
* @summary Modifies the configurations of a TCP listener of Classic Load Balancer (CLB).
|
|
19960
|
+
*
|
|
19961
|
+
* @description * A CLB instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/2401685.html).
|
|
19962
|
+
* * A TCP listener is created. For more information, see [CreateLoadBalancerTCPListener](~~CreateLoadBalancerTCPListener~~).
|
|
19963
|
+
*
|
|
19964
|
+
* @param request SetLoadBalancerTCPListenerAttributeRequest
|
|
19965
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19966
|
+
* @return SetLoadBalancerTCPListenerAttributeResponse
|
|
19126
19967
|
*/
|
|
19127
19968
|
async setLoadBalancerTCPListenerAttributeWithOptions(request: SetLoadBalancerTCPListenerAttributeRequest, runtime: $Util.RuntimeOptions): Promise<SetLoadBalancerTCPListenerAttributeResponse> {
|
|
19128
19969
|
Util.validateModel(request);
|
|
@@ -19277,11 +20118,13 @@ export default class Client extends OpenApi {
|
|
|
19277
20118
|
}
|
|
19278
20119
|
|
|
19279
20120
|
/**
|
|
19280
|
-
|
|
19281
|
-
|
|
19282
|
-
|
|
19283
|
-
|
|
19284
|
-
|
|
20121
|
+
* @summary Modifies the configurations of a TCP listener of Classic Load Balancer (CLB).
|
|
20122
|
+
*
|
|
20123
|
+
* @description * A CLB instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/2401685.html).
|
|
20124
|
+
* * A TCP listener is created. For more information, see [CreateLoadBalancerTCPListener](~~CreateLoadBalancerTCPListener~~).
|
|
20125
|
+
*
|
|
20126
|
+
* @param request SetLoadBalancerTCPListenerAttributeRequest
|
|
20127
|
+
* @return SetLoadBalancerTCPListenerAttributeResponse
|
|
19285
20128
|
*/
|
|
19286
20129
|
async setLoadBalancerTCPListenerAttribute(request: SetLoadBalancerTCPListenerAttributeRequest): Promise<SetLoadBalancerTCPListenerAttributeResponse> {
|
|
19287
20130
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -19289,12 +20132,14 @@ export default class Client extends OpenApi {
|
|
|
19289
20132
|
}
|
|
19290
20133
|
|
|
19291
20134
|
/**
|
|
19292
|
-
|
|
19293
|
-
|
|
19294
|
-
|
|
19295
|
-
|
|
19296
|
-
|
|
19297
|
-
|
|
20135
|
+
* @summary Modifies the configurations of a UDP listener.
|
|
20136
|
+
*
|
|
20137
|
+
* @description * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
|
|
20138
|
+
* * A UDP listener is created. For more information, see [CreateLoadBalancerUDPListener](https://help.aliyun.com/document_detail/27595.html).
|
|
20139
|
+
*
|
|
20140
|
+
* @param request SetLoadBalancerUDPListenerAttributeRequest
|
|
20141
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20142
|
+
* @return SetLoadBalancerUDPListenerAttributeResponse
|
|
19298
20143
|
*/
|
|
19299
20144
|
async setLoadBalancerUDPListenerAttributeWithOptions(request: SetLoadBalancerUDPListenerAttributeRequest, runtime: $Util.RuntimeOptions): Promise<SetLoadBalancerUDPListenerAttributeResponse> {
|
|
19300
20145
|
Util.validateModel(request);
|
|
@@ -19421,17 +20266,26 @@ export default class Client extends OpenApi {
|
|
|
19421
20266
|
}
|
|
19422
20267
|
|
|
19423
20268
|
/**
|
|
19424
|
-
|
|
19425
|
-
|
|
19426
|
-
|
|
19427
|
-
|
|
19428
|
-
|
|
20269
|
+
* @summary Modifies the configurations of a UDP listener.
|
|
20270
|
+
*
|
|
20271
|
+
* @description * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
|
|
20272
|
+
* * A UDP listener is created. For more information, see [CreateLoadBalancerUDPListener](https://help.aliyun.com/document_detail/27595.html).
|
|
20273
|
+
*
|
|
20274
|
+
* @param request SetLoadBalancerUDPListenerAttributeRequest
|
|
20275
|
+
* @return SetLoadBalancerUDPListenerAttributeResponse
|
|
19429
20276
|
*/
|
|
19430
20277
|
async setLoadBalancerUDPListenerAttribute(request: SetLoadBalancerUDPListenerAttributeRequest): Promise<SetLoadBalancerUDPListenerAttributeResponse> {
|
|
19431
20278
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19432
20279
|
return await this.setLoadBalancerUDPListenerAttributeWithOptions(request, runtime);
|
|
19433
20280
|
}
|
|
19434
20281
|
|
|
20282
|
+
/**
|
|
20283
|
+
* @summary Modifies a forwarding rule that is associated with a vServer group.
|
|
20284
|
+
*
|
|
20285
|
+
* @param request SetRuleRequest
|
|
20286
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20287
|
+
* @return SetRuleResponse
|
|
20288
|
+
*/
|
|
19435
20289
|
async setRuleWithOptions(request: SetRuleRequest, runtime: $Util.RuntimeOptions): Promise<SetRuleResponse> {
|
|
19436
20290
|
Util.validateModel(request);
|
|
19437
20291
|
let query = { };
|
|
@@ -19544,11 +20398,24 @@ export default class Client extends OpenApi {
|
|
|
19544
20398
|
return $tea.cast<SetRuleResponse>(await this.callApi(params, req, runtime), new SetRuleResponse({}));
|
|
19545
20399
|
}
|
|
19546
20400
|
|
|
20401
|
+
/**
|
|
20402
|
+
* @summary Modifies a forwarding rule that is associated with a vServer group.
|
|
20403
|
+
*
|
|
20404
|
+
* @param request SetRuleRequest
|
|
20405
|
+
* @return SetRuleResponse
|
|
20406
|
+
*/
|
|
19547
20407
|
async setRule(request: SetRuleRequest): Promise<SetRuleResponse> {
|
|
19548
20408
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19549
20409
|
return await this.setRuleWithOptions(request, runtime);
|
|
19550
20410
|
}
|
|
19551
20411
|
|
|
20412
|
+
/**
|
|
20413
|
+
* @summary Sets a name for a server certificate.
|
|
20414
|
+
*
|
|
20415
|
+
* @param request SetServerCertificateNameRequest
|
|
20416
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20417
|
+
* @return SetServerCertificateNameResponse
|
|
20418
|
+
*/
|
|
19552
20419
|
async setServerCertificateNameWithOptions(request: SetServerCertificateNameRequest, runtime: $Util.RuntimeOptions): Promise<SetServerCertificateNameResponse> {
|
|
19553
20420
|
Util.validateModel(request);
|
|
19554
20421
|
let query = { };
|
|
@@ -19597,11 +20464,24 @@ export default class Client extends OpenApi {
|
|
|
19597
20464
|
return $tea.cast<SetServerCertificateNameResponse>(await this.callApi(params, req, runtime), new SetServerCertificateNameResponse({}));
|
|
19598
20465
|
}
|
|
19599
20466
|
|
|
20467
|
+
/**
|
|
20468
|
+
* @summary Sets a name for a server certificate.
|
|
20469
|
+
*
|
|
20470
|
+
* @param request SetServerCertificateNameRequest
|
|
20471
|
+
* @return SetServerCertificateNameResponse
|
|
20472
|
+
*/
|
|
19600
20473
|
async setServerCertificateName(request: SetServerCertificateNameRequest): Promise<SetServerCertificateNameResponse> {
|
|
19601
20474
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19602
20475
|
return await this.setServerCertificateNameWithOptions(request, runtime);
|
|
19603
20476
|
}
|
|
19604
20477
|
|
|
20478
|
+
/**
|
|
20479
|
+
* @summary Configures a Transport Layer Security (TLS) policy.
|
|
20480
|
+
*
|
|
20481
|
+
* @param request SetTLSCipherPolicyAttributeRequest
|
|
20482
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20483
|
+
* @return SetTLSCipherPolicyAttributeResponse
|
|
20484
|
+
*/
|
|
19605
20485
|
async setTLSCipherPolicyAttributeWithOptions(request: SetTLSCipherPolicyAttributeRequest, runtime: $Util.RuntimeOptions): Promise<SetTLSCipherPolicyAttributeResponse> {
|
|
19606
20486
|
Util.validateModel(request);
|
|
19607
20487
|
let query = { };
|
|
@@ -19658,19 +20538,27 @@ export default class Client extends OpenApi {
|
|
|
19658
20538
|
return $tea.cast<SetTLSCipherPolicyAttributeResponse>(await this.callApi(params, req, runtime), new SetTLSCipherPolicyAttributeResponse({}));
|
|
19659
20539
|
}
|
|
19660
20540
|
|
|
20541
|
+
/**
|
|
20542
|
+
* @summary Configures a Transport Layer Security (TLS) policy.
|
|
20543
|
+
*
|
|
20544
|
+
* @param request SetTLSCipherPolicyAttributeRequest
|
|
20545
|
+
* @return SetTLSCipherPolicyAttributeResponse
|
|
20546
|
+
*/
|
|
19661
20547
|
async setTLSCipherPolicyAttribute(request: SetTLSCipherPolicyAttributeRequest): Promise<SetTLSCipherPolicyAttributeResponse> {
|
|
19662
20548
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19663
20549
|
return await this.setTLSCipherPolicyAttributeWithOptions(request, runtime);
|
|
19664
20550
|
}
|
|
19665
20551
|
|
|
19666
20552
|
/**
|
|
19667
|
-
|
|
19668
|
-
|
|
19669
|
-
|
|
19670
|
-
|
|
19671
|
-
|
|
19672
|
-
|
|
19673
|
-
|
|
20553
|
+
* @summary Modifies the configurations of a vServer group.
|
|
20554
|
+
*
|
|
20555
|
+
* @description This operation allows you to modify only the name of a vServer group and the weights of the backend servers in the vServer group.
|
|
20556
|
+
* * If you want to modify backend servers in a specified vServer group, call the [ModifyVServerGroupBackendServers](https://help.aliyun.com/document_detail/35220.html) operation.
|
|
20557
|
+
* * If you want to add backend servers to a specified vServer group, call the [AddVServerGroupBackendServers](https://help.aliyun.com/document_detail/35218.html) operation.
|
|
20558
|
+
*
|
|
20559
|
+
* @param request SetVServerGroupAttributeRequest
|
|
20560
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20561
|
+
* @return SetVServerGroupAttributeResponse
|
|
19674
20562
|
*/
|
|
19675
20563
|
async setVServerGroupAttributeWithOptions(request: SetVServerGroupAttributeRequest, runtime: $Util.RuntimeOptions): Promise<SetVServerGroupAttributeResponse> {
|
|
19676
20564
|
Util.validateModel(request);
|
|
@@ -19725,12 +20613,14 @@ export default class Client extends OpenApi {
|
|
|
19725
20613
|
}
|
|
19726
20614
|
|
|
19727
20615
|
/**
|
|
19728
|
-
|
|
19729
|
-
|
|
19730
|
-
|
|
19731
|
-
|
|
19732
|
-
|
|
19733
|
-
|
|
20616
|
+
* @summary Modifies the configurations of a vServer group.
|
|
20617
|
+
*
|
|
20618
|
+
* @description This operation allows you to modify only the name of a vServer group and the weights of the backend servers in the vServer group.
|
|
20619
|
+
* * If you want to modify backend servers in a specified vServer group, call the [ModifyVServerGroupBackendServers](https://help.aliyun.com/document_detail/35220.html) operation.
|
|
20620
|
+
* * If you want to add backend servers to a specified vServer group, call the [AddVServerGroupBackendServers](https://help.aliyun.com/document_detail/35218.html) operation.
|
|
20621
|
+
*
|
|
20622
|
+
* @param request SetVServerGroupAttributeRequest
|
|
20623
|
+
* @return SetVServerGroupAttributeResponse
|
|
19734
20624
|
*/
|
|
19735
20625
|
async setVServerGroupAttribute(request: SetVServerGroupAttributeRequest): Promise<SetVServerGroupAttributeResponse> {
|
|
19736
20626
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -19738,14 +20628,16 @@ export default class Client extends OpenApi {
|
|
|
19738
20628
|
}
|
|
19739
20629
|
|
|
19740
20630
|
/**
|
|
19741
|
-
|
|
19742
|
-
|
|
19743
|
-
|
|
19744
|
-
|
|
19745
|
-
|
|
19746
|
-
|
|
19747
|
-
|
|
19748
|
-
|
|
20631
|
+
* @summary You can call this operation to start a listener.
|
|
20632
|
+
*
|
|
20633
|
+
* @description When you call this operation, note the following items:
|
|
20634
|
+
* * You can call the operation only when the listener is in the Stopped state.
|
|
20635
|
+
* * After the operation is called, the status of the listener changes to Starting.
|
|
20636
|
+
* * You cannot call this operation when the SLB instance to which the listener is bound is in the Locked state.
|
|
20637
|
+
*
|
|
20638
|
+
* @param request StartLoadBalancerListenerRequest
|
|
20639
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20640
|
+
* @return StartLoadBalancerListenerResponse
|
|
19749
20641
|
*/
|
|
19750
20642
|
async startLoadBalancerListenerWithOptions(request: StartLoadBalancerListenerRequest, runtime: $Util.RuntimeOptions): Promise<StartLoadBalancerListenerResponse> {
|
|
19751
20643
|
Util.validateModel(request);
|
|
@@ -19800,13 +20692,15 @@ export default class Client extends OpenApi {
|
|
|
19800
20692
|
}
|
|
19801
20693
|
|
|
19802
20694
|
/**
|
|
19803
|
-
|
|
19804
|
-
|
|
19805
|
-
|
|
19806
|
-
|
|
19807
|
-
|
|
19808
|
-
|
|
19809
|
-
|
|
20695
|
+
* @summary You can call this operation to start a listener.
|
|
20696
|
+
*
|
|
20697
|
+
* @description When you call this operation, note the following items:
|
|
20698
|
+
* * You can call the operation only when the listener is in the Stopped state.
|
|
20699
|
+
* * After the operation is called, the status of the listener changes to Starting.
|
|
20700
|
+
* * You cannot call this operation when the SLB instance to which the listener is bound is in the Locked state.
|
|
20701
|
+
*
|
|
20702
|
+
* @param request StartLoadBalancerListenerRequest
|
|
20703
|
+
* @return StartLoadBalancerListenerResponse
|
|
19810
20704
|
*/
|
|
19811
20705
|
async startLoadBalancerListener(request: StartLoadBalancerListenerRequest): Promise<StartLoadBalancerListenerResponse> {
|
|
19812
20706
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -19814,14 +20708,16 @@ export default class Client extends OpenApi {
|
|
|
19814
20708
|
}
|
|
19815
20709
|
|
|
19816
20710
|
/**
|
|
19817
|
-
|
|
19818
|
-
|
|
19819
|
-
|
|
19820
|
-
|
|
19821
|
-
|
|
19822
|
-
|
|
19823
|
-
|
|
19824
|
-
|
|
20711
|
+
* @summary Stops a listener.
|
|
20712
|
+
*
|
|
20713
|
+
* @description Before you make this API call, note the following:
|
|
20714
|
+
* * After the API call is successfully made, the listener enters the stopped state.
|
|
20715
|
+
* * If the Server Load Balancer (SLB) instance to which the listener to be stopped belongs is in the locked state, this API call cannot be made.
|
|
20716
|
+
* > If you stop the listener, your services will be disrupted. Exercise caution when you perform this action.
|
|
20717
|
+
*
|
|
20718
|
+
* @param request StopLoadBalancerListenerRequest
|
|
20719
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20720
|
+
* @return StopLoadBalancerListenerResponse
|
|
19825
20721
|
*/
|
|
19826
20722
|
async stopLoadBalancerListenerWithOptions(request: StopLoadBalancerListenerRequest, runtime: $Util.RuntimeOptions): Promise<StopLoadBalancerListenerResponse> {
|
|
19827
20723
|
Util.validateModel(request);
|
|
@@ -19876,13 +20772,15 @@ export default class Client extends OpenApi {
|
|
|
19876
20772
|
}
|
|
19877
20773
|
|
|
19878
20774
|
/**
|
|
19879
|
-
|
|
19880
|
-
|
|
19881
|
-
|
|
19882
|
-
|
|
19883
|
-
|
|
19884
|
-
|
|
19885
|
-
|
|
20775
|
+
* @summary Stops a listener.
|
|
20776
|
+
*
|
|
20777
|
+
* @description Before you make this API call, note the following:
|
|
20778
|
+
* * After the API call is successfully made, the listener enters the stopped state.
|
|
20779
|
+
* * If the Server Load Balancer (SLB) instance to which the listener to be stopped belongs is in the locked state, this API call cannot be made.
|
|
20780
|
+
* > If you stop the listener, your services will be disrupted. Exercise caution when you perform this action.
|
|
20781
|
+
*
|
|
20782
|
+
* @param request StopLoadBalancerListenerRequest
|
|
20783
|
+
* @return StopLoadBalancerListenerResponse
|
|
19886
20784
|
*/
|
|
19887
20785
|
async stopLoadBalancerListener(request: StopLoadBalancerListenerRequest): Promise<StopLoadBalancerListenerResponse> {
|
|
19888
20786
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -19890,11 +20788,13 @@ export default class Client extends OpenApi {
|
|
|
19890
20788
|
}
|
|
19891
20789
|
|
|
19892
20790
|
/**
|
|
19893
|
-
|
|
19894
|
-
|
|
19895
|
-
|
|
19896
|
-
|
|
19897
|
-
|
|
20791
|
+
* @summary Creates tags and adds the tags to resources.
|
|
20792
|
+
*
|
|
20793
|
+
* @description > You can add at most 20 tags to each instance. Before you add tags to a resource, Alibaba Cloud checks the number of existing tags of the resource. If the maximum number is reached, an error message is returned.
|
|
20794
|
+
*
|
|
20795
|
+
* @param request TagResourcesRequest
|
|
20796
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20797
|
+
* @return TagResourcesResponse
|
|
19898
20798
|
*/
|
|
19899
20799
|
async tagResourcesWithOptions(request: TagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<TagResourcesResponse> {
|
|
19900
20800
|
Util.validateModel(request);
|
|
@@ -19949,16 +20849,25 @@ export default class Client extends OpenApi {
|
|
|
19949
20849
|
}
|
|
19950
20850
|
|
|
19951
20851
|
/**
|
|
19952
|
-
|
|
19953
|
-
|
|
19954
|
-
|
|
19955
|
-
|
|
20852
|
+
* @summary Creates tags and adds the tags to resources.
|
|
20853
|
+
*
|
|
20854
|
+
* @description > You can add at most 20 tags to each instance. Before you add tags to a resource, Alibaba Cloud checks the number of existing tags of the resource. If the maximum number is reached, an error message is returned.
|
|
20855
|
+
*
|
|
20856
|
+
* @param request TagResourcesRequest
|
|
20857
|
+
* @return TagResourcesResponse
|
|
19956
20858
|
*/
|
|
19957
20859
|
async tagResources(request: TagResourcesRequest): Promise<TagResourcesResponse> {
|
|
19958
20860
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19959
20861
|
return await this.tagResourcesWithOptions(request, runtime);
|
|
19960
20862
|
}
|
|
19961
20863
|
|
|
20864
|
+
/**
|
|
20865
|
+
* @summary Removes tags from specified resources.
|
|
20866
|
+
*
|
|
20867
|
+
* @param request UntagResourcesRequest
|
|
20868
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20869
|
+
* @return UntagResourcesResponse
|
|
20870
|
+
*/
|
|
19962
20871
|
async untagResourcesWithOptions(request: UntagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<UntagResourcesResponse> {
|
|
19963
20872
|
Util.validateModel(request);
|
|
19964
20873
|
let query = { };
|
|
@@ -20015,17 +20924,25 @@ export default class Client extends OpenApi {
|
|
|
20015
20924
|
return $tea.cast<UntagResourcesResponse>(await this.callApi(params, req, runtime), new UntagResourcesResponse({}));
|
|
20016
20925
|
}
|
|
20017
20926
|
|
|
20927
|
+
/**
|
|
20928
|
+
* @summary Removes tags from specified resources.
|
|
20929
|
+
*
|
|
20930
|
+
* @param request UntagResourcesRequest
|
|
20931
|
+
* @return UntagResourcesResponse
|
|
20932
|
+
*/
|
|
20018
20933
|
async untagResources(request: UntagResourcesRequest): Promise<UntagResourcesResponse> {
|
|
20019
20934
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20020
20935
|
return await this.untagResourcesWithOptions(request, runtime);
|
|
20021
20936
|
}
|
|
20022
20937
|
|
|
20023
20938
|
/**
|
|
20024
|
-
|
|
20025
|
-
|
|
20026
|
-
|
|
20027
|
-
|
|
20028
|
-
|
|
20939
|
+
* @summary Uploads a CA certificate.
|
|
20940
|
+
*
|
|
20941
|
+
* @description You can upload only one CA certificate at a time. After a CA certificate is uploaded, the certificate ID, name, and fingerprint are returned.
|
|
20942
|
+
*
|
|
20943
|
+
* @param request UploadCACertificateRequest
|
|
20944
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20945
|
+
* @return UploadCACertificateResponse
|
|
20029
20946
|
*/
|
|
20030
20947
|
async uploadCACertificateWithOptions(request: UploadCACertificateRequest, runtime: $Util.RuntimeOptions): Promise<UploadCACertificateResponse> {
|
|
20031
20948
|
Util.validateModel(request);
|
|
@@ -20084,10 +21001,12 @@ export default class Client extends OpenApi {
|
|
|
20084
21001
|
}
|
|
20085
21002
|
|
|
20086
21003
|
/**
|
|
20087
|
-
|
|
20088
|
-
|
|
20089
|
-
|
|
20090
|
-
|
|
21004
|
+
* @summary Uploads a CA certificate.
|
|
21005
|
+
*
|
|
21006
|
+
* @description You can upload only one CA certificate at a time. After a CA certificate is uploaded, the certificate ID, name, and fingerprint are returned.
|
|
21007
|
+
*
|
|
21008
|
+
* @param request UploadCACertificateRequest
|
|
21009
|
+
* @return UploadCACertificateResponse
|
|
20091
21010
|
*/
|
|
20092
21011
|
async uploadCACertificate(request: UploadCACertificateRequest): Promise<UploadCACertificateResponse> {
|
|
20093
21012
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -20095,12 +21014,14 @@ export default class Client extends OpenApi {
|
|
|
20095
21014
|
}
|
|
20096
21015
|
|
|
20097
21016
|
/**
|
|
20098
|
-
|
|
20099
|
-
|
|
20100
|
-
|
|
20101
|
-
|
|
20102
|
-
|
|
20103
|
-
|
|
21017
|
+
* @summary Uploads a server certificate.
|
|
21018
|
+
*
|
|
21019
|
+
* @description * You can upload only one server certificate and its private key in each call.
|
|
21020
|
+
* * After a server certificate and its private key are uploaded, the fingerprints of all server certificates that belong to your Alibaba Cloud account are returned.
|
|
21021
|
+
*
|
|
21022
|
+
* @param request UploadServerCertificateRequest
|
|
21023
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21024
|
+
* @return UploadServerCertificateResponse
|
|
20104
21025
|
*/
|
|
20105
21026
|
async uploadServerCertificateWithOptions(request: UploadServerCertificateRequest, runtime: $Util.RuntimeOptions): Promise<UploadServerCertificateResponse> {
|
|
20106
21027
|
Util.validateModel(request);
|
|
@@ -20175,11 +21096,13 @@ export default class Client extends OpenApi {
|
|
|
20175
21096
|
}
|
|
20176
21097
|
|
|
20177
21098
|
/**
|
|
20178
|
-
|
|
20179
|
-
|
|
20180
|
-
|
|
20181
|
-
|
|
20182
|
-
|
|
21099
|
+
* @summary Uploads a server certificate.
|
|
21100
|
+
*
|
|
21101
|
+
* @description * You can upload only one server certificate and its private key in each call.
|
|
21102
|
+
* * After a server certificate and its private key are uploaded, the fingerprints of all server certificates that belong to your Alibaba Cloud account are returned.
|
|
21103
|
+
*
|
|
21104
|
+
* @param request UploadServerCertificateRequest
|
|
21105
|
+
* @return UploadServerCertificateResponse
|
|
20183
21106
|
*/
|
|
20184
21107
|
async uploadServerCertificate(request: UploadServerCertificateRequest): Promise<UploadServerCertificateResponse> {
|
|
20185
21108
|
let runtime = new $Util.RuntimeOptions({ });
|