GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Test Failed
Push — master ( 6fe473...1fca16 )
by
unknown
10:06
created

DeleteRules   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
eloc 5
c 1
b 0
f 0
dl 0
loc 16
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A withRuleIds() 0 8 2
1
<?php
2
3
namespace AlibabaCloud\Alb\V20200616;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method AddEntriesToAcl addEntriesToAcl(array $options = [])
9
 * @method AddServersToServerGroup addServersToServerGroup(array $options = [])
10
 * @method AssociateAclsWithListener associateAclsWithListener(array $options = [])
11
 * @method AssociateAdditionalCertificatesWithListener associateAdditionalCertificatesWithListener(array $options = [])
12
 * @method CreateAcl createAcl(array $options = [])
13
 * @method CreateHealthCheckTemplate createHealthCheckTemplate(array $options = [])
14
 * @method CreateListener createListener(array $options = [])
15
 * @method CreateLoadBalancer createLoadBalancer(array $options = [])
16
 * @method CreateRule createRule(array $options = [])
17
 * @method CreateRules createRules(array $options = [])
18
 * @method CreateSecurityPolicy createSecurityPolicy(array $options = [])
19
 * @method CreateServerGroup createServerGroup(array $options = [])
20
 * @method DeleteAcl deleteAcl(array $options = [])
21
 * @method DeleteHealthCheckTemplates deleteHealthCheckTemplates(array $options = [])
22
 * @method DeleteListener deleteListener(array $options = [])
23
 * @method DeleteLoadBalancer deleteLoadBalancer(array $options = [])
24
 * @method DeleteRule deleteRule(array $options = [])
25
 * @method DeleteRules deleteRules(array $options = [])
26
 * @method DeleteSecurityPolicy deleteSecurityPolicy(array $options = [])
27
 * @method DeleteServerGroup deleteServerGroup(array $options = [])
28
 * @method DescribeRegions describeRegions(array $options = [])
29
 * @method DescribeZones describeZones(array $options = [])
30
 * @method DisableDeletionProtection disableDeletionProtection(array $options = [])
31
 * @method DisableLoadBalancerAccessLog disableLoadBalancerAccessLog(array $options = [])
32
 * @method DissociateAclsFromListener dissociateAclsFromListener(array $options = [])
33
 * @method DissociateAdditionalCertificatesFromListener dissociateAdditionalCertificatesFromListener(array $options = [])
34
 * @method EnableDeletionProtection enableDeletionProtection(array $options = [])
35
 * @method EnableLoadBalancerAccessLog enableLoadBalancerAccessLog(array $options = [])
36
 * @method GetHealthCheckTemplateAttribute getHealthCheckTemplateAttribute(array $options = [])
37
 * @method GetListenerAttribute getListenerAttribute(array $options = [])
38
 * @method GetLoadBalancerAttribute getLoadBalancerAttribute(array $options = [])
39
 * @method ListAclEntries listAclEntries(array $options = [])
40
 * @method ListAclRelations listAclRelations(array $options = [])
41
 * @method ListAcls listAcls(array $options = [])
42
 * @method ListAsynJobs listAsynJobs(array $options = [])
43
 * @method ListHealthCheckTemplates listHealthCheckTemplates(array $options = [])
44
 * @method ListListenerCertificates listListenerCertificates(array $options = [])
45
 * @method ListListeners listListeners(array $options = [])
46
 * @method ListLoadBalancers listLoadBalancers(array $options = [])
47
 * @method ListRules listRules(array $options = [])
48
 * @method ListSecurityPolicies listSecurityPolicies(array $options = [])
49
 * @method ListSecurityPolicyRelations listSecurityPolicyRelations(array $options = [])
50
 * @method ListServerGroups listServerGroups(array $options = [])
51
 * @method ListServerGroupServers listServerGroupServers(array $options = [])
52
 * @method ListSystemSecurityPolicies listSystemSecurityPolicies(array $options = [])
53
 * @method ListTagKeys listTagKeys(array $options = [])
54
 * @method ListTagResources listTagResources(array $options = [])
55
 * @method ListTagValues listTagValues(array $options = [])
56
 * @method MoveResourceGroup moveResourceGroup(array $options = [])
57
 * @method RemoveEntriesFromAcl removeEntriesFromAcl(array $options = [])
58
 * @method RemoveServersFromServerGroup removeServersFromServerGroup(array $options = [])
59
 * @method ReplaceServersInServerGroup replaceServersInServerGroup(array $options = [])
60
 * @method StartListener startListener(array $options = [])
61
 * @method StopListener stopListener(array $options = [])
62
 * @method TagResources tagResources(array $options = [])
63
 * @method UnTagResources unTagResources(array $options = [])
64
 * @method UpdateAclAttribute updateAclAttribute(array $options = [])
65
 * @method UpdateHealthCheckTemplateAttribute updateHealthCheckTemplateAttribute(array $options = [])
66
 * @method UpdateListenerAttribute updateListenerAttribute(array $options = [])
67
 * @method UpdateListenerLogConfig updateListenerLogConfig(array $options = [])
68
 * @method UpdateLoadBalancerAttribute updateLoadBalancerAttribute(array $options = [])
69
 * @method UpdateLoadBalancerEdition updateLoadBalancerEdition(array $options = [])
70
 * @method UpdateRuleAttribute updateRuleAttribute(array $options = [])
71
 * @method UpdateRulesAttribute updateRulesAttribute(array $options = [])
72
 * @method UpdateSecurityPolicyAttribute updateSecurityPolicyAttribute(array $options = [])
73
 * @method UpdateServerGroupAttribute updateServerGroupAttribute(array $options = [])
74
 * @method UpdateServerGroupServersAttribute updateServerGroupServersAttribute(array $options = [])
75
 */
76
class AlbApiResolver extends ApiResolver
77
{
78
}
79
80
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
81
{
82
    /** @var string */
83
    public $product = 'Alb';
84
85
    /** @var string */
86
    public $version = '2020-06-16';
87
88
    /** @var string */
89
    public $method = 'POST';
90
91
    /** @var string */
92
    public $serviceCode = 'alb';
93
}
94
95
/**
96
 * @method string getClientToken()
97
 * @method $this withClientToken($value)
98
 * @method string getAclId()
99
 * @method $this withAclId($value)
100
 * @method string getDryRun()
101
 * @method $this withDryRun($value)
102
 * @method string getAclEntries()
103
 * @method $this withAclEntries($value)
104
 */
105
class AddEntriesToAcl extends Rpc
106
{
107
}
108
109
/**
110
 * @method string getClientToken()
111
 * @method $this withClientToken($value)
112
 * @method string getServerGroupId()
113
 * @method $this withServerGroupId($value)
114
 * @method string getServers()
115
 * @method $this withServers($value)
116
 * @method string getDryRun()
117
 * @method $this withDryRun($value)
118
 */
119
class AddServersToServerGroup extends Rpc
120
{
121
}
122
123
/**
124
 * @method string getClientToken()
125
 * @method $this withClientToken($value)
126
 * @method string getAclIds()
127
 * @method $this withAclIds($value)
128
 * @method string getAclType()
129
 * @method $this withAclType($value)
130
 * @method string getListenerId()
131
 * @method $this withListenerId($value)
132
 * @method string getDryRun()
133
 * @method $this withDryRun($value)
134
 */
135
class AssociateAclsWithListener extends Rpc
136
{
137
}
138
139
/**
140
 * @method string getClientToken()
141
 * @method $this withClientToken($value)
142
 * @method string getListenerId()
143
 * @method $this withListenerId($value)
144
 * @method string getDryRun()
145
 * @method $this withDryRun($value)
146
 * @method string getCertificates()
147
 * @method $this withCertificates($value)
148
 */
149
class AssociateAdditionalCertificatesWithListener extends Rpc
150
{
151
}
152
153
/**
154
 * @method string getAclName()
155
 * @method $this withAclName($value)
156
 * @method string getClientToken()
157
 * @method $this withClientToken($value)
158
 * @method string getAddressIpVersion()
159
 * @method $this withAddressIpVersion($value)
160
 * @method string getResourceGroupId()
161
 * @method $this withResourceGroupId($value)
162
 * @method string getDryRun()
163
 * @method $this withDryRun($value)
164
 */
165
class CreateAcl extends Rpc
166
{
167
}
168
169
/**
170
 * @method string getHealthCheckTimeout()
171
 * @method $this withHealthCheckTimeout($value)
172
 * @method string getClientToken()
173
 * @method $this withClientToken($value)
174
 * @method string getHealthCheckProtocol()
175
 * @method $this withHealthCheckProtocol($value)
176
 * @method string getUnhealthyThreshold()
177
 * @method $this withUnhealthyThreshold($value)
178
 * @method string getHealthyThreshold()
179
 * @method $this withHealthyThreshold($value)
180
 * @method string getHealthCheckTcpFastCloseEnabled()
181
 * @method $this withHealthCheckTcpFastCloseEnabled($value)
182
 * @method string getHealthCheckPath()
183
 * @method $this withHealthCheckPath($value)
184
 * @method string getHealthCheckCodes()
185
 * @method $this withHealthCheckCodes($value)
186
 * @method string getDryRun()
187
 * @method $this withDryRun($value)
188
 * @method string getHealthCheckMethod()
189
 * @method $this withHealthCheckMethod($value)
190
 * @method string getHealthCheckHost()
191
 * @method $this withHealthCheckHost($value)
192
 * @method string getHealthCheckInterval()
193
 * @method $this withHealthCheckInterval($value)
194
 * @method string getHealthCheckTemplateName()
195
 * @method $this withHealthCheckTemplateName($value)
196
 * @method string getHealthCheckHttpCodes()
197
 * @method $this withHealthCheckHttpCodes($value)
198
 * @method string getHealthCheckHttpVersion()
199
 * @method $this withHealthCheckHttpVersion($value)
200
 * @method string getHealthCheckConnectPort()
201
 * @method $this withHealthCheckConnectPort($value)
202
 */
203
class CreateHealthCheckTemplate extends Rpc
204
{
205
}
206
207
/**
208
 * @method string getClientToken()
209
 * @method $this withClientToken($value)
210
 * @method string getGzipEnabled()
211
 * @method $this withGzipEnabled($value)
212
 * @method string getQuicConfig()
213
 * @method $this withQuicConfig($value)
214
 * @method string getHttp2Enabled()
215
 * @method $this withHttp2Enabled($value)
216
 * @method string getDefaultActions()
217
 * @method $this withDefaultActions($value)
218
 * @method string getListenerPort()
219
 * @method $this withListenerPort($value)
220
 * @method string getDryRun()
221
 * @method $this withDryRun($value)
222
 * @method string getRequestTimeout()
223
 * @method $this withRequestTimeout($value)
224
 * @method string getCaCertificates()
225
 * @method $this withCaCertificates($value)
226
 * @method string getXForwardedForConfig()
227
 * @method $this withXForwardedForConfig($value)
228
 * @method string getListenerProtocol()
229
 * @method $this withListenerProtocol($value)
230
 * @method string getSecurityPolicyId()
231
 * @method $this withSecurityPolicyId($value)
232
 * @method string getIdleTimeout()
233
 * @method $this withIdleTimeout($value)
234
 * @method string getLoadBalancerId()
235
 * @method $this withLoadBalancerId($value)
236
 * @method string getCertificates()
237
 * @method $this withCertificates($value)
238
 * @method string getListenerDescription()
239
 * @method $this withListenerDescription($value)
240
 * @method string getCaEnabled()
241
 * @method $this withCaEnabled($value)
242
 */
243
class CreateListener extends Rpc
244
{
245
}
246
247
/**
248
 * @method string getLoadBalancerEdition()
249
 * @method $this withLoadBalancerEdition($value)
250
 * @method string getClientToken()
251
 * @method $this withClientToken($value)
252
 * @method string getModificationProtectionConfig()
253
 * @method $this withModificationProtectionConfig($value)
254
 * @method string getLoadBalancerBillingConfig()
255
 * @method $this withLoadBalancerBillingConfig($value)
256
 * @method string getDeletionProtectionEnabled()
257
 * @method $this withDeletionProtectionEnabled($value)
258
 * @method string getResourceGroupId()
259
 * @method $this withResourceGroupId($value)
260
 * @method string getLoadBalancerName()
261
 * @method $this withLoadBalancerName($value)
262
 * @method string getAddressType()
263
 * @method $this withAddressType($value)
264
 * @method string getAddressAllocatedMode()
265
 * @method $this withAddressAllocatedMode($value)
266
 * @method string getDryRun()
267
 * @method $this withDryRun($value)
268
 * @method string getZoneMappings()
269
 * @method $this withZoneMappings($value)
270
 * @method string getVpcId()
271
 * @method $this withVpcId($value)
272
 */
273
class CreateLoadBalancer extends Rpc
274
{
275
}
276
277
/**
278
 * @method string getClientToken()
279
 * @method $this withClientToken($value)
280
 * @method string getRuleName()
281
 * @method $this withRuleName($value)
282
 * @method string getListenerId()
283
 * @method $this withListenerId($value)
284
 * @method string getDirection()
285
 * @method $this withDirection($value)
286
 * @method string getRuleActions()
287
 * @method $this withRuleActions($value)
288
 * @method string getRuleConditions()
289
 * @method $this withRuleConditions($value)
290
 * @method string getDryRun()
291
 * @method $this withDryRun($value)
292
 * @method string getPriority()
293
 * @method $this withPriority($value)
294
 */
295
class CreateRule extends Rpc
296
{
297
}
298
299
/**
300
 * @method string getClientToken()
301
 * @method $this withClientToken($value)
302
 * @method string getRules()
303
 * @method $this withRules($value)
304
 * @method string getListenerId()
305
 * @method $this withListenerId($value)
306
 * @method string getDryRun()
307
 * @method $this withDryRun($value)
308
 */
309
class CreateRules extends Rpc
310
{
311
}
312
313
/**
314
 * @method string getClientToken()
315
 * @method $this withClientToken($value)
316
 * @method string getResourceGroupId()
317
 * @method $this withResourceGroupId($value)
318
 * @method string getCiphers()
319
 * @method $this withCiphers($value)
320
 * @method string getTLSVersions()
321
 * @method $this withTLSVersions($value)
322
 * @method string getSecurityPolicyName()
323
 * @method $this withSecurityPolicyName($value)
324
 * @method string getDryRun()
325
 * @method $this withDryRun($value)
326
 */
327
class CreateSecurityPolicy extends Rpc
328
{
329
}
330
331
/**
332
 * @method string getServerGroupName()
333
 * @method $this withServerGroupName($value)
334
 * @method string getClientToken()
335
 * @method $this withClientToken($value)
336
 * @method string getHealthCheckConfig()
337
 * @method $this withHealthCheckConfig($value)
338
 * @method string getScheduler()
339
 * @method $this withScheduler($value)
340
 * @method string getResourceGroupId()
341
 * @method $this withResourceGroupId($value)
342
 * @method string getProtocol()
343
 * @method $this withProtocol($value)
344
 * @method string getStickySessionConfig()
345
 * @method $this withStickySessionConfig($value)
346
 * @method string getDryRun()
347
 * @method $this withDryRun($value)
348
 * @method string getServerGroupType()
349
 * @method $this withServerGroupType($value)
350
 * @method string getVpcId()
351
 * @method $this withVpcId($value)
352
 */
353
class CreateServerGroup extends Rpc
354
{
355
}
356
357
/**
358
 * @method string getClientToken()
359
 * @method $this withClientToken($value)
360
 * @method string getAclId()
361
 * @method $this withAclId($value)
362
 * @method string getDryRun()
363
 * @method $this withDryRun($value)
364
 */
365
class DeleteAcl extends Rpc
366
{
367
}
368
369
/**
370
 * @method string getClientToken()
371
 * @method $this withClientToken($value)
372
 * @method string getDryRun()
373
 * @method $this withDryRun($value)
374
 * @method string getHealthCheckTemplateIds()
375
 * @method $this withHealthCheckTemplateIds($value)
376
 */
377
class DeleteHealthCheckTemplates extends Rpc
378
{
379
}
380
381
/**
382
 * @method string getClientToken()
383
 * @method $this withClientToken($value)
384
 * @method string getListenerId()
385
 * @method $this withListenerId($value)
386
 * @method string getDryRun()
387
 * @method $this withDryRun($value)
388
 */
389
class DeleteListener extends Rpc
390
{
391
}
392
393
/**
394
 * @method string getClientToken()
395
 * @method $this withClientToken($value)
396
 * @method string getDryRun()
397
 * @method $this withDryRun($value)
398
 * @method string getLoadBalancerId()
399
 * @method $this withLoadBalancerId($value)
400
 */
401
class DeleteLoadBalancer extends Rpc
402
{
403
}
404
405
/**
406
 * @method string getClientToken()
407
 * @method $this withClientToken($value)
408
 * @method string getDryRun()
409
 * @method $this withDryRun($value)
410
 * @method string getRuleId()
411
 * @method $this withRuleId($value)
412
 */
413
class DeleteRule extends Rpc
414
{
415
}
416
417
/**
418
 * @method string getClientToken()
419
 * @method $this withClientToken($value)
420
 * @method string getDryRun()
421
 * @method $this withDryRun($value)
422
 * @method array getRuleIds()
423
 */
424
class DeleteRules extends Rpc
425
{
426
427
    /**
428
     * @param array $ruleIds
429
     *
430
     * @return $this
431
     */
432
	public function withRuleIds(array $ruleIds)
433
	{
434
	    $this->data['RuleIds'] = $ruleIds;
435
		foreach ($ruleIds as $i => $iValue) {
436
			$this->options['query']['RuleIds.' . ($i + 1)] = $iValue;
437
		}
438
439
		return $this;
440
    }
441
}
442
443
/**
444
 * @method string getClientToken()
445
 * @method $this withClientToken($value)
446
 * @method string getDryRun()
447
 * @method $this withDryRun($value)
448
 * @method string getSecurityPolicyId()
449
 * @method $this withSecurityPolicyId($value)
450
 */
451
class DeleteSecurityPolicy extends Rpc
452
{
453
}
454
455
/**
456
 * @method string getClientToken()
457
 * @method $this withClientToken($value)
458
 * @method string getServerGroupId()
459
 * @method $this withServerGroupId($value)
460
 * @method string getDryRun()
461
 * @method $this withDryRun($value)
462
 */
463
class DeleteServerGroup extends Rpc
464
{
465
}
466
467
/**
468
 * @method string getAcceptLanguage()
469
 * @method $this withAcceptLanguage($value)
470
 */
471
class DescribeRegions extends Rpc
472
{
473
}
474
475
class DescribeZones extends Rpc
476
{
477
}
478
479
/**
480
 * @method string getClientToken()
481
 * @method $this withClientToken($value)
482
 * @method string getResourceId()
483
 * @method $this withResourceId($value)
484
 * @method string getDryRun()
485
 * @method $this withDryRun($value)
486
 */
487
class DisableDeletionProtection extends Rpc
488
{
489
}
490
491
/**
492
 * @method string getClientToken()
493
 * @method $this withClientToken($value)
494
 * @method string getDryRun()
495
 * @method $this withDryRun($value)
496
 * @method string getLoadBalancerId()
497
 * @method $this withLoadBalancerId($value)
498
 */
499
class DisableLoadBalancerAccessLog extends Rpc
500
{
501
}
502
503
/**
504
 * @method string getClientToken()
505
 * @method $this withClientToken($value)
506
 * @method string getAclIds()
507
 * @method $this withAclIds($value)
508
 * @method string getListenerId()
509
 * @method $this withListenerId($value)
510
 * @method string getDryRun()
511
 * @method $this withDryRun($value)
512
 */
513
class DissociateAclsFromListener extends Rpc
514
{
515
}
516
517
/**
518
 * @method string getClientToken()
519
 * @method $this withClientToken($value)
520
 * @method string getListenerId()
521
 * @method $this withListenerId($value)
522
 * @method string getDryRun()
523
 * @method $this withDryRun($value)
524
 * @method string getCertificates()
525
 * @method $this withCertificates($value)
526
 */
527
class DissociateAdditionalCertificatesFromListener extends Rpc
528
{
529
}
530
531
/**
532
 * @method string getClientToken()
533
 * @method $this withClientToken($value)
534
 * @method string getResourceId()
535
 * @method $this withResourceId($value)
536
 * @method string getDryRun()
537
 * @method $this withDryRun($value)
538
 */
539
class EnableDeletionProtection extends Rpc
540
{
541
}
542
543
/**
544
 * @method string getLogProject()
545
 * @method $this withLogProject($value)
546
 * @method string getClientToken()
547
 * @method $this withClientToken($value)
548
 * @method string getDryRun()
549
 * @method $this withDryRun($value)
550
 * @method string getLoadBalancerId()
551
 * @method $this withLoadBalancerId($value)
552
 * @method string getLogStore()
553
 * @method $this withLogStore($value)
554
 */
555
class EnableLoadBalancerAccessLog extends Rpc
556
{
557
}
558
559
/**
560
 * @method string getHealthCheckTemplateId()
561
 * @method $this withHealthCheckTemplateId($value)
562
 */
563
class GetHealthCheckTemplateAttribute extends Rpc
564
{
565
}
566
567
/**
568
 * @method string getListenerId()
569
 * @method $this withListenerId($value)
570
 */
571
class GetListenerAttribute extends Rpc
572
{
573
}
574
575
/**
576
 * @method string getLoadBalancerId()
577
 * @method $this withLoadBalancerId($value)
578
 */
579
class GetLoadBalancerAttribute extends Rpc
580
{
581
}
582
583
/**
584
 * @method string getNextToken()
585
 * @method $this withNextToken($value)
586
 * @method string getAclId()
587
 * @method $this withAclId($value)
588
 * @method string getMaxResults()
589
 * @method $this withMaxResults($value)
590
 */
591
class ListAclEntries extends Rpc
592
{
593
}
594
595
/**
596
 * @method string getAclIds()
597
 * @method $this withAclIds($value)
598
 */
599
class ListAclRelations extends Rpc
600
{
601
}
602
603
/**
604
 * @method string getAclIds()
605
 * @method $this withAclIds($value)
606
 * @method string getAddressIPVersion()
607
 * @method $this withAddressIPVersion($value)
608
 * @method string getResourceGroupId()
609
 * @method $this withResourceGroupId($value)
610
 * @method string getNextToken()
611
 * @method $this withNextToken($value)
612
 * @method string getAclNames()
613
 * @method $this withAclNames($value)
614
 * @method string getMaxResults()
615
 * @method $this withMaxResults($value)
616
 */
617
class ListAcls extends Rpc
618
{
619
}
620
621
/**
622
 * @method string getNextToken()
623
 * @method $this withNextToken($value)
624
 * @method string getEndTime()
625
 * @method $this withEndTime($value)
626
 * @method string getBeginTime()
627
 * @method $this withBeginTime($value)
628
 * @method string getResourceType()
629
 * @method $this withResourceType($value)
630
 * @method string getApiName()
631
 * @method $this withApiName($value)
632
 * @method string getJobIds()
633
 * @method $this withJobIds($value)
634
 * @method string getMaxResults()
635
 * @method $this withMaxResults($value)
636
 * @method string getResourceIds()
637
 * @method $this withResourceIds($value)
638
 */
639
class ListAsynJobs extends Rpc
640
{
641
}
642
643
/**
644
 * @method string getNextToken()
645
 * @method $this withNextToken($value)
646
 * @method string getHealthCheckTemplateNames()
647
 * @method $this withHealthCheckTemplateNames($value)
648
 * @method string getMaxResults()
649
 * @method $this withMaxResults($value)
650
 * @method string getHealthCheckTemplateIds()
651
 * @method $this withHealthCheckTemplateIds($value)
652
 */
653
class ListHealthCheckTemplates extends Rpc
654
{
655
}
656
657
/**
658
 * @method string getCertificateType()
659
 * @method $this withCertificateType($value)
660
 * @method string getListenerId()
661
 * @method $this withListenerId($value)
662
 * @method string getNextToken()
663
 * @method $this withNextToken($value)
664
 * @method string getMaxResults()
665
 * @method $this withMaxResults($value)
666
 */
667
class ListListenerCertificates extends Rpc
668
{
669
}
670
671
/**
672
 * @method string getLoadBalancerIds()
673
 * @method $this withLoadBalancerIds($value)
674
 * @method string getNextToken()
675
 * @method $this withNextToken($value)
676
 * @method string getAccessLogRecordCustomizedHeadersEnabled()
677
 * @method $this withAccessLogRecordCustomizedHeadersEnabled($value)
678
 * @method string getListenerProtocol()
679
 * @method $this withListenerProtocol($value)
680
 * @method string getListenerIds()
681
 * @method $this withListenerIds($value)
682
 * @method string getMaxResults()
683
 * @method $this withMaxResults($value)
684
 */
685
class ListListeners extends Rpc
686
{
687
}
688
689
/**
690
 * @method string getLoadBalancerNames()
691
 * @method $this withLoadBalancerNames($value)
692
 * @method string getLoadBalancerIds()
693
 * @method $this withLoadBalancerIds($value)
694
 * @method string getResourceGroupId()
695
 * @method $this withResourceGroupId($value)
696
 * @method string getNextToken()
697
 * @method $this withNextToken($value)
698
 * @method string getLoadBalancerBussinessStatus()
699
 * @method $this withLoadBalancerBussinessStatus($value)
700
 * @method string getAddressType()
701
 * @method $this withAddressType($value)
702
 * @method string getVpcIds()
703
 * @method $this withVpcIds($value)
704
 * @method string getTag()
705
 * @method $this withTag($value)
706
 * @method string getAddress()
707
 * @method $this withAddress($value)
708
 * @method string getLoadBalancerStatus()
709
 * @method $this withLoadBalancerStatus($value)
710
 * @method string getInternetChargeType()
711
 * @method $this withInternetChargeType($value)
712
 * @method string getMaxResults()
713
 * @method $this withMaxResults($value)
714
 * @method string getZoneId()
715
 * @method $this withZoneId($value)
716
 * @method string getPayType()
717
 * @method $this withPayType($value)
718
 */
719
class ListLoadBalancers extends Rpc
720
{
721
}
722
723
/**
724
 * @method string getLoadBalancerIds()
725
 * @method $this withLoadBalancerIds($value)
726
 * @method string getListenerId()
727
 * @method $this withListenerId($value)
728
 * @method string getNextToken()
729
 * @method $this withNextToken($value)
730
 * @method string getDirection()
731
 * @method $this withDirection($value)
732
 * @method string getRuleIds()
733
 * @method $this withRuleIds($value)
734
 * @method string getListenerIds()
735
 * @method $this withListenerIds($value)
736
 * @method string getMaxResults()
737
 * @method $this withMaxResults($value)
738
 */
739
class ListRules extends Rpc
740
{
741
}
742
743
/**
744
 * @method string getSecurityPolicyNames()
745
 * @method $this withSecurityPolicyNames($value)
746
 * @method string getResourceGroupId()
747
 * @method $this withResourceGroupId($value)
748
 * @method string getNextToken()
749
 * @method $this withNextToken($value)
750
 * @method string getSecurityPolicyIds()
751
 * @method $this withSecurityPolicyIds($value)
752
 * @method string getMaxResults()
753
 * @method $this withMaxResults($value)
754
 */
755
class ListSecurityPolicies extends Rpc
756
{
757
}
758
759
/**
760
 * @method string getSecurityPolicyIds()
761
 * @method $this withSecurityPolicyIds($value)
762
 */
763
class ListSecurityPolicyRelations extends Rpc
764
{
765
}
766
767
/**
768
 * @method string getServerGroupNames()
769
 * @method $this withServerGroupNames($value)
770
 * @method string getResourceGroupId()
771
 * @method $this withResourceGroupId($value)
772
 * @method string getNextToken()
773
 * @method $this withNextToken($value)
774
 * @method string getTag()
775
 * @method $this withTag($value)
776
 * @method string getShowRelationEnabled()
777
 * @method $this withShowRelationEnabled($value)
778
 * @method string getServerGroupIds()
779
 * @method $this withServerGroupIds($value)
780
 * @method string getServerGroupType()
781
 * @method $this withServerGroupType($value)
782
 * @method string getVpcId()
783
 * @method $this withVpcId($value)
784
 * @method string getMaxResults()
785
 * @method $this withMaxResults($value)
786
 */
787
class ListServerGroups extends Rpc
788
{
789
}
790
791
/**
792
 * @method string getServerGroupId()
793
 * @method $this withServerGroupId($value)
794
 * @method string getNextToken()
795
 * @method $this withNextToken($value)
796
 * @method string getServerIp()
797
 * @method $this withServerIp($value)
798
 * @method string getTag()
799
 * @method $this withTag($value)
800
 * @method string getServerId()
801
 * @method $this withServerId($value)
802
 * @method string getServerIds()
803
 * @method $this withServerIds($value)
804
 * @method string getMaxResults()
805
 * @method $this withMaxResults($value)
806
 */
807
class ListServerGroupServers extends Rpc
808
{
809
}
810
811
class ListSystemSecurityPolicies extends Rpc
812
{
813
}
814
815
/**
816
 * @method string getNextToken()
817
 * @method $this withNextToken($value)
818
 * @method string getKeyword()
819
 * @method $this withKeyword($value)
820
 * @method string getResourceType()
821
 * @method $this withResourceType($value)
822
 * @method string getMaxResults()
823
 * @method $this withMaxResults($value)
824
 * @method string getCategory()
825
 * @method $this withCategory($value)
826
 */
827
class ListTagKeys extends Rpc
828
{
829
}
830
831
/**
832
 * @method string getNextToken()
833
 * @method $this withNextToken($value)
834
 * @method string getTag()
835
 * @method $this withTag($value)
836
 * @method string getResourceId()
837
 * @method $this withResourceId($value)
838
 * @method string getResourceType()
839
 * @method $this withResourceType($value)
840
 * @method string getMaxResults()
841
 * @method $this withMaxResults($value)
842
 */
843
class ListTagResources extends Rpc
844
{
845
}
846
847
/**
848
 * @method string getNextToken()
849
 * @method $this withNextToken($value)
850
 * @method string getResourceId()
851
 * @method $this withResourceId($value)
852
 * @method string getResourceType()
853
 * @method $this withResourceType($value)
854
 * @method string getMaxResults()
855
 * @method $this withMaxResults($value)
856
 * @method string getTagKey()
857
 * @method $this withTagKey($value)
858
 */
859
class ListTagValues extends Rpc
860
{
861
}
862
863
/**
864
 * @method string getResourceId()
865
 * @method $this withResourceId($value)
866
 * @method string getResourceType()
867
 * @method $this withResourceType($value)
868
 * @method string getNewResourceGroupId()
869
 * @method $this withNewResourceGroupId($value)
870
 */
871
class MoveResourceGroup extends Rpc
872
{
873
}
874
875
/**
876
 * @method string getClientToken()
877
 * @method $this withClientToken($value)
878
 * @method string getAclId()
879
 * @method $this withAclId($value)
880
 * @method string getDryRun()
881
 * @method $this withDryRun($value)
882
 * @method string getEntries()
883
 * @method $this withEntries($value)
884
 */
885
class RemoveEntriesFromAcl extends Rpc
886
{
887
}
888
889
/**
890
 * @method string getClientToken()
891
 * @method $this withClientToken($value)
892
 * @method string getServerGroupId()
893
 * @method $this withServerGroupId($value)
894
 * @method string getServers()
895
 * @method $this withServers($value)
896
 * @method string getDryRun()
897
 * @method $this withDryRun($value)
898
 */
899
class RemoveServersFromServerGroup extends Rpc
900
{
901
}
902
903
/**
904
 * @method string getClientToken()
905
 * @method $this withClientToken($value)
906
 * @method string getServerGroupId()
907
 * @method $this withServerGroupId($value)
908
 * @method string getAddedServers()
909
 * @method $this withAddedServers($value)
910
 * @method string getDryRun()
911
 * @method $this withDryRun($value)
912
 * @method string getRemovedServers()
913
 * @method $this withRemovedServers($value)
914
 */
915
class ReplaceServersInServerGroup extends Rpc
916
{
917
}
918
919
/**
920
 * @method string getClientToken()
921
 * @method $this withClientToken($value)
922
 * @method string getListenerId()
923
 * @method $this withListenerId($value)
924
 * @method string getDryRun()
925
 * @method $this withDryRun($value)
926
 */
927
class StartListener extends Rpc
928
{
929
}
930
931
/**
932
 * @method string getClientToken()
933
 * @method $this withClientToken($value)
934
 * @method string getListenerId()
935
 * @method $this withListenerId($value)
936
 * @method string getDryRun()
937
 * @method $this withDryRun($value)
938
 */
939
class StopListener extends Rpc
940
{
941
}
942
943
/**
944
 * @method string getTag()
945
 * @method $this withTag($value)
946
 * @method string getResourceId()
947
 * @method $this withResourceId($value)
948
 * @method string getResourceType()
949
 * @method $this withResourceType($value)
950
 */
951
class TagResources extends Rpc
952
{
953
}
954
955
/**
956
 * @method string getTag()
957
 * @method $this withTag($value)
958
 * @method string getResourceId()
959
 * @method $this withResourceId($value)
960
 * @method string getResourceType()
961
 * @method $this withResourceType($value)
962
 * @method string getTagKey()
963
 * @method $this withTagKey($value)
964
 */
965
class UnTagResources extends Rpc
966
{
967
}
968
969
/**
970
 * @method string getAclName()
971
 * @method $this withAclName($value)
972
 * @method string getClientToken()
973
 * @method $this withClientToken($value)
974
 * @method string getAclId()
975
 * @method $this withAclId($value)
976
 * @method string getDryRun()
977
 * @method $this withDryRun($value)
978
 */
979
class UpdateAclAttribute extends Rpc
980
{
981
}
982
983
/**
984
 * @method string getHealthCheckTimeout()
985
 * @method $this withHealthCheckTimeout($value)
986
 * @method string getClientToken()
987
 * @method $this withClientToken($value)
988
 * @method string getHealthCheckProtocol()
989
 * @method $this withHealthCheckProtocol($value)
990
 * @method string getUnhealthyThreshold()
991
 * @method $this withUnhealthyThreshold($value)
992
 * @method string getHealthyThreshold()
993
 * @method $this withHealthyThreshold($value)
994
 * @method string getHealthCheckTcpFastCloseEnabled()
995
 * @method $this withHealthCheckTcpFastCloseEnabled($value)
996
 * @method string getHealthCheckPath()
997
 * @method $this withHealthCheckPath($value)
998
 * @method string getHealthCheckCodes()
999
 * @method $this withHealthCheckCodes($value)
1000
 * @method string getDryRun()
1001
 * @method $this withDryRun($value)
1002
 * @method string getHealthCheckMethod()
1003
 * @method $this withHealthCheckMethod($value)
1004
 * @method string getHealthCheckHost()
1005
 * @method $this withHealthCheckHost($value)
1006
 * @method string getHealthCheckInterval()
1007
 * @method $this withHealthCheckInterval($value)
1008
 * @method string getHealthCheckTemplateName()
1009
 * @method $this withHealthCheckTemplateName($value)
1010
 * @method string getHealthCheckHttpCodes()
1011
 * @method $this withHealthCheckHttpCodes($value)
1012
 * @method string getHealthCheckTemplateId()
1013
 * @method $this withHealthCheckTemplateId($value)
1014
 * @method string getHealthCheckHttpVersion()
1015
 * @method $this withHealthCheckHttpVersion($value)
1016
 * @method string getHealthCheckConnectPort()
1017
 * @method $this withHealthCheckConnectPort($value)
1018
 */
1019
class UpdateHealthCheckTemplateAttribute extends Rpc
1020
{
1021
}
1022
1023
/**
1024
 * @method string getClientToken()
1025
 * @method $this withClientToken($value)
1026
 * @method string getGzipEnabled()
1027
 * @method $this withGzipEnabled($value)
1028
 * @method string getListenerId()
1029
 * @method $this withListenerId($value)
1030
 * @method string getQuicConfig()
1031
 * @method $this withQuicConfig($value)
1032
 * @method string getHttp2Enabled()
1033
 * @method $this withHttp2Enabled($value)
1034
 * @method string getDefaultActions()
1035
 * @method $this withDefaultActions($value)
1036
 * @method string getDryRun()
1037
 * @method $this withDryRun($value)
1038
 * @method string getRequestTimeout()
1039
 * @method $this withRequestTimeout($value)
1040
 * @method string getCaCertificates()
1041
 * @method $this withCaCertificates($value)
1042
 * @method string getXForwardedForConfig()
1043
 * @method $this withXForwardedForConfig($value)
1044
 * @method string getSecurityPolicyId()
1045
 * @method $this withSecurityPolicyId($value)
1046
 * @method string getIdleTimeout()
1047
 * @method $this withIdleTimeout($value)
1048
 * @method string getCertificates()
1049
 * @method $this withCertificates($value)
1050
 * @method string getListenerDescription()
1051
 * @method $this withListenerDescription($value)
1052
 * @method string getCaEnabled()
1053
 * @method $this withCaEnabled($value)
1054
 */
1055
class UpdateListenerAttribute extends Rpc
1056
{
1057
}
1058
1059
/**
1060
 * @method string getClientToken()
1061
 * @method $this withClientToken($value)
1062
 * @method string getListenerId()
1063
 * @method $this withListenerId($value)
1064
 * @method string getAccessLogRecordCustomizedHeadersEnabled()
1065
 * @method $this withAccessLogRecordCustomizedHeadersEnabled($value)
1066
 * @method string getDryRun()
1067
 * @method $this withDryRun($value)
1068
 * @method string getAccessLogTracingConfig()
1069
 * @method $this withAccessLogTracingConfig($value)
1070
 */
1071
class UpdateListenerLogConfig extends Rpc
1072
{
1073
}
1074
1075
/**
1076
 * @method string getClientToken()
1077
 * @method $this withClientToken($value)
1078
 * @method string getModificationProtectionConfig()
1079
 * @method $this withModificationProtectionConfig($value)
1080
 * @method string getLoadBalancerName()
1081
 * @method $this withLoadBalancerName($value)
1082
 * @method string getDryRun()
1083
 * @method $this withDryRun($value)
1084
 * @method string getLoadBalancerId()
1085
 * @method $this withLoadBalancerId($value)
1086
 */
1087
class UpdateLoadBalancerAttribute extends Rpc
1088
{
1089
}
1090
1091
/**
1092
 * @method string getLoadBalancerEdition()
1093
 * @method $this withLoadBalancerEdition($value)
1094
 * @method string getClientToken()
1095
 * @method $this withClientToken($value)
1096
 * @method string getDryRun()
1097
 * @method $this withDryRun($value)
1098
 * @method string getLoadBalancerId()
1099
 * @method $this withLoadBalancerId($value)
1100
 */
1101
class UpdateLoadBalancerEdition extends Rpc
1102
{
1103
}
1104
1105
/**
1106
 * @method string getClientToken()
1107
 * @method $this withClientToken($value)
1108
 * @method string getRuleName()
1109
 * @method $this withRuleName($value)
1110
 * @method string getRuleActions()
1111
 * @method $this withRuleActions($value)
1112
 * @method string getRuleConditions()
1113
 * @method $this withRuleConditions($value)
1114
 * @method string getDryRun()
1115
 * @method $this withDryRun($value)
1116
 * @method string getPriority()
1117
 * @method $this withPriority($value)
1118
 * @method string getRuleId()
1119
 * @method $this withRuleId($value)
1120
 */
1121
class UpdateRuleAttribute extends Rpc
1122
{
1123
}
1124
1125
/**
1126
 * @method string getClientToken()
1127
 * @method $this withClientToken($value)
1128
 * @method string getRules()
1129
 * @method $this withRules($value)
1130
 * @method string getDryRun()
1131
 * @method $this withDryRun($value)
1132
 */
1133
class UpdateRulesAttribute extends Rpc
1134
{
1135
}
1136
1137
/**
1138
 * @method string getClientToken()
1139
 * @method $this withClientToken($value)
1140
 * @method string getCiphers()
1141
 * @method $this withCiphers($value)
1142
 * @method string getTLSVersions()
1143
 * @method $this withTLSVersions($value)
1144
 * @method string getSecurityPolicyName()
1145
 * @method $this withSecurityPolicyName($value)
1146
 * @method string getDryRun()
1147
 * @method $this withDryRun($value)
1148
 * @method string getSecurityPolicyId()
1149
 * @method $this withSecurityPolicyId($value)
1150
 */
1151
class UpdateSecurityPolicyAttribute extends Rpc
1152
{
1153
}
1154
1155
/**
1156
 * @method string getServerGroupName()
1157
 * @method $this withServerGroupName($value)
1158
 * @method string getClientToken()
1159
 * @method $this withClientToken($value)
1160
 * @method string getHealthCheckConfig()
1161
 * @method $this withHealthCheckConfig($value)
1162
 * @method string getScheduler()
1163
 * @method $this withScheduler($value)
1164
 * @method string getServerGroupId()
1165
 * @method $this withServerGroupId($value)
1166
 * @method string getStickySessionConfig()
1167
 * @method $this withStickySessionConfig($value)
1168
 * @method string getDryRun()
1169
 * @method $this withDryRun($value)
1170
 */
1171
class UpdateServerGroupAttribute extends Rpc
1172
{
1173
}
1174
1175
/**
1176
 * @method string getClientToken()
1177
 * @method $this withClientToken($value)
1178
 * @method string getServerGroupId()
1179
 * @method $this withServerGroupId($value)
1180
 * @method string getServers()
1181
 * @method $this withServers($value)
1182
 * @method string getDryRun()
1183
 * @method $this withDryRun($value)
1184
 */
1185
class UpdateServerGroupServersAttribute extends Rpc
1186
{
1187
}
1188