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 ( 573ef6...9e4d90 )
by
unknown
101:29 queued 95:57
created

CreateOrder   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 4
dl 0
loc 14
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A withPluginParam() 0 6 1
1
<?php
2
3
namespace AlibabaCloud\DmsEnterprise\V20181101;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method ApproveOrder approveOrder(array $options = [])
9
 * @method CheckFinishMission checkFinishMission(array $options = [])
10
 * @method CloseOrder closeOrder(array $options = [])
11
 * @method CreateOrder createOrder(array $options = [])
12
 * @method CreatePublishGroupTask createPublishGroupTask(array $options = [])
13
 * @method DeleteInstance deleteInstance(array $options = [])
14
 * @method DeleteUser deleteUser(array $options = [])
15
 * @method DisableUser disableUser(array $options = [])
16
 * @method EnableUser enableUser(array $options = [])
17
 * @method ExecuteDataCorrect executeDataCorrect(array $options = [])
18
 * @method ExecuteDataExport executeDataExport(array $options = [])
19
 * @method ExecuteScript executeScript(array $options = [])
20
 * @method GetApprovalDetail getApprovalDetail(array $options = [])
21
 * @method GetDatabase getDatabase(array $options = [])
22
 * @method GetDataCorrectBackupFiles getDataCorrectBackupFiles(array $options = [])
23
 * @method GetDataCorrectOrderDetail getDataCorrectOrderDetail(array $options = [])
24
 * @method GetDataExportDownloadURL getDataExportDownloadURL(array $options = [])
25
 * @method GetDataExportOrderDetail getDataExportOrderDetail(array $options = [])
26
 * @method GetInstance getInstance(array $options = [])
27
 * @method GetLogicDatabase getLogicDatabase(array $options = [])
28
 * @method GetMetaTableColumn getMetaTableColumn(array $options = [])
29
 * @method GetMetaTableDetailInfo getMetaTableDetailInfo(array $options = [])
30
 * @method GetOpLog getOpLog(array $options = [])
31
 * @method GetOrderBaseInfo getOrderBaseInfo(array $options = [])
32
 * @method GetTableDBTopology getTableDBTopology(array $options = [])
33
 * @method GetUser getUser(array $options = [])
34
 * @method GetUserActiveTenant getUserActiveTenant(array $options = [])
35
 * @method GrantUserPermission grantUserPermission(array $options = [])
36
 * @method ListColumns listColumns(array $options = [])
37
 * @method ListDatabases listDatabases(array $options = [])
38
 * @method ListDatabaseUserPermssions listDatabaseUserPermssions(array $options = [])
39
 * @method ListIndexes listIndexes(array $options = [])
40
 * @method ListInstances listInstances(array $options = [])
41
 * @method ListLogicDatabases listLogicDatabases(array $options = [])
42
 * @method ListLogicTables listLogicTables(array $options = [])
43
 * @method ListOrders listOrders(array $options = [])
44
 * @method ListSensitiveColumns listSensitiveColumns(array $options = [])
45
 * @method ListSensitiveColumnsDetail listSensitiveColumnsDetail(array $options = [])
46
 * @method ListTables listTables(array $options = [])
47
 * @method ListUserPermissions listUserPermissions(array $options = [])
48
 * @method ListUsers listUsers(array $options = [])
49
 * @method ListUserTenants listUserTenants(array $options = [])
50
 * @method ListWorkFlowNodes listWorkFlowNodes(array $options = [])
51
 * @method ListWorkFlowTemplates listWorkFlowTemplates(array $options = [])
52
 * @method RegisterInstance registerInstance(array $options = [])
53
 * @method RegisterUser registerUser(array $options = [])
54
 * @method RevokeUserPermission revokeUserPermission(array $options = [])
55
 * @method SearchDatabase searchDatabase(array $options = [])
56
 * @method SearchTable searchTable(array $options = [])
57
 * @method SetOwners setOwners(array $options = [])
58
 * @method SubmitOrderApproval submitOrderApproval(array $options = [])
59
 * @method SyncDatabaseMeta syncDatabaseMeta(array $options = [])
60
 * @method SyncInstanceMeta syncInstanceMeta(array $options = [])
61
 * @method UpdateInstance updateInstance(array $options = [])
62
 * @method UpdateUser updateUser(array $options = [])
63
 */
64
class DmsEnterpriseApiResolver extends ApiResolver
65
{
66
}
67
68
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
69
{
70
    /** @var string */
71
    public $product = 'dms-enterprise';
72
73
    /** @var string */
74
    public $version = '2018-11-01';
75
76
    /** @var string */
77
    public $method = 'POST';
78
79
    /** @var string */
80
    public $serviceCode = 'dmsenterprise';
81
}
82
83
/**
84
 * @method string getApprovalType()
85
 * @method $this withApprovalType($value)
86
 * @method string getComment()
87
 * @method $this withComment($value)
88
 * @method string getTid()
89
 * @method $this withTid($value)
90
 * @method string getWorkflowInstanceId()
91
 * @method $this withWorkflowInstanceId($value)
92
 */
93
class ApproveOrder extends Rpc
94
{
95
}
96
97
/**
98
 * @method string getMissionType()
99
 * @method $this withMissionType($value)
100
 */
101
class CheckFinishMission extends Rpc
102
{
103
104
    /** @var string */
105
    public $method = 'GET';
106
}
107
108
/**
109
 * @method string getOrderId()
110
 * @method $this withOrderId($value)
111
 * @method string getCloseReason()
112
 * @method $this withCloseReason($value)
113
 * @method string getTid()
114
 * @method $this withTid($value)
115
 */
116
class CloseOrder extends Rpc
117
{
118
}
119
120
/**
121
 * @method string getPluginType()
122
 * @method $this withPluginType($value)
123
 * @method string getComment()
124
 * @method $this withComment($value)
125
 * @method string getTid()
126
 * @method $this withTid($value)
127
 * @method string getPluginParam()
128
 * @method string getRelatedUserList()
129
 * @method $this withRelatedUserList($value)
130
 */
131
class CreateOrder extends Rpc
132
{
133
134
    /**
135
     * @param string $value
136
     *
137
     * @return $this
138
     */
139
    public function withPluginParam($value)
140
    {
141
        $this->data['PluginParam'] = $value;
142
        $this->options['form_params']['PluginParam'] = $value;
143
144
        return $this;
145
    }
146
}
147
148
/**
149
 * @method string getOrderId()
150
 * @method $this withOrderId($value)
151
 * @method string getDbId()
152
 * @method $this withDbId($value)
153
 * @method string getPlanTime()
154
 * @method $this withPlanTime($value)
155
 * @method string getLogic()
156
 * @method $this withLogic($value)
157
 * @method string getTid()
158
 * @method $this withTid($value)
159
 * @method string getPublishStrategy()
160
 * @method $this withPublishStrategy($value)
161
 */
162
class CreatePublishGroupTask extends Rpc
163
{
164
}
165
166
/**
167
 * @method string getPort()
168
 * @method $this withPort($value)
169
 * @method string getHost()
170
 * @method $this withHost($value)
171
 * @method string getTid()
172
 * @method $this withTid($value)
173
 * @method string getSid()
174
 * @method $this withSid($value)
175
 */
176
class DeleteInstance extends Rpc
177
{
178
}
179
180
/**
181
 * @method string getUid()
182
 * @method $this withUid($value)
183
 * @method string getTid()
184
 * @method $this withTid($value)
185
 */
186
class DeleteUser extends Rpc
187
{
188
}
189
190
/**
191
 * @method string getUid()
192
 * @method $this withUid($value)
193
 * @method string getTid()
194
 * @method $this withTid($value)
195
 */
196
class DisableUser extends Rpc
197
{
198
}
199
200
/**
201
 * @method string getUid()
202
 * @method $this withUid($value)
203
 * @method string getTid()
204
 * @method $this withTid($value)
205
 */
206
class EnableUser extends Rpc
207
{
208
}
209
210
/**
211
 * @method string getActionDetail()
212
 * @method $this withActionDetail($value)
213
 * @method string getOrderId()
214
 * @method $this withOrderId($value)
215
 * @method string getActionName()
216
 * @method $this withActionName($value)
217
 * @method string getTid()
218
 * @method $this withTid($value)
219
 */
220
class ExecuteDataCorrect extends Rpc
221
{
222
}
223
224
/**
225
 * @method string getActionDetail()
226
 * @method $this withActionDetail($value)
227
 * @method string getOrderId()
228
 * @method $this withOrderId($value)
229
 * @method string getActionName()
230
 * @method $this withActionName($value)
231
 * @method string getTid()
232
 * @method $this withTid($value)
233
 */
234
class ExecuteDataExport extends Rpc
235
{
236
}
237
238
/**
239
 * @method string getDbId()
240
 * @method $this withDbId($value)
241
 * @method string getLogic()
242
 * @method $this withLogic($value)
243
 * @method string getScript()
244
 * @method $this withScript($value)
245
 * @method string getTid()
246
 * @method $this withTid($value)
247
 */
248
class ExecuteScript extends Rpc
249
{
250
}
251
252
/**
253
 * @method string getTid()
254
 * @method $this withTid($value)
255
 * @method string getWorkflowInstanceId()
256
 * @method $this withWorkflowInstanceId($value)
257
 */
258
class GetApprovalDetail extends Rpc
259
{
260
}
261
262
/**
263
 * @method string getSchemaName()
264
 * @method $this withSchemaName($value)
265
 * @method string getPort()
266
 * @method $this withPort($value)
267
 * @method string getHost()
268
 * @method $this withHost($value)
269
 * @method string getTid()
270
 * @method $this withTid($value)
271
 * @method string getSid()
272
 * @method $this withSid($value)
273
 */
274
class GetDatabase extends Rpc
275
{
276
}
277
278
/**
279
 * @method string getActionDetail()
280
 * @method $this withActionDetail($value)
281
 * @method string getOrderId()
282
 * @method $this withOrderId($value)
283
 * @method string getActionName()
284
 * @method $this withActionName($value)
285
 * @method string getTid()
286
 * @method $this withTid($value)
287
 */
288
class GetDataCorrectBackupFiles extends Rpc
289
{
290
}
291
292
/**
293
 * @method string getOrderId()
294
 * @method $this withOrderId($value)
295
 * @method string getTid()
296
 * @method $this withTid($value)
297
 */
298
class GetDataCorrectOrderDetail extends Rpc
299
{
300
}
301
302
/**
303
 * @method string getOrderId()
304
 * @method $this withOrderId($value)
305
 * @method string getActionName()
306
 * @method $this withActionName($value)
307
 * @method string getTid()
308
 * @method $this withTid($value)
309
 */
310
class GetDataExportDownloadURL extends Rpc
311
{
312
}
313
314
/**
315
 * @method string getOrderId()
316
 * @method string getTid()
317
 * @method $this withTid($value)
318
 */
319
class GetDataExportOrderDetail extends Rpc
320
{
321
322
    /**
323
     * @param string $value
324
     *
325
     * @return $this
326
     */
327
    public function withOrderId($value)
328
    {
329
        $this->data['OrderId'] = $value;
330
        $this->options['form_params']['OrderId'] = $value;
331
332
        return $this;
333
    }
334
}
335
336
/**
337
 * @method string getPort()
338
 * @method $this withPort($value)
339
 * @method string getHost()
340
 * @method $this withHost($value)
341
 * @method string getTid()
342
 * @method $this withTid($value)
343
 * @method string getSid()
344
 * @method $this withSid($value)
345
 */
346
class GetInstance extends Rpc
347
{
348
}
349
350
/**
351
 * @method string getDbId()
352
 * @method $this withDbId($value)
353
 * @method string getTid()
354
 * @method $this withTid($value)
355
 */
356
class GetLogicDatabase extends Rpc
357
{
358
}
359
360
/**
361
 * @method string getTableGuid()
362
 * @method $this withTableGuid($value)
363
 * @method string getTid()
364
 * @method $this withTid($value)
365
 */
366
class GetMetaTableColumn extends Rpc
367
{
368
}
369
370
/**
371
 * @method string getTableGuid()
372
 * @method $this withTableGuid($value)
373
 * @method string getTid()
374
 * @method $this withTid($value)
375
 */
376
class GetMetaTableDetailInfo extends Rpc
377
{
378
}
379
380
/**
381
 * @method string getModule()
382
 * @method $this withModule($value)
383
 * @method string getPageSize()
384
 * @method $this withPageSize($value)
385
 * @method string getEndTime()
386
 * @method $this withEndTime($value)
387
 * @method string getStartTime()
388
 * @method $this withStartTime($value)
389
 * @method string getTid()
390
 * @method $this withTid($value)
391
 * @method string getPageNumber()
392
 * @method $this withPageNumber($value)
393
 */
394
class GetOpLog extends Rpc
395
{
396
}
397
398
/**
399
 * @method string getOrderId()
400
 * @method $this withOrderId($value)
401
 * @method string getTid()
402
 * @method $this withTid($value)
403
 */
404
class GetOrderBaseInfo extends Rpc
405
{
406
}
407
408
/**
409
 * @method string getTableGuid()
410
 * @method $this withTableGuid($value)
411
 * @method string getTid()
412
 * @method $this withTid($value)
413
 */
414
class GetTableDBTopology extends Rpc
415
{
416
}
417
418
/**
419
 * @method string getUid()
420
 * @method $this withUid($value)
421
 * @method string getUserId()
422
 * @method $this withUserId($value)
423
 * @method string getTid()
424
 * @method $this withTid($value)
425
 */
426
class GetUser extends Rpc
427
{
428
}
429
430
class GetUserActiveTenant extends Rpc
431
{
432
}
433
434
/**
435
 * @method string getPermTypes()
436
 * @method $this withPermTypes($value)
437
 * @method string getDsType()
438
 * @method $this withDsType($value)
439
 * @method string getExpireDate()
440
 * @method $this withExpireDate($value)
441
 * @method string getUserId()
442
 * @method $this withUserId($value)
443
 * @method string getTid()
444
 * @method $this withTid($value)
445
 * @method string getDbId()
446
 * @method $this withDbId($value)
447
 * @method string getTableId()
448
 * @method $this withTableId($value)
449
 * @method string getLogic()
450
 * @method $this withLogic($value)
451
 * @method string getTableName()
452
 * @method $this withTableName($value)
453
 */
454
class GrantUserPermission extends Rpc
455
{
456
}
457
458
/**
459
 * @method string getTableId()
460
 * @method $this withTableId($value)
461
 * @method string getLogic()
462
 * @method $this withLogic($value)
463
 * @method string getTid()
464
 * @method $this withTid($value)
465
 */
466
class ListColumns extends Rpc
467
{
468
}
469
470
/**
471
 * @method string getInstanceId()
472
 * @method $this withInstanceId($value)
473
 * @method string getPageSize()
474
 * @method $this withPageSize($value)
475
 * @method string getTid()
476
 * @method $this withTid($value)
477
 * @method string getPageNumber()
478
 * @method $this withPageNumber($value)
479
 */
480
class ListDatabases extends Rpc
481
{
482
}
483
484
/**
485
 * @method string getTid()
486
 * @method $this withTid($value)
487
 * @method string getPageNumber()
488
 * @method $this withPageNumber($value)
489
 * @method string getPermType()
490
 * @method $this withPermType($value)
491
 * @method string getDbId()
492
 * @method $this withDbId($value)
493
 * @method string getPageSize()
494
 * @method $this withPageSize($value)
495
 * @method string getLogic()
496
 * @method $this withLogic($value)
497
 * @method string getUserName()
498
 * @method $this withUserName($value)
499
 */
500
class ListDatabaseUserPermssions extends Rpc
501
{
502
}
503
504
/**
505
 * @method string getTableId()
506
 * @method $this withTableId($value)
507
 * @method string getLogic()
508
 * @method $this withLogic($value)
509
 * @method string getTid()
510
 * @method $this withTid($value)
511
 */
512
class ListIndexes extends Rpc
513
{
514
}
515
516
/**
517
 * @method string getSearchKey()
518
 * @method $this withSearchKey($value)
519
 * @method string getTid()
520
 * @method $this withTid($value)
521
 * @method string getInstanceState()
522
 * @method $this withInstanceState($value)
523
 * @method string getPageNumber()
524
 * @method $this withPageNumber($value)
525
 * @method string getNetType()
526
 * @method $this withNetType($value)
527
 * @method string getDbType()
528
 * @method $this withDbType($value)
529
 * @method string getEnvType()
530
 * @method $this withEnvType($value)
531
 * @method string getInstanceSource()
532
 * @method $this withInstanceSource($value)
533
 * @method string getPageSize()
534
 * @method $this withPageSize($value)
535
 */
536
class ListInstances extends Rpc
537
{
538
}
539
540
/**
541
 * @method string getPageSize()
542
 * @method $this withPageSize($value)
543
 * @method string getTid()
544
 * @method $this withTid($value)
545
 * @method string getPageNumber()
546
 * @method $this withPageNumber($value)
547
 */
548
class ListLogicDatabases extends Rpc
549
{
550
}
551
552
/**
553
 * @method string getSearchName()
554
 * @method $this withSearchName($value)
555
 * @method string getReturnGuid()
556
 * @method $this withReturnGuid($value)
557
 * @method string getPageSize()
558
 * @method $this withPageSize($value)
559
 * @method string getDatabaseId()
560
 * @method $this withDatabaseId($value)
561
 * @method string getTid()
562
 * @method $this withTid($value)
563
 * @method string getPageNumber()
564
 * @method $this withPageNumber($value)
565
 */
566
class ListLogicTables extends Rpc
567
{
568
}
569
570
/**
571
 * @method string getOrderStatus()
572
 * @method $this withOrderStatus($value)
573
 * @method string getSearchContent()
574
 * @method $this withSearchContent($value)
575
 * @method string getSearchDateType()
576
 * @method $this withSearchDateType($value)
577
 * @method string getEndTime()
578
 * @method $this withEndTime($value)
579
 * @method string getStartTime()
580
 * @method $this withStartTime($value)
581
 * @method string getTid()
582
 * @method $this withTid($value)
583
 * @method string getPageNumber()
584
 * @method $this withPageNumber($value)
585
 * @method string getPluginType()
586
 * @method $this withPluginType($value)
587
 * @method string getPageSize()
588
 * @method $this withPageSize($value)
589
 * @method string getOrderResultType()
590
 * @method $this withOrderResultType($value)
591
 */
592
class ListOrders extends Rpc
593
{
594
}
595
596
/**
597
 * @method string getSchemaName()
598
 * @method $this withSchemaName($value)
599
 * @method string getColumnName()
600
 * @method $this withColumnName($value)
601
 * @method string getTid()
602
 * @method $this withTid($value)
603
 * @method string getPageNumber()
604
 * @method $this withPageNumber($value)
605
 * @method string getSecurityLevel()
606
 * @method $this withSecurityLevel($value)
607
 * @method string getPageSize()
608
 * @method $this withPageSize($value)
609
 * @method string getTableName()
610
 * @method $this withTableName($value)
611
 */
612
class ListSensitiveColumns extends Rpc
613
{
614
}
615
616
/**
617
 * @method string getSchemaName()
618
 * @method $this withSchemaName($value)
619
 * @method string getTableName()
620
 * @method $this withTableName($value)
621
 * @method string getColumnName()
622
 * @method $this withColumnName($value)
623
 * @method string getTid()
624
 * @method $this withTid($value)
625
 */
626
class ListSensitiveColumnsDetail extends Rpc
627
{
628
}
629
630
/**
631
 * @method string getSearchName()
632
 * @method $this withSearchName($value)
633
 * @method string getReturnGuid()
634
 * @method $this withReturnGuid($value)
635
 * @method string getPageSize()
636
 * @method $this withPageSize($value)
637
 * @method string getDatabaseId()
638
 * @method $this withDatabaseId($value)
639
 * @method string getTid()
640
 * @method $this withTid($value)
641
 * @method string getPageNumber()
642
 * @method $this withPageNumber($value)
643
 */
644
class ListTables extends Rpc
645
{
646
}
647
648
/**
649
 * @method string getUserId()
650
 * @method $this withUserId($value)
651
 * @method string getTid()
652
 * @method $this withTid($value)
653
 * @method string getPageNumber()
654
 * @method $this withPageNumber($value)
655
 * @method string getPermType()
656
 * @method $this withPermType($value)
657
 * @method string getDatabaseName()
658
 * @method $this withDatabaseName($value)
659
 * @method string getEnvType()
660
 * @method $this withEnvType($value)
661
 * @method string getDbType()
662
 * @method $this withDbType($value)
663
 * @method string getPageSize()
664
 * @method $this withPageSize($value)
665
 * @method string getLogic()
666
 * @method $this withLogic($value)
667
 */
668
class ListUserPermissions extends Rpc
669
{
670
}
671
672
/**
673
 * @method string getUserState()
674
 * @method $this withUserState($value)
675
 * @method string getRole()
676
 * @method $this withRole($value)
677
 * @method string getPageSize()
678
 * @method $this withPageSize($value)
679
 * @method string getSearchKey()
680
 * @method $this withSearchKey($value)
681
 * @method string getTid()
682
 * @method $this withTid($value)
683
 * @method string getPageNumber()
684
 * @method $this withPageNumber($value)
685
 */
686
class ListUsers extends Rpc
687
{
688
}
689
690
class ListUserTenants extends Rpc
691
{
692
}
693
694
/**
695
 * @method string getSearchName()
696
 * @method $this withSearchName($value)
697
 * @method string getTid()
698
 * @method $this withTid($value)
699
 */
700
class ListWorkFlowNodes extends Rpc
701
{
702
}
703
704
/**
705
 * @method string getSearchName()
706
 * @method $this withSearchName($value)
707
 * @method string getTid()
708
 * @method $this withTid($value)
709
 */
710
class ListWorkFlowTemplates extends Rpc
711
{
712
}
713
714
/**
715
 * @method string getEcsRegion()
716
 * @method $this withEcsRegion($value)
717
 * @method string getDdlOnline()
718
 * @method $this withDdlOnline($value)
719
 * @method string getUseDsql()
720
 * @method $this withUseDsql($value)
721
 * @method string getNetworkType()
722
 * @method $this withNetworkType($value)
723
 * @method string getTid()
724
 * @method $this withTid($value)
725
 * @method string getSid()
726
 * @method $this withSid($value)
727
 * @method string getDataLinkName()
728
 * @method $this withDataLinkName($value)
729
 * @method string getInstanceSource()
730
 * @method $this withInstanceSource($value)
731
 * @method string getEnvType()
732
 * @method $this withEnvType($value)
733
 * @method string getHost()
734
 * @method $this withHost($value)
735
 * @method string getInstanceType()
736
 * @method $this withInstanceType($value)
737
 * @method string getQueryTimeout()
738
 * @method $this withQueryTimeout($value)
739
 * @method string getEcsInstanceId()
740
 * @method $this withEcsInstanceId($value)
741
 * @method string getExportTimeout()
742
 * @method $this withExportTimeout($value)
743
 * @method string getDatabasePassword()
744
 * @method $this withDatabasePassword($value)
745
 * @method string getInstanceAlias()
746
 * @method $this withInstanceAlias($value)
747
 * @method string getDatabaseUser()
748
 * @method $this withDatabaseUser($value)
749
 * @method string getPort()
750
 * @method $this withPort($value)
751
 * @method string getVpcId()
752
 * @method $this withVpcId($value)
753
 * @method string getDbaUid()
754
 * @method $this withDbaUid($value)
755
 * @method string getSkipTest()
756
 * @method $this withSkipTest($value)
757
 * @method string getSafeRule()
758
 * @method $this withSafeRule($value)
759
 */
760
class RegisterInstance extends Rpc
761
{
762
}
763
764
/**
765
 * @method string getRoleNames()
766
 * @method $this withRoleNames($value)
767
 * @method string getUid()
768
 * @method $this withUid($value)
769
 * @method string getUserNick()
770
 * @method $this withUserNick($value)
771
 * @method string getMobile()
772
 * @method $this withMobile($value)
773
 * @method string getTid()
774
 * @method $this withTid($value)
775
 */
776
class RegisterUser extends Rpc
777
{
778
}
779
780
/**
781
 * @method string getPermTypes()
782
 * @method $this withPermTypes($value)
783
 * @method string getUserAccessId()
784
 * @method $this withUserAccessId($value)
785
 * @method string getDsType()
786
 * @method $this withDsType($value)
787
 * @method string getUserId()
788
 * @method $this withUserId($value)
789
 * @method string getTid()
790
 * @method $this withTid($value)
791
 * @method string getDbId()
792
 * @method $this withDbId($value)
793
 * @method string getTableId()
794
 * @method $this withTableId($value)
795
 * @method string getLogic()
796
 * @method $this withLogic($value)
797
 * @method string getTableName()
798
 * @method $this withTableName($value)
799
 */
800
class RevokeUserPermission extends Rpc
801
{
802
}
803
804
/**
805
 * @method string getSearchKey()
806
 * @method $this withSearchKey($value)
807
 * @method string getSearchRange()
808
 * @method $this withSearchRange($value)
809
 * @method string getTid()
810
 * @method $this withTid($value)
811
 * @method string getPageNumber()
812
 * @method $this withPageNumber($value)
813
 * @method string getSearchTarget()
814
 * @method $this withSearchTarget($value)
815
 * @method string getPageSize()
816
 * @method $this withPageSize($value)
817
 * @method string getEnvType()
818
 * @method $this withEnvType($value)
819
 * @method string getDbType()
820
 * @method $this withDbType($value)
821
 */
822
class SearchDatabase extends Rpc
823
{
824
}
825
826
/**
827
 * @method string getReturnGuid()
828
 * @method $this withReturnGuid($value)
829
 * @method string getSearchKey()
830
 * @method $this withSearchKey($value)
831
 * @method string getSearchRange()
832
 * @method $this withSearchRange($value)
833
 * @method string getTid()
834
 * @method $this withTid($value)
835
 * @method string getPageNumber()
836
 * @method $this withPageNumber($value)
837
 * @method string getSearchTarget()
838
 * @method $this withSearchTarget($value)
839
 * @method string getPageSize()
840
 * @method $this withPageSize($value)
841
 * @method string getEnvType()
842
 * @method $this withEnvType($value)
843
 * @method string getDbType()
844
 * @method $this withDbType($value)
845
 */
846
class SearchTable extends Rpc
847
{
848
}
849
850
/**
851
 * @method string getResourceId()
852
 * @method $this withResourceId($value)
853
 * @method string getOwnerIds()
854
 * @method $this withOwnerIds($value)
855
 * @method string getOwnerType()
856
 * @method $this withOwnerType($value)
857
 * @method string getTid()
858
 * @method $this withTid($value)
859
 */
860
class SetOwners extends Rpc
861
{
862
}
863
864
/**
865
 * @method string getOrderId()
866
 * @method $this withOrderId($value)
867
 * @method string getTid()
868
 * @method $this withTid($value)
869
 */
870
class SubmitOrderApproval extends Rpc
871
{
872
}
873
874
/**
875
 * @method string getDbId()
876
 * @method $this withDbId($value)
877
 * @method string getLogic()
878
 * @method $this withLogic($value)
879
 * @method string getTid()
880
 * @method $this withTid($value)
881
 */
882
class SyncDatabaseMeta extends Rpc
883
{
884
}
885
886
/**
887
 * @method string getInstanceId()
888
 * @method $this withInstanceId($value)
889
 * @method string getIgnoreTable()
890
 * @method $this withIgnoreTable($value)
891
 * @method string getTid()
892
 * @method $this withTid($value)
893
 */
894
class SyncInstanceMeta extends Rpc
895
{
896
}
897
898
/**
899
 * @method string getSafeRuleId()
900
 * @method $this withSafeRuleId($value)
901
 * @method string getEcsRegion()
902
 * @method $this withEcsRegion($value)
903
 * @method string getDdlOnline()
904
 * @method $this withDdlOnline($value)
905
 * @method string getUseDsql()
906
 * @method $this withUseDsql($value)
907
 * @method string getTid()
908
 * @method $this withTid($value)
909
 * @method string getSid()
910
 * @method $this withSid($value)
911
 * @method string getDbaId()
912
 * @method $this withDbaId($value)
913
 * @method string getDataLinkName()
914
 * @method $this withDataLinkName($value)
915
 * @method string getInstanceSource()
916
 * @method $this withInstanceSource($value)
917
 * @method string getEnvType()
918
 * @method $this withEnvType($value)
919
 * @method string getHost()
920
 * @method $this withHost($value)
921
 * @method string getInstanceType()
922
 * @method $this withInstanceType($value)
923
 * @method string getQueryTimeout()
924
 * @method $this withQueryTimeout($value)
925
 * @method string getEcsInstanceId()
926
 * @method $this withEcsInstanceId($value)
927
 * @method string getExportTimeout()
928
 * @method $this withExportTimeout($value)
929
 * @method string getDatabasePassword()
930
 * @method $this withDatabasePassword($value)
931
 * @method string getInstanceAlias()
932
 * @method $this withInstanceAlias($value)
933
 * @method string getDatabaseUser()
934
 * @method $this withDatabaseUser($value)
935
 * @method string getInstanceId()
936
 * @method $this withInstanceId($value)
937
 * @method string getPort()
938
 * @method $this withPort($value)
939
 * @method string getVpcId()
940
 * @method $this withVpcId($value)
941
 * @method string getSkipTest()
942
 * @method $this withSkipTest($value)
943
 */
944
class UpdateInstance extends Rpc
945
{
946
}
947
948
/**
949
 * @method string getRoleNames()
950
 * @method $this withRoleNames($value)
951
 * @method string getMaxResultCount()
952
 * @method $this withMaxResultCount($value)
953
 * @method string getMaxExecuteCount()
954
 * @method $this withMaxExecuteCount($value)
955
 * @method string getUserNick()
956
 * @method $this withUserNick($value)
957
 * @method string getMobile()
958
 * @method $this withMobile($value)
959
 * @method string getTid()
960
 * @method $this withTid($value)
961
 * @method string getUid()
962
 * @method $this withUid($value)
963
 */
964
class UpdateUser extends Rpc
965
{
966
}
967