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 ( 04d7b2...2532a7 )
by
unknown
06:13
created

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