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 ( 653226...2c6269 )
by
unknown
09:16
created

ReportTaskFailed::withError()   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
dl 0
loc 6
rs 10
c 0
b 0
f 0
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 $this withExecutionName($value)
200
 * @method string getRequestId()
201
 * @method $this withRequestId($value)
202
 * @method string getFlowName()
203
 * @method $this withFlowName($value)
204
 */
205
class StartExecution extends Rpc
206
{
207
208
    /**
209
     * @param string $value
210
     *
211
     * @return $this
212
     */
213
    public function withInput($value)
214
    {
215
        $this->data['Input'] = $value;
216
        $this->options['form_params']['Input'] = $value;
217
218
        return $this;
219
    }
220
}
221
222
/**
223
 * @method string getNextToken()
224
 * @method $this withNextToken($value)
225
 * @method string getRequestId()
226
 * @method $this withRequestId($value)
227
 * @method string getLimit()
228
 * @method $this withLimit($value)
229
 */
230
class ListFlows extends Rpc
231
{
232
233
    /** @var string */
234
    public $method = 'GET';
235
}
236
237
/**
238
 * @method string getNextToken()
239
 * @method $this withNextToken($value)
240
 * @method string getRequestId()
241
 * @method $this withRequestId($value)
242
 * @method string getLimit()
243
 * @method $this withLimit($value)
244
 * @method string getFlowName()
245
 * @method $this withFlowName($value)
246
 */
247
class ListExecutions extends Rpc
248
{
249
250
    /** @var string */
251
    public $method = 'GET';
252
}
253
254
/**
255
 * @method string getExecutionName()
256
 * @method $this withExecutionName($value)
257
 * @method string getNextToken()
258
 * @method $this withNextToken($value)
259
 * @method string getRequestId()
260
 * @method $this withRequestId($value)
261
 * @method string getLimit()
262
 * @method $this withLimit($value)
263
 * @method string getFlowName()
264
 * @method $this withFlowName($value)
265
 */
266
class GetExecutionHistory extends Rpc
267
{
268
269
    /** @var string */
270
    public $method = 'GET';
271
}
272
273
/**
274
 * @method string getRequestId()
275
 * @method $this withRequestId($value)
276
 * @method string getName()
277
 * @method $this withName($value)
278
 */
279
class DescribeFlow extends Rpc
280
{
281
282
    /** @var string */
283
    public $method = 'GET';
284
}
285
286
/**
287
 * @method string getExecutionName()
288
 * @method $this withExecutionName($value)
289
 * @method string getRequestId()
290
 * @method $this withRequestId($value)
291
 * @method string getFlowName()
292
 * @method $this withFlowName($value)
293
 */
294
class DescribeExecution extends Rpc
295
{
296
297
    /** @var string */
298
    public $method = 'GET';
299
}
300
301
/**
302
 * @method string getRequestId()
303
 * @method $this withRequestId($value)
304
 * @method string getName()
305
 * @method $this withName($value)
306
 */
307
class DeleteFlow extends Rpc
308
{
309
310
    /** @var string */
311
    public $method = 'GET';
312
}
313
314
/**
315
 * @method string getRequestId()
316
 * @method $this withRequestId($value)
317
 * @method string getRoleArn()
318
 * @method string getName()
319
 * @method string getDescription()
320
 * @method string getDefinition()
321
 * @method string getType()
322
 */
323
class CreateFlow extends Rpc
324
{
325
326
    /**
327
     * @param string $value
328
     *
329
     * @return $this
330
     */
331
    public function withRoleArn($value)
332
    {
333
        $this->data['RoleArn'] = $value;
334
        $this->options['form_params']['RoleArn'] = $value;
335
336
        return $this;
337
    }
338
339
    /**
340
     * @param string $value
341
     *
342
     * @return $this
343
     */
344
    public function withName($value)
345
    {
346
        $this->data['Name'] = $value;
347
        $this->options['form_params']['Name'] = $value;
348
349
        return $this;
350
    }
351
352
    /**
353
     * @param string $value
354
     *
355
     * @return $this
356
     */
357
    public function withDescription($value)
358
    {
359
        $this->data['Description'] = $value;
360
        $this->options['form_params']['Description'] = $value;
361
362
        return $this;
363
    }
364
365
    /**
366
     * @param string $value
367
     *
368
     * @return $this
369
     */
370
    public function withDefinition($value)
371
    {
372
        $this->data['Definition'] = $value;
373
        $this->options['form_params']['Definition'] = $value;
374
375
        return $this;
376
    }
377
378
    /**
379
     * @param string $value
380
     *
381
     * @return $this
382
     */
383
    public function withType($value)
384
    {
385
        $this->data['Type'] = $value;
386
        $this->options['form_params']['Type'] = $value;
387
388
        return $this;
389
    }
390
}
391