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 ( 35444b...1e1921 )
by
unknown
06:56
created

GetInstTransInfo::withAliyunUid()   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
c 0
b 0
f 0
dl 0
loc 6
rs 10
cc 1
nc 1
nop 1
1
<?php
2
3
namespace AlibabaCloud\Retailcloud\V20180313;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method DeleteDatabase deleteDatabase(array $options = [])
9
 * @method DeleteRdsAccount deleteRdsAccount(array $options = [])
10
 * @method GetRdsBackUp getRdsBackUp(array $options = [])
11
 * @method DescribeDatabases describeDatabases(array $options = [])
12
 * @method CreateDb createDb(array $options = [])
13
 * @method GrantDbToAccount grantDbToAccount(array $options = [])
14
 * @method DescribeRdsAccounts describeRdsAccounts(array $options = [])
15
 * @method ResourceStatusNotify resourceStatusNotify(array $options = [])
16
 * @method GetInstTransInfo getInstTransInfo(array $options = [])
17
 */
18
class RetailcloudApiResolver extends ApiResolver
19
{
20
}
21
22
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
23
{
24
    /** @var string */
25
    public $product = 'retailcloud';
26
27
    /** @var string */
28
    public $version = '2018-03-13';
29
30
    /** @var string */
31
    public $method = 'POST';
32
33
    /** @var string */
34
    public $serviceCode = 'retailcloud';
35
}
36
37
/**
38
 * @method string getDBName()
39
 * @method string getDBInstanceId()
40
 */
41
class DeleteDatabase extends Rpc
42
{
43
44
    /**
45
     * @param string $value
46
     *
47
     * @return $this
48
     */
49
    public function withDBName($value)
50
    {
51
        $this->data['DBName'] = $value;
52
        $this->options['form_params']['DBName'] = $value;
53
54
        return $this;
55
    }
56
57
    /**
58
     * @param string $value
59
     *
60
     * @return $this
61
     */
62
    public function withDBInstanceId($value)
63
    {
64
        $this->data['DBInstanceId'] = $value;
65
        $this->options['form_params']['DBInstanceId'] = $value;
66
67
        return $this;
68
    }
69
}
70
71
/**
72
 * @method string getAccountName()
73
 * @method string getDbInstanceId()
74
 */
75
class DeleteRdsAccount extends Rpc
76
{
77
78
    /**
79
     * @param string $value
80
     *
81
     * @return $this
82
     */
83
    public function withAccountName($value)
84
    {
85
        $this->data['AccountName'] = $value;
86
        $this->options['form_params']['AccountName'] = $value;
87
88
        return $this;
89
    }
90
91
    /**
92
     * @param string $value
93
     *
94
     * @return $this
95
     */
96
    public function withDbInstanceId($value)
97
    {
98
        $this->data['DbInstanceId'] = $value;
99
        $this->options['form_params']['DbInstanceId'] = $value;
100
101
        return $this;
102
    }
103
}
104
105
/**
106
 * @method string getBackupId()
107
 * @method string getPageSize()
108
 * @method string getDbInstanceId()
109
 * @method string getBackupType()
110
 * @method string getPageNumber()
111
 */
112
class GetRdsBackUp extends Rpc
113
{
114
115
    /**
116
     * @param string $value
117
     *
118
     * @return $this
119
     */
120
    public function withBackupId($value)
121
    {
122
        $this->data['BackupId'] = $value;
123
        $this->options['form_params']['BackupId'] = $value;
124
125
        return $this;
126
    }
127
128
    /**
129
     * @param string $value
130
     *
131
     * @return $this
132
     */
133
    public function withPageSize($value)
134
    {
135
        $this->data['PageSize'] = $value;
136
        $this->options['form_params']['PageSize'] = $value;
137
138
        return $this;
139
    }
140
141
    /**
142
     * @param string $value
143
     *
144
     * @return $this
145
     */
146
    public function withDbInstanceId($value)
147
    {
148
        $this->data['DbInstanceId'] = $value;
149
        $this->options['form_params']['DbInstanceId'] = $value;
150
151
        return $this;
152
    }
153
154
    /**
155
     * @param string $value
156
     *
157
     * @return $this
158
     */
159
    public function withBackupType($value)
160
    {
161
        $this->data['BackupType'] = $value;
162
        $this->options['form_params']['BackupType'] = $value;
163
164
        return $this;
165
    }
166
167
    /**
168
     * @param string $value
169
     *
170
     * @return $this
171
     */
172
    public function withPageNumber($value)
173
    {
174
        $this->data['PageNumber'] = $value;
175
        $this->options['form_params']['PageNumber'] = $value;
176
177
        return $this;
178
    }
179
}
180
181
/**
182
 * @method string getInstanceId()
183
 * @method $this withInstanceId($value)
184
 */
185
class DescribeDatabases extends Rpc
186
{
187
188
    /** @var string */
189
    public $method = 'GET';
190
}
191
192
/**
193
 * @method string getDbName()
194
 * @method string getDbInstanceId()
195
 * @method string getDbDescription()
196
 * @method string getCharacterSetName()
197
 */
198
class CreateDb extends Rpc
199
{
200
201
    /**
202
     * @param string $value
203
     *
204
     * @return $this
205
     */
206
    public function withDbName($value)
207
    {
208
        $this->data['DbName'] = $value;
209
        $this->options['form_params']['DbName'] = $value;
210
211
        return $this;
212
    }
213
214
    /**
215
     * @param string $value
216
     *
217
     * @return $this
218
     */
219
    public function withDbInstanceId($value)
220
    {
221
        $this->data['DbInstanceId'] = $value;
222
        $this->options['form_params']['DbInstanceId'] = $value;
223
224
        return $this;
225
    }
226
227
    /**
228
     * @param string $value
229
     *
230
     * @return $this
231
     */
232
    public function withDbDescription($value)
233
    {
234
        $this->data['DbDescription'] = $value;
235
        $this->options['form_params']['DbDescription'] = $value;
236
237
        return $this;
238
    }
239
240
    /**
241
     * @param string $value
242
     *
243
     * @return $this
244
     */
245
    public function withCharacterSetName($value)
246
    {
247
        $this->data['CharacterSetName'] = $value;
248
        $this->options['form_params']['CharacterSetName'] = $value;
249
250
        return $this;
251
    }
252
}
253
254
/**
255
 * @method string getAccountName()
256
 * @method string getDbName()
257
 * @method string getDbInstanceId()
258
 * @method string getAccountPrivilege()
259
 */
260
class GrantDbToAccount extends Rpc
261
{
262
263
    /**
264
     * @param string $value
265
     *
266
     * @return $this
267
     */
268
    public function withAccountName($value)
269
    {
270
        $this->data['AccountName'] = $value;
271
        $this->options['form_params']['AccountName'] = $value;
272
273
        return $this;
274
    }
275
276
    /**
277
     * @param string $value
278
     *
279
     * @return $this
280
     */
281
    public function withDbName($value)
282
    {
283
        $this->data['DbName'] = $value;
284
        $this->options['form_params']['DbName'] = $value;
285
286
        return $this;
287
    }
288
289
    /**
290
     * @param string $value
291
     *
292
     * @return $this
293
     */
294
    public function withDbInstanceId($value)
295
    {
296
        $this->data['DbInstanceId'] = $value;
297
        $this->options['form_params']['DbInstanceId'] = $value;
298
299
        return $this;
300
    }
301
302
    /**
303
     * @param string $value
304
     *
305
     * @return $this
306
     */
307
    public function withAccountPrivilege($value)
308
    {
309
        $this->data['AccountPrivilege'] = $value;
310
        $this->options['form_params']['AccountPrivilege'] = $value;
311
312
        return $this;
313
    }
314
}
315
316
/**
317
 * @method string getAccountName()
318
 * @method $this withAccountName($value)
319
 * @method string getDbInstanceId()
320
 * @method $this withDbInstanceId($value)
321
 */
322
class DescribeRdsAccounts extends Rpc
323
{
324
325
    /** @var string */
326
    public $method = 'GET';
327
}
328
329
/**
330
 * @method string getData()
331
 */
332
class ResourceStatusNotify extends Rpc
333
{
334
335
    /**
336
     * @param string $value
337
     *
338
     * @return $this
339
     */
340
    public function withData($value)
341
    {
342
        $this->data['Data'] = $value;
343
        $this->options['form_params']['data'] = $value;
344
345
        return $this;
346
    }
347
}
348
349
/**
350
 * @method string getAliyunUid()
351
 * @method string getAliyunEquipId()
352
 * @method string getAliyunCommodityCode()
353
 */
354
class GetInstTransInfo extends Rpc
355
{
356
357
    /**
358
     * @param string $value
359
     *
360
     * @return $this
361
     */
362
    public function withAliyunUid($value)
363
    {
364
        $this->data['AliyunUid'] = $value;
365
        $this->options['form_params']['aliyunUid'] = $value;
366
367
        return $this;
368
    }
369
370
    /**
371
     * @param string $value
372
     *
373
     * @return $this
374
     */
375
    public function withAliyunEquipId($value)
376
    {
377
        $this->data['AliyunEquipId'] = $value;
378
        $this->options['form_params']['aliyunEquipId'] = $value;
379
380
        return $this;
381
    }
382
383
    /**
384
     * @param string $value
385
     *
386
     * @return $this
387
     */
388
    public function withAliyunCommodityCode($value)
389
    {
390
        $this->data['AliyunCommodityCode'] = $value;
391
        $this->options['form_params']['aliyunCommodityCode'] = $value;
392
393
        return $this;
394
    }
395
}
396