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
@@ -73,6 +73,7 @@ module.exports = class Client extends BaseClient {
73
73
  paramsType: {
74
74
  ListenerId: "String",
75
75
  ListenerName: "String",
76
+ BindType: "String",
76
77
  ListenerState: "String",
77
78
  Method: "String",
78
79
  BandWidthIn: "Int",
@@ -85,7 +86,10 @@ module.exports = class Client extends BaseClient {
85
86
  CookieType: "String",
86
87
  CookieName: "String",
87
88
  CertificateId: "String",
88
- RedirectListenerId: "String"
89
+ RedirectListenerId: "String",
90
+ CaCertificateId: "String",
91
+ CaEnabled: "Boolean",
92
+ UpstreamKeepalive: "String"
89
93
  }
90
94
  },
91
95
  CreateListeners: {
@@ -105,6 +109,7 @@ module.exports = class Client extends BaseClient {
105
109
  ListenerName: "String",
106
110
  ListenerState: "String",
107
111
  ListenerProtocol: "String",
112
+ BindType: "String",
108
113
  ListenerPort: "Int",
109
114
  Method: "String",
110
115
  BandWidthIn: "Int",
@@ -118,7 +123,10 @@ module.exports = class Client extends BaseClient {
118
123
  SessionPersistencePeriod: "Int",
119
124
  CookieType: "String",
120
125
  CookieName: "String",
121
- CertificateId: "String"
126
+ CertificateId: "String",
127
+ CaCertificateId: "String",
128
+ CaEnabled: "Boolean",
129
+ UpstreamKeepalive: "String"
122
130
  }
123
131
  },
124
132
  ModifyInstancesWithListener: {
@@ -161,7 +169,8 @@ module.exports = class Client extends BaseClient {
161
169
  RealServerPort: "Int",
162
170
  InstanceId: "String",
163
171
  Tag: "String",
164
- MasterSlaveType: "String"
172
+ MasterSlaveType: "String",
173
+ NetworkInterfaceId: "String"
165
174
  }
166
175
  },
167
176
  DeregisterInstancesFromListener: {
@@ -219,6 +228,7 @@ module.exports = class Client extends BaseClient {
219
228
  Interval: "Int",
220
229
  Timeout: "Int",
221
230
  UnhealthyThreshold: "Int",
231
+ HealthProtocol: "String",
222
232
  HttpMethod: "String",
223
233
  UrlPath: "String",
224
234
  HostName: "String",
@@ -281,6 +291,7 @@ module.exports = class Client extends BaseClient {
281
291
  Interval: "Int",
282
292
  Timeout: "Int",
283
293
  UnhealthyThreshold: "Int",
294
+ HealthProtocol: "String",
284
295
  HttpMethod: "String",
285
296
  UrlPath: "String",
286
297
  HostName: "String",
@@ -304,6 +315,9 @@ module.exports = class Client extends BaseClient {
304
315
  ProjectId: "Filter",
305
316
  LoadBalancerId: "Filter",
306
317
  Filter: "Filter",
318
+ IsContainTag: "Boolean",
319
+ TagKey: "Filter",
320
+ TagKV: "Filter",
307
321
  MaxResults: "Int",
308
322
  NextToken: "String",
309
323
  State: "String"
@@ -361,6 +375,9 @@ module.exports = class Client extends BaseClient {
361
375
  Type: "String",
362
376
  SubnetId: "String",
363
377
  PrivateIpAddress: "String",
378
+ DeleteProtection: "String",
379
+ ModificationProtection: "String",
380
+ ChargeType: "String",
364
381
  IpVersion: "String",
365
382
  LbType: "String",
366
383
  ProjectId: "String"
@@ -485,6 +502,7 @@ module.exports = class Client extends BaseClient {
485
502
  },
486
503
  paramsType: {
487
504
  VpcId: "String",
505
+ Protocol: "String",
488
506
  BackendServerGroupName: "String",
489
507
  BackendServerGroupType: "String",
490
508
  HostName: "String",
@@ -495,7 +513,7 @@ module.exports = class Client extends BaseClient {
495
513
  UnhealthyThreshold: "Int",
496
514
  UrlPath: "String",
497
515
  Region: "String",
498
- Type: "String"
516
+ UpstreamKeepalive: "String"
499
517
  }
500
518
  },
501
519
  DeleteBackendServerGroup: {
@@ -528,7 +546,8 @@ module.exports = class Client extends BaseClient {
528
546
  },
529
547
  paramsType: {
530
548
  BackendServerGroupId: "String",
531
- BackendServerGroupName: "String"
549
+ BackendServerGroupName: "String",
550
+ UpstreamKeepalive: "String"
532
551
  }
533
552
  },
534
553
  DescribeBackendServerGroups: {
@@ -820,7 +839,8 @@ module.exports = class Client extends BaseClient {
820
839
  PrivateLinkServerName: "String",
821
840
  ListenerId: "String",
822
841
  Description: "String",
823
- ProjectId: "String"
842
+ ProjectId: "String",
843
+ DeleteProtection: "String"
824
844
  }
825
845
  },
826
846
  DescribePrivateLinkServer: {
@@ -873,7 +893,8 @@ module.exports = class Client extends BaseClient {
873
893
  paramsType: {
874
894
  PrivateLinkServerId: "String",
875
895
  PrivateLinkServerName: "String",
876
- Description: "String"
896
+ Description: "String",
897
+ DeleteProtection: "String"
877
898
  }
878
899
  },
879
900
  AssociatePrivateLinkServer: {
@@ -892,7 +913,8 @@ module.exports = class Client extends BaseClient {
892
913
  PrivateLinkServerId: "String",
893
914
  LoadBalancerId: "String",
894
915
  ListenerPort: "Int",
895
- ProjectId: "String"
916
+ ProjectId: "String",
917
+ DeleteProtection: "String"
896
918
  }
897
919
  },
898
920
  DescribePrivateLink: {
@@ -1035,7 +1057,14 @@ module.exports = class Client extends BaseClient {
1035
1057
  IpVersion: "String",
1036
1058
  ProjectId: "String",
1037
1059
  AllocationId: "String",
1038
- ChargeType: "String"
1060
+ ChargeType: "String",
1061
+ SubnetId: "String",
1062
+ PrivateIpAddress: "String",
1063
+ EnabledQuic: "Boolean",
1064
+ EnableHpa: "Boolean",
1065
+ ProtocolLayers: "String",
1066
+ DeleteProtection: "String",
1067
+ ModificationProtection: "String"
1039
1068
  }
1040
1069
  },
1041
1070
  DeleteAlb: {
@@ -1103,38 +1132,47 @@ module.exports = class Client extends BaseClient {
1103
1132
  paramsType: {
1104
1133
  AlbId: "Filter",
1105
1134
  Filter: "Filter",
1135
+ IsContainTag: "Boolean",
1136
+ TagKey: "Filter",
1137
+ TagKV: "Filter",
1138
+ ProjectId: "Filter",
1106
1139
  MaxResults: "Int",
1107
1140
  NextToken: "String"
1108
1141
  }
1109
1142
  },
1110
1143
  CreateAlbListener: {
1111
1144
  url: "/",
1112
- method: "GET",
1145
+ method: "POST",
1113
1146
  config: {
1114
1147
  query: {
1115
1148
  Version: "2016-03-04",
1116
1149
  Action: "CreateAlbListener"
1117
1150
  },
1118
1151
  headers: {
1119
- "Content-Type": "application/x-www-form-urlencoded"
1152
+ "Content-Type": "application/json"
1120
1153
  }
1121
1154
  },
1122
1155
  paramsType: {
1123
1156
  AlbId: "String",
1124
1157
  AlbListenerName: "String",
1125
- Method: "String",
1126
1158
  Protocol: "String",
1127
1159
  Port: "Int",
1160
+ IdleTimeout: "Int",
1128
1161
  CertificateId: "String",
1129
1162
  TlsCipherPolicy: "String",
1130
1163
  AlbListenerAclId: "String",
1131
1164
  AlbListenerState: "String",
1132
- SessionState: "String",
1133
- SessionPersistencePeriod: "Int",
1134
- CookieType: "String",
1135
- CookieName: "String",
1165
+ RedirectAlbListenerId: "String",
1166
+ RedirectHttpCode: "String",
1136
1167
  EnableHttp2: "Boolean",
1137
- HttpProtocol: "String"
1168
+ BackendServerGroupId: "String",
1169
+ FixedResponseConfig: "Object",
1170
+ RewriteConfig: "Object",
1171
+ CaEnabled: "Boolean",
1172
+ CaCertificateId: "String",
1173
+ EnableQuicUpgrade: "Boolean",
1174
+ QuicListenerId: "String",
1175
+ ServerGroupId: "String"
1138
1176
  }
1139
1177
  },
1140
1178
  ModifyAlbListener: {
@@ -1153,16 +1191,17 @@ module.exports = class Client extends BaseClient {
1153
1191
  AlbListenerId: "String",
1154
1192
  AlbListenerName: "String",
1155
1193
  AlbListenerState: "String",
1156
- Method: "String",
1157
1194
  CertificateId: "String",
1158
1195
  TlsCipherPolicy: "String",
1159
1196
  AlbListenerAclId: "String",
1160
1197
  HttpProtocol: "String",
1161
- SessionState: "String",
1162
- SessionPersistencePeriod: "Int",
1163
- CookieType: "String",
1164
- CookieName: "String",
1165
- EnableHttp2: "Boolean"
1198
+ EnableHttp2: "Boolean",
1199
+ CaEnabled: "Boolean",
1200
+ CaCertificateId: "String",
1201
+ EnableQuicUpgrade: "Boolean",
1202
+ QuicListenerId: "String",
1203
+ IdleTimeout: "Int",
1204
+ ServerGroupId: "String"
1166
1205
  }
1167
1206
  },
1168
1207
  DeleteAlbListener: {
@@ -1216,22 +1255,12 @@ module.exports = class Client extends BaseClient {
1216
1255
  AlbRuleGroupName: "String",
1217
1256
  AlbListenerId: "String",
1218
1257
  BackendServerGroupId: "String",
1219
- ListenerSync: "String",
1220
- Method: "String",
1221
- SessionState: "String",
1222
- SessionPersistencePeriod: "Int",
1223
- CookieType: "String",
1224
- CookieName: "String",
1225
- HealthCheckState: "String",
1226
- Timeout: "Int",
1227
- Interval: "Int",
1228
- HealthyThreshold: "Int",
1229
- UnhealthyThreshold: "Int",
1230
- UrlPath: "String",
1231
- HostName: "String",
1258
+ Type: "String",
1232
1259
  AlbRuleSet: "Array",
1260
+ RedirectAlbListenerId: "String",
1233
1261
  RedirectHttpCode: "String",
1234
- RedirectAlbListenerId: "String"
1262
+ FixedResponseConfig: "Object",
1263
+ RewriteConfig: "Object"
1235
1264
  }
1236
1265
  },
1237
1266
  DeleteAlbRuleGroup: {
@@ -1285,22 +1314,11 @@ module.exports = class Client extends BaseClient {
1285
1314
  AlbRuleGroupId: "String",
1286
1315
  AlbRuleGroupName: "String",
1287
1316
  BackendServerGroupId: "String",
1288
- ListenerSync: "String",
1289
- Method: "String",
1290
- SessionState: "String",
1291
- SessionPersistencePeriod: "Int",
1292
- CookieType: "String",
1293
- CookieName: "String",
1294
- HealthCheckState: "String",
1295
- Timeout: "Int",
1296
- Interval: "Int",
1297
- HealthyThreshold: "Int",
1298
- UnhealthyThreshold: "Int",
1299
- UrlPath: "String",
1300
- HostName: "String",
1317
+ Type: "String",
1301
1318
  AlbRuleSet: "Array",
1319
+ RedirectAlbListenerId: "String",
1302
1320
  RedirectHttpCode: "String",
1303
- RedirectAlbListenerId: "String"
1321
+ FixedResponseConfig: "Object"
1304
1322
  }
1305
1323
  },
1306
1324
  AddAlbRule: {
@@ -1472,9 +1490,364 @@ module.exports = class Client extends BaseClient {
1472
1490
  }
1473
1491
  },
1474
1492
  paramsType: {
1475
- VpcId: "String",
1493
+ cloneLoadBalancerId: "String",
1476
1494
  LoadBalancerName: "String",
1477
- Type: "String"
1495
+ Type: "String",
1496
+ SubnetId: "String",
1497
+ PrivateIpAddress: "String",
1498
+ IpVersion: "String",
1499
+ LbType: "String",
1500
+ TagId: "Filter",
1501
+ ProjectId: "String"
1502
+ }
1503
+ },
1504
+ SetLBDeleteProtection: {
1505
+ url: "/",
1506
+ method: "GET",
1507
+ config: {
1508
+ query: {
1509
+ Version: "2016-03-04",
1510
+ Action: "SetLBDeleteProtection"
1511
+ },
1512
+ headers: {
1513
+ "Content-Type": "application/x-www-form-urlencoded"
1514
+ }
1515
+ },
1516
+ paramsType: {
1517
+ LoadBalancerId: "String",
1518
+ DeleteProtection: "String"
1519
+ }
1520
+ },
1521
+ SetLBModificationProtection: {
1522
+ url: "/",
1523
+ method: "GET",
1524
+ config: {
1525
+ query: {
1526
+ Version: "2016-03-04",
1527
+ Action: "SetLBModificationProtection"
1528
+ },
1529
+ headers: {
1530
+ "Content-Type": "application/x-www-form-urlencoded"
1531
+ }
1532
+ },
1533
+ paramsType: {
1534
+ LoadBalancerId: "String",
1535
+ ModificationProtection: "String"
1536
+ }
1537
+ },
1538
+ ModifyCertificateWithGroup: {
1539
+ url: "/",
1540
+ method: "GET",
1541
+ config: {
1542
+ query: {
1543
+ Version: "2016-03-04",
1544
+ Action: "ModifyCertificateWithGroup"
1545
+ },
1546
+ headers: {
1547
+ "Content-Type": "application/x-www-form-urlencoded"
1548
+ }
1549
+ },
1550
+ paramsType: {
1551
+ AlbListenerCertGroupId: "String",
1552
+ OldCertificateId: "String",
1553
+ CertificateId: "String"
1554
+ }
1555
+ },
1556
+ CreateAlbBackendServerGroup: {
1557
+ url: "/",
1558
+ method: "GET",
1559
+ config: {
1560
+ query: {
1561
+ Version: "2016-03-04",
1562
+ Action: "CreateAlbBackendServerGroup"
1563
+ },
1564
+ headers: {
1565
+ "Content-Type": "application/x-www-form-urlencoded"
1566
+ }
1567
+ },
1568
+ paramsType: {
1569
+ VpcId: "String",
1570
+ Name: "String",
1571
+ BackendServerType: "String",
1572
+ Method: "String",
1573
+ SessionState: "String",
1574
+ SessionPersistencePeriod: "Int",
1575
+ CookieType: "String",
1576
+ CookieName: "String",
1577
+ UpstreamKeepalive: "String",
1578
+ Protocol: "String",
1579
+ HealthCheckState: "String",
1580
+ Timeout: "Int",
1581
+ Interval: "Int",
1582
+ HealthyThreshold: "Int",
1583
+ UnhealthyThreshold: "Int",
1584
+ UrlPath: "String",
1585
+ HostName: "String",
1586
+ HealthCheckConnectPort: "Int",
1587
+ HealthProtocol: "String",
1588
+ SlowStartEnabled: "Boolean",
1589
+ SlowStartDuration: "Int",
1590
+ HttpMethod: "String",
1591
+ HealthCheckReq: "String",
1592
+ HealthCheckExp: "String",
1593
+ HealthCode: "String"
1594
+ }
1595
+ },
1596
+ DeleteAlbBackendServerGroup: {
1597
+ url: "/",
1598
+ method: "GET",
1599
+ config: {
1600
+ query: {
1601
+ Version: "2016-03-04",
1602
+ Action: "DeleteAlbBackendServerGroup"
1603
+ },
1604
+ headers: {
1605
+ "Content-Type": "application/x-www-form-urlencoded"
1606
+ }
1607
+ },
1608
+ paramsType: {
1609
+ BackendServerGroupId: "String"
1610
+ }
1611
+ },
1612
+ ModifyAlbBackendServerGroup: {
1613
+ url: "/",
1614
+ method: "GET",
1615
+ config: {
1616
+ query: {
1617
+ Version: "2016-03-04",
1618
+ Action: "ModifyAlbBackendServerGroup"
1619
+ },
1620
+ headers: {
1621
+ "Content-Type": "application/x-www-form-urlencoded"
1622
+ }
1623
+ },
1624
+ paramsType: {
1625
+ BackendServerGroupId: "String",
1626
+ Name: "String",
1627
+ UpstreamKeepalive: "String",
1628
+ Method: "String",
1629
+ SessionState: "String",
1630
+ SessionPersistencePeriod: "Int",
1631
+ CookieType: "String",
1632
+ CookieName: "String",
1633
+ HealthCheckState: "String",
1634
+ Timeout: "Int",
1635
+ Interval: "Int",
1636
+ HealthyThreshold: "Int",
1637
+ UnhealthyThreshold: "Int",
1638
+ UrlPath: "String",
1639
+ HostName: "String",
1640
+ HealthCheckConnectPort: "Int",
1641
+ HealthProtocol: "String",
1642
+ SlowStartEnabled: "Boolean",
1643
+ SlowStartDuration: "Int",
1644
+ HttpMethod: "String",
1645
+ HealthCode: "String",
1646
+ HealthCheckReq: "String",
1647
+ HealthCheckExp: "String"
1648
+ }
1649
+ },
1650
+ DescribeAlbBackendServerGroups: {
1651
+ url: "/",
1652
+ method: "GET",
1653
+ config: {
1654
+ query: {
1655
+ Version: "2016-03-04",
1656
+ Action: "DescribeAlbBackendServerGroups"
1657
+ },
1658
+ headers: {
1659
+ "Content-Type": "application/x-www-form-urlencoded"
1660
+ }
1661
+ },
1662
+ paramsType: {
1663
+ Filter: "Filter",
1664
+ BackendServerGroupId: "Filter",
1665
+ MaxResults: "Int",
1666
+ NextToken: "String"
1667
+ }
1668
+ },
1669
+ RegisterAlbBackendServer: {
1670
+ url: "/",
1671
+ method: "GET",
1672
+ config: {
1673
+ query: {
1674
+ Version: "2016-03-04",
1675
+ Action: "RegisterAlbBackendServer"
1676
+ },
1677
+ headers: {
1678
+ "Content-Type": "application/x-www-form-urlencoded"
1679
+ }
1680
+ },
1681
+ paramsType: {
1682
+ BackendServerGroupId: "String",
1683
+ BackendServerIp: "String",
1684
+ Port: "Int",
1685
+ Weight: "Int",
1686
+ NetworkInterfaceId: "String",
1687
+ DirectConnectGatewayId: "String",
1688
+ MasterSlaveType: "String"
1689
+ }
1690
+ },
1691
+ DeregisterAlbBackendServer: {
1692
+ url: "/",
1693
+ method: "GET",
1694
+ config: {
1695
+ query: {
1696
+ Version: "2016-03-04",
1697
+ Action: "DeregisterAlbBackendServer"
1698
+ },
1699
+ headers: {
1700
+ "Content-Type": "application/x-www-form-urlencoded"
1701
+ }
1702
+ },
1703
+ paramsType: {
1704
+ BackendServerId: "String"
1705
+ }
1706
+ },
1707
+ ModifyAlbBackendServer: {
1708
+ url: "/",
1709
+ method: "GET",
1710
+ config: {
1711
+ query: {
1712
+ Version: "2016-03-04",
1713
+ Action: "ModifyAlbBackendServer"
1714
+ },
1715
+ headers: {
1716
+ "Content-Type": "application/x-www-form-urlencoded"
1717
+ }
1718
+ },
1719
+ paramsType: {
1720
+ BackendServerId: "String",
1721
+ Weight: "Int",
1722
+ Port: "Int",
1723
+ MasterSlaveType: "String"
1724
+ }
1725
+ },
1726
+ DescribeAlbBackendServers: {
1727
+ url: "/",
1728
+ method: "GET",
1729
+ config: {
1730
+ query: {
1731
+ Version: "2016-03-04",
1732
+ Action: "DescribeAlbBackendServers"
1733
+ },
1734
+ headers: {
1735
+ "Content-Type": "application/x-www-form-urlencoded"
1736
+ }
1737
+ },
1738
+ paramsType: {
1739
+ Filter: "Filter",
1740
+ BackendServerId: "Filter",
1741
+ MaxResults: "Int",
1742
+ NextToken: "String"
1743
+ }
1744
+ },
1745
+ RegisterBackendServerGroupWithListener: {
1746
+ url: "/",
1747
+ method: "GET",
1748
+ config: {
1749
+ query: {
1750
+ Version: "2016-03-04",
1751
+ Action: "RegisterBackendServerGroupWithListener"
1752
+ },
1753
+ headers: {
1754
+ "Content-Type": "application/x-www-form-urlencoded"
1755
+ }
1756
+ },
1757
+ paramsType: {
1758
+ ListenerId: "String",
1759
+ BackendServerGroupId: "String"
1760
+ }
1761
+ },
1762
+ SetPrivateLinkDeleteProtection: {
1763
+ url: "/",
1764
+ method: "GET",
1765
+ config: {
1766
+ query: {
1767
+ Version: "2016-03-04",
1768
+ Action: "SetPrivateLinkDeleteProtection"
1769
+ },
1770
+ headers: {
1771
+ "Content-Type": "application/x-www-form-urlencoded"
1772
+ }
1773
+ },
1774
+ paramsType: {
1775
+ InstanceId: "String",
1776
+ DeleteProtection: "String"
1777
+ }
1778
+ },
1779
+ SetAlbDeleteProtection: {
1780
+ url: "/",
1781
+ method: "GET",
1782
+ config: {
1783
+ query: {
1784
+ Version: "2016-03-04",
1785
+ Action: "SetAlbDeleteProtection"
1786
+ },
1787
+ headers: {
1788
+ "Content-Type": "application/x-www-form-urlencoded"
1789
+ }
1790
+ },
1791
+ paramsType: {
1792
+ albId: "String",
1793
+ deleteProtection: "String"
1794
+ }
1795
+ },
1796
+ SetAlbModificationProtection: {
1797
+ url: "/",
1798
+ method: "GET",
1799
+ config: {
1800
+ query: {
1801
+ Version: "2016-03-04",
1802
+ Action: "SetAlbModificationProtection"
1803
+ },
1804
+ headers: {
1805
+ "Content-Type": "application/x-www-form-urlencoded"
1806
+ }
1807
+ },
1808
+ paramsType: {
1809
+ albId: "String",
1810
+ modificationProtection: "String"
1811
+ }
1812
+ },
1813
+ AddAlbRules: {
1814
+ url: "/",
1815
+ method: "POST",
1816
+ config: {
1817
+ query: {
1818
+ Version: "2016-03-04",
1819
+ Action: "AddAlbRules"
1820
+ },
1821
+ headers: {
1822
+ "Content-Type": "application/json"
1823
+ }
1824
+ },
1825
+ paramsType: {
1826
+ AlbRuleGroupId: "String",
1827
+ AlbRuleType: "String",
1828
+ AlbRuleValue: "String",
1829
+ MethodValue: "Array",
1830
+ SourceIpValue: "Array",
1831
+ HeaderValue: "Array",
1832
+ QueryValue: "Array",
1833
+ CookieValue: "Array"
1834
+ }
1835
+ },
1836
+ SetLbProtocolLayers: {
1837
+ url: "/",
1838
+ method: "GET",
1839
+ config: {
1840
+ query: {
1841
+ Version: "2016-03-04",
1842
+ Action: "SetLbProtocolLayers"
1843
+ },
1844
+ headers: {
1845
+ "Content-Type": "application/x-www-form-urlencoded"
1846
+ }
1847
+ },
1848
+ paramsType: {
1849
+ AlbId: "String",
1850
+ ProtocolLayers: "String"
1478
1851
  }
1479
1852
  }
1480
1853
  });