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 ( 49dedb...205db2 )
by
unknown
11:12
created

ImportCredentials   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 4
c 1
b 0
f 0
dl 0
loc 14
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A withData() 0 6 1
1
<?php
2
3
namespace AlibabaCloud\CSB\V20171118;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method ImportCredentials importCredentials(array $options = [])
9
 * @method FindServiceStatisticalData findServiceStatisticalData(array $options = [])
10
 * @method GetInstance getInstance(array $options = [])
11
 * @method DeleteCasService deleteCasService(array $options = [])
12
 * @method FindInstanceList findInstanceList(array $options = [])
13
 * @method PublishCasService publishCasService(array $options = [])
14
 * @method CommitSuccessedServices commitSuccessedServices(array $options = [])
15
 * @method DeleteUnionCasService deleteUnionCasService(array $options = [])
16
 * @method PublishUnionCasService publishUnionCasService(array $options = [])
17
 * @method UpdateServiceQPS updateServiceQPS(array $options = [])
18
 * @method DeleteServiceList deleteServiceList(array $options = [])
19
 * @method UpdateOrderList updateOrderList(array $options = [])
20
 * @method UpdateServiceListStatus updateServiceListStatus(array $options = [])
21
 * @method UpdateProjectListStatus updateProjectListStatus(array $options = [])
22
 * @method ApproveOrderList approveOrderList(array $options = [])
23
 * @method DeleteProject deleteProject(array $options = [])
24
 * @method DeleteService deleteService(array $options = [])
25
 * @method DeleteOrderList deleteOrderList(array $options = [])
26
 * @method DeleteProjectList deleteProjectList(array $options = [])
27
 * @method CreateCredentials createCredentials(array $options = [])
28
 * @method CreateService createService(array $options = [])
29
 * @method UpdateService updateService(array $options = [])
30
 * @method UpdateOrder updateOrder(array $options = [])
31
 * @method CreateOrder createOrder(array $options = [])
32
 * @method UpdateProject updateProject(array $options = [])
33
 * @method CreateProject createProject(array $options = [])
34
 * @method DeleteCredentialsList deleteCredentialsList(array $options = [])
35
 * @method FindProjectsNameList findProjectsNameList(array $options = [])
36
 * @method GetProject getProject(array $options = [])
37
 * @method GetService getService(array $options = [])
38
 * @method CheckServiceExist checkServiceExist(array $options = [])
39
 * @method GetOrder getOrder(array $options = [])
40
 * @method FindProjectList findProjectList(array $options = [])
41
 * @method FindApprovalOrderList findApprovalOrderList(array $options = [])
42
 * @method FindApproveServiceList findApproveServiceList(array $options = [])
43
 * @method FindCredentialsList findCredentialsList(array $options = [])
44
 * @method RenewCredentials renewCredentials(array $options = [])
45
 * @method ReplaceCredential replaceCredential(array $options = [])
46
 * @method FindOrderableList findOrderableList(array $options = [])
47
 * @method FindOrderedList findOrderedList(array $options = [])
48
 * @method FindServiceList findServiceList(array $options = [])
49
 */
50
class CSBApiResolver extends ApiResolver
51
{
52
}
53
54
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
55
{
56
    /** @var string */
57
    public $product = 'CSB';
58
59
    /** @var string */
60
    public $version = '2017-11-18';
61
62
    /** @var string */
63
    public $method = 'POST';
64
65
    /** @var string */
66
    protected $scheme = 'https';
67
68
    /** @var string */
69
    public $serviceCode = 'CSB';
70
}
71
72
/**
73
 * @method string getData()
74
 * @method string getCsbId()
75
 * @method $this withCsbId($value)
76
 */
77
class ImportCredentials extends Rpc
78
{
79
80
    /**
81
     * @param string $value
82
     *
83
     * @return $this
84
     */
85
    public function withData($value)
86
    {
87
        $this->data['Data'] = $value;
88
        $this->options['form_params']['Data'] = $value;
89
90
        return $this;
91
    }
92
}
93
94
/**
95
 * @method string getCsbId()
96
 * @method $this withCsbId($value)
97
 * @method string getEndTime()
98
 * @method $this withEndTime($value)
99
 * @method string getServiceName()
100
 * @method $this withServiceName($value)
101
 * @method string getStartTime()
102
 * @method $this withStartTime($value)
103
 */
104
class FindServiceStatisticalData extends Rpc
105
{
106
107
    /** @var string */
108
    public $method = 'GET';
109
}
110
111
/**
112
 * @method string getCsbId()
113
 * @method $this withCsbId($value)
114
 */
115
class GetInstance extends Rpc
116
{
117
118
    /** @var string */
119
    public $scheme = 'http';
120
121
    /** @var string */
122
    public $method = 'GET';
123
}
124
125
/**
126
 * @method string getLeafOnly()
127
 * @method $this withLeafOnly($value)
128
 * @method string getCasCsbName()
129
 * @method $this withCasCsbName($value)
130
 * @method string getSrcUserId()
131
 * @method $this withSrcUserId($value)
132
 * @method string getCasServiceId()
133
 * @method $this withCasServiceId($value)
134
 */
135
class DeleteCasService extends Rpc
136
{
137
}
138
139
/**
140
 * @method string getSearchTxt()
141
 * @method $this withSearchTxt($value)
142
 * @method string getCsbId()
143
 * @method $this withCsbId($value)
144
 * @method string getPageNum()
145
 * @method $this withPageNum($value)
146
 * @method string getStatus()
147
 * @method $this withStatus($value)
148
 */
149
class FindInstanceList extends Rpc
150
{
151
152
    /** @var string */
153
    public $scheme = 'http';
154
155
    /** @var string */
156
    public $method = 'GET';
157
}
158
159
/**
160
 * @method string getCasCsbName()
161
 * @method $this withCasCsbName($value)
162
 * @method string getData()
163
 */
164
class PublishCasService extends Rpc
165
{
166
167
    /**
168
     * @param string $value
169
     *
170
     * @return $this
171
     */
172
    public function withData($value)
173
    {
174
        $this->data['Data'] = $value;
175
        $this->options['form_params']['Data'] = $value;
176
177
        return $this;
178
    }
179
}
180
181
/**
182
 * @method string getCsbName()
183
 * @method $this withCsbName($value)
184
 * @method string getServices()
185
 */
186
class CommitSuccessedServices extends Rpc
187
{
188
189
    /**
190
     * @param string $value
191
     *
192
     * @return $this
193
     */
194
    public function withServices($value)
195
    {
196
        $this->data['Services'] = $value;
197
        $this->options['form_params']['Services'] = $value;
198
199
        return $this;
200
    }
201
}
202
203
/**
204
 * @method string getLeafOnly()
205
 * @method $this withLeafOnly($value)
206
 * @method string getCasCsbName()
207
 * @method $this withCasCsbName($value)
208
 * @method string getSrcUserId()
209
 * @method $this withSrcUserId($value)
210
 * @method string getCasServiceId()
211
 * @method $this withCasServiceId($value)
212
 */
213
class DeleteUnionCasService extends Rpc
214
{
215
}
216
217
/**
218
 * @method string getCasCsbName()
219
 * @method $this withCasCsbName($value)
220
 * @method string getData()
221
 */
222
class PublishUnionCasService extends Rpc
223
{
224
225
    /**
226
     * @param string $value
227
     *
228
     * @return $this
229
     */
230
    public function withData($value)
231
    {
232
        $this->data['Data'] = $value;
233
        $this->options['form_params']['Data'] = $value;
234
235
        return $this;
236
    }
237
}
238
239
/**
240
 * @method string getQps()
241
 * @method $this withQps($value)
242
 * @method string getServiceId()
243
 * @method $this withServiceId($value)
244
 */
245
class UpdateServiceQPS extends Rpc
246
{
247
}
248
249
/**
250
 * @method string getData()
251
 * @method string getCsbId()
252
 * @method $this withCsbId($value)
253
 */
254
class DeleteServiceList extends Rpc
255
{
256
257
    /**
258
     * @param string $value
259
     *
260
     * @return $this
261
     */
262
    public function withData($value)
263
    {
264
        $this->data['Data'] = $value;
265
        $this->options['form_params']['Data'] = $value;
266
267
        return $this;
268
    }
269
}
270
271
/**
272
 * @method string getData()
273
 */
274
class UpdateOrderList extends Rpc
275
{
276
277
    /**
278
     * @param string $value
279
     *
280
     * @return $this
281
     */
282
    public function withData($value)
283
    {
284
        $this->data['Data'] = $value;
285
        $this->options['form_params']['Data'] = $value;
286
287
        return $this;
288
    }
289
}
290
291
/**
292
 * @method string getData()
293
 * @method string getCsbId()
294
 * @method $this withCsbId($value)
295
 */
296
class UpdateServiceListStatus extends Rpc
297
{
298
299
    /**
300
     * @param string $value
301
     *
302
     * @return $this
303
     */
304
    public function withData($value)
305
    {
306
        $this->data['Data'] = $value;
307
        $this->options['form_params']['Data'] = $value;
308
309
        return $this;
310
    }
311
}
312
313
/**
314
 * @method string getData()
315
 * @method string getCsbId()
316
 * @method $this withCsbId($value)
317
 */
318
class UpdateProjectListStatus extends Rpc
319
{
320
321
    /**
322
     * @param string $value
323
     *
324
     * @return $this
325
     */
326
    public function withData($value)
327
    {
328
        $this->data['Data'] = $value;
329
        $this->options['form_params']['Data'] = $value;
330
331
        return $this;
332
    }
333
}
334
335
/**
336
 * @method string getData()
337
 */
338
class ApproveOrderList extends Rpc
339
{
340
341
    /**
342
     * @param string $value
343
     *
344
     * @return $this
345
     */
346
    public function withData($value)
347
    {
348
        $this->data['Data'] = $value;
349
        $this->options['form_params']['Data'] = $value;
350
351
        return $this;
352
    }
353
}
354
355
/**
356
 * @method string getCsbId()
357
 * @method $this withCsbId($value)
358
 * @method string getProjectId()
359
 * @method $this withProjectId($value)
360
 */
361
class DeleteProject extends Rpc
362
{
363
}
364
365
/**
366
 * @method string getServiceName()
367
 * @method $this withServiceName($value)
368
 * @method string getServiceId()
369
 * @method $this withServiceId($value)
370
 */
371
class DeleteService extends Rpc
372
{
373
}
374
375
/**
376
 * @method string getData()
377
 */
378
class DeleteOrderList extends Rpc
379
{
380
381
    /**
382
     * @param string $value
383
     *
384
     * @return $this
385
     */
386
    public function withData($value)
387
    {
388
        $this->data['Data'] = $value;
389
        $this->options['form_params']['Data'] = $value;
390
391
        return $this;
392
    }
393
}
394
395
/**
396
 * @method string getData()
397
 * @method string getCsbId()
398
 * @method $this withCsbId($value)
399
 */
400
class DeleteProjectList extends Rpc
401
{
402
403
    /**
404
     * @param string $value
405
     *
406
     * @return $this
407
     */
408
    public function withData($value)
409
    {
410
        $this->data['Data'] = $value;
411
        $this->options['form_params']['Data'] = $value;
412
413
        return $this;
414
    }
415
}
416
417
/**
418
 * @method string getData()
419
 * @method string getCsbId()
420
 * @method $this withCsbId($value)
421
 */
422
class CreateCredentials extends Rpc
423
{
424
425
    /**
426
     * @param string $value
427
     *
428
     * @return $this
429
     */
430
    public function withData($value)
431
    {
432
        $this->data['Data'] = $value;
433
        $this->options['form_params']['Data'] = $value;
434
435
        return $this;
436
    }
437
}
438
439
/**
440
 * @method string getData()
441
 * @method string getCsbId()
442
 * @method $this withCsbId($value)
443
 */
444
class CreateService extends Rpc
445
{
446
447
    /**
448
     * @param string $value
449
     *
450
     * @return $this
451
     */
452
    public function withData($value)
453
    {
454
        $this->data['Data'] = $value;
455
        $this->options['form_params']['Data'] = $value;
456
457
        return $this;
458
    }
459
}
460
461
/**
462
 * @method string getData()
463
 * @method string getCsbId()
464
 * @method $this withCsbId($value)
465
 */
466
class UpdateService extends Rpc
467
{
468
469
    /**
470
     * @param string $value
471
     *
472
     * @return $this
473
     */
474
    public function withData($value)
475
    {
476
        $this->data['Data'] = $value;
477
        $this->options['form_params']['Data'] = $value;
478
479
        return $this;
480
    }
481
}
482
483
/**
484
 * @method string getData()
485
 * @method string getCsbId()
486
 * @method $this withCsbId($value)
487
 */
488
class UpdateOrder extends Rpc
489
{
490
491
    /**
492
     * @param string $value
493
     *
494
     * @return $this
495
     */
496
    public function withData($value)
497
    {
498
        $this->data['Data'] = $value;
499
        $this->options['form_params']['Data'] = $value;
500
501
        return $this;
502
    }
503
}
504
505
/**
506
 * @method string getData()
507
 * @method string getCsbId()
508
 * @method $this withCsbId($value)
509
 */
510
class CreateOrder extends Rpc
511
{
512
513
    /**
514
     * @param string $value
515
     *
516
     * @return $this
517
     */
518
    public function withData($value)
519
    {
520
        $this->data['Data'] = $value;
521
        $this->options['form_params']['Data'] = $value;
522
523
        return $this;
524
    }
525
}
526
527
/**
528
 * @method string getData()
529
 * @method string getCsbId()
530
 * @method $this withCsbId($value)
531
 */
532
class UpdateProject extends Rpc
533
{
534
535
    /**
536
     * @param string $value
537
     *
538
     * @return $this
539
     */
540
    public function withData($value)
541
    {
542
        $this->data['Data'] = $value;
543
        $this->options['form_params']['Data'] = $value;
544
545
        return $this;
546
    }
547
}
548
549
/**
550
 * @method string getData()
551
 * @method string getCsbId()
552
 * @method $this withCsbId($value)
553
 */
554
class CreateProject extends Rpc
555
{
556
557
    /**
558
     * @param string $value
559
     *
560
     * @return $this
561
     */
562
    public function withData($value)
563
    {
564
        $this->data['Data'] = $value;
565
        $this->options['form_params']['Data'] = $value;
566
567
        return $this;
568
    }
569
}
570
571
/**
572
 * @method string getData()
573
 * @method string getIgnoreDauth()
574
 * @method $this withIgnoreDauth($value)
575
 * @method string getForce()
576
 * @method $this withForce($value)
577
 */
578
class DeleteCredentialsList extends Rpc
579
{
580
581
    /**
582
     * @param string $value
583
     *
584
     * @return $this
585
     */
586
    public function withData($value)
587
    {
588
        $this->data['Data'] = $value;
589
        $this->options['form_params']['Data'] = $value;
590
591
        return $this;
592
    }
593
}
594
595
/**
596
 * @method string getOperationFlag()
597
 * @method $this withOperationFlag($value)
598
 * @method string getCsbId()
599
 * @method $this withCsbId($value)
600
 */
601
class FindProjectsNameList extends Rpc
602
{
603
604
    /** @var string */
605
    public $method = 'GET';
606
}
607
608
/**
609
 * @method string getProjectName()
610
 * @method $this withProjectName($value)
611
 * @method string getCsbId()
612
 * @method $this withCsbId($value)
613
 */
614
class GetProject extends Rpc
615
{
616
617
    /** @var string */
618
    public $method = 'GET';
619
}
620
621
/**
622
 * @method string getCsbId()
623
 * @method $this withCsbId($value)
624
 * @method string getServiceId()
625
 * @method $this withServiceId($value)
626
 */
627
class GetService extends Rpc
628
{
629
630
    /** @var string */
631
    public $method = 'GET';
632
}
633
634
/**
635
 * @method string getCsbId()
636
 * @method $this withCsbId($value)
637
 * @method string getServiceName()
638
 * @method $this withServiceName($value)
639
 */
640
class CheckServiceExist extends Rpc
641
{
642
}
643
644
/**
645
 * @method string getOrderId()
646
 * @method $this withOrderId($value)
647
 * @method string getServiceName()
648
 * @method $this withServiceName($value)
649
 */
650
class GetOrder extends Rpc
651
{
652
653
    /** @var string */
654
    public $method = 'GET';
655
}
656
657
/**
658
 * @method string getProjectName()
659
 * @method $this withProjectName($value)
660
 * @method string getCsbId()
661
 * @method $this withCsbId($value)
662
 * @method string getPageNum()
663
 * @method $this withPageNum($value)
664
 */
665
class FindProjectList extends Rpc
666
{
667
668
    /** @var string */
669
    public $method = 'GET';
670
}
671
672
/**
673
 * @method string getProjectName()
674
 * @method $this withProjectName($value)
675
 * @method string getCsbId()
676
 * @method $this withCsbId($value)
677
 * @method string getAlias()
678
 * @method $this withAlias($value)
679
 * @method string getServiceName()
680
 * @method $this withServiceName($value)
681
 * @method string getServiceId()
682
 * @method $this withServiceId($value)
683
 * @method string getPageNum()
684
 * @method $this withPageNum($value)
685
 * @method string getOnlyPending()
686
 * @method $this withOnlyPending($value)
687
 */
688
class FindApprovalOrderList extends Rpc
689
{
690
691
    /** @var string */
692
    public $method = 'GET';
693
}
694
695
/**
696
 * @method string getProjectName()
697
 * @method $this withProjectName($value)
698
 * @method string getApproveLevel()
699
 * @method $this withApproveLevel($value)
700
 * @method string getShowDelService()
701
 * @method $this withShowDelService($value)
702
 * @method string getCsbId()
703
 * @method $this withCsbId($value)
704
 * @method string getAlias()
705
 * @method $this withAlias($value)
706
 * @method string getServiceName()
707
 * @method $this withServiceName($value)
708
 */
709
class FindApproveServiceList extends Rpc
710
{
711
712
    /** @var string */
713
    public $method = 'GET';
714
}
715
716
/**
717
 * @method string getCsbId()
718
 * @method $this withCsbId($value)
719
 * @method string getPageNum()
720
 * @method $this withPageNum($value)
721
 * @method string getGroupName()
722
 * @method $this withGroupName($value)
723
 */
724
class FindCredentialsList extends Rpc
725
{
726
727
    /** @var string */
728
    public $method = 'GET';
729
}
730
731
/**
732
 * @method string getCredentialId()
733
 * @method $this withCredentialId($value)
734
 */
735
class RenewCredentials extends Rpc
736
{
737
}
738
739
/**
740
 * @method string getCredentialId()
741
 * @method $this withCredentialId($value)
742
 */
743
class ReplaceCredential extends Rpc
744
{
745
}
746
747
/**
748
 * @method string getProjectName()
749
 * @method $this withProjectName($value)
750
 * @method string getCsbId()
751
 * @method $this withCsbId($value)
752
 * @method string getAlias()
753
 * @method $this withAlias($value)
754
 * @method string getServiceName()
755
 * @method $this withServiceName($value)
756
 * @method string getPageNum()
757
 * @method $this withPageNum($value)
758
 */
759
class FindOrderableList extends Rpc
760
{
761
762
    /** @var string */
763
    public $method = 'GET';
764
}
765
766
/**
767
 * @method string getProjectName()
768
 * @method $this withProjectName($value)
769
 * @method string getShowDelOrder()
770
 * @method $this withShowDelOrder($value)
771
 * @method string getCsbId()
772
 * @method $this withCsbId($value)
773
 * @method string getAlias()
774
 * @method $this withAlias($value)
775
 * @method string getServiceName()
776
 * @method $this withServiceName($value)
777
 * @method string getPageNum()
778
 * @method $this withPageNum($value)
779
 * @method string getServiceId()
780
 * @method $this withServiceId($value)
781
 * @method string getStatus()
782
 * @method $this withStatus($value)
783
 */
784
class FindOrderedList extends Rpc
785
{
786
787
    /** @var string */
788
    public $method = 'GET';
789
}
790
791
/**
792
 * @method string getProjectName()
793
 * @method $this withProjectName($value)
794
 * @method string getShowDelService()
795
 * @method $this withShowDelService($value)
796
 * @method string getCasShowType()
797
 * @method $this withCasShowType($value)
798
 * @method string getCsbId()
799
 * @method $this withCsbId($value)
800
 * @method string getAlias()
801
 * @method $this withAlias($value)
802
 * @method string getServiceName()
803
 * @method $this withServiceName($value)
804
 * @method string getPageNum()
805
 * @method $this withPageNum($value)
806
 */
807
class FindServiceList extends Rpc
808
{
809
810
    /** @var string */
811
    public $method = 'GET';
812
}
813