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
Pull Request — master (#54)
by Yong
15:08
created

UpdateOssIncrementCheckSetting::withAutoFreezeType()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 3
nc 1
nop 1
dl 0
loc 6
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace AlibabaCloud\Green\V20170823;
4
5
use AlibabaCloud\Rpc;
6
7
/**
8
 * Api UpdateOssIncrementCheckSetting
9
 *
10
 * @method string getImageAutoFreeze()
11
 * @method string getVideoSceneList()
12
 * @method string getAutoFreezeType()
13
 * @method string getImageSceneList()
14
 * @method string getBucketConfigList()
15
 * @method string getSourceIp()
16
 * @method string getImageScanLimit()
17
 * @method string getVideoAutoFreezeSceneList()
18
 * @method string getVideoFrameInterval()
19
 * @method string getVideoMaxSize()
20
 * @method string getLang()
21
 * @method string getVideoMaxFrames()
22
 */
23
class UpdateOssIncrementCheckSetting extends Rpc
24
{
25
    public $product = 'Green';
26
27
    public $version = '2017-08-23';
28
29
    public $method = 'POST';
30
31
    public $serviceCode = 'green';
32
33
    /**
34
     * @param string $imageAutoFreeze
35
     *
36
     * @return $this
37
     */
38
    public function withImageAutoFreeze($imageAutoFreeze)
39
    {
40
        $this->data['ImageAutoFreeze'] = $imageAutoFreeze;
41
        $this->options['query']['ImageAutoFreeze'] = $imageAutoFreeze;
42
43
        return $this;
44
    }
45
46
    /**
47
     * @param string $videoSceneList
48
     *
49
     * @return $this
50
     */
51
    public function withVideoSceneList($videoSceneList)
52
    {
53
        $this->data['VideoSceneList'] = $videoSceneList;
54
        $this->options['query']['VideoSceneList'] = $videoSceneList;
55
56
        return $this;
57
    }
58
59
    /**
60
     * @param string $autoFreezeType
61
     *
62
     * @return $this
63
     */
64
    public function withAutoFreezeType($autoFreezeType)
65
    {
66
        $this->data['AutoFreezeType'] = $autoFreezeType;
67
        $this->options['query']['AutoFreezeType'] = $autoFreezeType;
68
69
        return $this;
70
    }
71
72
    /**
73
     * @param string $imageSceneList
74
     *
75
     * @return $this
76
     */
77
    public function withImageSceneList($imageSceneList)
78
    {
79
        $this->data['ImageSceneList'] = $imageSceneList;
80
        $this->options['query']['ImageSceneList'] = $imageSceneList;
81
82
        return $this;
83
    }
84
85
    /**
86
     * @param string $bucketConfigList
87
     *
88
     * @return $this
89
     */
90
    public function withBucketConfigList($bucketConfigList)
91
    {
92
        $this->data['BucketConfigList'] = $bucketConfigList;
93
        $this->options['query']['BucketConfigList'] = $bucketConfigList;
94
95
        return $this;
96
    }
97
98
    /**
99
     * @param string $sourceIp
100
     *
101
     * @return $this
102
     */
103
    public function withSourceIp($sourceIp)
104
    {
105
        $this->data['SourceIp'] = $sourceIp;
106
        $this->options['query']['SourceIp'] = $sourceIp;
107
108
        return $this;
109
    }
110
111
    /**
112
     * @param string $imageScanLimit
113
     *
114
     * @return $this
115
     */
116
    public function withImageScanLimit($imageScanLimit)
117
    {
118
        $this->data['ImageScanLimit'] = $imageScanLimit;
119
        $this->options['query']['ImageScanLimit'] = $imageScanLimit;
120
121
        return $this;
122
    }
123
124
    /**
125
     * @param string $videoAutoFreezeSceneList
126
     *
127
     * @return $this
128
     */
129
    public function withVideoAutoFreezeSceneList($videoAutoFreezeSceneList)
130
    {
131
        $this->data['VideoAutoFreezeSceneList'] = $videoAutoFreezeSceneList;
132
        $this->options['query']['VideoAutoFreezeSceneList'] = $videoAutoFreezeSceneList;
133
134
        return $this;
135
    }
136
137
    /**
138
     * @param string $videoFrameInterval
139
     *
140
     * @return $this
141
     */
142
    public function withVideoFrameInterval($videoFrameInterval)
143
    {
144
        $this->data['VideoFrameInterval'] = $videoFrameInterval;
145
        $this->options['query']['VideoFrameInterval'] = $videoFrameInterval;
146
147
        return $this;
148
    }
149
150
    /**
151
     * @param string $videoMaxSize
152
     *
153
     * @return $this
154
     */
155
    public function withVideoMaxSize($videoMaxSize)
156
    {
157
        $this->data['VideoMaxSize'] = $videoMaxSize;
158
        $this->options['query']['VideoMaxSize'] = $videoMaxSize;
159
160
        return $this;
161
    }
162
163
    /**
164
     * @param string $lang
165
     *
166
     * @return $this
167
     */
168
    public function withLang($lang)
169
    {
170
        $this->data['Lang'] = $lang;
171
        $this->options['query']['Lang'] = $lang;
172
173
        return $this;
174
    }
175
176
    /**
177
     * @param string $videoMaxFrames
178
     *
179
     * @return $this
180
     */
181
    public function withVideoMaxFrames($videoMaxFrames)
182
    {
183
        $this->data['VideoMaxFrames'] = $videoMaxFrames;
184
        $this->options['query']['VideoMaxFrames'] = $videoMaxFrames;
185
186
        return $this;
187
    }
188
}
189