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 ( e9e379...339ce5 )
by
unknown
06:38
created

GetServiceQps::withCallerParentIdList()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

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