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 ( 518044...25bb2f )
by
unknown
09:11
created

StartExecution::withCallbackFnFTaskToken()   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\Fnf\V20190315;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method CreateFlow createFlow(array $options = [])
9
 * @method DeleteFlow deleteFlow(array $options = [])
10
 * @method DescribeExecution describeExecution(array $options = [])
11
 * @method DescribeFlow describeFlow(array $options = [])
12
 * @method GetExecutionHistory getExecutionHistory(array $options = [])
13
 * @method ListExecutions listExecutions(array $options = [])
14
 * @method ListFlows listFlows(array $options = [])
15
 * @method ReportTaskFailed reportTaskFailed(array $options = [])
16
 * @method ReportTaskSucceeded reportTaskSucceeded(array $options = [])
17
 * @method StartExecution startExecution(array $options = [])
18
 * @method StopExecution stopExecution(array $options = [])
19
 * @method UpdateFlow updateFlow(array $options = [])
20
 */
21
class FnfApiResolver extends ApiResolver
22
{
23
}
24
25
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
26
{
27
    /** @var string */
28
    public $product = 'fnf';
29
30
    /** @var string */
31
    public $version = '2019-03-15';
32
33
    /** @var string */
34
    public $method = 'POST';
35
36
    /** @var string */
37
    public $serviceCode = 'fnf';
38
}
39
40
/**
41
 * @method string getDescription()
42
 * @method string getType()
43
 * @method string getRequestId()
44
 * @method $this withRequestId($value)
45
 * @method string getRoleArn()
46
 * @method string getName()
47
 * @method string getDefinition()
48
 */
49
class CreateFlow extends Rpc
50
{
51
52
    /**
53
     * @param string $value
54
     *
55
     * @return $this
56
     */
57
    public function withDescription($value)
58
    {
59
        $this->data['Description'] = $value;
60
        $this->options['form_params']['Description'] = $value;
61
62
        return $this;
63
    }
64
65
    /**
66
     * @param string $value
67
     *
68
     * @return $this
69
     */
70
    public function withType($value)
71
    {
72
        $this->data['Type'] = $value;
73
        $this->options['form_params']['Type'] = $value;
74
75
        return $this;
76
    }
77
78
    /**
79
     * @param string $value
80
     *
81
     * @return $this
82
     */
83
    public function withRoleArn($value)
84
    {
85
        $this->data['RoleArn'] = $value;
86
        $this->options['form_params']['RoleArn'] = $value;
87
88
        return $this;
89
    }
90
91
    /**
92
     * @param string $value
93
     *
94
     * @return $this
95
     */
96
    public function withName($value)
97
    {
98
        $this->data['Name'] = $value;
99
        $this->options['form_params']['Name'] = $value;
100
101
        return $this;
102
    }
103
104
    /**
105
     * @param string $value
106
     *
107
     * @return $this
108
     */
109
    public function withDefinition($value)
110
    {
111
        $this->data['Definition'] = $value;
112
        $this->options['form_params']['Definition'] = $value;
113
114
        return $this;
115
    }
116
}
117
118
/**
119
 * @method string getRequestId()
120
 * @method $this withRequestId($value)
121
 * @method string getName()
122
 * @method $this withName($value)
123
 */
124
class DeleteFlow extends Rpc
125
{
126
127
    /** @var string */
128
    public $method = 'GET';
129
}
130
131
/**
132
 * @method string getExecutionName()
133
 * @method $this withExecutionName($value)
134
 * @method string getRequestId()
135
 * @method $this withRequestId($value)
136
 * @method string getFlowName()
137
 * @method $this withFlowName($value)
138
 */
139
class DescribeExecution extends Rpc
140
{
141
142
    /** @var string */
143
    public $method = 'GET';
144
}
145
146
/**
147
 * @method string getRequestId()
148
 * @method $this withRequestId($value)
149
 * @method string getName()
150
 * @method $this withName($value)
151
 */
152
class DescribeFlow extends Rpc
153
{
154
155
    /** @var string */
156
    public $method = 'GET';
157
}
158
159
/**
160
 * @method string getExecutionName()
161
 * @method $this withExecutionName($value)
162
 * @method string getNextToken()
163
 * @method $this withNextToken($value)
164
 * @method string getRequestId()
165
 * @method $this withRequestId($value)
166
 * @method string getLimit()
167
 * @method $this withLimit($value)
168
 * @method string getFlowName()
169
 * @method $this withFlowName($value)
170
 */
171
class GetExecutionHistory extends Rpc
172
{
173
174
    /** @var string */
175
    public $method = 'GET';
176
}
177
178
/**
179
 * @method string getNextToken()
180
 * @method $this withNextToken($value)
181
 * @method string getRequestId()
182
 * @method $this withRequestId($value)
183
 * @method string getLimit()
184
 * @method $this withLimit($value)
185
 * @method string getFlowName()
186
 * @method $this withFlowName($value)
187
 * @method string getStatus()
188
 * @method $this withStatus($value)
189
 */
190
class ListExecutions extends Rpc
191
{
192
193
    /** @var string */
194
    public $method = 'GET';
195
}
196
197
/**
198
 * @method string getNextToken()
199
 * @method $this withNextToken($value)
200
 * @method string getRequestId()
201
 * @method $this withRequestId($value)
202
 * @method string getLimit()
203
 * @method $this withLimit($value)
204
 */
205
class ListFlows extends Rpc
206
{
207
208
    /** @var string */
209
    public $method = 'GET';
210
}
211
212
/**
213
 * @method string getCause()
214
 * @method string getError()
215
 * @method string getRequestId()
216
 * @method $this withRequestId($value)
217
 * @method string getTaskToken()
218
 * @method $this withTaskToken($value)
219
 */
220
class ReportTaskFailed extends Rpc
221
{
222
223
    /**
224
     * @param string $value
225
     *
226
     * @return $this
227
     */
228
    public function withCause($value)
229
    {
230
        $this->data['Cause'] = $value;
231
        $this->options['form_params']['Cause'] = $value;
232
233
        return $this;
234
    }
235
236
    /**
237
     * @param string $value
238
     *
239
     * @return $this
240
     */
241
    public function withError($value)
242
    {
243
        $this->data['Error'] = $value;
244
        $this->options['form_params']['Error'] = $value;
245
246
        return $this;
247
    }
248
}
249
250
/**
251
 * @method string getOutput()
252
 * @method string getRequestId()
253
 * @method $this withRequestId($value)
254
 * @method string getTaskToken()
255
 * @method $this withTaskToken($value)
256
 */
257
class ReportTaskSucceeded extends Rpc
258
{
259
260
    /**
261
     * @param string $value
262
     *
263
     * @return $this
264
     */
265
    public function withOutput($value)
266
    {
267
        $this->data['Output'] = $value;
268
        $this->options['form_params']['Output'] = $value;
269
270
        return $this;
271
    }
272
}
273
274
/**
275
 * @method string getCallbackFnFTaskToken()
276
 * @method string getExecutionName()
277
 * @method string getInput()
278
 * @method string getRequestId()
279
 * @method $this withRequestId($value)
280
 * @method string getFlowName()
281
 */
282
class StartExecution extends Rpc
283
{
284
285
    /**
286
     * @param string $value
287
     *
288
     * @return $this
289
     */
290
    public function withCallbackFnFTaskToken($value)
291
    {
292
        $this->data['CallbackFnFTaskToken'] = $value;
293
        $this->options['form_params']['CallbackFnFTaskToken'] = $value;
294
295
        return $this;
296
    }
297
298
    /**
299
     * @param string $value
300
     *
301
     * @return $this
302
     */
303
    public function withExecutionName($value)
304
    {
305
        $this->data['ExecutionName'] = $value;
306
        $this->options['form_params']['ExecutionName'] = $value;
307
308
        return $this;
309
    }
310
311
    /**
312
     * @param string $value
313
     *
314
     * @return $this
315
     */
316
    public function withInput($value)
317
    {
318
        $this->data['Input'] = $value;
319
        $this->options['form_params']['Input'] = $value;
320
321
        return $this;
322
    }
323
324
    /**
325
     * @param string $value
326
     *
327
     * @return $this
328
     */
329
    public function withFlowName($value)
330
    {
331
        $this->data['FlowName'] = $value;
332
        $this->options['form_params']['FlowName'] = $value;
333
334
        return $this;
335
    }
336
}
337
338
/**
339
 * @method string getExecutionName()
340
 * @method string getCause()
341
 * @method string getError()
342
 * @method string getRequestId()
343
 * @method $this withRequestId($value)
344
 * @method string getFlowName()
345
 */
346
class StopExecution extends Rpc
347
{
348
349
    /**
350
     * @param string $value
351
     *
352
     * @return $this
353
     */
354
    public function withExecutionName($value)
355
    {
356
        $this->data['ExecutionName'] = $value;
357
        $this->options['form_params']['ExecutionName'] = $value;
358
359
        return $this;
360
    }
361
362
    /**
363
     * @param string $value
364
     *
365
     * @return $this
366
     */
367
    public function withCause($value)
368
    {
369
        $this->data['Cause'] = $value;
370
        $this->options['form_params']['Cause'] = $value;
371
372
        return $this;
373
    }
374
375
    /**
376
     * @param string $value
377
     *
378
     * @return $this
379
     */
380
    public function withError($value)
381
    {
382
        $this->data['Error'] = $value;
383
        $this->options['form_params']['Error'] = $value;
384
385
        return $this;
386
    }
387
388
    /**
389
     * @param string $value
390
     *
391
     * @return $this
392
     */
393
    public function withFlowName($value)
394
    {
395
        $this->data['FlowName'] = $value;
396
        $this->options['form_params']['FlowName'] = $value;
397
398
        return $this;
399
    }
400
}
401
402
/**
403
 * @method string getDescription()
404
 * @method string getType()
405
 * @method string getRequestId()
406
 * @method $this withRequestId($value)
407
 * @method string getRoleArn()
408
 * @method string getName()
409
 * @method string getDefinition()
410
 */
411
class UpdateFlow extends Rpc
412
{
413
414
    /**
415
     * @param string $value
416
     *
417
     * @return $this
418
     */
419
    public function withDescription($value)
420
    {
421
        $this->data['Description'] = $value;
422
        $this->options['form_params']['Description'] = $value;
423
424
        return $this;
425
    }
426
427
    /**
428
     * @param string $value
429
     *
430
     * @return $this
431
     */
432
    public function withType($value)
433
    {
434
        $this->data['Type'] = $value;
435
        $this->options['form_params']['Type'] = $value;
436
437
        return $this;
438
    }
439
440
    /**
441
     * @param string $value
442
     *
443
     * @return $this
444
     */
445
    public function withRoleArn($value)
446
    {
447
        $this->data['RoleArn'] = $value;
448
        $this->options['form_params']['RoleArn'] = $value;
449
450
        return $this;
451
    }
452
453
    /**
454
     * @param string $value
455
     *
456
     * @return $this
457
     */
458
    public function withName($value)
459
    {
460
        $this->data['Name'] = $value;
461
        $this->options['form_params']['Name'] = $value;
462
463
        return $this;
464
    }
465
466
    /**
467
     * @param string $value
468
     *
469
     * @return $this
470
     */
471
    public function withDefinition($value)
472
    {
473
        $this->data['Definition'] = $value;
474
        $this->options['form_params']['Definition'] = $value;
475
476
        return $this;
477
    }
478
}
479