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
@@ -0,0 +1,750 @@
1
+ "use strict";
2
+
3
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
4
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
5
+ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
6
+ const BaseClient = require("../../../base/BaseClient.js");
7
+ module.exports = class Client extends BaseClient {
8
+ constructor(...args) {
9
+ super(...args);
10
+ _defineProperty(this, "_baseConfig", {
11
+ protocol: "http://",
12
+ endpoint: "slb.api.ksyun.com",
13
+ config: {
14
+ timeout: 60,
15
+ //设置timeout
16
+ headers: {
17
+ Accept: "application/json"
18
+ },
19
+ credentials: {
20
+ region: "cn-shanghai-3",
21
+ service: "slb"
22
+ }
23
+ }
24
+ });
25
+ _defineProperty(this, "_apiList", {
26
+ DescribeBackendServers: {
27
+ url: "/",
28
+ method: "GET",
29
+ config: {
30
+ query: {
31
+ Version: "2025-04-30",
32
+ Action: "DescribeBackendServers"
33
+ },
34
+ headers: {
35
+ "Content-Type": "application/x-www-form-urlencoded"
36
+ }
37
+ },
38
+ paramsType: {
39
+ Filter: "Filter",
40
+ BackendServerId: "Filter",
41
+ MaxResults: "Int",
42
+ NextToken: "String"
43
+ }
44
+ },
45
+ ModifyBackendServer: {
46
+ url: "/",
47
+ method: "GET",
48
+ config: {
49
+ query: {
50
+ Version: "2025-04-30",
51
+ Action: "ModifyBackendServer"
52
+ },
53
+ headers: {
54
+ "Content-Type": "application/x-www-form-urlencoded"
55
+ }
56
+ },
57
+ paramsType: {
58
+ BackendServerId: "String",
59
+ Weight: "Int",
60
+ Port: "Int",
61
+ MasterSlaveType: "String"
62
+ }
63
+ },
64
+ DeregisterBackendServer: {
65
+ url: "/",
66
+ method: "GET",
67
+ config: {
68
+ query: {
69
+ Version: "2025-04-30",
70
+ Action: "DeregisterBackendServer"
71
+ },
72
+ headers: {
73
+ "Content-Type": "application/x-www-form-urlencoded"
74
+ }
75
+ },
76
+ paramsType: {
77
+ BackendServerId: "String"
78
+ }
79
+ },
80
+ RegisterBackendServer: {
81
+ url: "/",
82
+ method: "GET",
83
+ config: {
84
+ query: {
85
+ Version: "2025-04-30",
86
+ Action: "RegisterBackendServer"
87
+ },
88
+ headers: {
89
+ "Content-Type": "application/x-www-form-urlencoded"
90
+ }
91
+ },
92
+ paramsType: {
93
+ BackendServerGroupId: "String",
94
+ BackendServerIp: "String",
95
+ Port: "Int",
96
+ Weight: "Int",
97
+ NetworkInterfaceId: "String",
98
+ DirectConnectGatewayId: "String",
99
+ MasterSlaveType: "String"
100
+ }
101
+ },
102
+ DescribeBackendServerGroups: {
103
+ url: "/",
104
+ method: "GET",
105
+ config: {
106
+ query: {
107
+ Version: "2025-04-30",
108
+ Action: "DescribeBackendServerGroups"
109
+ },
110
+ headers: {
111
+ "Content-Type": "application/x-www-form-urlencoded"
112
+ }
113
+ },
114
+ paramsType: {
115
+ Filter: "Filter",
116
+ BackendServerGroupId: "Filter",
117
+ MaxResults: "Int",
118
+ NextToken: "String"
119
+ }
120
+ },
121
+ ModifyBackendServerGroup: {
122
+ url: "/",
123
+ method: "GET",
124
+ config: {
125
+ query: {
126
+ Version: "2025-04-30",
127
+ Action: "ModifyBackendServerGroup"
128
+ },
129
+ headers: {
130
+ "Content-Type": "application/x-www-form-urlencoded"
131
+ }
132
+ },
133
+ paramsType: {
134
+ BackendServerGroupId: "String",
135
+ Name: "String",
136
+ UpstreamKeepalive: "String",
137
+ Method: "String",
138
+ SessionState: "String",
139
+ SessionPersistencePeriod: "Int",
140
+ CookieType: "String",
141
+ CookieName: "String",
142
+ HealthCheckState: "String",
143
+ Timeout: "Int",
144
+ Interval: "Int",
145
+ HealthyThreshold: "Int",
146
+ UnhealthyThreshold: "Int",
147
+ UrlPath: "String",
148
+ HostName: "String",
149
+ HealthCheckConnectPort: "Int",
150
+ HealthProtocol: "String",
151
+ SlowStartEnabled: "Boolean",
152
+ SlowStartDuration: "Int",
153
+ HttpMethod: "String",
154
+ HealthCode: "String",
155
+ HealthCheckReq: "String",
156
+ HealthCheckExp: "String"
157
+ }
158
+ },
159
+ DeleteBackendServerGroup: {
160
+ url: "/",
161
+ method: "GET",
162
+ config: {
163
+ query: {
164
+ Version: "2025-04-30",
165
+ Action: "DeleteBackendServerGroup"
166
+ },
167
+ headers: {
168
+ "Content-Type": "application/x-www-form-urlencoded"
169
+ }
170
+ },
171
+ paramsType: {
172
+ BackendServerGroupId: "String"
173
+ }
174
+ },
175
+ CreateBackendServerGroup: {
176
+ url: "/",
177
+ method: "GET",
178
+ config: {
179
+ query: {
180
+ Version: "2025-04-30",
181
+ Action: "CreateBackendServerGroup"
182
+ },
183
+ headers: {
184
+ "Content-Type": "application/x-www-form-urlencoded"
185
+ }
186
+ },
187
+ paramsType: {
188
+ VpcId: "String",
189
+ Name: "String",
190
+ BackendServerType: "String",
191
+ Method: "String",
192
+ SessionState: "String",
193
+ SessionPersistencePeriod: "Int",
194
+ CookieType: "String",
195
+ CookieName: "String",
196
+ UpstreamKeepalive: "String",
197
+ Protocol: "String",
198
+ HealthCheckState: "String",
199
+ Timeout: "Int",
200
+ Interval: "Int",
201
+ HealthyThreshold: "Int",
202
+ UnhealthyThreshold: "Int",
203
+ UrlPath: "String",
204
+ HostName: "String",
205
+ HealthCheckConnectPort: "Int",
206
+ HealthProtocol: "String",
207
+ SlowStartEnabled: "Boolean",
208
+ SlowStartDuration: "Int",
209
+ HttpMethod: "String",
210
+ HealthCheckReq: "String",
211
+ HealthCheckExp: "String",
212
+ HealthCode: "String"
213
+ }
214
+ },
215
+ DescribeListeners: {
216
+ url: "/",
217
+ method: "GET",
218
+ config: {
219
+ query: {
220
+ Version: "2025-04-30",
221
+ Action: "DescribeListeners"
222
+ },
223
+ headers: {
224
+ "Content-Type": "application/x-www-form-urlencoded"
225
+ }
226
+ },
227
+ paramsType: {
228
+ ListenerId: "Filter",
229
+ Filter: "Filter",
230
+ MaxResults: "Int",
231
+ NextToken: "String"
232
+ }
233
+ },
234
+ ModifyListener: {
235
+ url: "/",
236
+ method: "POST",
237
+ config: {
238
+ query: {
239
+ Version: "2025-04-30",
240
+ Action: "ModifyListener"
241
+ },
242
+ headers: {
243
+ "Content-Type": "application/json"
244
+ }
245
+ },
246
+ paramsType: {
247
+ ListenerId: "String",
248
+ ListenerName: "String",
249
+ ListenerState: "String",
250
+ CertificateId: "String",
251
+ TlsCipherPolicy: "String",
252
+ ListenerAclId: "String",
253
+ HttpProtocol: "String",
254
+ EnableHttp2: "Boolean",
255
+ CaEnabled: "Boolean",
256
+ CaCertificateId: "String",
257
+ EnableQuicUpgrade: "Boolean",
258
+ QuicListenerId: "String",
259
+ IdleTimeout: "Int",
260
+ ServerGroupId: "String"
261
+ }
262
+ },
263
+ DeleteListener: {
264
+ url: "/",
265
+ method: "GET",
266
+ config: {
267
+ query: {
268
+ Version: "2025-04-30",
269
+ Action: "DeleteListener"
270
+ },
271
+ headers: {
272
+ "Content-Type": "application/x-www-form-urlencoded"
273
+ }
274
+ },
275
+ paramsType: {
276
+ ListenerId: "String"
277
+ }
278
+ },
279
+ CreateListener: {
280
+ url: "/",
281
+ method: "POST",
282
+ config: {
283
+ query: {
284
+ Version: "2025-04-30",
285
+ Action: "CreateListener"
286
+ },
287
+ headers: {
288
+ "Content-Type": "application/json"
289
+ }
290
+ },
291
+ paramsType: {
292
+ LoadBalancerId: "String",
293
+ ListenerName: "String",
294
+ Protocol: "String",
295
+ Port: "Int",
296
+ CertificateId: "String",
297
+ TlsCipherPolicy: "String",
298
+ ListenerAclId: "String",
299
+ ListenerState: "String",
300
+ RedirectListenerId: "String",
301
+ RedirectHttpCode: "String",
302
+ EnableHttp2: "Boolean",
303
+ BackendServerGroupId: "String",
304
+ FixedResponseConfig: "Object",
305
+ RewriteConfig: "Object",
306
+ CaEnabled: "Boolean",
307
+ CaCertificateId: "String",
308
+ EnableQuicUpgrade: "Boolean",
309
+ QuicListenerId: "String",
310
+ IdleTimeout: "Int",
311
+ ServerGroupId: "String"
312
+ }
313
+ },
314
+ SetAccessLog: {
315
+ url: "/",
316
+ method: "GET",
317
+ config: {
318
+ query: {
319
+ Version: "2025-04-30",
320
+ Action: "SetAccessLog"
321
+ },
322
+ headers: {
323
+ "Content-Type": "application/x-www-form-urlencoded"
324
+ }
325
+ },
326
+ paramsType: {
327
+ LoadBalancerId: "String",
328
+ ProjectName: "String",
329
+ LogpoolName: "String"
330
+ }
331
+ },
332
+ SetEnableAccessLog: {
333
+ url: "/",
334
+ method: "GET",
335
+ config: {
336
+ query: {
337
+ Version: "2025-04-30",
338
+ Action: "SetEnableAccessLog"
339
+ },
340
+ headers: {
341
+ "Content-Type": "application/x-www-form-urlencoded"
342
+ }
343
+ },
344
+ paramsType: {
345
+ LoadBalancerId: "String",
346
+ EnabledLog: "Boolean"
347
+ }
348
+ },
349
+ SetLbProtocolLayers: {
350
+ url: "/",
351
+ method: "GET",
352
+ config: {
353
+ query: {
354
+ Version: "2025-04-30",
355
+ Action: "SetLbProtocolLayers"
356
+ },
357
+ headers: {
358
+ "Content-Type": "application/x-www-form-urlencoded"
359
+ }
360
+ },
361
+ paramsType: {
362
+ LoadBalancerId: "String",
363
+ ProtocolLayers: "String"
364
+ }
365
+ },
366
+ SetLoadBalancerStatus: {
367
+ url: "/",
368
+ method: "GET",
369
+ config: {
370
+ query: {
371
+ Version: "2025-04-30",
372
+ Action: "SetLoadBalancerStatus"
373
+ },
374
+ headers: {
375
+ "Content-Type": "application/x-www-form-urlencoded"
376
+ }
377
+ },
378
+ paramsType: {
379
+ LoadBalancerId: "String",
380
+ State: "String"
381
+ }
382
+ },
383
+ SetLoadBalancerName: {
384
+ url: "/",
385
+ method: "POST",
386
+ config: {
387
+ query: {
388
+ Version: "2025-04-30",
389
+ Action: "SetLoadBalancerName"
390
+ },
391
+ headers: {
392
+ "Content-Type": "application/x-www-form-urlencoded"
393
+ }
394
+ },
395
+ paramsType: {
396
+ LoadBalancerId: "String",
397
+ LoadBalancerName: "String"
398
+ }
399
+ },
400
+ DescribeLoadBalancers: {
401
+ url: "/",
402
+ method: "POST",
403
+ config: {
404
+ query: {
405
+ Version: "2025-04-30",
406
+ Action: "DescribeLoadBalancers"
407
+ },
408
+ headers: {
409
+ "Content-Type": "application/x-www-form-urlencoded"
410
+ }
411
+ },
412
+ paramsType: {
413
+ LoadBalancerId: "Filter",
414
+ Filter: "Filter",
415
+ IsContainTag: "Boolean",
416
+ TagKey: "Filter",
417
+ TagKV: "Filter",
418
+ ProjectId: "Filter",
419
+ MaxResults: "Int",
420
+ NextToken: "String"
421
+ }
422
+ },
423
+ DeleteLoadBalancer: {
424
+ url: "/",
425
+ method: "GET",
426
+ config: {
427
+ query: {
428
+ Version: "2025-04-30",
429
+ Action: "DeleteLoadBalancer"
430
+ },
431
+ headers: {
432
+ "Content-Type": "application/x-www-form-urlencoded"
433
+ }
434
+ },
435
+ paramsType: {
436
+ LoadBalancerId: "String"
437
+ }
438
+ },
439
+ CreateLoadBalancer: {
440
+ url: "/",
441
+ method: "GET",
442
+ config: {
443
+ query: {
444
+ Version: "2025-04-30",
445
+ Action: "CreateLoadBalancer"
446
+ },
447
+ headers: {
448
+ "Content-Type": "application/x-www-form-urlencoded"
449
+ }
450
+ },
451
+ paramsType: {
452
+ LoadBalancerName: "String",
453
+ LoadBalancerVersion: "String",
454
+ LoadBalancerType: "String",
455
+ VpcId: "String",
456
+ IpVersion: "String",
457
+ ProjectId: "String",
458
+ AllocationId: "String",
459
+ ChargeType: "String",
460
+ SubnetId: "String",
461
+ PrivateIpAddress: "String",
462
+ EnabledQuic: "Boolean",
463
+ EnableHpa: "Boolean",
464
+ ProtocolLayers: "String",
465
+ DeleteProtection: "String",
466
+ ModificationProtection: "String"
467
+ }
468
+ },
469
+ ModifyCertificateWithGroup: {
470
+ url: "/",
471
+ method: "GET",
472
+ config: {
473
+ query: {
474
+ Version: "2025-04-30",
475
+ Action: "ModifyCertificateWithGroup"
476
+ },
477
+ headers: {
478
+ "Content-Type": "application/x-www-form-urlencoded"
479
+ }
480
+ },
481
+ paramsType: {
482
+ ListenerCertGroupId: "String",
483
+ OldCertificateId: "String",
484
+ CertificateId: "String"
485
+ }
486
+ },
487
+ DissociateCertificateWithGroup: {
488
+ url: "/",
489
+ method: "GET",
490
+ config: {
491
+ query: {
492
+ Version: "2025-04-30",
493
+ Action: "DissociateCertificateWithGroup"
494
+ },
495
+ headers: {
496
+ "Content-Type": "application/x-www-form-urlencoded"
497
+ }
498
+ },
499
+ paramsType: {
500
+ ListenerCertGroupId: "String",
501
+ CertificateId: "String"
502
+ }
503
+ },
504
+ AssociateCertificateWithGroup: {
505
+ url: "/",
506
+ method: "GET",
507
+ config: {
508
+ query: {
509
+ Version: "2025-04-30",
510
+ Action: "AssociateCertificateWithGroup"
511
+ },
512
+ headers: {
513
+ "Content-Type": "application/x-www-form-urlencoded"
514
+ }
515
+ },
516
+ paramsType: {
517
+ ListenerCertGroupId: "String",
518
+ CertificateId: "String"
519
+ }
520
+ },
521
+ DescribeListenerCertGroups: {
522
+ url: "/",
523
+ method: "GET",
524
+ config: {
525
+ query: {
526
+ Version: "2025-04-30",
527
+ Action: "DescribeListenerCertGroups"
528
+ },
529
+ headers: {
530
+ "Content-Type": "application/x-www-form-urlencoded"
531
+ }
532
+ },
533
+ paramsType: {
534
+ ListenerCertGroupId: "Filter",
535
+ Filter: "Filter",
536
+ MaxResults: "Int",
537
+ NextToken: "String"
538
+ }
539
+ },
540
+ DeleteListenerCertGroup: {
541
+ url: "/",
542
+ method: "GET",
543
+ config: {
544
+ query: {
545
+ Version: "2025-04-30",
546
+ Action: "DeleteListenerCertGroup"
547
+ },
548
+ headers: {
549
+ "Content-Type": "application/x-www-form-urlencoded"
550
+ }
551
+ },
552
+ paramsType: {
553
+ ListenerCertGroupId: "String"
554
+ }
555
+ },
556
+ CreateListenerCertGroup: {
557
+ url: "/",
558
+ method: "GET",
559
+ config: {
560
+ query: {
561
+ Version: "2025-04-30",
562
+ Action: "CreateListenerCertGroup"
563
+ },
564
+ headers: {
565
+ "Content-Type": "application/x-www-form-urlencoded"
566
+ }
567
+ },
568
+ paramsType: {
569
+ ListenerId: "String"
570
+ }
571
+ },
572
+ AddRules: {
573
+ url: "/",
574
+ method: "POST",
575
+ config: {
576
+ query: {
577
+ Version: "2025-04-30",
578
+ Action: "AddRules"
579
+ },
580
+ headers: {
581
+ "Content-Type": "application/json"
582
+ }
583
+ },
584
+ paramsType: {
585
+ RuleGroupId: "String",
586
+ RuleType: "String",
587
+ RuleValue: "String",
588
+ MethodValue: "Array",
589
+ SourceIpValue: "Array",
590
+ HeaderValue: "Array",
591
+ QueryValue: "Array",
592
+ CookieValue: "Array"
593
+ }
594
+ },
595
+ DeleteRule: {
596
+ url: "/",
597
+ method: "GET",
598
+ config: {
599
+ query: {
600
+ Version: "2025-04-30",
601
+ Action: "DeleteRule"
602
+ },
603
+ headers: {
604
+ "Content-Type": "application/x-www-form-urlencoded"
605
+ }
606
+ },
607
+ paramsType: {
608
+ RuleGroupId: "String",
609
+ RuleType: "String",
610
+ RuleValue: "String"
611
+ }
612
+ },
613
+ AddRule: {
614
+ url: "/",
615
+ method: "GET",
616
+ config: {
617
+ query: {
618
+ Version: "2025-04-30",
619
+ Action: "AddRule"
620
+ },
621
+ headers: {
622
+ "Content-Type": "application/x-www-form-urlencoded"
623
+ }
624
+ },
625
+ paramsType: {
626
+ RuleGroupId: "String",
627
+ RuleType: "String",
628
+ RuleValue: "String"
629
+ }
630
+ },
631
+ ModifyRuleGroup: {
632
+ url: "/",
633
+ method: "POST",
634
+ config: {
635
+ query: {
636
+ Version: "2025-04-30",
637
+ Action: "ModifyRuleGroup"
638
+ },
639
+ headers: {
640
+ "Content-Type": "application/json"
641
+ }
642
+ },
643
+ paramsType: {
644
+ RuleGroupId: "String",
645
+ RuleGroupName: "String",
646
+ BackendServerGroupId: "String",
647
+ Type: "String",
648
+ RuleSet: "Array",
649
+ RedirectListenerId: "String",
650
+ RedirectHttpCode: "String",
651
+ FixedResponseConfig: "Object",
652
+ RewriteConfig: "Object"
653
+ }
654
+ },
655
+ DescribeRuleGroups: {
656
+ url: "/",
657
+ method: "GET",
658
+ config: {
659
+ query: {
660
+ Version: "2025-04-30",
661
+ Action: "DescribeRuleGroups"
662
+ },
663
+ headers: {
664
+ "Content-Type": "application/x-www-form-urlencoded"
665
+ }
666
+ },
667
+ paramsType: {
668
+ RuleGroupId: "Filter",
669
+ Filter: "Filter",
670
+ MaxResults: "Int",
671
+ NextToken: "String"
672
+ }
673
+ },
674
+ DeleteRuleGroup: {
675
+ url: "/",
676
+ method: "GET",
677
+ config: {
678
+ query: {
679
+ Version: "2025-04-30",
680
+ Action: "DeleteRuleGroup"
681
+ },
682
+ headers: {
683
+ "Content-Type": "application/x-www-form-urlencoded"
684
+ }
685
+ },
686
+ paramsType: {
687
+ RuleGroupId: "String"
688
+ }
689
+ },
690
+ CreateRuleGroup: {
691
+ url: "/",
692
+ method: "POST",
693
+ config: {
694
+ query: {
695
+ Version: "2025-04-30",
696
+ Action: "CreateRuleGroup"
697
+ },
698
+ headers: {
699
+ "Content-Type": "application/json"
700
+ }
701
+ },
702
+ paramsType: {
703
+ RuleGroupName: "String",
704
+ ListenerId: "String",
705
+ BackendServerGroupId: "String",
706
+ Type: "String",
707
+ RuleSet: "Array",
708
+ RedirectListenerId: "String",
709
+ RedirectHttpCode: "String",
710
+ FixedResponseConfig: "Object",
711
+ RewriteConfig: "Object"
712
+ }
713
+ },
714
+ SetLBModificationProtection: {
715
+ url: "/",
716
+ method: "GET",
717
+ config: {
718
+ query: {
719
+ Version: "2025-04-30",
720
+ Action: "SetLBModificationProtection"
721
+ },
722
+ headers: {
723
+ "Content-Type": "application/x-www-form-urlencoded"
724
+ }
725
+ },
726
+ paramsType: {
727
+ LoadBalancerId: "String",
728
+ ModificationProtection: "Boolean"
729
+ }
730
+ },
731
+ SetLBDeleteProtection: {
732
+ url: "/",
733
+ method: "GET",
734
+ config: {
735
+ query: {
736
+ Version: "2025-04-30",
737
+ Action: "SetLBDeleteProtection"
738
+ },
739
+ headers: {
740
+ "Content-Type": "application/x-www-form-urlencoded"
741
+ }
742
+ },
743
+ paramsType: {
744
+ LoadBalancerId: "String",
745
+ DeleteProtection: "Boolean"
746
+ }
747
+ }
748
+ });
749
+ }
750
+ };