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.
Passed
Push — master ( f21669...77f1d2 )
by
unknown
08:11
created

StartExecution::withInput()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
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 UpdateFlow updateFlow(array $options = [])
9
 * @method StopExecution stopExecution(array $options = [])
10
 * @method StartExecution startExecution(array $options = [])
11
 * @method ListFlows listFlows(array $options = [])
12
 * @method ListExecutions listExecutions(array $options = [])
13
 * @method GetExecutionHistory getExecutionHistory(array $options = [])
14
 * @method DescribeFlow describeFlow(array $options = [])
15
 * @method DescribeExecution describeExecution(array $options = [])
16
 * @method DeleteFlow deleteFlow(array $options = [])
17
 * @method CreateFlow createFlow(array $options = [])
18
 */
19
class FnfApiResolver extends ApiResolver
20
{
21
}
22
23
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
24
{
25
    /** @var string */
26
    public $product = 'fnf';
27
28
    /** @var string */
29
    public $version = '2019-03-15';
30
31
    /** @var string */
32
    public $serviceCode = 'fnf';
33
}
34
35
/**
36
 * @method string getRequestId()
37
 * @method $this withRequestId($value)
38
 * @method string getRoleArn()
39
 * @method string getName()
40
 * @method string getDescription()
41
 * @method string getDefinition()
42
 * @method string getType()
43
 */
44
class UpdateFlow extends Rpc
45
{
46
47
    /** @var string */
48
    public $method = 'POST';
49
50
    /**
51
     * @param string $value
52
     *
53
     * @return $this
54
     */
55
    public function withRoleArn($value)
56
    {
57
        $this->data['RoleArn'] = $value;
58
        $this->options['form_params']['RoleArn'] = $value;
59
60
        return $this;
61
    }
62
63
    /**
64
     * @param string $value
65
     *
66
     * @return $this
67
     */
68
    public function withName($value)
69
    {
70
        $this->data['Name'] = $value;
71
        $this->options['form_params']['Name'] = $value;
72
73
        return $this;
74
    }
75
76
    /**
77
     * @param string $value
78
     *
79
     * @return $this
80
     */
81
    public function withDescription($value)
82
    {
83
        $this->data['Description'] = $value;
84
        $this->options['form_params']['Description'] = $value;
85
86
        return $this;
87
    }
88
89
    /**
90
     * @param string $value
91
     *
92
     * @return $this
93
     */
94
    public function withDefinition($value)
95
    {
96
        $this->data['Definition'] = $value;
97
        $this->options['form_params']['Definition'] = $value;
98
99
        return $this;
100
    }
101
102
    /**
103
     * @param string $value
104
     *
105
     * @return $this
106
     */
107
    public function withType($value)
108
    {
109
        $this->data['Type'] = $value;
110
        $this->options['form_params']['Type'] = $value;
111
112
        return $this;
113
    }
114
}
115
116
/**
117
 * @method string getExecutionName()
118
 * @method $this withExecutionName($value)
119
 * @method string getRequestId()
120
 * @method $this withRequestId($value)
121
 * @method string getCause()
122
 * @method $this withCause($value)
123
 * @method string getFlowName()
124
 * @method $this withFlowName($value)
125
 * @method string getError()
126
 * @method $this withError($value)
127
 */
128
class StopExecution extends Rpc
129
{
130
131
    /** @var string */
132
    public $method = 'POST';
133
}
134
135
/**
136
 * @method string getInput()
137
 * @method string getExecutionName()
138
 * @method $this withExecutionName($value)
139
 * @method string getRequestId()
140
 * @method $this withRequestId($value)
141
 * @method string getFlowName()
142
 * @method $this withFlowName($value)
143
 */
144
class StartExecution extends Rpc
145
{
146
147
    /** @var string */
148
    public $method = 'POST';
149
150
    /**
151
     * @param string $value
152
     *
153
     * @return $this
154
     */
155
    public function withInput($value)
156
    {
157
        $this->data['Input'] = $value;
158
        $this->options['form_params']['Input'] = $value;
159
160
        return $this;
161
    }
162
}
163
164
/**
165
 * @method string getNextToken()
166
 * @method $this withNextToken($value)
167
 * @method string getRequestId()
168
 * @method $this withRequestId($value)
169
 * @method string getLimit()
170
 * @method $this withLimit($value)
171
 */
172
class ListFlows extends Rpc
173
{
174
}
175
176
/**
177
 * @method string getNextToken()
178
 * @method $this withNextToken($value)
179
 * @method string getRequestId()
180
 * @method $this withRequestId($value)
181
 * @method string getLimit()
182
 * @method $this withLimit($value)
183
 * @method string getFlowName()
184
 * @method $this withFlowName($value)
185
 */
186
class ListExecutions extends Rpc
187
{
188
}
189
190
/**
191
 * @method string getExecutionName()
192
 * @method $this withExecutionName($value)
193
 * @method string getNextToken()
194
 * @method $this withNextToken($value)
195
 * @method string getRequestId()
196
 * @method $this withRequestId($value)
197
 * @method string getLimit()
198
 * @method $this withLimit($value)
199
 * @method string getFlowName()
200
 * @method $this withFlowName($value)
201
 */
202
class GetExecutionHistory extends Rpc
203
{
204
}
205
206
/**
207
 * @method string getRequestId()
208
 * @method $this withRequestId($value)
209
 * @method string getName()
210
 * @method $this withName($value)
211
 */
212
class DescribeFlow extends Rpc
213
{
214
}
215
216
/**
217
 * @method string getExecutionName()
218
 * @method $this withExecutionName($value)
219
 * @method string getRequestId()
220
 * @method $this withRequestId($value)
221
 * @method string getFlowName()
222
 * @method $this withFlowName($value)
223
 */
224
class DescribeExecution extends Rpc
225
{
226
}
227
228
/**
229
 * @method string getRequestId()
230
 * @method $this withRequestId($value)
231
 * @method string getName()
232
 * @method $this withName($value)
233
 */
234
class DeleteFlow extends Rpc
235
{
236
}
237
238
/**
239
 * @method string getRequestId()
240
 * @method $this withRequestId($value)
241
 * @method string getRoleArn()
242
 * @method string getName()
243
 * @method string getDescription()
244
 * @method string getDefinition()
245
 * @method string getType()
246
 */
247
class CreateFlow extends Rpc
248
{
249
250
    /** @var string */
251
    public $method = 'POST';
252
253
    /**
254
     * @param string $value
255
     *
256
     * @return $this
257
     */
258
    public function withRoleArn($value)
259
    {
260
        $this->data['RoleArn'] = $value;
261
        $this->options['form_params']['RoleArn'] = $value;
262
263
        return $this;
264
    }
265
266
    /**
267
     * @param string $value
268
     *
269
     * @return $this
270
     */
271
    public function withName($value)
272
    {
273
        $this->data['Name'] = $value;
274
        $this->options['form_params']['Name'] = $value;
275
276
        return $this;
277
    }
278
279
    /**
280
     * @param string $value
281
     *
282
     * @return $this
283
     */
284
    public function withDescription($value)
285
    {
286
        $this->data['Description'] = $value;
287
        $this->options['form_params']['Description'] = $value;
288
289
        return $this;
290
    }
291
292
    /**
293
     * @param string $value
294
     *
295
     * @return $this
296
     */
297
    public function withDefinition($value)
298
    {
299
        $this->data['Definition'] = $value;
300
        $this->options['form_params']['Definition'] = $value;
301
302
        return $this;
303
    }
304
305
    /**
306
     * @param string $value
307
     *
308
     * @return $this
309
     */
310
    public function withType($value)
311
    {
312
        $this->data['Type'] = $value;
313
        $this->options['form_params']['Type'] = $value;
314
315
        return $this;
316
    }
317
}
318