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 ( 5fa711...4ccf8b )
by
unknown
07:58
created

TagResources   A

Complexity

Total Complexity 6

Size/Duplication

Total Lines 36
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 6
eloc 12
c 1
b 0
f 0
dl 0
loc 36
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A withTag() 0 13 4
A withResourceId() 0 8 2
1
<?php
2
3
namespace AlibabaCloud\Alikafka\V20190916;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method ChangeResourceGroup changeResourceGroup(array $options = [])
9
 * @method ConvertPostPayOrder convertPostPayOrder(array $options = [])
10
 * @method CreateAcl createAcl(array $options = [])
11
 * @method CreateConsumerGroup createConsumerGroup(array $options = [])
12
 * @method CreatePostPayOrder createPostPayOrder(array $options = [])
13
 * @method CreatePrePayOrder createPrePayOrder(array $options = [])
14
 * @method CreateSaslUser createSaslUser(array $options = [])
15
 * @method CreateTopic createTopic(array $options = [])
16
 * @method DeleteAcl deleteAcl(array $options = [])
17
 * @method DeleteConsumerGroup deleteConsumerGroup(array $options = [])
18
 * @method DeleteInstance deleteInstance(array $options = [])
19
 * @method DeleteSaslUser deleteSaslUser(array $options = [])
20
 * @method DeleteTopic deleteTopic(array $options = [])
21
 * @method DescribeAcls describeAcls(array $options = [])
22
 * @method DescribeSaslUsers describeSaslUsers(array $options = [])
23
 * @method GetAllInstanceIdList getAllInstanceIdList(array $options = [])
24
 * @method GetAllowedIpList getAllowedIpList(array $options = [])
25
 * @method GetConsumerList getConsumerList(array $options = [])
26
 * @method GetConsumerProgress getConsumerProgress(array $options = [])
27
 * @method GetInstanceList getInstanceList(array $options = [])
28
 * @method GetQuotaTip getQuotaTip(array $options = [])
29
 * @method GetTopicList getTopicList(array $options = [])
30
 * @method GetTopicStatus getTopicStatus(array $options = [])
31
 * @method ListTagResources listTagResources(array $options = [])
32
 * @method ModifyInstanceName modifyInstanceName(array $options = [])
33
 * @method ModifyPartitionNum modifyPartitionNum(array $options = [])
34
 * @method ModifyTopicRemark modifyTopicRemark(array $options = [])
35
 * @method ReleaseInstance releaseInstance(array $options = [])
36
 * @method StartInstance startInstance(array $options = [])
37
 * @method TagResources tagResources(array $options = [])
38
 * @method UntagResources untagResources(array $options = [])
39
 * @method UpdateAllowedIp updateAllowedIp(array $options = [])
40
 * @method UpdateInstanceConfig updateInstanceConfig(array $options = [])
41
 * @method UpgradeInstanceVersion upgradeInstanceVersion(array $options = [])
42
 * @method UpgradePostPayOrder upgradePostPayOrder(array $options = [])
43
 * @method UpgradePrePayOrder upgradePrePayOrder(array $options = [])
44
 */
45
class AlikafkaApiResolver extends ApiResolver
46
{
47
}
48
49
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
50
{
51
    /** @var string */
52
    public $product = 'alikafka';
53
54
    /** @var string */
55
    public $version = '2019-09-16';
56
57
    /** @var string */
58
    public $method = 'POST';
59
60
    /** @var string */
61
    public $serviceCode = 'alikafka';
62
}
63
64
/**
65
 * @method string getResourceId()
66
 * @method $this withResourceId($value)
67
 * @method string getNewResourceGroupId()
68
 * @method $this withNewResourceGroupId($value)
69
 */
70
class ChangeResourceGroup extends Rpc
71
{
72
}
73
74
/**
75
 * @method string getDuration()
76
 * @method $this withDuration($value)
77
 * @method string getInstanceId()
78
 * @method $this withInstanceId($value)
79
 */
80
class ConvertPostPayOrder extends Rpc
81
{
82
}
83
84
/**
85
 * @method string getAclResourcePatternType()
86
 * @method $this withAclResourcePatternType($value)
87
 * @method string getAclResourceType()
88
 * @method $this withAclResourceType($value)
89
 * @method string getAclOperationType()
90
 * @method $this withAclOperationType($value)
91
 * @method string getAclResourceName()
92
 * @method $this withAclResourceName($value)
93
 * @method string getInstanceId()
94
 * @method $this withInstanceId($value)
95
 * @method string getUsername()
96
 * @method $this withUsername($value)
97
 */
98
class CreateAcl extends Rpc
99
{
100
}
101
102
/**
103
 * @method string getConsumerId()
104
 * @method $this withConsumerId($value)
105
 * @method string getRemark()
106
 * @method $this withRemark($value)
107
 * @method string getInstanceId()
108
 * @method $this withInstanceId($value)
109
 * @method array getTag()
110
 */
111
class CreateConsumerGroup extends Rpc
112
{
113
114
    /**
115
     * @param array $tag
116
     *
117
     * @return $this
118
     */
119
	public function withTag(array $tag)
120
	{
121
	    $this->data['Tag'] = $tag;
122
		foreach ($tag as $depth1 => $depth1Value) {
123
			if(isset($depth1Value['Value'])){
124
				$this->options['query']['Tag.' . ($depth1 + 1) . '.Value'] = $depth1Value['Value'];
125
			}
126
			if(isset($depth1Value['Key'])){
127
				$this->options['query']['Tag.' . ($depth1 + 1) . '.Key'] = $depth1Value['Key'];
128
			}
129
		}
130
131
		return $this;
132
    }
133
}
134
135
/**
136
 * @method string getIoMax()
137
 * @method $this withIoMax($value)
138
 * @method string getEipMax()
139
 * @method $this withEipMax($value)
140
 * @method string getSpecType()
141
 * @method $this withSpecType($value)
142
 * @method string getResourceGroupId()
143
 * @method $this withResourceGroupId($value)
144
 * @method array getTag()
145
 * @method string getPartitionNum()
146
 * @method $this withPartitionNum($value)
147
 * @method string getPaidType()
148
 * @method $this withPaidType($value)
149
 * @method string getDiskSize()
150
 * @method $this withDiskSize($value)
151
 * @method string getIoMaxSpec()
152
 * @method $this withIoMaxSpec($value)
153
 * @method string getDiskType()
154
 * @method $this withDiskType($value)
155
 * @method string getTopicQuota()
156
 * @method $this withTopicQuota($value)
157
 * @method string getDeployType()
158
 * @method $this withDeployType($value)
159
 */
160
class CreatePostPayOrder extends Rpc
161
{
162
163
    /**
164
     * @param array $tag
165
     *
166
     * @return $this
167
     */
168
	public function withTag(array $tag)
169
	{
170
	    $this->data['Tag'] = $tag;
171
		foreach ($tag as $depth1 => $depth1Value) {
172
			if(isset($depth1Value['Value'])){
173
				$this->options['query']['Tag.' . ($depth1 + 1) . '.Value'] = $depth1Value['Value'];
174
			}
175
			if(isset($depth1Value['Key'])){
176
				$this->options['query']['Tag.' . ($depth1 + 1) . '.Key'] = $depth1Value['Key'];
177
			}
178
		}
179
180
		return $this;
181
    }
182
}
183
184
/**
185
 * @method string getIoMax()
186
 * @method $this withIoMax($value)
187
 * @method string getEipMax()
188
 * @method $this withEipMax($value)
189
 * @method string getSpecType()
190
 * @method $this withSpecType($value)
191
 * @method string getResourceGroupId()
192
 * @method $this withResourceGroupId($value)
193
 * @method array getTag()
194
 * @method string getPartitionNum()
195
 * @method $this withPartitionNum($value)
196
 * @method string getDiskSize()
197
 * @method $this withDiskSize($value)
198
 * @method string getIoMaxSpec()
199
 * @method $this withIoMaxSpec($value)
200
 * @method string getDiskType()
201
 * @method $this withDiskType($value)
202
 * @method string getTopicQuota()
203
 * @method $this withTopicQuota($value)
204
 * @method string getDeployType()
205
 * @method $this withDeployType($value)
206
 */
207
class CreatePrePayOrder extends Rpc
208
{
209
210
    /**
211
     * @param array $tag
212
     *
213
     * @return $this
214
     */
215
	public function withTag(array $tag)
216
	{
217
	    $this->data['Tag'] = $tag;
218
		foreach ($tag as $depth1 => $depth1Value) {
219
			if(isset($depth1Value['Value'])){
220
				$this->options['query']['Tag.' . ($depth1 + 1) . '.Value'] = $depth1Value['Value'];
221
			}
222
			if(isset($depth1Value['Key'])){
223
				$this->options['query']['Tag.' . ($depth1 + 1) . '.Key'] = $depth1Value['Key'];
224
			}
225
		}
226
227
		return $this;
228
    }
229
}
230
231
/**
232
 * @method string getType()
233
 * @method $this withType($value)
234
 * @method string getPassword()
235
 * @method $this withPassword($value)
236
 * @method string getInstanceId()
237
 * @method $this withInstanceId($value)
238
 * @method string getUsername()
239
 * @method $this withUsername($value)
240
 */
241
class CreateSaslUser extends Rpc
242
{
243
}
244
245
/**
246
 * @method string getRemark()
247
 * @method $this withRemark($value)
248
 * @method string getReplicationFactor()
249
 * @method $this withReplicationFactor($value)
250
 * @method string getMinInsyncReplicas()
251
 * @method $this withMinInsyncReplicas($value)
252
 * @method string getInstanceId()
253
 * @method $this withInstanceId($value)
254
 * @method string getTopic()
255
 * @method $this withTopic($value)
256
 * @method string getCompactTopic()
257
 * @method $this withCompactTopic($value)
258
 * @method array getTag()
259
 * @method string getPartitionNum()
260
 * @method $this withPartitionNum($value)
261
 * @method string getConfig()
262
 * @method $this withConfig($value)
263
 * @method string getLocalTopic()
264
 * @method $this withLocalTopic($value)
265
 */
266
class CreateTopic extends Rpc
267
{
268
269
    /**
270
     * @param array $tag
271
     *
272
     * @return $this
273
     */
274
	public function withTag(array $tag)
275
	{
276
	    $this->data['Tag'] = $tag;
277
		foreach ($tag as $depth1 => $depth1Value) {
278
			if(isset($depth1Value['Value'])){
279
				$this->options['query']['Tag.' . ($depth1 + 1) . '.Value'] = $depth1Value['Value'];
280
			}
281
			if(isset($depth1Value['Key'])){
282
				$this->options['query']['Tag.' . ($depth1 + 1) . '.Key'] = $depth1Value['Key'];
283
			}
284
		}
285
286
		return $this;
287
    }
288
}
289
290
/**
291
 * @method string getAclResourcePatternType()
292
 * @method $this withAclResourcePatternType($value)
293
 * @method string getAclResourceType()
294
 * @method $this withAclResourceType($value)
295
 * @method string getAclOperationType()
296
 * @method $this withAclOperationType($value)
297
 * @method string getAclResourceName()
298
 * @method $this withAclResourceName($value)
299
 * @method string getInstanceId()
300
 * @method $this withInstanceId($value)
301
 * @method string getUsername()
302
 * @method $this withUsername($value)
303
 */
304
class DeleteAcl extends Rpc
305
{
306
}
307
308
/**
309
 * @method string getConsumerId()
310
 * @method $this withConsumerId($value)
311
 * @method string getInstanceId()
312
 * @method $this withInstanceId($value)
313
 */
314
class DeleteConsumerGroup extends Rpc
315
{
316
}
317
318
/**
319
 * @method string getInstanceId()
320
 * @method $this withInstanceId($value)
321
 */
322
class DeleteInstance extends Rpc
323
{
324
}
325
326
/**
327
 * @method string getType()
328
 * @method $this withType($value)
329
 * @method string getInstanceId()
330
 * @method $this withInstanceId($value)
331
 * @method string getUsername()
332
 * @method $this withUsername($value)
333
 */
334
class DeleteSaslUser extends Rpc
335
{
336
}
337
338
/**
339
 * @method string getInstanceId()
340
 * @method $this withInstanceId($value)
341
 * @method string getTopic()
342
 * @method $this withTopic($value)
343
 */
344
class DeleteTopic extends Rpc
345
{
346
}
347
348
/**
349
 * @method string getAclResourcePatternType()
350
 * @method $this withAclResourcePatternType($value)
351
 * @method string getAclResourceType()
352
 * @method $this withAclResourceType($value)
353
 * @method string getAclResourceName()
354
 * @method $this withAclResourceName($value)
355
 * @method string getInstanceId()
356
 * @method $this withInstanceId($value)
357
 * @method string getUsername()
358
 * @method $this withUsername($value)
359
 */
360
class DescribeAcls extends Rpc
361
{
362
}
363
364
/**
365
 * @method string getInstanceId()
366
 * @method $this withInstanceId($value)
367
 */
368
class DescribeSaslUsers extends Rpc
369
{
370
}
371
372
class GetAllInstanceIdList extends Rpc
373
{
374
}
375
376
/**
377
 * @method string getInstanceId()
378
 * @method $this withInstanceId($value)
379
 */
380
class GetAllowedIpList extends Rpc
381
{
382
}
383
384
/**
385
 * @method string getConsumerId()
386
 * @method $this withConsumerId($value)
387
 * @method string getCurrentPage()
388
 * @method $this withCurrentPage($value)
389
 * @method string getInstanceId()
390
 * @method $this withInstanceId($value)
391
 * @method string getPageSize()
392
 * @method $this withPageSize($value)
393
 */
394
class GetConsumerList extends Rpc
395
{
396
}
397
398
/**
399
 * @method string getConsumerId()
400
 * @method $this withConsumerId($value)
401
 * @method string getInstanceId()
402
 * @method $this withInstanceId($value)
403
 */
404
class GetConsumerProgress extends Rpc
405
{
406
}
407
408
/**
409
 * @method string getOrderId()
410
 * @method $this withOrderId($value)
411
 * @method string getResourceGroupId()
412
 * @method $this withResourceGroupId($value)
413
 * @method array getInstanceId()
414
 * @method array getTag()
415
 */
416
class GetInstanceList extends Rpc
417
{
418
419
    /**
420
     * @param array $instanceId
421
     *
422
     * @return $this
423
     */
424
	public function withInstanceId(array $instanceId)
425
	{
426
	    $this->data['InstanceId'] = $instanceId;
427
		foreach ($instanceId as $i => $iValue) {
428
			$this->options['query']['InstanceId.' . ($i + 1)] = $iValue;
429
		}
430
431
		return $this;
432
    }
433
434
    /**
435
     * @param array $tag
436
     *
437
     * @return $this
438
     */
439
	public function withTag(array $tag)
440
	{
441
	    $this->data['Tag'] = $tag;
442
		foreach ($tag as $depth1 => $depth1Value) {
443
			if(isset($depth1Value['Value'])){
444
				$this->options['query']['Tag.' . ($depth1 + 1) . '.Value'] = $depth1Value['Value'];
445
			}
446
			if(isset($depth1Value['Key'])){
447
				$this->options['query']['Tag.' . ($depth1 + 1) . '.Key'] = $depth1Value['Key'];
448
			}
449
		}
450
451
		return $this;
452
    }
453
}
454
455
/**
456
 * @method string getInstanceId()
457
 * @method $this withInstanceId($value)
458
 */
459
class GetQuotaTip extends Rpc
460
{
461
}
462
463
/**
464
 * @method string getCurrentPage()
465
 * @method $this withCurrentPage($value)
466
 * @method string getInstanceId()
467
 * @method $this withInstanceId($value)
468
 * @method string getPageSize()
469
 * @method $this withPageSize($value)
470
 * @method string getTopic()
471
 * @method $this withTopic($value)
472
 */
473
class GetTopicList extends Rpc
474
{
475
}
476
477
/**
478
 * @method string getInstanceId()
479
 * @method $this withInstanceId($value)
480
 * @method string getTopic()
481
 * @method $this withTopic($value)
482
 */
483
class GetTopicStatus extends Rpc
484
{
485
}
486
487
/**
488
 * @method array getResourceId()
489
 * @method string getResourceType()
490
 * @method $this withResourceType($value)
491
 * @method string getNextToken()
492
 * @method $this withNextToken($value)
493
 * @method array getTag()
494
 */
495
class ListTagResources extends Rpc
496
{
497
498
    /**
499
     * @param array $resourceId
500
     *
501
     * @return $this
502
     */
503
	public function withResourceId(array $resourceId)
504
	{
505
	    $this->data['ResourceId'] = $resourceId;
506
		foreach ($resourceId as $i => $iValue) {
507
			$this->options['query']['ResourceId.' . ($i + 1)] = $iValue;
508
		}
509
510
		return $this;
511
    }
512
513
    /**
514
     * @param array $tag
515
     *
516
     * @return $this
517
     */
518
	public function withTag(array $tag)
519
	{
520
	    $this->data['Tag'] = $tag;
521
		foreach ($tag as $depth1 => $depth1Value) {
522
			if(isset($depth1Value['Value'])){
523
				$this->options['query']['Tag.' . ($depth1 + 1) . '.Value'] = $depth1Value['Value'];
524
			}
525
			if(isset($depth1Value['Key'])){
526
				$this->options['query']['Tag.' . ($depth1 + 1) . '.Key'] = $depth1Value['Key'];
527
			}
528
		}
529
530
		return $this;
531
    }
532
}
533
534
/**
535
 * @method string getInstanceId()
536
 * @method $this withInstanceId($value)
537
 * @method string getInstanceName()
538
 * @method $this withInstanceName($value)
539
 */
540
class ModifyInstanceName extends Rpc
541
{
542
}
543
544
/**
545
 * @method string getAddPartitionNum()
546
 * @method $this withAddPartitionNum($value)
547
 * @method string getInstanceId()
548
 * @method $this withInstanceId($value)
549
 * @method string getTopic()
550
 * @method $this withTopic($value)
551
 */
552
class ModifyPartitionNum extends Rpc
553
{
554
}
555
556
/**
557
 * @method string getInstanceId()
558
 * @method $this withInstanceId($value)
559
 * @method string getTopic()
560
 * @method $this withTopic($value)
561
 * @method string getRemark()
562
 * @method $this withRemark($value)
563
 */
564
class ModifyTopicRemark extends Rpc
565
{
566
}
567
568
/**
569
 * @method string getForceDeleteInstance()
570
 * @method $this withForceDeleteInstance($value)
571
 * @method string getInstanceId()
572
 * @method $this withInstanceId($value)
573
 * @method string getReleaseIgnoreTime()
574
 * @method $this withReleaseIgnoreTime($value)
575
 */
576
class ReleaseInstance extends Rpc
577
{
578
}
579
580
/**
581
 * @method string getSelectedZones()
582
 * @method $this withSelectedZones($value)
583
 * @method string getIsEipInner()
584
 * @method $this withIsEipInner($value)
585
 * @method string getSecurityGroup()
586
 * @method $this withSecurityGroup($value)
587
 * @method string getDeployModule()
588
 * @method $this withDeployModule($value)
589
 * @method string getIsSetUserAndPassword()
590
 * @method $this withIsSetUserAndPassword($value)
591
 * @method string getPassword()
592
 * @method $this withPassword($value)
593
 * @method string getNotifier()
594
 * @method $this withNotifier($value)
595
 * @method string getIsForceSelectedZones()
596
 * @method $this withIsForceSelectedZones($value)
597
 * @method string getVSwitchId()
598
 * @method $this withVSwitchId($value)
599
 * @method string getUserPhoneNum()
600
 * @method $this withUserPhoneNum($value)
601
 * @method string getInstanceId()
602
 * @method $this withInstanceId($value)
603
 * @method string getVpcId()
604
 * @method $this withVpcId($value)
605
 * @method string getCrossZone()
606
 * @method $this withCrossZone($value)
607
 * @method string getName()
608
 * @method $this withName($value)
609
 * @method string getServiceVersion()
610
 * @method $this withServiceVersion($value)
611
 * @method string getZoneId()
612
 * @method $this withZoneId($value)
613
 * @method string getKMSKeyId()
614
 * @method $this withKMSKeyId($value)
615
 * @method string getConfig()
616
 * @method $this withConfig($value)
617
 * @method string getUsername()
618
 * @method $this withUsername($value)
619
 */
620
class StartInstance extends Rpc
621
{
622
}
623
624
/**
625
 * @method array getResourceId()
626
 * @method string getResourceType()
627
 * @method $this withResourceType($value)
628
 * @method string getInstanceId()
629
 * @method $this withInstanceId($value)
630
 * @method array getTag()
631
 */
632
class TagResources extends Rpc
633
{
634
635
    /**
636
     * @param array $resourceId
637
     *
638
     * @return $this
639
     */
640
	public function withResourceId(array $resourceId)
641
	{
642
	    $this->data['ResourceId'] = $resourceId;
643
		foreach ($resourceId as $i => $iValue) {
644
			$this->options['query']['ResourceId.' . ($i + 1)] = $iValue;
645
		}
646
647
		return $this;
648
    }
649
650
    /**
651
     * @param array $tag
652
     *
653
     * @return $this
654
     */
655
	public function withTag(array $tag)
656
	{
657
	    $this->data['Tag'] = $tag;
658
		foreach ($tag as $depth1 => $depth1Value) {
659
			if(isset($depth1Value['Value'])){
660
				$this->options['query']['Tag.' . ($depth1 + 1) . '.Value'] = $depth1Value['Value'];
661
			}
662
			if(isset($depth1Value['Key'])){
663
				$this->options['query']['Tag.' . ($depth1 + 1) . '.Key'] = $depth1Value['Key'];
664
			}
665
		}
666
667
		return $this;
668
    }
669
}
670
671
/**
672
 * @method string getAll()
673
 * @method $this withAll($value)
674
 * @method array getResourceId()
675
 * @method string getResourceType()
676
 * @method $this withResourceType($value)
677
 * @method array getTagKey()
678
 */
679
class UntagResources extends Rpc
680
{
681
682
    /**
683
     * @param array $resourceId
684
     *
685
     * @return $this
686
     */
687
	public function withResourceId(array $resourceId)
688
	{
689
	    $this->data['ResourceId'] = $resourceId;
690
		foreach ($resourceId as $i => $iValue) {
691
			$this->options['query']['ResourceId.' . ($i + 1)] = $iValue;
692
		}
693
694
		return $this;
695
    }
696
697
    /**
698
     * @param array $tagKey
699
     *
700
     * @return $this
701
     */
702
	public function withTagKey(array $tagKey)
703
	{
704
	    $this->data['TagKey'] = $tagKey;
705
		foreach ($tagKey as $i => $iValue) {
706
			$this->options['query']['TagKey.' . ($i + 1)] = $iValue;
707
		}
708
709
		return $this;
710
    }
711
}
712
713
/**
714
 * @method string getPortRange()
715
 * @method $this withPortRange($value)
716
 * @method string getAllowedListIp()
717
 * @method $this withAllowedListIp($value)
718
 * @method string getUpdateType()
719
 * @method $this withUpdateType($value)
720
 * @method string getAllowedListType()
721
 * @method $this withAllowedListType($value)
722
 * @method string getDescription()
723
 * @method $this withDescription($value)
724
 * @method string getInstanceId()
725
 * @method $this withInstanceId($value)
726
 */
727
class UpdateAllowedIp extends Rpc
728
{
729
}
730
731
/**
732
 * @method string getInstanceId()
733
 * @method $this withInstanceId($value)
734
 * @method string getConfig()
735
 * @method $this withConfig($value)
736
 */
737
class UpdateInstanceConfig extends Rpc
738
{
739
}
740
741
/**
742
 * @method string getTargetVersion()
743
 * @method $this withTargetVersion($value)
744
 * @method string getInstanceId()
745
 * @method $this withInstanceId($value)
746
 */
747
class UpgradeInstanceVersion extends Rpc
748
{
749
}
750
751
/**
752
 * @method string getDiskSize()
753
 * @method $this withDiskSize($value)
754
 * @method string getIoMax()
755
 * @method $this withIoMax($value)
756
 * @method string getEipModel()
757
 * @method $this withEipModel($value)
758
 * @method string getIoMaxSpec()
759
 * @method $this withIoMaxSpec($value)
760
 * @method string getTopicQuota()
761
 * @method $this withTopicQuota($value)
762
 * @method string getEipMax()
763
 * @method $this withEipMax($value)
764
 * @method string getSpecType()
765
 * @method $this withSpecType($value)
766
 * @method string getInstanceId()
767
 * @method $this withInstanceId($value)
768
 * @method string getPartitionNum()
769
 * @method $this withPartitionNum($value)
770
 */
771
class UpgradePostPayOrder extends Rpc
772
{
773
}
774
775
/**
776
 * @method string getDiskSize()
777
 * @method $this withDiskSize($value)
778
 * @method string getIoMax()
779
 * @method $this withIoMax($value)
780
 * @method string getEipModel()
781
 * @method $this withEipModel($value)
782
 * @method string getIoMaxSpec()
783
 * @method $this withIoMaxSpec($value)
784
 * @method string getTopicQuota()
785
 * @method $this withTopicQuota($value)
786
 * @method string getEipMax()
787
 * @method $this withEipMax($value)
788
 * @method string getSpecType()
789
 * @method $this withSpecType($value)
790
 * @method string getInstanceId()
791
 * @method $this withInstanceId($value)
792
 * @method string getPartitionNum()
793
 * @method $this withPartitionNum($value)
794
 */
795
class UpgradePrePayOrder extends Rpc
796
{
797
}
798