|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace AlibabaCloud\Aegis\V20161111; |
|
4
|
|
|
|
|
5
|
|
|
use AlibabaCloud\Rpc; |
|
6
|
|
|
|
|
7
|
|
|
/** |
|
8
|
|
|
* Api DescribeWhiteListEffectiveAssets |
|
9
|
|
|
* |
|
10
|
|
|
* @method string getSourceIp() |
|
11
|
|
|
* @method string getPageSize() |
|
12
|
|
|
* @method string getRemark() |
|
13
|
|
|
* @method string getStrategyId() |
|
14
|
|
|
* @method string getCurrentPage() |
|
15
|
|
|
* @method string getLang() |
|
16
|
|
|
* @method string getNeedStatistics() |
|
17
|
|
|
*/ |
|
18
|
|
|
class DescribeWhiteListEffectiveAssets extends Rpc |
|
19
|
|
|
{ |
|
20
|
|
|
public $product = 'aegis'; |
|
21
|
|
|
|
|
22
|
|
|
public $version = '2016-11-11'; |
|
23
|
|
|
|
|
24
|
|
|
public $method = 'POST'; |
|
25
|
|
|
|
|
26
|
|
|
public $serviceCode = 'vipaegis'; |
|
27
|
|
|
|
|
28
|
|
|
/** |
|
29
|
|
|
* @param string $sourceIp |
|
30
|
|
|
* |
|
31
|
|
|
* @return $this |
|
32
|
|
|
*/ |
|
33
|
|
|
public function withSourceIp($sourceIp) |
|
34
|
|
|
{ |
|
35
|
|
|
$this->data['SourceIp'] = $sourceIp; |
|
36
|
|
|
$this->options['query']['SourceIp'] = $sourceIp; |
|
37
|
|
|
|
|
38
|
|
|
return $this; |
|
39
|
|
|
} |
|
40
|
|
|
|
|
41
|
|
|
/** |
|
42
|
|
|
* @param string $pageSize |
|
43
|
|
|
* |
|
44
|
|
|
* @return $this |
|
45
|
|
|
*/ |
|
46
|
|
|
public function withPageSize($pageSize) |
|
47
|
|
|
{ |
|
48
|
|
|
$this->data['PageSize'] = $pageSize; |
|
49
|
|
|
$this->options['query']['PageSize'] = $pageSize; |
|
50
|
|
|
|
|
51
|
|
|
return $this; |
|
52
|
|
|
} |
|
53
|
|
|
|
|
54
|
|
|
/** |
|
55
|
|
|
* @param string $remark |
|
56
|
|
|
* |
|
57
|
|
|
* @return $this |
|
58
|
|
|
*/ |
|
59
|
|
|
public function withRemark($remark) |
|
60
|
|
|
{ |
|
61
|
|
|
$this->data['Remark'] = $remark; |
|
62
|
|
|
$this->options['query']['Remark'] = $remark; |
|
63
|
|
|
|
|
64
|
|
|
return $this; |
|
65
|
|
|
} |
|
66
|
|
|
|
|
67
|
|
|
/** |
|
68
|
|
|
* @param string $strategyId |
|
69
|
|
|
* |
|
70
|
|
|
* @return $this |
|
71
|
|
|
*/ |
|
72
|
|
|
public function withStrategyId($strategyId) |
|
73
|
|
|
{ |
|
74
|
|
|
$this->data['StrategyId'] = $strategyId; |
|
75
|
|
|
$this->options['query']['StrategyId'] = $strategyId; |
|
76
|
|
|
|
|
77
|
|
|
return $this; |
|
78
|
|
|
} |
|
79
|
|
|
|
|
80
|
|
|
/** |
|
81
|
|
|
* @param string $currentPage |
|
82
|
|
|
* |
|
83
|
|
|
* @return $this |
|
84
|
|
|
*/ |
|
85
|
|
|
public function withCurrentPage($currentPage) |
|
86
|
|
|
{ |
|
87
|
|
|
$this->data['CurrentPage'] = $currentPage; |
|
88
|
|
|
$this->options['query']['CurrentPage'] = $currentPage; |
|
89
|
|
|
|
|
90
|
|
|
return $this; |
|
91
|
|
|
} |
|
92
|
|
|
|
|
93
|
|
|
/** |
|
94
|
|
|
* @param string $lang |
|
95
|
|
|
* |
|
96
|
|
|
* @return $this |
|
97
|
|
|
*/ |
|
98
|
|
|
public function withLang($lang) |
|
99
|
|
|
{ |
|
100
|
|
|
$this->data['Lang'] = $lang; |
|
101
|
|
|
$this->options['query']['Lang'] = $lang; |
|
102
|
|
|
|
|
103
|
|
|
return $this; |
|
104
|
|
|
} |
|
105
|
|
|
|
|
106
|
|
|
/** |
|
107
|
|
|
* @param string $needStatistics |
|
108
|
|
|
* |
|
109
|
|
|
* @return $this |
|
110
|
|
|
*/ |
|
111
|
|
|
public function withNeedStatistics($needStatistics) |
|
112
|
|
|
{ |
|
113
|
|
|
$this->data['NeedStatistics'] = $needStatistics; |
|
114
|
|
|
$this->options['query']['NeedStatistics'] = $needStatistics; |
|
115
|
|
|
|
|
116
|
|
|
return $this; |
|
117
|
|
|
} |
|
118
|
|
|
} |
|
119
|
|
|
|