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 ( 7dd5b6...b3ca05 )
by
unknown
06:20
created

UpdatePipelineMember::withUserPk()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

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