ksyun-sdk-node 1.0.2 → 1.0.5

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.
@@ -0,0 +1,973 @@
1
+ "use strict";
2
+
3
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
4
+
5
+ const BaseClient = require("../../../base/BaseClient.js");
6
+
7
+ module.exports = class Client extends BaseClient {
8
+ constructor(...args) {
9
+ super(...args);
10
+
11
+ _defineProperty(this, "_baseConfig", {
12
+ 'protocol': 'http://',
13
+ 'endpoint': 'slb.api.ksyun.com',
14
+ 'config': {
15
+ 'timeout': 60,
16
+ //设置timeout
17
+ 'headers': {
18
+ 'Accept': 'application/json'
19
+ },
20
+ 'credentials': {
21
+ 'region': 'cn-shanghai-3',
22
+ 'service': 'slb'
23
+ }
24
+ }
25
+ });
26
+
27
+ _defineProperty(this, "_apiList", {
28
+ 'DescribeListeners': {
29
+ 'url': '/',
30
+ 'method': 'GET',
31
+ 'config': {
32
+ 'query': {
33
+ 'Version': '2016-03-04',
34
+ 'Action': 'DescribeListeners'
35
+ },
36
+ 'headers': {
37
+ 'Content-Type': 'application/x-www-form-urlencoded'
38
+ }
39
+ },
40
+ 'paramsType': {
41
+ 'ListenerId': 'Filter',
42
+ 'Filter': 'Filter',
43
+ 'MaxResults': 'Int',
44
+ 'NextToken': 'String'
45
+ }
46
+ },
47
+ 'ModifyListeners': {
48
+ 'url': '/',
49
+ 'method': 'GET',
50
+ 'config': {
51
+ 'query': {
52
+ 'Version': '2016-03-04',
53
+ 'Action': 'ModifyListeners'
54
+ },
55
+ 'headers': {
56
+ 'Content-Type': 'application/x-www-form-urlencoded'
57
+ }
58
+ },
59
+ 'paramsType': {
60
+ 'ListenerId': 'String',
61
+ 'ListenerName': 'String',
62
+ 'ListenerState': 'String',
63
+ 'Method': 'String',
64
+ 'BandWidthIn': 'Int',
65
+ 'BandWidthOut': 'Int',
66
+ 'HttpProtocol': 'String',
67
+ 'TlsCipherPolicy': 'String',
68
+ 'EnableHttp2': 'Boolean',
69
+ 'SessionState': 'String',
70
+ 'SessionPersistencePeriod': 'Int',
71
+ 'CookieType': 'String',
72
+ 'CookieName': 'String',
73
+ 'CertificateId': 'String'
74
+ }
75
+ },
76
+ 'CreateListeners': {
77
+ 'url': '/',
78
+ 'method': 'GET',
79
+ 'config': {
80
+ 'query': {
81
+ 'Version': '2016-03-04',
82
+ 'Action': 'CreateListeners'
83
+ },
84
+ 'headers': {
85
+ 'Content-Type': 'application/x-www-form-urlencoded'
86
+ }
87
+ },
88
+ 'paramsType': {
89
+ 'LoadBalancerId': 'String',
90
+ 'ListenerName': 'String',
91
+ 'ListenerState': 'String',
92
+ 'ListenerProtocol': 'String',
93
+ 'ListenerPort': 'Int',
94
+ 'Method': 'String',
95
+ 'BandWidthIn': 'Int',
96
+ 'BandWidthOut': 'Int',
97
+ 'LoadBalancerAclId': 'String',
98
+ 'HttpProtocol': 'String',
99
+ 'TlsCipherPolicy': 'String',
100
+ 'EnableHttp2': 'Boolean',
101
+ 'RedirectListenerId': 'String',
102
+ 'SessionState': 'String',
103
+ 'SessionPersistencePeriod': 'Int',
104
+ 'CookieType': 'String',
105
+ 'CookieName': 'String',
106
+ 'CertificateId': 'String'
107
+ }
108
+ },
109
+ 'ModifyInstancesWithListener': {
110
+ 'url': '/',
111
+ 'method': 'GET',
112
+ 'config': {
113
+ 'query': {
114
+ 'Version': '2016-03-04',
115
+ 'Action': 'ModifyInstancesWithListener'
116
+ },
117
+ 'headers': {
118
+ 'Content-Type': 'application/x-www-form-urlencoded'
119
+ }
120
+ },
121
+ 'paramsType': {
122
+ 'RegisterId': 'String',
123
+ 'Weight': 'Int',
124
+ 'RealServerPort': 'Int',
125
+ 'MasterSlaveType': 'String',
126
+ 'Tag': 'String'
127
+ }
128
+ },
129
+ 'RegisterInstancesWithListener': {
130
+ 'url': '/',
131
+ 'method': 'GET',
132
+ 'config': {
133
+ 'query': {
134
+ 'Version': '2016-03-04',
135
+ 'Action': 'RegisterInstancesWithListener'
136
+ },
137
+ 'headers': {
138
+ 'Content-Type': 'application/x-www-form-urlencoded'
139
+ }
140
+ },
141
+ 'paramsType': {
142
+ 'RealServerType': 'String',
143
+ 'ListenerId': 'String',
144
+ 'Weight': 'Int',
145
+ 'RealServerIp': 'String',
146
+ 'RealServerPort': 'Int',
147
+ 'InstanceId': 'String',
148
+ 'Tag': 'String',
149
+ 'MasterSlaveType': 'String'
150
+ }
151
+ },
152
+ 'DeregisterInstancesFromListener': {
153
+ 'url': '/',
154
+ 'method': 'GET',
155
+ 'config': {
156
+ 'query': {
157
+ 'Version': '2016-03-04',
158
+ 'Action': 'DeregisterInstancesFromListener'
159
+ },
160
+ 'headers': {
161
+ 'Content-Type': 'application/x-www-form-urlencoded'
162
+ }
163
+ },
164
+ 'paramsType': {
165
+ 'RegisterId': 'String'
166
+ }
167
+ },
168
+ 'DescribeInstancesWithListener': {
169
+ 'url': '/',
170
+ 'method': 'GET',
171
+ 'config': {
172
+ 'query': {
173
+ 'Version': '2016-03-04',
174
+ 'Action': 'DescribeInstancesWithListener'
175
+ },
176
+ 'headers': {
177
+ 'Content-Type': 'application/x-www-form-urlencoded'
178
+ }
179
+ },
180
+ 'paramsType': {
181
+ 'RegisterId': 'Filter',
182
+ 'Filter': 'Filter',
183
+ 'MaxResults': 'Int',
184
+ 'NextToken': 'String'
185
+ }
186
+ },
187
+ 'ModifyHealthCheck': {
188
+ 'url': '/',
189
+ 'method': 'GET',
190
+ 'config': {
191
+ 'query': {
192
+ 'Version': '2016-03-04',
193
+ 'Action': 'ModifyHealthCheck'
194
+ },
195
+ 'headers': {
196
+ 'Content-Type': 'application/x-www-form-urlencoded'
197
+ }
198
+ },
199
+ 'paramsType': {
200
+ 'HealthCheckId': 'String',
201
+ 'HealthCheckState': 'String',
202
+ 'HealthCheckConnectPort': 'Int',
203
+ 'HealthyThreshold': 'Int',
204
+ 'Interval': 'Int',
205
+ 'Timeout': 'Int',
206
+ 'UnhealthyThreshold': 'Int',
207
+ 'HttpMethod': 'String',
208
+ 'UrlPath': 'String',
209
+ 'HostName': 'String',
210
+ 'HealthCheckReq': 'String',
211
+ 'HealthCheckExp': 'String'
212
+ }
213
+ },
214
+ 'DescribeHealthChecks': {
215
+ 'url': '/',
216
+ 'method': 'GET',
217
+ 'config': {
218
+ 'query': {
219
+ 'Version': '2016-03-04',
220
+ 'Action': 'DescribeHealthChecks'
221
+ },
222
+ 'headers': {
223
+ 'Content-Type': 'application/x-www-form-urlencoded'
224
+ }
225
+ },
226
+ 'paramsType': {
227
+ 'HealthCheckId': 'Filter',
228
+ 'Filter': 'Filter',
229
+ 'Limit': 'Int',
230
+ 'Marker': 'String'
231
+ }
232
+ },
233
+ 'ConfigureHealthCheck': {
234
+ 'url': '/',
235
+ 'method': 'GET',
236
+ 'config': {
237
+ 'query': {
238
+ 'Version': '2016-03-04',
239
+ 'Action': 'ConfigureHealthCheck'
240
+ },
241
+ 'headers': {
242
+ 'Content-Type': 'application/x-www-form-urlencoded'
243
+ }
244
+ },
245
+ 'paramsType': {
246
+ 'ListenerId': 'String',
247
+ 'HealthCheckState': 'String',
248
+ 'HealthCheckConnectPort': 'Int',
249
+ 'HealthyThreshold': 'Int',
250
+ 'Interval': 'Int',
251
+ 'Timeout': 'Int',
252
+ 'UnhealthyThreshold': 'Int',
253
+ 'HttpMethod': 'String',
254
+ 'UrlPath': 'String',
255
+ 'HostName': 'String',
256
+ 'HealthCheckReq': 'String',
257
+ 'HealthCheckExp': 'String'
258
+ }
259
+ },
260
+ 'DescribeLoadBalancers': {
261
+ 'url': '/',
262
+ 'method': 'GET',
263
+ 'config': {
264
+ 'query': {
265
+ 'Version': '2016-03-04',
266
+ 'Action': 'DescribeLoadBalancers'
267
+ },
268
+ 'headers': {
269
+ 'Content-Type': 'application/x-www-form-urlencoded'
270
+ }
271
+ },
272
+ 'paramsType': {
273
+ 'ProjectId': 'Filter',
274
+ 'LoadBalancerId': 'Filter',
275
+ 'Filter': 'Filter',
276
+ 'MaxResults': 'Int',
277
+ 'NextToken': 'String',
278
+ 'State': 'String'
279
+ }
280
+ },
281
+ 'ModifyLoadBalancer': {
282
+ 'url': '/',
283
+ 'method': 'GET',
284
+ 'config': {
285
+ 'query': {
286
+ 'Version': '2016-03-04',
287
+ 'Action': 'ModifyLoadBalancer'
288
+ },
289
+ 'headers': {
290
+ 'Content-Type': 'application/x-www-form-urlencoded'
291
+ }
292
+ },
293
+ 'paramsType': {
294
+ 'LoadBalancerId': 'String',
295
+ 'LoadBalancerName': 'String',
296
+ 'LoadBalancerState': 'String'
297
+ }
298
+ },
299
+ 'CreateLoadBalancer': {
300
+ 'url': '/',
301
+ 'method': 'GET',
302
+ 'config': {
303
+ 'query': {
304
+ 'Version': '2016-03-04',
305
+ 'Action': 'CreateLoadBalancer'
306
+ },
307
+ 'headers': {
308
+ 'Content-Type': 'application/x-www-form-urlencoded'
309
+ }
310
+ },
311
+ 'paramsType': {
312
+ 'VpcId': 'String',
313
+ 'LoadBalancerName': 'String',
314
+ 'Type': 'String',
315
+ 'SubnetId': 'String',
316
+ 'PrivateIpAddress': 'String',
317
+ 'IpVersion': 'String',
318
+ 'LbType': 'String',
319
+ 'ProjectId': 'String'
320
+ }
321
+ },
322
+ 'CreateHostHeader': {
323
+ 'url': '/',
324
+ 'method': 'GET',
325
+ 'config': {
326
+ 'query': {
327
+ 'Version': '2016-03-04',
328
+ 'Action': 'CreateHostHeader'
329
+ },
330
+ 'headers': {
331
+ 'Content-Type': 'application/x-www-form-urlencoded'
332
+ }
333
+ },
334
+ 'paramsType': {
335
+ 'ListenerId': 'String',
336
+ 'CertificateId': 'String',
337
+ 'HostHeader': 'String'
338
+ }
339
+ },
340
+ 'ModifyHostHeader': {
341
+ 'url': '/',
342
+ 'method': 'GET',
343
+ 'config': {
344
+ 'query': {
345
+ 'Version': '2016-03-04',
346
+ 'Action': 'ModifyHostHeader'
347
+ },
348
+ 'headers': {
349
+ 'Content-Type': 'application/x-www-form-urlencoded'
350
+ }
351
+ },
352
+ 'paramsType': {
353
+ 'HostHeaderId': 'String',
354
+ 'CertificateId': 'String'
355
+ }
356
+ },
357
+ 'DeleteHostHeader': {
358
+ 'url': '/',
359
+ 'method': 'GET',
360
+ 'config': {
361
+ 'query': {
362
+ 'Version': '2016-03-04',
363
+ 'Action': 'DeleteHostHeader'
364
+ },
365
+ 'headers': {
366
+ 'Content-Type': 'application/x-www-form-urlencoded'
367
+ }
368
+ },
369
+ 'paramsType': {
370
+ 'HostHeaderId': 'String'
371
+ }
372
+ },
373
+ 'DescribeHostHeaders': {
374
+ 'url': '/',
375
+ 'method': 'GET',
376
+ 'config': {
377
+ 'query': {
378
+ 'Version': '2016-03-04',
379
+ 'Action': 'DescribeHostHeaders'
380
+ },
381
+ 'headers': {
382
+ 'Content-Type': 'application/x-www-form-urlencoded'
383
+ }
384
+ },
385
+ 'paramsType': {
386
+ 'HostHeaderId': 'Filter',
387
+ 'Filter': 'Filter',
388
+ 'MaxResults': 'Int',
389
+ 'NextToken': 'String'
390
+ }
391
+ },
392
+ 'DeleteRule': {
393
+ 'url': '/',
394
+ 'method': 'GET',
395
+ 'config': {
396
+ 'query': {
397
+ 'Version': '2016-03-04',
398
+ 'Action': 'DeleteRule'
399
+ },
400
+ 'headers': {
401
+ 'Content-Type': 'application/x-www-form-urlencoded'
402
+ }
403
+ },
404
+ 'paramsType': {
405
+ 'RuleId': 'String'
406
+ }
407
+ },
408
+ 'DescribeRules': {
409
+ 'url': '/',
410
+ 'method': 'GET',
411
+ 'config': {
412
+ 'query': {
413
+ 'Version': '2016-03-04',
414
+ 'Action': 'DescribeRules'
415
+ },
416
+ 'headers': {
417
+ 'Content-Type': 'application/x-www-form-urlencoded'
418
+ }
419
+ },
420
+ 'paramsType': {
421
+ 'RuleId': 'Filter',
422
+ 'Filter': 'Filter',
423
+ 'MaxResults': 'Int',
424
+ 'NextToken': 'String'
425
+ }
426
+ },
427
+ 'CreateBackendServerGroup': {
428
+ 'url': '/',
429
+ 'method': 'GET',
430
+ 'config': {
431
+ 'query': {
432
+ 'Version': '2016-03-04',
433
+ 'Action': 'CreateBackendServerGroup'
434
+ },
435
+ 'headers': {
436
+ 'Content-Type': 'application/x-www-form-urlencoded'
437
+ }
438
+ },
439
+ 'paramsType': {
440
+ 'VpcId': 'String',
441
+ 'BackendServerGroupName': 'String',
442
+ 'BackendServerGroupType': 'String',
443
+ 'HostName': 'String',
444
+ 'HealthCheckState': 'String',
445
+ 'HealthyThreshold': 'Int',
446
+ 'Interval': 'Int',
447
+ 'Timeout': 'Int',
448
+ 'UnhealthyThreshold': 'Int',
449
+ 'UrlPath': 'String',
450
+ 'Region': 'String'
451
+ }
452
+ },
453
+ 'DeleteBackendServerGroup': {
454
+ 'url': '/',
455
+ 'method': 'GET',
456
+ 'config': {
457
+ 'query': {
458
+ 'Version': '2016-03-04',
459
+ 'Action': 'DeleteBackendServerGroup'
460
+ },
461
+ 'headers': {
462
+ 'Content-Type': 'application/x-www-form-urlencoded'
463
+ }
464
+ },
465
+ 'paramsType': {
466
+ 'BackendServerGroupId': 'String'
467
+ }
468
+ },
469
+ 'ModifyBackendServerGroup': {
470
+ 'url': '/',
471
+ 'method': 'GET',
472
+ 'config': {
473
+ 'query': {
474
+ 'Version': '2016-03-04',
475
+ 'Action': 'ModifyBackendServerGroup'
476
+ },
477
+ 'headers': {
478
+ 'Content-Type': 'application/x-www-form-urlencoded'
479
+ }
480
+ },
481
+ 'paramsType': {
482
+ 'BackendServerGroupId': 'String',
483
+ 'BackendServerGroupName': 'String'
484
+ }
485
+ },
486
+ 'DescribeBackendServerGroups': {
487
+ 'url': '/',
488
+ 'method': 'GET',
489
+ 'config': {
490
+ 'query': {
491
+ 'Version': '2016-03-04',
492
+ 'Action': 'DescribeBackendServerGroups'
493
+ },
494
+ 'headers': {
495
+ 'Content-Type': 'application/x-www-form-urlencoded'
496
+ }
497
+ },
498
+ 'paramsType': {
499
+ 'BackendServerGroupId': 'Filter',
500
+ 'Filter': 'Filter',
501
+ 'MaxResults': 'Int',
502
+ 'NextToken': 'String'
503
+ }
504
+ },
505
+ 'RegisterBackendServer': {
506
+ 'url': '/',
507
+ 'method': 'GET',
508
+ 'config': {
509
+ 'query': {
510
+ 'Version': '2016-03-04',
511
+ 'Action': 'RegisterBackendServer'
512
+ },
513
+ 'headers': {
514
+ 'Content-Type': 'application/x-www-form-urlencoded'
515
+ }
516
+ },
517
+ 'paramsType': {
518
+ 'BackendServerGroupId': 'String',
519
+ 'BackendServerIp': 'String',
520
+ 'BackendServerPort': 'Int',
521
+ 'Weight': 'Int'
522
+ }
523
+ },
524
+ 'DeregisterBackendServer': {
525
+ 'url': '/',
526
+ 'method': 'GET',
527
+ 'config': {
528
+ 'query': {
529
+ 'Version': '2016-03-04',
530
+ 'Action': 'DeregisterBackendServer'
531
+ },
532
+ 'headers': {
533
+ 'Content-Type': 'application/x-www-form-urlencoded'
534
+ }
535
+ },
536
+ 'paramsType': {
537
+ 'RegisterId': 'String'
538
+ }
539
+ },
540
+ 'DescribeBackendServers': {
541
+ 'url': '/',
542
+ 'method': 'GET',
543
+ 'config': {
544
+ 'query': {
545
+ 'Version': '2016-03-04',
546
+ 'Action': 'DescribeBackendServers'
547
+ },
548
+ 'headers': {
549
+ 'Content-Type': 'application/x-www-form-urlencoded'
550
+ }
551
+ },
552
+ 'paramsType': {
553
+ 'RegisterId': 'Filter',
554
+ 'Filter': 'Filter',
555
+ 'MaxResults': 'Int',
556
+ 'NextToken': 'String'
557
+ }
558
+ },
559
+ 'CreateLoadBalancerAcl': {
560
+ 'url': '/',
561
+ 'method': 'GET',
562
+ 'config': {
563
+ 'query': {
564
+ 'Version': '2016-03-04',
565
+ 'Action': 'CreateLoadBalancerAcl'
566
+ },
567
+ 'headers': {
568
+ 'Content-Type': 'application/x-www-form-urlencoded'
569
+ }
570
+ },
571
+ 'paramsType': {
572
+ 'LoadBalancerAclName': 'String',
573
+ 'IpVersion': 'String'
574
+ }
575
+ },
576
+ 'DeleteLoadBalancerAcl': {
577
+ 'url': '/',
578
+ 'method': 'GET',
579
+ 'config': {
580
+ 'query': {
581
+ 'Version': '2016-03-04',
582
+ 'Action': 'DeleteLoadBalancerAcl'
583
+ },
584
+ 'headers': {
585
+ 'Content-Type': 'application/x-www-form-urlencoded'
586
+ }
587
+ },
588
+ 'paramsType': {
589
+ 'LoadBalancerAclId': 'String'
590
+ }
591
+ },
592
+ 'ModifyLoadBalancerAcl': {
593
+ 'url': '/',
594
+ 'method': 'GET',
595
+ 'config': {
596
+ 'query': {
597
+ 'Version': '2016-03-04',
598
+ 'Action': 'ModifyLoadBalancerAcl'
599
+ },
600
+ 'headers': {
601
+ 'Content-Type': 'application/x-www-form-urlencoded'
602
+ }
603
+ },
604
+ 'paramsType': {
605
+ 'LoadBalancerAclId': 'String',
606
+ 'LoadBalancerAclName': 'String'
607
+ }
608
+ },
609
+ 'CreateLoadBalancerAclEntry': {
610
+ 'url': '/',
611
+ 'method': 'GET',
612
+ 'config': {
613
+ 'query': {
614
+ 'Version': '2016-03-04',
615
+ 'Action': 'CreateLoadBalancerAclEntry'
616
+ },
617
+ 'headers': {
618
+ 'Content-Type': 'application/x-www-form-urlencoded'
619
+ }
620
+ },
621
+ 'paramsType': {
622
+ 'LoadBalancerAclId': 'String',
623
+ 'CidrBlock': 'String',
624
+ 'RuleNumber': 'Int',
625
+ 'RuleAction': 'String',
626
+ 'Protocol': 'String',
627
+ 'Description': 'String'
628
+ }
629
+ },
630
+ 'DeleteLoadBalancerAclEntry': {
631
+ 'url': '/',
632
+ 'method': 'GET',
633
+ 'config': {
634
+ 'query': {
635
+ 'Version': '2016-03-04',
636
+ 'Action': 'DeleteLoadBalancerAclEntry'
637
+ },
638
+ 'headers': {
639
+ 'Content-Type': 'application/x-www-form-urlencoded'
640
+ }
641
+ },
642
+ 'paramsType': {
643
+ 'LoadBalancerAclEntryId': 'String'
644
+ }
645
+ },
646
+ 'AssociateLoadBalancerAcl': {
647
+ 'url': '/',
648
+ 'method': 'GET',
649
+ 'config': {
650
+ 'query': {
651
+ 'Version': '2016-03-04',
652
+ 'Action': 'AssociateLoadBalancerAcl'
653
+ },
654
+ 'headers': {
655
+ 'Content-Type': 'application/x-www-form-urlencoded'
656
+ }
657
+ },
658
+ 'paramsType': {
659
+ 'LoadBalancerAclId': 'String',
660
+ 'ListenerId': 'String'
661
+ }
662
+ },
663
+ 'DisassociateLoadBalancerAcl': {
664
+ 'url': '/',
665
+ 'method': 'GET',
666
+ 'config': {
667
+ 'query': {
668
+ 'Version': '2016-03-04',
669
+ 'Action': 'DisassociateLoadBalancerAcl'
670
+ },
671
+ 'headers': {
672
+ 'Content-Type': 'application/x-www-form-urlencoded'
673
+ }
674
+ },
675
+ 'paramsType': {
676
+ 'ListenerId': 'String'
677
+ }
678
+ },
679
+ 'DescribeLoadBalancerAcls': {
680
+ 'url': '/',
681
+ 'method': 'GET',
682
+ 'config': {
683
+ 'query': {
684
+ 'Version': '2016-03-04',
685
+ 'Action': 'DescribeLoadBalancerAcls'
686
+ },
687
+ 'headers': {
688
+ 'Content-Type': 'application/x-www-form-urlencoded'
689
+ }
690
+ },
691
+ 'paramsType': {
692
+ 'LoadBalancerAclId': 'Filter',
693
+ 'MaxResults': 'Int',
694
+ 'NextToken': 'String'
695
+ }
696
+ },
697
+ 'CreateSlbRule': {
698
+ 'url': '/',
699
+ 'method': 'GET',
700
+ 'config': {
701
+ 'query': {
702
+ 'Version': '2016-03-04',
703
+ 'Action': 'CreateSlbRule'
704
+ },
705
+ 'headers': {
706
+ 'Content-Type': 'application/x-www-form-urlencoded'
707
+ }
708
+ },
709
+ 'paramsType': {
710
+ 'Path': 'String',
711
+ 'HostHeaderId': 'String',
712
+ 'BackendServerGroupId': 'String',
713
+ 'ListenerSync': 'String',
714
+ 'Method': 'String',
715
+ 'SessionState': 'String',
716
+ 'SessionPersistencePeriod': 'Int',
717
+ 'cookieType': 'String',
718
+ 'CookieName': 'String',
719
+ 'HealthCheckState': 'String',
720
+ 'HealthyThreshold': 'String',
721
+ 'Interval': 'Int',
722
+ 'Timeout': 'Int',
723
+ 'UnhealthyThreshold': 'Int',
724
+ 'UrlPath': 'String',
725
+ 'HostName': 'String'
726
+ }
727
+ },
728
+ 'ModifySlbRule': {
729
+ 'url': '/',
730
+ 'method': 'GET',
731
+ 'config': {
732
+ 'query': {
733
+ 'Version': '2016-03-04',
734
+ 'Action': 'ModifySlbRule'
735
+ },
736
+ 'headers': {
737
+ 'Content-Type': 'application/x-www-form-urlencoded'
738
+ }
739
+ },
740
+ 'paramsType': {
741
+ 'Path': 'String',
742
+ 'RuleId': 'String',
743
+ 'BackendServerGroupId': 'String',
744
+ 'ListenerSync': 'String',
745
+ 'Method': 'String',
746
+ 'SessionState': 'String',
747
+ 'SessionPersistencePeriod': 'Int',
748
+ 'cookieType': 'String',
749
+ 'CookieName': 'String',
750
+ 'HealthCheckState': 'String',
751
+ 'HealthyThreshold': 'String',
752
+ 'Interval': 'Int',
753
+ 'Timeout': 'Int',
754
+ 'UnhealthyThreshold': 'Int',
755
+ 'UrlPath': 'String',
756
+ 'HostName': 'String'
757
+ }
758
+ },
759
+ 'CreatePrivateLinkServer': {
760
+ 'url': '/',
761
+ 'method': 'GET',
762
+ 'config': {
763
+ 'query': {
764
+ 'Version': '2016-03-04',
765
+ 'Action': 'CreatePrivateLinkServer'
766
+ },
767
+ 'headers': {
768
+ 'Content-Type': 'application/x-www-form-urlencoded'
769
+ }
770
+ },
771
+ 'paramsType': {
772
+ 'PrivateLinkServerName': 'String',
773
+ 'ListenerId': 'String',
774
+ 'Description': 'String',
775
+ 'ProjectId': 'String'
776
+ }
777
+ },
778
+ 'DescribePrivateLinkServer': {
779
+ 'url': '/',
780
+ 'method': 'GET',
781
+ 'config': {
782
+ 'query': {
783
+ 'Version': '2016-03-04',
784
+ 'Action': 'DescribePrivateLinkServer'
785
+ },
786
+ 'headers': {
787
+ 'Content-Type': 'application/x-www-form-urlencoded'
788
+ }
789
+ },
790
+ 'paramsType': {
791
+ 'PrivateLinkServerId': 'Filter',
792
+ 'ProjectId': 'Filter',
793
+ 'MaxResults': 'Int',
794
+ 'NextToken': 'String'
795
+ }
796
+ },
797
+ 'DeletePrivateLinkServer': {
798
+ 'url': '/',
799
+ 'method': 'GET',
800
+ 'config': {
801
+ 'query': {
802
+ 'Version': '2016-03-04',
803
+ 'Action': 'DeletePrivateLinkServer'
804
+ },
805
+ 'headers': {
806
+ 'Content-Type': 'application/x-www-form-urlencoded'
807
+ }
808
+ },
809
+ 'paramsType': {
810
+ 'PrivateLinkServerId': 'String'
811
+ }
812
+ },
813
+ 'ModifyPrivateLinkServer': {
814
+ 'url': '/',
815
+ 'method': 'GET',
816
+ 'config': {
817
+ 'query': {
818
+ 'Version': '2016-03-04',
819
+ 'Action': 'ModifyPrivateLinkServer'
820
+ },
821
+ 'headers': {
822
+ 'Content-Type': 'application/x-www-form-urlencoded'
823
+ }
824
+ },
825
+ 'paramsType': {
826
+ 'PrivateLinkServerId': 'String',
827
+ 'PrivateLinkServerName': 'String',
828
+ 'Description': 'String'
829
+ }
830
+ },
831
+ 'AssociatePrivateLinkServer': {
832
+ 'url': '/',
833
+ 'method': 'GET',
834
+ 'config': {
835
+ 'query': {
836
+ 'Version': '2016-03-04',
837
+ 'Action': 'AssociatePrivateLinkServer'
838
+ },
839
+ 'headers': {
840
+ 'Content-Type': 'application/x-www-form-urlencoded'
841
+ }
842
+ },
843
+ 'paramsType': {
844
+ 'PrivateLinkServerId': 'String',
845
+ 'LoadBalancerId': 'String',
846
+ 'ListenerPort': 'Int',
847
+ 'ProjectId': 'String'
848
+ }
849
+ },
850
+ 'DescribePrivateLink': {
851
+ 'url': '/',
852
+ 'method': 'GET',
853
+ 'config': {
854
+ 'query': {
855
+ 'Version': '2016-03-04',
856
+ 'Action': 'DescribePrivateLink'
857
+ },
858
+ 'headers': {
859
+ 'Content-Type': 'application/x-www-form-urlencoded'
860
+ }
861
+ },
862
+ 'paramsType': {
863
+ 'PrivateLinkId': 'Filter',
864
+ 'ProjectId': 'Filter',
865
+ 'MaxResults': 'Int',
866
+ 'NextToken': 'String'
867
+ }
868
+ },
869
+ 'DeletePrivateLink': {
870
+ 'url': '/',
871
+ 'method': 'GET',
872
+ 'config': {
873
+ 'query': {
874
+ 'Version': '2016-03-04',
875
+ 'Action': 'DeletePrivateLink'
876
+ },
877
+ 'headers': {
878
+ 'Content-Type': 'application/x-www-form-urlencoded'
879
+ }
880
+ },
881
+ 'paramsType': {
882
+ 'PrivateLinkId': 'String'
883
+ }
884
+ },
885
+ 'ModifyLoadBalancerAclEntry': {
886
+ 'url': '/',
887
+ 'method': 'GET',
888
+ 'config': {
889
+ 'query': {
890
+ 'Version': '2016-03-04',
891
+ 'Action': 'ModifyLoadBalancerAclEntry'
892
+ },
893
+ 'headers': {
894
+ 'Content-Type': 'application/x-www-form-urlencoded'
895
+ }
896
+ },
897
+ 'paramsType': {
898
+ 'LoadBalancerAclEntryId': 'String',
899
+ 'RuleNumber': 'Int',
900
+ 'RuleAction': 'String',
901
+ 'Description': 'String'
902
+ }
903
+ },
904
+ 'AcceptPrivateLink': {
905
+ 'url': '/',
906
+ 'method': 'GET',
907
+ 'config': {
908
+ 'query': {
909
+ 'Version': '2016-03-04',
910
+ 'Action': 'AcceptPrivateLink'
911
+ },
912
+ 'headers': {
913
+ 'Content-Type': 'application/x-www-form-urlencoded'
914
+ }
915
+ },
916
+ 'paramsType': {
917
+ 'PrivateLinkId': 'String'
918
+ }
919
+ },
920
+ 'RejectPrivateLink': {
921
+ 'url': '/',
922
+ 'method': 'GET',
923
+ 'config': {
924
+ 'query': {
925
+ 'Version': '2016-03-04',
926
+ 'Action': 'RejectPrivateLink'
927
+ },
928
+ 'headers': {
929
+ 'Content-Type': 'application/x-www-form-urlencoded'
930
+ }
931
+ },
932
+ 'paramsType': {
933
+ 'PrivateLinkId': 'String'
934
+ }
935
+ },
936
+ 'ListPrivateLinkServer': {
937
+ 'url': '/',
938
+ 'method': 'GET',
939
+ 'config': {
940
+ 'query': {
941
+ 'Version': '2016-03-04',
942
+ 'Action': 'ListPrivateLinkServer'
943
+ },
944
+ 'headers': {
945
+ 'Content-Type': 'application/x-www-form-urlencoded'
946
+ }
947
+ },
948
+ 'paramsType': {
949
+ 'PrivateLinkServerId': 'String',
950
+ 'Filter': 'Filter'
951
+ }
952
+ },
953
+ 'RemovePrivateLink': {
954
+ 'url': '/',
955
+ 'method': 'GET',
956
+ 'config': {
957
+ 'query': {
958
+ 'Version': '2016-03-04',
959
+ 'Action': 'RemovePrivateLink'
960
+ },
961
+ 'headers': {
962
+ 'Content-Type': 'application/x-www-form-urlencoded'
963
+ }
964
+ },
965
+ 'paramsType': {
966
+ 'PrivateLinkServerId': 'String',
967
+ 'PrivateLinkId': 'String'
968
+ }
969
+ }
970
+ });
971
+ }
972
+
973
+ };