Total Complexity | 3 |
Total Lines | 47 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class ModifyClearLogstoreStorage extends Rpc |
||
15 | { |
||
16 | public $product = 'aegis'; |
||
17 | |||
18 | public $version = '2016-11-11'; |
||
19 | |||
20 | public $method = 'POST'; |
||
21 | |||
22 | public $serviceCode = 'vipaegis'; |
||
23 | |||
24 | /** |
||
25 | * @param string $sourceIp |
||
26 | * |
||
27 | * @return $this |
||
28 | */ |
||
29 | public function withSourceIp($sourceIp) |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * @param string $from |
||
39 | * |
||
40 | * @return $this |
||
41 | */ |
||
42 | public function withFrom($from) |
||
43 | { |
||
44 | $this->data['From'] = $from; |
||
45 | $this->options['query']['From'] = $from; |
||
46 | |||
47 | return $this; |
||
48 | } |
||
49 | |||
50 | /** |
||
51 | * @param string $lang |
||
52 | * |
||
53 | * @return $this |
||
54 | */ |
||
55 | public function withLang($lang) |
||
61 | } |
||
62 | } |
||
63 |