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.
Passed
Push — master ( f38619...77f9cd )
by Yong
02:07 queued 11s
created

UntagResources::withTagKey()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 8
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 8
c 0
b 0
f 0
rs 10
cc 2
nc 2
nop 1
1
<?php
2
3
namespace AlibabaCloud\PetaData\V20160101;
4
5
use AlibabaCloud\Rpc;
6
7
class V20160101Rpc extends Rpc
8
{
9
    /** @var string */
10
    public $product = 'PetaData';
11
12
    /** @var string */
13
    public $version = '2016-01-01';
14
15
    /** @var string */
16
    public $method = 'POST';
17
18
    /** @var string */
19
    public $serviceCode = 'petadata';
20
}
21
22
/**
23
 * @method string getAll()
24
 * @method $this withAll($value)
25
 * @method string getResourceOwnerId()
26
 * @method $this withResourceOwnerId($value)
27
 * @method array getResourceId()
28
 * @method string getResourceOwnerAccount()
29
 * @method $this withResourceOwnerAccount($value)
30
 * @method string getOwnerAccount()
31
 * @method $this withOwnerAccount($value)
32
 * @method string getOwnerId()
33
 * @method $this withOwnerId($value)
34
 * @method array getTagKey()
35
 * @method string getResourceType()
36
 * @method $this withResourceType($value)
37
 */
38
class UntagResources extends V20160101Rpc
39
{
40
41
    /**
42
     * @param array $value
43
     *
44
     * @return $this
45
     */
46
    public function withResourceId(array $value)
47
    {
48
        $this->data['ResourceId'] = $value;
49
        foreach ($value as $i => $iValue) {
50
            $this->options['query']['ResourceId.' . ($i + 1)] = $iValue;
51
        }
52
53
        return $this;
54
    }
55
56
    /**
57
     * @param array $value
58
     *
59
     * @return $this
60
     */
61
    public function withTagKey(array $value)
62
    {
63
        $this->data['TagKey'] = $value;
64
        foreach ($value as $i => $iValue) {
65
            $this->options['query']['TagKey.' . ($i + 1)] = $iValue;
66
        }
67
68
        return $this;
69
    }
70
}
71
72
/**
73
 * @method string getResourceOwnerId()
74
 * @method $this withResourceOwnerId($value)
75
 * @method array getResourceId()
76
 * @method string getResourceOwnerAccount()
77
 * @method $this withResourceOwnerAccount($value)
78
 * @method string getOwnerAccount()
79
 * @method $this withOwnerAccount($value)
80
 * @method array getTag()
81
 * @method string getOwnerId()
82
 * @method $this withOwnerId($value)
83
 * @method string getResourceType()
84
 * @method $this withResourceType($value)
85
 */
86
class TagResources extends V20160101Rpc
87
{
88
89
    /**
90
     * @param array $value
91
     *
92
     * @return $this
93
     */
94
    public function withResourceId(array $value)
95
    {
96
        $this->data['ResourceId'] = $value;
97
        foreach ($value as $i => $iValue) {
98
            $this->options['query']['ResourceId.' . ($i + 1)] = $iValue;
99
        }
100
101
        return $this;
102
    }
103
104
    /**
105
     * @param array $value
106
     *
107
     * @return $this
108
     */
109
    public function withTag(array $value)
110
    {
111
        $this->data['Tag'] = $value;
112
        foreach ($value as $i => $iValue) {
113
            $this->options['query']['Tag.' . ($i + 1) . '.Value'] = $value[$i]['Value'];
114
            $this->options['query']['Tag.' . ($i + 1) . '.Key'] = $value[$i]['Key'];
115
        }
116
117
        return $this;
118
    }
119
}
120
121
/**
122
 * @method string getResourceOwnerId()
123
 * @method $this withResourceOwnerId($value)
124
 * @method array getResourceId()
125
 * @method string getResourceOwnerAccount()
126
 * @method $this withResourceOwnerAccount($value)
127
 * @method string getNextToken()
128
 * @method $this withNextToken($value)
129
 * @method string getOwnerAccount()
130
 * @method $this withOwnerAccount($value)
131
 * @method array getTag()
132
 * @method string getOwnerId()
133
 * @method $this withOwnerId($value)
134
 * @method string getResourceType()
135
 * @method $this withResourceType($value)
136
 */
137
class ListTagResources extends V20160101Rpc
138
{
139
140
    /**
141
     * @param array $value
142
     *
143
     * @return $this
144
     */
145
    public function withResourceId(array $value)
146
    {
147
        $this->data['ResourceId'] = $value;
148
        foreach ($value as $i => $iValue) {
149
            $this->options['query']['ResourceId.' . ($i + 1)] = $iValue;
150
        }
151
152
        return $this;
153
    }
154
155
    /**
156
     * @param array $value
157
     *
158
     * @return $this
159
     */
160
    public function withTag(array $value)
161
    {
162
        $this->data['Tag'] = $value;
163
        foreach ($value as $i => $iValue) {
164
            $this->options['query']['Tag.' . ($i + 1) . '.Value'] = $value[$i]['Value'];
165
            $this->options['query']['Tag.' . ($i + 1) . '.Key'] = $value[$i]['Key'];
166
        }
167
168
        return $this;
169
    }
170
}
171
172
/**
173
 * @method string getResourceOwnerId()
174
 * @method $this withResourceOwnerId($value)
175
 * @method string getAccountName()
176
 * @method $this withAccountName($value)
177
 * @method string getDBName()
178
 * @method $this withDBName($value)
179
 * @method string getSecurityToken()
180
 * @method $this withSecurityToken($value)
181
 * @method string getResourceOwnerAccount()
182
 * @method $this withResourceOwnerAccount($value)
183
 * @method string getOwnerAccount()
184
 * @method $this withOwnerAccount($value)
185
 * @method string getDBInstanceId()
186
 * @method $this withDBInstanceId($value)
187
 * @method string getOwnerId()
188
 * @method $this withOwnerId($value)
189
 */
190
class RevokeAccountPrivilege extends V20160101Rpc
191
{
192
}
193
194
/**
195
 * @method string getResourceOwnerId()
196
 * @method $this withResourceOwnerId($value)
197
 * @method string getAccountName()
198
 * @method $this withAccountName($value)
199
 * @method string getDBName()
200
 * @method $this withDBName($value)
201
 * @method string getSecurityToken()
202
 * @method $this withSecurityToken($value)
203
 * @method string getResourceOwnerAccount()
204
 * @method $this withResourceOwnerAccount($value)
205
 * @method string getOwnerAccount()
206
 * @method $this withOwnerAccount($value)
207
 * @method string getDBInstanceId()
208
 * @method $this withDBInstanceId($value)
209
 * @method string getOwnerId()
210
 * @method $this withOwnerId($value)
211
 * @method string getAccountPrivilege()
212
 * @method $this withAccountPrivilege($value)
213
 */
214
class GrantAccountPrivilege extends V20160101Rpc
215
{
216
}
217
218
/**
219
 * @method string getResourceOwnerId()
220
 * @method $this withResourceOwnerId($value)
221
 * @method string getAccountName()
222
 * @method $this withAccountName($value)
223
 * @method string getSecurityToken()
224
 * @method $this withSecurityToken($value)
225
 * @method string getResourceOwnerAccount()
226
 * @method $this withResourceOwnerAccount($value)
227
 * @method string getOwnerAccount()
228
 * @method $this withOwnerAccount($value)
229
 * @method string getDBInstanceId()
230
 * @method $this withDBInstanceId($value)
231
 * @method string getOwnerId()
232
 * @method $this withOwnerId($value)
233
 * @method string getAccountDescription()
234
 * @method $this withAccountDescription($value)
235
 */
236
class ModifyAccountDescription extends V20160101Rpc
237
{
238
}
239
240
/**
241
 * @method string getResourceOwnerId()
242
 * @method $this withResourceOwnerId($value)
243
 * @method string getSecurityToken()
244
 * @method $this withSecurityToken($value)
245
 * @method string getResourceOwnerAccount()
246
 * @method $this withResourceOwnerAccount($value)
247
 * @method string getOwnerAccount()
248
 * @method $this withOwnerAccount($value)
249
 * @method string getDBInstanceId()
250
 * @method $this withDBInstanceId($value)
251
 * @method string getOwnerId()
252
 * @method $this withOwnerId($value)
253
 * @method string getCurrentConnectionString()
254
 * @method $this withCurrentConnectionString($value)
255
 */
256
class ReleaseInstancePublicConnection extends V20160101Rpc
257
{
258
}
259
260
/**
261
 * @method string getResourceOwnerId()
262
 * @method $this withResourceOwnerId($value)
263
 * @method string getConnectionStringPrefix()
264
 * @method $this withConnectionStringPrefix($value)
265
 * @method string getInstanceId()
266
 * @method $this withInstanceId($value)
267
 * @method string getSecurityToken()
268
 * @method $this withSecurityToken($value)
269
 * @method string getResourceOwnerAccount()
270
 * @method $this withResourceOwnerAccount($value)
271
 * @method string getPort()
272
 * @method $this withPort($value)
273
 * @method string getOwnerAccount()
274
 * @method $this withOwnerAccount($value)
275
 * @method string getOwnerId()
276
 * @method $this withOwnerId($value)
277
 */
278
class AllocateInstancePublicConnection extends V20160101Rpc
279
{
280
}
281
282
/**
283
 * @method string getPreferredBackupPeriod()
284
 * @method $this withPreferredBackupPeriod($value)
285
 * @method string getResourceOwnerId()
286
 * @method $this withResourceOwnerId($value)
287
 * @method string getResourceOwnerAccount()
288
 * @method $this withResourceOwnerAccount($value)
289
 * @method string getOwnerAccount()
290
 * @method $this withOwnerAccount($value)
291
 * @method string getOwnerId()
292
 * @method $this withOwnerId($value)
293
 * @method string getPreferredBackupTime()
294
 * @method $this withPreferredBackupTime($value)
295
 * @method string getBackupRetentionPeriod()
296
 * @method $this withBackupRetentionPeriod($value)
297
 * @method string getEnableBinlogBackup()
298
 * @method $this withEnableBinlogBackup($value)
299
 * @method string getInstanceId()
300
 * @method $this withInstanceId($value)
301
 * @method string getDBName()
302
 * @method $this withDBName($value)
303
 * @method string getSecurityToken()
304
 * @method $this withSecurityToken($value)
305
 */
306
class ModifyBackupPolicy extends V20160101Rpc
307
{
308
}
309
310
/**
311
 * @method string getResourceOwnerId()
312
 * @method $this withResourceOwnerId($value)
313
 * @method string getRestoreTime()
314
 * @method $this withRestoreTime($value)
315
 * @method string getSrcDBName()
316
 * @method $this withSrcDBName($value)
317
 * @method string getResourceOwnerAccount()
318
 * @method $this withResourceOwnerAccount($value)
319
 * @method string getClientToken()
320
 * @method $this withClientToken($value)
321
 * @method string getOwnerAccount()
322
 * @method $this withOwnerAccount($value)
323
 * @method string getBackupId()
324
 * @method $this withBackupId($value)
325
 * @method string getOwnerId()
326
 * @method $this withOwnerId($value)
327
 * @method string getRestoreType()
328
 * @method $this withRestoreType($value)
329
 * @method string getInstanceName()
330
 * @method $this withInstanceName($value)
331
 * @method string getSecurityToken()
332
 * @method $this withSecurityToken($value)
333
 * @method string getSrcInstanceId()
334
 * @method $this withSrcInstanceId($value)
335
 */
336
class RestoreDatabase extends V20160101Rpc
337
{
338
}
339
340
/**
341
 * @method string getResourceOwnerId()
342
 * @method $this withResourceOwnerId($value)
343
 * @method string getInstanceId()
344
 * @method $this withInstanceId($value)
345
 * @method string getDBName()
346
 * @method $this withDBName($value)
347
 * @method string getSecurityToken()
348
 * @method $this withSecurityToken($value)
349
 * @method string getResourceOwnerAccount()
350
 * @method $this withResourceOwnerAccount($value)
351
 * @method string getOwnerAccount()
352
 * @method $this withOwnerAccount($value)
353
 * @method string getOwnerId()
354
 * @method $this withOwnerId($value)
355
 */
356
class CreateDatabaseBackup extends V20160101Rpc
357
{
358
}
359
360
/**
361
 * @method string getResourceOwnerId()
362
 * @method $this withResourceOwnerId($value)
363
 * @method string getResourceOwnerAccount()
364
 * @method $this withResourceOwnerAccount($value)
365
 * @method string getOwnerAccount()
366
 * @method $this withOwnerAccount($value)
367
 * @method string getBackupId()
368
 * @method $this withBackupId($value)
369
 * @method string getEndTime()
370
 * @method $this withEndTime($value)
371
 * @method string getStartTime()
372
 * @method $this withStartTime($value)
373
 * @method string getOwnerId()
374
 * @method $this withOwnerId($value)
375
 * @method string getPageNumber()
376
 * @method $this withPageNumber($value)
377
 * @method string getBackupStatus()
378
 * @method $this withBackupStatus($value)
379
 * @method string getInstanceId()
380
 * @method $this withInstanceId($value)
381
 * @method string getDBName()
382
 * @method $this withDBName($value)
383
 * @method string getSecurityToken()
384
 * @method $this withSecurityToken($value)
385
 * @method string getPageSize()
386
 * @method $this withPageSize($value)
387
 * @method string getBackupMode()
388
 * @method $this withBackupMode($value)
389
 */
390
class DescribeDatabaseBackup extends V20160101Rpc
391
{
392
}
393
394
/**
395
 * @method string getResourceOwnerId()
396
 * @method $this withResourceOwnerId($value)
397
 * @method string getInstanceId()
398
 * @method $this withInstanceId($value)
399
 * @method string getDBName()
400
 * @method $this withDBName($value)
401
 * @method string getSecurityToken()
402
 * @method $this withSecurityToken($value)
403
 * @method string getResourceOwnerAccount()
404
 * @method $this withResourceOwnerAccount($value)
405
 * @method string getOwnerAccount()
406
 * @method $this withOwnerAccount($value)
407
 * @method string getOwnerId()
408
 * @method $this withOwnerId($value)
409
 */
410
class DescribeBackupPolicy extends V20160101Rpc
411
{
412
}
413
414
/**
415
 * @method string getVSwitchId()
416
 * @method $this withVSwitchId($value)
417
 * @method string getResourceOwnerId()
418
 * @method $this withResourceOwnerId($value)
419
 * @method string getInstanceId()
420
 * @method $this withInstanceId($value)
421
 * @method string getSecurityToken()
422
 * @method $this withSecurityToken($value)
423
 * @method string getResourceOwnerAccount()
424
 * @method $this withResourceOwnerAccount($value)
425
 * @method string getTargetNetworkType()
426
 * @method $this withTargetNetworkType($value)
427
 * @method string getOwnerAccount()
428
 * @method $this withOwnerAccount($value)
429
 * @method string getVpcId()
430
 * @method $this withVpcId($value)
431
 * @method string getOwnerId()
432
 * @method $this withOwnerId($value)
433
 */
434
class SwitchInstanceNetType extends V20160101Rpc
435
{
436
}
437
438
/**
439
 * @method string getResourceOwnerId()
440
 * @method $this withResourceOwnerId($value)
441
 * @method string getSecurityToken()
442
 * @method $this withSecurityToken($value)
443
 * @method string getResourceOwnerAccount()
444
 * @method $this withResourceOwnerAccount($value)
445
 * @method string getOwnerAccount()
446
 * @method $this withOwnerAccount($value)
447
 * @method string getOwnerId()
448
 * @method $this withOwnerId($value)
449
 */
450
class DescribeUserInfo extends V20160101Rpc
451
{
452
}
453
454
/**
455
 * @method string getResourceOwnerId()
456
 * @method $this withResourceOwnerId($value)
457
 * @method string getInstanceId()
458
 * @method $this withInstanceId($value)
459
 * @method string getAccountName()
460
 * @method $this withAccountName($value)
461
 * @method string getSecurityToken()
462
 * @method $this withSecurityToken($value)
463
 * @method string getResourceOwnerAccount()
464
 * @method $this withResourceOwnerAccount($value)
465
 * @method string getOwnerAccount()
466
 * @method $this withOwnerAccount($value)
467
 * @method string getOldPassword()
468
 * @method $this withOldPassword($value)
469
 * @method string getOwnerId()
470
 * @method $this withOwnerId($value)
471
 * @method string getNewPassword()
472
 * @method $this withNewPassword($value)
473
 */
474
class ModifyAccountPassword extends V20160101Rpc
475
{
476
}
477
478
/**
479
 * @method string getResourceOwnerId()
480
 * @method $this withResourceOwnerId($value)
481
 * @method string getInstanceId()
482
 * @method $this withInstanceId($value)
483
 * @method string getNewInstanceName()
484
 * @method $this withNewInstanceName($value)
485
 * @method string getSecurityToken()
486
 * @method $this withSecurityToken($value)
487
 * @method string getResourceOwnerAccount()
488
 * @method $this withResourceOwnerAccount($value)
489
 * @method string getOwnerAccount()
490
 * @method $this withOwnerAccount($value)
491
 * @method string getOwnerId()
492
 * @method $this withOwnerId($value)
493
 */
494
class ModifyInstanceName extends V20160101Rpc
495
{
496
}
497
498
/**
499
 * @method string getResourceOwnerId()
500
 * @method $this withResourceOwnerId($value)
501
 * @method string getModifyMode()
502
 * @method $this withModifyMode($value)
503
 * @method string getResourceOwnerAccount()
504
 * @method $this withResourceOwnerAccount($value)
505
 * @method string getOwnerAccount()
506
 * @method $this withOwnerAccount($value)
507
 * @method string getSecurityIPListAttribute()
508
 * @method $this withSecurityIPListAttribute($value)
509
 * @method string getOwnerId()
510
 * @method $this withOwnerId($value)
511
 * @method string getSecurityIPList()
512
 * @method $this withSecurityIPList($value)
513
 * @method string getInstanceId()
514
 * @method $this withInstanceId($value)
515
 * @method string getSecurityToken()
516
 * @method $this withSecurityToken($value)
517
 * @method string getSecurityIPListName()
518
 * @method $this withSecurityIPListName($value)
519
 */
520
class ModifySecurityIPs extends V20160101Rpc
521
{
522
}
523
524
/**
525
 * @method string getResourceOwnerId()
526
 * @method $this withResourceOwnerId($value)
527
 * @method string getInstanceId()
528
 * @method $this withInstanceId($value)
529
 * @method string getAccountName()
530
 * @method $this withAccountName($value)
531
 * @method string getSecurityToken()
532
 * @method $this withSecurityToken($value)
533
 * @method string getResourceOwnerAccount()
534
 * @method $this withResourceOwnerAccount($value)
535
 * @method string getOwnerAccount()
536
 * @method $this withOwnerAccount($value)
537
 * @method string getOwnerId()
538
 * @method $this withOwnerId($value)
539
 * @method string getNewPassword()
540
 * @method $this withNewPassword($value)
541
 */
542
class ResetAccountPassword extends V20160101Rpc
543
{
544
}
545
546
/**
547
 * @method string getItemLevel()
548
 * @method $this withItemLevel($value)
549
 * @method string getMonitorVersion()
550
 * @method $this withMonitorVersion($value)
551
 * @method string getResourceOwnerId()
552
 * @method $this withResourceOwnerId($value)
553
 * @method string getInstanceId()
554
 * @method $this withInstanceId($value)
555
 * @method string getSecurityToken()
556
 * @method $this withSecurityToken($value)
557
 * @method string getResourceOwnerAccount()
558
 * @method $this withResourceOwnerAccount($value)
559
 * @method string getOwnerAccount()
560
 * @method $this withOwnerAccount($value)
561
 * @method string getOwnerId()
562
 * @method $this withOwnerId($value)
563
 */
564
class DescribeMonitorItems extends V20160101Rpc
565
{
566
}
567
568
/**
569
 * @method string getResourceOwnerId()
570
 * @method $this withResourceOwnerId($value)
571
 * @method string getSecurityToken()
572
 * @method $this withSecurityToken($value)
573
 * @method string getResourceOwnerAccount()
574
 * @method $this withResourceOwnerAccount($value)
575
 * @method string getOwnerAccount()
576
 * @method $this withOwnerAccount($value)
577
 * @method string getCommodities()
578
 * @method $this withCommodities($value)
579
 * @method string getOwnerId()
580
 * @method $this withOwnerId($value)
581
 * @method string getOrderType()
582
 * @method $this withOrderType($value)
583
 */
584
class DescribePrice extends V20160101Rpc
585
{
586
}
587
588
/**
589
 * @method string getResourceOwnerId()
590
 * @method $this withResourceOwnerId($value)
591
 * @method string getSecurityToken()
592
 * @method $this withSecurityToken($value)
593
 * @method string getResourceOwnerAccount()
594
 * @method $this withResourceOwnerAccount($value)
595
 * @method string getOwnerAccount()
596
 * @method $this withOwnerAccount($value)
597
 * @method string getOwnerId()
598
 * @method $this withOwnerId($value)
599
 */
600
class DescribeRegions extends V20160101Rpc
601
{
602
}
603
604
/**
605
 * @method string getResourceOwnerId()
606
 * @method $this withResourceOwnerId($value)
607
 * @method string getInstanceId()
608
 * @method $this withInstanceId($value)
609
 * @method string getSecurityToken()
610
 * @method $this withSecurityToken($value)
611
 * @method string getResourceOwnerAccount()
612
 * @method $this withResourceOwnerAccount($value)
613
 * @method string getOwnerAccount()
614
 * @method $this withOwnerAccount($value)
615
 * @method string getOwnerId()
616
 * @method $this withOwnerId($value)
617
 */
618
class DescribeSecurityIPs extends V20160101Rpc
619
{
620
}
621
622
/**
623
 * @method string getResourceOwnerId()
624
 * @method $this withResourceOwnerId($value)
625
 * @method string getResourceOwnerAccount()
626
 * @method $this withResourceOwnerAccount($value)
627
 * @method string getOwnerAccount()
628
 * @method $this withOwnerAccount($value)
629
 * @method string getMaxRecordsPerPage()
630
 * @method $this withMaxRecordsPerPage($value)
631
 * @method string getEndTime()
632
 * @method $this withEndTime($value)
633
 * @method string getStartTime()
634
 * @method $this withStartTime($value)
635
 * @method string getOwnerId()
636
 * @method $this withOwnerId($value)
637
 * @method string getInstanceId()
638
 * @method $this withInstanceId($value)
639
 * @method string getSecurityToken()
640
 * @method $this withSecurityToken($value)
641
 * @method string getPageNumbers()
642
 * @method $this withPageNumbers($value)
643
 * @method string getTaskAction()
644
 * @method $this withTaskAction($value)
645
 * @method string getStatus()
646
 * @method $this withStatus($value)
647
 */
648
class DescribeTasks extends V20160101Rpc
649
{
650
}
651
652
/**
653
 * @method string getResourceOwnerId()
654
 * @method $this withResourceOwnerId($value)
655
 * @method string getInstanceId()
656
 * @method $this withInstanceId($value)
657
 * @method string getSecurityToken()
658
 * @method $this withSecurityToken($value)
659
 * @method string getResourceOwnerAccount()
660
 * @method $this withResourceOwnerAccount($value)
661
 * @method string getOwnerAccount()
662
 * @method $this withOwnerAccount($value)
663
 * @method string getOwnerId()
664
 * @method $this withOwnerId($value)
665
 * @method string getTaskId()
666
 * @method $this withTaskId($value)
667
 */
668
class DescribeTaskStatus extends V20160101Rpc
669
{
670
}
671
672
/**
673
 * @method string getResourceOwnerId()
674
 * @method $this withResourceOwnerId($value)
675
 * @method string getResourceOwnerAccount()
676
 * @method $this withResourceOwnerAccount($value)
677
 * @method string getOwnerAccount()
678
 * @method $this withOwnerAccount($value)
679
 * @method string getEndTime()
680
 * @method $this withEndTime($value)
681
 * @method string getStartTime()
682
 * @method $this withStartTime($value)
683
 * @method string getOwnerId()
684
 * @method $this withOwnerId($value)
685
 * @method string getKeyList()
686
 * @method $this withKeyList($value)
687
 * @method string getInstanceId()
688
 * @method $this withInstanceId($value)
689
 * @method string getDBName()
690
 * @method $this withDBName($value)
691
 * @method string getSecurityToken()
692
 * @method $this withSecurityToken($value)
693
 * @method string getMonitorGroup()
694
 * @method $this withMonitorGroup($value)
695
 * @method string getInterval()
696
 * @method $this withInterval($value)
697
 */
698
class DescribeDatabasePerformance extends V20160101Rpc
699
{
700
}
701
702
/**
703
 * @method string getResourceOwnerId()
704
 * @method $this withResourceOwnerId($value)
705
 * @method string getResourceOwnerAccount()
706
 * @method $this withResourceOwnerAccount($value)
707
 * @method string getOwnerAccount()
708
 * @method $this withOwnerAccount($value)
709
 * @method string getEndTime()
710
 * @method $this withEndTime($value)
711
 * @method string getStartTime()
712
 * @method $this withStartTime($value)
713
 * @method string getOwnerId()
714
 * @method $this withOwnerId($value)
715
 * @method string getInstanceId()
716
 * @method $this withInstanceId($value)
717
 * @method string getDBName()
718
 * @method $this withDBName($value)
719
 * @method string getSecurityToken()
720
 * @method $this withSecurityToken($value)
721
 * @method string getInterval()
722
 * @method $this withInterval($value)
723
 */
724
class DescribeDatabaseResourceUsage extends V20160101Rpc
725
{
726
}
727
728
/**
729
 * @method string getResourceOwnerId()
730
 * @method $this withResourceOwnerId($value)
731
 * @method string getInstanceId()
732
 * @method $this withInstanceId($value)
733
 * @method string getDBName()
734
 * @method $this withDBName($value)
735
 * @method string getSecurityToken()
736
 * @method $this withSecurityToken($value)
737
 * @method string getResourceOwnerAccount()
738
 * @method $this withResourceOwnerAccount($value)
739
 * @method string getOwnerAccount()
740
 * @method $this withOwnerAccount($value)
741
 * @method string getOwnerId()
742
 * @method $this withOwnerId($value)
743
 */
744
class DescribeDatabases extends V20160101Rpc
745
{
746
}
747
748
/**
749
 * @method string getResourceOwnerId()
750
 * @method $this withResourceOwnerId($value)
751
 * @method string getInstanceId()
752
 * @method $this withInstanceId($value)
753
 * @method string getSecurityToken()
754
 * @method $this withSecurityToken($value)
755
 * @method string getResourceOwnerAccount()
756
 * @method $this withResourceOwnerAccount($value)
757
 * @method string getOwnerAccount()
758
 * @method $this withOwnerAccount($value)
759
 * @method string getOwnerId()
760
 * @method $this withOwnerId($value)
761
 */
762
class DescribeInstanceInfo extends V20160101Rpc
763
{
764
}
765
766
/**
767
 * @method string getResourceOwnerId()
768
 * @method $this withResourceOwnerId($value)
769
 * @method string getInstanceStatus()
770
 * @method $this withInstanceStatus($value)
771
 * @method string getResourceOwnerAccount()
772
 * @method $this withResourceOwnerAccount($value)
773
 * @method string getOwnerAccount()
774
 * @method $this withOwnerAccount($value)
775
 * @method string getOwnerId()
776
 * @method $this withOwnerId($value)
777
 * @method string getPageNumber()
778
 * @method $this withPageNumber($value)
779
 * @method string getInstanceId()
780
 * @method $this withInstanceId($value)
781
 * @method string getSecurityToken()
782
 * @method $this withSecurityToken($value)
783
 * @method string getPageSize()
784
 * @method $this withPageSize($value)
785
 * @method string getChargeType()
786
 * @method $this withChargeType($value)
787
 */
788
class DescribeInstances extends V20160101Rpc
789
{
790
}
791
792
/**
793
 * @method string getResourceOwnerId()
794
 * @method $this withResourceOwnerId($value)
795
 * @method string getResourceOwnerAccount()
796
 * @method $this withResourceOwnerAccount($value)
797
 * @method string getOwnerAccount()
798
 * @method $this withOwnerAccount($value)
799
 * @method string getEndTime()
800
 * @method $this withEndTime($value)
801
 * @method string getStartTime()
802
 * @method $this withStartTime($value)
803
 * @method string getOwnerId()
804
 * @method $this withOwnerId($value)
805
 * @method string getKeyList()
806
 * @method $this withKeyList($value)
807
 * @method string getInstanceId()
808
 * @method $this withInstanceId($value)
809
 * @method string getSecurityToken()
810
 * @method $this withSecurityToken($value)
811
 * @method string getMonitorGroup()
812
 * @method $this withMonitorGroup($value)
813
 * @method string getInterval()
814
 * @method $this withInterval($value)
815
 */
816
class DescribeInstancePerformance extends V20160101Rpc
817
{
818
}
819
820
/**
821
 * @method string getResourceOwnerId()
822
 * @method $this withResourceOwnerId($value)
823
 * @method string getInstanceId()
824
 * @method $this withInstanceId($value)
825
 * @method string getSecurityToken()
826
 * @method $this withSecurityToken($value)
827
 * @method string getResourceOwnerAccount()
828
 * @method $this withResourceOwnerAccount($value)
829
 * @method string getOwnerAccount()
830
 * @method $this withOwnerAccount($value)
831
 * @method string getEndTime()
832
 * @method $this withEndTime($value)
833
 * @method string getInterval()
834
 * @method $this withInterval($value)
835
 * @method string getStartTime()
836
 * @method $this withStartTime($value)
837
 * @method string getOwnerId()
838
 * @method $this withOwnerId($value)
839
 */
840
class DescribeInstanceResourceUsage extends V20160101Rpc
841
{
842
}
843
844
/**
845
 * @method string getResourceOwnerId()
846
 * @method $this withResourceOwnerId($value)
847
 * @method string getInstanceId()
848
 * @method $this withInstanceId($value)
849
 * @method string getAccountName()
850
 * @method $this withAccountName($value)
851
 * @method string getSecurityToken()
852
 * @method $this withSecurityToken($value)
853
 * @method string getResourceOwnerAccount()
854
 * @method $this withResourceOwnerAccount($value)
855
 * @method string getOwnerAccount()
856
 * @method $this withOwnerAccount($value)
857
 * @method string getOwnerId()
858
 * @method $this withOwnerId($value)
859
 */
860
class DeleteAccount extends V20160101Rpc
861
{
862
}
863
864
/**
865
 * @method string getResourceOwnerId()
866
 * @method $this withResourceOwnerId($value)
867
 * @method string getInstanceId()
868
 * @method $this withInstanceId($value)
869
 * @method string getDBName()
870
 * @method $this withDBName($value)
871
 * @method string getSecurityToken()
872
 * @method $this withSecurityToken($value)
873
 * @method string getResourceOwnerAccount()
874
 * @method $this withResourceOwnerAccount($value)
875
 * @method string getClientToken()
876
 * @method $this withClientToken($value)
877
 * @method string getOwnerAccount()
878
 * @method $this withOwnerAccount($value)
879
 * @method string getOwnerId()
880
 * @method $this withOwnerId($value)
881
 */
882
class DeleteDatabase extends V20160101Rpc
883
{
884
}
885
886
/**
887
 * @method string getResourceOwnerId()
888
 * @method $this withResourceOwnerId($value)
889
 * @method string getInstanceId()
890
 * @method $this withInstanceId($value)
891
 * @method string getSecurityToken()
892
 * @method $this withSecurityToken($value)
893
 * @method string getResourceOwnerAccount()
894
 * @method $this withResourceOwnerAccount($value)
895
 * @method string getClientToken()
896
 * @method $this withClientToken($value)
897
 * @method string getOwnerAccount()
898
 * @method $this withOwnerAccount($value)
899
 * @method string getOwnerId()
900
 * @method $this withOwnerId($value)
901
 */
902
class DeleteInstance extends V20160101Rpc
903
{
904
}
905
906
/**
907
 * @method string getResourceOwnerId()
908
 * @method $this withResourceOwnerId($value)
909
 * @method string getInstanceId()
910
 * @method $this withInstanceId($value)
911
 * @method string getSecurityToken()
912
 * @method $this withSecurityToken($value)
913
 * @method string getResourceOwnerAccount()
914
 * @method $this withResourceOwnerAccount($value)
915
 * @method string getOwnerAccount()
916
 * @method $this withOwnerAccount($value)
917
 * @method string getOwnerId()
918
 * @method $this withOwnerId($value)
919
 */
920
class DescribeAccounts extends V20160101Rpc
921
{
922
}
923
924
/**
925
 * @method string getResourceOwnerId()
926
 * @method $this withResourceOwnerId($value)
927
 * @method string getInstanceId()
928
 * @method $this withInstanceId($value)
929
 * @method string getDBName()
930
 * @method $this withDBName($value)
931
 * @method string getSecurityToken()
932
 * @method $this withSecurityToken($value)
933
 * @method string getResourceOwnerAccount()
934
 * @method $this withResourceOwnerAccount($value)
935
 * @method string getOwnerAccount()
936
 * @method $this withOwnerAccount($value)
937
 * @method string getOwnerId()
938
 * @method $this withOwnerId($value)
939
 */
940
class DescribeDatabasePartitions extends V20160101Rpc
941
{
942
}
943
944
/**
945
 * @method string getResourceOwnerId()
946
 * @method $this withResourceOwnerId($value)
947
 * @method string getResourceOwnerAccount()
948
 * @method $this withResourceOwnerAccount($value)
949
 * @method string getClientToken()
950
 * @method $this withClientToken($value)
951
 * @method string getOwnerAccount()
952
 * @method $this withOwnerAccount($value)
953
 * @method string getAccountType()
954
 * @method $this withAccountType($value)
955
 * @method string getOwnerId()
956
 * @method $this withOwnerId($value)
957
 * @method string getAccountVersion()
958
 * @method $this withAccountVersion($value)
959
 * @method string getAccountDescription()
960
 * @method $this withAccountDescription($value)
961
 * @method string getAccountPrivilege()
962
 * @method $this withAccountPrivilege($value)
963
 * @method string getAccountPassword()
964
 * @method $this withAccountPassword($value)
965
 * @method string getInstanceId()
966
 * @method $this withInstanceId($value)
967
 * @method string getAccountName()
968
 * @method $this withAccountName($value)
969
 * @method string getDBName()
970
 * @method $this withDBName($value)
971
 * @method string getSecurityToken()
972
 * @method $this withSecurityToken($value)
973
 * @method string getDBInfo()
974
 * @method $this withDBInfo($value)
975
 */
976
class CreateAccount extends V20160101Rpc
977
{
978
}
979
980
/**
981
 * @method string getResourceOwnerId()
982
 * @method $this withResourceOwnerId($value)
983
 * @method string getNodeSpec()
984
 * @method $this withNodeSpec($value)
985
 * @method string getResourceOwnerAccount()
986
 * @method $this withResourceOwnerAccount($value)
987
 * @method string getOwnerAccount()
988
 * @method $this withOwnerAccount($value)
989
 * @method string getOwnerId()
990
 * @method $this withOwnerId($value)
991
 * @method string getToken()
992
 * @method $this withToken($value)
993
 * @method string getInstanceId()
994
 * @method $this withInstanceId($value)
995
 * @method string getDBName()
996
 * @method $this withDBName($value)
997
 * @method string getSecurityToken()
998
 * @method $this withSecurityToken($value)
999
 * @method string getNodeNumber()
1000
 * @method $this withNodeNumber($value)
1001
 */
1002
class CreateDatabase extends V20160101Rpc
1003
{
1004
}
1005
1006
/**
1007
 * @method string getResourceOwnerId()
1008
 * @method $this withResourceOwnerId($value)
1009
 * @method string getNodeSpec()
1010
 * @method $this withNodeSpec($value)
1011
 * @method string getResourceOwnerAccount()
1012
 * @method $this withResourceOwnerAccount($value)
1013
 * @method string getClientToken()
1014
 * @method $this withClientToken($value)
1015
 * @method string getOwnerAccount()
1016
 * @method $this withOwnerAccount($value)
1017
 * @method string getNetworkType()
1018
 * @method $this withNetworkType($value)
1019
 * @method string getOwnerId()
1020
 * @method $this withOwnerId($value)
1021
 * @method string getSecurityIPList()
1022
 * @method $this withSecurityIPList($value)
1023
 * @method string getVSwitchId()
1024
 * @method $this withVSwitchId($value)
1025
 * @method string getAccountPassword()
1026
 * @method $this withAccountPassword($value)
1027
 * @method string getInstanceName()
1028
 * @method $this withInstanceName($value)
1029
 * @method string getDBName()
1030
 * @method $this withDBName($value)
1031
 * @method string getAccountName()
1032
 * @method $this withAccountName($value)
1033
 * @method string getSecurityToken()
1034
 * @method $this withSecurityToken($value)
1035
 * @method string getNodeNumber()
1036
 * @method $this withNodeNumber($value)
1037
 * @method string getVpcId()
1038
 * @method $this withVpcId($value)
1039
 * @method string getZoneId()
1040
 * @method $this withZoneId($value)
1041
 * @method string getChargeType()
1042
 * @method $this withChargeType($value)
1043
 */
1044
class CreateInstance extends V20160101Rpc
1045
{
1046
}
1047