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 ( ba34e8...e94e76 )
by
unknown
05:52
created

ListDevopsProjectTaskList::withOrgId()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
namespace AlibabaCloud\DevopsRdc\V20200303;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method BatchInsertMembers batchInsertMembers(array $options = [])
9
 * @method CancelPipeline cancelPipeline(array $options = [])
10
 * @method CheckAliyunAccountExists checkAliyunAccountExists(array $options = [])
11
 * @method CreateCredential createCredential(array $options = [])
12
 * @method CreateDevopsOrganization createDevopsOrganization(array $options = [])
13
 * @method CreateDevopsProject createDevopsProject(array $options = [])
14
 * @method CreateDevopsProjectSprint createDevopsProjectSprint(array $options = [])
15
 * @method CreateDevopsProjectTask createDevopsProjectTask(array $options = [])
16
 * @method CreatePipeline createPipeline(array $options = [])
17
 * @method CreateServiceConnection createServiceConnection(array $options = [])
18
 * @method DeleteDevopsOrganizationMembers deleteDevopsOrganizationMembers(array $options = [])
19
 * @method DeleteDevopsProject deleteDevopsProject(array $options = [])
20
 * @method DeleteDevopsProjectMembers deleteDevopsProjectMembers(array $options = [])
21
 * @method DeleteDevopsProjectSprint deleteDevopsProjectSprint(array $options = [])
22
 * @method DeleteDevopsProjectTask deleteDevopsProjectTask(array $options = [])
23
 * @method DeletePipelineMember deletePipelineMember(array $options = [])
24
 * @method ExecutePipeline executePipeline(array $options = [])
25
 * @method GetDevopsOrganizationMembers getDevopsOrganizationMembers(array $options = [])
26
 * @method GetDevopsProjectInfo getDevopsProjectInfo(array $options = [])
27
 * @method GetDevopsProjectMembers getDevopsProjectMembers(array $options = [])
28
 * @method GetDevopsProjectSprintInfo getDevopsProjectSprintInfo(array $options = [])
29
 * @method GetDevopsProjectTaskInfo getDevopsProjectTaskInfo(array $options = [])
30
 * @method GetPipelineInstanceBuildNumberStatus getPipelineInstanceBuildNumberStatus(array $options = [])
31
 * @method GetPipelineInstanceGroupStatus getPipelineInstanceGroupStatus(array $options = [])
32
 * @method GetPipelineInstanceInfo getPipelineInstanceInfo(array $options = [])
33
 * @method GetPipelineInstanceStatus getPipelineInstanceStatus(array $options = [])
34
 * @method GetPipelineLog getPipelineLog(array $options = [])
35
 * @method GetPipleineLatestInstanceStatus getPipleineLatestInstanceStatus(array $options = [])
36
 * @method GetUserByAliyunUid getUserByAliyunUid(array $options = [])
37
 * @method InsertDevopsUser insertDevopsUser(array $options = [])
38
 * @method InsertPipelineMember insertPipelineMember(array $options = [])
39
 * @method InsertProjectMembers insertProjectMembers(array $options = [])
40
 * @method ListCredentials listCredentials(array $options = [])
41
 * @method ListDevopsProjectSprints listDevopsProjectSprints(array $options = [])
42
 * @method ListDevopsProjectTaskFlow listDevopsProjectTaskFlow(array $options = [])
43
 * @method ListDevopsProjectTaskFlowStatus listDevopsProjectTaskFlowStatus(array $options = [])
44
 * @method ListDevopsProjectTaskList listDevopsProjectTaskList(array $options = [])
45
 * @method ListDevopsProjectTasks listDevopsProjectTasks(array $options = [])
46
 * @method ListDevopsScenarioFieldConfig listDevopsScenarioFieldConfig(array $options = [])
47
 * @method ListPipelines listPipelines(array $options = [])
48
 * @method ListServiceConnections listServiceConnections(array $options = [])
49
 * @method ListUserOrganization listUserOrganization(array $options = [])
50
 * @method TransferPipelineOwner transferPipelineOwner(array $options = [])
51
 * @method UpdateDevopsProject updateDevopsProject(array $options = [])
52
 * @method UpdateDevopsProjectSprint updateDevopsProjectSprint(array $options = [])
53
 * @method UpdateDevopsProjectTask updateDevopsProjectTask(array $options = [])
54
 * @method UpdatePipelineMember updatePipelineMember(array $options = [])
55
 */
56
class DevopsRdcApiResolver extends ApiResolver
57
{
58
}
59
60
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
61
{
62
    /** @var string */
63
    public $product = 'devops-rdc';
64
65
    /** @var string */
66
    public $version = '2020-03-03';
67
68
    /** @var string */
69
    public $method = 'POST';
70
}
71
72
/**
73
 * @method string getMembers()
74
 * @method string getRealPk()
75
 * @method string getOrgId()
76
 */
77
class BatchInsertMembers extends Rpc
78
{
79
80
    /**
81
     * @param string $value
82
     *
83
     * @return $this
84
     */
85
    public function withMembers($value)
86
    {
87
        $this->data['Members'] = $value;
88
        $this->options['form_params']['Members'] = $value;
89
90
        return $this;
91
    }
92
93
    /**
94
     * @param string $value
95
     *
96
     * @return $this
97
     */
98
    public function withRealPk($value)
99
    {
100
        $this->data['RealPk'] = $value;
101
        $this->options['form_params']['RealPk'] = $value;
102
103
        return $this;
104
    }
105
106
    /**
107
     * @param string $value
108
     *
109
     * @return $this
110
     */
111
    public function withOrgId($value)
112
    {
113
        $this->data['OrgId'] = $value;
114
        $this->options['form_params']['OrgId'] = $value;
115
116
        return $this;
117
    }
118
}
119
120
/**
121
 * @method string getFlowInstanceId()
122
 * @method string getUserPk()
123
 * @method string getOrgId()
124
 * @method string getPipelineId()
125
 */
126
class CancelPipeline extends Rpc
127
{
128
129
    /**
130
     * @param string $value
131
     *
132
     * @return $this
133
     */
134
    public function withFlowInstanceId($value)
135
    {
136
        $this->data['FlowInstanceId'] = $value;
137
        $this->options['form_params']['FlowInstanceId'] = $value;
138
139
        return $this;
140
    }
141
142
    /**
143
     * @param string $value
144
     *
145
     * @return $this
146
     */
147
    public function withUserPk($value)
148
    {
149
        $this->data['UserPk'] = $value;
150
        $this->options['form_params']['UserPk'] = $value;
151
152
        return $this;
153
    }
154
155
    /**
156
     * @param string $value
157
     *
158
     * @return $this
159
     */
160
    public function withOrgId($value)
161
    {
162
        $this->data['OrgId'] = $value;
163
        $this->options['form_params']['OrgId'] = $value;
164
165
        return $this;
166
    }
167
168
    /**
169
     * @param string $value
170
     *
171
     * @return $this
172
     */
173
    public function withPipelineId($value)
174
    {
175
        $this->data['PipelineId'] = $value;
176
        $this->options['form_params']['PipelineId'] = $value;
177
178
        return $this;
179
    }
180
}
181
182
/**
183
 * @method string getUserPk()
184
 */
185
class CheckAliyunAccountExists extends Rpc
186
{
187
188
    /**
189
     * @param string $value
190
     *
191
     * @return $this
192
     */
193
    public function withUserPk($value)
194
    {
195
        $this->data['UserPk'] = $value;
196
        $this->options['form_params']['UserPk'] = $value;
197
198
        return $this;
199
    }
200
}
201
202
/**
203
 * @method string getType()
204
 * @method string getUserPk()
205
 * @method string getOrgId()
206
 * @method string getPassword()
207
 * @method string getName()
208
 * @method string getUserName()
209
 */
210
class CreateCredential extends Rpc
211
{
212
213
    /**
214
     * @param string $value
215
     *
216
     * @return $this
217
     */
218
    public function withType($value)
219
    {
220
        $this->data['Type'] = $value;
221
        $this->options['form_params']['Type'] = $value;
222
223
        return $this;
224
    }
225
226
    /**
227
     * @param string $value
228
     *
229
     * @return $this
230
     */
231
    public function withUserPk($value)
232
    {
233
        $this->data['UserPk'] = $value;
234
        $this->options['form_params']['UserPk'] = $value;
235
236
        return $this;
237
    }
238
239
    /**
240
     * @param string $value
241
     *
242
     * @return $this
243
     */
244
    public function withOrgId($value)
245
    {
246
        $this->data['OrgId'] = $value;
247
        $this->options['form_params']['OrgId'] = $value;
248
249
        return $this;
250
    }
251
252
    /**
253
     * @param string $value
254
     *
255
     * @return $this
256
     */
257
    public function withPassword($value)
258
    {
259
        $this->data['Password'] = $value;
260
        $this->options['form_params']['Password'] = $value;
261
262
        return $this;
263
    }
264
265
    /**
266
     * @param string $value
267
     *
268
     * @return $this
269
     */
270
    public function withName($value)
271
    {
272
        $this->data['Name'] = $value;
273
        $this->options['form_params']['Name'] = $value;
274
275
        return $this;
276
    }
277
278
    /**
279
     * @param string $value
280
     *
281
     * @return $this
282
     */
283
    public function withUserName($value)
284
    {
285
        $this->data['UserName'] = $value;
286
        $this->options['form_params']['UserName'] = $value;
287
288
        return $this;
289
    }
290
}
291
292
/**
293
 * @method string getOrgName()
294
 * @method string getSource()
295
 * @method string getRealPk()
296
 * @method string getDesiredMemberCount()
297
 */
298
class CreateDevopsOrganization extends Rpc
299
{
300
301
    /**
302
     * @param string $value
303
     *
304
     * @return $this
305
     */
306
    public function withOrgName($value)
307
    {
308
        $this->data['OrgName'] = $value;
309
        $this->options['form_params']['OrgName'] = $value;
310
311
        return $this;
312
    }
313
314
    /**
315
     * @param string $value
316
     *
317
     * @return $this
318
     */
319
    public function withSource($value)
320
    {
321
        $this->data['Source'] = $value;
322
        $this->options['form_params']['Source'] = $value;
323
324
        return $this;
325
    }
326
327
    /**
328
     * @param string $value
329
     *
330
     * @return $this
331
     */
332
    public function withRealPk($value)
333
    {
334
        $this->data['RealPk'] = $value;
335
        $this->options['form_params']['RealPk'] = $value;
336
337
        return $this;
338
    }
339
340
    /**
341
     * @param string $value
342
     *
343
     * @return $this
344
     */
345
    public function withDesiredMemberCount($value)
346
    {
347
        $this->data['DesiredMemberCount'] = $value;
348
        $this->options['form_params']['DesiredMemberCount'] = $value;
349
350
        return $this;
351
    }
352
}
353
354
/**
355
 * @method string getName()
356
 * @method string getDescription()
357
 * @method string getOrgId()
358
 */
359
class CreateDevopsProject extends Rpc
360
{
361
362
    /**
363
     * @param string $value
364
     *
365
     * @return $this
366
     */
367
    public function withName($value)
368
    {
369
        $this->data['Name'] = $value;
370
        $this->options['form_params']['Name'] = $value;
371
372
        return $this;
373
    }
374
375
    /**
376
     * @param string $value
377
     *
378
     * @return $this
379
     */
380
    public function withDescription($value)
381
    {
382
        $this->data['Description'] = $value;
383
        $this->options['form_params']['Description'] = $value;
384
385
        return $this;
386
    }
387
388
    /**
389
     * @param string $value
390
     *
391
     * @return $this
392
     */
393
    public function withOrgId($value)
394
    {
395
        $this->data['OrgId'] = $value;
396
        $this->options['form_params']['OrgId'] = $value;
397
398
        return $this;
399
    }
400
}
401
402
/**
403
 * @method string getExecutorId()
404
 * @method string getDescription()
405
 * @method string getStartDate()
406
 * @method string getOrgId()
407
 * @method string getDueDate()
408
 * @method string getName()
409
 * @method string getProjectId()
410
 */
411
class CreateDevopsProjectSprint extends Rpc
412
{
413
414
    /**
415
     * @param string $value
416
     *
417
     * @return $this
418
     */
419
    public function withExecutorId($value)
420
    {
421
        $this->data['ExecutorId'] = $value;
422
        $this->options['form_params']['ExecutorId'] = $value;
423
424
        return $this;
425
    }
426
427
    /**
428
     * @param string $value
429
     *
430
     * @return $this
431
     */
432
    public function withDescription($value)
433
    {
434
        $this->data['Description'] = $value;
435
        $this->options['form_params']['Description'] = $value;
436
437
        return $this;
438
    }
439
440
    /**
441
     * @param string $value
442
     *
443
     * @return $this
444
     */
445
    public function withStartDate($value)
446
    {
447
        $this->data['StartDate'] = $value;
448
        $this->options['form_params']['StartDate'] = $value;
449
450
        return $this;
451
    }
452
453
    /**
454
     * @param string $value
455
     *
456
     * @return $this
457
     */
458
    public function withOrgId($value)
459
    {
460
        $this->data['OrgId'] = $value;
461
        $this->options['form_params']['OrgId'] = $value;
462
463
        return $this;
464
    }
465
466
    /**
467
     * @param string $value
468
     *
469
     * @return $this
470
     */
471
    public function withDueDate($value)
472
    {
473
        $this->data['DueDate'] = $value;
474
        $this->options['form_params']['DueDate'] = $value;
475
476
        return $this;
477
    }
478
479
    /**
480
     * @param string $value
481
     *
482
     * @return $this
483
     */
484
    public function withName($value)
485
    {
486
        $this->data['Name'] = $value;
487
        $this->options['form_params']['Name'] = $value;
488
489
        return $this;
490
    }
491
492
    /**
493
     * @param string $value
494
     *
495
     * @return $this
496
     */
497
    public function withProjectId($value)
498
    {
499
        $this->data['ProjectId'] = $value;
500
        $this->options['form_params']['ProjectId'] = $value;
501
502
        return $this;
503
    }
504
}
505
506
/**
507
 * @method string getNote()
508
 * @method string getVisible()
509
 * @method string getExecutorId()
510
 * @method string getTaskFlowStatusId()
511
 * @method string getStartDate()
512
 * @method string getPriority()
513
 * @method string getParentTaskId()
514
 * @method string getOrgId()
515
 * @method string getContent()
516
 * @method string getSprintId()
517
 * @method string getDueDate()
518
 * @method string getScenarioFieldConfigId()
519
 * @method string getProjectId()
520
 * @method string getTaskListId()
521
 */
522
class CreateDevopsProjectTask extends Rpc
523
{
524
525
    /**
526
     * @param string $value
527
     *
528
     * @return $this
529
     */
530
    public function withNote($value)
531
    {
532
        $this->data['Note'] = $value;
533
        $this->options['form_params']['Note'] = $value;
534
535
        return $this;
536
    }
537
538
    /**
539
     * @param string $value
540
     *
541
     * @return $this
542
     */
543
    public function withVisible($value)
544
    {
545
        $this->data['Visible'] = $value;
546
        $this->options['form_params']['Visible'] = $value;
547
548
        return $this;
549
    }
550
551
    /**
552
     * @param string $value
553
     *
554
     * @return $this
555
     */
556
    public function withExecutorId($value)
557
    {
558
        $this->data['ExecutorId'] = $value;
559
        $this->options['form_params']['ExecutorId'] = $value;
560
561
        return $this;
562
    }
563
564
    /**
565
     * @param string $value
566
     *
567
     * @return $this
568
     */
569
    public function withTaskFlowStatusId($value)
570
    {
571
        $this->data['TaskFlowStatusId'] = $value;
572
        $this->options['form_params']['TaskFlowStatusId'] = $value;
573
574
        return $this;
575
    }
576
577
    /**
578
     * @param string $value
579
     *
580
     * @return $this
581
     */
582
    public function withStartDate($value)
583
    {
584
        $this->data['StartDate'] = $value;
585
        $this->options['form_params']['StartDate'] = $value;
586
587
        return $this;
588
    }
589
590
    /**
591
     * @param string $value
592
     *
593
     * @return $this
594
     */
595
    public function withPriority($value)
596
    {
597
        $this->data['Priority'] = $value;
598
        $this->options['form_params']['Priority'] = $value;
599
600
        return $this;
601
    }
602
603
    /**
604
     * @param string $value
605
     *
606
     * @return $this
607
     */
608
    public function withParentTaskId($value)
609
    {
610
        $this->data['ParentTaskId'] = $value;
611
        $this->options['form_params']['ParentTaskId'] = $value;
612
613
        return $this;
614
    }
615
616
    /**
617
     * @param string $value
618
     *
619
     * @return $this
620
     */
621
    public function withOrgId($value)
622
    {
623
        $this->data['OrgId'] = $value;
624
        $this->options['form_params']['OrgId'] = $value;
625
626
        return $this;
627
    }
628
629
    /**
630
     * @param string $value
631
     *
632
     * @return $this
633
     */
634
    public function withContent($value)
635
    {
636
        $this->data['Content'] = $value;
637
        $this->options['form_params']['Content'] = $value;
638
639
        return $this;
640
    }
641
642
    /**
643
     * @param string $value
644
     *
645
     * @return $this
646
     */
647
    public function withSprintId($value)
648
    {
649
        $this->data['SprintId'] = $value;
650
        $this->options['form_params']['SprintId'] = $value;
651
652
        return $this;
653
    }
654
655
    /**
656
     * @param string $value
657
     *
658
     * @return $this
659
     */
660
    public function withDueDate($value)
661
    {
662
        $this->data['DueDate'] = $value;
663
        $this->options['form_params']['DueDate'] = $value;
664
665
        return $this;
666
    }
667
668
    /**
669
     * @param string $value
670
     *
671
     * @return $this
672
     */
673
    public function withScenarioFieldConfigId($value)
674
    {
675
        $this->data['ScenarioFieldConfigId'] = $value;
676
        $this->options['form_params']['ScenarioFieldConfigId'] = $value;
677
678
        return $this;
679
    }
680
681
    /**
682
     * @param string $value
683
     *
684
     * @return $this
685
     */
686
    public function withProjectId($value)
687
    {
688
        $this->data['ProjectId'] = $value;
689
        $this->options['form_params']['ProjectId'] = $value;
690
691
        return $this;
692
    }
693
694
    /**
695
     * @param string $value
696
     *
697
     * @return $this
698
     */
699
    public function withTaskListId($value)
700
    {
701
        $this->data['TaskListId'] = $value;
702
        $this->options['form_params']['TaskListId'] = $value;
703
704
        return $this;
705
    }
706
}
707
708
/**
709
 * @method string getPipeline()
710
 * @method string getUserPk()
711
 * @method string getOrgId()
712
 */
713
class CreatePipeline extends Rpc
714
{
715
716
    /**
717
     * @param string $value
718
     *
719
     * @return $this
720
     */
721
    public function withPipeline($value)
722
    {
723
        $this->data['Pipeline'] = $value;
724
        $this->options['form_params']['Pipeline'] = $value;
725
726
        return $this;
727
    }
728
729
    /**
730
     * @param string $value
731
     *
732
     * @return $this
733
     */
734
    public function withUserPk($value)
735
    {
736
        $this->data['UserPk'] = $value;
737
        $this->options['form_params']['UserPk'] = $value;
738
739
        return $this;
740
    }
741
742
    /**
743
     * @param string $value
744
     *
745
     * @return $this
746
     */
747
    public function withOrgId($value)
748
    {
749
        $this->data['OrgId'] = $value;
750
        $this->options['form_params']['OrgId'] = $value;
751
752
        return $this;
753
    }
754
}
755
756
/**
757
 * @method string getServiceConnectionType()
758
 * @method string getUserPk()
759
 * @method string getOrgId()
760
 */
761
class CreateServiceConnection extends Rpc
762
{
763
764
    /**
765
     * @param string $value
766
     *
767
     * @return $this
768
     */
769
    public function withServiceConnectionType($value)
770
    {
771
        $this->data['ServiceConnectionType'] = $value;
772
        $this->options['form_params']['ServiceConnectionType'] = $value;
773
774
        return $this;
775
    }
776
777
    /**
778
     * @param string $value
779
     *
780
     * @return $this
781
     */
782
    public function withUserPk($value)
783
    {
784
        $this->data['UserPk'] = $value;
785
        $this->options['form_params']['UserPk'] = $value;
786
787
        return $this;
788
    }
789
790
    /**
791
     * @param string $value
792
     *
793
     * @return $this
794
     */
795
    public function withOrgId($value)
796
    {
797
        $this->data['OrgId'] = $value;
798
        $this->options['form_params']['OrgId'] = $value;
799
800
        return $this;
801
    }
802
}
803
804
/**
805
 * @method string getRealPk()
806
 * @method string getUserId()
807
 * @method string getOrgId()
808
 */
809
class DeleteDevopsOrganizationMembers extends Rpc
810
{
811
812
    /**
813
     * @param string $value
814
     *
815
     * @return $this
816
     */
817
    public function withRealPk($value)
818
    {
819
        $this->data['RealPk'] = $value;
820
        $this->options['form_params']['RealPk'] = $value;
821
822
        return $this;
823
    }
824
825
    /**
826
     * @param string $value
827
     *
828
     * @return $this
829
     */
830
    public function withUserId($value)
831
    {
832
        $this->data['UserId'] = $value;
833
        $this->options['form_params']['UserId'] = $value;
834
835
        return $this;
836
    }
837
838
    /**
839
     * @param string $value
840
     *
841
     * @return $this
842
     */
843
    public function withOrgId($value)
844
    {
845
        $this->data['OrgId'] = $value;
846
        $this->options['form_params']['OrgId'] = $value;
847
848
        return $this;
849
    }
850
}
851
852
/**
853
 * @method string getProjectId()
854
 * @method string getOrgId()
855
 */
856
class DeleteDevopsProject extends Rpc
857
{
858
859
    /**
860
     * @param string $value
861
     *
862
     * @return $this
863
     */
864
    public function withProjectId($value)
865
    {
866
        $this->data['ProjectId'] = $value;
867
        $this->options['form_params']['ProjectId'] = $value;
868
869
        return $this;
870
    }
871
872
    /**
873
     * @param string $value
874
     *
875
     * @return $this
876
     */
877
    public function withOrgId($value)
878
    {
879
        $this->data['OrgId'] = $value;
880
        $this->options['form_params']['OrgId'] = $value;
881
882
        return $this;
883
    }
884
}
885
886
/**
887
 * @method string getUserIds()
888
 * @method string getProjectId()
889
 * @method string getOrgId()
890
 */
891
class DeleteDevopsProjectMembers extends Rpc
892
{
893
894
    /**
895
     * @param string $value
896
     *
897
     * @return $this
898
     */
899
    public function withUserIds($value)
900
    {
901
        $this->data['UserIds'] = $value;
902
        $this->options['form_params']['UserIds'] = $value;
903
904
        return $this;
905
    }
906
907
    /**
908
     * @param string $value
909
     *
910
     * @return $this
911
     */
912
    public function withProjectId($value)
913
    {
914
        $this->data['ProjectId'] = $value;
915
        $this->options['form_params']['ProjectId'] = $value;
916
917
        return $this;
918
    }
919
920
    /**
921
     * @param string $value
922
     *
923
     * @return $this
924
     */
925
    public function withOrgId($value)
926
    {
927
        $this->data['OrgId'] = $value;
928
        $this->options['form_params']['OrgId'] = $value;
929
930
        return $this;
931
    }
932
}
933
934
/**
935
 * @method string getSprintId()
936
 * @method string getOrgId()
937
 */
938
class DeleteDevopsProjectSprint extends Rpc
939
{
940
941
    /**
942
     * @param string $value
943
     *
944
     * @return $this
945
     */
946
    public function withSprintId($value)
947
    {
948
        $this->data['SprintId'] = $value;
949
        $this->options['form_params']['SprintId'] = $value;
950
951
        return $this;
952
    }
953
954
    /**
955
     * @param string $value
956
     *
957
     * @return $this
958
     */
959
    public function withOrgId($value)
960
    {
961
        $this->data['OrgId'] = $value;
962
        $this->options['form_params']['OrgId'] = $value;
963
964
        return $this;
965
    }
966
}
967
968
/**
969
 * @method string getOrgId()
970
 * @method string getTaskId()
971
 */
972
class DeleteDevopsProjectTask extends Rpc
973
{
974
975
    /**
976
     * @param string $value
977
     *
978
     * @return $this
979
     */
980
    public function withOrgId($value)
981
    {
982
        $this->data['OrgId'] = $value;
983
        $this->options['form_params']['OrgId'] = $value;
984
985
        return $this;
986
    }
987
988
    /**
989
     * @param string $value
990
     *
991
     * @return $this
992
     */
993
    public function withTaskId($value)
994
    {
995
        $this->data['TaskId'] = $value;
996
        $this->options['form_params']['TaskId'] = $value;
997
998
        return $this;
999
    }
1000
}
1001
1002
/**
1003
 * @method string getUserPk()
1004
 * @method string getUserId()
1005
 * @method string getOrgId()
1006
 * @method $this withOrgId($value)
1007
 * @method string getPipelineId()
1008
 * @method $this withPipelineId($value)
1009
 */
1010
class DeletePipelineMember extends Rpc
1011
{
1012
1013
    /**
1014
     * @param string $value
1015
     *
1016
     * @return $this
1017
     */
1018
    public function withUserPk($value)
1019
    {
1020
        $this->data['UserPk'] = $value;
1021
        $this->options['form_params']['UserPk'] = $value;
1022
1023
        return $this;
1024
    }
1025
1026
    /**
1027
     * @param string $value
1028
     *
1029
     * @return $this
1030
     */
1031
    public function withUserId($value)
1032
    {
1033
        $this->data['UserId'] = $value;
1034
        $this->options['form_params']['UserId'] = $value;
1035
1036
        return $this;
1037
    }
1038
}
1039
1040
/**
1041
 * @method string getParameters()
1042
 * @method string getUserPk()
1043
 * @method string getOrgId()
1044
 * @method string getPipelineId()
1045
 */
1046
class ExecutePipeline extends Rpc
1047
{
1048
1049
    /**
1050
     * @param string $value
1051
     *
1052
     * @return $this
1053
     */
1054
    public function withParameters($value)
1055
    {
1056
        $this->data['Parameters'] = $value;
1057
        $this->options['form_params']['Parameters'] = $value;
1058
1059
        return $this;
1060
    }
1061
1062
    /**
1063
     * @param string $value
1064
     *
1065
     * @return $this
1066
     */
1067
    public function withUserPk($value)
1068
    {
1069
        $this->data['UserPk'] = $value;
1070
        $this->options['form_params']['UserPk'] = $value;
1071
1072
        return $this;
1073
    }
1074
1075
    /**
1076
     * @param string $value
1077
     *
1078
     * @return $this
1079
     */
1080
    public function withOrgId($value)
1081
    {
1082
        $this->data['OrgId'] = $value;
1083
        $this->options['form_params']['OrgId'] = $value;
1084
1085
        return $this;
1086
    }
1087
1088
    /**
1089
     * @param string $value
1090
     *
1091
     * @return $this
1092
     */
1093
    public function withPipelineId($value)
1094
    {
1095
        $this->data['PipelineId'] = $value;
1096
        $this->options['form_params']['PipelineId'] = $value;
1097
1098
        return $this;
1099
    }
1100
}
1101
1102
/**
1103
 * @method string getOrgId()
1104
 */
1105
class GetDevopsOrganizationMembers extends Rpc
1106
{
1107
1108
    /**
1109
     * @param string $value
1110
     *
1111
     * @return $this
1112
     */
1113
    public function withOrgId($value)
1114
    {
1115
        $this->data['OrgId'] = $value;
1116
        $this->options['form_params']['OrgId'] = $value;
1117
1118
        return $this;
1119
    }
1120
}
1121
1122
/**
1123
 * @method string getProjectId()
1124
 * @method string getOrgId()
1125
 */
1126
class GetDevopsProjectInfo extends Rpc
1127
{
1128
1129
    /**
1130
     * @param string $value
1131
     *
1132
     * @return $this
1133
     */
1134
    public function withProjectId($value)
1135
    {
1136
        $this->data['ProjectId'] = $value;
1137
        $this->options['form_params']['ProjectId'] = $value;
1138
1139
        return $this;
1140
    }
1141
1142
    /**
1143
     * @param string $value
1144
     *
1145
     * @return $this
1146
     */
1147
    public function withOrgId($value)
1148
    {
1149
        $this->data['OrgId'] = $value;
1150
        $this->options['form_params']['OrgId'] = $value;
1151
1152
        return $this;
1153
    }
1154
}
1155
1156
/**
1157
 * @method string getProjectId()
1158
 * @method string getOrgId()
1159
 */
1160
class GetDevopsProjectMembers extends Rpc
1161
{
1162
1163
    /**
1164
     * @param string $value
1165
     *
1166
     * @return $this
1167
     */
1168
    public function withProjectId($value)
1169
    {
1170
        $this->data['ProjectId'] = $value;
1171
        $this->options['form_params']['ProjectId'] = $value;
1172
1173
        return $this;
1174
    }
1175
1176
    /**
1177
     * @param string $value
1178
     *
1179
     * @return $this
1180
     */
1181
    public function withOrgId($value)
1182
    {
1183
        $this->data['OrgId'] = $value;
1184
        $this->options['form_params']['OrgId'] = $value;
1185
1186
        return $this;
1187
    }
1188
}
1189
1190
/**
1191
 * @method string getSprintId()
1192
 * @method string getOrgId()
1193
 */
1194
class GetDevopsProjectSprintInfo extends Rpc
1195
{
1196
1197
    /**
1198
     * @param string $value
1199
     *
1200
     * @return $this
1201
     */
1202
    public function withSprintId($value)
1203
    {
1204
        $this->data['SprintId'] = $value;
1205
        $this->options['form_params']['SprintId'] = $value;
1206
1207
        return $this;
1208
    }
1209
1210
    /**
1211
     * @param string $value
1212
     *
1213
     * @return $this
1214
     */
1215
    public function withOrgId($value)
1216
    {
1217
        $this->data['OrgId'] = $value;
1218
        $this->options['form_params']['OrgId'] = $value;
1219
1220
        return $this;
1221
    }
1222
}
1223
1224
/**
1225
 * @method string getOrgId()
1226
 * @method string getTaskId()
1227
 */
1228
class GetDevopsProjectTaskInfo extends Rpc
1229
{
1230
1231
    /**
1232
     * @param string $value
1233
     *
1234
     * @return $this
1235
     */
1236
    public function withOrgId($value)
1237
    {
1238
        $this->data['OrgId'] = $value;
1239
        $this->options['form_params']['OrgId'] = $value;
1240
1241
        return $this;
1242
    }
1243
1244
    /**
1245
     * @param string $value
1246
     *
1247
     * @return $this
1248
     */
1249
    public function withTaskId($value)
1250
    {
1251
        $this->data['TaskId'] = $value;
1252
        $this->options['form_params']['TaskId'] = $value;
1253
1254
        return $this;
1255
    }
1256
}
1257
1258
/**
1259
 * @method string getBuildNum()
1260
 * @method string getUserPk()
1261
 * @method string getOrgId()
1262
 * @method $this withOrgId($value)
1263
 * @method string getPipelineId()
1264
 * @method $this withPipelineId($value)
1265
 */
1266
class GetPipelineInstanceBuildNumberStatus extends Rpc
1267
{
1268
1269
    /**
1270
     * @param string $value
1271
     *
1272
     * @return $this
1273
     */
1274
    public function withBuildNum($value)
1275
    {
1276
        $this->data['BuildNum'] = $value;
1277
        $this->options['form_params']['BuildNum'] = $value;
1278
1279
        return $this;
1280
    }
1281
1282
    /**
1283
     * @param string $value
1284
     *
1285
     * @return $this
1286
     */
1287
    public function withUserPk($value)
1288
    {
1289
        $this->data['UserPk'] = $value;
1290
        $this->options['form_params']['UserPk'] = $value;
1291
1292
        return $this;
1293
    }
1294
}
1295
1296
/**
1297
 * @method string getFlowInstanceId()
1298
 * @method string getUserPk()
1299
 * @method string getOrgId()
1300
 * @method $this withOrgId($value)
1301
 * @method string getPipelineId()
1302
 * @method $this withPipelineId($value)
1303
 */
1304
class GetPipelineInstanceGroupStatus extends Rpc
1305
{
1306
1307
    /**
1308
     * @param string $value
1309
     *
1310
     * @return $this
1311
     */
1312
    public function withFlowInstanceId($value)
1313
    {
1314
        $this->data['FlowInstanceId'] = $value;
1315
        $this->options['form_params']['FlowInstanceId'] = $value;
1316
1317
        return $this;
1318
    }
1319
1320
    /**
1321
     * @param string $value
1322
     *
1323
     * @return $this
1324
     */
1325
    public function withUserPk($value)
1326
    {
1327
        $this->data['UserPk'] = $value;
1328
        $this->options['form_params']['UserPk'] = $value;
1329
1330
        return $this;
1331
    }
1332
}
1333
1334
/**
1335
 * @method string getFlowInstanceId()
1336
 * @method string getUserPk()
1337
 * @method string getOrgId()
1338
 * @method string getPipelineId()
1339
 */
1340
class GetPipelineInstanceInfo extends Rpc
1341
{
1342
1343
    /**
1344
     * @param string $value
1345
     *
1346
     * @return $this
1347
     */
1348
    public function withFlowInstanceId($value)
1349
    {
1350
        $this->data['FlowInstanceId'] = $value;
1351
        $this->options['form_params']['FlowInstanceId'] = $value;
1352
1353
        return $this;
1354
    }
1355
1356
    /**
1357
     * @param string $value
1358
     *
1359
     * @return $this
1360
     */
1361
    public function withUserPk($value)
1362
    {
1363
        $this->data['UserPk'] = $value;
1364
        $this->options['form_params']['UserPk'] = $value;
1365
1366
        return $this;
1367
    }
1368
1369
    /**
1370
     * @param string $value
1371
     *
1372
     * @return $this
1373
     */
1374
    public function withOrgId($value)
1375
    {
1376
        $this->data['OrgId'] = $value;
1377
        $this->options['form_params']['OrgId'] = $value;
1378
1379
        return $this;
1380
    }
1381
1382
    /**
1383
     * @param string $value
1384
     *
1385
     * @return $this
1386
     */
1387
    public function withPipelineId($value)
1388
    {
1389
        $this->data['PipelineId'] = $value;
1390
        $this->options['form_params']['PipelineId'] = $value;
1391
1392
        return $this;
1393
    }
1394
}
1395
1396
/**
1397
 * @method string getFlowInstanceId()
1398
 * @method $this withFlowInstanceId($value)
1399
 * @method string getUserPk()
1400
 * @method string getOrgId()
1401
 * @method $this withOrgId($value)
1402
 * @method string getPipelineId()
1403
 * @method $this withPipelineId($value)
1404
 */
1405
class GetPipelineInstanceStatus extends Rpc
1406
{
1407
1408
    /**
1409
     * @param string $value
1410
     *
1411
     * @return $this
1412
     */
1413
    public function withUserPk($value)
1414
    {
1415
        $this->data['UserPk'] = $value;
1416
        $this->options['form_params']['UserPk'] = $value;
1417
1418
        return $this;
1419
    }
1420
}
1421
1422
/**
1423
 * @method string getUserPk()
1424
 * @method string getOrgId()
1425
 * @method string getPipelineId()
1426
 * @method string getJobId()
1427
 */
1428
class GetPipelineLog extends Rpc
1429
{
1430
1431
    /**
1432
     * @param string $value
1433
     *
1434
     * @return $this
1435
     */
1436
    public function withUserPk($value)
1437
    {
1438
        $this->data['UserPk'] = $value;
1439
        $this->options['form_params']['UserPk'] = $value;
1440
1441
        return $this;
1442
    }
1443
1444
    /**
1445
     * @param string $value
1446
     *
1447
     * @return $this
1448
     */
1449
    public function withOrgId($value)
1450
    {
1451
        $this->data['OrgId'] = $value;
1452
        $this->options['form_params']['OrgId'] = $value;
1453
1454
        return $this;
1455
    }
1456
1457
    /**
1458
     * @param string $value
1459
     *
1460
     * @return $this
1461
     */
1462
    public function withPipelineId($value)
1463
    {
1464
        $this->data['PipelineId'] = $value;
1465
        $this->options['form_params']['PipelineId'] = $value;
1466
1467
        return $this;
1468
    }
1469
1470
    /**
1471
     * @param string $value
1472
     *
1473
     * @return $this
1474
     */
1475
    public function withJobId($value)
1476
    {
1477
        $this->data['JobId'] = $value;
1478
        $this->options['form_params']['JobId'] = $value;
1479
1480
        return $this;
1481
    }
1482
}
1483
1484
/**
1485
 * @method string getUserPk()
1486
 * @method string getOrgId()
1487
 * @method $this withOrgId($value)
1488
 * @method string getPipelineId()
1489
 * @method $this withPipelineId($value)
1490
 */
1491
class GetPipleineLatestInstanceStatus extends Rpc
1492
{
1493
1494
    /**
1495
     * @param string $value
1496
     *
1497
     * @return $this
1498
     */
1499
    public function withUserPk($value)
1500
    {
1501
        $this->data['UserPk'] = $value;
1502
        $this->options['form_params']['UserPk'] = $value;
1503
1504
        return $this;
1505
    }
1506
}
1507
1508
/**
1509
 * @method string getUserPk()
1510
 * @method string getOrgId()
1511
 */
1512
class GetUserByAliyunUid extends Rpc
1513
{
1514
1515
    /**
1516
     * @param string $value
1517
     *
1518
     * @return $this
1519
     */
1520
    public function withUserPk($value)
1521
    {
1522
        $this->data['UserPk'] = $value;
1523
        $this->options['form_params']['UserPk'] = $value;
1524
1525
        return $this;
1526
    }
1527
1528
    /**
1529
     * @param string $value
1530
     *
1531
     * @return $this
1532
     */
1533
    public function withOrgId($value)
1534
    {
1535
        $this->data['OrgId'] = $value;
1536
        $this->options['form_params']['OrgId'] = $value;
1537
1538
        return $this;
1539
    }
1540
}
1541
1542
/**
1543
 * @method string getPhone()
1544
 * @method string getUserPk()
1545
 * @method string getEmail()
1546
 * @method string getUserName()
1547
 */
1548
class InsertDevopsUser extends Rpc
1549
{
1550
1551
    /**
1552
     * @param string $value
1553
     *
1554
     * @return $this
1555
     */
1556
    public function withPhone($value)
1557
    {
1558
        $this->data['Phone'] = $value;
1559
        $this->options['form_params']['Phone'] = $value;
1560
1561
        return $this;
1562
    }
1563
1564
    /**
1565
     * @param string $value
1566
     *
1567
     * @return $this
1568
     */
1569
    public function withUserPk($value)
1570
    {
1571
        $this->data['UserPk'] = $value;
1572
        $this->options['form_params']['UserPk'] = $value;
1573
1574
        return $this;
1575
    }
1576
1577
    /**
1578
     * @param string $value
1579
     *
1580
     * @return $this
1581
     */
1582
    public function withEmail($value)
1583
    {
1584
        $this->data['Email'] = $value;
1585
        $this->options['form_params']['Email'] = $value;
1586
1587
        return $this;
1588
    }
1589
1590
    /**
1591
     * @param string $value
1592
     *
1593
     * @return $this
1594
     */
1595
    public function withUserName($value)
1596
    {
1597
        $this->data['UserName'] = $value;
1598
        $this->options['form_params']['UserName'] = $value;
1599
1600
        return $this;
1601
    }
1602
}
1603
1604
/**
1605
 * @method string getRoleName()
1606
 * @method string getUserPk()
1607
 * @method string getUserId()
1608
 * @method string getOrgId()
1609
 * @method $this withOrgId($value)
1610
 * @method string getPipelineId()
1611
 * @method $this withPipelineId($value)
1612
 */
1613
class InsertPipelineMember extends Rpc
1614
{
1615
1616
    /**
1617
     * @param string $value
1618
     *
1619
     * @return $this
1620
     */
1621
    public function withRoleName($value)
1622
    {
1623
        $this->data['RoleName'] = $value;
1624
        $this->options['form_params']['RoleName'] = $value;
1625
1626
        return $this;
1627
    }
1628
1629
    /**
1630
     * @param string $value
1631
     *
1632
     * @return $this
1633
     */
1634
    public function withUserPk($value)
1635
    {
1636
        $this->data['UserPk'] = $value;
1637
        $this->options['form_params']['UserPk'] = $value;
1638
1639
        return $this;
1640
    }
1641
1642
    /**
1643
     * @param string $value
1644
     *
1645
     * @return $this
1646
     */
1647
    public function withUserId($value)
1648
    {
1649
        $this->data['UserId'] = $value;
1650
        $this->options['form_params']['UserId'] = $value;
1651
1652
        return $this;
1653
    }
1654
}
1655
1656
/**
1657
 * @method string getMembers()
1658
 * @method string getProjectId()
1659
 * @method string getOrgId()
1660
 */
1661
class InsertProjectMembers extends Rpc
1662
{
1663
1664
    /**
1665
     * @param string $value
1666
     *
1667
     * @return $this
1668
     */
1669
    public function withMembers($value)
1670
    {
1671
        $this->data['Members'] = $value;
1672
        $this->options['form_params']['Members'] = $value;
1673
1674
        return $this;
1675
    }
1676
1677
    /**
1678
     * @param string $value
1679
     *
1680
     * @return $this
1681
     */
1682
    public function withProjectId($value)
1683
    {
1684
        $this->data['ProjectId'] = $value;
1685
        $this->options['form_params']['ProjectId'] = $value;
1686
1687
        return $this;
1688
    }
1689
1690
    /**
1691
     * @param string $value
1692
     *
1693
     * @return $this
1694
     */
1695
    public function withOrgId($value)
1696
    {
1697
        $this->data['OrgId'] = $value;
1698
        $this->options['form_params']['OrgId'] = $value;
1699
1700
        return $this;
1701
    }
1702
}
1703
1704
/**
1705
 * @method string getUserPk()
1706
 * @method string getOrgId()
1707
 */
1708
class ListCredentials extends Rpc
1709
{
1710
1711
    /**
1712
     * @param string $value
1713
     *
1714
     * @return $this
1715
     */
1716
    public function withUserPk($value)
1717
    {
1718
        $this->data['UserPk'] = $value;
1719
        $this->options['form_params']['UserPk'] = $value;
1720
1721
        return $this;
1722
    }
1723
1724
    /**
1725
     * @param string $value
1726
     *
1727
     * @return $this
1728
     */
1729
    public function withOrgId($value)
1730
    {
1731
        $this->data['OrgId'] = $value;
1732
        $this->options['form_params']['OrgId'] = $value;
1733
1734
        return $this;
1735
    }
1736
}
1737
1738
/**
1739
 * @method string getProjectId()
1740
 * @method string getOrgId()
1741
 */
1742
class ListDevopsProjectSprints extends Rpc
1743
{
1744
1745
    /**
1746
     * @param string $value
1747
     *
1748
     * @return $this
1749
     */
1750
    public function withProjectId($value)
1751
    {
1752
        $this->data['ProjectId'] = $value;
1753
        $this->options['form_params']['ProjectId'] = $value;
1754
1755
        return $this;
1756
    }
1757
1758
    /**
1759
     * @param string $value
1760
     *
1761
     * @return $this
1762
     */
1763
    public function withOrgId($value)
1764
    {
1765
        $this->data['OrgId'] = $value;
1766
        $this->options['form_params']['OrgId'] = $value;
1767
1768
        return $this;
1769
    }
1770
}
1771
1772
/**
1773
 * @method string getProjectId()
1774
 * @method string getOrgId()
1775
 */
1776
class ListDevopsProjectTaskFlow extends Rpc
1777
{
1778
1779
    /**
1780
     * @param string $value
1781
     *
1782
     * @return $this
1783
     */
1784
    public function withProjectId($value)
1785
    {
1786
        $this->data['ProjectId'] = $value;
1787
        $this->options['form_params']['ProjectId'] = $value;
1788
1789
        return $this;
1790
    }
1791
1792
    /**
1793
     * @param string $value
1794
     *
1795
     * @return $this
1796
     */
1797
    public function withOrgId($value)
1798
    {
1799
        $this->data['OrgId'] = $value;
1800
        $this->options['form_params']['OrgId'] = $value;
1801
1802
        return $this;
1803
    }
1804
}
1805
1806
/**
1807
 * @method string getTaskFlowId()
1808
 * @method string getOrgId()
1809
 */
1810
class ListDevopsProjectTaskFlowStatus extends Rpc
1811
{
1812
1813
    /**
1814
     * @param string $value
1815
     *
1816
     * @return $this
1817
     */
1818
    public function withTaskFlowId($value)
1819
    {
1820
        $this->data['TaskFlowId'] = $value;
1821
        $this->options['form_params']['TaskFlowId'] = $value;
1822
1823
        return $this;
1824
    }
1825
1826
    /**
1827
     * @param string $value
1828
     *
1829
     * @return $this
1830
     */
1831
    public function withOrgId($value)
1832
    {
1833
        $this->data['OrgId'] = $value;
1834
        $this->options['form_params']['OrgId'] = $value;
1835
1836
        return $this;
1837
    }
1838
}
1839
1840
/**
1841
 * @method string getProjectId()
1842
 * @method string getOrgId()
1843
 */
1844
class ListDevopsProjectTaskList extends Rpc
1845
{
1846
1847
    /**
1848
     * @param string $value
1849
     *
1850
     * @return $this
1851
     */
1852
    public function withProjectId($value)
1853
    {
1854
        $this->data['ProjectId'] = $value;
1855
        $this->options['form_params']['ProjectId'] = $value;
1856
1857
        return $this;
1858
    }
1859
1860
    /**
1861
     * @param string $value
1862
     *
1863
     * @return $this
1864
     */
1865
    public function withOrgId($value)
1866
    {
1867
        $this->data['OrgId'] = $value;
1868
        $this->options['form_params']['OrgId'] = $value;
1869
1870
        return $this;
1871
    }
1872
}
1873
1874
/**
1875
 * @method string getProjectIds()
1876
 * @method string getOrgId()
1877
 */
1878
class ListDevopsProjectTasks extends Rpc
1879
{
1880
1881
    /**
1882
     * @param string $value
1883
     *
1884
     * @return $this
1885
     */
1886
    public function withProjectIds($value)
1887
    {
1888
        $this->data['ProjectIds'] = $value;
1889
        $this->options['form_params']['ProjectIds'] = $value;
1890
1891
        return $this;
1892
    }
1893
1894
    /**
1895
     * @param string $value
1896
     *
1897
     * @return $this
1898
     */
1899
    public function withOrgId($value)
1900
    {
1901
        $this->data['OrgId'] = $value;
1902
        $this->options['form_params']['OrgId'] = $value;
1903
1904
        return $this;
1905
    }
1906
}
1907
1908
/**
1909
 * @method string getProjectId()
1910
 * @method string getOrgId()
1911
 */
1912
class ListDevopsScenarioFieldConfig extends Rpc
1913
{
1914
1915
    /**
1916
     * @param string $value
1917
     *
1918
     * @return $this
1919
     */
1920
    public function withProjectId($value)
1921
    {
1922
        $this->data['ProjectId'] = $value;
1923
        $this->options['form_params']['ProjectId'] = $value;
1924
1925
        return $this;
1926
    }
1927
1928
    /**
1929
     * @param string $value
1930
     *
1931
     * @return $this
1932
     */
1933
    public function withOrgId($value)
1934
    {
1935
        $this->data['OrgId'] = $value;
1936
        $this->options['form_params']['OrgId'] = $value;
1937
1938
        return $this;
1939
    }
1940
}
1941
1942
/**
1943
 * @method string getPipelineName()
1944
 * @method string getResultStatusList()
1945
 * @method string getCreators()
1946
 * @method string getExecuteEndTime()
1947
 * @method string getUserPk()
1948
 * @method string getOrgId()
1949
 * @method $this withOrgId($value)
1950
 * @method string getCreateStartTime()
1951
 * @method string getOperators()
1952
 * @method string getPageSize()
1953
 * @method string getExecuteStartTime()
1954
 * @method string getPageStart()
1955
 * @method string getCreateEndTime()
1956
 */
1957
class ListPipelines extends Rpc
1958
{
1959
1960
    /**
1961
     * @param string $value
1962
     *
1963
     * @return $this
1964
     */
1965
    public function withPipelineName($value)
1966
    {
1967
        $this->data['PipelineName'] = $value;
1968
        $this->options['form_params']['PipelineName'] = $value;
1969
1970
        return $this;
1971
    }
1972
1973
    /**
1974
     * @param string $value
1975
     *
1976
     * @return $this
1977
     */
1978
    public function withResultStatusList($value)
1979
    {
1980
        $this->data['ResultStatusList'] = $value;
1981
        $this->options['form_params']['ResultStatusList'] = $value;
1982
1983
        return $this;
1984
    }
1985
1986
    /**
1987
     * @param string $value
1988
     *
1989
     * @return $this
1990
     */
1991
    public function withCreators($value)
1992
    {
1993
        $this->data['Creators'] = $value;
1994
        $this->options['form_params']['Creators'] = $value;
1995
1996
        return $this;
1997
    }
1998
1999
    /**
2000
     * @param string $value
2001
     *
2002
     * @return $this
2003
     */
2004
    public function withExecuteEndTime($value)
2005
    {
2006
        $this->data['ExecuteEndTime'] = $value;
2007
        $this->options['form_params']['ExecuteEndTime'] = $value;
2008
2009
        return $this;
2010
    }
2011
2012
    /**
2013
     * @param string $value
2014
     *
2015
     * @return $this
2016
     */
2017
    public function withUserPk($value)
2018
    {
2019
        $this->data['UserPk'] = $value;
2020
        $this->options['form_params']['UserPk'] = $value;
2021
2022
        return $this;
2023
    }
2024
2025
    /**
2026
     * @param string $value
2027
     *
2028
     * @return $this
2029
     */
2030
    public function withCreateStartTime($value)
2031
    {
2032
        $this->data['CreateStartTime'] = $value;
2033
        $this->options['form_params']['CreateStartTime'] = $value;
2034
2035
        return $this;
2036
    }
2037
2038
    /**
2039
     * @param string $value
2040
     *
2041
     * @return $this
2042
     */
2043
    public function withOperators($value)
2044
    {
2045
        $this->data['Operators'] = $value;
2046
        $this->options['form_params']['Operators'] = $value;
2047
2048
        return $this;
2049
    }
2050
2051
    /**
2052
     * @param string $value
2053
     *
2054
     * @return $this
2055
     */
2056
    public function withPageSize($value)
2057
    {
2058
        $this->data['PageSize'] = $value;
2059
        $this->options['form_params']['PageSize'] = $value;
2060
2061
        return $this;
2062
    }
2063
2064
    /**
2065
     * @param string $value
2066
     *
2067
     * @return $this
2068
     */
2069
    public function withExecuteStartTime($value)
2070
    {
2071
        $this->data['ExecuteStartTime'] = $value;
2072
        $this->options['form_params']['ExecuteStartTime'] = $value;
2073
2074
        return $this;
2075
    }
2076
2077
    /**
2078
     * @param string $value
2079
     *
2080
     * @return $this
2081
     */
2082
    public function withPageStart($value)
2083
    {
2084
        $this->data['PageStart'] = $value;
2085
        $this->options['form_params']['PageStart'] = $value;
2086
2087
        return $this;
2088
    }
2089
2090
    /**
2091
     * @param string $value
2092
     *
2093
     * @return $this
2094
     */
2095
    public function withCreateEndTime($value)
2096
    {
2097
        $this->data['CreateEndTime'] = $value;
2098
        $this->options['form_params']['CreateEndTime'] = $value;
2099
2100
        return $this;
2101
    }
2102
}
2103
2104
/**
2105
 * @method string getScType()
2106
 * @method string getUserPk()
2107
 * @method string getOrgId()
2108
 */
2109
class ListServiceConnections extends Rpc
2110
{
2111
2112
    /**
2113
     * @param string $value
2114
     *
2115
     * @return $this
2116
     */
2117
    public function withScType($value)
2118
    {
2119
        $this->data['ScType'] = $value;
2120
        $this->options['form_params']['ScType'] = $value;
2121
2122
        return $this;
2123
    }
2124
2125
    /**
2126
     * @param string $value
2127
     *
2128
     * @return $this
2129
     */
2130
    public function withUserPk($value)
2131
    {
2132
        $this->data['UserPk'] = $value;
2133
        $this->options['form_params']['UserPk'] = $value;
2134
2135
        return $this;
2136
    }
2137
2138
    /**
2139
     * @param string $value
2140
     *
2141
     * @return $this
2142
     */
2143
    public function withOrgId($value)
2144
    {
2145
        $this->data['OrgId'] = $value;
2146
        $this->options['form_params']['OrgId'] = $value;
2147
2148
        return $this;
2149
    }
2150
}
2151
2152
/**
2153
 * @method string getRealPk()
2154
 */
2155
class ListUserOrganization extends Rpc
2156
{
2157
2158
    /**
2159
     * @param string $value
2160
     *
2161
     * @return $this
2162
     */
2163
    public function withRealPk($value)
2164
    {
2165
        $this->data['RealPk'] = $value;
2166
        $this->options['form_params']['RealPk'] = $value;
2167
2168
        return $this;
2169
    }
2170
}
2171
2172
/**
2173
 * @method string getUserPk()
2174
 * @method string getOrgId()
2175
 * @method $this withOrgId($value)
2176
 * @method string getPipelineId()
2177
 * @method $this withPipelineId($value)
2178
 * @method string getNewOwnerId()
2179
 */
2180
class TransferPipelineOwner extends Rpc
2181
{
2182
2183
    /**
2184
     * @param string $value
2185
     *
2186
     * @return $this
2187
     */
2188
    public function withUserPk($value)
2189
    {
2190
        $this->data['UserPk'] = $value;
2191
        $this->options['form_params']['UserPk'] = $value;
2192
2193
        return $this;
2194
    }
2195
2196
    /**
2197
     * @param string $value
2198
     *
2199
     * @return $this
2200
     */
2201
    public function withNewOwnerId($value)
2202
    {
2203
        $this->data['NewOwnerId'] = $value;
2204
        $this->options['form_params']['NewOwnerId'] = $value;
2205
2206
        return $this;
2207
    }
2208
}
2209
2210
/**
2211
 * @method string getName()
2212
 * @method string getDescription()
2213
 * @method string getProjectId()
2214
 * @method string getOrgId()
2215
 */
2216
class UpdateDevopsProject extends Rpc
2217
{
2218
2219
    /**
2220
     * @param string $value
2221
     *
2222
     * @return $this
2223
     */
2224
    public function withName($value)
2225
    {
2226
        $this->data['Name'] = $value;
2227
        $this->options['form_params']['Name'] = $value;
2228
2229
        return $this;
2230
    }
2231
2232
    /**
2233
     * @param string $value
2234
     *
2235
     * @return $this
2236
     */
2237
    public function withDescription($value)
2238
    {
2239
        $this->data['Description'] = $value;
2240
        $this->options['form_params']['Description'] = $value;
2241
2242
        return $this;
2243
    }
2244
2245
    /**
2246
     * @param string $value
2247
     *
2248
     * @return $this
2249
     */
2250
    public function withProjectId($value)
2251
    {
2252
        $this->data['ProjectId'] = $value;
2253
        $this->options['form_params']['ProjectId'] = $value;
2254
2255
        return $this;
2256
    }
2257
2258
    /**
2259
     * @param string $value
2260
     *
2261
     * @return $this
2262
     */
2263
    public function withOrgId($value)
2264
    {
2265
        $this->data['OrgId'] = $value;
2266
        $this->options['form_params']['OrgId'] = $value;
2267
2268
        return $this;
2269
    }
2270
}
2271
2272
/**
2273
 * @method string getExecutorId()
2274
 * @method string getDescription()
2275
 * @method string getStartDate()
2276
 * @method string getOrgId()
2277
 * @method string getSprintId()
2278
 * @method string getDueDate()
2279
 * @method string getName()
2280
 * @method string getProjectId()
2281
 */
2282
class UpdateDevopsProjectSprint extends Rpc
2283
{
2284
2285
    /**
2286
     * @param string $value
2287
     *
2288
     * @return $this
2289
     */
2290
    public function withExecutorId($value)
2291
    {
2292
        $this->data['ExecutorId'] = $value;
2293
        $this->options['form_params']['ExecutorId'] = $value;
2294
2295
        return $this;
2296
    }
2297
2298
    /**
2299
     * @param string $value
2300
     *
2301
     * @return $this
2302
     */
2303
    public function withDescription($value)
2304
    {
2305
        $this->data['Description'] = $value;
2306
        $this->options['form_params']['Description'] = $value;
2307
2308
        return $this;
2309
    }
2310
2311
    /**
2312
     * @param string $value
2313
     *
2314
     * @return $this
2315
     */
2316
    public function withStartDate($value)
2317
    {
2318
        $this->data['StartDate'] = $value;
2319
        $this->options['form_params']['StartDate'] = $value;
2320
2321
        return $this;
2322
    }
2323
2324
    /**
2325
     * @param string $value
2326
     *
2327
     * @return $this
2328
     */
2329
    public function withOrgId($value)
2330
    {
2331
        $this->data['OrgId'] = $value;
2332
        $this->options['form_params']['OrgId'] = $value;
2333
2334
        return $this;
2335
    }
2336
2337
    /**
2338
     * @param string $value
2339
     *
2340
     * @return $this
2341
     */
2342
    public function withSprintId($value)
2343
    {
2344
        $this->data['SprintId'] = $value;
2345
        $this->options['form_params']['SprintId'] = $value;
2346
2347
        return $this;
2348
    }
2349
2350
    /**
2351
     * @param string $value
2352
     *
2353
     * @return $this
2354
     */
2355
    public function withDueDate($value)
2356
    {
2357
        $this->data['DueDate'] = $value;
2358
        $this->options['form_params']['DueDate'] = $value;
2359
2360
        return $this;
2361
    }
2362
2363
    /**
2364
     * @param string $value
2365
     *
2366
     * @return $this
2367
     */
2368
    public function withName($value)
2369
    {
2370
        $this->data['Name'] = $value;
2371
        $this->options['form_params']['Name'] = $value;
2372
2373
        return $this;
2374
    }
2375
2376
    /**
2377
     * @param string $value
2378
     *
2379
     * @return $this
2380
     */
2381
    public function withProjectId($value)
2382
    {
2383
        $this->data['ProjectId'] = $value;
2384
        $this->options['form_params']['ProjectId'] = $value;
2385
2386
        return $this;
2387
    }
2388
}
2389
2390
/**
2391
 * @method string getNote()
2392
 * @method string getVisible()
2393
 * @method string getExecutorId()
2394
 * @method string getTaskFlowStatusId()
2395
 * @method string getScenarioFiieldConfigId()
2396
 * @method string getStartDate()
2397
 * @method string getPriority()
2398
 * @method string getParentTaskId()
2399
 * @method string getOrgId()
2400
 * @method string getContent()
2401
 * @method string getSprintId()
2402
 * @method string getDueDate()
2403
 * @method string getProjectId()
2404
 * @method string getTaskId()
2405
 */
2406
class UpdateDevopsProjectTask extends Rpc
2407
{
2408
2409
    /**
2410
     * @param string $value
2411
     *
2412
     * @return $this
2413
     */
2414
    public function withNote($value)
2415
    {
2416
        $this->data['Note'] = $value;
2417
        $this->options['form_params']['Note'] = $value;
2418
2419
        return $this;
2420
    }
2421
2422
    /**
2423
     * @param string $value
2424
     *
2425
     * @return $this
2426
     */
2427
    public function withVisible($value)
2428
    {
2429
        $this->data['Visible'] = $value;
2430
        $this->options['form_params']['Visible'] = $value;
2431
2432
        return $this;
2433
    }
2434
2435
    /**
2436
     * @param string $value
2437
     *
2438
     * @return $this
2439
     */
2440
    public function withExecutorId($value)
2441
    {
2442
        $this->data['ExecutorId'] = $value;
2443
        $this->options['form_params']['ExecutorId'] = $value;
2444
2445
        return $this;
2446
    }
2447
2448
    /**
2449
     * @param string $value
2450
     *
2451
     * @return $this
2452
     */
2453
    public function withTaskFlowStatusId($value)
2454
    {
2455
        $this->data['TaskFlowStatusId'] = $value;
2456
        $this->options['form_params']['TaskFlowStatusId'] = $value;
2457
2458
        return $this;
2459
    }
2460
2461
    /**
2462
     * @param string $value
2463
     *
2464
     * @return $this
2465
     */
2466
    public function withScenarioFiieldConfigId($value)
2467
    {
2468
        $this->data['ScenarioFiieldConfigId'] = $value;
2469
        $this->options['form_params']['ScenarioFiieldConfigId'] = $value;
2470
2471
        return $this;
2472
    }
2473
2474
    /**
2475
     * @param string $value
2476
     *
2477
     * @return $this
2478
     */
2479
    public function withStartDate($value)
2480
    {
2481
        $this->data['StartDate'] = $value;
2482
        $this->options['form_params']['StartDate'] = $value;
2483
2484
        return $this;
2485
    }
2486
2487
    /**
2488
     * @param string $value
2489
     *
2490
     * @return $this
2491
     */
2492
    public function withPriority($value)
2493
    {
2494
        $this->data['Priority'] = $value;
2495
        $this->options['form_params']['Priority'] = $value;
2496
2497
        return $this;
2498
    }
2499
2500
    /**
2501
     * @param string $value
2502
     *
2503
     * @return $this
2504
     */
2505
    public function withParentTaskId($value)
2506
    {
2507
        $this->data['ParentTaskId'] = $value;
2508
        $this->options['form_params']['ParentTaskId'] = $value;
2509
2510
        return $this;
2511
    }
2512
2513
    /**
2514
     * @param string $value
2515
     *
2516
     * @return $this
2517
     */
2518
    public function withOrgId($value)
2519
    {
2520
        $this->data['OrgId'] = $value;
2521
        $this->options['form_params']['OrgId'] = $value;
2522
2523
        return $this;
2524
    }
2525
2526
    /**
2527
     * @param string $value
2528
     *
2529
     * @return $this
2530
     */
2531
    public function withContent($value)
2532
    {
2533
        $this->data['Content'] = $value;
2534
        $this->options['form_params']['Content'] = $value;
2535
2536
        return $this;
2537
    }
2538
2539
    /**
2540
     * @param string $value
2541
     *
2542
     * @return $this
2543
     */
2544
    public function withSprintId($value)
2545
    {
2546
        $this->data['SprintId'] = $value;
2547
        $this->options['form_params']['SprintId'] = $value;
2548
2549
        return $this;
2550
    }
2551
2552
    /**
2553
     * @param string $value
2554
     *
2555
     * @return $this
2556
     */
2557
    public function withDueDate($value)
2558
    {
2559
        $this->data['DueDate'] = $value;
2560
        $this->options['form_params']['DueDate'] = $value;
2561
2562
        return $this;
2563
    }
2564
2565
    /**
2566
     * @param string $value
2567
     *
2568
     * @return $this
2569
     */
2570
    public function withProjectId($value)
2571
    {
2572
        $this->data['ProjectId'] = $value;
2573
        $this->options['form_params']['ProjectId'] = $value;
2574
2575
        return $this;
2576
    }
2577
2578
    /**
2579
     * @param string $value
2580
     *
2581
     * @return $this
2582
     */
2583
    public function withTaskId($value)
2584
    {
2585
        $this->data['TaskId'] = $value;
2586
        $this->options['form_params']['TaskId'] = $value;
2587
2588
        return $this;
2589
    }
2590
}
2591
2592
/**
2593
 * @method string getRoleName()
2594
 * @method string getUserPk()
2595
 * @method string getUserId()
2596
 * @method string getOrgId()
2597
 * @method $this withOrgId($value)
2598
 * @method string getPipelineId()
2599
 * @method $this withPipelineId($value)
2600
 */
2601
class UpdatePipelineMember extends Rpc
2602
{
2603
2604
    /**
2605
     * @param string $value
2606
     *
2607
     * @return $this
2608
     */
2609
    public function withRoleName($value)
2610
    {
2611
        $this->data['RoleName'] = $value;
2612
        $this->options['form_params']['RoleName'] = $value;
2613
2614
        return $this;
2615
    }
2616
2617
    /**
2618
     * @param string $value
2619
     *
2620
     * @return $this
2621
     */
2622
    public function withUserPk($value)
2623
    {
2624
        $this->data['UserPk'] = $value;
2625
        $this->options['form_params']['UserPk'] = $value;
2626
2627
        return $this;
2628
    }
2629
2630
    /**
2631
     * @param string $value
2632
     *
2633
     * @return $this
2634
     */
2635
    public function withUserId($value)
2636
    {
2637
        $this->data['UserId'] = $value;
2638
        $this->options['form_params']['UserId'] = $value;
2639
2640
        return $this;
2641
    }
2642
}
2643