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 ( 2d0a44...6633b9 )
by
unknown
06:50
created

GetDevopsProjectInfo   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 27
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 2
eloc 7
dl 0
loc 27
rs 10
c 0
b 0
f 0

2 Methods

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