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 ( 50abf8...51079a )
by
unknown
11:40 queued 05:34
created

withSparkModuleReleaseName()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 6
rs 10
cc 1
nc 1
nop 1
1
<?php
2
3
namespace AlibabaCloud\OpenanalyticsOpen\V20180619;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method AddAccount addAccount(array $options = [])
9
 * @method AddEndPoint addEndPoint(array $options = [])
10
 * @method BindingRamUidToDlaAccount bindingRamUidToDlaAccount(array $options = [])
11
 * @method CreateInstance createInstance(array $options = [])
12
 * @method CreateServiceLinkedRole createServiceLinkedRole(array $options = [])
13
 * @method CreateUserNetConfig createUserNetConfig(array $options = [])
14
 * @method CreateVirtualClusterForSpark createVirtualClusterForSpark(array $options = [])
15
 * @method DecodeStsToken decodeStsToken(array $options = [])
16
 * @method DeleteAccount deleteAccount(array $options = [])
17
 * @method DeleteUserNetConfig deleteUserNetConfig(array $options = [])
18
 * @method DescribeCapacity describeCapacity(array $options = [])
19
 * @method DescribeDataLakeAnalyticsService describeDataLakeAnalyticsService(array $options = [])
20
 * @method DescribeRegionList describeRegionList(array $options = [])
21
 * @method DescribeVirtualCluster describeVirtualCluster(array $options = [])
22
 * @method DescribeVirtualClusterV2 describeVirtualClusterV2(array $options = [])
23
 * @method DestroyVirtualCluster destroyVirtualCluster(array $options = [])
24
 * @method ForbidAutomaticMetaSyncAsIntegrationAccount forbidAutomaticMetaSyncAsIntegrationAccount(array $options = [])
25
 * @method GetAllowIP getAllowIP(array $options = [])
26
 * @method GetConsolePermission getConsolePermission(array $options = [])
27
 * @method GetDLAServiceStatus getDLAServiceStatus(array $options = [])
28
 * @method GetEndPoint getEndPoint(array $options = [])
29
 * @method GetEndPointByDomain getEndPointByDomain(array $options = [])
30
 * @method GetJobDetail getJobDetail(array $options = [])
31
 * @method GetJobLog getJobLog(array $options = [])
32
 * @method GetJobStatus getJobStatus(array $options = [])
33
 * @method GetRegionStatus getRegionStatus(array $options = [])
34
 * @method GetServiceLinkedRoleStatus getServiceLinkedRoleStatus(array $options = [])
35
 * @method InitializeDLAService initializeDLAService(array $options = [])
36
 * @method InitializeRegion initializeRegion(array $options = [])
37
 * @method KillSparkJob killSparkJob(array $options = [])
38
 * @method ListAlreadyBingingRamUid listAlreadyBingingRamUid(array $options = [])
39
 * @method ListModulesRelease listModulesRelease(array $options = [])
40
 * @method ListResourcesSpec listResourcesSpec(array $options = [])
41
 * @method ListSparkJob listSparkJob(array $options = [])
42
 * @method ListVirtualClusters listVirtualClusters(array $options = [])
43
 * @method ModifyVirtualCluster modifyVirtualCluster(array $options = [])
44
 * @method ModifyVirtualClusterForSpark modifyVirtualClusterForSpark(array $options = [])
45
 * @method OpenDataLakeAnalyticsService openDataLakeAnalyticsService(array $options = [])
46
 * @method QueryAccountList queryAccountList(array $options = [])
47
 * @method QueryDataSourceDef queryDataSourceDef(array $options = [])
48
 * @method QueryDiscountList queryDiscountList(array $options = [])
49
 * @method QueryEndPointList queryEndPointList(array $options = [])
50
 * @method QueryServiceAccountList queryServiceAccountList(array $options = [])
51
 * @method QueryTaskSum queryTaskSum(array $options = [])
52
 * @method ReleaseInstance releaseInstance(array $options = [])
53
 * @method RemoveEndPoint removeEndPoint(array $options = [])
54
 * @method ResetMainPassword resetMainPassword(array $options = [])
55
 * @method SetAllowIP setAllowIP(array $options = [])
56
 * @method SetCapacityLimitPolicy setCapacityLimitPolicy(array $options = [])
57
 * @method SetRelationWithBiz setRelationWithBiz(array $options = [])
58
 * @method SetTrafficLimitPolicy setTrafficLimitPolicy(array $options = [])
59
 * @method StartVirtualCluster startVirtualCluster(array $options = [])
60
 * @method StopVirtualCluster stopVirtualCluster(array $options = [])
61
 * @method SubmitSparkJob submitSparkJob(array $options = [])
62
 * @method UnSubscribeRegion unSubscribeRegion(array $options = [])
63
 * @method UpdateAccountPassword updateAccountPassword(array $options = [])
64
 */
65
class OpenanalyticsOpenApiResolver extends ApiResolver
66
{
67
}
68
69
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
70
{
71
    /** @var string */
72
    public $product = 'openanalytics-open';
73
74
    /** @var string */
75
    public $version = '2018-06-19';
76
77
    /** @var string */
78
    public $method = 'POST';
79
80
    /** @var string */
81
    public $serviceCode = 'openanalytics';
82
}
83
84
/**
85
 * @method string getRamUid()
86
 * @method string getIsShort()
87
 * @method string getRemark()
88
 * @method string getPassword()
89
 * @method string getAccountName()
90
 * @method string getEnableKMS()
91
 * @method string getUseRandomPassword()
92
 */
93
class AddAccount extends Rpc
94
{
95
96
    /**
97
     * @param string $value
98
     *
99
     * @return $this
100
     */
101
    public function withRamUid($value)
102
    {
103
        $this->data['RamUid'] = $value;
104
        $this->options['form_params']['RamUid'] = $value;
105
106
        return $this;
107
    }
108
109
    /**
110
     * @param string $value
111
     *
112
     * @return $this
113
     */
114
    public function withIsShort($value)
115
    {
116
        $this->data['IsShort'] = $value;
117
        $this->options['form_params']['IsShort'] = $value;
118
119
        return $this;
120
    }
121
122
    /**
123
     * @param string $value
124
     *
125
     * @return $this
126
     */
127
    public function withRemark($value)
128
    {
129
        $this->data['Remark'] = $value;
130
        $this->options['form_params']['Remark'] = $value;
131
132
        return $this;
133
    }
134
135
    /**
136
     * @param string $value
137
     *
138
     * @return $this
139
     */
140
    public function withPassword($value)
141
    {
142
        $this->data['Password'] = $value;
143
        $this->options['form_params']['Password'] = $value;
144
145
        return $this;
146
    }
147
148
    /**
149
     * @param string $value
150
     *
151
     * @return $this
152
     */
153
    public function withAccountName($value)
154
    {
155
        $this->data['AccountName'] = $value;
156
        $this->options['form_params']['AccountName'] = $value;
157
158
        return $this;
159
    }
160
161
    /**
162
     * @param string $value
163
     *
164
     * @return $this
165
     */
166
    public function withEnableKMS($value)
167
    {
168
        $this->data['EnableKMS'] = $value;
169
        $this->options['form_params']['EnableKMS'] = $value;
170
171
        return $this;
172
    }
173
174
    /**
175
     * @param string $value
176
     *
177
     * @return $this
178
     */
179
    public function withUseRandomPassword($value)
180
    {
181
        $this->data['UseRandomPassword'] = $value;
182
        $this->options['form_params']['UseRandomPassword'] = $value;
183
184
        return $this;
185
    }
186
}
187
188
/**
189
 * @method string getProduct()
190
 * @method string getNetworkType()
191
 * @method string getVswitch()
192
 * @method string getZone()
193
 * @method string getVpcID()
194
 */
195
class AddEndPoint extends Rpc
196
{
197
198
    /**
199
     * @param string $value
200
     *
201
     * @return $this
202
     */
203
    public function withProduct($value)
204
    {
205
        $this->data['Product'] = $value;
206
        $this->options['form_params']['Product'] = $value;
207
208
        return $this;
209
    }
210
211
    /**
212
     * @param string $value
213
     *
214
     * @return $this
215
     */
216
    public function withNetworkType($value)
217
    {
218
        $this->data['NetworkType'] = $value;
219
        $this->options['form_params']['NetworkType'] = $value;
220
221
        return $this;
222
    }
223
224
    /**
225
     * @param string $value
226
     *
227
     * @return $this
228
     */
229
    public function withVswitch($value)
230
    {
231
        $this->data['Vswitch'] = $value;
232
        $this->options['form_params']['Vswitch'] = $value;
233
234
        return $this;
235
    }
236
237
    /**
238
     * @param string $value
239
     *
240
     * @return $this
241
     */
242
    public function withZone($value)
243
    {
244
        $this->data['Zone'] = $value;
245
        $this->options['form_params']['Zone'] = $value;
246
247
        return $this;
248
    }
249
250
    /**
251
     * @param string $value
252
     *
253
     * @return $this
254
     */
255
    public function withVpcID($value)
256
    {
257
        $this->data['VpcID'] = $value;
258
        $this->options['form_params']['VpcID'] = $value;
259
260
        return $this;
261
    }
262
}
263
264
/**
265
 * @method string getAccountName()
266
 * @method string getRamUid()
267
 * @method string getIsShort()
268
 * @method string getIsServiceUser()
269
 */
270
class BindingRamUidToDlaAccount extends Rpc
271
{
272
273
    /**
274
     * @param string $value
275
     *
276
     * @return $this
277
     */
278
    public function withAccountName($value)
279
    {
280
        $this->data['AccountName'] = $value;
281
        $this->options['form_params']['AccountName'] = $value;
282
283
        return $this;
284
    }
285
286
    /**
287
     * @param string $value
288
     *
289
     * @return $this
290
     */
291
    public function withRamUid($value)
292
    {
293
        $this->data['RamUid'] = $value;
294
        $this->options['form_params']['RamUid'] = $value;
295
296
        return $this;
297
    }
298
299
    /**
300
     * @param string $value
301
     *
302
     * @return $this
303
     */
304
    public function withIsShort($value)
305
    {
306
        $this->data['IsShort'] = $value;
307
        $this->options['form_params']['IsShort'] = $value;
308
309
        return $this;
310
    }
311
312
    /**
313
     * @param string $value
314
     *
315
     * @return $this
316
     */
317
    public function withIsServiceUser($value)
318
    {
319
        $this->data['IsServiceUser'] = $value;
320
        $this->options['form_params']['IsServiceUser'] = $value;
321
322
        return $this;
323
    }
324
}
325
326
/**
327
 * @method string getChargeType()
328
 * @method string getInstanceType()
329
 * @method string getComponent()
330
 */
331
class CreateInstance extends Rpc
332
{
333
334
    /**
335
     * @param string $value
336
     *
337
     * @return $this
338
     */
339
    public function withChargeType($value)
340
    {
341
        $this->data['ChargeType'] = $value;
342
        $this->options['form_params']['ChargeType'] = $value;
343
344
        return $this;
345
    }
346
347
    /**
348
     * @param string $value
349
     *
350
     * @return $this
351
     */
352
    public function withInstanceType($value)
353
    {
354
        $this->data['InstanceType'] = $value;
355
        $this->options['form_params']['InstanceType'] = $value;
356
357
        return $this;
358
    }
359
360
    /**
361
     * @param string $value
362
     *
363
     * @return $this
364
     */
365
    public function withComponent($value)
366
    {
367
        $this->data['Component'] = $value;
368
        $this->options['form_params']['Component'] = $value;
369
370
        return $this;
371
    }
372
}
373
374
class CreateServiceLinkedRole extends Rpc
375
{
376
}
377
378
/**
379
 * @method string getSwitchId()
380
 * @method string getSecurityGroupId()
381
 * @method string getVcName()
382
 */
383
class CreateUserNetConfig extends Rpc
384
{
385
386
    /**
387
     * @param string $value
388
     *
389
     * @return $this
390
     */
391
    public function withSwitchId($value)
392
    {
393
        $this->data['SwitchId'] = $value;
394
        $this->options['form_params']['SwitchId'] = $value;
395
396
        return $this;
397
    }
398
399
    /**
400
     * @param string $value
401
     *
402
     * @return $this
403
     */
404
    public function withSecurityGroupId($value)
405
    {
406
        $this->data['SecurityGroupId'] = $value;
407
        $this->options['form_params']['SecurityGroupId'] = $value;
408
409
        return $this;
410
    }
411
412
    /**
413
     * @param string $value
414
     *
415
     * @return $this
416
     */
417
    public function withVcName($value)
418
    {
419
        $this->data['VcName'] = $value;
420
        $this->options['form_params']['VcName'] = $value;
421
422
        return $this;
423
    }
424
}
425
426
/**
427
 * @method string getDefaultExecutorSpecName()
428
 * @method string getMaxMemory()
429
 * @method string getSparkModuleReleaseName()
430
 * @method string getDescription()
431
 * @method string getDefaultExecutorNumbers()
432
 * @method string getMaxCpu()
433
 * @method string getName()
434
 * @method string getDefaultDriverSpecName()
435
 */
436
class CreateVirtualClusterForSpark extends Rpc
437
{
438
439
    /**
440
     * @param string $value
441
     *
442
     * @return $this
443
     */
444
    public function withDefaultExecutorSpecName($value)
445
    {
446
        $this->data['DefaultExecutorSpecName'] = $value;
447
        $this->options['form_params']['DefaultExecutorSpecName'] = $value;
448
449
        return $this;
450
    }
451
452
    /**
453
     * @param string $value
454
     *
455
     * @return $this
456
     */
457
    public function withMaxMemory($value)
458
    {
459
        $this->data['MaxMemory'] = $value;
460
        $this->options['form_params']['MaxMemory'] = $value;
461
462
        return $this;
463
    }
464
465
    /**
466
     * @param string $value
467
     *
468
     * @return $this
469
     */
470
    public function withSparkModuleReleaseName($value)
471
    {
472
        $this->data['SparkModuleReleaseName'] = $value;
473
        $this->options['form_params']['SparkModuleReleaseName'] = $value;
474
475
        return $this;
476
    }
477
478
    /**
479
     * @param string $value
480
     *
481
     * @return $this
482
     */
483
    public function withDescription($value)
484
    {
485
        $this->data['Description'] = $value;
486
        $this->options['form_params']['Description'] = $value;
487
488
        return $this;
489
    }
490
491
    /**
492
     * @param string $value
493
     *
494
     * @return $this
495
     */
496
    public function withDefaultExecutorNumbers($value)
497
    {
498
        $this->data['DefaultExecutorNumbers'] = $value;
499
        $this->options['form_params']['DefaultExecutorNumbers'] = $value;
500
501
        return $this;
502
    }
503
504
    /**
505
     * @param string $value
506
     *
507
     * @return $this
508
     */
509
    public function withMaxCpu($value)
510
    {
511
        $this->data['MaxCpu'] = $value;
512
        $this->options['form_params']['MaxCpu'] = $value;
513
514
        return $this;
515
    }
516
517
    /**
518
     * @param string $value
519
     *
520
     * @return $this
521
     */
522
    public function withName($value)
523
    {
524
        $this->data['Name'] = $value;
525
        $this->options['form_params']['Name'] = $value;
526
527
        return $this;
528
    }
529
530
    /**
531
     * @param string $value
532
     *
533
     * @return $this
534
     */
535
    public function withDefaultDriverSpecName($value)
536
    {
537
        $this->data['DefaultDriverSpecName'] = $value;
538
        $this->options['form_params']['DefaultDriverSpecName'] = $value;
539
540
        return $this;
541
    }
542
}
543
544
/**
545
 * @method string getAccessKey()
546
 * @method $this withAccessKey($value)
547
 * @method string getToken()
548
 * @method $this withToken($value)
549
 */
550
class DecodeStsToken extends Rpc
551
{
552
}
553
554
/**
555
 * @method string getAccountName()
556
 * @method string getIsShort()
557
 * @method string getIsServiceUser()
558
 */
559
class DeleteAccount extends Rpc
560
{
561
562
    /**
563
     * @param string $value
564
     *
565
     * @return $this
566
     */
567
    public function withAccountName($value)
568
    {
569
        $this->data['AccountName'] = $value;
570
        $this->options['form_params']['AccountName'] = $value;
571
572
        return $this;
573
    }
574
575
    /**
576
     * @param string $value
577
     *
578
     * @return $this
579
     */
580
    public function withIsShort($value)
581
    {
582
        $this->data['IsShort'] = $value;
583
        $this->options['form_params']['IsShort'] = $value;
584
585
        return $this;
586
    }
587
588
    /**
589
     * @param string $value
590
     *
591
     * @return $this
592
     */
593
    public function withIsServiceUser($value)
594
    {
595
        $this->data['IsServiceUser'] = $value;
596
        $this->options['form_params']['IsServiceUser'] = $value;
597
598
        return $this;
599
    }
600
}
601
602
/**
603
 * @method string getName()
604
 */
605
class DeleteUserNetConfig extends Rpc
606
{
607
608
    /**
609
     * @param string $value
610
     *
611
     * @return $this
612
     */
613
    public function withName($value)
614
    {
615
        $this->data['Name'] = $value;
616
        $this->options['form_params']['Name'] = $value;
617
618
        return $this;
619
    }
620
}
621
622
/**
623
 * @method string getExternalBizAliyunId()
624
 */
625
class DescribeCapacity extends Rpc
626
{
627
628
    /**
629
     * @param string $value
630
     *
631
     * @return $this
632
     */
633
    public function withExternalBizAliyunId($value)
634
    {
635
        $this->data['ExternalBizAliyunId'] = $value;
636
        $this->options['form_params']['ExternalBizAliyunId'] = $value;
637
638
        return $this;
639
    }
640
}
641
642
/**
643
 * @method string getInternetChargeType()
644
 * @method $this withInternetChargeType($value)
645
 */
646
class DescribeDataLakeAnalyticsService extends Rpc
647
{
648
}
649
650
class DescribeRegionList extends Rpc
651
{
652
}
653
654
/**
655
 * @method string getName()
656
 * @method $this withName($value)
657
 */
658
class DescribeVirtualCluster extends Rpc
659
{
660
661
    /** @var string */
662
    public $method = 'GET';
663
}
664
665
/**
666
 * @method string getName()
667
 * @method $this withName($value)
668
 */
669
class DescribeVirtualClusterV2 extends Rpc
670
{
671
672
    /** @var string */
673
    public $method = 'GET';
674
}
675
676
/**
677
 * @method string getName()
678
 */
679
class DestroyVirtualCluster extends Rpc
680
{
681
682
    /**
683
     * @param string $value
684
     *
685
     * @return $this
686
     */
687
    public function withName($value)
688
    {
689
        $this->data['Name'] = $value;
690
        $this->options['form_params']['Name'] = $value;
691
692
        return $this;
693
    }
694
}
695
696
class ForbidAutomaticMetaSyncAsIntegrationAccount extends Rpc
697
{
698
}
699
700
/**
701
 * @method string getNetworkType()
702
 * @method string getProduct()
703
 */
704
class GetAllowIP extends Rpc
705
{
706
707
    /**
708
     * @param string $value
709
     *
710
     * @return $this
711
     */
712
    public function withNetworkType($value)
713
    {
714
        $this->data['NetworkType'] = $value;
715
        $this->options['form_params']['NetworkType'] = $value;
716
717
        return $this;
718
    }
719
720
    /**
721
     * @param string $value
722
     *
723
     * @return $this
724
     */
725
    public function withProduct($value)
726
    {
727
        $this->data['Product'] = $value;
728
        $this->options['form_params']['Product'] = $value;
729
730
        return $this;
731
    }
732
}
733
734
class GetConsolePermission extends Rpc
735
{
736
}
737
738
/**
739
 * @method string getExternalUid()
740
 * @method string getExternalAliyunUid()
741
 * @method string getExternalBizAliyunUid()
742
 */
743
class GetDLAServiceStatus extends Rpc
744
{
745
746
    /**
747
     * @param string $value
748
     *
749
     * @return $this
750
     */
751
    public function withExternalUid($value)
752
    {
753
        $this->data['ExternalUid'] = $value;
754
        $this->options['form_params']['ExternalUid'] = $value;
755
756
        return $this;
757
    }
758
759
    /**
760
     * @param string $value
761
     *
762
     * @return $this
763
     */
764
    public function withExternalAliyunUid($value)
765
    {
766
        $this->data['ExternalAliyunUid'] = $value;
767
        $this->options['form_params']['ExternalAliyunUid'] = $value;
768
769
        return $this;
770
    }
771
772
    /**
773
     * @param string $value
774
     *
775
     * @return $this
776
     */
777
    public function withExternalBizAliyunUid($value)
778
    {
779
        $this->data['ExternalBizAliyunUid'] = $value;
780
        $this->options['form_params']['ExternalBizAliyunUid'] = $value;
781
782
        return $this;
783
    }
784
}
785
786
/**
787
 * @method string getEndPointID()
788
 */
789
class GetEndPoint extends Rpc
790
{
791
792
    /**
793
     * @param string $value
794
     *
795
     * @return $this
796
     */
797
    public function withEndPointID($value)
798
    {
799
        $this->data['EndPointID'] = $value;
800
        $this->options['form_params']['EndPointID'] = $value;
801
802
        return $this;
803
    }
804
}
805
806
/**
807
 * @method string getDomainURL()
808
 */
809
class GetEndPointByDomain extends Rpc
810
{
811
812
    /**
813
     * @param string $value
814
     *
815
     * @return $this
816
     */
817
    public function withDomainURL($value)
818
    {
819
        $this->data['DomainURL'] = $value;
820
        $this->options['form_params']['DomainURL'] = $value;
821
822
        return $this;
823
    }
824
}
825
826
/**
827
 * @method string getJobId()
828
 * @method string getVcName()
829
 */
830
class GetJobDetail extends Rpc
831
{
832
833
    /**
834
     * @param string $value
835
     *
836
     * @return $this
837
     */
838
    public function withJobId($value)
839
    {
840
        $this->data['JobId'] = $value;
841
        $this->options['form_params']['JobId'] = $value;
842
843
        return $this;
844
    }
845
846
    /**
847
     * @param string $value
848
     *
849
     * @return $this
850
     */
851
    public function withVcName($value)
852
    {
853
        $this->data['VcName'] = $value;
854
        $this->options['form_params']['VcName'] = $value;
855
856
        return $this;
857
    }
858
}
859
860
/**
861
 * @method string getJobId()
862
 * @method string getVcName()
863
 */
864
class GetJobLog extends Rpc
865
{
866
867
    /**
868
     * @param string $value
869
     *
870
     * @return $this
871
     */
872
    public function withJobId($value)
873
    {
874
        $this->data['JobId'] = $value;
875
        $this->options['form_params']['JobId'] = $value;
876
877
        return $this;
878
    }
879
880
    /**
881
     * @param string $value
882
     *
883
     * @return $this
884
     */
885
    public function withVcName($value)
886
    {
887
        $this->data['VcName'] = $value;
888
        $this->options['form_params']['VcName'] = $value;
889
890
        return $this;
891
    }
892
}
893
894
/**
895
 * @method string getJobId()
896
 * @method string getVcName()
897
 */
898
class GetJobStatus extends Rpc
899
{
900
901
    /**
902
     * @param string $value
903
     *
904
     * @return $this
905
     */
906
    public function withJobId($value)
907
    {
908
        $this->data['JobId'] = $value;
909
        $this->options['form_params']['JobId'] = $value;
910
911
        return $this;
912
    }
913
914
    /**
915
     * @param string $value
916
     *
917
     * @return $this
918
     */
919
    public function withVcName($value)
920
    {
921
        $this->data['VcName'] = $value;
922
        $this->options['form_params']['VcName'] = $value;
923
924
        return $this;
925
    }
926
}
927
928
/**
929
 * @method string getExternalUid()
930
 * @method string getExternalAliyunUid()
931
 * @method string getExternalBizAliyunUid()
932
 */
933
class GetRegionStatus extends Rpc
934
{
935
936
    /**
937
     * @param string $value
938
     *
939
     * @return $this
940
     */
941
    public function withExternalUid($value)
942
    {
943
        $this->data['ExternalUid'] = $value;
944
        $this->options['form_params']['ExternalUid'] = $value;
945
946
        return $this;
947
    }
948
949
    /**
950
     * @param string $value
951
     *
952
     * @return $this
953
     */
954
    public function withExternalAliyunUid($value)
955
    {
956
        $this->data['ExternalAliyunUid'] = $value;
957
        $this->options['form_params']['ExternalAliyunUid'] = $value;
958
959
        return $this;
960
    }
961
962
    /**
963
     * @param string $value
964
     *
965
     * @return $this
966
     */
967
    public function withExternalBizAliyunUid($value)
968
    {
969
        $this->data['ExternalBizAliyunUid'] = $value;
970
        $this->options['form_params']['ExternalBizAliyunUid'] = $value;
971
972
        return $this;
973
    }
974
}
975
976
class GetServiceLinkedRoleStatus extends Rpc
977
{
978
}
979
980
/**
981
 * @method string getExternalUid()
982
 * @method string getInitPassword()
983
 * @method string getExternalAliyunUid()
984
 * @method string getUseRandomPassword()
985
 * @method string getEnableKMS()
986
 * @method string getExternalBizAliyunUid()
987
 */
988
class InitializeDLAService extends Rpc
989
{
990
991
    /**
992
     * @param string $value
993
     *
994
     * @return $this
995
     */
996
    public function withExternalUid($value)
997
    {
998
        $this->data['ExternalUid'] = $value;
999
        $this->options['form_params']['ExternalUid'] = $value;
1000
1001
        return $this;
1002
    }
1003
1004
    /**
1005
     * @param string $value
1006
     *
1007
     * @return $this
1008
     */
1009
    public function withInitPassword($value)
1010
    {
1011
        $this->data['InitPassword'] = $value;
1012
        $this->options['form_params']['InitPassword'] = $value;
1013
1014
        return $this;
1015
    }
1016
1017
    /**
1018
     * @param string $value
1019
     *
1020
     * @return $this
1021
     */
1022
    public function withExternalAliyunUid($value)
1023
    {
1024
        $this->data['ExternalAliyunUid'] = $value;
1025
        $this->options['form_params']['ExternalAliyunUid'] = $value;
1026
1027
        return $this;
1028
    }
1029
1030
    /**
1031
     * @param string $value
1032
     *
1033
     * @return $this
1034
     */
1035
    public function withUseRandomPassword($value)
1036
    {
1037
        $this->data['UseRandomPassword'] = $value;
1038
        $this->options['form_params']['UseRandomPassword'] = $value;
1039
1040
        return $this;
1041
    }
1042
1043
    /**
1044
     * @param string $value
1045
     *
1046
     * @return $this
1047
     */
1048
    public function withEnableKMS($value)
1049
    {
1050
        $this->data['EnableKMS'] = $value;
1051
        $this->options['form_params']['EnableKMS'] = $value;
1052
1053
        return $this;
1054
    }
1055
1056
    /**
1057
     * @param string $value
1058
     *
1059
     * @return $this
1060
     */
1061
    public function withExternalBizAliyunUid($value)
1062
    {
1063
        $this->data['ExternalBizAliyunUid'] = $value;
1064
        $this->options['form_params']['ExternalBizAliyunUid'] = $value;
1065
1066
        return $this;
1067
    }
1068
}
1069
1070
/**
1071
 * @method string getExternalUid()
1072
 * @method string getInitPassword()
1073
 * @method string getExternalAliyunUid()
1074
 * @method string getUseRandomPassword()
1075
 * @method string getEnableKMS()
1076
 * @method string getExternalBizAliyunUid()
1077
 */
1078
class InitializeRegion extends Rpc
1079
{
1080
1081
    /**
1082
     * @param string $value
1083
     *
1084
     * @return $this
1085
     */
1086
    public function withExternalUid($value)
1087
    {
1088
        $this->data['ExternalUid'] = $value;
1089
        $this->options['form_params']['ExternalUid'] = $value;
1090
1091
        return $this;
1092
    }
1093
1094
    /**
1095
     * @param string $value
1096
     *
1097
     * @return $this
1098
     */
1099
    public function withInitPassword($value)
1100
    {
1101
        $this->data['InitPassword'] = $value;
1102
        $this->options['form_params']['InitPassword'] = $value;
1103
1104
        return $this;
1105
    }
1106
1107
    /**
1108
     * @param string $value
1109
     *
1110
     * @return $this
1111
     */
1112
    public function withExternalAliyunUid($value)
1113
    {
1114
        $this->data['ExternalAliyunUid'] = $value;
1115
        $this->options['form_params']['ExternalAliyunUid'] = $value;
1116
1117
        return $this;
1118
    }
1119
1120
    /**
1121
     * @param string $value
1122
     *
1123
     * @return $this
1124
     */
1125
    public function withUseRandomPassword($value)
1126
    {
1127
        $this->data['UseRandomPassword'] = $value;
1128
        $this->options['form_params']['UseRandomPassword'] = $value;
1129
1130
        return $this;
1131
    }
1132
1133
    /**
1134
     * @param string $value
1135
     *
1136
     * @return $this
1137
     */
1138
    public function withEnableKMS($value)
1139
    {
1140
        $this->data['EnableKMS'] = $value;
1141
        $this->options['form_params']['EnableKMS'] = $value;
1142
1143
        return $this;
1144
    }
1145
1146
    /**
1147
     * @param string $value
1148
     *
1149
     * @return $this
1150
     */
1151
    public function withExternalBizAliyunUid($value)
1152
    {
1153
        $this->data['ExternalBizAliyunUid'] = $value;
1154
        $this->options['form_params']['ExternalBizAliyunUid'] = $value;
1155
1156
        return $this;
1157
    }
1158
}
1159
1160
/**
1161
 * @method string getJobId()
1162
 * @method string getVcName()
1163
 */
1164
class KillSparkJob extends Rpc
1165
{
1166
1167
    /**
1168
     * @param string $value
1169
     *
1170
     * @return $this
1171
     */
1172
    public function withJobId($value)
1173
    {
1174
        $this->data['JobId'] = $value;
1175
        $this->options['form_params']['JobId'] = $value;
1176
1177
        return $this;
1178
    }
1179
1180
    /**
1181
     * @param string $value
1182
     *
1183
     * @return $this
1184
     */
1185
    public function withVcName($value)
1186
    {
1187
        $this->data['VcName'] = $value;
1188
        $this->options['form_params']['VcName'] = $value;
1189
1190
        return $this;
1191
    }
1192
}
1193
1194
class ListAlreadyBingingRamUid extends Rpc
1195
{
1196
}
1197
1198
class ListModulesRelease extends Rpc
1199
{
1200
1201
    /** @var string */
1202
    public $method = 'GET';
1203
}
1204
1205
/**
1206
 * @method string getType()
1207
 * @method $this withType($value)
1208
 */
1209
class ListResourcesSpec extends Rpc
1210
{
1211
1212
    /** @var string */
1213
    public $method = 'GET';
1214
}
1215
1216
/**
1217
 * @method string getPageNumber()
1218
 * @method $this withPageNumber($value)
1219
 * @method string getPageSize()
1220
 * @method $this withPageSize($value)
1221
 * @method string getVcName()
1222
 * @method $this withVcName($value)
1223
 */
1224
class ListSparkJob extends Rpc
1225
{
1226
}
1227
1228
/**
1229
 * @method string getType()
1230
 */
1231
class ListVirtualClusters extends Rpc
1232
{
1233
1234
    /** @var string */
1235
    public $method = 'GET';
1236
1237
    /**
1238
     * @param string $value
1239
     *
1240
     * @return $this
1241
     */
1242
    public function withType($value)
1243
    {
1244
        $this->data['Type'] = $value;
1245
        $this->options['form_params']['Type'] = $value;
1246
1247
        return $this;
1248
    }
1249
}
1250
1251
/**
1252
 * @method string getDefaultExecutorSpecName()
1253
 * @method string getSparkModuleReleaseName()
1254
 * @method string getDescription()
1255
 * @method string getDefaultExecutorNumbers()
1256
 * @method string getName()
1257
 * @method string getDefaultDriverSpecName()
1258
 */
1259
class ModifyVirtualCluster extends Rpc
1260
{
1261
1262
    /**
1263
     * @param string $value
1264
     *
1265
     * @return $this
1266
     */
1267
    public function withDefaultExecutorSpecName($value)
1268
    {
1269
        $this->data['DefaultExecutorSpecName'] = $value;
1270
        $this->options['form_params']['DefaultExecutorSpecName'] = $value;
1271
1272
        return $this;
1273
    }
1274
1275
    /**
1276
     * @param string $value
1277
     *
1278
     * @return $this
1279
     */
1280
    public function withSparkModuleReleaseName($value)
1281
    {
1282
        $this->data['SparkModuleReleaseName'] = $value;
1283
        $this->options['form_params']['SparkModuleReleaseName'] = $value;
1284
1285
        return $this;
1286
    }
1287
1288
    /**
1289
     * @param string $value
1290
     *
1291
     * @return $this
1292
     */
1293
    public function withDescription($value)
1294
    {
1295
        $this->data['Description'] = $value;
1296
        $this->options['form_params']['Description'] = $value;
1297
1298
        return $this;
1299
    }
1300
1301
    /**
1302
     * @param string $value
1303
     *
1304
     * @return $this
1305
     */
1306
    public function withDefaultExecutorNumbers($value)
1307
    {
1308
        $this->data['DefaultExecutorNumbers'] = $value;
1309
        $this->options['form_params']['DefaultExecutorNumbers'] = $value;
1310
1311
        return $this;
1312
    }
1313
1314
    /**
1315
     * @param string $value
1316
     *
1317
     * @return $this
1318
     */
1319
    public function withName($value)
1320
    {
1321
        $this->data['Name'] = $value;
1322
        $this->options['form_params']['Name'] = $value;
1323
1324
        return $this;
1325
    }
1326
1327
    /**
1328
     * @param string $value
1329
     *
1330
     * @return $this
1331
     */
1332
    public function withDefaultDriverSpecName($value)
1333
    {
1334
        $this->data['DefaultDriverSpecName'] = $value;
1335
        $this->options['form_params']['DefaultDriverSpecName'] = $value;
1336
1337
        return $this;
1338
    }
1339
}
1340
1341
/**
1342
 * @method string getDefaultExecutorSpecName()
1343
 * @method string getMaxMemory()
1344
 * @method string getSparkModuleReleaseName()
1345
 * @method string getDescription()
1346
 * @method string getDefaultExecutorNumbers()
1347
 * @method string getMaxCpu()
1348
 * @method string getName()
1349
 * @method string getDefaultDriverSpecName()
1350
 */
1351
class ModifyVirtualClusterForSpark extends Rpc
1352
{
1353
1354
    /**
1355
     * @param string $value
1356
     *
1357
     * @return $this
1358
     */
1359
    public function withDefaultExecutorSpecName($value)
1360
    {
1361
        $this->data['DefaultExecutorSpecName'] = $value;
1362
        $this->options['form_params']['DefaultExecutorSpecName'] = $value;
1363
1364
        return $this;
1365
    }
1366
1367
    /**
1368
     * @param string $value
1369
     *
1370
     * @return $this
1371
     */
1372
    public function withMaxMemory($value)
1373
    {
1374
        $this->data['MaxMemory'] = $value;
1375
        $this->options['form_params']['MaxMemory'] = $value;
1376
1377
        return $this;
1378
    }
1379
1380
    /**
1381
     * @param string $value
1382
     *
1383
     * @return $this
1384
     */
1385
    public function withSparkModuleReleaseName($value)
1386
    {
1387
        $this->data['SparkModuleReleaseName'] = $value;
1388
        $this->options['form_params']['SparkModuleReleaseName'] = $value;
1389
1390
        return $this;
1391
    }
1392
1393
    /**
1394
     * @param string $value
1395
     *
1396
     * @return $this
1397
     */
1398
    public function withDescription($value)
1399
    {
1400
        $this->data['Description'] = $value;
1401
        $this->options['form_params']['Description'] = $value;
1402
1403
        return $this;
1404
    }
1405
1406
    /**
1407
     * @param string $value
1408
     *
1409
     * @return $this
1410
     */
1411
    public function withDefaultExecutorNumbers($value)
1412
    {
1413
        $this->data['DefaultExecutorNumbers'] = $value;
1414
        $this->options['form_params']['DefaultExecutorNumbers'] = $value;
1415
1416
        return $this;
1417
    }
1418
1419
    /**
1420
     * @param string $value
1421
     *
1422
     * @return $this
1423
     */
1424
    public function withMaxCpu($value)
1425
    {
1426
        $this->data['MaxCpu'] = $value;
1427
        $this->options['form_params']['MaxCpu'] = $value;
1428
1429
        return $this;
1430
    }
1431
1432
    /**
1433
     * @param string $value
1434
     *
1435
     * @return $this
1436
     */
1437
    public function withName($value)
1438
    {
1439
        $this->data['Name'] = $value;
1440
        $this->options['form_params']['Name'] = $value;
1441
1442
        return $this;
1443
    }
1444
1445
    /**
1446
     * @param string $value
1447
     *
1448
     * @return $this
1449
     */
1450
    public function withDefaultDriverSpecName($value)
1451
    {
1452
        $this->data['DefaultDriverSpecName'] = $value;
1453
        $this->options['form_params']['DefaultDriverSpecName'] = $value;
1454
1455
        return $this;
1456
    }
1457
}
1458
1459
/**
1460
 * @method string getInternetChargeType()
1461
 * @method $this withInternetChargeType($value)
1462
 */
1463
class OpenDataLakeAnalyticsService extends Rpc
1464
{
1465
}
1466
1467
/**
1468
 * @method string getPageSize()
1469
 * @method string getPageNumber()
1470
 */
1471
class QueryAccountList extends Rpc
1472
{
1473
1474
    /**
1475
     * @param string $value
1476
     *
1477
     * @return $this
1478
     */
1479
    public function withPageSize($value)
1480
    {
1481
        $this->data['PageSize'] = $value;
1482
        $this->options['form_params']['PageSize'] = $value;
1483
1484
        return $this;
1485
    }
1486
1487
    /**
1488
     * @param string $value
1489
     *
1490
     * @return $this
1491
     */
1492
    public function withPageNumber($value)
1493
    {
1494
        $this->data['PageNumber'] = $value;
1495
        $this->options['form_params']['PageNumber'] = $value;
1496
1497
        return $this;
1498
    }
1499
}
1500
1501
class QueryDataSourceDef extends Rpc
1502
{
1503
}
1504
1505
/**
1506
 * @method string getPageSize()
1507
 * @method string getPageNumber()
1508
 */
1509
class QueryDiscountList extends Rpc
1510
{
1511
1512
    /**
1513
     * @param string $value
1514
     *
1515
     * @return $this
1516
     */
1517
    public function withPageSize($value)
1518
    {
1519
        $this->data['PageSize'] = $value;
1520
        $this->options['form_params']['PageSize'] = $value;
1521
1522
        return $this;
1523
    }
1524
1525
    /**
1526
     * @param string $value
1527
     *
1528
     * @return $this
1529
     */
1530
    public function withPageNumber($value)
1531
    {
1532
        $this->data['PageNumber'] = $value;
1533
        $this->options['form_params']['PageNumber'] = $value;
1534
1535
        return $this;
1536
    }
1537
}
1538
1539
class QueryEndPointList extends Rpc
1540
{
1541
}
1542
1543
class QueryServiceAccountList extends Rpc
1544
{
1545
}
1546
1547
/**
1548
 * @method string getTwoDaysAgoBeginTs()
1549
 * @method string getYesterdayBeginTs()
1550
 * @method string getTodayBeginTs()
1551
 */
1552
class QueryTaskSum extends Rpc
1553
{
1554
1555
    /**
1556
     * @param string $value
1557
     *
1558
     * @return $this
1559
     */
1560
    public function withTwoDaysAgoBeginTs($value)
1561
    {
1562
        $this->data['TwoDaysAgoBeginTs'] = $value;
1563
        $this->options['form_params']['TwoDaysAgoBeginTs'] = $value;
1564
1565
        return $this;
1566
    }
1567
1568
    /**
1569
     * @param string $value
1570
     *
1571
     * @return $this
1572
     */
1573
    public function withYesterdayBeginTs($value)
1574
    {
1575
        $this->data['YesterdayBeginTs'] = $value;
1576
        $this->options['form_params']['YesterdayBeginTs'] = $value;
1577
1578
        return $this;
1579
    }
1580
1581
    /**
1582
     * @param string $value
1583
     *
1584
     * @return $this
1585
     */
1586
    public function withTodayBeginTs($value)
1587
    {
1588
        $this->data['TodayBeginTs'] = $value;
1589
        $this->options['form_params']['TodayBeginTs'] = $value;
1590
1591
        return $this;
1592
    }
1593
}
1594
1595
/**
1596
 * @method string getInstanceId()
1597
 */
1598
class ReleaseInstance extends Rpc
1599
{
1600
1601
    /**
1602
     * @param string $value
1603
     *
1604
     * @return $this
1605
     */
1606
    public function withInstanceId($value)
1607
    {
1608
        $this->data['InstanceId'] = $value;
1609
        $this->options['form_params']['InstanceId'] = $value;
1610
1611
        return $this;
1612
    }
1613
}
1614
1615
/**
1616
 * @method string getEndPointID()
1617
 */
1618
class RemoveEndPoint extends Rpc
1619
{
1620
1621
    /**
1622
     * @param string $value
1623
     *
1624
     * @return $this
1625
     */
1626
    public function withEndPointID($value)
1627
    {
1628
        $this->data['EndPointID'] = $value;
1629
        $this->options['form_params']['EndPointID'] = $value;
1630
1631
        return $this;
1632
    }
1633
}
1634
1635
/**
1636
 * @method string getExternalUid()
1637
 * @method string getInitPassword()
1638
 * @method string getExternalAliyunUid()
1639
 * @method string getUseRandomPassword()
1640
 * @method string getEnableKMS()
1641
 * @method string getExternalBizAliyunUid()
1642
 */
1643
class ResetMainPassword extends Rpc
1644
{
1645
1646
    /**
1647
     * @param string $value
1648
     *
1649
     * @return $this
1650
     */
1651
    public function withExternalUid($value)
1652
    {
1653
        $this->data['ExternalUid'] = $value;
1654
        $this->options['form_params']['ExternalUid'] = $value;
1655
1656
        return $this;
1657
    }
1658
1659
    /**
1660
     * @param string $value
1661
     *
1662
     * @return $this
1663
     */
1664
    public function withInitPassword($value)
1665
    {
1666
        $this->data['InitPassword'] = $value;
1667
        $this->options['form_params']['InitPassword'] = $value;
1668
1669
        return $this;
1670
    }
1671
1672
    /**
1673
     * @param string $value
1674
     *
1675
     * @return $this
1676
     */
1677
    public function withExternalAliyunUid($value)
1678
    {
1679
        $this->data['ExternalAliyunUid'] = $value;
1680
        $this->options['form_params']['ExternalAliyunUid'] = $value;
1681
1682
        return $this;
1683
    }
1684
1685
    /**
1686
     * @param string $value
1687
     *
1688
     * @return $this
1689
     */
1690
    public function withUseRandomPassword($value)
1691
    {
1692
        $this->data['UseRandomPassword'] = $value;
1693
        $this->options['form_params']['UseRandomPassword'] = $value;
1694
1695
        return $this;
1696
    }
1697
1698
    /**
1699
     * @param string $value
1700
     *
1701
     * @return $this
1702
     */
1703
    public function withEnableKMS($value)
1704
    {
1705
        $this->data['EnableKMS'] = $value;
1706
        $this->options['form_params']['EnableKMS'] = $value;
1707
1708
        return $this;
1709
    }
1710
1711
    /**
1712
     * @param string $value
1713
     *
1714
     * @return $this
1715
     */
1716
    public function withExternalBizAliyunUid($value)
1717
    {
1718
        $this->data['ExternalBizAliyunUid'] = $value;
1719
        $this->options['form_params']['ExternalBizAliyunUid'] = $value;
1720
1721
        return $this;
1722
    }
1723
}
1724
1725
/**
1726
 * @method string getNetworkType()
1727
 * @method string getProduct()
1728
 * @method string getAllowIP()
1729
 * @method string getAppend()
1730
 */
1731
class SetAllowIP extends Rpc
1732
{
1733
1734
    /**
1735
     * @param string $value
1736
     *
1737
     * @return $this
1738
     */
1739
    public function withNetworkType($value)
1740
    {
1741
        $this->data['NetworkType'] = $value;
1742
        $this->options['form_params']['NetworkType'] = $value;
1743
1744
        return $this;
1745
    }
1746
1747
    /**
1748
     * @param string $value
1749
     *
1750
     * @return $this
1751
     */
1752
    public function withProduct($value)
1753
    {
1754
        $this->data['Product'] = $value;
1755
        $this->options['form_params']['Product'] = $value;
1756
1757
        return $this;
1758
    }
1759
1760
    /**
1761
     * @param string $value
1762
     *
1763
     * @return $this
1764
     */
1765
    public function withAllowIP($value)
1766
    {
1767
        $this->data['AllowIP'] = $value;
1768
        $this->options['form_params']['AllowIP'] = $value;
1769
1770
        return $this;
1771
    }
1772
1773
    /**
1774
     * @param string $value
1775
     *
1776
     * @return $this
1777
     */
1778
    public function withAppend($value)
1779
    {
1780
        $this->data['Append'] = $value;
1781
        $this->options['form_params']['Append'] = $value;
1782
1783
        return $this;
1784
    }
1785
}
1786
1787
/**
1788
 * @method string getPolicy()
1789
 * @method string getExternalBizAliyunUid()
1790
 */
1791
class SetCapacityLimitPolicy extends Rpc
1792
{
1793
1794
    /**
1795
     * @param string $value
1796
     *
1797
     * @return $this
1798
     */
1799
    public function withPolicy($value)
1800
    {
1801
        $this->data['Policy'] = $value;
1802
        $this->options['form_params']['Policy'] = $value;
1803
1804
        return $this;
1805
    }
1806
1807
    /**
1808
     * @param string $value
1809
     *
1810
     * @return $this
1811
     */
1812
    public function withExternalBizAliyunUid($value)
1813
    {
1814
        $this->data['ExternalBizAliyunUid'] = $value;
1815
        $this->options['form_params']['ExternalBizAliyunUid'] = $value;
1816
1817
        return $this;
1818
    }
1819
}
1820
1821
/**
1822
 * @method string getExternalUid()
1823
 * @method string getExternalAliyunUid()
1824
 * @method string getExternalBizAliyunUid()
1825
 */
1826
class SetRelationWithBiz extends Rpc
1827
{
1828
1829
    /**
1830
     * @param string $value
1831
     *
1832
     * @return $this
1833
     */
1834
    public function withExternalUid($value)
1835
    {
1836
        $this->data['ExternalUid'] = $value;
1837
        $this->options['form_params']['ExternalUid'] = $value;
1838
1839
        return $this;
1840
    }
1841
1842
    /**
1843
     * @param string $value
1844
     *
1845
     * @return $this
1846
     */
1847
    public function withExternalAliyunUid($value)
1848
    {
1849
        $this->data['ExternalAliyunUid'] = $value;
1850
        $this->options['form_params']['ExternalAliyunUid'] = $value;
1851
1852
        return $this;
1853
    }
1854
1855
    /**
1856
     * @param string $value
1857
     *
1858
     * @return $this
1859
     */
1860
    public function withExternalBizAliyunUid($value)
1861
    {
1862
        $this->data['ExternalBizAliyunUid'] = $value;
1863
        $this->options['form_params']['ExternalBizAliyunUid'] = $value;
1864
1865
        return $this;
1866
    }
1867
}
1868
1869
/**
1870
 * @method string getPolicy()
1871
 * @method string getExternalBizAliyunUid()
1872
 */
1873
class SetTrafficLimitPolicy extends Rpc
1874
{
1875
1876
    /**
1877
     * @param string $value
1878
     *
1879
     * @return $this
1880
     */
1881
    public function withPolicy($value)
1882
    {
1883
        $this->data['Policy'] = $value;
1884
        $this->options['form_params']['Policy'] = $value;
1885
1886
        return $this;
1887
    }
1888
1889
    /**
1890
     * @param string $value
1891
     *
1892
     * @return $this
1893
     */
1894
    public function withExternalBizAliyunUid($value)
1895
    {
1896
        $this->data['ExternalBizAliyunUid'] = $value;
1897
        $this->options['form_params']['ExternalBizAliyunUid'] = $value;
1898
1899
        return $this;
1900
    }
1901
}
1902
1903
/**
1904
 * @method string getName()
1905
 */
1906
class StartVirtualCluster extends Rpc
1907
{
1908
1909
    /**
1910
     * @param string $value
1911
     *
1912
     * @return $this
1913
     */
1914
    public function withName($value)
1915
    {
1916
        $this->data['Name'] = $value;
1917
        $this->options['form_params']['Name'] = $value;
1918
1919
        return $this;
1920
    }
1921
}
1922
1923
/**
1924
 * @method string getName()
1925
 */
1926
class StopVirtualCluster extends Rpc
1927
{
1928
1929
    /**
1930
     * @param string $value
1931
     *
1932
     * @return $this
1933
     */
1934
    public function withName($value)
1935
    {
1936
        $this->data['Name'] = $value;
1937
        $this->options['form_params']['Name'] = $value;
1938
1939
        return $this;
1940
    }
1941
}
1942
1943
/**
1944
 * @method string getConfigJson()
1945
 * @method string getVcName()
1946
 */
1947
class SubmitSparkJob extends Rpc
1948
{
1949
1950
    /**
1951
     * @param string $value
1952
     *
1953
     * @return $this
1954
     */
1955
    public function withConfigJson($value)
1956
    {
1957
        $this->data['ConfigJson'] = $value;
1958
        $this->options['form_params']['ConfigJson'] = $value;
1959
1960
        return $this;
1961
    }
1962
1963
    /**
1964
     * @param string $value
1965
     *
1966
     * @return $this
1967
     */
1968
    public function withVcName($value)
1969
    {
1970
        $this->data['VcName'] = $value;
1971
        $this->options['form_params']['VcName'] = $value;
1972
1973
        return $this;
1974
    }
1975
}
1976
1977
class UnSubscribeRegion extends Rpc
1978
{
1979
}
1980
1981
/**
1982
 * @method string getIsShort()
1983
 * @method string getPassword()
1984
 * @method string getAccountName()
1985
 * @method string getEnableKMS()
1986
 * @method string getUseRandomPassword()
1987
 */
1988
class UpdateAccountPassword extends Rpc
1989
{
1990
1991
    /**
1992
     * @param string $value
1993
     *
1994
     * @return $this
1995
     */
1996
    public function withIsShort($value)
1997
    {
1998
        $this->data['IsShort'] = $value;
1999
        $this->options['form_params']['IsShort'] = $value;
2000
2001
        return $this;
2002
    }
2003
2004
    /**
2005
     * @param string $value
2006
     *
2007
     * @return $this
2008
     */
2009
    public function withPassword($value)
2010
    {
2011
        $this->data['Password'] = $value;
2012
        $this->options['form_params']['Password'] = $value;
2013
2014
        return $this;
2015
    }
2016
2017
    /**
2018
     * @param string $value
2019
     *
2020
     * @return $this
2021
     */
2022
    public function withAccountName($value)
2023
    {
2024
        $this->data['AccountName'] = $value;
2025
        $this->options['form_params']['AccountName'] = $value;
2026
2027
        return $this;
2028
    }
2029
2030
    /**
2031
     * @param string $value
2032
     *
2033
     * @return $this
2034
     */
2035
    public function withEnableKMS($value)
2036
    {
2037
        $this->data['EnableKMS'] = $value;
2038
        $this->options['form_params']['EnableKMS'] = $value;
2039
2040
        return $this;
2041
    }
2042
2043
    /**
2044
     * @param string $value
2045
     *
2046
     * @return $this
2047
     */
2048
    public function withUseRandomPassword($value)
2049
    {
2050
        $this->data['UseRandomPassword'] = $value;
2051
        $this->options['form_params']['UseRandomPassword'] = $value;
2052
2053
        return $this;
2054
    }
2055
}
2056