@alicloud/slb20140515 2.0.4 → 2.0.6
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 +1596 -739
- package/dist/client.js +2643 -1727
- package/dist/client.js.map +1 -1
- package/package.json +7 -7
- package/src/client.ts +1648 -739
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',
|
|
@@ -819,8 +819,10 @@ export class CreateLoadBalancerHTTPListenerRequest extends $tea.Model {
|
|
|
819
819
|
unhealthyThreshold?: number;
|
|
820
820
|
VServerGroupId?: string;
|
|
821
821
|
XForwardedFor?: string;
|
|
822
|
+
XForwardedFor_ClientSrcPort?: string;
|
|
822
823
|
XForwardedFor_SLBID?: string;
|
|
823
824
|
XForwardedFor_SLBIP?: string;
|
|
825
|
+
XForwardedFor_SLBPORT?: string;
|
|
824
826
|
XForwardedFor_proto?: string;
|
|
825
827
|
static names(): { [key: string]: string } {
|
|
826
828
|
return {
|
|
@@ -860,8 +862,10 @@ export class CreateLoadBalancerHTTPListenerRequest extends $tea.Model {
|
|
|
860
862
|
unhealthyThreshold: 'UnhealthyThreshold',
|
|
861
863
|
VServerGroupId: 'VServerGroupId',
|
|
862
864
|
XForwardedFor: 'XForwardedFor',
|
|
865
|
+
XForwardedFor_ClientSrcPort: 'XForwardedFor_ClientSrcPort',
|
|
863
866
|
XForwardedFor_SLBID: 'XForwardedFor_SLBID',
|
|
864
867
|
XForwardedFor_SLBIP: 'XForwardedFor_SLBIP',
|
|
868
|
+
XForwardedFor_SLBPORT: 'XForwardedFor_SLBPORT',
|
|
865
869
|
XForwardedFor_proto: 'XForwardedFor_proto',
|
|
866
870
|
};
|
|
867
871
|
}
|
|
@@ -904,8 +908,10 @@ export class CreateLoadBalancerHTTPListenerRequest extends $tea.Model {
|
|
|
904
908
|
unhealthyThreshold: 'number',
|
|
905
909
|
VServerGroupId: 'string',
|
|
906
910
|
XForwardedFor: 'string',
|
|
911
|
+
XForwardedFor_ClientSrcPort: 'string',
|
|
907
912
|
XForwardedFor_SLBID: 'string',
|
|
908
913
|
XForwardedFor_SLBIP: 'string',
|
|
914
|
+
XForwardedFor_SLBPORT: 'string',
|
|
909
915
|
XForwardedFor_proto: 'string',
|
|
910
916
|
};
|
|
911
917
|
}
|
|
@@ -935,9 +941,9 @@ export class CreateLoadBalancerHTTPListenerResponseBody extends $tea.Model {
|
|
|
935
941
|
}
|
|
936
942
|
|
|
937
943
|
export class CreateLoadBalancerHTTPListenerResponse extends $tea.Model {
|
|
938
|
-
headers
|
|
939
|
-
statusCode
|
|
940
|
-
body
|
|
944
|
+
headers?: { [key: string]: string };
|
|
945
|
+
statusCode?: number;
|
|
946
|
+
body?: CreateLoadBalancerHTTPListenerResponseBody;
|
|
941
947
|
static names(): { [key: string]: string } {
|
|
942
948
|
return {
|
|
943
949
|
headers: 'headers',
|
|
@@ -998,8 +1004,10 @@ export class CreateLoadBalancerHTTPSListenerRequest extends $tea.Model {
|
|
|
998
1004
|
unhealthyThreshold?: number;
|
|
999
1005
|
VServerGroupId?: string;
|
|
1000
1006
|
XForwardedFor?: string;
|
|
1007
|
+
XForwardedFor_ClientSrcPort?: string;
|
|
1001
1008
|
XForwardedFor_SLBID?: string;
|
|
1002
1009
|
XForwardedFor_SLBIP?: string;
|
|
1010
|
+
XForwardedFor_SLBPORT?: string;
|
|
1003
1011
|
XForwardedFor_proto?: string;
|
|
1004
1012
|
static names(): { [key: string]: string } {
|
|
1005
1013
|
return {
|
|
@@ -1041,8 +1049,10 @@ export class CreateLoadBalancerHTTPSListenerRequest extends $tea.Model {
|
|
|
1041
1049
|
unhealthyThreshold: 'UnhealthyThreshold',
|
|
1042
1050
|
VServerGroupId: 'VServerGroupId',
|
|
1043
1051
|
XForwardedFor: 'XForwardedFor',
|
|
1052
|
+
XForwardedFor_ClientSrcPort: 'XForwardedFor_ClientSrcPort',
|
|
1044
1053
|
XForwardedFor_SLBID: 'XForwardedFor_SLBID',
|
|
1045
1054
|
XForwardedFor_SLBIP: 'XForwardedFor_SLBIP',
|
|
1055
|
+
XForwardedFor_SLBPORT: 'XForwardedFor_SLBPORT',
|
|
1046
1056
|
XForwardedFor_proto: 'XForwardedFor_proto',
|
|
1047
1057
|
};
|
|
1048
1058
|
}
|
|
@@ -1087,8 +1097,10 @@ export class CreateLoadBalancerHTTPSListenerRequest extends $tea.Model {
|
|
|
1087
1097
|
unhealthyThreshold: 'number',
|
|
1088
1098
|
VServerGroupId: 'string',
|
|
1089
1099
|
XForwardedFor: 'string',
|
|
1100
|
+
XForwardedFor_ClientSrcPort: 'string',
|
|
1090
1101
|
XForwardedFor_SLBID: 'string',
|
|
1091
1102
|
XForwardedFor_SLBIP: 'string',
|
|
1103
|
+
XForwardedFor_SLBPORT: 'string',
|
|
1092
1104
|
XForwardedFor_proto: 'string',
|
|
1093
1105
|
};
|
|
1094
1106
|
}
|
|
@@ -1118,9 +1130,9 @@ export class CreateLoadBalancerHTTPSListenerResponseBody extends $tea.Model {
|
|
|
1118
1130
|
}
|
|
1119
1131
|
|
|
1120
1132
|
export class CreateLoadBalancerHTTPSListenerResponse extends $tea.Model {
|
|
1121
|
-
headers
|
|
1122
|
-
statusCode
|
|
1123
|
-
body
|
|
1133
|
+
headers?: { [key: string]: string };
|
|
1134
|
+
statusCode?: number;
|
|
1135
|
+
body?: CreateLoadBalancerHTTPSListenerResponseBody;
|
|
1124
1136
|
static names(): { [key: string]: string } {
|
|
1125
1137
|
return {
|
|
1126
1138
|
headers: 'headers',
|
|
@@ -1274,9 +1286,9 @@ export class CreateLoadBalancerTCPListenerResponseBody extends $tea.Model {
|
|
|
1274
1286
|
}
|
|
1275
1287
|
|
|
1276
1288
|
export class CreateLoadBalancerTCPListenerResponse extends $tea.Model {
|
|
1277
|
-
headers
|
|
1278
|
-
statusCode
|
|
1279
|
-
body
|
|
1289
|
+
headers?: { [key: string]: string };
|
|
1290
|
+
statusCode?: number;
|
|
1291
|
+
body?: CreateLoadBalancerTCPListenerResponseBody;
|
|
1280
1292
|
static names(): { [key: string]: string } {
|
|
1281
1293
|
return {
|
|
1282
1294
|
headers: 'headers',
|
|
@@ -1412,9 +1424,9 @@ export class CreateLoadBalancerUDPListenerResponseBody extends $tea.Model {
|
|
|
1412
1424
|
}
|
|
1413
1425
|
|
|
1414
1426
|
export class CreateLoadBalancerUDPListenerResponse extends $tea.Model {
|
|
1415
|
-
headers
|
|
1416
|
-
statusCode
|
|
1417
|
-
body
|
|
1427
|
+
headers?: { [key: string]: string };
|
|
1428
|
+
statusCode?: number;
|
|
1429
|
+
body?: CreateLoadBalancerUDPListenerResponseBody;
|
|
1418
1430
|
static names(): { [key: string]: string } {
|
|
1419
1431
|
return {
|
|
1420
1432
|
headers: 'headers',
|
|
@@ -1505,9 +1517,9 @@ export class CreateMasterSlaveServerGroupResponseBody extends $tea.Model {
|
|
|
1505
1517
|
}
|
|
1506
1518
|
|
|
1507
1519
|
export class CreateMasterSlaveServerGroupResponse extends $tea.Model {
|
|
1508
|
-
headers
|
|
1509
|
-
statusCode
|
|
1510
|
-
body
|
|
1520
|
+
headers?: { [key: string]: string };
|
|
1521
|
+
statusCode?: number;
|
|
1522
|
+
body?: CreateMasterSlaveServerGroupResponseBody;
|
|
1511
1523
|
static names(): { [key: string]: string } {
|
|
1512
1524
|
return {
|
|
1513
1525
|
headers: 'headers',
|
|
@@ -1595,9 +1607,9 @@ export class CreateRulesResponseBody extends $tea.Model {
|
|
|
1595
1607
|
}
|
|
1596
1608
|
|
|
1597
1609
|
export class CreateRulesResponse extends $tea.Model {
|
|
1598
|
-
headers
|
|
1599
|
-
statusCode
|
|
1600
|
-
body
|
|
1610
|
+
headers?: { [key: string]: string };
|
|
1611
|
+
statusCode?: number;
|
|
1612
|
+
body?: CreateRulesResponseBody;
|
|
1601
1613
|
static names(): { [key: string]: string } {
|
|
1602
1614
|
return {
|
|
1603
1615
|
headers: 'headers',
|
|
@@ -1682,9 +1694,9 @@ export class CreateTLSCipherPolicyResponseBody extends $tea.Model {
|
|
|
1682
1694
|
}
|
|
1683
1695
|
|
|
1684
1696
|
export class CreateTLSCipherPolicyResponse extends $tea.Model {
|
|
1685
|
-
headers
|
|
1686
|
-
statusCode
|
|
1687
|
-
body
|
|
1697
|
+
headers?: { [key: string]: string };
|
|
1698
|
+
statusCode?: number;
|
|
1699
|
+
body?: CreateTLSCipherPolicyResponseBody;
|
|
1688
1700
|
static names(): { [key: string]: string } {
|
|
1689
1701
|
return {
|
|
1690
1702
|
headers: 'headers',
|
|
@@ -1775,9 +1787,9 @@ export class CreateVServerGroupResponseBody extends $tea.Model {
|
|
|
1775
1787
|
}
|
|
1776
1788
|
|
|
1777
1789
|
export class CreateVServerGroupResponse extends $tea.Model {
|
|
1778
|
-
headers
|
|
1779
|
-
statusCode
|
|
1780
|
-
body
|
|
1790
|
+
headers?: { [key: string]: string };
|
|
1791
|
+
statusCode?: number;
|
|
1792
|
+
body?: CreateVServerGroupResponseBody;
|
|
1781
1793
|
static names(): { [key: string]: string } {
|
|
1782
1794
|
return {
|
|
1783
1795
|
headers: 'headers',
|
|
@@ -1853,9 +1865,9 @@ export class DeleteAccessControlListResponseBody extends $tea.Model {
|
|
|
1853
1865
|
}
|
|
1854
1866
|
|
|
1855
1867
|
export class DeleteAccessControlListResponse extends $tea.Model {
|
|
1856
|
-
headers
|
|
1857
|
-
statusCode
|
|
1858
|
-
body
|
|
1868
|
+
headers?: { [key: string]: string };
|
|
1869
|
+
statusCode?: number;
|
|
1870
|
+
body?: DeleteAccessControlListResponseBody;
|
|
1859
1871
|
static names(): { [key: string]: string } {
|
|
1860
1872
|
return {
|
|
1861
1873
|
headers: 'headers',
|
|
@@ -1937,9 +1949,9 @@ export class DeleteAccessLogsDownloadAttributeResponseBody extends $tea.Model {
|
|
|
1937
1949
|
}
|
|
1938
1950
|
|
|
1939
1951
|
export class DeleteAccessLogsDownloadAttributeResponse extends $tea.Model {
|
|
1940
|
-
headers
|
|
1941
|
-
statusCode
|
|
1942
|
-
body
|
|
1952
|
+
headers?: { [key: string]: string };
|
|
1953
|
+
statusCode?: number;
|
|
1954
|
+
body?: DeleteAccessLogsDownloadAttributeResponseBody;
|
|
1943
1955
|
static names(): { [key: string]: string } {
|
|
1944
1956
|
return {
|
|
1945
1957
|
headers: 'headers',
|
|
@@ -2015,9 +2027,9 @@ export class DeleteCACertificateResponseBody extends $tea.Model {
|
|
|
2015
2027
|
}
|
|
2016
2028
|
|
|
2017
2029
|
export class DeleteCACertificateResponse extends $tea.Model {
|
|
2018
|
-
headers
|
|
2019
|
-
statusCode
|
|
2020
|
-
body
|
|
2030
|
+
headers?: { [key: string]: string };
|
|
2031
|
+
statusCode?: number;
|
|
2032
|
+
body?: DeleteCACertificateResponseBody;
|
|
2021
2033
|
static names(): { [key: string]: string } {
|
|
2022
2034
|
return {
|
|
2023
2035
|
headers: 'headers',
|
|
@@ -2093,9 +2105,9 @@ export class DeleteDomainExtensionResponseBody extends $tea.Model {
|
|
|
2093
2105
|
}
|
|
2094
2106
|
|
|
2095
2107
|
export class DeleteDomainExtensionResponse extends $tea.Model {
|
|
2096
|
-
headers
|
|
2097
|
-
statusCode
|
|
2098
|
-
body
|
|
2108
|
+
headers?: { [key: string]: string };
|
|
2109
|
+
statusCode?: number;
|
|
2110
|
+
body?: DeleteDomainExtensionResponseBody;
|
|
2099
2111
|
static names(): { [key: string]: string } {
|
|
2100
2112
|
return {
|
|
2101
2113
|
headers: 'headers',
|
|
@@ -2171,9 +2183,9 @@ export class DeleteLoadBalancerResponseBody extends $tea.Model {
|
|
|
2171
2183
|
}
|
|
2172
2184
|
|
|
2173
2185
|
export class DeleteLoadBalancerResponse extends $tea.Model {
|
|
2174
|
-
headers
|
|
2175
|
-
statusCode
|
|
2176
|
-
body
|
|
2186
|
+
headers?: { [key: string]: string };
|
|
2187
|
+
statusCode?: number;
|
|
2188
|
+
body?: DeleteLoadBalancerResponseBody;
|
|
2177
2189
|
static names(): { [key: string]: string } {
|
|
2178
2190
|
return {
|
|
2179
2191
|
headers: 'headers',
|
|
@@ -2255,9 +2267,9 @@ export class DeleteLoadBalancerListenerResponseBody extends $tea.Model {
|
|
|
2255
2267
|
}
|
|
2256
2268
|
|
|
2257
2269
|
export class DeleteLoadBalancerListenerResponse extends $tea.Model {
|
|
2258
|
-
headers
|
|
2259
|
-
statusCode
|
|
2260
|
-
body
|
|
2270
|
+
headers?: { [key: string]: string };
|
|
2271
|
+
statusCode?: number;
|
|
2272
|
+
body?: DeleteLoadBalancerListenerResponseBody;
|
|
2261
2273
|
static names(): { [key: string]: string } {
|
|
2262
2274
|
return {
|
|
2263
2275
|
headers: 'headers',
|
|
@@ -2333,9 +2345,9 @@ export class DeleteMasterSlaveServerGroupResponseBody extends $tea.Model {
|
|
|
2333
2345
|
}
|
|
2334
2346
|
|
|
2335
2347
|
export class DeleteMasterSlaveServerGroupResponse extends $tea.Model {
|
|
2336
|
-
headers
|
|
2337
|
-
statusCode
|
|
2338
|
-
body
|
|
2348
|
+
headers?: { [key: string]: string };
|
|
2349
|
+
statusCode?: number;
|
|
2350
|
+
body?: DeleteMasterSlaveServerGroupResponseBody;
|
|
2339
2351
|
static names(): { [key: string]: string } {
|
|
2340
2352
|
return {
|
|
2341
2353
|
headers: 'headers',
|
|
@@ -2411,9 +2423,9 @@ export class DeleteRulesResponseBody extends $tea.Model {
|
|
|
2411
2423
|
}
|
|
2412
2424
|
|
|
2413
2425
|
export class DeleteRulesResponse extends $tea.Model {
|
|
2414
|
-
headers
|
|
2415
|
-
statusCode
|
|
2416
|
-
body
|
|
2426
|
+
headers?: { [key: string]: string };
|
|
2427
|
+
statusCode?: number;
|
|
2428
|
+
body?: DeleteRulesResponseBody;
|
|
2417
2429
|
static names(): { [key: string]: string } {
|
|
2418
2430
|
return {
|
|
2419
2431
|
headers: 'headers',
|
|
@@ -2489,9 +2501,9 @@ export class DeleteServerCertificateResponseBody extends $tea.Model {
|
|
|
2489
2501
|
}
|
|
2490
2502
|
|
|
2491
2503
|
export class DeleteServerCertificateResponse extends $tea.Model {
|
|
2492
|
-
headers
|
|
2493
|
-
statusCode
|
|
2494
|
-
body
|
|
2504
|
+
headers?: { [key: string]: string };
|
|
2505
|
+
statusCode?: number;
|
|
2506
|
+
body?: DeleteServerCertificateResponseBody;
|
|
2495
2507
|
static names(): { [key: string]: string } {
|
|
2496
2508
|
return {
|
|
2497
2509
|
headers: 'headers',
|
|
@@ -2567,9 +2579,9 @@ export class DeleteTLSCipherPolicyResponseBody extends $tea.Model {
|
|
|
2567
2579
|
}
|
|
2568
2580
|
|
|
2569
2581
|
export class DeleteTLSCipherPolicyResponse extends $tea.Model {
|
|
2570
|
-
headers
|
|
2571
|
-
statusCode
|
|
2572
|
-
body
|
|
2582
|
+
headers?: { [key: string]: string };
|
|
2583
|
+
statusCode?: number;
|
|
2584
|
+
body?: DeleteTLSCipherPolicyResponseBody;
|
|
2573
2585
|
static names(): { [key: string]: string } {
|
|
2574
2586
|
return {
|
|
2575
2587
|
headers: 'headers',
|
|
@@ -2645,9 +2657,9 @@ export class DeleteVServerGroupResponseBody extends $tea.Model {
|
|
|
2645
2657
|
}
|
|
2646
2658
|
|
|
2647
2659
|
export class DeleteVServerGroupResponse extends $tea.Model {
|
|
2648
|
-
headers
|
|
2649
|
-
statusCode
|
|
2650
|
-
body
|
|
2660
|
+
headers?: { [key: string]: string };
|
|
2661
|
+
statusCode?: number;
|
|
2662
|
+
body?: DeleteVServerGroupResponseBody;
|
|
2651
2663
|
static names(): { [key: string]: string } {
|
|
2652
2664
|
return {
|
|
2653
2665
|
headers: 'headers',
|
|
@@ -2759,9 +2771,9 @@ export class DescribeAccessControlListAttributeResponseBody extends $tea.Model {
|
|
|
2759
2771
|
}
|
|
2760
2772
|
|
|
2761
2773
|
export class DescribeAccessControlListAttributeResponse extends $tea.Model {
|
|
2762
|
-
headers
|
|
2763
|
-
statusCode
|
|
2764
|
-
body
|
|
2774
|
+
headers?: { [key: string]: string };
|
|
2775
|
+
statusCode?: number;
|
|
2776
|
+
body?: DescribeAccessControlListAttributeResponseBody;
|
|
2765
2777
|
static names(): { [key: string]: string } {
|
|
2766
2778
|
return {
|
|
2767
2779
|
headers: 'headers',
|
|
@@ -2867,9 +2879,9 @@ export class DescribeAccessControlListsResponseBody extends $tea.Model {
|
|
|
2867
2879
|
}
|
|
2868
2880
|
|
|
2869
2881
|
export class DescribeAccessControlListsResponse extends $tea.Model {
|
|
2870
|
-
headers
|
|
2871
|
-
statusCode
|
|
2872
|
-
body
|
|
2882
|
+
headers?: { [key: string]: string };
|
|
2883
|
+
statusCode?: number;
|
|
2884
|
+
body?: DescribeAccessControlListsResponseBody;
|
|
2873
2885
|
static names(): { [key: string]: string } {
|
|
2874
2886
|
return {
|
|
2875
2887
|
headers: 'headers',
|
|
@@ -2969,9 +2981,9 @@ export class DescribeAccessLogsDownloadAttributeResponseBody extends $tea.Model
|
|
|
2969
2981
|
}
|
|
2970
2982
|
|
|
2971
2983
|
export class DescribeAccessLogsDownloadAttributeResponse extends $tea.Model {
|
|
2972
|
-
headers
|
|
2973
|
-
statusCode
|
|
2974
|
-
body
|
|
2984
|
+
headers?: { [key: string]: string };
|
|
2985
|
+
statusCode?: number;
|
|
2986
|
+
body?: DescribeAccessLogsDownloadAttributeResponseBody;
|
|
2975
2987
|
static names(): { [key: string]: string } {
|
|
2976
2988
|
return {
|
|
2977
2989
|
headers: 'headers',
|
|
@@ -3053,9 +3065,9 @@ export class DescribeAvailableResourceResponseBody extends $tea.Model {
|
|
|
3053
3065
|
}
|
|
3054
3066
|
|
|
3055
3067
|
export class DescribeAvailableResourceResponse extends $tea.Model {
|
|
3056
|
-
headers
|
|
3057
|
-
statusCode
|
|
3058
|
-
body
|
|
3068
|
+
headers?: { [key: string]: string };
|
|
3069
|
+
statusCode?: number;
|
|
3070
|
+
body?: DescribeAvailableResourceResponseBody;
|
|
3059
3071
|
static names(): { [key: string]: string } {
|
|
3060
3072
|
return {
|
|
3061
3073
|
headers: 'headers',
|
|
@@ -3140,9 +3152,9 @@ export class DescribeCACertificatesResponseBody extends $tea.Model {
|
|
|
3140
3152
|
}
|
|
3141
3153
|
|
|
3142
3154
|
export class DescribeCACertificatesResponse extends $tea.Model {
|
|
3143
|
-
headers
|
|
3144
|
-
statusCode
|
|
3145
|
-
body
|
|
3155
|
+
headers?: { [key: string]: string };
|
|
3156
|
+
statusCode?: number;
|
|
3157
|
+
body?: DescribeCACertificatesResponseBody;
|
|
3146
3158
|
static names(): { [key: string]: string } {
|
|
3147
3159
|
return {
|
|
3148
3160
|
headers: 'headers',
|
|
@@ -3233,9 +3245,9 @@ export class DescribeDomainExtensionAttributeResponseBody extends $tea.Model {
|
|
|
3233
3245
|
}
|
|
3234
3246
|
|
|
3235
3247
|
export class DescribeDomainExtensionAttributeResponse extends $tea.Model {
|
|
3236
|
-
headers
|
|
3237
|
-
statusCode
|
|
3238
|
-
body
|
|
3248
|
+
headers?: { [key: string]: string };
|
|
3249
|
+
statusCode?: number;
|
|
3250
|
+
body?: DescribeDomainExtensionAttributeResponseBody;
|
|
3239
3251
|
static names(): { [key: string]: string } {
|
|
3240
3252
|
return {
|
|
3241
3253
|
headers: 'headers',
|
|
@@ -3320,9 +3332,9 @@ export class DescribeDomainExtensionsResponseBody extends $tea.Model {
|
|
|
3320
3332
|
}
|
|
3321
3333
|
|
|
3322
3334
|
export class DescribeDomainExtensionsResponse extends $tea.Model {
|
|
3323
|
-
headers
|
|
3324
|
-
statusCode
|
|
3325
|
-
body
|
|
3335
|
+
headers?: { [key: string]: string };
|
|
3336
|
+
statusCode?: number;
|
|
3337
|
+
body?: DescribeDomainExtensionsResponseBody;
|
|
3326
3338
|
static names(): { [key: string]: string } {
|
|
3327
3339
|
return {
|
|
3328
3340
|
headers: 'headers',
|
|
@@ -3407,9 +3419,9 @@ export class DescribeHealthStatusResponseBody extends $tea.Model {
|
|
|
3407
3419
|
}
|
|
3408
3420
|
|
|
3409
3421
|
export class DescribeHealthStatusResponse extends $tea.Model {
|
|
3410
|
-
headers
|
|
3411
|
-
statusCode
|
|
3412
|
-
body
|
|
3422
|
+
headers?: { [key: string]: string };
|
|
3423
|
+
statusCode?: number;
|
|
3424
|
+
body?: DescribeHealthStatusResponseBody;
|
|
3413
3425
|
static names(): { [key: string]: string } {
|
|
3414
3426
|
return {
|
|
3415
3427
|
headers: 'headers',
|
|
@@ -3494,9 +3506,9 @@ export class DescribeHighDefinationMonitorResponseBody extends $tea.Model {
|
|
|
3494
3506
|
}
|
|
3495
3507
|
|
|
3496
3508
|
export class DescribeHighDefinationMonitorResponse extends $tea.Model {
|
|
3497
|
-
headers
|
|
3498
|
-
statusCode
|
|
3499
|
-
body
|
|
3509
|
+
headers?: { [key: string]: string };
|
|
3510
|
+
statusCode?: number;
|
|
3511
|
+
body?: DescribeHighDefinationMonitorResponseBody;
|
|
3500
3512
|
static names(): { [key: string]: string } {
|
|
3501
3513
|
return {
|
|
3502
3514
|
headers: 'headers',
|
|
@@ -3584,9 +3596,9 @@ export class DescribeListenerAccessControlAttributeResponseBody extends $tea.Mod
|
|
|
3584
3596
|
}
|
|
3585
3597
|
|
|
3586
3598
|
export class DescribeListenerAccessControlAttributeResponse extends $tea.Model {
|
|
3587
|
-
headers
|
|
3588
|
-
statusCode
|
|
3589
|
-
body
|
|
3599
|
+
headers?: { [key: string]: string };
|
|
3600
|
+
statusCode?: number;
|
|
3601
|
+
body?: DescribeListenerAccessControlAttributeResponseBody;
|
|
3590
3602
|
static names(): { [key: string]: string } {
|
|
3591
3603
|
return {
|
|
3592
3604
|
headers: 'headers',
|
|
@@ -3767,9 +3779,9 @@ export class DescribeLoadBalancerAttributeResponseBody extends $tea.Model {
|
|
|
3767
3779
|
}
|
|
3768
3780
|
|
|
3769
3781
|
export class DescribeLoadBalancerAttributeResponse extends $tea.Model {
|
|
3770
|
-
headers
|
|
3771
|
-
statusCode
|
|
3772
|
-
body
|
|
3782
|
+
headers?: { [key: string]: string };
|
|
3783
|
+
statusCode?: number;
|
|
3784
|
+
body?: DescribeLoadBalancerAttributeResponseBody;
|
|
3773
3785
|
static names(): { [key: string]: string } {
|
|
3774
3786
|
return {
|
|
3775
3787
|
headers: 'headers',
|
|
@@ -3864,8 +3876,10 @@ export class DescribeLoadBalancerHTTPListenerAttributeResponseBody extends $tea.
|
|
|
3864
3876
|
unhealthyThreshold?: number;
|
|
3865
3877
|
VServerGroupId?: string;
|
|
3866
3878
|
XForwardedFor?: string;
|
|
3879
|
+
XForwardedFor_ClientSrcPort?: string;
|
|
3867
3880
|
XForwardedFor_SLBID?: string;
|
|
3868
3881
|
XForwardedFor_SLBIP?: string;
|
|
3882
|
+
XForwardedFor_SLBPORT?: string;
|
|
3869
3883
|
XForwardedFor_proto?: string;
|
|
3870
3884
|
static names(): { [key: string]: string } {
|
|
3871
3885
|
return {
|
|
@@ -3904,8 +3918,10 @@ export class DescribeLoadBalancerHTTPListenerAttributeResponseBody extends $tea.
|
|
|
3904
3918
|
unhealthyThreshold: 'UnhealthyThreshold',
|
|
3905
3919
|
VServerGroupId: 'VServerGroupId',
|
|
3906
3920
|
XForwardedFor: 'XForwardedFor',
|
|
3921
|
+
XForwardedFor_ClientSrcPort: 'XForwardedFor_ClientSrcPort',
|
|
3907
3922
|
XForwardedFor_SLBID: 'XForwardedFor_SLBID',
|
|
3908
3923
|
XForwardedFor_SLBIP: 'XForwardedFor_SLBIP',
|
|
3924
|
+
XForwardedFor_SLBPORT: 'XForwardedFor_SLBPORT',
|
|
3909
3925
|
XForwardedFor_proto: 'XForwardedFor_proto',
|
|
3910
3926
|
};
|
|
3911
3927
|
}
|
|
@@ -3947,8 +3963,10 @@ export class DescribeLoadBalancerHTTPListenerAttributeResponseBody extends $tea.
|
|
|
3947
3963
|
unhealthyThreshold: 'number',
|
|
3948
3964
|
VServerGroupId: 'string',
|
|
3949
3965
|
XForwardedFor: 'string',
|
|
3966
|
+
XForwardedFor_ClientSrcPort: 'string',
|
|
3950
3967
|
XForwardedFor_SLBID: 'string',
|
|
3951
3968
|
XForwardedFor_SLBIP: 'string',
|
|
3969
|
+
XForwardedFor_SLBPORT: 'string',
|
|
3952
3970
|
XForwardedFor_proto: 'string',
|
|
3953
3971
|
};
|
|
3954
3972
|
}
|
|
@@ -3959,9 +3977,9 @@ export class DescribeLoadBalancerHTTPListenerAttributeResponseBody extends $tea.
|
|
|
3959
3977
|
}
|
|
3960
3978
|
|
|
3961
3979
|
export class DescribeLoadBalancerHTTPListenerAttributeResponse extends $tea.Model {
|
|
3962
|
-
headers
|
|
3963
|
-
statusCode
|
|
3964
|
-
body
|
|
3980
|
+
headers?: { [key: string]: string };
|
|
3981
|
+
statusCode?: number;
|
|
3982
|
+
body?: DescribeLoadBalancerHTTPListenerAttributeResponseBody;
|
|
3965
3983
|
static names(): { [key: string]: string } {
|
|
3966
3984
|
return {
|
|
3967
3985
|
headers: 'headers',
|
|
@@ -4178,9 +4196,9 @@ export class DescribeLoadBalancerHTTPSListenerAttributeResponseBody extends $tea
|
|
|
4178
4196
|
}
|
|
4179
4197
|
|
|
4180
4198
|
export class DescribeLoadBalancerHTTPSListenerAttributeResponse extends $tea.Model {
|
|
4181
|
-
headers
|
|
4182
|
-
statusCode
|
|
4183
|
-
body
|
|
4199
|
+
headers?: { [key: string]: string };
|
|
4200
|
+
statusCode?: number;
|
|
4201
|
+
body?: DescribeLoadBalancerHTTPSListenerAttributeResponseBody;
|
|
4184
4202
|
static names(): { [key: string]: string } {
|
|
4185
4203
|
return {
|
|
4186
4204
|
headers: 'headers',
|
|
@@ -4286,9 +4304,9 @@ export class DescribeLoadBalancerListenersResponseBody extends $tea.Model {
|
|
|
4286
4304
|
}
|
|
4287
4305
|
|
|
4288
4306
|
export class DescribeLoadBalancerListenersResponse extends $tea.Model {
|
|
4289
|
-
headers
|
|
4290
|
-
statusCode
|
|
4291
|
-
body
|
|
4307
|
+
headers?: { [key: string]: string };
|
|
4308
|
+
statusCode?: number;
|
|
4309
|
+
body?: DescribeLoadBalancerListenersResponseBody;
|
|
4292
4310
|
static names(): { [key: string]: string } {
|
|
4293
4311
|
return {
|
|
4294
4312
|
headers: 'headers',
|
|
@@ -4457,9 +4475,9 @@ export class DescribeLoadBalancerTCPListenerAttributeResponseBody extends $tea.M
|
|
|
4457
4475
|
}
|
|
4458
4476
|
|
|
4459
4477
|
export class DescribeLoadBalancerTCPListenerAttributeResponse extends $tea.Model {
|
|
4460
|
-
headers
|
|
4461
|
-
statusCode
|
|
4462
|
-
body
|
|
4478
|
+
headers?: { [key: string]: string };
|
|
4479
|
+
statusCode?: number;
|
|
4480
|
+
body?: DescribeLoadBalancerTCPListenerAttributeResponseBody;
|
|
4463
4481
|
static names(): { [key: string]: string } {
|
|
4464
4482
|
return {
|
|
4465
4483
|
headers: 'headers',
|
|
@@ -4604,9 +4622,9 @@ export class DescribeLoadBalancerUDPListenerAttributeResponseBody extends $tea.M
|
|
|
4604
4622
|
}
|
|
4605
4623
|
|
|
4606
4624
|
export class DescribeLoadBalancerUDPListenerAttributeResponse extends $tea.Model {
|
|
4607
|
-
headers
|
|
4608
|
-
statusCode
|
|
4609
|
-
body
|
|
4625
|
+
headers?: { [key: string]: string };
|
|
4626
|
+
statusCode?: number;
|
|
4627
|
+
body?: DescribeLoadBalancerUDPListenerAttributeResponseBody;
|
|
4610
4628
|
static names(): { [key: string]: string } {
|
|
4611
4629
|
return {
|
|
4612
4630
|
headers: 'headers',
|
|
@@ -4751,9 +4769,9 @@ export class DescribeLoadBalancersResponseBody extends $tea.Model {
|
|
|
4751
4769
|
}
|
|
4752
4770
|
|
|
4753
4771
|
export class DescribeLoadBalancersResponse extends $tea.Model {
|
|
4754
|
-
headers
|
|
4755
|
-
statusCode
|
|
4756
|
-
body
|
|
4772
|
+
headers?: { [key: string]: string };
|
|
4773
|
+
statusCode?: number;
|
|
4774
|
+
body?: DescribeLoadBalancersResponseBody;
|
|
4757
4775
|
static names(): { [key: string]: string } {
|
|
4758
4776
|
return {
|
|
4759
4777
|
headers: 'headers',
|
|
@@ -4847,9 +4865,9 @@ export class DescribeMasterSlaveServerGroupAttributeResponseBody extends $tea.Mo
|
|
|
4847
4865
|
}
|
|
4848
4866
|
|
|
4849
4867
|
export class DescribeMasterSlaveServerGroupAttributeResponse extends $tea.Model {
|
|
4850
|
-
headers
|
|
4851
|
-
statusCode
|
|
4852
|
-
body
|
|
4868
|
+
headers?: { [key: string]: string };
|
|
4869
|
+
statusCode?: number;
|
|
4870
|
+
body?: DescribeMasterSlaveServerGroupAttributeResponseBody;
|
|
4853
4871
|
static names(): { [key: string]: string } {
|
|
4854
4872
|
return {
|
|
4855
4873
|
headers: 'headers',
|
|
@@ -4937,9 +4955,9 @@ export class DescribeMasterSlaveServerGroupsResponseBody extends $tea.Model {
|
|
|
4937
4955
|
}
|
|
4938
4956
|
|
|
4939
4957
|
export class DescribeMasterSlaveServerGroupsResponse extends $tea.Model {
|
|
4940
|
-
headers
|
|
4941
|
-
statusCode
|
|
4942
|
-
body
|
|
4958
|
+
headers?: { [key: string]: string };
|
|
4959
|
+
statusCode?: number;
|
|
4960
|
+
body?: DescribeMasterSlaveServerGroupsResponseBody;
|
|
4943
4961
|
static names(): { [key: string]: string } {
|
|
4944
4962
|
return {
|
|
4945
4963
|
headers: 'headers',
|
|
@@ -5018,9 +5036,9 @@ export class DescribeRegionsResponseBody extends $tea.Model {
|
|
|
5018
5036
|
}
|
|
5019
5037
|
|
|
5020
5038
|
export class DescribeRegionsResponse extends $tea.Model {
|
|
5021
|
-
headers
|
|
5022
|
-
statusCode
|
|
5023
|
-
body
|
|
5039
|
+
headers?: { [key: string]: string };
|
|
5040
|
+
statusCode?: number;
|
|
5041
|
+
body?: DescribeRegionsResponseBody;
|
|
5024
5042
|
static names(): { [key: string]: string } {
|
|
5025
5043
|
return {
|
|
5026
5044
|
headers: 'headers',
|
|
@@ -5162,9 +5180,9 @@ export class DescribeRuleAttributeResponseBody extends $tea.Model {
|
|
|
5162
5180
|
}
|
|
5163
5181
|
|
|
5164
5182
|
export class DescribeRuleAttributeResponse extends $tea.Model {
|
|
5165
|
-
headers
|
|
5166
|
-
statusCode
|
|
5167
|
-
body
|
|
5183
|
+
headers?: { [key: string]: string };
|
|
5184
|
+
statusCode?: number;
|
|
5185
|
+
body?: DescribeRuleAttributeResponseBody;
|
|
5168
5186
|
static names(): { [key: string]: string } {
|
|
5169
5187
|
return {
|
|
5170
5188
|
headers: 'headers',
|
|
@@ -5249,9 +5267,9 @@ export class DescribeRulesResponseBody extends $tea.Model {
|
|
|
5249
5267
|
}
|
|
5250
5268
|
|
|
5251
5269
|
export class DescribeRulesResponse extends $tea.Model {
|
|
5252
|
-
headers
|
|
5253
|
-
statusCode
|
|
5254
|
-
body
|
|
5270
|
+
headers?: { [key: string]: string };
|
|
5271
|
+
statusCode?: number;
|
|
5272
|
+
body?: DescribeRulesResponseBody;
|
|
5255
5273
|
static names(): { [key: string]: string } {
|
|
5256
5274
|
return {
|
|
5257
5275
|
headers: 'headers',
|
|
@@ -5336,9 +5354,9 @@ export class DescribeServerCertificatesResponseBody extends $tea.Model {
|
|
|
5336
5354
|
}
|
|
5337
5355
|
|
|
5338
5356
|
export class DescribeServerCertificatesResponse extends $tea.Model {
|
|
5339
|
-
headers
|
|
5340
|
-
statusCode
|
|
5341
|
-
body
|
|
5357
|
+
headers?: { [key: string]: string };
|
|
5358
|
+
statusCode?: number;
|
|
5359
|
+
body?: DescribeServerCertificatesResponseBody;
|
|
5342
5360
|
static names(): { [key: string]: string } {
|
|
5343
5361
|
return {
|
|
5344
5362
|
headers: 'headers',
|
|
@@ -5438,9 +5456,9 @@ export class DescribeTagsResponseBody extends $tea.Model {
|
|
|
5438
5456
|
}
|
|
5439
5457
|
|
|
5440
5458
|
export class DescribeTagsResponse extends $tea.Model {
|
|
5441
|
-
headers
|
|
5442
|
-
statusCode
|
|
5443
|
-
body
|
|
5459
|
+
headers?: { [key: string]: string };
|
|
5460
|
+
statusCode?: number;
|
|
5461
|
+
body?: DescribeTagsResponseBody;
|
|
5444
5462
|
static names(): { [key: string]: string } {
|
|
5445
5463
|
return {
|
|
5446
5464
|
headers: 'headers',
|
|
@@ -5534,9 +5552,9 @@ export class DescribeVServerGroupAttributeResponseBody extends $tea.Model {
|
|
|
5534
5552
|
}
|
|
5535
5553
|
|
|
5536
5554
|
export class DescribeVServerGroupAttributeResponse extends $tea.Model {
|
|
5537
|
-
headers
|
|
5538
|
-
statusCode
|
|
5539
|
-
body
|
|
5555
|
+
headers?: { [key: string]: string };
|
|
5556
|
+
statusCode?: number;
|
|
5557
|
+
body?: DescribeVServerGroupAttributeResponseBody;
|
|
5540
5558
|
static names(): { [key: string]: string } {
|
|
5541
5559
|
return {
|
|
5542
5560
|
headers: 'headers',
|
|
@@ -5627,9 +5645,9 @@ export class DescribeVServerGroupsResponseBody extends $tea.Model {
|
|
|
5627
5645
|
}
|
|
5628
5646
|
|
|
5629
5647
|
export class DescribeVServerGroupsResponse extends $tea.Model {
|
|
5630
|
-
headers
|
|
5631
|
-
statusCode
|
|
5632
|
-
body
|
|
5648
|
+
headers?: { [key: string]: string };
|
|
5649
|
+
statusCode?: number;
|
|
5650
|
+
body?: DescribeVServerGroupsResponseBody;
|
|
5633
5651
|
static names(): { [key: string]: string } {
|
|
5634
5652
|
return {
|
|
5635
5653
|
headers: 'headers',
|
|
@@ -5705,9 +5723,9 @@ export class DescribeZonesResponseBody extends $tea.Model {
|
|
|
5705
5723
|
}
|
|
5706
5724
|
|
|
5707
5725
|
export class DescribeZonesResponse extends $tea.Model {
|
|
5708
|
-
headers
|
|
5709
|
-
statusCode
|
|
5710
|
-
body
|
|
5726
|
+
headers?: { [key: string]: string };
|
|
5727
|
+
statusCode?: number;
|
|
5728
|
+
body?: DescribeZonesResponseBody;
|
|
5711
5729
|
static names(): { [key: string]: string } {
|
|
5712
5730
|
return {
|
|
5713
5731
|
headers: 'headers',
|
|
@@ -5792,9 +5810,9 @@ export class EnableHighDefinationMonitorResponseBody extends $tea.Model {
|
|
|
5792
5810
|
}
|
|
5793
5811
|
|
|
5794
5812
|
export class EnableHighDefinationMonitorResponse extends $tea.Model {
|
|
5795
|
-
headers
|
|
5796
|
-
statusCode
|
|
5797
|
-
body
|
|
5813
|
+
headers?: { [key: string]: string };
|
|
5814
|
+
statusCode?: number;
|
|
5815
|
+
body?: EnableHighDefinationMonitorResponseBody;
|
|
5798
5816
|
static names(): { [key: string]: string } {
|
|
5799
5817
|
return {
|
|
5800
5818
|
headers: 'headers',
|
|
@@ -5894,9 +5912,9 @@ export class ListTLSCipherPoliciesResponseBody extends $tea.Model {
|
|
|
5894
5912
|
}
|
|
5895
5913
|
|
|
5896
5914
|
export class ListTLSCipherPoliciesResponse extends $tea.Model {
|
|
5897
|
-
headers
|
|
5898
|
-
statusCode
|
|
5899
|
-
body
|
|
5915
|
+
headers?: { [key: string]: string };
|
|
5916
|
+
statusCode?: number;
|
|
5917
|
+
body?: ListTLSCipherPoliciesResponseBody;
|
|
5900
5918
|
static names(): { [key: string]: string } {
|
|
5901
5919
|
return {
|
|
5902
5920
|
headers: 'headers',
|
|
@@ -5987,9 +6005,9 @@ export class ListTagResourcesResponseBody extends $tea.Model {
|
|
|
5987
6005
|
}
|
|
5988
6006
|
|
|
5989
6007
|
export class ListTagResourcesResponse extends $tea.Model {
|
|
5990
|
-
headers
|
|
5991
|
-
statusCode
|
|
5992
|
-
body
|
|
6008
|
+
headers?: { [key: string]: string };
|
|
6009
|
+
statusCode?: number;
|
|
6010
|
+
body?: ListTagResourcesResponseBody;
|
|
5993
6011
|
static names(): { [key: string]: string } {
|
|
5994
6012
|
return {
|
|
5995
6013
|
headers: 'headers',
|
|
@@ -6071,9 +6089,9 @@ export class ModifyHighDefinationMonitorResponseBody extends $tea.Model {
|
|
|
6071
6089
|
}
|
|
6072
6090
|
|
|
6073
6091
|
export class ModifyHighDefinationMonitorResponse extends $tea.Model {
|
|
6074
|
-
headers
|
|
6075
|
-
statusCode
|
|
6076
|
-
body
|
|
6092
|
+
headers?: { [key: string]: string };
|
|
6093
|
+
statusCode?: number;
|
|
6094
|
+
body?: ModifyHighDefinationMonitorResponseBody;
|
|
6077
6095
|
static names(): { [key: string]: string } {
|
|
6078
6096
|
return {
|
|
6079
6097
|
headers: 'headers',
|
|
@@ -6161,9 +6179,9 @@ export class ModifyLoadBalancerInstanceChargeTypeResponseBody extends $tea.Model
|
|
|
6161
6179
|
}
|
|
6162
6180
|
|
|
6163
6181
|
export class ModifyLoadBalancerInstanceChargeTypeResponse extends $tea.Model {
|
|
6164
|
-
headers
|
|
6165
|
-
statusCode
|
|
6166
|
-
body
|
|
6182
|
+
headers?: { [key: string]: string };
|
|
6183
|
+
statusCode?: number;
|
|
6184
|
+
body?: ModifyLoadBalancerInstanceChargeTypeResponseBody;
|
|
6167
6185
|
static names(): { [key: string]: string } {
|
|
6168
6186
|
return {
|
|
6169
6187
|
headers: 'headers',
|
|
@@ -6248,9 +6266,9 @@ export class ModifyLoadBalancerInstanceSpecResponseBody extends $tea.Model {
|
|
|
6248
6266
|
}
|
|
6249
6267
|
|
|
6250
6268
|
export class ModifyLoadBalancerInstanceSpecResponse extends $tea.Model {
|
|
6251
|
-
headers
|
|
6252
|
-
statusCode
|
|
6253
|
-
body
|
|
6269
|
+
headers?: { [key: string]: string };
|
|
6270
|
+
statusCode?: number;
|
|
6271
|
+
body?: ModifyLoadBalancerInstanceSpecResponseBody;
|
|
6254
6272
|
static names(): { [key: string]: string } {
|
|
6255
6273
|
return {
|
|
6256
6274
|
headers: 'headers',
|
|
@@ -6338,9 +6356,9 @@ export class ModifyLoadBalancerInternetSpecResponseBody extends $tea.Model {
|
|
|
6338
6356
|
}
|
|
6339
6357
|
|
|
6340
6358
|
export class ModifyLoadBalancerInternetSpecResponse extends $tea.Model {
|
|
6341
|
-
headers
|
|
6342
|
-
statusCode
|
|
6343
|
-
body
|
|
6359
|
+
headers?: { [key: string]: string };
|
|
6360
|
+
statusCode?: number;
|
|
6361
|
+
body?: ModifyLoadBalancerInternetSpecResponseBody;
|
|
6344
6362
|
static names(): { [key: string]: string } {
|
|
6345
6363
|
return {
|
|
6346
6364
|
headers: 'headers',
|
|
@@ -6431,9 +6449,9 @@ export class ModifyLoadBalancerPayTypeResponseBody extends $tea.Model {
|
|
|
6431
6449
|
}
|
|
6432
6450
|
|
|
6433
6451
|
export class ModifyLoadBalancerPayTypeResponse extends $tea.Model {
|
|
6434
|
-
headers
|
|
6435
|
-
statusCode
|
|
6436
|
-
body
|
|
6452
|
+
headers?: { [key: string]: string };
|
|
6453
|
+
statusCode?: number;
|
|
6454
|
+
body?: ModifyLoadBalancerPayTypeResponseBody;
|
|
6437
6455
|
static names(): { [key: string]: string } {
|
|
6438
6456
|
return {
|
|
6439
6457
|
headers: 'headers',
|
|
@@ -6521,9 +6539,9 @@ export class ModifyVServerGroupBackendServersResponseBody extends $tea.Model {
|
|
|
6521
6539
|
}
|
|
6522
6540
|
|
|
6523
6541
|
export class ModifyVServerGroupBackendServersResponse extends $tea.Model {
|
|
6524
|
-
headers
|
|
6525
|
-
statusCode
|
|
6526
|
-
body
|
|
6542
|
+
headers?: { [key: string]: string };
|
|
6543
|
+
statusCode?: number;
|
|
6544
|
+
body?: ModifyVServerGroupBackendServersResponseBody;
|
|
6527
6545
|
static names(): { [key: string]: string } {
|
|
6528
6546
|
return {
|
|
6529
6547
|
headers: 'headers',
|
|
@@ -6611,9 +6629,9 @@ export class MoveResourceGroupResponseBody extends $tea.Model {
|
|
|
6611
6629
|
}
|
|
6612
6630
|
|
|
6613
6631
|
export class MoveResourceGroupResponse extends $tea.Model {
|
|
6614
|
-
headers
|
|
6615
|
-
statusCode
|
|
6616
|
-
body
|
|
6632
|
+
headers?: { [key: string]: string };
|
|
6633
|
+
statusCode?: number;
|
|
6634
|
+
body?: MoveResourceGroupResponseBody;
|
|
6617
6635
|
static names(): { [key: string]: string } {
|
|
6618
6636
|
return {
|
|
6619
6637
|
headers: 'headers',
|
|
@@ -6692,9 +6710,9 @@ export class RemoveAccessControlListEntryResponseBody extends $tea.Model {
|
|
|
6692
6710
|
}
|
|
6693
6711
|
|
|
6694
6712
|
export class RemoveAccessControlListEntryResponse extends $tea.Model {
|
|
6695
|
-
headers
|
|
6696
|
-
statusCode
|
|
6697
|
-
body
|
|
6713
|
+
headers?: { [key: string]: string };
|
|
6714
|
+
statusCode?: number;
|
|
6715
|
+
body?: RemoveAccessControlListEntryResponseBody;
|
|
6698
6716
|
static names(): { [key: string]: string } {
|
|
6699
6717
|
return {
|
|
6700
6718
|
headers: 'headers',
|
|
@@ -6779,9 +6797,9 @@ export class RemoveBackendServersResponseBody extends $tea.Model {
|
|
|
6779
6797
|
}
|
|
6780
6798
|
|
|
6781
6799
|
export class RemoveBackendServersResponse extends $tea.Model {
|
|
6782
|
-
headers
|
|
6783
|
-
statusCode
|
|
6784
|
-
body
|
|
6800
|
+
headers?: { [key: string]: string };
|
|
6801
|
+
statusCode?: number;
|
|
6802
|
+
body?: RemoveBackendServersResponseBody;
|
|
6785
6803
|
static names(): { [key: string]: string } {
|
|
6786
6804
|
return {
|
|
6787
6805
|
headers: 'headers',
|
|
@@ -6866,9 +6884,9 @@ export class RemoveListenerWhiteListItemResponseBody extends $tea.Model {
|
|
|
6866
6884
|
}
|
|
6867
6885
|
|
|
6868
6886
|
export class RemoveListenerWhiteListItemResponse extends $tea.Model {
|
|
6869
|
-
headers
|
|
6870
|
-
statusCode
|
|
6871
|
-
body
|
|
6887
|
+
headers?: { [key: string]: string };
|
|
6888
|
+
statusCode?: number;
|
|
6889
|
+
body?: RemoveListenerWhiteListItemResponseBody;
|
|
6872
6890
|
static names(): { [key: string]: string } {
|
|
6873
6891
|
return {
|
|
6874
6892
|
headers: 'headers',
|
|
@@ -6947,9 +6965,9 @@ export class RemoveTagsResponseBody extends $tea.Model {
|
|
|
6947
6965
|
}
|
|
6948
6966
|
|
|
6949
6967
|
export class RemoveTagsResponse extends $tea.Model {
|
|
6950
|
-
headers
|
|
6951
|
-
statusCode
|
|
6952
|
-
body
|
|
6968
|
+
headers?: { [key: string]: string };
|
|
6969
|
+
statusCode?: number;
|
|
6970
|
+
body?: RemoveTagsResponseBody;
|
|
6953
6971
|
static names(): { [key: string]: string } {
|
|
6954
6972
|
return {
|
|
6955
6973
|
headers: 'headers',
|
|
@@ -7034,9 +7052,9 @@ export class RemoveVServerGroupBackendServersResponseBody extends $tea.Model {
|
|
|
7034
7052
|
}
|
|
7035
7053
|
|
|
7036
7054
|
export class RemoveVServerGroupBackendServersResponse extends $tea.Model {
|
|
7037
|
-
headers
|
|
7038
|
-
statusCode
|
|
7039
|
-
body
|
|
7055
|
+
headers?: { [key: string]: string };
|
|
7056
|
+
statusCode?: number;
|
|
7057
|
+
body?: RemoveVServerGroupBackendServersResponseBody;
|
|
7040
7058
|
static names(): { [key: string]: string } {
|
|
7041
7059
|
return {
|
|
7042
7060
|
headers: 'headers',
|
|
@@ -7115,9 +7133,9 @@ export class SetAccessControlListAttributeResponseBody extends $tea.Model {
|
|
|
7115
7133
|
}
|
|
7116
7134
|
|
|
7117
7135
|
export class SetAccessControlListAttributeResponse extends $tea.Model {
|
|
7118
|
-
headers
|
|
7119
|
-
statusCode
|
|
7120
|
-
body
|
|
7136
|
+
headers?: { [key: string]: string };
|
|
7137
|
+
statusCode?: number;
|
|
7138
|
+
body?: SetAccessControlListAttributeResponseBody;
|
|
7121
7139
|
static names(): { [key: string]: string } {
|
|
7122
7140
|
return {
|
|
7123
7141
|
headers: 'headers',
|
|
@@ -7199,9 +7217,9 @@ export class SetAccessLogsDownloadAttributeResponseBody extends $tea.Model {
|
|
|
7199
7217
|
}
|
|
7200
7218
|
|
|
7201
7219
|
export class SetAccessLogsDownloadAttributeResponse extends $tea.Model {
|
|
7202
|
-
headers
|
|
7203
|
-
statusCode
|
|
7204
|
-
body
|
|
7220
|
+
headers?: { [key: string]: string };
|
|
7221
|
+
statusCode?: number;
|
|
7222
|
+
body?: SetAccessLogsDownloadAttributeResponseBody;
|
|
7205
7223
|
static names(): { [key: string]: string } {
|
|
7206
7224
|
return {
|
|
7207
7225
|
headers: 'headers',
|
|
@@ -7286,9 +7304,9 @@ export class SetBackendServersResponseBody extends $tea.Model {
|
|
|
7286
7304
|
}
|
|
7287
7305
|
|
|
7288
7306
|
export class SetBackendServersResponse extends $tea.Model {
|
|
7289
|
-
headers
|
|
7290
|
-
statusCode
|
|
7291
|
-
body
|
|
7307
|
+
headers?: { [key: string]: string };
|
|
7308
|
+
statusCode?: number;
|
|
7309
|
+
body?: SetBackendServersResponseBody;
|
|
7292
7310
|
static names(): { [key: string]: string } {
|
|
7293
7311
|
return {
|
|
7294
7312
|
headers: 'headers',
|
|
@@ -7367,9 +7385,9 @@ export class SetCACertificateNameResponseBody extends $tea.Model {
|
|
|
7367
7385
|
}
|
|
7368
7386
|
|
|
7369
7387
|
export class SetCACertificateNameResponse extends $tea.Model {
|
|
7370
|
-
headers
|
|
7371
|
-
statusCode
|
|
7372
|
-
body
|
|
7388
|
+
headers?: { [key: string]: string };
|
|
7389
|
+
statusCode?: number;
|
|
7390
|
+
body?: SetCACertificateNameResponseBody;
|
|
7373
7391
|
static names(): { [key: string]: string } {
|
|
7374
7392
|
return {
|
|
7375
7393
|
headers: 'headers',
|
|
@@ -7448,9 +7466,9 @@ export class SetDomainExtensionAttributeResponseBody extends $tea.Model {
|
|
|
7448
7466
|
}
|
|
7449
7467
|
|
|
7450
7468
|
export class SetDomainExtensionAttributeResponse extends $tea.Model {
|
|
7451
|
-
headers
|
|
7452
|
-
statusCode
|
|
7453
|
-
body
|
|
7469
|
+
headers?: { [key: string]: string };
|
|
7470
|
+
statusCode?: number;
|
|
7471
|
+
body?: SetDomainExtensionAttributeResponseBody;
|
|
7454
7472
|
static names(): { [key: string]: string } {
|
|
7455
7473
|
return {
|
|
7456
7474
|
headers: 'headers',
|
|
@@ -7535,9 +7553,9 @@ export class SetListenerAccessControlStatusResponseBody extends $tea.Model {
|
|
|
7535
7553
|
}
|
|
7536
7554
|
|
|
7537
7555
|
export class SetListenerAccessControlStatusResponse extends $tea.Model {
|
|
7538
|
-
headers
|
|
7539
|
-
statusCode
|
|
7540
|
-
body
|
|
7556
|
+
headers?: { [key: string]: string };
|
|
7557
|
+
statusCode?: number;
|
|
7558
|
+
body?: SetListenerAccessControlStatusResponseBody;
|
|
7541
7559
|
static names(): { [key: string]: string } {
|
|
7542
7560
|
return {
|
|
7543
7561
|
headers: 'headers',
|
|
@@ -7616,9 +7634,9 @@ export class SetLoadBalancerDeleteProtectionResponseBody extends $tea.Model {
|
|
|
7616
7634
|
}
|
|
7617
7635
|
|
|
7618
7636
|
export class SetLoadBalancerDeleteProtectionResponse extends $tea.Model {
|
|
7619
|
-
headers
|
|
7620
|
-
statusCode
|
|
7621
|
-
body
|
|
7637
|
+
headers?: { [key: string]: string };
|
|
7638
|
+
statusCode?: number;
|
|
7639
|
+
body?: SetLoadBalancerDeleteProtectionResponseBody;
|
|
7622
7640
|
static names(): { [key: string]: string } {
|
|
7623
7641
|
return {
|
|
7624
7642
|
headers: 'headers',
|
|
@@ -7674,8 +7692,10 @@ export class SetLoadBalancerHTTPListenerAttributeRequest extends $tea.Model {
|
|
|
7674
7692
|
VServerGroup?: string;
|
|
7675
7693
|
VServerGroupId?: string;
|
|
7676
7694
|
XForwardedFor?: string;
|
|
7695
|
+
XForwardedFor_ClientSrcPort?: string;
|
|
7677
7696
|
XForwardedFor_SLBID?: string;
|
|
7678
7697
|
XForwardedFor_SLBIP?: string;
|
|
7698
|
+
XForwardedFor_SLBPORT?: string;
|
|
7679
7699
|
XForwardedFor_proto?: string;
|
|
7680
7700
|
static names(): { [key: string]: string } {
|
|
7681
7701
|
return {
|
|
@@ -7712,8 +7732,10 @@ export class SetLoadBalancerHTTPListenerAttributeRequest extends $tea.Model {
|
|
|
7712
7732
|
VServerGroup: 'VServerGroup',
|
|
7713
7733
|
VServerGroupId: 'VServerGroupId',
|
|
7714
7734
|
XForwardedFor: 'XForwardedFor',
|
|
7735
|
+
XForwardedFor_ClientSrcPort: 'XForwardedFor_ClientSrcPort',
|
|
7715
7736
|
XForwardedFor_SLBID: 'XForwardedFor_SLBID',
|
|
7716
7737
|
XForwardedFor_SLBIP: 'XForwardedFor_SLBIP',
|
|
7738
|
+
XForwardedFor_SLBPORT: 'XForwardedFor_SLBPORT',
|
|
7717
7739
|
XForwardedFor_proto: 'XForwardedFor_proto',
|
|
7718
7740
|
};
|
|
7719
7741
|
}
|
|
@@ -7753,8 +7775,10 @@ export class SetLoadBalancerHTTPListenerAttributeRequest extends $tea.Model {
|
|
|
7753
7775
|
VServerGroup: 'string',
|
|
7754
7776
|
VServerGroupId: 'string',
|
|
7755
7777
|
XForwardedFor: 'string',
|
|
7778
|
+
XForwardedFor_ClientSrcPort: 'string',
|
|
7756
7779
|
XForwardedFor_SLBID: 'string',
|
|
7757
7780
|
XForwardedFor_SLBIP: 'string',
|
|
7781
|
+
XForwardedFor_SLBPORT: 'string',
|
|
7758
7782
|
XForwardedFor_proto: 'string',
|
|
7759
7783
|
};
|
|
7760
7784
|
}
|
|
@@ -7784,9 +7808,9 @@ export class SetLoadBalancerHTTPListenerAttributeResponseBody extends $tea.Model
|
|
|
7784
7808
|
}
|
|
7785
7809
|
|
|
7786
7810
|
export class SetLoadBalancerHTTPListenerAttributeResponse extends $tea.Model {
|
|
7787
|
-
headers
|
|
7788
|
-
statusCode
|
|
7789
|
-
body
|
|
7811
|
+
headers?: { [key: string]: string };
|
|
7812
|
+
statusCode?: number;
|
|
7813
|
+
body?: SetLoadBalancerHTTPListenerAttributeResponseBody;
|
|
7790
7814
|
static names(): { [key: string]: string } {
|
|
7791
7815
|
return {
|
|
7792
7816
|
headers: 'headers',
|
|
@@ -7846,8 +7870,10 @@ export class SetLoadBalancerHTTPSListenerAttributeRequest extends $tea.Model {
|
|
|
7846
7870
|
VServerGroup?: string;
|
|
7847
7871
|
VServerGroupId?: string;
|
|
7848
7872
|
XForwardedFor?: string;
|
|
7873
|
+
XForwardedFor_ClientSrcPort?: string;
|
|
7849
7874
|
XForwardedFor_SLBID?: string;
|
|
7850
7875
|
XForwardedFor_SLBIP?: string;
|
|
7876
|
+
XForwardedFor_SLBPORT?: string;
|
|
7851
7877
|
XForwardedFor_proto?: string;
|
|
7852
7878
|
static names(): { [key: string]: string } {
|
|
7853
7879
|
return {
|
|
@@ -7888,8 +7914,10 @@ export class SetLoadBalancerHTTPSListenerAttributeRequest extends $tea.Model {
|
|
|
7888
7914
|
VServerGroup: 'VServerGroup',
|
|
7889
7915
|
VServerGroupId: 'VServerGroupId',
|
|
7890
7916
|
XForwardedFor: 'XForwardedFor',
|
|
7917
|
+
XForwardedFor_ClientSrcPort: 'XForwardedFor_ClientSrcPort',
|
|
7891
7918
|
XForwardedFor_SLBID: 'XForwardedFor_SLBID',
|
|
7892
7919
|
XForwardedFor_SLBIP: 'XForwardedFor_SLBIP',
|
|
7920
|
+
XForwardedFor_SLBPORT: 'XForwardedFor_SLBPORT',
|
|
7893
7921
|
XForwardedFor_proto: 'XForwardedFor_proto',
|
|
7894
7922
|
};
|
|
7895
7923
|
}
|
|
@@ -7933,8 +7961,10 @@ export class SetLoadBalancerHTTPSListenerAttributeRequest extends $tea.Model {
|
|
|
7933
7961
|
VServerGroup: 'string',
|
|
7934
7962
|
VServerGroupId: 'string',
|
|
7935
7963
|
XForwardedFor: 'string',
|
|
7964
|
+
XForwardedFor_ClientSrcPort: 'string',
|
|
7936
7965
|
XForwardedFor_SLBID: 'string',
|
|
7937
7966
|
XForwardedFor_SLBIP: 'string',
|
|
7967
|
+
XForwardedFor_SLBPORT: 'string',
|
|
7938
7968
|
XForwardedFor_proto: 'string',
|
|
7939
7969
|
};
|
|
7940
7970
|
}
|
|
@@ -7964,9 +7994,9 @@ export class SetLoadBalancerHTTPSListenerAttributeResponseBody extends $tea.Mode
|
|
|
7964
7994
|
}
|
|
7965
7995
|
|
|
7966
7996
|
export class SetLoadBalancerHTTPSListenerAttributeResponse extends $tea.Model {
|
|
7967
|
-
headers
|
|
7968
|
-
statusCode
|
|
7969
|
-
body
|
|
7997
|
+
headers?: { [key: string]: string };
|
|
7998
|
+
statusCode?: number;
|
|
7999
|
+
body?: SetLoadBalancerHTTPSListenerAttributeResponseBody;
|
|
7970
8000
|
static names(): { [key: string]: string } {
|
|
7971
8001
|
return {
|
|
7972
8002
|
headers: 'headers',
|
|
@@ -8048,9 +8078,9 @@ export class SetLoadBalancerModificationProtectionResponseBody extends $tea.Mode
|
|
|
8048
8078
|
}
|
|
8049
8079
|
|
|
8050
8080
|
export class SetLoadBalancerModificationProtectionResponse extends $tea.Model {
|
|
8051
|
-
headers
|
|
8052
|
-
statusCode
|
|
8053
|
-
body
|
|
8081
|
+
headers?: { [key: string]: string };
|
|
8082
|
+
statusCode?: number;
|
|
8083
|
+
body?: SetLoadBalancerModificationProtectionResponseBody;
|
|
8054
8084
|
static names(): { [key: string]: string } {
|
|
8055
8085
|
return {
|
|
8056
8086
|
headers: 'headers',
|
|
@@ -8129,9 +8159,9 @@ export class SetLoadBalancerNameResponseBody extends $tea.Model {
|
|
|
8129
8159
|
}
|
|
8130
8160
|
|
|
8131
8161
|
export class SetLoadBalancerNameResponse extends $tea.Model {
|
|
8132
|
-
headers
|
|
8133
|
-
statusCode
|
|
8134
|
-
body
|
|
8162
|
+
headers?: { [key: string]: string };
|
|
8163
|
+
statusCode?: number;
|
|
8164
|
+
body?: SetLoadBalancerNameResponseBody;
|
|
8135
8165
|
static names(): { [key: string]: string } {
|
|
8136
8166
|
return {
|
|
8137
8167
|
headers: 'headers',
|
|
@@ -8210,9 +8240,9 @@ export class SetLoadBalancerStatusResponseBody extends $tea.Model {
|
|
|
8210
8240
|
}
|
|
8211
8241
|
|
|
8212
8242
|
export class SetLoadBalancerStatusResponse extends $tea.Model {
|
|
8213
|
-
headers
|
|
8214
|
-
statusCode
|
|
8215
|
-
body
|
|
8243
|
+
headers?: { [key: string]: string };
|
|
8244
|
+
statusCode?: number;
|
|
8245
|
+
body?: SetLoadBalancerStatusResponseBody;
|
|
8216
8246
|
static names(): { [key: string]: string } {
|
|
8217
8247
|
return {
|
|
8218
8248
|
headers: 'headers',
|
|
@@ -8369,9 +8399,9 @@ export class SetLoadBalancerTCPListenerAttributeResponseBody extends $tea.Model
|
|
|
8369
8399
|
}
|
|
8370
8400
|
|
|
8371
8401
|
export class SetLoadBalancerTCPListenerAttributeResponse extends $tea.Model {
|
|
8372
|
-
headers
|
|
8373
|
-
statusCode
|
|
8374
|
-
body
|
|
8402
|
+
headers?: { [key: string]: string };
|
|
8403
|
+
statusCode?: number;
|
|
8404
|
+
body?: SetLoadBalancerTCPListenerAttributeResponseBody;
|
|
8375
8405
|
static names(): { [key: string]: string } {
|
|
8376
8406
|
return {
|
|
8377
8407
|
headers: 'headers',
|
|
@@ -8507,9 +8537,9 @@ export class SetLoadBalancerUDPListenerAttributeResponseBody extends $tea.Model
|
|
|
8507
8537
|
}
|
|
8508
8538
|
|
|
8509
8539
|
export class SetLoadBalancerUDPListenerAttributeResponse extends $tea.Model {
|
|
8510
|
-
headers
|
|
8511
|
-
statusCode
|
|
8512
|
-
body
|
|
8540
|
+
headers?: { [key: string]: string };
|
|
8541
|
+
statusCode?: number;
|
|
8542
|
+
body?: SetLoadBalancerUDPListenerAttributeResponseBody;
|
|
8513
8543
|
static names(): { [key: string]: string } {
|
|
8514
8544
|
return {
|
|
8515
8545
|
headers: 'headers',
|
|
@@ -8636,9 +8666,9 @@ export class SetRuleResponseBody extends $tea.Model {
|
|
|
8636
8666
|
}
|
|
8637
8667
|
|
|
8638
8668
|
export class SetRuleResponse extends $tea.Model {
|
|
8639
|
-
headers
|
|
8640
|
-
statusCode
|
|
8641
|
-
body
|
|
8669
|
+
headers?: { [key: string]: string };
|
|
8670
|
+
statusCode?: number;
|
|
8671
|
+
body?: SetRuleResponseBody;
|
|
8642
8672
|
static names(): { [key: string]: string } {
|
|
8643
8673
|
return {
|
|
8644
8674
|
headers: 'headers',
|
|
@@ -8717,9 +8747,9 @@ export class SetServerCertificateNameResponseBody extends $tea.Model {
|
|
|
8717
8747
|
}
|
|
8718
8748
|
|
|
8719
8749
|
export class SetServerCertificateNameResponse extends $tea.Model {
|
|
8720
|
-
headers
|
|
8721
|
-
statusCode
|
|
8722
|
-
body
|
|
8750
|
+
headers?: { [key: string]: string };
|
|
8751
|
+
statusCode?: number;
|
|
8752
|
+
body?: SetServerCertificateNameResponseBody;
|
|
8723
8753
|
static names(): { [key: string]: string } {
|
|
8724
8754
|
return {
|
|
8725
8755
|
headers: 'headers',
|
|
@@ -8807,9 +8837,9 @@ export class SetTLSCipherPolicyAttributeResponseBody extends $tea.Model {
|
|
|
8807
8837
|
}
|
|
8808
8838
|
|
|
8809
8839
|
export class SetTLSCipherPolicyAttributeResponse extends $tea.Model {
|
|
8810
|
-
headers
|
|
8811
|
-
statusCode
|
|
8812
|
-
body
|
|
8840
|
+
headers?: { [key: string]: string };
|
|
8841
|
+
statusCode?: number;
|
|
8842
|
+
body?: SetTLSCipherPolicyAttributeResponseBody;
|
|
8813
8843
|
static names(): { [key: string]: string } {
|
|
8814
8844
|
return {
|
|
8815
8845
|
headers: 'headers',
|
|
@@ -8900,9 +8930,9 @@ export class SetVServerGroupAttributeResponseBody extends $tea.Model {
|
|
|
8900
8930
|
}
|
|
8901
8931
|
|
|
8902
8932
|
export class SetVServerGroupAttributeResponse extends $tea.Model {
|
|
8903
|
-
headers
|
|
8904
|
-
statusCode
|
|
8905
|
-
body
|
|
8933
|
+
headers?: { [key: string]: string };
|
|
8934
|
+
statusCode?: number;
|
|
8935
|
+
body?: SetVServerGroupAttributeResponseBody;
|
|
8906
8936
|
static names(): { [key: string]: string } {
|
|
8907
8937
|
return {
|
|
8908
8938
|
headers: 'headers',
|
|
@@ -8984,9 +9014,9 @@ export class StartLoadBalancerListenerResponseBody extends $tea.Model {
|
|
|
8984
9014
|
}
|
|
8985
9015
|
|
|
8986
9016
|
export class StartLoadBalancerListenerResponse extends $tea.Model {
|
|
8987
|
-
headers
|
|
8988
|
-
statusCode
|
|
8989
|
-
body
|
|
9017
|
+
headers?: { [key: string]: string };
|
|
9018
|
+
statusCode?: number;
|
|
9019
|
+
body?: StartLoadBalancerListenerResponseBody;
|
|
8990
9020
|
static names(): { [key: string]: string } {
|
|
8991
9021
|
return {
|
|
8992
9022
|
headers: 'headers',
|
|
@@ -9068,9 +9098,9 @@ export class StopLoadBalancerListenerResponseBody extends $tea.Model {
|
|
|
9068
9098
|
}
|
|
9069
9099
|
|
|
9070
9100
|
export class StopLoadBalancerListenerResponse extends $tea.Model {
|
|
9071
|
-
headers
|
|
9072
|
-
statusCode
|
|
9073
|
-
body
|
|
9101
|
+
headers?: { [key: string]: string };
|
|
9102
|
+
statusCode?: number;
|
|
9103
|
+
body?: StopLoadBalancerListenerResponseBody;
|
|
9074
9104
|
static names(): { [key: string]: string } {
|
|
9075
9105
|
return {
|
|
9076
9106
|
headers: 'headers',
|
|
@@ -9152,9 +9182,9 @@ export class TagResourcesResponseBody extends $tea.Model {
|
|
|
9152
9182
|
}
|
|
9153
9183
|
|
|
9154
9184
|
export class TagResourcesResponse extends $tea.Model {
|
|
9155
|
-
headers
|
|
9156
|
-
statusCode
|
|
9157
|
-
body
|
|
9185
|
+
headers?: { [key: string]: string };
|
|
9186
|
+
statusCode?: number;
|
|
9187
|
+
body?: TagResourcesResponseBody;
|
|
9158
9188
|
static names(): { [key: string]: string } {
|
|
9159
9189
|
return {
|
|
9160
9190
|
headers: 'headers',
|
|
@@ -9239,9 +9269,9 @@ export class UntagResourcesResponseBody extends $tea.Model {
|
|
|
9239
9269
|
}
|
|
9240
9270
|
|
|
9241
9271
|
export class UntagResourcesResponse extends $tea.Model {
|
|
9242
|
-
headers
|
|
9243
|
-
statusCode
|
|
9244
|
-
body
|
|
9272
|
+
headers?: { [key: string]: string };
|
|
9273
|
+
statusCode?: number;
|
|
9274
|
+
body?: UntagResourcesResponseBody;
|
|
9245
9275
|
static names(): { [key: string]: string } {
|
|
9246
9276
|
return {
|
|
9247
9277
|
headers: 'headers',
|
|
@@ -9353,9 +9383,9 @@ export class UploadCACertificateResponseBody extends $tea.Model {
|
|
|
9353
9383
|
}
|
|
9354
9384
|
|
|
9355
9385
|
export class UploadCACertificateResponse extends $tea.Model {
|
|
9356
|
-
headers
|
|
9357
|
-
statusCode
|
|
9358
|
-
body
|
|
9386
|
+
headers?: { [key: string]: string };
|
|
9387
|
+
statusCode?: number;
|
|
9388
|
+
body?: UploadCACertificateResponseBody;
|
|
9359
9389
|
static names(): { [key: string]: string } {
|
|
9360
9390
|
return {
|
|
9361
9391
|
headers: 'headers',
|
|
@@ -9494,9 +9524,9 @@ export class UploadServerCertificateResponseBody extends $tea.Model {
|
|
|
9494
9524
|
}
|
|
9495
9525
|
|
|
9496
9526
|
export class UploadServerCertificateResponse extends $tea.Model {
|
|
9497
|
-
headers
|
|
9498
|
-
statusCode
|
|
9499
|
-
body
|
|
9527
|
+
headers?: { [key: string]: string };
|
|
9528
|
+
statusCode?: number;
|
|
9529
|
+
body?: UploadServerCertificateResponseBody;
|
|
9500
9530
|
static names(): { [key: string]: string } {
|
|
9501
9531
|
return {
|
|
9502
9532
|
headers: 'headers',
|
|
@@ -13213,13 +13243,15 @@ export default class Client extends OpenApi {
|
|
|
13213
13243
|
}
|
|
13214
13244
|
|
|
13215
13245
|
/**
|
|
13216
|
-
|
|
13217
|
-
|
|
13218
|
-
|
|
13219
|
-
|
|
13220
|
-
|
|
13221
|
-
|
|
13222
|
-
|
|
13246
|
+
* @summary Adds IP entries to a network access control list (ACL).
|
|
13247
|
+
*
|
|
13248
|
+
* @description Each network ACL can contain one or more IP addresses or CIDR blocks. Take note of the following limits on network ACLs:
|
|
13249
|
+
* * The number of IP entries that can be added to a network ACL with each Alibaba Cloud account at a time: 50
|
|
13250
|
+
* * The maximum number of IP entries that each network ACL can contain: 300
|
|
13251
|
+
*
|
|
13252
|
+
* @param request AddAccessControlListEntryRequest
|
|
13253
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13254
|
+
* @return AddAccessControlListEntryResponse
|
|
13223
13255
|
*/
|
|
13224
13256
|
async addAccessControlListEntryWithOptions(request: AddAccessControlListEntryRequest, runtime: $Util.RuntimeOptions): Promise<AddAccessControlListEntryResponse> {
|
|
13225
13257
|
Util.validateModel(request);
|
|
@@ -13270,12 +13302,14 @@ export default class Client extends OpenApi {
|
|
|
13270
13302
|
}
|
|
13271
13303
|
|
|
13272
13304
|
/**
|
|
13273
|
-
|
|
13274
|
-
|
|
13275
|
-
|
|
13276
|
-
|
|
13277
|
-
|
|
13278
|
-
|
|
13305
|
+
* @summary Adds IP entries to a network access control list (ACL).
|
|
13306
|
+
*
|
|
13307
|
+
* @description Each network ACL can contain one or more IP addresses or CIDR blocks. Take note of the following limits on network ACLs:
|
|
13308
|
+
* * The number of IP entries that can be added to a network ACL with each Alibaba Cloud account at a time: 50
|
|
13309
|
+
* * The maximum number of IP entries that each network ACL can contain: 300
|
|
13310
|
+
*
|
|
13311
|
+
* @param request AddAccessControlListEntryRequest
|
|
13312
|
+
* @return AddAccessControlListEntryResponse
|
|
13279
13313
|
*/
|
|
13280
13314
|
async addAccessControlListEntry(request: AddAccessControlListEntryRequest): Promise<AddAccessControlListEntryResponse> {
|
|
13281
13315
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -13283,11 +13317,13 @@ export default class Client extends OpenApi {
|
|
|
13283
13317
|
}
|
|
13284
13318
|
|
|
13285
13319
|
/**
|
|
13286
|
-
|
|
13287
|
-
|
|
13288
|
-
|
|
13289
|
-
|
|
13290
|
-
|
|
13320
|
+
* @summary Adds backend servers.
|
|
13321
|
+
*
|
|
13322
|
+
* @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.
|
|
13323
|
+
*
|
|
13324
|
+
* @param request AddBackendServersRequest
|
|
13325
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13326
|
+
* @return AddBackendServersResponse
|
|
13291
13327
|
*/
|
|
13292
13328
|
async addBackendServersWithOptions(request: AddBackendServersRequest, runtime: $Util.RuntimeOptions): Promise<AddBackendServersResponse> {
|
|
13293
13329
|
Util.validateModel(request);
|
|
@@ -13338,16 +13374,25 @@ export default class Client extends OpenApi {
|
|
|
13338
13374
|
}
|
|
13339
13375
|
|
|
13340
13376
|
/**
|
|
13341
|
-
|
|
13342
|
-
|
|
13343
|
-
|
|
13344
|
-
|
|
13377
|
+
* @summary Adds backend servers.
|
|
13378
|
+
*
|
|
13379
|
+
* @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.
|
|
13380
|
+
*
|
|
13381
|
+
* @param request AddBackendServersRequest
|
|
13382
|
+
* @return AddBackendServersResponse
|
|
13345
13383
|
*/
|
|
13346
13384
|
async addBackendServers(request: AddBackendServersRequest): Promise<AddBackendServersResponse> {
|
|
13347
13385
|
let runtime = new $Util.RuntimeOptions({ });
|
|
13348
13386
|
return await this.addBackendServersWithOptions(request, runtime);
|
|
13349
13387
|
}
|
|
13350
13388
|
|
|
13389
|
+
/**
|
|
13390
|
+
* @summary Adds IP addresses to the whitelist of a listener.
|
|
13391
|
+
*
|
|
13392
|
+
* @param request AddListenerWhiteListItemRequest
|
|
13393
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13394
|
+
* @return AddListenerWhiteListItemResponse
|
|
13395
|
+
*/
|
|
13351
13396
|
async addListenerWhiteListItemWithOptions(request: AddListenerWhiteListItemRequest, runtime: $Util.RuntimeOptions): Promise<AddListenerWhiteListItemResponse> {
|
|
13352
13397
|
Util.validateModel(request);
|
|
13353
13398
|
let query = { };
|
|
@@ -13404,22 +13449,28 @@ export default class Client extends OpenApi {
|
|
|
13404
13449
|
return $tea.cast<AddListenerWhiteListItemResponse>(await this.callApi(params, req, runtime), new AddListenerWhiteListItemResponse({}));
|
|
13405
13450
|
}
|
|
13406
13451
|
|
|
13452
|
+
/**
|
|
13453
|
+
* @summary Adds IP addresses to the whitelist of a listener.
|
|
13454
|
+
*
|
|
13455
|
+
* @param request AddListenerWhiteListItemRequest
|
|
13456
|
+
* @return AddListenerWhiteListItemResponse
|
|
13457
|
+
*/
|
|
13407
13458
|
async addListenerWhiteListItem(request: AddListenerWhiteListItemRequest): Promise<AddListenerWhiteListItemResponse> {
|
|
13408
13459
|
let runtime = new $Util.RuntimeOptions({ });
|
|
13409
13460
|
return await this.addListenerWhiteListItemWithOptions(request, runtime);
|
|
13410
13461
|
}
|
|
13411
13462
|
|
|
13412
13463
|
/**
|
|
13413
|
-
|
|
13414
|
-
|
|
13415
|
-
|
|
13416
|
-
|
|
13417
|
-
|
|
13418
|
-
|
|
13419
|
-
|
|
13420
|
-
|
|
13421
|
-
|
|
13422
|
-
|
|
13464
|
+
* @description # Limits
|
|
13465
|
+
* Before you call this API, note the following limits:
|
|
13466
|
+
* * You can add up to 10 tags to each SLB instance.
|
|
13467
|
+
* * You can add up to five pairs of tags at a time.
|
|
13468
|
+
* * All the tags and keys added to an SLB instance must be unique.
|
|
13469
|
+
* * 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.
|
|
13470
|
+
*
|
|
13471
|
+
* @param request AddTagsRequest
|
|
13472
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13473
|
+
* @return AddTagsResponse
|
|
13423
13474
|
*/
|
|
13424
13475
|
async addTagsWithOptions(request: AddTagsRequest, runtime: $Util.RuntimeOptions): Promise<AddTagsResponse> {
|
|
13425
13476
|
Util.validateModel(request);
|
|
@@ -13470,21 +13521,28 @@ export default class Client extends OpenApi {
|
|
|
13470
13521
|
}
|
|
13471
13522
|
|
|
13472
13523
|
/**
|
|
13473
|
-
|
|
13474
|
-
|
|
13475
|
-
|
|
13476
|
-
|
|
13477
|
-
|
|
13478
|
-
|
|
13479
|
-
|
|
13480
|
-
|
|
13481
|
-
|
|
13524
|
+
* @description # Limits
|
|
13525
|
+
* Before you call this API, note the following limits:
|
|
13526
|
+
* * You can add up to 10 tags to each SLB instance.
|
|
13527
|
+
* * You can add up to five pairs of tags at a time.
|
|
13528
|
+
* * All the tags and keys added to an SLB instance must be unique.
|
|
13529
|
+
* * 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.
|
|
13530
|
+
*
|
|
13531
|
+
* @param request AddTagsRequest
|
|
13532
|
+
* @return AddTagsResponse
|
|
13482
13533
|
*/
|
|
13483
13534
|
async addTags(request: AddTagsRequest): Promise<AddTagsResponse> {
|
|
13484
13535
|
let runtime = new $Util.RuntimeOptions({ });
|
|
13485
13536
|
return await this.addTagsWithOptions(request, runtime);
|
|
13486
13537
|
}
|
|
13487
13538
|
|
|
13539
|
+
/**
|
|
13540
|
+
* @summary Adds backend servers to a specified server group.
|
|
13541
|
+
*
|
|
13542
|
+
* @param request AddVServerGroupBackendServersRequest
|
|
13543
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13544
|
+
* @return AddVServerGroupBackendServersResponse
|
|
13545
|
+
*/
|
|
13488
13546
|
async addVServerGroupBackendServersWithOptions(request: AddVServerGroupBackendServersRequest, runtime: $Util.RuntimeOptions): Promise<AddVServerGroupBackendServersResponse> {
|
|
13489
13547
|
Util.validateModel(request);
|
|
13490
13548
|
let query = { };
|
|
@@ -13533,20 +13591,28 @@ export default class Client extends OpenApi {
|
|
|
13533
13591
|
return $tea.cast<AddVServerGroupBackendServersResponse>(await this.callApi(params, req, runtime), new AddVServerGroupBackendServersResponse({}));
|
|
13534
13592
|
}
|
|
13535
13593
|
|
|
13594
|
+
/**
|
|
13595
|
+
* @summary Adds backend servers to a specified server group.
|
|
13596
|
+
*
|
|
13597
|
+
* @param request AddVServerGroupBackendServersRequest
|
|
13598
|
+
* @return AddVServerGroupBackendServersResponse
|
|
13599
|
+
*/
|
|
13536
13600
|
async addVServerGroupBackendServers(request: AddVServerGroupBackendServersRequest): Promise<AddVServerGroupBackendServersResponse> {
|
|
13537
13601
|
let runtime = new $Util.RuntimeOptions({ });
|
|
13538
13602
|
return await this.addVServerGroupBackendServersWithOptions(request, runtime);
|
|
13539
13603
|
}
|
|
13540
13604
|
|
|
13541
13605
|
/**
|
|
13542
|
-
|
|
13543
|
-
|
|
13544
|
-
|
|
13545
|
-
|
|
13546
|
-
|
|
13547
|
-
|
|
13548
|
-
|
|
13549
|
-
|
|
13606
|
+
* @summary Creates an access control list (ACL).
|
|
13607
|
+
*
|
|
13608
|
+
* @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:
|
|
13609
|
+
* * An account can have a maximum of 50 ACLs in each region.
|
|
13610
|
+
* * You can add a maximum of 50 IP addresses or CIDR blocks at a time within an account.
|
|
13611
|
+
* * Each ACL can contain a maximum of 300 IP addresses or CIDR blocks.
|
|
13612
|
+
*
|
|
13613
|
+
* @param request CreateAccessControlListRequest
|
|
13614
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13615
|
+
* @return CreateAccessControlListResponse
|
|
13550
13616
|
*/
|
|
13551
13617
|
async createAccessControlListWithOptions(request: CreateAccessControlListRequest, runtime: $Util.RuntimeOptions): Promise<CreateAccessControlListResponse> {
|
|
13552
13618
|
Util.validateModel(request);
|
|
@@ -13605,19 +13671,28 @@ export default class Client extends OpenApi {
|
|
|
13605
13671
|
}
|
|
13606
13672
|
|
|
13607
13673
|
/**
|
|
13608
|
-
|
|
13609
|
-
|
|
13610
|
-
|
|
13611
|
-
|
|
13612
|
-
|
|
13613
|
-
|
|
13614
|
-
|
|
13674
|
+
* @summary Creates an access control list (ACL).
|
|
13675
|
+
*
|
|
13676
|
+
* @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:
|
|
13677
|
+
* * An account can have a maximum of 50 ACLs in each region.
|
|
13678
|
+
* * You can add a maximum of 50 IP addresses or CIDR blocks at a time within an account.
|
|
13679
|
+
* * Each ACL can contain a maximum of 300 IP addresses or CIDR blocks.
|
|
13680
|
+
*
|
|
13681
|
+
* @param request CreateAccessControlListRequest
|
|
13682
|
+
* @return CreateAccessControlListResponse
|
|
13615
13683
|
*/
|
|
13616
13684
|
async createAccessControlList(request: CreateAccessControlListRequest): Promise<CreateAccessControlListResponse> {
|
|
13617
13685
|
let runtime = new $Util.RuntimeOptions({ });
|
|
13618
13686
|
return await this.createAccessControlListWithOptions(request, runtime);
|
|
13619
13687
|
}
|
|
13620
13688
|
|
|
13689
|
+
/**
|
|
13690
|
+
* @summary Creates a domain name extension.
|
|
13691
|
+
*
|
|
13692
|
+
* @param request CreateDomainExtensionRequest
|
|
13693
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13694
|
+
* @return CreateDomainExtensionResponse
|
|
13695
|
+
*/
|
|
13621
13696
|
async createDomainExtensionWithOptions(request: CreateDomainExtensionRequest, runtime: $Util.RuntimeOptions): Promise<CreateDomainExtensionResponse> {
|
|
13622
13697
|
Util.validateModel(request);
|
|
13623
13698
|
let query = { };
|
|
@@ -13674,19 +13749,27 @@ export default class Client extends OpenApi {
|
|
|
13674
13749
|
return $tea.cast<CreateDomainExtensionResponse>(await this.callApi(params, req, runtime), new CreateDomainExtensionResponse({}));
|
|
13675
13750
|
}
|
|
13676
13751
|
|
|
13752
|
+
/**
|
|
13753
|
+
* @summary Creates a domain name extension.
|
|
13754
|
+
*
|
|
13755
|
+
* @param request CreateDomainExtensionRequest
|
|
13756
|
+
* @return CreateDomainExtensionResponse
|
|
13757
|
+
*/
|
|
13677
13758
|
async createDomainExtension(request: CreateDomainExtensionRequest): Promise<CreateDomainExtensionResponse> {
|
|
13678
13759
|
let runtime = new $Util.RuntimeOptions({ });
|
|
13679
13760
|
return await this.createDomainExtensionWithOptions(request, runtime);
|
|
13680
13761
|
}
|
|
13681
13762
|
|
|
13682
13763
|
/**
|
|
13683
|
-
|
|
13684
|
-
|
|
13685
|
-
|
|
13686
|
-
|
|
13687
|
-
|
|
13688
|
-
|
|
13689
|
-
|
|
13764
|
+
* @summary Creates a Classic Load Balancer (CLB) instance.
|
|
13765
|
+
*
|
|
13766
|
+
* @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.
|
|
13767
|
+
* * After a CLB instance is created, you are charged for using the CLB instance.
|
|
13768
|
+
* * The pay-as-you-go billing method supports the pay-by-specification and pay-by-LCU metering methods.
|
|
13769
|
+
*
|
|
13770
|
+
* @param request CreateLoadBalancerRequest
|
|
13771
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13772
|
+
* @return CreateLoadBalancerResponse
|
|
13690
13773
|
*/
|
|
13691
13774
|
async createLoadBalancerWithOptions(request: CreateLoadBalancerRequest, runtime: $Util.RuntimeOptions): Promise<CreateLoadBalancerResponse> {
|
|
13692
13775
|
Util.validateModel(request);
|
|
@@ -13817,12 +13900,14 @@ export default class Client extends OpenApi {
|
|
|
13817
13900
|
}
|
|
13818
13901
|
|
|
13819
13902
|
/**
|
|
13820
|
-
|
|
13821
|
-
|
|
13822
|
-
|
|
13823
|
-
|
|
13824
|
-
|
|
13825
|
-
|
|
13903
|
+
* @summary Creates a Classic Load Balancer (CLB) instance.
|
|
13904
|
+
*
|
|
13905
|
+
* @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.
|
|
13906
|
+
* * After a CLB instance is created, you are charged for using the CLB instance.
|
|
13907
|
+
* * The pay-as-you-go billing method supports the pay-by-specification and pay-by-LCU metering methods.
|
|
13908
|
+
*
|
|
13909
|
+
* @param request CreateLoadBalancerRequest
|
|
13910
|
+
* @return CreateLoadBalancerResponse
|
|
13826
13911
|
*/
|
|
13827
13912
|
async createLoadBalancer(request: CreateLoadBalancerRequest): Promise<CreateLoadBalancerResponse> {
|
|
13828
13913
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -13830,13 +13915,15 @@ export default class Client extends OpenApi {
|
|
|
13830
13915
|
}
|
|
13831
13916
|
|
|
13832
13917
|
/**
|
|
13833
|
-
|
|
13834
|
-
|
|
13835
|
-
|
|
13836
|
-
|
|
13837
|
-
|
|
13838
|
-
|
|
13839
|
-
|
|
13918
|
+
* @summary Creates an HTTP listener for a Classic Load Balancer (CLB) instance.
|
|
13919
|
+
*
|
|
13920
|
+
* @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.
|
|
13921
|
+
* ## Prerequisites
|
|
13922
|
+
* A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](~~StartLoadBalancerListener~~).
|
|
13923
|
+
*
|
|
13924
|
+
* @param request CreateLoadBalancerHTTPListenerRequest
|
|
13925
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13926
|
+
* @return CreateLoadBalancerHTTPListenerResponse
|
|
13840
13927
|
*/
|
|
13841
13928
|
async createLoadBalancerHTTPListenerWithOptions(request: CreateLoadBalancerHTTPListenerRequest, runtime: $Util.RuntimeOptions): Promise<CreateLoadBalancerHTTPListenerResponse> {
|
|
13842
13929
|
Util.validateModel(request);
|
|
@@ -13985,6 +14072,10 @@ export default class Client extends OpenApi {
|
|
|
13985
14072
|
query["XForwardedFor"] = request.XForwardedFor;
|
|
13986
14073
|
}
|
|
13987
14074
|
|
|
14075
|
+
if (!Util.isUnset(request.XForwardedFor_ClientSrcPort)) {
|
|
14076
|
+
query["XForwardedFor_ClientSrcPort"] = request.XForwardedFor_ClientSrcPort;
|
|
14077
|
+
}
|
|
14078
|
+
|
|
13988
14079
|
if (!Util.isUnset(request.XForwardedFor_SLBID)) {
|
|
13989
14080
|
query["XForwardedFor_SLBID"] = request.XForwardedFor_SLBID;
|
|
13990
14081
|
}
|
|
@@ -13993,6 +14084,10 @@ export default class Client extends OpenApi {
|
|
|
13993
14084
|
query["XForwardedFor_SLBIP"] = request.XForwardedFor_SLBIP;
|
|
13994
14085
|
}
|
|
13995
14086
|
|
|
14087
|
+
if (!Util.isUnset(request.XForwardedFor_SLBPORT)) {
|
|
14088
|
+
query["XForwardedFor_SLBPORT"] = request.XForwardedFor_SLBPORT;
|
|
14089
|
+
}
|
|
14090
|
+
|
|
13996
14091
|
if (!Util.isUnset(request.XForwardedFor_proto)) {
|
|
13997
14092
|
query["XForwardedFor_proto"] = request.XForwardedFor_proto;
|
|
13998
14093
|
}
|
|
@@ -14015,12 +14110,14 @@ export default class Client extends OpenApi {
|
|
|
14015
14110
|
}
|
|
14016
14111
|
|
|
14017
14112
|
/**
|
|
14018
|
-
|
|
14019
|
-
|
|
14020
|
-
|
|
14021
|
-
|
|
14022
|
-
|
|
14023
|
-
|
|
14113
|
+
* @summary Creates an HTTP listener for a Classic Load Balancer (CLB) instance.
|
|
14114
|
+
*
|
|
14115
|
+
* @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.
|
|
14116
|
+
* ## Prerequisites
|
|
14117
|
+
* A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](~~StartLoadBalancerListener~~).
|
|
14118
|
+
*
|
|
14119
|
+
* @param request CreateLoadBalancerHTTPListenerRequest
|
|
14120
|
+
* @return CreateLoadBalancerHTTPListenerResponse
|
|
14024
14121
|
*/
|
|
14025
14122
|
async createLoadBalancerHTTPListener(request: CreateLoadBalancerHTTPListenerRequest): Promise<CreateLoadBalancerHTTPListenerResponse> {
|
|
14026
14123
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -14028,13 +14125,15 @@ export default class Client extends OpenApi {
|
|
|
14028
14125
|
}
|
|
14029
14126
|
|
|
14030
14127
|
/**
|
|
14031
|
-
|
|
14032
|
-
|
|
14033
|
-
|
|
14034
|
-
|
|
14035
|
-
|
|
14036
|
-
|
|
14037
|
-
|
|
14128
|
+
* @summary Creates an HTTPS listener.
|
|
14129
|
+
*
|
|
14130
|
+
* @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.
|
|
14131
|
+
* ## Prerequisites
|
|
14132
|
+
* 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).
|
|
14133
|
+
*
|
|
14134
|
+
* @param request CreateLoadBalancerHTTPSListenerRequest
|
|
14135
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
14136
|
+
* @return CreateLoadBalancerHTTPSListenerResponse
|
|
14038
14137
|
*/
|
|
14039
14138
|
async createLoadBalancerHTTPSListenerWithOptions(request: CreateLoadBalancerHTTPSListenerRequest, runtime: $Util.RuntimeOptions): Promise<CreateLoadBalancerHTTPSListenerResponse> {
|
|
14040
14139
|
Util.validateModel(request);
|
|
@@ -14191,6 +14290,10 @@ export default class Client extends OpenApi {
|
|
|
14191
14290
|
query["XForwardedFor"] = request.XForwardedFor;
|
|
14192
14291
|
}
|
|
14193
14292
|
|
|
14293
|
+
if (!Util.isUnset(request.XForwardedFor_ClientSrcPort)) {
|
|
14294
|
+
query["XForwardedFor_ClientSrcPort"] = request.XForwardedFor_ClientSrcPort;
|
|
14295
|
+
}
|
|
14296
|
+
|
|
14194
14297
|
if (!Util.isUnset(request.XForwardedFor_SLBID)) {
|
|
14195
14298
|
query["XForwardedFor_SLBID"] = request.XForwardedFor_SLBID;
|
|
14196
14299
|
}
|
|
@@ -14199,6 +14302,10 @@ export default class Client extends OpenApi {
|
|
|
14199
14302
|
query["XForwardedFor_SLBIP"] = request.XForwardedFor_SLBIP;
|
|
14200
14303
|
}
|
|
14201
14304
|
|
|
14305
|
+
if (!Util.isUnset(request.XForwardedFor_SLBPORT)) {
|
|
14306
|
+
query["XForwardedFor_SLBPORT"] = request.XForwardedFor_SLBPORT;
|
|
14307
|
+
}
|
|
14308
|
+
|
|
14202
14309
|
if (!Util.isUnset(request.XForwardedFor_proto)) {
|
|
14203
14310
|
query["XForwardedFor_proto"] = request.XForwardedFor_proto;
|
|
14204
14311
|
}
|
|
@@ -14221,12 +14328,14 @@ export default class Client extends OpenApi {
|
|
|
14221
14328
|
}
|
|
14222
14329
|
|
|
14223
14330
|
/**
|
|
14224
|
-
|
|
14225
|
-
|
|
14226
|
-
|
|
14227
|
-
|
|
14228
|
-
|
|
14229
|
-
|
|
14331
|
+
* @summary Creates an HTTPS listener.
|
|
14332
|
+
*
|
|
14333
|
+
* @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.
|
|
14334
|
+
* ## Prerequisites
|
|
14335
|
+
* 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).
|
|
14336
|
+
*
|
|
14337
|
+
* @param request CreateLoadBalancerHTTPSListenerRequest
|
|
14338
|
+
* @return CreateLoadBalancerHTTPSListenerResponse
|
|
14230
14339
|
*/
|
|
14231
14340
|
async createLoadBalancerHTTPSListener(request: CreateLoadBalancerHTTPSListenerRequest): Promise<CreateLoadBalancerHTTPSListenerResponse> {
|
|
14232
14341
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -14234,11 +14343,13 @@ export default class Client extends OpenApi {
|
|
|
14234
14343
|
}
|
|
14235
14344
|
|
|
14236
14345
|
/**
|
|
14237
|
-
|
|
14238
|
-
|
|
14239
|
-
|
|
14240
|
-
|
|
14241
|
-
|
|
14346
|
+
* @summary Creates a TCP listener.
|
|
14347
|
+
*
|
|
14348
|
+
* @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.
|
|
14349
|
+
*
|
|
14350
|
+
* @param request CreateLoadBalancerTCPListenerRequest
|
|
14351
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
14352
|
+
* @return CreateLoadBalancerTCPListenerResponse
|
|
14242
14353
|
*/
|
|
14243
14354
|
async createLoadBalancerTCPListenerWithOptions(request: CreateLoadBalancerTCPListenerRequest, runtime: $Util.RuntimeOptions): Promise<CreateLoadBalancerTCPListenerResponse> {
|
|
14244
14355
|
Util.validateModel(request);
|
|
@@ -14389,10 +14500,12 @@ export default class Client extends OpenApi {
|
|
|
14389
14500
|
}
|
|
14390
14501
|
|
|
14391
14502
|
/**
|
|
14392
|
-
|
|
14393
|
-
|
|
14394
|
-
|
|
14395
|
-
|
|
14503
|
+
* @summary Creates a TCP listener.
|
|
14504
|
+
*
|
|
14505
|
+
* @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.
|
|
14506
|
+
*
|
|
14507
|
+
* @param request CreateLoadBalancerTCPListenerRequest
|
|
14508
|
+
* @return CreateLoadBalancerTCPListenerResponse
|
|
14396
14509
|
*/
|
|
14397
14510
|
async createLoadBalancerTCPListener(request: CreateLoadBalancerTCPListenerRequest): Promise<CreateLoadBalancerTCPListenerResponse> {
|
|
14398
14511
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -14400,12 +14513,14 @@ export default class Client extends OpenApi {
|
|
|
14400
14513
|
}
|
|
14401
14514
|
|
|
14402
14515
|
/**
|
|
14403
|
-
|
|
14404
|
-
|
|
14405
|
-
|
|
14406
|
-
|
|
14407
|
-
|
|
14408
|
-
|
|
14516
|
+
* @summary Creates a UDP listener.
|
|
14517
|
+
*
|
|
14518
|
+
* @description UDP listeners of Classic Load Balancer (CLB) instances in a classic network cannot pass client IP addresses to backend servers.
|
|
14519
|
+
* > 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.
|
|
14520
|
+
*
|
|
14521
|
+
* @param request CreateLoadBalancerUDPListenerRequest
|
|
14522
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
14523
|
+
* @return CreateLoadBalancerUDPListenerResponse
|
|
14409
14524
|
*/
|
|
14410
14525
|
async createLoadBalancerUDPListenerWithOptions(request: CreateLoadBalancerUDPListenerRequest, runtime: $Util.RuntimeOptions): Promise<CreateLoadBalancerUDPListenerResponse> {
|
|
14411
14526
|
Util.validateModel(request);
|
|
@@ -14532,17 +14647,26 @@ export default class Client extends OpenApi {
|
|
|
14532
14647
|
}
|
|
14533
14648
|
|
|
14534
14649
|
/**
|
|
14535
|
-
|
|
14536
|
-
|
|
14537
|
-
|
|
14538
|
-
|
|
14539
|
-
|
|
14650
|
+
* @summary Creates a UDP listener.
|
|
14651
|
+
*
|
|
14652
|
+
* @description UDP listeners of Classic Load Balancer (CLB) instances in a classic network cannot pass client IP addresses to backend servers.
|
|
14653
|
+
* > 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.
|
|
14654
|
+
*
|
|
14655
|
+
* @param request CreateLoadBalancerUDPListenerRequest
|
|
14656
|
+
* @return CreateLoadBalancerUDPListenerResponse
|
|
14540
14657
|
*/
|
|
14541
14658
|
async createLoadBalancerUDPListener(request: CreateLoadBalancerUDPListenerRequest): Promise<CreateLoadBalancerUDPListenerResponse> {
|
|
14542
14659
|
let runtime = new $Util.RuntimeOptions({ });
|
|
14543
14660
|
return await this.createLoadBalancerUDPListenerWithOptions(request, runtime);
|
|
14544
14661
|
}
|
|
14545
14662
|
|
|
14663
|
+
/**
|
|
14664
|
+
* @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.
|
|
14665
|
+
*
|
|
14666
|
+
* @param request CreateMasterSlaveServerGroupRequest
|
|
14667
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
14668
|
+
* @return CreateMasterSlaveServerGroupResponse
|
|
14669
|
+
*/
|
|
14546
14670
|
async createMasterSlaveServerGroupWithOptions(request: CreateMasterSlaveServerGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateMasterSlaveServerGroupResponse> {
|
|
14547
14671
|
Util.validateModel(request);
|
|
14548
14672
|
let query = { };
|
|
@@ -14599,11 +14723,24 @@ export default class Client extends OpenApi {
|
|
|
14599
14723
|
return $tea.cast<CreateMasterSlaveServerGroupResponse>(await this.callApi(params, req, runtime), new CreateMasterSlaveServerGroupResponse({}));
|
|
14600
14724
|
}
|
|
14601
14725
|
|
|
14726
|
+
/**
|
|
14727
|
+
* @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.
|
|
14728
|
+
*
|
|
14729
|
+
* @param request CreateMasterSlaveServerGroupRequest
|
|
14730
|
+
* @return CreateMasterSlaveServerGroupResponse
|
|
14731
|
+
*/
|
|
14602
14732
|
async createMasterSlaveServerGroup(request: CreateMasterSlaveServerGroupRequest): Promise<CreateMasterSlaveServerGroupResponse> {
|
|
14603
14733
|
let runtime = new $Util.RuntimeOptions({ });
|
|
14604
14734
|
return await this.createMasterSlaveServerGroupWithOptions(request, runtime);
|
|
14605
14735
|
}
|
|
14606
14736
|
|
|
14737
|
+
/**
|
|
14738
|
+
* @summary Creates forwarding rules for an HTTP or HTTPS listener.
|
|
14739
|
+
*
|
|
14740
|
+
* @param request CreateRulesRequest
|
|
14741
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
14742
|
+
* @return CreateRulesResponse
|
|
14743
|
+
*/
|
|
14607
14744
|
async createRulesWithOptions(request: CreateRulesRequest, runtime: $Util.RuntimeOptions): Promise<CreateRulesResponse> {
|
|
14608
14745
|
Util.validateModel(request);
|
|
14609
14746
|
let query = { };
|
|
@@ -14660,11 +14797,24 @@ export default class Client extends OpenApi {
|
|
|
14660
14797
|
return $tea.cast<CreateRulesResponse>(await this.callApi(params, req, runtime), new CreateRulesResponse({}));
|
|
14661
14798
|
}
|
|
14662
14799
|
|
|
14800
|
+
/**
|
|
14801
|
+
* @summary Creates forwarding rules for an HTTP or HTTPS listener.
|
|
14802
|
+
*
|
|
14803
|
+
* @param request CreateRulesRequest
|
|
14804
|
+
* @return CreateRulesResponse
|
|
14805
|
+
*/
|
|
14663
14806
|
async createRules(request: CreateRulesRequest): Promise<CreateRulesResponse> {
|
|
14664
14807
|
let runtime = new $Util.RuntimeOptions({ });
|
|
14665
14808
|
return await this.createRulesWithOptions(request, runtime);
|
|
14666
14809
|
}
|
|
14667
14810
|
|
|
14811
|
+
/**
|
|
14812
|
+
* @summary Creates a Transport Layer Security (TLS) policy.
|
|
14813
|
+
*
|
|
14814
|
+
* @param request CreateTLSCipherPolicyRequest
|
|
14815
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
14816
|
+
* @return CreateTLSCipherPolicyResponse
|
|
14817
|
+
*/
|
|
14668
14818
|
async createTLSCipherPolicyWithOptions(request: CreateTLSCipherPolicyRequest, runtime: $Util.RuntimeOptions): Promise<CreateTLSCipherPolicyResponse> {
|
|
14669
14819
|
Util.validateModel(request);
|
|
14670
14820
|
let query = { };
|
|
@@ -14717,11 +14867,24 @@ export default class Client extends OpenApi {
|
|
|
14717
14867
|
return $tea.cast<CreateTLSCipherPolicyResponse>(await this.callApi(params, req, runtime), new CreateTLSCipherPolicyResponse({}));
|
|
14718
14868
|
}
|
|
14719
14869
|
|
|
14870
|
+
/**
|
|
14871
|
+
* @summary Creates a Transport Layer Security (TLS) policy.
|
|
14872
|
+
*
|
|
14873
|
+
* @param request CreateTLSCipherPolicyRequest
|
|
14874
|
+
* @return CreateTLSCipherPolicyResponse
|
|
14875
|
+
*/
|
|
14720
14876
|
async createTLSCipherPolicy(request: CreateTLSCipherPolicyRequest): Promise<CreateTLSCipherPolicyResponse> {
|
|
14721
14877
|
let runtime = new $Util.RuntimeOptions({ });
|
|
14722
14878
|
return await this.createTLSCipherPolicyWithOptions(request, runtime);
|
|
14723
14879
|
}
|
|
14724
14880
|
|
|
14881
|
+
/**
|
|
14882
|
+
* @summary Creates a vServer group and adds backend servers to the vServer group.
|
|
14883
|
+
*
|
|
14884
|
+
* @param request CreateVServerGroupRequest
|
|
14885
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
14886
|
+
* @return CreateVServerGroupResponse
|
|
14887
|
+
*/
|
|
14725
14888
|
async createVServerGroupWithOptions(request: CreateVServerGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateVServerGroupResponse> {
|
|
14726
14889
|
Util.validateModel(request);
|
|
14727
14890
|
let query = { };
|
|
@@ -14778,17 +14941,25 @@ export default class Client extends OpenApi {
|
|
|
14778
14941
|
return $tea.cast<CreateVServerGroupResponse>(await this.callApi(params, req, runtime), new CreateVServerGroupResponse({}));
|
|
14779
14942
|
}
|
|
14780
14943
|
|
|
14944
|
+
/**
|
|
14945
|
+
* @summary Creates a vServer group and adds backend servers to the vServer group.
|
|
14946
|
+
*
|
|
14947
|
+
* @param request CreateVServerGroupRequest
|
|
14948
|
+
* @return CreateVServerGroupResponse
|
|
14949
|
+
*/
|
|
14781
14950
|
async createVServerGroup(request: CreateVServerGroupRequest): Promise<CreateVServerGroupResponse> {
|
|
14782
14951
|
let runtime = new $Util.RuntimeOptions({ });
|
|
14783
14952
|
return await this.createVServerGroupWithOptions(request, runtime);
|
|
14784
14953
|
}
|
|
14785
14954
|
|
|
14786
14955
|
/**
|
|
14787
|
-
|
|
14788
|
-
|
|
14789
|
-
|
|
14790
|
-
|
|
14791
|
-
|
|
14956
|
+
* @summary Deletes an access control list (ACL).
|
|
14957
|
+
*
|
|
14958
|
+
* @description You can delete an ACL only if it is not associated with a listener.
|
|
14959
|
+
*
|
|
14960
|
+
* @param request DeleteAccessControlListRequest
|
|
14961
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
14962
|
+
* @return DeleteAccessControlListResponse
|
|
14792
14963
|
*/
|
|
14793
14964
|
async deleteAccessControlListWithOptions(request: DeleteAccessControlListRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAccessControlListResponse> {
|
|
14794
14965
|
Util.validateModel(request);
|
|
@@ -14835,16 +15006,25 @@ export default class Client extends OpenApi {
|
|
|
14835
15006
|
}
|
|
14836
15007
|
|
|
14837
15008
|
/**
|
|
14838
|
-
|
|
14839
|
-
|
|
14840
|
-
|
|
14841
|
-
|
|
15009
|
+
* @summary Deletes an access control list (ACL).
|
|
15010
|
+
*
|
|
15011
|
+
* @description You can delete an ACL only if it is not associated with a listener.
|
|
15012
|
+
*
|
|
15013
|
+
* @param request DeleteAccessControlListRequest
|
|
15014
|
+
* @return DeleteAccessControlListResponse
|
|
14842
15015
|
*/
|
|
14843
15016
|
async deleteAccessControlList(request: DeleteAccessControlListRequest): Promise<DeleteAccessControlListResponse> {
|
|
14844
15017
|
let runtime = new $Util.RuntimeOptions({ });
|
|
14845
15018
|
return await this.deleteAccessControlListWithOptions(request, runtime);
|
|
14846
15019
|
}
|
|
14847
15020
|
|
|
15021
|
+
/**
|
|
15022
|
+
* @summary Deletes the access log of a Classic Load Balancer (CLB) instance.
|
|
15023
|
+
*
|
|
15024
|
+
* @param request DeleteAccessLogsDownloadAttributeRequest
|
|
15025
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15026
|
+
* @return DeleteAccessLogsDownloadAttributeResponse
|
|
15027
|
+
*/
|
|
14848
15028
|
async deleteAccessLogsDownloadAttributeWithOptions(request: DeleteAccessLogsDownloadAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAccessLogsDownloadAttributeResponse> {
|
|
14849
15029
|
Util.validateModel(request);
|
|
14850
15030
|
let query = { };
|
|
@@ -14897,17 +15077,25 @@ export default class Client extends OpenApi {
|
|
|
14897
15077
|
return $tea.cast<DeleteAccessLogsDownloadAttributeResponse>(await this.callApi(params, req, runtime), new DeleteAccessLogsDownloadAttributeResponse({}));
|
|
14898
15078
|
}
|
|
14899
15079
|
|
|
15080
|
+
/**
|
|
15081
|
+
* @summary Deletes the access log of a Classic Load Balancer (CLB) instance.
|
|
15082
|
+
*
|
|
15083
|
+
* @param request DeleteAccessLogsDownloadAttributeRequest
|
|
15084
|
+
* @return DeleteAccessLogsDownloadAttributeResponse
|
|
15085
|
+
*/
|
|
14900
15086
|
async deleteAccessLogsDownloadAttribute(request: DeleteAccessLogsDownloadAttributeRequest): Promise<DeleteAccessLogsDownloadAttributeResponse> {
|
|
14901
15087
|
let runtime = new $Util.RuntimeOptions({ });
|
|
14902
15088
|
return await this.deleteAccessLogsDownloadAttributeWithOptions(request, runtime);
|
|
14903
15089
|
}
|
|
14904
15090
|
|
|
14905
15091
|
/**
|
|
14906
|
-
|
|
14907
|
-
|
|
14908
|
-
|
|
14909
|
-
|
|
14910
|
-
|
|
15092
|
+
* @summary Deletes a certificate authority (CA) certificate.
|
|
15093
|
+
*
|
|
15094
|
+
* @description You cannot delete a CA certificate that is in use.
|
|
15095
|
+
*
|
|
15096
|
+
* @param request DeleteCACertificateRequest
|
|
15097
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15098
|
+
* @return DeleteCACertificateResponse
|
|
14911
15099
|
*/
|
|
14912
15100
|
async deleteCACertificateWithOptions(request: DeleteCACertificateRequest, runtime: $Util.RuntimeOptions): Promise<DeleteCACertificateResponse> {
|
|
14913
15101
|
Util.validateModel(request);
|
|
@@ -14954,16 +15142,25 @@ export default class Client extends OpenApi {
|
|
|
14954
15142
|
}
|
|
14955
15143
|
|
|
14956
15144
|
/**
|
|
14957
|
-
|
|
14958
|
-
|
|
14959
|
-
|
|
14960
|
-
|
|
15145
|
+
* @summary Deletes a certificate authority (CA) certificate.
|
|
15146
|
+
*
|
|
15147
|
+
* @description You cannot delete a CA certificate that is in use.
|
|
15148
|
+
*
|
|
15149
|
+
* @param request DeleteCACertificateRequest
|
|
15150
|
+
* @return DeleteCACertificateResponse
|
|
14961
15151
|
*/
|
|
14962
15152
|
async deleteCACertificate(request: DeleteCACertificateRequest): Promise<DeleteCACertificateResponse> {
|
|
14963
15153
|
let runtime = new $Util.RuntimeOptions({ });
|
|
14964
15154
|
return await this.deleteCACertificateWithOptions(request, runtime);
|
|
14965
15155
|
}
|
|
14966
15156
|
|
|
15157
|
+
/**
|
|
15158
|
+
* @summary Deletes an additional domain name.
|
|
15159
|
+
*
|
|
15160
|
+
* @param request DeleteDomainExtensionRequest
|
|
15161
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15162
|
+
* @return DeleteDomainExtensionResponse
|
|
15163
|
+
*/
|
|
14967
15164
|
async deleteDomainExtensionWithOptions(request: DeleteDomainExtensionRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDomainExtensionResponse> {
|
|
14968
15165
|
Util.validateModel(request);
|
|
14969
15166
|
let query = { };
|
|
@@ -15008,17 +15205,25 @@ export default class Client extends OpenApi {
|
|
|
15008
15205
|
return $tea.cast<DeleteDomainExtensionResponse>(await this.callApi(params, req, runtime), new DeleteDomainExtensionResponse({}));
|
|
15009
15206
|
}
|
|
15010
15207
|
|
|
15208
|
+
/**
|
|
15209
|
+
* @summary Deletes an additional domain name.
|
|
15210
|
+
*
|
|
15211
|
+
* @param request DeleteDomainExtensionRequest
|
|
15212
|
+
* @return DeleteDomainExtensionResponse
|
|
15213
|
+
*/
|
|
15011
15214
|
async deleteDomainExtension(request: DeleteDomainExtensionRequest): Promise<DeleteDomainExtensionResponse> {
|
|
15012
15215
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15013
15216
|
return await this.deleteDomainExtensionWithOptions(request, runtime);
|
|
15014
15217
|
}
|
|
15015
15218
|
|
|
15016
15219
|
/**
|
|
15017
|
-
|
|
15018
|
-
|
|
15019
|
-
|
|
15020
|
-
|
|
15021
|
-
|
|
15220
|
+
* @summary Deletes a pay-as-you-go Server Load Balancer (SLB) instance.
|
|
15221
|
+
*
|
|
15222
|
+
* @description > The listeners and tags of the SLB instance are deleted along with the SLB instance.
|
|
15223
|
+
*
|
|
15224
|
+
* @param request DeleteLoadBalancerRequest
|
|
15225
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15226
|
+
* @return DeleteLoadBalancerResponse
|
|
15022
15227
|
*/
|
|
15023
15228
|
async deleteLoadBalancerWithOptions(request: DeleteLoadBalancerRequest, runtime: $Util.RuntimeOptions): Promise<DeleteLoadBalancerResponse> {
|
|
15024
15229
|
Util.validateModel(request);
|
|
@@ -15065,10 +15270,12 @@ export default class Client extends OpenApi {
|
|
|
15065
15270
|
}
|
|
15066
15271
|
|
|
15067
15272
|
/**
|
|
15068
|
-
|
|
15069
|
-
|
|
15070
|
-
|
|
15071
|
-
|
|
15273
|
+
* @summary Deletes a pay-as-you-go Server Load Balancer (SLB) instance.
|
|
15274
|
+
*
|
|
15275
|
+
* @description > The listeners and tags of the SLB instance are deleted along with the SLB instance.
|
|
15276
|
+
*
|
|
15277
|
+
* @param request DeleteLoadBalancerRequest
|
|
15278
|
+
* @return DeleteLoadBalancerResponse
|
|
15072
15279
|
*/
|
|
15073
15280
|
async deleteLoadBalancer(request: DeleteLoadBalancerRequest): Promise<DeleteLoadBalancerResponse> {
|
|
15074
15281
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -15076,11 +15283,13 @@ export default class Client extends OpenApi {
|
|
|
15076
15283
|
}
|
|
15077
15284
|
|
|
15078
15285
|
/**
|
|
15079
|
-
|
|
15080
|
-
|
|
15081
|
-
|
|
15082
|
-
|
|
15083
|
-
|
|
15286
|
+
* @summary Deletes a listener.
|
|
15287
|
+
*
|
|
15288
|
+
* @description > You can delete only listeners that are in the **stopped** or **running** state.
|
|
15289
|
+
*
|
|
15290
|
+
* @param request DeleteLoadBalancerListenerRequest
|
|
15291
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15292
|
+
* @return DeleteLoadBalancerListenerResponse
|
|
15084
15293
|
*/
|
|
15085
15294
|
async deleteLoadBalancerListenerWithOptions(request: DeleteLoadBalancerListenerRequest, runtime: $Util.RuntimeOptions): Promise<DeleteLoadBalancerListenerResponse> {
|
|
15086
15295
|
Util.validateModel(request);
|
|
@@ -15135,16 +15344,25 @@ export default class Client extends OpenApi {
|
|
|
15135
15344
|
}
|
|
15136
15345
|
|
|
15137
15346
|
/**
|
|
15138
|
-
|
|
15139
|
-
|
|
15140
|
-
|
|
15141
|
-
|
|
15347
|
+
* @summary Deletes a listener.
|
|
15348
|
+
*
|
|
15349
|
+
* @description > You can delete only listeners that are in the **stopped** or **running** state.
|
|
15350
|
+
*
|
|
15351
|
+
* @param request DeleteLoadBalancerListenerRequest
|
|
15352
|
+
* @return DeleteLoadBalancerListenerResponse
|
|
15142
15353
|
*/
|
|
15143
15354
|
async deleteLoadBalancerListener(request: DeleteLoadBalancerListenerRequest): Promise<DeleteLoadBalancerListenerResponse> {
|
|
15144
15355
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15145
15356
|
return await this.deleteLoadBalancerListenerWithOptions(request, runtime);
|
|
15146
15357
|
}
|
|
15147
15358
|
|
|
15359
|
+
/**
|
|
15360
|
+
* @summary Deletes an active/standby server group.
|
|
15361
|
+
*
|
|
15362
|
+
* @param request DeleteMasterSlaveServerGroupRequest
|
|
15363
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15364
|
+
* @return DeleteMasterSlaveServerGroupResponse
|
|
15365
|
+
*/
|
|
15148
15366
|
async deleteMasterSlaveServerGroupWithOptions(request: DeleteMasterSlaveServerGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteMasterSlaveServerGroupResponse> {
|
|
15149
15367
|
Util.validateModel(request);
|
|
15150
15368
|
let query = { };
|
|
@@ -15189,18 +15407,26 @@ export default class Client extends OpenApi {
|
|
|
15189
15407
|
return $tea.cast<DeleteMasterSlaveServerGroupResponse>(await this.callApi(params, req, runtime), new DeleteMasterSlaveServerGroupResponse({}));
|
|
15190
15408
|
}
|
|
15191
15409
|
|
|
15410
|
+
/**
|
|
15411
|
+
* @summary Deletes an active/standby server group.
|
|
15412
|
+
*
|
|
15413
|
+
* @param request DeleteMasterSlaveServerGroupRequest
|
|
15414
|
+
* @return DeleteMasterSlaveServerGroupResponse
|
|
15415
|
+
*/
|
|
15192
15416
|
async deleteMasterSlaveServerGroup(request: DeleteMasterSlaveServerGroupRequest): Promise<DeleteMasterSlaveServerGroupResponse> {
|
|
15193
15417
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15194
15418
|
return await this.deleteMasterSlaveServerGroupWithOptions(request, runtime);
|
|
15195
15419
|
}
|
|
15196
15420
|
|
|
15197
15421
|
/**
|
|
15198
|
-
|
|
15199
|
-
|
|
15200
|
-
|
|
15201
|
-
|
|
15202
|
-
|
|
15203
|
-
|
|
15422
|
+
* @summary Deletes forwarding rules.
|
|
15423
|
+
*
|
|
15424
|
+
* @description ## Limits
|
|
15425
|
+
* The RuleIds parameter is required. You can specify up to 10 forwarding rules in each request.
|
|
15426
|
+
*
|
|
15427
|
+
* @param request DeleteRulesRequest
|
|
15428
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15429
|
+
* @return DeleteRulesResponse
|
|
15204
15430
|
*/
|
|
15205
15431
|
async deleteRulesWithOptions(request: DeleteRulesRequest, runtime: $Util.RuntimeOptions): Promise<DeleteRulesResponse> {
|
|
15206
15432
|
Util.validateModel(request);
|
|
@@ -15247,11 +15473,13 @@ export default class Client extends OpenApi {
|
|
|
15247
15473
|
}
|
|
15248
15474
|
|
|
15249
15475
|
/**
|
|
15250
|
-
|
|
15251
|
-
|
|
15252
|
-
|
|
15253
|
-
|
|
15254
|
-
|
|
15476
|
+
* @summary Deletes forwarding rules.
|
|
15477
|
+
*
|
|
15478
|
+
* @description ## Limits
|
|
15479
|
+
* The RuleIds parameter is required. You can specify up to 10 forwarding rules in each request.
|
|
15480
|
+
*
|
|
15481
|
+
* @param request DeleteRulesRequest
|
|
15482
|
+
* @return DeleteRulesResponse
|
|
15255
15483
|
*/
|
|
15256
15484
|
async deleteRules(request: DeleteRulesRequest): Promise<DeleteRulesResponse> {
|
|
15257
15485
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -15259,11 +15487,13 @@ export default class Client extends OpenApi {
|
|
|
15259
15487
|
}
|
|
15260
15488
|
|
|
15261
15489
|
/**
|
|
15262
|
-
|
|
15263
|
-
|
|
15264
|
-
|
|
15265
|
-
|
|
15266
|
-
|
|
15490
|
+
* @summary Deletes a server certificate.
|
|
15491
|
+
*
|
|
15492
|
+
* @description > You cannot delete server certificates that are in use.
|
|
15493
|
+
*
|
|
15494
|
+
* @param request DeleteServerCertificateRequest
|
|
15495
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15496
|
+
* @return DeleteServerCertificateResponse
|
|
15267
15497
|
*/
|
|
15268
15498
|
async deleteServerCertificateWithOptions(request: DeleteServerCertificateRequest, runtime: $Util.RuntimeOptions): Promise<DeleteServerCertificateResponse> {
|
|
15269
15499
|
Util.validateModel(request);
|
|
@@ -15310,16 +15540,28 @@ export default class Client extends OpenApi {
|
|
|
15310
15540
|
}
|
|
15311
15541
|
|
|
15312
15542
|
/**
|
|
15313
|
-
|
|
15314
|
-
|
|
15315
|
-
|
|
15316
|
-
|
|
15543
|
+
* @summary Deletes a server certificate.
|
|
15544
|
+
*
|
|
15545
|
+
* @description > You cannot delete server certificates that are in use.
|
|
15546
|
+
*
|
|
15547
|
+
* @param request DeleteServerCertificateRequest
|
|
15548
|
+
* @return DeleteServerCertificateResponse
|
|
15317
15549
|
*/
|
|
15318
15550
|
async deleteServerCertificate(request: DeleteServerCertificateRequest): Promise<DeleteServerCertificateResponse> {
|
|
15319
15551
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15320
15552
|
return await this.deleteServerCertificateWithOptions(request, runtime);
|
|
15321
15553
|
}
|
|
15322
15554
|
|
|
15555
|
+
/**
|
|
15556
|
+
* @summary Deletes a TLS policy.
|
|
15557
|
+
*
|
|
15558
|
+
* @description ## Debugging
|
|
15559
|
+
* [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)
|
|
15560
|
+
*
|
|
15561
|
+
* @param request DeleteTLSCipherPolicyRequest
|
|
15562
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15563
|
+
* @return DeleteTLSCipherPolicyResponse
|
|
15564
|
+
*/
|
|
15323
15565
|
async deleteTLSCipherPolicyWithOptions(request: DeleteTLSCipherPolicyRequest, runtime: $Util.RuntimeOptions): Promise<DeleteTLSCipherPolicyResponse> {
|
|
15324
15566
|
Util.validateModel(request);
|
|
15325
15567
|
let query = { };
|
|
@@ -15364,11 +15606,27 @@ export default class Client extends OpenApi {
|
|
|
15364
15606
|
return $tea.cast<DeleteTLSCipherPolicyResponse>(await this.callApi(params, req, runtime), new DeleteTLSCipherPolicyResponse({}));
|
|
15365
15607
|
}
|
|
15366
15608
|
|
|
15609
|
+
/**
|
|
15610
|
+
* @summary Deletes a TLS policy.
|
|
15611
|
+
*
|
|
15612
|
+
* @description ## Debugging
|
|
15613
|
+
* [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)
|
|
15614
|
+
*
|
|
15615
|
+
* @param request DeleteTLSCipherPolicyRequest
|
|
15616
|
+
* @return DeleteTLSCipherPolicyResponse
|
|
15617
|
+
*/
|
|
15367
15618
|
async deleteTLSCipherPolicy(request: DeleteTLSCipherPolicyRequest): Promise<DeleteTLSCipherPolicyResponse> {
|
|
15368
15619
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15369
15620
|
return await this.deleteTLSCipherPolicyWithOptions(request, runtime);
|
|
15370
15621
|
}
|
|
15371
15622
|
|
|
15623
|
+
/**
|
|
15624
|
+
* @summary Deletes a VServer group.
|
|
15625
|
+
*
|
|
15626
|
+
* @param request DeleteVServerGroupRequest
|
|
15627
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15628
|
+
* @return DeleteVServerGroupResponse
|
|
15629
|
+
*/
|
|
15372
15630
|
async deleteVServerGroupWithOptions(request: DeleteVServerGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteVServerGroupResponse> {
|
|
15373
15631
|
Util.validateModel(request);
|
|
15374
15632
|
let query = { };
|
|
@@ -15413,11 +15671,24 @@ export default class Client extends OpenApi {
|
|
|
15413
15671
|
return $tea.cast<DeleteVServerGroupResponse>(await this.callApi(params, req, runtime), new DeleteVServerGroupResponse({}));
|
|
15414
15672
|
}
|
|
15415
15673
|
|
|
15674
|
+
/**
|
|
15675
|
+
* @summary Deletes a VServer group.
|
|
15676
|
+
*
|
|
15677
|
+
* @param request DeleteVServerGroupRequest
|
|
15678
|
+
* @return DeleteVServerGroupResponse
|
|
15679
|
+
*/
|
|
15416
15680
|
async deleteVServerGroup(request: DeleteVServerGroupRequest): Promise<DeleteVServerGroupResponse> {
|
|
15417
15681
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15418
15682
|
return await this.deleteVServerGroupWithOptions(request, runtime);
|
|
15419
15683
|
}
|
|
15420
15684
|
|
|
15685
|
+
/**
|
|
15686
|
+
* @summary Queries the configuration of an access control list (ACL).
|
|
15687
|
+
*
|
|
15688
|
+
* @param request DescribeAccessControlListAttributeRequest
|
|
15689
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15690
|
+
* @return DescribeAccessControlListAttributeResponse
|
|
15691
|
+
*/
|
|
15421
15692
|
async describeAccessControlListAttributeWithOptions(request: DescribeAccessControlListAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAccessControlListAttributeResponse> {
|
|
15422
15693
|
Util.validateModel(request);
|
|
15423
15694
|
let query = { };
|
|
@@ -15474,11 +15745,24 @@ export default class Client extends OpenApi {
|
|
|
15474
15745
|
return $tea.cast<DescribeAccessControlListAttributeResponse>(await this.callApi(params, req, runtime), new DescribeAccessControlListAttributeResponse({}));
|
|
15475
15746
|
}
|
|
15476
15747
|
|
|
15748
|
+
/**
|
|
15749
|
+
* @summary Queries the configuration of an access control list (ACL).
|
|
15750
|
+
*
|
|
15751
|
+
* @param request DescribeAccessControlListAttributeRequest
|
|
15752
|
+
* @return DescribeAccessControlListAttributeResponse
|
|
15753
|
+
*/
|
|
15477
15754
|
async describeAccessControlListAttribute(request: DescribeAccessControlListAttributeRequest): Promise<DescribeAccessControlListAttributeResponse> {
|
|
15478
15755
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15479
15756
|
return await this.describeAccessControlListAttributeWithOptions(request, runtime);
|
|
15480
15757
|
}
|
|
15481
15758
|
|
|
15759
|
+
/**
|
|
15760
|
+
* @summary Queries access control lists (ACLs).
|
|
15761
|
+
*
|
|
15762
|
+
* @param request DescribeAccessControlListsRequest
|
|
15763
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15764
|
+
* @return DescribeAccessControlListsResponse
|
|
15765
|
+
*/
|
|
15482
15766
|
async describeAccessControlListsWithOptions(request: DescribeAccessControlListsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAccessControlListsResponse> {
|
|
15483
15767
|
Util.validateModel(request);
|
|
15484
15768
|
let query = { };
|
|
@@ -15543,11 +15827,24 @@ export default class Client extends OpenApi {
|
|
|
15543
15827
|
return $tea.cast<DescribeAccessControlListsResponse>(await this.callApi(params, req, runtime), new DescribeAccessControlListsResponse({}));
|
|
15544
15828
|
}
|
|
15545
15829
|
|
|
15830
|
+
/**
|
|
15831
|
+
* @summary Queries access control lists (ACLs).
|
|
15832
|
+
*
|
|
15833
|
+
* @param request DescribeAccessControlListsRequest
|
|
15834
|
+
* @return DescribeAccessControlListsResponse
|
|
15835
|
+
*/
|
|
15546
15836
|
async describeAccessControlLists(request: DescribeAccessControlListsRequest): Promise<DescribeAccessControlListsResponse> {
|
|
15547
15837
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15548
15838
|
return await this.describeAccessControlListsWithOptions(request, runtime);
|
|
15549
15839
|
}
|
|
15550
15840
|
|
|
15841
|
+
/**
|
|
15842
|
+
* @summary Queries the access log of a Classic Load Balancer (CLB) instance.
|
|
15843
|
+
*
|
|
15844
|
+
* @param request DescribeAccessLogsDownloadAttributeRequest
|
|
15845
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15846
|
+
* @return DescribeAccessLogsDownloadAttributeResponse
|
|
15847
|
+
*/
|
|
15551
15848
|
async describeAccessLogsDownloadAttributeWithOptions(request: DescribeAccessLogsDownloadAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAccessLogsDownloadAttributeResponse> {
|
|
15552
15849
|
Util.validateModel(request);
|
|
15553
15850
|
let query = { };
|
|
@@ -15608,17 +15905,25 @@ export default class Client extends OpenApi {
|
|
|
15608
15905
|
return $tea.cast<DescribeAccessLogsDownloadAttributeResponse>(await this.callApi(params, req, runtime), new DescribeAccessLogsDownloadAttributeResponse({}));
|
|
15609
15906
|
}
|
|
15610
15907
|
|
|
15908
|
+
/**
|
|
15909
|
+
* @summary Queries the access log of a Classic Load Balancer (CLB) instance.
|
|
15910
|
+
*
|
|
15911
|
+
* @param request DescribeAccessLogsDownloadAttributeRequest
|
|
15912
|
+
* @return DescribeAccessLogsDownloadAttributeResponse
|
|
15913
|
+
*/
|
|
15611
15914
|
async describeAccessLogsDownloadAttribute(request: DescribeAccessLogsDownloadAttributeRequest): Promise<DescribeAccessLogsDownloadAttributeResponse> {
|
|
15612
15915
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15613
15916
|
return await this.describeAccessLogsDownloadAttributeWithOptions(request, runtime);
|
|
15614
15917
|
}
|
|
15615
15918
|
|
|
15616
15919
|
/**
|
|
15617
|
-
|
|
15618
|
-
|
|
15619
|
-
|
|
15620
|
-
|
|
15621
|
-
|
|
15920
|
+
* @summary Queries the available resources and resources that are available for purchase in the zones of a region.
|
|
15921
|
+
*
|
|
15922
|
+
* @description > Only the available resources and zones are returned.
|
|
15923
|
+
*
|
|
15924
|
+
* @param request DescribeAvailableResourceRequest
|
|
15925
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15926
|
+
* @return DescribeAvailableResourceResponse
|
|
15622
15927
|
*/
|
|
15623
15928
|
async describeAvailableResourceWithOptions(request: DescribeAvailableResourceRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAvailableResourceResponse> {
|
|
15624
15929
|
Util.validateModel(request);
|
|
@@ -15669,10 +15974,12 @@ export default class Client extends OpenApi {
|
|
|
15669
15974
|
}
|
|
15670
15975
|
|
|
15671
15976
|
/**
|
|
15672
|
-
|
|
15673
|
-
|
|
15674
|
-
|
|
15675
|
-
|
|
15977
|
+
* @summary Queries the available resources and resources that are available for purchase in the zones of a region.
|
|
15978
|
+
*
|
|
15979
|
+
* @description > Only the available resources and zones are returned.
|
|
15980
|
+
*
|
|
15981
|
+
* @param request DescribeAvailableResourceRequest
|
|
15982
|
+
* @return DescribeAvailableResourceResponse
|
|
15676
15983
|
*/
|
|
15677
15984
|
async describeAvailableResource(request: DescribeAvailableResourceRequest): Promise<DescribeAvailableResourceResponse> {
|
|
15678
15985
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -15680,11 +15987,13 @@ export default class Client extends OpenApi {
|
|
|
15680
15987
|
}
|
|
15681
15988
|
|
|
15682
15989
|
/**
|
|
15683
|
-
|
|
15684
|
-
|
|
15685
|
-
|
|
15686
|
-
|
|
15687
|
-
|
|
15990
|
+
* @summary Queries certificate authority (CA) certificates.
|
|
15991
|
+
*
|
|
15992
|
+
* @description > To ensure data confidentiality, only the certificate fingerprint and name are returned. The certificate content is not returned.
|
|
15993
|
+
*
|
|
15994
|
+
* @param request DescribeCACertificatesRequest
|
|
15995
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15996
|
+
* @return DescribeCACertificatesResponse
|
|
15688
15997
|
*/
|
|
15689
15998
|
async describeCACertificatesWithOptions(request: DescribeCACertificatesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeCACertificatesResponse> {
|
|
15690
15999
|
Util.validateModel(request);
|
|
@@ -15739,16 +16048,25 @@ export default class Client extends OpenApi {
|
|
|
15739
16048
|
}
|
|
15740
16049
|
|
|
15741
16050
|
/**
|
|
15742
|
-
|
|
15743
|
-
|
|
15744
|
-
|
|
15745
|
-
|
|
16051
|
+
* @summary Queries certificate authority (CA) certificates.
|
|
16052
|
+
*
|
|
16053
|
+
* @description > To ensure data confidentiality, only the certificate fingerprint and name are returned. The certificate content is not returned.
|
|
16054
|
+
*
|
|
16055
|
+
* @param request DescribeCACertificatesRequest
|
|
16056
|
+
* @return DescribeCACertificatesResponse
|
|
15746
16057
|
*/
|
|
15747
16058
|
async describeCACertificates(request: DescribeCACertificatesRequest): Promise<DescribeCACertificatesResponse> {
|
|
15748
16059
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15749
16060
|
return await this.describeCACertificatesWithOptions(request, runtime);
|
|
15750
16061
|
}
|
|
15751
16062
|
|
|
16063
|
+
/**
|
|
16064
|
+
* @summary Queries the attributes of an additional certificate.
|
|
16065
|
+
*
|
|
16066
|
+
* @param request DescribeDomainExtensionAttributeRequest
|
|
16067
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16068
|
+
* @return DescribeDomainExtensionAttributeResponse
|
|
16069
|
+
*/
|
|
15752
16070
|
async describeDomainExtensionAttributeWithOptions(request: DescribeDomainExtensionAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDomainExtensionAttributeResponse> {
|
|
15753
16071
|
Util.validateModel(request);
|
|
15754
16072
|
let query = { };
|
|
@@ -15793,11 +16111,24 @@ export default class Client extends OpenApi {
|
|
|
15793
16111
|
return $tea.cast<DescribeDomainExtensionAttributeResponse>(await this.callApi(params, req, runtime), new DescribeDomainExtensionAttributeResponse({}));
|
|
15794
16112
|
}
|
|
15795
16113
|
|
|
16114
|
+
/**
|
|
16115
|
+
* @summary Queries the attributes of an additional certificate.
|
|
16116
|
+
*
|
|
16117
|
+
* @param request DescribeDomainExtensionAttributeRequest
|
|
16118
|
+
* @return DescribeDomainExtensionAttributeResponse
|
|
16119
|
+
*/
|
|
15796
16120
|
async describeDomainExtensionAttribute(request: DescribeDomainExtensionAttributeRequest): Promise<DescribeDomainExtensionAttributeResponse> {
|
|
15797
16121
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15798
16122
|
return await this.describeDomainExtensionAttributeWithOptions(request, runtime);
|
|
15799
16123
|
}
|
|
15800
16124
|
|
|
16125
|
+
/**
|
|
16126
|
+
* @summary Queries additional certificates.
|
|
16127
|
+
*
|
|
16128
|
+
* @param request DescribeDomainExtensionsRequest
|
|
16129
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16130
|
+
* @return DescribeDomainExtensionsResponse
|
|
16131
|
+
*/
|
|
15801
16132
|
async describeDomainExtensionsWithOptions(request: DescribeDomainExtensionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDomainExtensionsResponse> {
|
|
15802
16133
|
Util.validateModel(request);
|
|
15803
16134
|
let query = { };
|
|
@@ -15850,11 +16181,24 @@ export default class Client extends OpenApi {
|
|
|
15850
16181
|
return $tea.cast<DescribeDomainExtensionsResponse>(await this.callApi(params, req, runtime), new DescribeDomainExtensionsResponse({}));
|
|
15851
16182
|
}
|
|
15852
16183
|
|
|
16184
|
+
/**
|
|
16185
|
+
* @summary Queries additional certificates.
|
|
16186
|
+
*
|
|
16187
|
+
* @param request DescribeDomainExtensionsRequest
|
|
16188
|
+
* @return DescribeDomainExtensionsResponse
|
|
16189
|
+
*/
|
|
15853
16190
|
async describeDomainExtensions(request: DescribeDomainExtensionsRequest): Promise<DescribeDomainExtensionsResponse> {
|
|
15854
16191
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15855
16192
|
return await this.describeDomainExtensionsWithOptions(request, runtime);
|
|
15856
16193
|
}
|
|
15857
16194
|
|
|
16195
|
+
/**
|
|
16196
|
+
* @summary Queries the health status of backend servers.
|
|
16197
|
+
*
|
|
16198
|
+
* @param request DescribeHealthStatusRequest
|
|
16199
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16200
|
+
* @return DescribeHealthStatusResponse
|
|
16201
|
+
*/
|
|
15858
16202
|
async describeHealthStatusWithOptions(request: DescribeHealthStatusRequest, runtime: $Util.RuntimeOptions): Promise<DescribeHealthStatusResponse> {
|
|
15859
16203
|
Util.validateModel(request);
|
|
15860
16204
|
let query = { };
|
|
@@ -15907,11 +16251,24 @@ export default class Client extends OpenApi {
|
|
|
15907
16251
|
return $tea.cast<DescribeHealthStatusResponse>(await this.callApi(params, req, runtime), new DescribeHealthStatusResponse({}));
|
|
15908
16252
|
}
|
|
15909
16253
|
|
|
16254
|
+
/**
|
|
16255
|
+
* @summary Queries the health status of backend servers.
|
|
16256
|
+
*
|
|
16257
|
+
* @param request DescribeHealthStatusRequest
|
|
16258
|
+
* @return DescribeHealthStatusResponse
|
|
16259
|
+
*/
|
|
15910
16260
|
async describeHealthStatus(request: DescribeHealthStatusRequest): Promise<DescribeHealthStatusResponse> {
|
|
15911
16261
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15912
16262
|
return await this.describeHealthStatusWithOptions(request, runtime);
|
|
15913
16263
|
}
|
|
15914
16264
|
|
|
16265
|
+
/**
|
|
16266
|
+
* @summary Queries the configurations of fine-grained monitoring in a region.
|
|
16267
|
+
*
|
|
16268
|
+
* @param request DescribeHighDefinationMonitorRequest
|
|
16269
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16270
|
+
* @return DescribeHighDefinationMonitorResponse
|
|
16271
|
+
*/
|
|
15915
16272
|
async describeHighDefinationMonitorWithOptions(request: DescribeHighDefinationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<DescribeHighDefinationMonitorResponse> {
|
|
15916
16273
|
Util.validateModel(request);
|
|
15917
16274
|
let query = { };
|
|
@@ -15956,11 +16313,24 @@ export default class Client extends OpenApi {
|
|
|
15956
16313
|
return $tea.cast<DescribeHighDefinationMonitorResponse>(await this.callApi(params, req, runtime), new DescribeHighDefinationMonitorResponse({}));
|
|
15957
16314
|
}
|
|
15958
16315
|
|
|
16316
|
+
/**
|
|
16317
|
+
* @summary Queries the configurations of fine-grained monitoring in a region.
|
|
16318
|
+
*
|
|
16319
|
+
* @param request DescribeHighDefinationMonitorRequest
|
|
16320
|
+
* @return DescribeHighDefinationMonitorResponse
|
|
16321
|
+
*/
|
|
15959
16322
|
async describeHighDefinationMonitor(request: DescribeHighDefinationMonitorRequest): Promise<DescribeHighDefinationMonitorResponse> {
|
|
15960
16323
|
let runtime = new $Util.RuntimeOptions({ });
|
|
15961
16324
|
return await this.describeHighDefinationMonitorWithOptions(request, runtime);
|
|
15962
16325
|
}
|
|
15963
16326
|
|
|
16327
|
+
/**
|
|
16328
|
+
* @summary Queries the whitelist configurations of a listener.
|
|
16329
|
+
*
|
|
16330
|
+
* @param request DescribeListenerAccessControlAttributeRequest
|
|
16331
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16332
|
+
* @return DescribeListenerAccessControlAttributeResponse
|
|
16333
|
+
*/
|
|
15964
16334
|
async describeListenerAccessControlAttributeWithOptions(request: DescribeListenerAccessControlAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeListenerAccessControlAttributeResponse> {
|
|
15965
16335
|
Util.validateModel(request);
|
|
15966
16336
|
let query = { };
|
|
@@ -16013,17 +16383,25 @@ export default class Client extends OpenApi {
|
|
|
16013
16383
|
return $tea.cast<DescribeListenerAccessControlAttributeResponse>(await this.callApi(params, req, runtime), new DescribeListenerAccessControlAttributeResponse({}));
|
|
16014
16384
|
}
|
|
16015
16385
|
|
|
16386
|
+
/**
|
|
16387
|
+
* @summary Queries the whitelist configurations of a listener.
|
|
16388
|
+
*
|
|
16389
|
+
* @param request DescribeListenerAccessControlAttributeRequest
|
|
16390
|
+
* @return DescribeListenerAccessControlAttributeResponse
|
|
16391
|
+
*/
|
|
16016
16392
|
async describeListenerAccessControlAttribute(request: DescribeListenerAccessControlAttributeRequest): Promise<DescribeListenerAccessControlAttributeResponse> {
|
|
16017
16393
|
let runtime = new $Util.RuntimeOptions({ });
|
|
16018
16394
|
return await this.describeListenerAccessControlAttributeWithOptions(request, runtime);
|
|
16019
16395
|
}
|
|
16020
16396
|
|
|
16021
16397
|
/**
|
|
16022
|
-
|
|
16023
|
-
|
|
16024
|
-
|
|
16025
|
-
|
|
16026
|
-
|
|
16398
|
+
* @summary Queries the detail of a Classic Load Balancer (CLB) instance.
|
|
16399
|
+
*
|
|
16400
|
+
* @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.
|
|
16401
|
+
*
|
|
16402
|
+
* @param request DescribeLoadBalancerAttributeRequest
|
|
16403
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16404
|
+
* @return DescribeLoadBalancerAttributeResponse
|
|
16027
16405
|
*/
|
|
16028
16406
|
async describeLoadBalancerAttributeWithOptions(request: DescribeLoadBalancerAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLoadBalancerAttributeResponse> {
|
|
16029
16407
|
Util.validateModel(request);
|
|
@@ -16070,10 +16448,12 @@ export default class Client extends OpenApi {
|
|
|
16070
16448
|
}
|
|
16071
16449
|
|
|
16072
16450
|
/**
|
|
16073
|
-
|
|
16074
|
-
|
|
16075
|
-
|
|
16076
|
-
|
|
16451
|
+
* @summary Queries the detail of a Classic Load Balancer (CLB) instance.
|
|
16452
|
+
*
|
|
16453
|
+
* @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.
|
|
16454
|
+
*
|
|
16455
|
+
* @param request DescribeLoadBalancerAttributeRequest
|
|
16456
|
+
* @return DescribeLoadBalancerAttributeResponse
|
|
16077
16457
|
*/
|
|
16078
16458
|
async describeLoadBalancerAttribute(request: DescribeLoadBalancerAttributeRequest): Promise<DescribeLoadBalancerAttributeResponse> {
|
|
16079
16459
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -16081,12 +16461,14 @@ export default class Client extends OpenApi {
|
|
|
16081
16461
|
}
|
|
16082
16462
|
|
|
16083
16463
|
/**
|
|
16084
|
-
|
|
16085
|
-
|
|
16086
|
-
|
|
16087
|
-
|
|
16088
|
-
|
|
16089
|
-
|
|
16464
|
+
* @summary Queries the configurations of an HTTP listener.
|
|
16465
|
+
*
|
|
16466
|
+
* @description * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
|
|
16467
|
+
* * 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).
|
|
16468
|
+
*
|
|
16469
|
+
* @param request DescribeLoadBalancerHTTPListenerAttributeRequest
|
|
16470
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16471
|
+
* @return DescribeLoadBalancerHTTPListenerAttributeResponse
|
|
16090
16472
|
*/
|
|
16091
16473
|
async describeLoadBalancerHTTPListenerAttributeWithOptions(request: DescribeLoadBalancerHTTPListenerAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLoadBalancerHTTPListenerAttributeResponse> {
|
|
16092
16474
|
Util.validateModel(request);
|
|
@@ -16137,11 +16519,13 @@ export default class Client extends OpenApi {
|
|
|
16137
16519
|
}
|
|
16138
16520
|
|
|
16139
16521
|
/**
|
|
16140
|
-
|
|
16141
|
-
|
|
16142
|
-
|
|
16143
|
-
|
|
16144
|
-
|
|
16522
|
+
* @summary Queries the configurations of an HTTP listener.
|
|
16523
|
+
*
|
|
16524
|
+
* @description * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
|
|
16525
|
+
* * 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).
|
|
16526
|
+
*
|
|
16527
|
+
* @param request DescribeLoadBalancerHTTPListenerAttributeRequest
|
|
16528
|
+
* @return DescribeLoadBalancerHTTPListenerAttributeResponse
|
|
16145
16529
|
*/
|
|
16146
16530
|
async describeLoadBalancerHTTPListenerAttribute(request: DescribeLoadBalancerHTTPListenerAttributeRequest): Promise<DescribeLoadBalancerHTTPListenerAttributeResponse> {
|
|
16147
16531
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -16149,12 +16533,14 @@ export default class Client extends OpenApi {
|
|
|
16149
16533
|
}
|
|
16150
16534
|
|
|
16151
16535
|
/**
|
|
16152
|
-
|
|
16153
|
-
|
|
16154
|
-
|
|
16155
|
-
|
|
16156
|
-
|
|
16157
|
-
|
|
16536
|
+
* @summary Queries the configurations of an HTTPS listener.
|
|
16537
|
+
*
|
|
16538
|
+
* @description * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
|
|
16539
|
+
* * 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).
|
|
16540
|
+
*
|
|
16541
|
+
* @param request DescribeLoadBalancerHTTPSListenerAttributeRequest
|
|
16542
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16543
|
+
* @return DescribeLoadBalancerHTTPSListenerAttributeResponse
|
|
16158
16544
|
*/
|
|
16159
16545
|
async describeLoadBalancerHTTPSListenerAttributeWithOptions(request: DescribeLoadBalancerHTTPSListenerAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLoadBalancerHTTPSListenerAttributeResponse> {
|
|
16160
16546
|
Util.validateModel(request);
|
|
@@ -16205,11 +16591,13 @@ export default class Client extends OpenApi {
|
|
|
16205
16591
|
}
|
|
16206
16592
|
|
|
16207
16593
|
/**
|
|
16208
|
-
|
|
16209
|
-
|
|
16210
|
-
|
|
16211
|
-
|
|
16212
|
-
|
|
16594
|
+
* @summary Queries the configurations of an HTTPS listener.
|
|
16595
|
+
*
|
|
16596
|
+
* @description * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
|
|
16597
|
+
* * 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).
|
|
16598
|
+
*
|
|
16599
|
+
* @param request DescribeLoadBalancerHTTPSListenerAttributeRequest
|
|
16600
|
+
* @return DescribeLoadBalancerHTTPSListenerAttributeResponse
|
|
16213
16601
|
*/
|
|
16214
16602
|
async describeLoadBalancerHTTPSListenerAttribute(request: DescribeLoadBalancerHTTPSListenerAttributeRequest): Promise<DescribeLoadBalancerHTTPSListenerAttributeResponse> {
|
|
16215
16603
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -16217,16 +16605,18 @@ export default class Client extends OpenApi {
|
|
|
16217
16605
|
}
|
|
16218
16606
|
|
|
16219
16607
|
/**
|
|
16220
|
-
|
|
16221
|
-
|
|
16222
|
-
|
|
16223
|
-
|
|
16224
|
-
|
|
16225
|
-
|
|
16226
|
-
|
|
16227
|
-
|
|
16228
|
-
|
|
16229
|
-
|
|
16608
|
+
* @summary Queries the listeners of a Classic Load Balancer (CLB) instance.
|
|
16609
|
+
*
|
|
16610
|
+
* @description * A CLB instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/2401685.html).
|
|
16611
|
+
* * One or more listeners are added to the CLB instance. For more information, see the following topics:
|
|
16612
|
+
* * [CreateLoadBalancerUDPListener](~~CreateLoadBalancerUDPListener~~)
|
|
16613
|
+
* * [CreateLoadBalancerTCPListener](~~CreateLoadBalancerTCPListener~~)
|
|
16614
|
+
* * [CreateLoadBalancerHTTPListener](~~CreateLoadBalancerHTTPListener~~)
|
|
16615
|
+
* * [CreateLoadBalancerHTTPSListener](~~CreateLoadBalancerHTTPSListener~~)
|
|
16616
|
+
*
|
|
16617
|
+
* @param request DescribeLoadBalancerListenersRequest
|
|
16618
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16619
|
+
* @return DescribeLoadBalancerListenersResponse
|
|
16230
16620
|
*/
|
|
16231
16621
|
async describeLoadBalancerListenersWithOptions(request: DescribeLoadBalancerListenersRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLoadBalancerListenersResponse> {
|
|
16232
16622
|
Util.validateModel(request);
|
|
@@ -16297,21 +16687,30 @@ export default class Client extends OpenApi {
|
|
|
16297
16687
|
}
|
|
16298
16688
|
|
|
16299
16689
|
/**
|
|
16300
|
-
|
|
16301
|
-
|
|
16302
|
-
|
|
16303
|
-
|
|
16304
|
-
|
|
16305
|
-
|
|
16306
|
-
|
|
16307
|
-
|
|
16308
|
-
|
|
16690
|
+
* @summary Queries the listeners of a Classic Load Balancer (CLB) instance.
|
|
16691
|
+
*
|
|
16692
|
+
* @description * A CLB instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/2401685.html).
|
|
16693
|
+
* * One or more listeners are added to the CLB instance. For more information, see the following topics:
|
|
16694
|
+
* * [CreateLoadBalancerUDPListener](~~CreateLoadBalancerUDPListener~~)
|
|
16695
|
+
* * [CreateLoadBalancerTCPListener](~~CreateLoadBalancerTCPListener~~)
|
|
16696
|
+
* * [CreateLoadBalancerHTTPListener](~~CreateLoadBalancerHTTPListener~~)
|
|
16697
|
+
* * [CreateLoadBalancerHTTPSListener](~~CreateLoadBalancerHTTPSListener~~)
|
|
16698
|
+
*
|
|
16699
|
+
* @param request DescribeLoadBalancerListenersRequest
|
|
16700
|
+
* @return DescribeLoadBalancerListenersResponse
|
|
16309
16701
|
*/
|
|
16310
16702
|
async describeLoadBalancerListeners(request: DescribeLoadBalancerListenersRequest): Promise<DescribeLoadBalancerListenersResponse> {
|
|
16311
16703
|
let runtime = new $Util.RuntimeOptions({ });
|
|
16312
16704
|
return await this.describeLoadBalancerListenersWithOptions(request, runtime);
|
|
16313
16705
|
}
|
|
16314
16706
|
|
|
16707
|
+
/**
|
|
16708
|
+
* @summary Queries the configurations of a TCP listener of Classic Load Balancer (CLB).
|
|
16709
|
+
*
|
|
16710
|
+
* @param request DescribeLoadBalancerTCPListenerAttributeRequest
|
|
16711
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16712
|
+
* @return DescribeLoadBalancerTCPListenerAttributeResponse
|
|
16713
|
+
*/
|
|
16315
16714
|
async describeLoadBalancerTCPListenerAttributeWithOptions(request: DescribeLoadBalancerTCPListenerAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLoadBalancerTCPListenerAttributeResponse> {
|
|
16316
16715
|
Util.validateModel(request);
|
|
16317
16716
|
let query = { };
|
|
@@ -16360,11 +16759,24 @@ export default class Client extends OpenApi {
|
|
|
16360
16759
|
return $tea.cast<DescribeLoadBalancerTCPListenerAttributeResponse>(await this.callApi(params, req, runtime), new DescribeLoadBalancerTCPListenerAttributeResponse({}));
|
|
16361
16760
|
}
|
|
16362
16761
|
|
|
16762
|
+
/**
|
|
16763
|
+
* @summary Queries the configurations of a TCP listener of Classic Load Balancer (CLB).
|
|
16764
|
+
*
|
|
16765
|
+
* @param request DescribeLoadBalancerTCPListenerAttributeRequest
|
|
16766
|
+
* @return DescribeLoadBalancerTCPListenerAttributeResponse
|
|
16767
|
+
*/
|
|
16363
16768
|
async describeLoadBalancerTCPListenerAttribute(request: DescribeLoadBalancerTCPListenerAttributeRequest): Promise<DescribeLoadBalancerTCPListenerAttributeResponse> {
|
|
16364
16769
|
let runtime = new $Util.RuntimeOptions({ });
|
|
16365
16770
|
return await this.describeLoadBalancerTCPListenerAttributeWithOptions(request, runtime);
|
|
16366
16771
|
}
|
|
16367
16772
|
|
|
16773
|
+
/**
|
|
16774
|
+
* @summary Queries the configurations of a UDP listener.
|
|
16775
|
+
*
|
|
16776
|
+
* @param request DescribeLoadBalancerUDPListenerAttributeRequest
|
|
16777
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16778
|
+
* @return DescribeLoadBalancerUDPListenerAttributeResponse
|
|
16779
|
+
*/
|
|
16368
16780
|
async describeLoadBalancerUDPListenerAttributeWithOptions(request: DescribeLoadBalancerUDPListenerAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLoadBalancerUDPListenerAttributeResponse> {
|
|
16369
16781
|
Util.validateModel(request);
|
|
16370
16782
|
let query = { };
|
|
@@ -16413,11 +16825,24 @@ export default class Client extends OpenApi {
|
|
|
16413
16825
|
return $tea.cast<DescribeLoadBalancerUDPListenerAttributeResponse>(await this.callApi(params, req, runtime), new DescribeLoadBalancerUDPListenerAttributeResponse({}));
|
|
16414
16826
|
}
|
|
16415
16827
|
|
|
16828
|
+
/**
|
|
16829
|
+
* @summary Queries the configurations of a UDP listener.
|
|
16830
|
+
*
|
|
16831
|
+
* @param request DescribeLoadBalancerUDPListenerAttributeRequest
|
|
16832
|
+
* @return DescribeLoadBalancerUDPListenerAttributeResponse
|
|
16833
|
+
*/
|
|
16416
16834
|
async describeLoadBalancerUDPListenerAttribute(request: DescribeLoadBalancerUDPListenerAttributeRequest): Promise<DescribeLoadBalancerUDPListenerAttributeResponse> {
|
|
16417
16835
|
let runtime = new $Util.RuntimeOptions({ });
|
|
16418
16836
|
return await this.describeLoadBalancerUDPListenerAttributeWithOptions(request, runtime);
|
|
16419
16837
|
}
|
|
16420
16838
|
|
|
16839
|
+
/**
|
|
16840
|
+
* @summary Queries Classic Load Balancer (CLB) instances.
|
|
16841
|
+
*
|
|
16842
|
+
* @param request DescribeLoadBalancersRequest
|
|
16843
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16844
|
+
* @return DescribeLoadBalancersResponse
|
|
16845
|
+
*/
|
|
16421
16846
|
async describeLoadBalancersWithOptions(request: DescribeLoadBalancersRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLoadBalancersResponse> {
|
|
16422
16847
|
Util.validateModel(request);
|
|
16423
16848
|
let query = { };
|
|
@@ -16538,11 +16963,24 @@ export default class Client extends OpenApi {
|
|
|
16538
16963
|
return $tea.cast<DescribeLoadBalancersResponse>(await this.callApi(params, req, runtime), new DescribeLoadBalancersResponse({}));
|
|
16539
16964
|
}
|
|
16540
16965
|
|
|
16966
|
+
/**
|
|
16967
|
+
* @summary Queries Classic Load Balancer (CLB) instances.
|
|
16968
|
+
*
|
|
16969
|
+
* @param request DescribeLoadBalancersRequest
|
|
16970
|
+
* @return DescribeLoadBalancersResponse
|
|
16971
|
+
*/
|
|
16541
16972
|
async describeLoadBalancers(request: DescribeLoadBalancersRequest): Promise<DescribeLoadBalancersResponse> {
|
|
16542
16973
|
let runtime = new $Util.RuntimeOptions({ });
|
|
16543
16974
|
return await this.describeLoadBalancersWithOptions(request, runtime);
|
|
16544
16975
|
}
|
|
16545
16976
|
|
|
16977
|
+
/**
|
|
16978
|
+
* @summary Queries the detailed information about a primary/secondary server group.
|
|
16979
|
+
*
|
|
16980
|
+
* @param request DescribeMasterSlaveServerGroupAttributeRequest
|
|
16981
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16982
|
+
* @return DescribeMasterSlaveServerGroupAttributeResponse
|
|
16983
|
+
*/
|
|
16546
16984
|
async describeMasterSlaveServerGroupAttributeWithOptions(request: DescribeMasterSlaveServerGroupAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeMasterSlaveServerGroupAttributeResponse> {
|
|
16547
16985
|
Util.validateModel(request);
|
|
16548
16986
|
let query = { };
|
|
@@ -16587,11 +17025,24 @@ export default class Client extends OpenApi {
|
|
|
16587
17025
|
return $tea.cast<DescribeMasterSlaveServerGroupAttributeResponse>(await this.callApi(params, req, runtime), new DescribeMasterSlaveServerGroupAttributeResponse({}));
|
|
16588
17026
|
}
|
|
16589
17027
|
|
|
17028
|
+
/**
|
|
17029
|
+
* @summary Queries the detailed information about a primary/secondary server group.
|
|
17030
|
+
*
|
|
17031
|
+
* @param request DescribeMasterSlaveServerGroupAttributeRequest
|
|
17032
|
+
* @return DescribeMasterSlaveServerGroupAttributeResponse
|
|
17033
|
+
*/
|
|
16590
17034
|
async describeMasterSlaveServerGroupAttribute(request: DescribeMasterSlaveServerGroupAttributeRequest): Promise<DescribeMasterSlaveServerGroupAttributeResponse> {
|
|
16591
17035
|
let runtime = new $Util.RuntimeOptions({ });
|
|
16592
17036
|
return await this.describeMasterSlaveServerGroupAttributeWithOptions(request, runtime);
|
|
16593
17037
|
}
|
|
16594
17038
|
|
|
17039
|
+
/**
|
|
17040
|
+
* @summary Queries primary/secondary server groups.
|
|
17041
|
+
*
|
|
17042
|
+
* @param request DescribeMasterSlaveServerGroupsRequest
|
|
17043
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17044
|
+
* @return DescribeMasterSlaveServerGroupsResponse
|
|
17045
|
+
*/
|
|
16595
17046
|
async describeMasterSlaveServerGroupsWithOptions(request: DescribeMasterSlaveServerGroupsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeMasterSlaveServerGroupsResponse> {
|
|
16596
17047
|
Util.validateModel(request);
|
|
16597
17048
|
let query = { };
|
|
@@ -16648,11 +17099,24 @@ export default class Client extends OpenApi {
|
|
|
16648
17099
|
return $tea.cast<DescribeMasterSlaveServerGroupsResponse>(await this.callApi(params, req, runtime), new DescribeMasterSlaveServerGroupsResponse({}));
|
|
16649
17100
|
}
|
|
16650
17101
|
|
|
17102
|
+
/**
|
|
17103
|
+
* @summary Queries primary/secondary server groups.
|
|
17104
|
+
*
|
|
17105
|
+
* @param request DescribeMasterSlaveServerGroupsRequest
|
|
17106
|
+
* @return DescribeMasterSlaveServerGroupsResponse
|
|
17107
|
+
*/
|
|
16651
17108
|
async describeMasterSlaveServerGroups(request: DescribeMasterSlaveServerGroupsRequest): Promise<DescribeMasterSlaveServerGroupsResponse> {
|
|
16652
17109
|
let runtime = new $Util.RuntimeOptions({ });
|
|
16653
17110
|
return await this.describeMasterSlaveServerGroupsWithOptions(request, runtime);
|
|
16654
17111
|
}
|
|
16655
17112
|
|
|
17113
|
+
/**
|
|
17114
|
+
* @summary Queries regions.
|
|
17115
|
+
*
|
|
17116
|
+
* @param request DescribeRegionsRequest
|
|
17117
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17118
|
+
* @return DescribeRegionsResponse
|
|
17119
|
+
*/
|
|
16656
17120
|
async describeRegionsWithOptions(request: DescribeRegionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse> {
|
|
16657
17121
|
Util.validateModel(request);
|
|
16658
17122
|
let query = { };
|
|
@@ -16697,11 +17161,24 @@ export default class Client extends OpenApi {
|
|
|
16697
17161
|
return $tea.cast<DescribeRegionsResponse>(await this.callApi(params, req, runtime), new DescribeRegionsResponse({}));
|
|
16698
17162
|
}
|
|
16699
17163
|
|
|
17164
|
+
/**
|
|
17165
|
+
* @summary Queries regions.
|
|
17166
|
+
*
|
|
17167
|
+
* @param request DescribeRegionsRequest
|
|
17168
|
+
* @return DescribeRegionsResponse
|
|
17169
|
+
*/
|
|
16700
17170
|
async describeRegions(request: DescribeRegionsRequest): Promise<DescribeRegionsResponse> {
|
|
16701
17171
|
let runtime = new $Util.RuntimeOptions({ });
|
|
16702
17172
|
return await this.describeRegionsWithOptions(request, runtime);
|
|
16703
17173
|
}
|
|
16704
17174
|
|
|
17175
|
+
/**
|
|
17176
|
+
* @summary Queries the configurations of a specified forwarding rule.
|
|
17177
|
+
*
|
|
17178
|
+
* @param request DescribeRuleAttributeRequest
|
|
17179
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17180
|
+
* @return DescribeRuleAttributeResponse
|
|
17181
|
+
*/
|
|
16705
17182
|
async describeRuleAttributeWithOptions(request: DescribeRuleAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRuleAttributeResponse> {
|
|
16706
17183
|
Util.validateModel(request);
|
|
16707
17184
|
let query = { };
|
|
@@ -16746,11 +17223,24 @@ export default class Client extends OpenApi {
|
|
|
16746
17223
|
return $tea.cast<DescribeRuleAttributeResponse>(await this.callApi(params, req, runtime), new DescribeRuleAttributeResponse({}));
|
|
16747
17224
|
}
|
|
16748
17225
|
|
|
17226
|
+
/**
|
|
17227
|
+
* @summary Queries the configurations of a specified forwarding rule.
|
|
17228
|
+
*
|
|
17229
|
+
* @param request DescribeRuleAttributeRequest
|
|
17230
|
+
* @return DescribeRuleAttributeResponse
|
|
17231
|
+
*/
|
|
16749
17232
|
async describeRuleAttribute(request: DescribeRuleAttributeRequest): Promise<DescribeRuleAttributeResponse> {
|
|
16750
17233
|
let runtime = new $Util.RuntimeOptions({ });
|
|
16751
17234
|
return await this.describeRuleAttributeWithOptions(request, runtime);
|
|
16752
17235
|
}
|
|
16753
17236
|
|
|
17237
|
+
/**
|
|
17238
|
+
* @summary Queries the forwarding rules that are configured for a specified listener.
|
|
17239
|
+
*
|
|
17240
|
+
* @param request DescribeRulesRequest
|
|
17241
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17242
|
+
* @return DescribeRulesResponse
|
|
17243
|
+
*/
|
|
16754
17244
|
async describeRulesWithOptions(request: DescribeRulesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRulesResponse> {
|
|
16755
17245
|
Util.validateModel(request);
|
|
16756
17246
|
let query = { };
|
|
@@ -16803,17 +17293,25 @@ export default class Client extends OpenApi {
|
|
|
16803
17293
|
return $tea.cast<DescribeRulesResponse>(await this.callApi(params, req, runtime), new DescribeRulesResponse({}));
|
|
16804
17294
|
}
|
|
16805
17295
|
|
|
17296
|
+
/**
|
|
17297
|
+
* @summary Queries the forwarding rules that are configured for a specified listener.
|
|
17298
|
+
*
|
|
17299
|
+
* @param request DescribeRulesRequest
|
|
17300
|
+
* @return DescribeRulesResponse
|
|
17301
|
+
*/
|
|
16806
17302
|
async describeRules(request: DescribeRulesRequest): Promise<DescribeRulesResponse> {
|
|
16807
17303
|
let runtime = new $Util.RuntimeOptions({ });
|
|
16808
17304
|
return await this.describeRulesWithOptions(request, runtime);
|
|
16809
17305
|
}
|
|
16810
17306
|
|
|
16811
17307
|
/**
|
|
16812
|
-
|
|
16813
|
-
|
|
16814
|
-
|
|
16815
|
-
|
|
16816
|
-
|
|
17308
|
+
* @summary Queries server certificates of Classic Load Balancer (CLB) instances in a specified region.
|
|
17309
|
+
*
|
|
17310
|
+
* @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.
|
|
17311
|
+
*
|
|
17312
|
+
* @param request DescribeServerCertificatesRequest
|
|
17313
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17314
|
+
* @return DescribeServerCertificatesResponse
|
|
16817
17315
|
*/
|
|
16818
17316
|
async describeServerCertificatesWithOptions(request: DescribeServerCertificatesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeServerCertificatesResponse> {
|
|
16819
17317
|
Util.validateModel(request);
|
|
@@ -16868,10 +17366,12 @@ export default class Client extends OpenApi {
|
|
|
16868
17366
|
}
|
|
16869
17367
|
|
|
16870
17368
|
/**
|
|
16871
|
-
|
|
16872
|
-
|
|
16873
|
-
|
|
16874
|
-
|
|
17369
|
+
* @summary Queries server certificates of Classic Load Balancer (CLB) instances in a specified region.
|
|
17370
|
+
*
|
|
17371
|
+
* @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.
|
|
17372
|
+
*
|
|
17373
|
+
* @param request DescribeServerCertificatesRequest
|
|
17374
|
+
* @return DescribeServerCertificatesResponse
|
|
16875
17375
|
*/
|
|
16876
17376
|
async describeServerCertificates(request: DescribeServerCertificatesRequest): Promise<DescribeServerCertificatesResponse> {
|
|
16877
17377
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -16879,16 +17379,18 @@ export default class Client extends OpenApi {
|
|
|
16879
17379
|
}
|
|
16880
17380
|
|
|
16881
17381
|
/**
|
|
16882
|
-
|
|
16883
|
-
|
|
16884
|
-
|
|
16885
|
-
|
|
16886
|
-
|
|
16887
|
-
|
|
16888
|
-
|
|
16889
|
-
|
|
16890
|
-
|
|
16891
|
-
|
|
17382
|
+
* @summary Queries tags.
|
|
17383
|
+
*
|
|
17384
|
+
* @description When you call this operation, take note of the following items:
|
|
17385
|
+
* * 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.
|
|
17386
|
+
* * The logical relationship among the specified conditions is AND. Only tags that match all the specified conditions are returned.
|
|
17387
|
+
* * If the Tagkey parameter is set and the Tagvalue parameter is not set, all tags that contain the specified tag key are returned.
|
|
17388
|
+
* * If you set the Tagvalue parameter in a request, you must also set the Tagkey parameter in the request.
|
|
17389
|
+
* * If you set both the Tagkey and Tagvalue parameters, only tags that contain the specified keys and values are returned.
|
|
17390
|
+
*
|
|
17391
|
+
* @param request DescribeTagsRequest
|
|
17392
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17393
|
+
* @return DescribeTagsResponse
|
|
16892
17394
|
*/
|
|
16893
17395
|
async describeTagsWithOptions(request: DescribeTagsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeTagsResponse> {
|
|
16894
17396
|
Util.validateModel(request);
|
|
@@ -16951,21 +17453,30 @@ export default class Client extends OpenApi {
|
|
|
16951
17453
|
}
|
|
16952
17454
|
|
|
16953
17455
|
/**
|
|
16954
|
-
|
|
16955
|
-
|
|
16956
|
-
|
|
16957
|
-
|
|
16958
|
-
|
|
16959
|
-
|
|
16960
|
-
|
|
16961
|
-
|
|
16962
|
-
|
|
17456
|
+
* @summary Queries tags.
|
|
17457
|
+
*
|
|
17458
|
+
* @description When you call this operation, take note of the following items:
|
|
17459
|
+
* * 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.
|
|
17460
|
+
* * The logical relationship among the specified conditions is AND. Only tags that match all the specified conditions are returned.
|
|
17461
|
+
* * If the Tagkey parameter is set and the Tagvalue parameter is not set, all tags that contain the specified tag key are returned.
|
|
17462
|
+
* * If you set the Tagvalue parameter in a request, you must also set the Tagkey parameter in the request.
|
|
17463
|
+
* * If you set both the Tagkey and Tagvalue parameters, only tags that contain the specified keys and values are returned.
|
|
17464
|
+
*
|
|
17465
|
+
* @param request DescribeTagsRequest
|
|
17466
|
+
* @return DescribeTagsResponse
|
|
16963
17467
|
*/
|
|
16964
17468
|
async describeTags(request: DescribeTagsRequest): Promise<DescribeTagsResponse> {
|
|
16965
17469
|
let runtime = new $Util.RuntimeOptions({ });
|
|
16966
17470
|
return await this.describeTagsWithOptions(request, runtime);
|
|
16967
17471
|
}
|
|
16968
17472
|
|
|
17473
|
+
/**
|
|
17474
|
+
* @summary Queries detailed information about a vServer group.
|
|
17475
|
+
*
|
|
17476
|
+
* @param request DescribeVServerGroupAttributeRequest
|
|
17477
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17478
|
+
* @return DescribeVServerGroupAttributeResponse
|
|
17479
|
+
*/
|
|
16969
17480
|
async describeVServerGroupAttributeWithOptions(request: DescribeVServerGroupAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeVServerGroupAttributeResponse> {
|
|
16970
17481
|
Util.validateModel(request);
|
|
16971
17482
|
let query = { };
|
|
@@ -17010,11 +17521,24 @@ export default class Client extends OpenApi {
|
|
|
17010
17521
|
return $tea.cast<DescribeVServerGroupAttributeResponse>(await this.callApi(params, req, runtime), new DescribeVServerGroupAttributeResponse({}));
|
|
17011
17522
|
}
|
|
17012
17523
|
|
|
17524
|
+
/**
|
|
17525
|
+
* @summary Queries detailed information about a vServer group.
|
|
17526
|
+
*
|
|
17527
|
+
* @param request DescribeVServerGroupAttributeRequest
|
|
17528
|
+
* @return DescribeVServerGroupAttributeResponse
|
|
17529
|
+
*/
|
|
17013
17530
|
async describeVServerGroupAttribute(request: DescribeVServerGroupAttributeRequest): Promise<DescribeVServerGroupAttributeResponse> {
|
|
17014
17531
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17015
17532
|
return await this.describeVServerGroupAttributeWithOptions(request, runtime);
|
|
17016
17533
|
}
|
|
17017
17534
|
|
|
17535
|
+
/**
|
|
17536
|
+
* @summary Queries server groups.
|
|
17537
|
+
*
|
|
17538
|
+
* @param request DescribeVServerGroupsRequest
|
|
17539
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17540
|
+
* @return DescribeVServerGroupsResponse
|
|
17541
|
+
*/
|
|
17018
17542
|
async describeVServerGroupsWithOptions(request: DescribeVServerGroupsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeVServerGroupsResponse> {
|
|
17019
17543
|
Util.validateModel(request);
|
|
17020
17544
|
let query = { };
|
|
@@ -17075,11 +17599,24 @@ export default class Client extends OpenApi {
|
|
|
17075
17599
|
return $tea.cast<DescribeVServerGroupsResponse>(await this.callApi(params, req, runtime), new DescribeVServerGroupsResponse({}));
|
|
17076
17600
|
}
|
|
17077
17601
|
|
|
17602
|
+
/**
|
|
17603
|
+
* @summary Queries server groups.
|
|
17604
|
+
*
|
|
17605
|
+
* @param request DescribeVServerGroupsRequest
|
|
17606
|
+
* @return DescribeVServerGroupsResponse
|
|
17607
|
+
*/
|
|
17078
17608
|
async describeVServerGroups(request: DescribeVServerGroupsRequest): Promise<DescribeVServerGroupsResponse> {
|
|
17079
17609
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17080
17610
|
return await this.describeVServerGroupsWithOptions(request, runtime);
|
|
17081
17611
|
}
|
|
17082
17612
|
|
|
17613
|
+
/**
|
|
17614
|
+
* @summary Queries the zones in a region.
|
|
17615
|
+
*
|
|
17616
|
+
* @param request DescribeZonesRequest
|
|
17617
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17618
|
+
* @return DescribeZonesResponse
|
|
17619
|
+
*/
|
|
17083
17620
|
async describeZonesWithOptions(request: DescribeZonesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeZonesResponse> {
|
|
17084
17621
|
Util.validateModel(request);
|
|
17085
17622
|
let query = { };
|
|
@@ -17120,11 +17657,24 @@ export default class Client extends OpenApi {
|
|
|
17120
17657
|
return $tea.cast<DescribeZonesResponse>(await this.callApi(params, req, runtime), new DescribeZonesResponse({}));
|
|
17121
17658
|
}
|
|
17122
17659
|
|
|
17660
|
+
/**
|
|
17661
|
+
* @summary Queries the zones in a region.
|
|
17662
|
+
*
|
|
17663
|
+
* @param request DescribeZonesRequest
|
|
17664
|
+
* @return DescribeZonesResponse
|
|
17665
|
+
*/
|
|
17123
17666
|
async describeZones(request: DescribeZonesRequest): Promise<DescribeZonesResponse> {
|
|
17124
17667
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17125
17668
|
return await this.describeZonesWithOptions(request, runtime);
|
|
17126
17669
|
}
|
|
17127
17670
|
|
|
17671
|
+
/**
|
|
17672
|
+
* @summary Enables fine-grained monitoring for the current region.
|
|
17673
|
+
*
|
|
17674
|
+
* @param request EnableHighDefinationMonitorRequest
|
|
17675
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17676
|
+
* @return EnableHighDefinationMonitorResponse
|
|
17677
|
+
*/
|
|
17128
17678
|
async enableHighDefinationMonitorWithOptions(request: EnableHighDefinationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<EnableHighDefinationMonitorResponse> {
|
|
17129
17679
|
Util.validateModel(request);
|
|
17130
17680
|
let query = { };
|
|
@@ -17177,11 +17727,24 @@ export default class Client extends OpenApi {
|
|
|
17177
17727
|
return $tea.cast<EnableHighDefinationMonitorResponse>(await this.callApi(params, req, runtime), new EnableHighDefinationMonitorResponse({}));
|
|
17178
17728
|
}
|
|
17179
17729
|
|
|
17730
|
+
/**
|
|
17731
|
+
* @summary Enables fine-grained monitoring for the current region.
|
|
17732
|
+
*
|
|
17733
|
+
* @param request EnableHighDefinationMonitorRequest
|
|
17734
|
+
* @return EnableHighDefinationMonitorResponse
|
|
17735
|
+
*/
|
|
17180
17736
|
async enableHighDefinationMonitor(request: EnableHighDefinationMonitorRequest): Promise<EnableHighDefinationMonitorResponse> {
|
|
17181
17737
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17182
17738
|
return await this.enableHighDefinationMonitorWithOptions(request, runtime);
|
|
17183
17739
|
}
|
|
17184
17740
|
|
|
17741
|
+
/**
|
|
17742
|
+
* @summary Queries Transport Layer Security (TLS) policies.
|
|
17743
|
+
*
|
|
17744
|
+
* @param request ListTLSCipherPoliciesRequest
|
|
17745
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17746
|
+
* @return ListTLSCipherPoliciesResponse
|
|
17747
|
+
*/
|
|
17185
17748
|
async listTLSCipherPoliciesWithOptions(request: ListTLSCipherPoliciesRequest, runtime: $Util.RuntimeOptions): Promise<ListTLSCipherPoliciesResponse> {
|
|
17186
17749
|
Util.validateModel(request);
|
|
17187
17750
|
let query = { };
|
|
@@ -17242,20 +17805,28 @@ export default class Client extends OpenApi {
|
|
|
17242
17805
|
return $tea.cast<ListTLSCipherPoliciesResponse>(await this.callApi(params, req, runtime), new ListTLSCipherPoliciesResponse({}));
|
|
17243
17806
|
}
|
|
17244
17807
|
|
|
17808
|
+
/**
|
|
17809
|
+
* @summary Queries Transport Layer Security (TLS) policies.
|
|
17810
|
+
*
|
|
17811
|
+
* @param request ListTLSCipherPoliciesRequest
|
|
17812
|
+
* @return ListTLSCipherPoliciesResponse
|
|
17813
|
+
*/
|
|
17245
17814
|
async listTLSCipherPolicies(request: ListTLSCipherPoliciesRequest): Promise<ListTLSCipherPoliciesResponse> {
|
|
17246
17815
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17247
17816
|
return await this.listTLSCipherPoliciesWithOptions(request, runtime);
|
|
17248
17817
|
}
|
|
17249
17818
|
|
|
17250
17819
|
/**
|
|
17251
|
-
|
|
17252
|
-
|
|
17253
|
-
|
|
17254
|
-
|
|
17255
|
-
|
|
17256
|
-
|
|
17257
|
-
|
|
17258
|
-
|
|
17820
|
+
* @summary Queries tags that are added to one or more instances.
|
|
17821
|
+
*
|
|
17822
|
+
* @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.
|
|
17823
|
+
* * **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.
|
|
17824
|
+
* * If you set **Tag.N** and **ResourceId.N** to filter tags, **ResourceId.N** must match all specified key-value pairs.
|
|
17825
|
+
* * If you specify multiple key-value pairs, resources that contain these key-value pairs are returned.
|
|
17826
|
+
*
|
|
17827
|
+
* @param request ListTagResourcesRequest
|
|
17828
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17829
|
+
* @return ListTagResourcesResponse
|
|
17259
17830
|
*/
|
|
17260
17831
|
async listTagResourcesWithOptions(request: ListTagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<ListTagResourcesResponse> {
|
|
17261
17832
|
Util.validateModel(request);
|
|
@@ -17314,19 +17885,28 @@ export default class Client extends OpenApi {
|
|
|
17314
17885
|
}
|
|
17315
17886
|
|
|
17316
17887
|
/**
|
|
17317
|
-
|
|
17318
|
-
|
|
17319
|
-
|
|
17320
|
-
|
|
17321
|
-
|
|
17322
|
-
|
|
17323
|
-
|
|
17888
|
+
* @summary Queries tags that are added to one or more instances.
|
|
17889
|
+
*
|
|
17890
|
+
* @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.
|
|
17891
|
+
* * **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.
|
|
17892
|
+
* * If you set **Tag.N** and **ResourceId.N** to filter tags, **ResourceId.N** must match all specified key-value pairs.
|
|
17893
|
+
* * If you specify multiple key-value pairs, resources that contain these key-value pairs are returned.
|
|
17894
|
+
*
|
|
17895
|
+
* @param request ListTagResourcesRequest
|
|
17896
|
+
* @return ListTagResourcesResponse
|
|
17324
17897
|
*/
|
|
17325
17898
|
async listTagResources(request: ListTagResourcesRequest): Promise<ListTagResourcesResponse> {
|
|
17326
17899
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17327
17900
|
return await this.listTagResourcesWithOptions(request, runtime);
|
|
17328
17901
|
}
|
|
17329
17902
|
|
|
17903
|
+
/**
|
|
17904
|
+
* @summary Modifies the configuration of fine-grained monitoring in a specified region.
|
|
17905
|
+
*
|
|
17906
|
+
* @param request ModifyHighDefinationMonitorRequest
|
|
17907
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17908
|
+
* @return ModifyHighDefinationMonitorResponse
|
|
17909
|
+
*/
|
|
17330
17910
|
async modifyHighDefinationMonitorWithOptions(request: ModifyHighDefinationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<ModifyHighDefinationMonitorResponse> {
|
|
17331
17911
|
Util.validateModel(request);
|
|
17332
17912
|
let query = { };
|
|
@@ -17375,18 +17955,26 @@ export default class Client extends OpenApi {
|
|
|
17375
17955
|
return $tea.cast<ModifyHighDefinationMonitorResponse>(await this.callApi(params, req, runtime), new ModifyHighDefinationMonitorResponse({}));
|
|
17376
17956
|
}
|
|
17377
17957
|
|
|
17958
|
+
/**
|
|
17959
|
+
* @summary Modifies the configuration of fine-grained monitoring in a specified region.
|
|
17960
|
+
*
|
|
17961
|
+
* @param request ModifyHighDefinationMonitorRequest
|
|
17962
|
+
* @return ModifyHighDefinationMonitorResponse
|
|
17963
|
+
*/
|
|
17378
17964
|
async modifyHighDefinationMonitor(request: ModifyHighDefinationMonitorRequest): Promise<ModifyHighDefinationMonitorResponse> {
|
|
17379
17965
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17380
17966
|
return await this.modifyHighDefinationMonitorWithOptions(request, runtime);
|
|
17381
17967
|
}
|
|
17382
17968
|
|
|
17383
17969
|
/**
|
|
17384
|
-
|
|
17385
|
-
|
|
17386
|
-
|
|
17387
|
-
|
|
17388
|
-
|
|
17389
|
-
|
|
17970
|
+
* @summary Changes the metering method of a pay-as-you-go Classic Load Balancer (CLB) instance.
|
|
17971
|
+
*
|
|
17972
|
+
* @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.
|
|
17973
|
+
* >* This operation can change the metering method of only one instance at a time.
|
|
17974
|
+
*
|
|
17975
|
+
* @param request ModifyLoadBalancerInstanceChargeTypeRequest
|
|
17976
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17977
|
+
* @return ModifyLoadBalancerInstanceChargeTypeResponse
|
|
17390
17978
|
*/
|
|
17391
17979
|
async modifyLoadBalancerInstanceChargeTypeWithOptions(request: ModifyLoadBalancerInstanceChargeTypeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyLoadBalancerInstanceChargeTypeResponse> {
|
|
17392
17980
|
Util.validateModel(request);
|
|
@@ -17449,17 +18037,26 @@ export default class Client extends OpenApi {
|
|
|
17449
18037
|
}
|
|
17450
18038
|
|
|
17451
18039
|
/**
|
|
17452
|
-
|
|
17453
|
-
|
|
17454
|
-
|
|
17455
|
-
|
|
17456
|
-
|
|
18040
|
+
* @summary Changes the metering method of a pay-as-you-go Classic Load Balancer (CLB) instance.
|
|
18041
|
+
*
|
|
18042
|
+
* @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.
|
|
18043
|
+
* >* This operation can change the metering method of only one instance at a time.
|
|
18044
|
+
*
|
|
18045
|
+
* @param request ModifyLoadBalancerInstanceChargeTypeRequest
|
|
18046
|
+
* @return ModifyLoadBalancerInstanceChargeTypeResponse
|
|
17457
18047
|
*/
|
|
17458
18048
|
async modifyLoadBalancerInstanceChargeType(request: ModifyLoadBalancerInstanceChargeTypeRequest): Promise<ModifyLoadBalancerInstanceChargeTypeResponse> {
|
|
17459
18049
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17460
18050
|
return await this.modifyLoadBalancerInstanceChargeTypeWithOptions(request, runtime);
|
|
17461
18051
|
}
|
|
17462
18052
|
|
|
18053
|
+
/**
|
|
18054
|
+
* @summary Modifies the specification of a Classic Load Balancer (CLB) instance.
|
|
18055
|
+
*
|
|
18056
|
+
* @param request ModifyLoadBalancerInstanceSpecRequest
|
|
18057
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18058
|
+
* @return ModifyLoadBalancerInstanceSpecResponse
|
|
18059
|
+
*/
|
|
17463
18060
|
async modifyLoadBalancerInstanceSpecWithOptions(request: ModifyLoadBalancerInstanceSpecRequest, runtime: $Util.RuntimeOptions): Promise<ModifyLoadBalancerInstanceSpecResponse> {
|
|
17464
18061
|
Util.validateModel(request);
|
|
17465
18062
|
let query = { };
|
|
@@ -17512,19 +18109,27 @@ export default class Client extends OpenApi {
|
|
|
17512
18109
|
return $tea.cast<ModifyLoadBalancerInstanceSpecResponse>(await this.callApi(params, req, runtime), new ModifyLoadBalancerInstanceSpecResponse({}));
|
|
17513
18110
|
}
|
|
17514
18111
|
|
|
18112
|
+
/**
|
|
18113
|
+
* @summary Modifies the specification of a Classic Load Balancer (CLB) instance.
|
|
18114
|
+
*
|
|
18115
|
+
* @param request ModifyLoadBalancerInstanceSpecRequest
|
|
18116
|
+
* @return ModifyLoadBalancerInstanceSpecResponse
|
|
18117
|
+
*/
|
|
17515
18118
|
async modifyLoadBalancerInstanceSpec(request: ModifyLoadBalancerInstanceSpecRequest): Promise<ModifyLoadBalancerInstanceSpecResponse> {
|
|
17516
18119
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17517
18120
|
return await this.modifyLoadBalancerInstanceSpecWithOptions(request, runtime);
|
|
17518
18121
|
}
|
|
17519
18122
|
|
|
17520
18123
|
/**
|
|
17521
|
-
|
|
17522
|
-
|
|
17523
|
-
|
|
17524
|
-
|
|
17525
|
-
|
|
17526
|
-
|
|
17527
|
-
|
|
18124
|
+
* @summary Modifies the metering method of an Internet-facing Classic Load Balancer (CLB) instance.
|
|
18125
|
+
*
|
|
18126
|
+
* @description ## Description
|
|
18127
|
+
* * If you modify only the maximum bandwidth of a pay-by-bandwidth CLB instance, the new bandwidth immediately takes effect.
|
|
18128
|
+
* * 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.
|
|
18129
|
+
*
|
|
18130
|
+
* @param request ModifyLoadBalancerInternetSpecRequest
|
|
18131
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18132
|
+
* @return ModifyLoadBalancerInternetSpecResponse
|
|
17528
18133
|
*/
|
|
17529
18134
|
async modifyLoadBalancerInternetSpecWithOptions(request: ModifyLoadBalancerInternetSpecRequest, runtime: $Util.RuntimeOptions): Promise<ModifyLoadBalancerInternetSpecResponse> {
|
|
17530
18135
|
Util.validateModel(request);
|
|
@@ -17583,18 +18188,27 @@ export default class Client extends OpenApi {
|
|
|
17583
18188
|
}
|
|
17584
18189
|
|
|
17585
18190
|
/**
|
|
17586
|
-
|
|
17587
|
-
|
|
17588
|
-
|
|
17589
|
-
|
|
17590
|
-
|
|
17591
|
-
|
|
18191
|
+
* @summary Modifies the metering method of an Internet-facing Classic Load Balancer (CLB) instance.
|
|
18192
|
+
*
|
|
18193
|
+
* @description ## Description
|
|
18194
|
+
* * If you modify only the maximum bandwidth of a pay-by-bandwidth CLB instance, the new bandwidth immediately takes effect.
|
|
18195
|
+
* * 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.
|
|
18196
|
+
*
|
|
18197
|
+
* @param request ModifyLoadBalancerInternetSpecRequest
|
|
18198
|
+
* @return ModifyLoadBalancerInternetSpecResponse
|
|
17592
18199
|
*/
|
|
17593
18200
|
async modifyLoadBalancerInternetSpec(request: ModifyLoadBalancerInternetSpecRequest): Promise<ModifyLoadBalancerInternetSpecResponse> {
|
|
17594
18201
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17595
18202
|
return await this.modifyLoadBalancerInternetSpecWithOptions(request, runtime);
|
|
17596
18203
|
}
|
|
17597
18204
|
|
|
18205
|
+
/**
|
|
18206
|
+
* @summary Changes the billing method of a Classic Load Balancer (CLB) instance from pay-as-you-go to subscription.
|
|
18207
|
+
*
|
|
18208
|
+
* @param request ModifyLoadBalancerPayTypeRequest
|
|
18209
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18210
|
+
* @return ModifyLoadBalancerPayTypeResponse
|
|
18211
|
+
*/
|
|
17598
18212
|
async modifyLoadBalancerPayTypeWithOptions(request: ModifyLoadBalancerPayTypeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyLoadBalancerPayTypeResponse> {
|
|
17599
18213
|
Util.validateModel(request);
|
|
17600
18214
|
let query = { };
|
|
@@ -17655,17 +18269,25 @@ export default class Client extends OpenApi {
|
|
|
17655
18269
|
return $tea.cast<ModifyLoadBalancerPayTypeResponse>(await this.callApi(params, req, runtime), new ModifyLoadBalancerPayTypeResponse({}));
|
|
17656
18270
|
}
|
|
17657
18271
|
|
|
18272
|
+
/**
|
|
18273
|
+
* @summary Changes the billing method of a Classic Load Balancer (CLB) instance from pay-as-you-go to subscription.
|
|
18274
|
+
*
|
|
18275
|
+
* @param request ModifyLoadBalancerPayTypeRequest
|
|
18276
|
+
* @return ModifyLoadBalancerPayTypeResponse
|
|
18277
|
+
*/
|
|
17658
18278
|
async modifyLoadBalancerPayType(request: ModifyLoadBalancerPayTypeRequest): Promise<ModifyLoadBalancerPayTypeResponse> {
|
|
17659
18279
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17660
18280
|
return await this.modifyLoadBalancerPayTypeWithOptions(request, runtime);
|
|
17661
18281
|
}
|
|
17662
18282
|
|
|
17663
18283
|
/**
|
|
17664
|
-
|
|
17665
|
-
|
|
17666
|
-
|
|
17667
|
-
|
|
17668
|
-
|
|
18284
|
+
* @summary Replaces backend servers in a specified vServer group.
|
|
18285
|
+
*
|
|
18286
|
+
* @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.
|
|
18287
|
+
*
|
|
18288
|
+
* @param request ModifyVServerGroupBackendServersRequest
|
|
18289
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18290
|
+
* @return ModifyVServerGroupBackendServersResponse
|
|
17669
18291
|
*/
|
|
17670
18292
|
async modifyVServerGroupBackendServersWithOptions(request: ModifyVServerGroupBackendServersRequest, runtime: $Util.RuntimeOptions): Promise<ModifyVServerGroupBackendServersResponse> {
|
|
17671
18293
|
Util.validateModel(request);
|
|
@@ -17720,16 +18342,25 @@ export default class Client extends OpenApi {
|
|
|
17720
18342
|
}
|
|
17721
18343
|
|
|
17722
18344
|
/**
|
|
17723
|
-
|
|
17724
|
-
|
|
17725
|
-
|
|
17726
|
-
|
|
18345
|
+
* @summary Replaces backend servers in a specified vServer group.
|
|
18346
|
+
*
|
|
18347
|
+
* @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.
|
|
18348
|
+
*
|
|
18349
|
+
* @param request ModifyVServerGroupBackendServersRequest
|
|
18350
|
+
* @return ModifyVServerGroupBackendServersResponse
|
|
17727
18351
|
*/
|
|
17728
18352
|
async modifyVServerGroupBackendServers(request: ModifyVServerGroupBackendServersRequest): Promise<ModifyVServerGroupBackendServersResponse> {
|
|
17729
18353
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17730
18354
|
return await this.modifyVServerGroupBackendServersWithOptions(request, runtime);
|
|
17731
18355
|
}
|
|
17732
18356
|
|
|
18357
|
+
/**
|
|
18358
|
+
* @summary Moves a resource to another resource group.
|
|
18359
|
+
*
|
|
18360
|
+
* @param request MoveResourceGroupRequest
|
|
18361
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18362
|
+
* @return MoveResourceGroupResponse
|
|
18363
|
+
*/
|
|
17733
18364
|
async moveResourceGroupWithOptions(request: MoveResourceGroupRequest, runtime: $Util.RuntimeOptions): Promise<MoveResourceGroupResponse> {
|
|
17734
18365
|
Util.validateModel(request);
|
|
17735
18366
|
let query = { };
|
|
@@ -17790,11 +18421,24 @@ export default class Client extends OpenApi {
|
|
|
17790
18421
|
return $tea.cast<MoveResourceGroupResponse>(await this.callApi(params, req, runtime), new MoveResourceGroupResponse({}));
|
|
17791
18422
|
}
|
|
17792
18423
|
|
|
18424
|
+
/**
|
|
18425
|
+
* @summary Moves a resource to another resource group.
|
|
18426
|
+
*
|
|
18427
|
+
* @param request MoveResourceGroupRequest
|
|
18428
|
+
* @return MoveResourceGroupResponse
|
|
18429
|
+
*/
|
|
17793
18430
|
async moveResourceGroup(request: MoveResourceGroupRequest): Promise<MoveResourceGroupResponse> {
|
|
17794
18431
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17795
18432
|
return await this.moveResourceGroupWithOptions(request, runtime);
|
|
17796
18433
|
}
|
|
17797
18434
|
|
|
18435
|
+
/**
|
|
18436
|
+
* @summary Removes IP entries from the network access control list (ACL) of a Classic Load Balancer (CLB) instance.
|
|
18437
|
+
*
|
|
18438
|
+
* @param request RemoveAccessControlListEntryRequest
|
|
18439
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18440
|
+
* @return RemoveAccessControlListEntryResponse
|
|
18441
|
+
*/
|
|
17798
18442
|
async removeAccessControlListEntryWithOptions(request: RemoveAccessControlListEntryRequest, runtime: $Util.RuntimeOptions): Promise<RemoveAccessControlListEntryResponse> {
|
|
17799
18443
|
Util.validateModel(request);
|
|
17800
18444
|
let query = { };
|
|
@@ -17843,17 +18487,25 @@ export default class Client extends OpenApi {
|
|
|
17843
18487
|
return $tea.cast<RemoveAccessControlListEntryResponse>(await this.callApi(params, req, runtime), new RemoveAccessControlListEntryResponse({}));
|
|
17844
18488
|
}
|
|
17845
18489
|
|
|
18490
|
+
/**
|
|
18491
|
+
* @summary Removes IP entries from the network access control list (ACL) of a Classic Load Balancer (CLB) instance.
|
|
18492
|
+
*
|
|
18493
|
+
* @param request RemoveAccessControlListEntryRequest
|
|
18494
|
+
* @return RemoveAccessControlListEntryResponse
|
|
18495
|
+
*/
|
|
17846
18496
|
async removeAccessControlListEntry(request: RemoveAccessControlListEntryRequest): Promise<RemoveAccessControlListEntryResponse> {
|
|
17847
18497
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17848
18498
|
return await this.removeAccessControlListEntryWithOptions(request, runtime);
|
|
17849
18499
|
}
|
|
17850
18500
|
|
|
17851
18501
|
/**
|
|
17852
|
-
|
|
17853
|
-
|
|
17854
|
-
|
|
17855
|
-
|
|
17856
|
-
|
|
18502
|
+
* @summary Removes backend servers.
|
|
18503
|
+
*
|
|
18504
|
+
* @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.
|
|
18505
|
+
*
|
|
18506
|
+
* @param request RemoveBackendServersRequest
|
|
18507
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18508
|
+
* @return RemoveBackendServersResponse
|
|
17857
18509
|
*/
|
|
17858
18510
|
async removeBackendServersWithOptions(request: RemoveBackendServersRequest, runtime: $Util.RuntimeOptions): Promise<RemoveBackendServersResponse> {
|
|
17859
18511
|
Util.validateModel(request);
|
|
@@ -17904,16 +18556,25 @@ export default class Client extends OpenApi {
|
|
|
17904
18556
|
}
|
|
17905
18557
|
|
|
17906
18558
|
/**
|
|
17907
|
-
|
|
17908
|
-
|
|
17909
|
-
|
|
17910
|
-
|
|
18559
|
+
* @summary Removes backend servers.
|
|
18560
|
+
*
|
|
18561
|
+
* @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.
|
|
18562
|
+
*
|
|
18563
|
+
* @param request RemoveBackendServersRequest
|
|
18564
|
+
* @return RemoveBackendServersResponse
|
|
17911
18565
|
*/
|
|
17912
18566
|
async removeBackendServers(request: RemoveBackendServersRequest): Promise<RemoveBackendServersResponse> {
|
|
17913
18567
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17914
18568
|
return await this.removeBackendServersWithOptions(request, runtime);
|
|
17915
18569
|
}
|
|
17916
18570
|
|
|
18571
|
+
/**
|
|
18572
|
+
* @summary Removes IP addresses or CIDR blocks from the whitelist of a listener.
|
|
18573
|
+
*
|
|
18574
|
+
* @param request RemoveListenerWhiteListItemRequest
|
|
18575
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18576
|
+
* @return RemoveListenerWhiteListItemResponse
|
|
18577
|
+
*/
|
|
17917
18578
|
async removeListenerWhiteListItemWithOptions(request: RemoveListenerWhiteListItemRequest, runtime: $Util.RuntimeOptions): Promise<RemoveListenerWhiteListItemResponse> {
|
|
17918
18579
|
Util.validateModel(request);
|
|
17919
18580
|
let query = { };
|
|
@@ -17970,11 +18631,22 @@ export default class Client extends OpenApi {
|
|
|
17970
18631
|
return $tea.cast<RemoveListenerWhiteListItemResponse>(await this.callApi(params, req, runtime), new RemoveListenerWhiteListItemResponse({}));
|
|
17971
18632
|
}
|
|
17972
18633
|
|
|
18634
|
+
/**
|
|
18635
|
+
* @summary Removes IP addresses or CIDR blocks from the whitelist of a listener.
|
|
18636
|
+
*
|
|
18637
|
+
* @param request RemoveListenerWhiteListItemRequest
|
|
18638
|
+
* @return RemoveListenerWhiteListItemResponse
|
|
18639
|
+
*/
|
|
17973
18640
|
async removeListenerWhiteListItem(request: RemoveListenerWhiteListItemRequest): Promise<RemoveListenerWhiteListItemResponse> {
|
|
17974
18641
|
let runtime = new $Util.RuntimeOptions({ });
|
|
17975
18642
|
return await this.removeListenerWhiteListItemWithOptions(request, runtime);
|
|
17976
18643
|
}
|
|
17977
18644
|
|
|
18645
|
+
/**
|
|
18646
|
+
* @param request RemoveTagsRequest
|
|
18647
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18648
|
+
* @return RemoveTagsResponse
|
|
18649
|
+
*/
|
|
17978
18650
|
async removeTagsWithOptions(request: RemoveTagsRequest, runtime: $Util.RuntimeOptions): Promise<RemoveTagsResponse> {
|
|
17979
18651
|
Util.validateModel(request);
|
|
17980
18652
|
let query = { };
|
|
@@ -18023,17 +18695,23 @@ export default class Client extends OpenApi {
|
|
|
18023
18695
|
return $tea.cast<RemoveTagsResponse>(await this.callApi(params, req, runtime), new RemoveTagsResponse({}));
|
|
18024
18696
|
}
|
|
18025
18697
|
|
|
18698
|
+
/**
|
|
18699
|
+
* @param request RemoveTagsRequest
|
|
18700
|
+
* @return RemoveTagsResponse
|
|
18701
|
+
*/
|
|
18026
18702
|
async removeTags(request: RemoveTagsRequest): Promise<RemoveTagsResponse> {
|
|
18027
18703
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18028
18704
|
return await this.removeTagsWithOptions(request, runtime);
|
|
18029
18705
|
}
|
|
18030
18706
|
|
|
18031
18707
|
/**
|
|
18032
|
-
|
|
18033
|
-
|
|
18034
|
-
|
|
18035
|
-
|
|
18036
|
-
|
|
18708
|
+
* @summary Removes one or more backend servers from a specified vServer group.
|
|
18709
|
+
*
|
|
18710
|
+
* @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.
|
|
18711
|
+
*
|
|
18712
|
+
* @param request RemoveVServerGroupBackendServersRequest
|
|
18713
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18714
|
+
* @return RemoveVServerGroupBackendServersResponse
|
|
18037
18715
|
*/
|
|
18038
18716
|
async removeVServerGroupBackendServersWithOptions(request: RemoveVServerGroupBackendServersRequest, runtime: $Util.RuntimeOptions): Promise<RemoveVServerGroupBackendServersResponse> {
|
|
18039
18717
|
Util.validateModel(request);
|
|
@@ -18084,16 +18762,25 @@ export default class Client extends OpenApi {
|
|
|
18084
18762
|
}
|
|
18085
18763
|
|
|
18086
18764
|
/**
|
|
18087
|
-
|
|
18088
|
-
|
|
18089
|
-
|
|
18090
|
-
|
|
18765
|
+
* @summary Removes one or more backend servers from a specified vServer group.
|
|
18766
|
+
*
|
|
18767
|
+
* @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.
|
|
18768
|
+
*
|
|
18769
|
+
* @param request RemoveVServerGroupBackendServersRequest
|
|
18770
|
+
* @return RemoveVServerGroupBackendServersResponse
|
|
18091
18771
|
*/
|
|
18092
18772
|
async removeVServerGroupBackendServers(request: RemoveVServerGroupBackendServersRequest): Promise<RemoveVServerGroupBackendServersResponse> {
|
|
18093
18773
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18094
18774
|
return await this.removeVServerGroupBackendServersWithOptions(request, runtime);
|
|
18095
18775
|
}
|
|
18096
18776
|
|
|
18777
|
+
/**
|
|
18778
|
+
* @summary Modifies the name of a network access control list (ACL).
|
|
18779
|
+
*
|
|
18780
|
+
* @param request SetAccessControlListAttributeRequest
|
|
18781
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18782
|
+
* @return SetAccessControlListAttributeResponse
|
|
18783
|
+
*/
|
|
18097
18784
|
async setAccessControlListAttributeWithOptions(request: SetAccessControlListAttributeRequest, runtime: $Util.RuntimeOptions): Promise<SetAccessControlListAttributeResponse> {
|
|
18098
18785
|
Util.validateModel(request);
|
|
18099
18786
|
let query = { };
|
|
@@ -18142,11 +18829,24 @@ export default class Client extends OpenApi {
|
|
|
18142
18829
|
return $tea.cast<SetAccessControlListAttributeResponse>(await this.callApi(params, req, runtime), new SetAccessControlListAttributeResponse({}));
|
|
18143
18830
|
}
|
|
18144
18831
|
|
|
18832
|
+
/**
|
|
18833
|
+
* @summary Modifies the name of a network access control list (ACL).
|
|
18834
|
+
*
|
|
18835
|
+
* @param request SetAccessControlListAttributeRequest
|
|
18836
|
+
* @return SetAccessControlListAttributeResponse
|
|
18837
|
+
*/
|
|
18145
18838
|
async setAccessControlListAttribute(request: SetAccessControlListAttributeRequest): Promise<SetAccessControlListAttributeResponse> {
|
|
18146
18839
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18147
18840
|
return await this.setAccessControlListAttributeWithOptions(request, runtime);
|
|
18148
18841
|
}
|
|
18149
18842
|
|
|
18843
|
+
/**
|
|
18844
|
+
* @summary Adds an access log forwarding rule for a Classic Load Balancer (CLB) instance.
|
|
18845
|
+
*
|
|
18846
|
+
* @param request SetAccessLogsDownloadAttributeRequest
|
|
18847
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18848
|
+
* @return SetAccessLogsDownloadAttributeResponse
|
|
18849
|
+
*/
|
|
18150
18850
|
async setAccessLogsDownloadAttributeWithOptions(request: SetAccessLogsDownloadAttributeRequest, runtime: $Util.RuntimeOptions): Promise<SetAccessLogsDownloadAttributeResponse> {
|
|
18151
18851
|
Util.validateModel(request);
|
|
18152
18852
|
let query = { };
|
|
@@ -18199,11 +18899,24 @@ export default class Client extends OpenApi {
|
|
|
18199
18899
|
return $tea.cast<SetAccessLogsDownloadAttributeResponse>(await this.callApi(params, req, runtime), new SetAccessLogsDownloadAttributeResponse({}));
|
|
18200
18900
|
}
|
|
18201
18901
|
|
|
18902
|
+
/**
|
|
18903
|
+
* @summary Adds an access log forwarding rule for a Classic Load Balancer (CLB) instance.
|
|
18904
|
+
*
|
|
18905
|
+
* @param request SetAccessLogsDownloadAttributeRequest
|
|
18906
|
+
* @return SetAccessLogsDownloadAttributeResponse
|
|
18907
|
+
*/
|
|
18202
18908
|
async setAccessLogsDownloadAttribute(request: SetAccessLogsDownloadAttributeRequest): Promise<SetAccessLogsDownloadAttributeResponse> {
|
|
18203
18909
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18204
18910
|
return await this.setAccessLogsDownloadAttributeWithOptions(request, runtime);
|
|
18205
18911
|
}
|
|
18206
18912
|
|
|
18913
|
+
/**
|
|
18914
|
+
* @summary Sets the weights of backend servers.
|
|
18915
|
+
*
|
|
18916
|
+
* @param request SetBackendServersRequest
|
|
18917
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18918
|
+
* @return SetBackendServersResponse
|
|
18919
|
+
*/
|
|
18207
18920
|
async setBackendServersWithOptions(request: SetBackendServersRequest, runtime: $Util.RuntimeOptions): Promise<SetBackendServersResponse> {
|
|
18208
18921
|
Util.validateModel(request);
|
|
18209
18922
|
let query = { };
|
|
@@ -18252,11 +18965,24 @@ export default class Client extends OpenApi {
|
|
|
18252
18965
|
return $tea.cast<SetBackendServersResponse>(await this.callApi(params, req, runtime), new SetBackendServersResponse({}));
|
|
18253
18966
|
}
|
|
18254
18967
|
|
|
18968
|
+
/**
|
|
18969
|
+
* @summary Sets the weights of backend servers.
|
|
18970
|
+
*
|
|
18971
|
+
* @param request SetBackendServersRequest
|
|
18972
|
+
* @return SetBackendServersResponse
|
|
18973
|
+
*/
|
|
18255
18974
|
async setBackendServers(request: SetBackendServersRequest): Promise<SetBackendServersResponse> {
|
|
18256
18975
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18257
18976
|
return await this.setBackendServersWithOptions(request, runtime);
|
|
18258
18977
|
}
|
|
18259
18978
|
|
|
18979
|
+
/**
|
|
18980
|
+
* @summary Sets the name of a CA Certificate.
|
|
18981
|
+
*
|
|
18982
|
+
* @param request SetCACertificateNameRequest
|
|
18983
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18984
|
+
* @return SetCACertificateNameResponse
|
|
18985
|
+
*/
|
|
18260
18986
|
async setCACertificateNameWithOptions(request: SetCACertificateNameRequest, runtime: $Util.RuntimeOptions): Promise<SetCACertificateNameResponse> {
|
|
18261
18987
|
Util.validateModel(request);
|
|
18262
18988
|
let query = { };
|
|
@@ -18305,17 +19031,25 @@ export default class Client extends OpenApi {
|
|
|
18305
19031
|
return $tea.cast<SetCACertificateNameResponse>(await this.callApi(params, req, runtime), new SetCACertificateNameResponse({}));
|
|
18306
19032
|
}
|
|
18307
19033
|
|
|
19034
|
+
/**
|
|
19035
|
+
* @summary Sets the name of a CA Certificate.
|
|
19036
|
+
*
|
|
19037
|
+
* @param request SetCACertificateNameRequest
|
|
19038
|
+
* @return SetCACertificateNameResponse
|
|
19039
|
+
*/
|
|
18308
19040
|
async setCACertificateName(request: SetCACertificateNameRequest): Promise<SetCACertificateNameResponse> {
|
|
18309
19041
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18310
19042
|
return await this.setCACertificateNameWithOptions(request, runtime);
|
|
18311
19043
|
}
|
|
18312
19044
|
|
|
18313
19045
|
/**
|
|
18314
|
-
|
|
18315
|
-
|
|
18316
|
-
|
|
18317
|
-
|
|
18318
|
-
|
|
19046
|
+
* @summary Replaces an additional certificate.
|
|
19047
|
+
*
|
|
19048
|
+
* @description > You cannot replace an additional certificate for a listener that is added to a shared-resource Server Load Balancer (SLB) instance.
|
|
19049
|
+
*
|
|
19050
|
+
* @param request SetDomainExtensionAttributeRequest
|
|
19051
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19052
|
+
* @return SetDomainExtensionAttributeResponse
|
|
18319
19053
|
*/
|
|
18320
19054
|
async setDomainExtensionAttributeWithOptions(request: SetDomainExtensionAttributeRequest, runtime: $Util.RuntimeOptions): Promise<SetDomainExtensionAttributeResponse> {
|
|
18321
19055
|
Util.validateModel(request);
|
|
@@ -18366,16 +19100,25 @@ export default class Client extends OpenApi {
|
|
|
18366
19100
|
}
|
|
18367
19101
|
|
|
18368
19102
|
/**
|
|
18369
|
-
|
|
18370
|
-
|
|
18371
|
-
|
|
18372
|
-
|
|
19103
|
+
* @summary Replaces an additional certificate.
|
|
19104
|
+
*
|
|
19105
|
+
* @description > You cannot replace an additional certificate for a listener that is added to a shared-resource Server Load Balancer (SLB) instance.
|
|
19106
|
+
*
|
|
19107
|
+
* @param request SetDomainExtensionAttributeRequest
|
|
19108
|
+
* @return SetDomainExtensionAttributeResponse
|
|
18373
19109
|
*/
|
|
18374
19110
|
async setDomainExtensionAttribute(request: SetDomainExtensionAttributeRequest): Promise<SetDomainExtensionAttributeResponse> {
|
|
18375
19111
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18376
19112
|
return await this.setDomainExtensionAttributeWithOptions(request, runtime);
|
|
18377
19113
|
}
|
|
18378
19114
|
|
|
19115
|
+
/**
|
|
19116
|
+
* @summary Enables or disables the whitelist of a specified listener.
|
|
19117
|
+
*
|
|
19118
|
+
* @param request SetListenerAccessControlStatusRequest
|
|
19119
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19120
|
+
* @return SetListenerAccessControlStatusResponse
|
|
19121
|
+
*/
|
|
18379
19122
|
async setListenerAccessControlStatusWithOptions(request: SetListenerAccessControlStatusRequest, runtime: $Util.RuntimeOptions): Promise<SetListenerAccessControlStatusResponse> {
|
|
18380
19123
|
Util.validateModel(request);
|
|
18381
19124
|
let query = { };
|
|
@@ -18432,11 +19175,24 @@ export default class Client extends OpenApi {
|
|
|
18432
19175
|
return $tea.cast<SetListenerAccessControlStatusResponse>(await this.callApi(params, req, runtime), new SetListenerAccessControlStatusResponse({}));
|
|
18433
19176
|
}
|
|
18434
19177
|
|
|
19178
|
+
/**
|
|
19179
|
+
* @summary Enables or disables the whitelist of a specified listener.
|
|
19180
|
+
*
|
|
19181
|
+
* @param request SetListenerAccessControlStatusRequest
|
|
19182
|
+
* @return SetListenerAccessControlStatusResponse
|
|
19183
|
+
*/
|
|
18435
19184
|
async setListenerAccessControlStatus(request: SetListenerAccessControlStatusRequest): Promise<SetListenerAccessControlStatusResponse> {
|
|
18436
19185
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18437
19186
|
return await this.setListenerAccessControlStatusWithOptions(request, runtime);
|
|
18438
19187
|
}
|
|
18439
19188
|
|
|
19189
|
+
/**
|
|
19190
|
+
* @summary Enables or disables deletion protection for an SLB instance.
|
|
19191
|
+
*
|
|
19192
|
+
* @param request SetLoadBalancerDeleteProtectionRequest
|
|
19193
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19194
|
+
* @return SetLoadBalancerDeleteProtectionResponse
|
|
19195
|
+
*/
|
|
18440
19196
|
async setLoadBalancerDeleteProtectionWithOptions(request: SetLoadBalancerDeleteProtectionRequest, runtime: $Util.RuntimeOptions): Promise<SetLoadBalancerDeleteProtectionResponse> {
|
|
18441
19197
|
Util.validateModel(request);
|
|
18442
19198
|
let query = { };
|
|
@@ -18485,19 +19241,27 @@ export default class Client extends OpenApi {
|
|
|
18485
19241
|
return $tea.cast<SetLoadBalancerDeleteProtectionResponse>(await this.callApi(params, req, runtime), new SetLoadBalancerDeleteProtectionResponse({}));
|
|
18486
19242
|
}
|
|
18487
19243
|
|
|
19244
|
+
/**
|
|
19245
|
+
* @summary Enables or disables deletion protection for an SLB instance.
|
|
19246
|
+
*
|
|
19247
|
+
* @param request SetLoadBalancerDeleteProtectionRequest
|
|
19248
|
+
* @return SetLoadBalancerDeleteProtectionResponse
|
|
19249
|
+
*/
|
|
18488
19250
|
async setLoadBalancerDeleteProtection(request: SetLoadBalancerDeleteProtectionRequest): Promise<SetLoadBalancerDeleteProtectionResponse> {
|
|
18489
19251
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18490
19252
|
return await this.setLoadBalancerDeleteProtectionWithOptions(request, runtime);
|
|
18491
19253
|
}
|
|
18492
19254
|
|
|
18493
19255
|
/**
|
|
18494
|
-
|
|
18495
|
-
|
|
18496
|
-
|
|
18497
|
-
|
|
18498
|
-
|
|
18499
|
-
|
|
18500
|
-
|
|
19256
|
+
* @summary Modifies the configurations of an HTTP listener.
|
|
19257
|
+
*
|
|
19258
|
+
* @description ### Prerequisites
|
|
19259
|
+
* * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
|
|
19260
|
+
* * 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).
|
|
19261
|
+
*
|
|
19262
|
+
* @param request SetLoadBalancerHTTPListenerAttributeRequest
|
|
19263
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19264
|
+
* @return SetLoadBalancerHTTPListenerAttributeResponse
|
|
18501
19265
|
*/
|
|
18502
19266
|
async setLoadBalancerHTTPListenerAttributeWithOptions(request: SetLoadBalancerHTTPListenerAttributeRequest, runtime: $Util.RuntimeOptions): Promise<SetLoadBalancerHTTPListenerAttributeResponse> {
|
|
18503
19267
|
Util.validateModel(request);
|
|
@@ -18634,6 +19398,10 @@ export default class Client extends OpenApi {
|
|
|
18634
19398
|
query["XForwardedFor"] = request.XForwardedFor;
|
|
18635
19399
|
}
|
|
18636
19400
|
|
|
19401
|
+
if (!Util.isUnset(request.XForwardedFor_ClientSrcPort)) {
|
|
19402
|
+
query["XForwardedFor_ClientSrcPort"] = request.XForwardedFor_ClientSrcPort;
|
|
19403
|
+
}
|
|
19404
|
+
|
|
18637
19405
|
if (!Util.isUnset(request.XForwardedFor_SLBID)) {
|
|
18638
19406
|
query["XForwardedFor_SLBID"] = request.XForwardedFor_SLBID;
|
|
18639
19407
|
}
|
|
@@ -18642,6 +19410,10 @@ export default class Client extends OpenApi {
|
|
|
18642
19410
|
query["XForwardedFor_SLBIP"] = request.XForwardedFor_SLBIP;
|
|
18643
19411
|
}
|
|
18644
19412
|
|
|
19413
|
+
if (!Util.isUnset(request.XForwardedFor_SLBPORT)) {
|
|
19414
|
+
query["XForwardedFor_SLBPORT"] = request.XForwardedFor_SLBPORT;
|
|
19415
|
+
}
|
|
19416
|
+
|
|
18645
19417
|
if (!Util.isUnset(request.XForwardedFor_proto)) {
|
|
18646
19418
|
query["XForwardedFor_proto"] = request.XForwardedFor_proto;
|
|
18647
19419
|
}
|
|
@@ -18664,12 +19436,14 @@ export default class Client extends OpenApi {
|
|
|
18664
19436
|
}
|
|
18665
19437
|
|
|
18666
19438
|
/**
|
|
18667
|
-
|
|
18668
|
-
|
|
18669
|
-
|
|
18670
|
-
|
|
18671
|
-
|
|
18672
|
-
|
|
19439
|
+
* @summary Modifies the configurations of an HTTP listener.
|
|
19440
|
+
*
|
|
19441
|
+
* @description ### Prerequisites
|
|
19442
|
+
* * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
|
|
19443
|
+
* * 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).
|
|
19444
|
+
*
|
|
19445
|
+
* @param request SetLoadBalancerHTTPListenerAttributeRequest
|
|
19446
|
+
* @return SetLoadBalancerHTTPListenerAttributeResponse
|
|
18673
19447
|
*/
|
|
18674
19448
|
async setLoadBalancerHTTPListenerAttribute(request: SetLoadBalancerHTTPListenerAttributeRequest): Promise<SetLoadBalancerHTTPListenerAttributeResponse> {
|
|
18675
19449
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -18677,12 +19451,14 @@ export default class Client extends OpenApi {
|
|
|
18677
19451
|
}
|
|
18678
19452
|
|
|
18679
19453
|
/**
|
|
18680
|
-
|
|
18681
|
-
|
|
18682
|
-
|
|
18683
|
-
|
|
18684
|
-
|
|
18685
|
-
|
|
19454
|
+
* @summary Modifies the configurations of an HTTPS listener.
|
|
19455
|
+
*
|
|
19456
|
+
* @description * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
|
|
19457
|
+
* * 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).
|
|
19458
|
+
*
|
|
19459
|
+
* @param request SetLoadBalancerHTTPSListenerAttributeRequest
|
|
19460
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19461
|
+
* @return SetLoadBalancerHTTPSListenerAttributeResponse
|
|
18686
19462
|
*/
|
|
18687
19463
|
async setLoadBalancerHTTPSListenerAttributeWithOptions(request: SetLoadBalancerHTTPSListenerAttributeRequest, runtime: $Util.RuntimeOptions): Promise<SetLoadBalancerHTTPSListenerAttributeResponse> {
|
|
18688
19464
|
Util.validateModel(request);
|
|
@@ -18835,6 +19611,10 @@ export default class Client extends OpenApi {
|
|
|
18835
19611
|
query["XForwardedFor"] = request.XForwardedFor;
|
|
18836
19612
|
}
|
|
18837
19613
|
|
|
19614
|
+
if (!Util.isUnset(request.XForwardedFor_ClientSrcPort)) {
|
|
19615
|
+
query["XForwardedFor_ClientSrcPort"] = request.XForwardedFor_ClientSrcPort;
|
|
19616
|
+
}
|
|
19617
|
+
|
|
18838
19618
|
if (!Util.isUnset(request.XForwardedFor_SLBID)) {
|
|
18839
19619
|
query["XForwardedFor_SLBID"] = request.XForwardedFor_SLBID;
|
|
18840
19620
|
}
|
|
@@ -18843,6 +19623,10 @@ export default class Client extends OpenApi {
|
|
|
18843
19623
|
query["XForwardedFor_SLBIP"] = request.XForwardedFor_SLBIP;
|
|
18844
19624
|
}
|
|
18845
19625
|
|
|
19626
|
+
if (!Util.isUnset(request.XForwardedFor_SLBPORT)) {
|
|
19627
|
+
query["XForwardedFor_SLBPORT"] = request.XForwardedFor_SLBPORT;
|
|
19628
|
+
}
|
|
19629
|
+
|
|
18846
19630
|
if (!Util.isUnset(request.XForwardedFor_proto)) {
|
|
18847
19631
|
query["XForwardedFor_proto"] = request.XForwardedFor_proto;
|
|
18848
19632
|
}
|
|
@@ -18865,17 +19649,26 @@ export default class Client extends OpenApi {
|
|
|
18865
19649
|
}
|
|
18866
19650
|
|
|
18867
19651
|
/**
|
|
18868
|
-
|
|
18869
|
-
|
|
18870
|
-
|
|
18871
|
-
|
|
18872
|
-
|
|
19652
|
+
* @summary Modifies the configurations of an HTTPS listener.
|
|
19653
|
+
*
|
|
19654
|
+
* @description * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
|
|
19655
|
+
* * 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).
|
|
19656
|
+
*
|
|
19657
|
+
* @param request SetLoadBalancerHTTPSListenerAttributeRequest
|
|
19658
|
+
* @return SetLoadBalancerHTTPSListenerAttributeResponse
|
|
18873
19659
|
*/
|
|
18874
19660
|
async setLoadBalancerHTTPSListenerAttribute(request: SetLoadBalancerHTTPSListenerAttributeRequest): Promise<SetLoadBalancerHTTPSListenerAttributeResponse> {
|
|
18875
19661
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18876
19662
|
return await this.setLoadBalancerHTTPSListenerAttributeWithOptions(request, runtime);
|
|
18877
19663
|
}
|
|
18878
19664
|
|
|
19665
|
+
/**
|
|
19666
|
+
* @summary Modifies the configuration of the configuration read-only mode for a Classic Load Balancer (CLB) instance.
|
|
19667
|
+
*
|
|
19668
|
+
* @param request SetLoadBalancerModificationProtectionRequest
|
|
19669
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19670
|
+
* @return SetLoadBalancerModificationProtectionResponse
|
|
19671
|
+
*/
|
|
18879
19672
|
async setLoadBalancerModificationProtectionWithOptions(request: SetLoadBalancerModificationProtectionRequest, runtime: $Util.RuntimeOptions): Promise<SetLoadBalancerModificationProtectionResponse> {
|
|
18880
19673
|
Util.validateModel(request);
|
|
18881
19674
|
let query = { };
|
|
@@ -18928,11 +19721,24 @@ export default class Client extends OpenApi {
|
|
|
18928
19721
|
return $tea.cast<SetLoadBalancerModificationProtectionResponse>(await this.callApi(params, req, runtime), new SetLoadBalancerModificationProtectionResponse({}));
|
|
18929
19722
|
}
|
|
18930
19723
|
|
|
19724
|
+
/**
|
|
19725
|
+
* @summary Modifies the configuration of the configuration read-only mode for a Classic Load Balancer (CLB) instance.
|
|
19726
|
+
*
|
|
19727
|
+
* @param request SetLoadBalancerModificationProtectionRequest
|
|
19728
|
+
* @return SetLoadBalancerModificationProtectionResponse
|
|
19729
|
+
*/
|
|
18931
19730
|
async setLoadBalancerModificationProtection(request: SetLoadBalancerModificationProtectionRequest): Promise<SetLoadBalancerModificationProtectionResponse> {
|
|
18932
19731
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18933
19732
|
return await this.setLoadBalancerModificationProtectionWithOptions(request, runtime);
|
|
18934
19733
|
}
|
|
18935
19734
|
|
|
19735
|
+
/**
|
|
19736
|
+
* @summary Modifies the name of a Classic Load Balancer (CLB) instance.
|
|
19737
|
+
*
|
|
19738
|
+
* @param request SetLoadBalancerNameRequest
|
|
19739
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19740
|
+
* @return SetLoadBalancerNameResponse
|
|
19741
|
+
*/
|
|
18936
19742
|
async setLoadBalancerNameWithOptions(request: SetLoadBalancerNameRequest, runtime: $Util.RuntimeOptions): Promise<SetLoadBalancerNameResponse> {
|
|
18937
19743
|
Util.validateModel(request);
|
|
18938
19744
|
let query = { };
|
|
@@ -18981,11 +19787,24 @@ export default class Client extends OpenApi {
|
|
|
18981
19787
|
return $tea.cast<SetLoadBalancerNameResponse>(await this.callApi(params, req, runtime), new SetLoadBalancerNameResponse({}));
|
|
18982
19788
|
}
|
|
18983
19789
|
|
|
19790
|
+
/**
|
|
19791
|
+
* @summary Modifies the name of a Classic Load Balancer (CLB) instance.
|
|
19792
|
+
*
|
|
19793
|
+
* @param request SetLoadBalancerNameRequest
|
|
19794
|
+
* @return SetLoadBalancerNameResponse
|
|
19795
|
+
*/
|
|
18984
19796
|
async setLoadBalancerName(request: SetLoadBalancerNameRequest): Promise<SetLoadBalancerNameResponse> {
|
|
18985
19797
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18986
19798
|
return await this.setLoadBalancerNameWithOptions(request, runtime);
|
|
18987
19799
|
}
|
|
18988
19800
|
|
|
19801
|
+
/**
|
|
19802
|
+
* @summary Modifies the state of a Classic Load Balancer (CLB) instance.
|
|
19803
|
+
*
|
|
19804
|
+
* @param request SetLoadBalancerStatusRequest
|
|
19805
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19806
|
+
* @return SetLoadBalancerStatusResponse
|
|
19807
|
+
*/
|
|
18989
19808
|
async setLoadBalancerStatusWithOptions(request: SetLoadBalancerStatusRequest, runtime: $Util.RuntimeOptions): Promise<SetLoadBalancerStatusResponse> {
|
|
18990
19809
|
Util.validateModel(request);
|
|
18991
19810
|
let query = { };
|
|
@@ -19034,18 +19853,26 @@ export default class Client extends OpenApi {
|
|
|
19034
19853
|
return $tea.cast<SetLoadBalancerStatusResponse>(await this.callApi(params, req, runtime), new SetLoadBalancerStatusResponse({}));
|
|
19035
19854
|
}
|
|
19036
19855
|
|
|
19856
|
+
/**
|
|
19857
|
+
* @summary Modifies the state of a Classic Load Balancer (CLB) instance.
|
|
19858
|
+
*
|
|
19859
|
+
* @param request SetLoadBalancerStatusRequest
|
|
19860
|
+
* @return SetLoadBalancerStatusResponse
|
|
19861
|
+
*/
|
|
19037
19862
|
async setLoadBalancerStatus(request: SetLoadBalancerStatusRequest): Promise<SetLoadBalancerStatusResponse> {
|
|
19038
19863
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19039
19864
|
return await this.setLoadBalancerStatusWithOptions(request, runtime);
|
|
19040
19865
|
}
|
|
19041
19866
|
|
|
19042
19867
|
/**
|
|
19043
|
-
|
|
19044
|
-
|
|
19045
|
-
|
|
19046
|
-
|
|
19047
|
-
|
|
19048
|
-
|
|
19868
|
+
* @summary Modifies the configurations of a TCP listener of Classic Load Balancer (CLB).
|
|
19869
|
+
*
|
|
19870
|
+
* @description * A CLB instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/2401685.html).
|
|
19871
|
+
* * A TCP listener is created. For more information, see [CreateLoadBalancerTCPListener](~~CreateLoadBalancerTCPListener~~).
|
|
19872
|
+
*
|
|
19873
|
+
* @param request SetLoadBalancerTCPListenerAttributeRequest
|
|
19874
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19875
|
+
* @return SetLoadBalancerTCPListenerAttributeResponse
|
|
19049
19876
|
*/
|
|
19050
19877
|
async setLoadBalancerTCPListenerAttributeWithOptions(request: SetLoadBalancerTCPListenerAttributeRequest, runtime: $Util.RuntimeOptions): Promise<SetLoadBalancerTCPListenerAttributeResponse> {
|
|
19051
19878
|
Util.validateModel(request);
|
|
@@ -19200,11 +20027,13 @@ export default class Client extends OpenApi {
|
|
|
19200
20027
|
}
|
|
19201
20028
|
|
|
19202
20029
|
/**
|
|
19203
|
-
|
|
19204
|
-
|
|
19205
|
-
|
|
19206
|
-
|
|
19207
|
-
|
|
20030
|
+
* @summary Modifies the configurations of a TCP listener of Classic Load Balancer (CLB).
|
|
20031
|
+
*
|
|
20032
|
+
* @description * A CLB instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/2401685.html).
|
|
20033
|
+
* * A TCP listener is created. For more information, see [CreateLoadBalancerTCPListener](~~CreateLoadBalancerTCPListener~~).
|
|
20034
|
+
*
|
|
20035
|
+
* @param request SetLoadBalancerTCPListenerAttributeRequest
|
|
20036
|
+
* @return SetLoadBalancerTCPListenerAttributeResponse
|
|
19208
20037
|
*/
|
|
19209
20038
|
async setLoadBalancerTCPListenerAttribute(request: SetLoadBalancerTCPListenerAttributeRequest): Promise<SetLoadBalancerTCPListenerAttributeResponse> {
|
|
19210
20039
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -19212,12 +20041,14 @@ export default class Client extends OpenApi {
|
|
|
19212
20041
|
}
|
|
19213
20042
|
|
|
19214
20043
|
/**
|
|
19215
|
-
|
|
19216
|
-
|
|
19217
|
-
|
|
19218
|
-
|
|
19219
|
-
|
|
19220
|
-
|
|
20044
|
+
* @summary Modifies the configurations of a UDP listener.
|
|
20045
|
+
*
|
|
20046
|
+
* @description * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
|
|
20047
|
+
* * A UDP listener is created. For more information, see [CreateLoadBalancerUDPListener](https://help.aliyun.com/document_detail/27595.html).
|
|
20048
|
+
*
|
|
20049
|
+
* @param request SetLoadBalancerUDPListenerAttributeRequest
|
|
20050
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20051
|
+
* @return SetLoadBalancerUDPListenerAttributeResponse
|
|
19221
20052
|
*/
|
|
19222
20053
|
async setLoadBalancerUDPListenerAttributeWithOptions(request: SetLoadBalancerUDPListenerAttributeRequest, runtime: $Util.RuntimeOptions): Promise<SetLoadBalancerUDPListenerAttributeResponse> {
|
|
19223
20054
|
Util.validateModel(request);
|
|
@@ -19344,17 +20175,26 @@ export default class Client extends OpenApi {
|
|
|
19344
20175
|
}
|
|
19345
20176
|
|
|
19346
20177
|
/**
|
|
19347
|
-
|
|
19348
|
-
|
|
19349
|
-
|
|
19350
|
-
|
|
19351
|
-
|
|
20178
|
+
* @summary Modifies the configurations of a UDP listener.
|
|
20179
|
+
*
|
|
20180
|
+
* @description * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
|
|
20181
|
+
* * A UDP listener is created. For more information, see [CreateLoadBalancerUDPListener](https://help.aliyun.com/document_detail/27595.html).
|
|
20182
|
+
*
|
|
20183
|
+
* @param request SetLoadBalancerUDPListenerAttributeRequest
|
|
20184
|
+
* @return SetLoadBalancerUDPListenerAttributeResponse
|
|
19352
20185
|
*/
|
|
19353
20186
|
async setLoadBalancerUDPListenerAttribute(request: SetLoadBalancerUDPListenerAttributeRequest): Promise<SetLoadBalancerUDPListenerAttributeResponse> {
|
|
19354
20187
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19355
20188
|
return await this.setLoadBalancerUDPListenerAttributeWithOptions(request, runtime);
|
|
19356
20189
|
}
|
|
19357
20190
|
|
|
20191
|
+
/**
|
|
20192
|
+
* @summary Modifies a forwarding rule that is associated with a vServer group.
|
|
20193
|
+
*
|
|
20194
|
+
* @param request SetRuleRequest
|
|
20195
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20196
|
+
* @return SetRuleResponse
|
|
20197
|
+
*/
|
|
19358
20198
|
async setRuleWithOptions(request: SetRuleRequest, runtime: $Util.RuntimeOptions): Promise<SetRuleResponse> {
|
|
19359
20199
|
Util.validateModel(request);
|
|
19360
20200
|
let query = { };
|
|
@@ -19467,11 +20307,24 @@ export default class Client extends OpenApi {
|
|
|
19467
20307
|
return $tea.cast<SetRuleResponse>(await this.callApi(params, req, runtime), new SetRuleResponse({}));
|
|
19468
20308
|
}
|
|
19469
20309
|
|
|
20310
|
+
/**
|
|
20311
|
+
* @summary Modifies a forwarding rule that is associated with a vServer group.
|
|
20312
|
+
*
|
|
20313
|
+
* @param request SetRuleRequest
|
|
20314
|
+
* @return SetRuleResponse
|
|
20315
|
+
*/
|
|
19470
20316
|
async setRule(request: SetRuleRequest): Promise<SetRuleResponse> {
|
|
19471
20317
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19472
20318
|
return await this.setRuleWithOptions(request, runtime);
|
|
19473
20319
|
}
|
|
19474
20320
|
|
|
20321
|
+
/**
|
|
20322
|
+
* @summary Sets a name for a server certificate.
|
|
20323
|
+
*
|
|
20324
|
+
* @param request SetServerCertificateNameRequest
|
|
20325
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20326
|
+
* @return SetServerCertificateNameResponse
|
|
20327
|
+
*/
|
|
19475
20328
|
async setServerCertificateNameWithOptions(request: SetServerCertificateNameRequest, runtime: $Util.RuntimeOptions): Promise<SetServerCertificateNameResponse> {
|
|
19476
20329
|
Util.validateModel(request);
|
|
19477
20330
|
let query = { };
|
|
@@ -19520,11 +20373,24 @@ export default class Client extends OpenApi {
|
|
|
19520
20373
|
return $tea.cast<SetServerCertificateNameResponse>(await this.callApi(params, req, runtime), new SetServerCertificateNameResponse({}));
|
|
19521
20374
|
}
|
|
19522
20375
|
|
|
20376
|
+
/**
|
|
20377
|
+
* @summary Sets a name for a server certificate.
|
|
20378
|
+
*
|
|
20379
|
+
* @param request SetServerCertificateNameRequest
|
|
20380
|
+
* @return SetServerCertificateNameResponse
|
|
20381
|
+
*/
|
|
19523
20382
|
async setServerCertificateName(request: SetServerCertificateNameRequest): Promise<SetServerCertificateNameResponse> {
|
|
19524
20383
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19525
20384
|
return await this.setServerCertificateNameWithOptions(request, runtime);
|
|
19526
20385
|
}
|
|
19527
20386
|
|
|
20387
|
+
/**
|
|
20388
|
+
* @summary Configures a Transport Layer Security (TLS) policy.
|
|
20389
|
+
*
|
|
20390
|
+
* @param request SetTLSCipherPolicyAttributeRequest
|
|
20391
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20392
|
+
* @return SetTLSCipherPolicyAttributeResponse
|
|
20393
|
+
*/
|
|
19528
20394
|
async setTLSCipherPolicyAttributeWithOptions(request: SetTLSCipherPolicyAttributeRequest, runtime: $Util.RuntimeOptions): Promise<SetTLSCipherPolicyAttributeResponse> {
|
|
19529
20395
|
Util.validateModel(request);
|
|
19530
20396
|
let query = { };
|
|
@@ -19581,19 +20447,27 @@ export default class Client extends OpenApi {
|
|
|
19581
20447
|
return $tea.cast<SetTLSCipherPolicyAttributeResponse>(await this.callApi(params, req, runtime), new SetTLSCipherPolicyAttributeResponse({}));
|
|
19582
20448
|
}
|
|
19583
20449
|
|
|
20450
|
+
/**
|
|
20451
|
+
* @summary Configures a Transport Layer Security (TLS) policy.
|
|
20452
|
+
*
|
|
20453
|
+
* @param request SetTLSCipherPolicyAttributeRequest
|
|
20454
|
+
* @return SetTLSCipherPolicyAttributeResponse
|
|
20455
|
+
*/
|
|
19584
20456
|
async setTLSCipherPolicyAttribute(request: SetTLSCipherPolicyAttributeRequest): Promise<SetTLSCipherPolicyAttributeResponse> {
|
|
19585
20457
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19586
20458
|
return await this.setTLSCipherPolicyAttributeWithOptions(request, runtime);
|
|
19587
20459
|
}
|
|
19588
20460
|
|
|
19589
20461
|
/**
|
|
19590
|
-
|
|
19591
|
-
|
|
19592
|
-
|
|
19593
|
-
|
|
19594
|
-
|
|
19595
|
-
|
|
19596
|
-
|
|
20462
|
+
* @summary Modifies the configurations of a vServer group.
|
|
20463
|
+
*
|
|
20464
|
+
* @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.
|
|
20465
|
+
* * If you want to modify backend servers in a specified vServer group, call the [ModifyVServerGroupBackendServers](https://help.aliyun.com/document_detail/35220.html) operation.
|
|
20466
|
+
* * If you want to add backend servers to a specified vServer group, call the [AddVServerGroupBackendServers](https://help.aliyun.com/document_detail/35218.html) operation.
|
|
20467
|
+
*
|
|
20468
|
+
* @param request SetVServerGroupAttributeRequest
|
|
20469
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20470
|
+
* @return SetVServerGroupAttributeResponse
|
|
19597
20471
|
*/
|
|
19598
20472
|
async setVServerGroupAttributeWithOptions(request: SetVServerGroupAttributeRequest, runtime: $Util.RuntimeOptions): Promise<SetVServerGroupAttributeResponse> {
|
|
19599
20473
|
Util.validateModel(request);
|
|
@@ -19648,12 +20522,14 @@ export default class Client extends OpenApi {
|
|
|
19648
20522
|
}
|
|
19649
20523
|
|
|
19650
20524
|
/**
|
|
19651
|
-
|
|
19652
|
-
|
|
19653
|
-
|
|
19654
|
-
|
|
19655
|
-
|
|
19656
|
-
|
|
20525
|
+
* @summary Modifies the configurations of a vServer group.
|
|
20526
|
+
*
|
|
20527
|
+
* @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.
|
|
20528
|
+
* * If you want to modify backend servers in a specified vServer group, call the [ModifyVServerGroupBackendServers](https://help.aliyun.com/document_detail/35220.html) operation.
|
|
20529
|
+
* * If you want to add backend servers to a specified vServer group, call the [AddVServerGroupBackendServers](https://help.aliyun.com/document_detail/35218.html) operation.
|
|
20530
|
+
*
|
|
20531
|
+
* @param request SetVServerGroupAttributeRequest
|
|
20532
|
+
* @return SetVServerGroupAttributeResponse
|
|
19657
20533
|
*/
|
|
19658
20534
|
async setVServerGroupAttribute(request: SetVServerGroupAttributeRequest): Promise<SetVServerGroupAttributeResponse> {
|
|
19659
20535
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -19661,14 +20537,16 @@ export default class Client extends OpenApi {
|
|
|
19661
20537
|
}
|
|
19662
20538
|
|
|
19663
20539
|
/**
|
|
19664
|
-
|
|
19665
|
-
|
|
19666
|
-
|
|
19667
|
-
|
|
19668
|
-
|
|
19669
|
-
|
|
19670
|
-
|
|
19671
|
-
|
|
20540
|
+
* @summary You can call this operation to start a listener.
|
|
20541
|
+
*
|
|
20542
|
+
* @description When you call this operation, note the following items:
|
|
20543
|
+
* * You can call the operation only when the listener is in the Stopped state.
|
|
20544
|
+
* * After the operation is called, the status of the listener changes to Starting.
|
|
20545
|
+
* * You cannot call this operation when the SLB instance to which the listener is bound is in the Locked state.
|
|
20546
|
+
*
|
|
20547
|
+
* @param request StartLoadBalancerListenerRequest
|
|
20548
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20549
|
+
* @return StartLoadBalancerListenerResponse
|
|
19672
20550
|
*/
|
|
19673
20551
|
async startLoadBalancerListenerWithOptions(request: StartLoadBalancerListenerRequest, runtime: $Util.RuntimeOptions): Promise<StartLoadBalancerListenerResponse> {
|
|
19674
20552
|
Util.validateModel(request);
|
|
@@ -19723,13 +20601,15 @@ export default class Client extends OpenApi {
|
|
|
19723
20601
|
}
|
|
19724
20602
|
|
|
19725
20603
|
/**
|
|
19726
|
-
|
|
19727
|
-
|
|
19728
|
-
|
|
19729
|
-
|
|
19730
|
-
|
|
19731
|
-
|
|
19732
|
-
|
|
20604
|
+
* @summary You can call this operation to start a listener.
|
|
20605
|
+
*
|
|
20606
|
+
* @description When you call this operation, note the following items:
|
|
20607
|
+
* * You can call the operation only when the listener is in the Stopped state.
|
|
20608
|
+
* * After the operation is called, the status of the listener changes to Starting.
|
|
20609
|
+
* * You cannot call this operation when the SLB instance to which the listener is bound is in the Locked state.
|
|
20610
|
+
*
|
|
20611
|
+
* @param request StartLoadBalancerListenerRequest
|
|
20612
|
+
* @return StartLoadBalancerListenerResponse
|
|
19733
20613
|
*/
|
|
19734
20614
|
async startLoadBalancerListener(request: StartLoadBalancerListenerRequest): Promise<StartLoadBalancerListenerResponse> {
|
|
19735
20615
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -19737,14 +20617,16 @@ export default class Client extends OpenApi {
|
|
|
19737
20617
|
}
|
|
19738
20618
|
|
|
19739
20619
|
/**
|
|
19740
|
-
|
|
19741
|
-
|
|
19742
|
-
|
|
19743
|
-
|
|
19744
|
-
|
|
19745
|
-
|
|
19746
|
-
|
|
19747
|
-
|
|
20620
|
+
* @summary Stops a listener.
|
|
20621
|
+
*
|
|
20622
|
+
* @description Before you make this API call, note the following:
|
|
20623
|
+
* * After the API call is successfully made, the listener enters the stopped state.
|
|
20624
|
+
* * 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.
|
|
20625
|
+
* > If you stop the listener, your services will be disrupted. Exercise caution when you perform this action.
|
|
20626
|
+
*
|
|
20627
|
+
* @param request StopLoadBalancerListenerRequest
|
|
20628
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20629
|
+
* @return StopLoadBalancerListenerResponse
|
|
19748
20630
|
*/
|
|
19749
20631
|
async stopLoadBalancerListenerWithOptions(request: StopLoadBalancerListenerRequest, runtime: $Util.RuntimeOptions): Promise<StopLoadBalancerListenerResponse> {
|
|
19750
20632
|
Util.validateModel(request);
|
|
@@ -19799,13 +20681,15 @@ export default class Client extends OpenApi {
|
|
|
19799
20681
|
}
|
|
19800
20682
|
|
|
19801
20683
|
/**
|
|
19802
|
-
|
|
19803
|
-
|
|
19804
|
-
|
|
19805
|
-
|
|
19806
|
-
|
|
19807
|
-
|
|
19808
|
-
|
|
20684
|
+
* @summary Stops a listener.
|
|
20685
|
+
*
|
|
20686
|
+
* @description Before you make this API call, note the following:
|
|
20687
|
+
* * After the API call is successfully made, the listener enters the stopped state.
|
|
20688
|
+
* * 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.
|
|
20689
|
+
* > If you stop the listener, your services will be disrupted. Exercise caution when you perform this action.
|
|
20690
|
+
*
|
|
20691
|
+
* @param request StopLoadBalancerListenerRequest
|
|
20692
|
+
* @return StopLoadBalancerListenerResponse
|
|
19809
20693
|
*/
|
|
19810
20694
|
async stopLoadBalancerListener(request: StopLoadBalancerListenerRequest): Promise<StopLoadBalancerListenerResponse> {
|
|
19811
20695
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -19813,11 +20697,13 @@ export default class Client extends OpenApi {
|
|
|
19813
20697
|
}
|
|
19814
20698
|
|
|
19815
20699
|
/**
|
|
19816
|
-
|
|
19817
|
-
|
|
19818
|
-
|
|
19819
|
-
|
|
19820
|
-
|
|
20700
|
+
* @summary Creates tags and adds the tags to resources.
|
|
20701
|
+
*
|
|
20702
|
+
* @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.
|
|
20703
|
+
*
|
|
20704
|
+
* @param request TagResourcesRequest
|
|
20705
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20706
|
+
* @return TagResourcesResponse
|
|
19821
20707
|
*/
|
|
19822
20708
|
async tagResourcesWithOptions(request: TagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<TagResourcesResponse> {
|
|
19823
20709
|
Util.validateModel(request);
|
|
@@ -19872,16 +20758,25 @@ export default class Client extends OpenApi {
|
|
|
19872
20758
|
}
|
|
19873
20759
|
|
|
19874
20760
|
/**
|
|
19875
|
-
|
|
19876
|
-
|
|
19877
|
-
|
|
19878
|
-
|
|
20761
|
+
* @summary Creates tags and adds the tags to resources.
|
|
20762
|
+
*
|
|
20763
|
+
* @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.
|
|
20764
|
+
*
|
|
20765
|
+
* @param request TagResourcesRequest
|
|
20766
|
+
* @return TagResourcesResponse
|
|
19879
20767
|
*/
|
|
19880
20768
|
async tagResources(request: TagResourcesRequest): Promise<TagResourcesResponse> {
|
|
19881
20769
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19882
20770
|
return await this.tagResourcesWithOptions(request, runtime);
|
|
19883
20771
|
}
|
|
19884
20772
|
|
|
20773
|
+
/**
|
|
20774
|
+
* @summary Removes tags from specified resources.
|
|
20775
|
+
*
|
|
20776
|
+
* @param request UntagResourcesRequest
|
|
20777
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20778
|
+
* @return UntagResourcesResponse
|
|
20779
|
+
*/
|
|
19885
20780
|
async untagResourcesWithOptions(request: UntagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<UntagResourcesResponse> {
|
|
19886
20781
|
Util.validateModel(request);
|
|
19887
20782
|
let query = { };
|
|
@@ -19938,17 +20833,25 @@ export default class Client extends OpenApi {
|
|
|
19938
20833
|
return $tea.cast<UntagResourcesResponse>(await this.callApi(params, req, runtime), new UntagResourcesResponse({}));
|
|
19939
20834
|
}
|
|
19940
20835
|
|
|
20836
|
+
/**
|
|
20837
|
+
* @summary Removes tags from specified resources.
|
|
20838
|
+
*
|
|
20839
|
+
* @param request UntagResourcesRequest
|
|
20840
|
+
* @return UntagResourcesResponse
|
|
20841
|
+
*/
|
|
19941
20842
|
async untagResources(request: UntagResourcesRequest): Promise<UntagResourcesResponse> {
|
|
19942
20843
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19943
20844
|
return await this.untagResourcesWithOptions(request, runtime);
|
|
19944
20845
|
}
|
|
19945
20846
|
|
|
19946
20847
|
/**
|
|
19947
|
-
|
|
19948
|
-
|
|
19949
|
-
|
|
19950
|
-
|
|
19951
|
-
|
|
20848
|
+
* @summary Uploads a CA certificate.
|
|
20849
|
+
*
|
|
20850
|
+
* @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.
|
|
20851
|
+
*
|
|
20852
|
+
* @param request UploadCACertificateRequest
|
|
20853
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20854
|
+
* @return UploadCACertificateResponse
|
|
19952
20855
|
*/
|
|
19953
20856
|
async uploadCACertificateWithOptions(request: UploadCACertificateRequest, runtime: $Util.RuntimeOptions): Promise<UploadCACertificateResponse> {
|
|
19954
20857
|
Util.validateModel(request);
|
|
@@ -20007,10 +20910,12 @@ export default class Client extends OpenApi {
|
|
|
20007
20910
|
}
|
|
20008
20911
|
|
|
20009
20912
|
/**
|
|
20010
|
-
|
|
20011
|
-
|
|
20012
|
-
|
|
20013
|
-
|
|
20913
|
+
* @summary Uploads a CA certificate.
|
|
20914
|
+
*
|
|
20915
|
+
* @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.
|
|
20916
|
+
*
|
|
20917
|
+
* @param request UploadCACertificateRequest
|
|
20918
|
+
* @return UploadCACertificateResponse
|
|
20014
20919
|
*/
|
|
20015
20920
|
async uploadCACertificate(request: UploadCACertificateRequest): Promise<UploadCACertificateResponse> {
|
|
20016
20921
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -20018,12 +20923,14 @@ export default class Client extends OpenApi {
|
|
|
20018
20923
|
}
|
|
20019
20924
|
|
|
20020
20925
|
/**
|
|
20021
|
-
|
|
20022
|
-
|
|
20023
|
-
|
|
20024
|
-
|
|
20025
|
-
|
|
20026
|
-
|
|
20926
|
+
* @summary Uploads a server certificate.
|
|
20927
|
+
*
|
|
20928
|
+
* @description * You can upload only one server certificate and its private key in each call.
|
|
20929
|
+
* * 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.
|
|
20930
|
+
*
|
|
20931
|
+
* @param request UploadServerCertificateRequest
|
|
20932
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20933
|
+
* @return UploadServerCertificateResponse
|
|
20027
20934
|
*/
|
|
20028
20935
|
async uploadServerCertificateWithOptions(request: UploadServerCertificateRequest, runtime: $Util.RuntimeOptions): Promise<UploadServerCertificateResponse> {
|
|
20029
20936
|
Util.validateModel(request);
|
|
@@ -20098,11 +21005,13 @@ export default class Client extends OpenApi {
|
|
|
20098
21005
|
}
|
|
20099
21006
|
|
|
20100
21007
|
/**
|
|
20101
|
-
|
|
20102
|
-
|
|
20103
|
-
|
|
20104
|
-
|
|
20105
|
-
|
|
21008
|
+
* @summary Uploads a server certificate.
|
|
21009
|
+
*
|
|
21010
|
+
* @description * You can upload only one server certificate and its private key in each call.
|
|
21011
|
+
* * 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.
|
|
21012
|
+
*
|
|
21013
|
+
* @param request UploadServerCertificateRequest
|
|
21014
|
+
* @return UploadServerCertificateResponse
|
|
20106
21015
|
*/
|
|
20107
21016
|
async uploadServerCertificate(request: UploadServerCertificateRequest): Promise<UploadServerCertificateResponse> {
|
|
20108
21017
|
let runtime = new $Util.RuntimeOptions({ });
|