ksyun-sdk-node 1.4.9 → 1.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (108) hide show
  1. package/dist/service/Aicp/v20240612/index.js +24 -0
  2. package/dist/service/Bws/v20160304/index.js +3 -0
  3. package/dist/service/Cdn/v20250503/index.js +0 -333
  4. package/dist/service/Cdn/v3/index.js +600 -0
  5. package/dist/service/Cen/v20160304/index.js +147 -103
  6. package/dist/service/Clickhouse/v20210101/index.js +204 -19
  7. package/dist/service/Cloud_advisor/v20250610/index.js +81 -0
  8. package/dist/service/Dmp/v20240101/index.js +362 -0
  9. package/dist/service/Dts/v20180108/index.js +386 -0
  10. package/dist/service/Ebs/v20160304/index.js +197 -34
  11. package/dist/service/Eip/v20160304/index.js +79 -1
  12. package/dist/service/Influxdb/v20191010/index.js +504 -0
  13. package/dist/service/Kad/v20161122/index.js +32 -0
  14. package/dist/service/Kce/v20190806/index.js +234 -43
  15. package/dist/service/Kce/v20201231/index.js +2 -2
  16. package/dist/service/Kce/v20230101/index.js +193 -0
  17. package/dist/service/Kce/v20230306/index.js +434 -0
  18. package/dist/service/Kce/v20231115/index.js +65 -0
  19. package/dist/service/Kce2/v20230101/index.js +313 -0
  20. package/dist/service/Kci/v20200702/index.js +336 -0
  21. package/dist/service/Kcm/v20160304/index.js +113 -3
  22. package/dist/service/Kcrs/v20211109/index.js +88 -92
  23. package/dist/service/Kcs/v20160701/index.js +165 -23
  24. package/dist/service/Kcs/v20170401/index.js +1 -36
  25. package/dist/service/Kcs/v20240701/index.js +45 -0
  26. package/dist/service/Kead/v20200101/index.js +37 -8
  27. package/dist/service/Ked/v1/index.js +805 -0
  28. package/dist/service/Ket/v20170101/index.js +42 -0
  29. package/dist/service/Kfw/v20160304/index.js +59 -0
  30. package/dist/service/Kingpay/v1/index.js +44 -0
  31. package/dist/service/Knad/v20230323/index.js +333 -0
  32. package/dist/service/Kpfs/v20240930/index.js +181 -0
  33. package/dist/service/Krds/v20160701/index.js +505 -96
  34. package/dist/service/Krds/v20200825/index.js +48 -8
  35. package/dist/service/Milvus/v20231010/index.js +366 -0
  36. package/dist/service/Mongodb/v20170101/index.js +163 -13
  37. package/dist/service/Mongodb/v20250101/index.js +44 -0
  38. package/dist/service/Pdns/v20160304/index.js +636 -0
  39. package/dist/service/Postgresql/v20181225/index.js +950 -0
  40. package/dist/service/Rabbitmq/v20191017/index.js +107 -6
  41. package/dist/service/Relyt/v20240117/index.js +45 -0
  42. package/dist/service/Sks/v20151101/index.js +2 -1
  43. package/dist/service/Slb/v20160304/index.js +426 -53
  44. package/dist/service/Slb/v20250430/index.js +750 -0
  45. package/dist/service/Sqlserver/v20190425/index.js +872 -0
  46. package/dist/service/Sts/v20151101/index.js +19 -0
  47. package/dist/service/Tagv2/v20200901/index.js +42 -6
  48. package/dist/service/Ter/v20240415/index.js +114 -0
  49. package/dist/service/Tidb/v20210520/index.js +415 -21
  50. package/dist/service/Trade/v20250220/index.js +97 -0
  51. package/dist/service/Trade/v20250321/index.js +93 -0
  52. package/dist/service/Trade/v20250828/index.js +56 -0
  53. package/dist/service/Vpc/v20160304/index.js +32 -0
  54. package/dist/service/Waf/v20200707/index.js +188 -5
  55. package/package.json +1 -1
  56. package/src/service/Aicp/v20240612/index.js +24 -0
  57. package/src/service/Bws/v20160304/index.js +3 -0
  58. package/src/service/Cdn/{v20250503 → v3}/index.js +196 -0
  59. package/src/service/Cen/v20160304/index.js +144 -100
  60. package/src/service/Clickhouse/v20210101/index.js +203 -18
  61. package/src/service/Cloud_advisor/v20250610/index.js +73 -0
  62. package/src/service/Dmp/v20240101/index.js +354 -0
  63. package/src/service/Dts/v20180108/index.js +378 -0
  64. package/src/service/Ebs/v20160304/index.js +194 -31
  65. package/src/service/Eip/v20160304/index.js +79 -1
  66. package/src/service/Influxdb/v20191010/index.js +496 -0
  67. package/src/service/Kad/v20161122/index.js +32 -0
  68. package/src/service/Kce/v20190806/index.js +233 -42
  69. package/src/service/Kce/v20201231/index.js +2 -2
  70. package/src/service/Kce/v20230101/index.js +185 -0
  71. package/src/service/Kce/v20230306/index.js +426 -0
  72. package/src/service/Kce/v20231115/index.js +57 -0
  73. package/src/service/Kce2/v20230101/index.js +305 -0
  74. package/src/service/Kci/v20200702/index.js +328 -0
  75. package/src/service/Kcm/v20160304/index.js +110 -0
  76. package/src/service/Kcrs/v20211109/index.js +87 -91
  77. package/src/service/Kcs/v20160701/index.js +164 -22
  78. package/src/service/Kcs/v20170401/index.js +1 -36
  79. package/src/service/Kcs/v20240701/index.js +37 -0
  80. package/src/service/Kead/v20200101/index.js +37 -8
  81. package/src/service/Ked/v1/index.js +797 -0
  82. package/src/service/Ket/v20170101/index.js +42 -0
  83. package/src/service/Kfw/v20160304/index.js +51 -0
  84. package/src/service/Kingpay/v1/index.js +36 -0
  85. package/src/service/Knad/v20230323/index.js +325 -0
  86. package/src/service/Kpfs/v20240930/index.js +173 -0
  87. package/src/service/Krds/v20160701/index.js +502 -93
  88. package/src/service/Krds/v20200825/index.js +48 -8
  89. package/src/service/Milvus/v20231010/index.js +358 -0
  90. package/src/service/Mongodb/v20170101/index.js +162 -12
  91. package/src/service/Mongodb/v20250101/index.js +36 -0
  92. package/src/service/Pdns/v20160304/index.js +628 -0
  93. package/src/service/Postgresql/v20181225/index.js +942 -0
  94. package/src/service/Rabbitmq/v20191017/index.js +107 -6
  95. package/src/service/Relyt/v20240117/index.js +37 -0
  96. package/src/service/Sks/v20151101/index.js +1 -0
  97. package/src/service/Slb/v20160304/index.js +416 -43
  98. package/src/service/Slb/v20250430/index.js +742 -0
  99. package/src/service/Sqlserver/v20190425/index.js +864 -0
  100. package/src/service/Sts/v20151101/index.js +19 -0
  101. package/src/service/Tagv2/v20200901/index.js +42 -6
  102. package/src/service/Ter/v20240415/index.js +106 -0
  103. package/src/service/Tidb/v20210520/index.js +412 -18
  104. package/src/service/Trade/v20250220/index.js +89 -0
  105. package/src/service/Trade/v20250321/index.js +85 -0
  106. package/src/service/Trade/v20250828/index.js +48 -0
  107. package/src/service/Vpc/v20160304/index.js +32 -0
  108. package/src/service/Waf/v20200707/index.js +187 -4
@@ -66,6 +66,7 @@ module.exports = class Client extends BaseClient {
66
66
  paramsType: {
67
67
  ListenerId: "String",
68
68
  ListenerName: "String",
69
+ BindType: "String",
69
70
  ListenerState: "String",
70
71
  Method: "String",
71
72
  BandWidthIn: "Int",
@@ -79,6 +80,9 @@ module.exports = class Client extends BaseClient {
79
80
  CookieName: "String",
80
81
  CertificateId: "String",
81
82
  RedirectListenerId: "String",
83
+ CaCertificateId: "String",
84
+ CaEnabled: "Boolean",
85
+ UpstreamKeepalive: "String",
82
86
  },
83
87
  },
84
88
  CreateListeners: {
@@ -98,6 +102,7 @@ module.exports = class Client extends BaseClient {
98
102
  ListenerName: "String",
99
103
  ListenerState: "String",
100
104
  ListenerProtocol: "String",
105
+ BindType: "String",
101
106
  ListenerPort: "Int",
102
107
  Method: "String",
103
108
  BandWidthIn: "Int",
@@ -112,6 +117,9 @@ module.exports = class Client extends BaseClient {
112
117
  CookieType: "String",
113
118
  CookieName: "String",
114
119
  CertificateId: "String",
120
+ CaCertificateId: "String",
121
+ CaEnabled: "Boolean",
122
+ UpstreamKeepalive: "String",
115
123
  },
116
124
  },
117
125
  ModifyInstancesWithListener: {
@@ -155,6 +163,7 @@ module.exports = class Client extends BaseClient {
155
163
  InstanceId: "String",
156
164
  Tag: "String",
157
165
  MasterSlaveType: "String",
166
+ NetworkInterfaceId: "String",
158
167
  },
159
168
  },
160
169
  DeregisterInstancesFromListener: {
@@ -212,6 +221,7 @@ module.exports = class Client extends BaseClient {
212
221
  Interval: "Int",
213
222
  Timeout: "Int",
214
223
  UnhealthyThreshold: "Int",
224
+ HealthProtocol: "String",
215
225
  HttpMethod: "String",
216
226
  UrlPath: "String",
217
227
  HostName: "String",
@@ -274,6 +284,7 @@ module.exports = class Client extends BaseClient {
274
284
  Interval: "Int",
275
285
  Timeout: "Int",
276
286
  UnhealthyThreshold: "Int",
287
+ HealthProtocol: "String",
277
288
  HttpMethod: "String",
278
289
  UrlPath: "String",
279
290
  HostName: "String",
@@ -297,6 +308,9 @@ module.exports = class Client extends BaseClient {
297
308
  ProjectId: "Filter",
298
309
  LoadBalancerId: "Filter",
299
310
  Filter: "Filter",
311
+ IsContainTag: "Boolean",
312
+ TagKey: "Filter",
313
+ TagKV: "Filter",
300
314
  MaxResults: "Int",
301
315
  NextToken: "String",
302
316
  State: "String",
@@ -354,6 +368,9 @@ module.exports = class Client extends BaseClient {
354
368
  Type: "String",
355
369
  SubnetId: "String",
356
370
  PrivateIpAddress: "String",
371
+ DeleteProtection: "String",
372
+ ModificationProtection: "String",
373
+ ChargeType: "String",
357
374
  IpVersion: "String",
358
375
  LbType: "String",
359
376
  ProjectId: "String",
@@ -478,6 +495,7 @@ module.exports = class Client extends BaseClient {
478
495
  },
479
496
  paramsType: {
480
497
  VpcId: "String",
498
+ Protocol: "String",
481
499
  BackendServerGroupName: "String",
482
500
  BackendServerGroupType: "String",
483
501
  HostName: "String",
@@ -488,7 +506,7 @@ module.exports = class Client extends BaseClient {
488
506
  UnhealthyThreshold: "Int",
489
507
  UrlPath: "String",
490
508
  Region: "String",
491
- Type: "String",
509
+ UpstreamKeepalive: "String",
492
510
  },
493
511
  },
494
512
  DeleteBackendServerGroup: {
@@ -522,6 +540,7 @@ module.exports = class Client extends BaseClient {
522
540
  paramsType: {
523
541
  BackendServerGroupId: "String",
524
542
  BackendServerGroupName: "String",
543
+ UpstreamKeepalive: "String",
525
544
  },
526
545
  },
527
546
  DescribeBackendServerGroups: {
@@ -814,6 +833,7 @@ module.exports = class Client extends BaseClient {
814
833
  ListenerId: "String",
815
834
  Description: "String",
816
835
  ProjectId: "String",
836
+ DeleteProtection: "String",
817
837
  },
818
838
  },
819
839
  DescribePrivateLinkServer: {
@@ -867,6 +887,7 @@ module.exports = class Client extends BaseClient {
867
887
  PrivateLinkServerId: "String",
868
888
  PrivateLinkServerName: "String",
869
889
  Description: "String",
890
+ DeleteProtection: "String",
870
891
  },
871
892
  },
872
893
  AssociatePrivateLinkServer: {
@@ -886,6 +907,7 @@ module.exports = class Client extends BaseClient {
886
907
  LoadBalancerId: "String",
887
908
  ListenerPort: "Int",
888
909
  ProjectId: "String",
910
+ DeleteProtection: "String",
889
911
  },
890
912
  },
891
913
  DescribePrivateLink: {
@@ -1029,6 +1051,13 @@ module.exports = class Client extends BaseClient {
1029
1051
  ProjectId: "String",
1030
1052
  AllocationId: "String",
1031
1053
  ChargeType: "String",
1054
+ SubnetId: "String",
1055
+ PrivateIpAddress: "String",
1056
+ EnabledQuic: "Boolean",
1057
+ EnableHpa: "Boolean",
1058
+ ProtocolLayers: "String",
1059
+ DeleteProtection: "String",
1060
+ ModificationProtection: "String",
1032
1061
  },
1033
1062
  },
1034
1063
  DeleteAlb: {
@@ -1096,38 +1125,47 @@ module.exports = class Client extends BaseClient {
1096
1125
  paramsType: {
1097
1126
  AlbId: "Filter",
1098
1127
  Filter: "Filter",
1128
+ IsContainTag: "Boolean",
1129
+ TagKey: "Filter",
1130
+ TagKV: "Filter",
1131
+ ProjectId: "Filter",
1099
1132
  MaxResults: "Int",
1100
1133
  NextToken: "String",
1101
1134
  },
1102
1135
  },
1103
1136
  CreateAlbListener: {
1104
1137
  url: "/",
1105
- method: "GET",
1138
+ method: "POST",
1106
1139
  config: {
1107
1140
  query: {
1108
1141
  Version: "2016-03-04",
1109
1142
  Action: "CreateAlbListener",
1110
1143
  },
1111
1144
  headers: {
1112
- "Content-Type": "application/x-www-form-urlencoded",
1145
+ "Content-Type": "application/json",
1113
1146
  },
1114
1147
  },
1115
1148
  paramsType: {
1116
1149
  AlbId: "String",
1117
1150
  AlbListenerName: "String",
1118
- Method: "String",
1119
1151
  Protocol: "String",
1120
1152
  Port: "Int",
1153
+ IdleTimeout: "Int",
1121
1154
  CertificateId: "String",
1122
1155
  TlsCipherPolicy: "String",
1123
1156
  AlbListenerAclId: "String",
1124
1157
  AlbListenerState: "String",
1125
- SessionState: "String",
1126
- SessionPersistencePeriod: "Int",
1127
- CookieType: "String",
1128
- CookieName: "String",
1158
+ RedirectAlbListenerId: "String",
1159
+ RedirectHttpCode: "String",
1129
1160
  EnableHttp2: "Boolean",
1130
- HttpProtocol: "String",
1161
+ BackendServerGroupId: "String",
1162
+ FixedResponseConfig: "Object",
1163
+ RewriteConfig: "Object",
1164
+ CaEnabled: "Boolean",
1165
+ CaCertificateId: "String",
1166
+ EnableQuicUpgrade: "Boolean",
1167
+ QuicListenerId: "String",
1168
+ ServerGroupId: "String",
1131
1169
  },
1132
1170
  },
1133
1171
  ModifyAlbListener: {
@@ -1146,16 +1184,17 @@ module.exports = class Client extends BaseClient {
1146
1184
  AlbListenerId: "String",
1147
1185
  AlbListenerName: "String",
1148
1186
  AlbListenerState: "String",
1149
- Method: "String",
1150
1187
  CertificateId: "String",
1151
1188
  TlsCipherPolicy: "String",
1152
1189
  AlbListenerAclId: "String",
1153
1190
  HttpProtocol: "String",
1154
- SessionState: "String",
1155
- SessionPersistencePeriod: "Int",
1156
- CookieType: "String",
1157
- CookieName: "String",
1158
1191
  EnableHttp2: "Boolean",
1192
+ CaEnabled: "Boolean",
1193
+ CaCertificateId: "String",
1194
+ EnableQuicUpgrade: "Boolean",
1195
+ QuicListenerId: "String",
1196
+ IdleTimeout: "Int",
1197
+ ServerGroupId: "String",
1159
1198
  },
1160
1199
  },
1161
1200
  DeleteAlbListener: {
@@ -1209,22 +1248,12 @@ module.exports = class Client extends BaseClient {
1209
1248
  AlbRuleGroupName: "String",
1210
1249
  AlbListenerId: "String",
1211
1250
  BackendServerGroupId: "String",
1212
- ListenerSync: "String",
1213
- Method: "String",
1214
- SessionState: "String",
1215
- SessionPersistencePeriod: "Int",
1216
- CookieType: "String",
1217
- CookieName: "String",
1218
- HealthCheckState: "String",
1219
- Timeout: "Int",
1220
- Interval: "Int",
1221
- HealthyThreshold: "Int",
1222
- UnhealthyThreshold: "Int",
1223
- UrlPath: "String",
1224
- HostName: "String",
1251
+ Type: "String",
1225
1252
  AlbRuleSet: "Array",
1226
- RedirectHttpCode: "String",
1227
1253
  RedirectAlbListenerId: "String",
1254
+ RedirectHttpCode: "String",
1255
+ FixedResponseConfig: "Object",
1256
+ RewriteConfig: "Object",
1228
1257
  },
1229
1258
  },
1230
1259
  DeleteAlbRuleGroup: {
@@ -1278,22 +1307,11 @@ module.exports = class Client extends BaseClient {
1278
1307
  AlbRuleGroupId: "String",
1279
1308
  AlbRuleGroupName: "String",
1280
1309
  BackendServerGroupId: "String",
1281
- ListenerSync: "String",
1282
- Method: "String",
1283
- SessionState: "String",
1284
- SessionPersistencePeriod: "Int",
1285
- CookieType: "String",
1286
- CookieName: "String",
1287
- HealthCheckState: "String",
1288
- Timeout: "Int",
1289
- Interval: "Int",
1290
- HealthyThreshold: "Int",
1291
- UnhealthyThreshold: "Int",
1292
- UrlPath: "String",
1293
- HostName: "String",
1310
+ Type: "String",
1294
1311
  AlbRuleSet: "Array",
1295
- RedirectHttpCode: "String",
1296
1312
  RedirectAlbListenerId: "String",
1313
+ RedirectHttpCode: "String",
1314
+ FixedResponseConfig: "Object",
1297
1315
  },
1298
1316
  },
1299
1317
  AddAlbRule: {
@@ -1465,9 +1483,364 @@ module.exports = class Client extends BaseClient {
1465
1483
  },
1466
1484
  },
1467
1485
  paramsType: {
1468
- VpcId: "String",
1486
+ cloneLoadBalancerId: "String",
1469
1487
  LoadBalancerName: "String",
1470
1488
  Type: "String",
1489
+ SubnetId: "String",
1490
+ PrivateIpAddress: "String",
1491
+ IpVersion: "String",
1492
+ LbType: "String",
1493
+ TagId: "Filter",
1494
+ ProjectId: "String",
1495
+ },
1496
+ },
1497
+ SetLBDeleteProtection: {
1498
+ url: "/",
1499
+ method: "GET",
1500
+ config: {
1501
+ query: {
1502
+ Version: "2016-03-04",
1503
+ Action: "SetLBDeleteProtection",
1504
+ },
1505
+ headers: {
1506
+ "Content-Type": "application/x-www-form-urlencoded",
1507
+ },
1508
+ },
1509
+ paramsType: {
1510
+ LoadBalancerId: "String",
1511
+ DeleteProtection: "String",
1512
+ },
1513
+ },
1514
+ SetLBModificationProtection: {
1515
+ url: "/",
1516
+ method: "GET",
1517
+ config: {
1518
+ query: {
1519
+ Version: "2016-03-04",
1520
+ Action: "SetLBModificationProtection",
1521
+ },
1522
+ headers: {
1523
+ "Content-Type": "application/x-www-form-urlencoded",
1524
+ },
1525
+ },
1526
+ paramsType: {
1527
+ LoadBalancerId: "String",
1528
+ ModificationProtection: "String",
1529
+ },
1530
+ },
1531
+ ModifyCertificateWithGroup: {
1532
+ url: "/",
1533
+ method: "GET",
1534
+ config: {
1535
+ query: {
1536
+ Version: "2016-03-04",
1537
+ Action: "ModifyCertificateWithGroup",
1538
+ },
1539
+ headers: {
1540
+ "Content-Type": "application/x-www-form-urlencoded",
1541
+ },
1542
+ },
1543
+ paramsType: {
1544
+ AlbListenerCertGroupId: "String",
1545
+ OldCertificateId: "String",
1546
+ CertificateId: "String",
1547
+ },
1548
+ },
1549
+ CreateAlbBackendServerGroup: {
1550
+ url: "/",
1551
+ method: "GET",
1552
+ config: {
1553
+ query: {
1554
+ Version: "2016-03-04",
1555
+ Action: "CreateAlbBackendServerGroup",
1556
+ },
1557
+ headers: {
1558
+ "Content-Type": "application/x-www-form-urlencoded",
1559
+ },
1560
+ },
1561
+ paramsType: {
1562
+ VpcId: "String",
1563
+ Name: "String",
1564
+ BackendServerType: "String",
1565
+ Method: "String",
1566
+ SessionState: "String",
1567
+ SessionPersistencePeriod: "Int",
1568
+ CookieType: "String",
1569
+ CookieName: "String",
1570
+ UpstreamKeepalive: "String",
1571
+ Protocol: "String",
1572
+ HealthCheckState: "String",
1573
+ Timeout: "Int",
1574
+ Interval: "Int",
1575
+ HealthyThreshold: "Int",
1576
+ UnhealthyThreshold: "Int",
1577
+ UrlPath: "String",
1578
+ HostName: "String",
1579
+ HealthCheckConnectPort: "Int",
1580
+ HealthProtocol: "String",
1581
+ SlowStartEnabled: "Boolean",
1582
+ SlowStartDuration: "Int",
1583
+ HttpMethod: "String",
1584
+ HealthCheckReq: "String",
1585
+ HealthCheckExp: "String",
1586
+ HealthCode: "String",
1587
+ },
1588
+ },
1589
+ DeleteAlbBackendServerGroup: {
1590
+ url: "/",
1591
+ method: "GET",
1592
+ config: {
1593
+ query: {
1594
+ Version: "2016-03-04",
1595
+ Action: "DeleteAlbBackendServerGroup",
1596
+ },
1597
+ headers: {
1598
+ "Content-Type": "application/x-www-form-urlencoded",
1599
+ },
1600
+ },
1601
+ paramsType: {
1602
+ BackendServerGroupId: "String",
1603
+ },
1604
+ },
1605
+ ModifyAlbBackendServerGroup: {
1606
+ url: "/",
1607
+ method: "GET",
1608
+ config: {
1609
+ query: {
1610
+ Version: "2016-03-04",
1611
+ Action: "ModifyAlbBackendServerGroup",
1612
+ },
1613
+ headers: {
1614
+ "Content-Type": "application/x-www-form-urlencoded",
1615
+ },
1616
+ },
1617
+ paramsType: {
1618
+ BackendServerGroupId: "String",
1619
+ Name: "String",
1620
+ UpstreamKeepalive: "String",
1621
+ Method: "String",
1622
+ SessionState: "String",
1623
+ SessionPersistencePeriod: "Int",
1624
+ CookieType: "String",
1625
+ CookieName: "String",
1626
+ HealthCheckState: "String",
1627
+ Timeout: "Int",
1628
+ Interval: "Int",
1629
+ HealthyThreshold: "Int",
1630
+ UnhealthyThreshold: "Int",
1631
+ UrlPath: "String",
1632
+ HostName: "String",
1633
+ HealthCheckConnectPort: "Int",
1634
+ HealthProtocol: "String",
1635
+ SlowStartEnabled: "Boolean",
1636
+ SlowStartDuration: "Int",
1637
+ HttpMethod: "String",
1638
+ HealthCode: "String",
1639
+ HealthCheckReq: "String",
1640
+ HealthCheckExp: "String",
1641
+ },
1642
+ },
1643
+ DescribeAlbBackendServerGroups: {
1644
+ url: "/",
1645
+ method: "GET",
1646
+ config: {
1647
+ query: {
1648
+ Version: "2016-03-04",
1649
+ Action: "DescribeAlbBackendServerGroups",
1650
+ },
1651
+ headers: {
1652
+ "Content-Type": "application/x-www-form-urlencoded",
1653
+ },
1654
+ },
1655
+ paramsType: {
1656
+ Filter: "Filter",
1657
+ BackendServerGroupId: "Filter",
1658
+ MaxResults: "Int",
1659
+ NextToken: "String",
1660
+ },
1661
+ },
1662
+ RegisterAlbBackendServer: {
1663
+ url: "/",
1664
+ method: "GET",
1665
+ config: {
1666
+ query: {
1667
+ Version: "2016-03-04",
1668
+ Action: "RegisterAlbBackendServer",
1669
+ },
1670
+ headers: {
1671
+ "Content-Type": "application/x-www-form-urlencoded",
1672
+ },
1673
+ },
1674
+ paramsType: {
1675
+ BackendServerGroupId: "String",
1676
+ BackendServerIp: "String",
1677
+ Port: "Int",
1678
+ Weight: "Int",
1679
+ NetworkInterfaceId: "String",
1680
+ DirectConnectGatewayId: "String",
1681
+ MasterSlaveType: "String",
1682
+ },
1683
+ },
1684
+ DeregisterAlbBackendServer: {
1685
+ url: "/",
1686
+ method: "GET",
1687
+ config: {
1688
+ query: {
1689
+ Version: "2016-03-04",
1690
+ Action: "DeregisterAlbBackendServer",
1691
+ },
1692
+ headers: {
1693
+ "Content-Type": "application/x-www-form-urlencoded",
1694
+ },
1695
+ },
1696
+ paramsType: {
1697
+ BackendServerId: "String",
1698
+ },
1699
+ },
1700
+ ModifyAlbBackendServer: {
1701
+ url: "/",
1702
+ method: "GET",
1703
+ config: {
1704
+ query: {
1705
+ Version: "2016-03-04",
1706
+ Action: "ModifyAlbBackendServer",
1707
+ },
1708
+ headers: {
1709
+ "Content-Type": "application/x-www-form-urlencoded",
1710
+ },
1711
+ },
1712
+ paramsType: {
1713
+ BackendServerId: "String",
1714
+ Weight: "Int",
1715
+ Port: "Int",
1716
+ MasterSlaveType: "String",
1717
+ },
1718
+ },
1719
+ DescribeAlbBackendServers: {
1720
+ url: "/",
1721
+ method: "GET",
1722
+ config: {
1723
+ query: {
1724
+ Version: "2016-03-04",
1725
+ Action: "DescribeAlbBackendServers",
1726
+ },
1727
+ headers: {
1728
+ "Content-Type": "application/x-www-form-urlencoded",
1729
+ },
1730
+ },
1731
+ paramsType: {
1732
+ Filter: "Filter",
1733
+ BackendServerId: "Filter",
1734
+ MaxResults: "Int",
1735
+ NextToken: "String",
1736
+ },
1737
+ },
1738
+ RegisterBackendServerGroupWithListener: {
1739
+ url: "/",
1740
+ method: "GET",
1741
+ config: {
1742
+ query: {
1743
+ Version: "2016-03-04",
1744
+ Action: "RegisterBackendServerGroupWithListener",
1745
+ },
1746
+ headers: {
1747
+ "Content-Type": "application/x-www-form-urlencoded",
1748
+ },
1749
+ },
1750
+ paramsType: {
1751
+ ListenerId: "String",
1752
+ BackendServerGroupId: "String",
1753
+ },
1754
+ },
1755
+ SetPrivateLinkDeleteProtection: {
1756
+ url: "/",
1757
+ method: "GET",
1758
+ config: {
1759
+ query: {
1760
+ Version: "2016-03-04",
1761
+ Action: "SetPrivateLinkDeleteProtection",
1762
+ },
1763
+ headers: {
1764
+ "Content-Type": "application/x-www-form-urlencoded",
1765
+ },
1766
+ },
1767
+ paramsType: {
1768
+ InstanceId: "String",
1769
+ DeleteProtection: "String",
1770
+ },
1771
+ },
1772
+ SetAlbDeleteProtection: {
1773
+ url: "/",
1774
+ method: "GET",
1775
+ config: {
1776
+ query: {
1777
+ Version: "2016-03-04",
1778
+ Action: "SetAlbDeleteProtection",
1779
+ },
1780
+ headers: {
1781
+ "Content-Type": "application/x-www-form-urlencoded",
1782
+ },
1783
+ },
1784
+ paramsType: {
1785
+ albId: "String",
1786
+ deleteProtection: "String",
1787
+ },
1788
+ },
1789
+ SetAlbModificationProtection: {
1790
+ url: "/",
1791
+ method: "GET",
1792
+ config: {
1793
+ query: {
1794
+ Version: "2016-03-04",
1795
+ Action: "SetAlbModificationProtection",
1796
+ },
1797
+ headers: {
1798
+ "Content-Type": "application/x-www-form-urlencoded",
1799
+ },
1800
+ },
1801
+ paramsType: {
1802
+ albId: "String",
1803
+ modificationProtection: "String",
1804
+ },
1805
+ },
1806
+ AddAlbRules: {
1807
+ url: "/",
1808
+ method: "POST",
1809
+ config: {
1810
+ query: {
1811
+ Version: "2016-03-04",
1812
+ Action: "AddAlbRules",
1813
+ },
1814
+ headers: {
1815
+ "Content-Type": "application/json",
1816
+ },
1817
+ },
1818
+ paramsType: {
1819
+ AlbRuleGroupId: "String",
1820
+ AlbRuleType: "String",
1821
+ AlbRuleValue: "String",
1822
+ MethodValue: "Array",
1823
+ SourceIpValue: "Array",
1824
+ HeaderValue: "Array",
1825
+ QueryValue: "Array",
1826
+ CookieValue: "Array",
1827
+ },
1828
+ },
1829
+ SetLbProtocolLayers: {
1830
+ url: "/",
1831
+ method: "GET",
1832
+ config: {
1833
+ query: {
1834
+ Version: "2016-03-04",
1835
+ Action: "SetLbProtocolLayers",
1836
+ },
1837
+ headers: {
1838
+ "Content-Type": "application/x-www-form-urlencoded",
1839
+ },
1840
+ },
1841
+ paramsType: {
1842
+ AlbId: "String",
1843
+ ProtocolLayers: "String",
1471
1844
  },
1472
1845
  },
1473
1846
  };