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 ( 9d5512...ed04f1 )
by
unknown
06:41
created

CheckDatasetOssBucketCORS::withLabelsetId()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

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