|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace AlibabaCloud\Aegis\V20161111; |
|
4
|
|
|
|
|
5
|
|
|
use AlibabaCloud\Rpc; |
|
6
|
|
|
|
|
7
|
|
|
/** |
|
8
|
|
|
* Api DescribeTraceInfoNode |
|
9
|
|
|
* |
|
10
|
|
|
* @method string getSourceIp() |
|
11
|
|
|
* @method string getVertexId() |
|
12
|
|
|
* @method string getFrom() |
|
13
|
|
|
* @method string getLang() |
|
14
|
|
|
* @method string getType() |
|
15
|
|
|
* @method string getUuid() |
|
16
|
|
|
* @method string getEventName() |
|
17
|
|
|
*/ |
|
18
|
|
|
class DescribeTraceInfoNode 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 $vertexId |
|
43
|
|
|
* |
|
44
|
|
|
* @return $this |
|
45
|
|
|
*/ |
|
46
|
|
|
public function withVertexId($vertexId) |
|
47
|
|
|
{ |
|
48
|
|
|
$this->data['VertexId'] = $vertexId; |
|
49
|
|
|
$this->options['query']['VertexId'] = $vertexId; |
|
50
|
|
|
|
|
51
|
|
|
return $this; |
|
52
|
|
|
} |
|
53
|
|
|
|
|
54
|
|
|
/** |
|
55
|
|
|
* @param string $from |
|
56
|
|
|
* |
|
57
|
|
|
* @return $this |
|
58
|
|
|
*/ |
|
59
|
|
|
public function withFrom($from) |
|
60
|
|
|
{ |
|
61
|
|
|
$this->data['From'] = $from; |
|
62
|
|
|
$this->options['query']['From'] = $from; |
|
63
|
|
|
|
|
64
|
|
|
return $this; |
|
65
|
|
|
} |
|
66
|
|
|
|
|
67
|
|
|
/** |
|
68
|
|
|
* @param string $lang |
|
69
|
|
|
* |
|
70
|
|
|
* @return $this |
|
71
|
|
|
*/ |
|
72
|
|
|
public function withLang($lang) |
|
73
|
|
|
{ |
|
74
|
|
|
$this->data['Lang'] = $lang; |
|
75
|
|
|
$this->options['query']['Lang'] = $lang; |
|
76
|
|
|
|
|
77
|
|
|
return $this; |
|
78
|
|
|
} |
|
79
|
|
|
|
|
80
|
|
|
/** |
|
81
|
|
|
* @param string $type |
|
82
|
|
|
* |
|
83
|
|
|
* @return $this |
|
84
|
|
|
*/ |
|
85
|
|
|
public function withType($type) |
|
86
|
|
|
{ |
|
87
|
|
|
$this->data['Type'] = $type; |
|
88
|
|
|
$this->options['query']['Type'] = $type; |
|
89
|
|
|
|
|
90
|
|
|
return $this; |
|
91
|
|
|
} |
|
92
|
|
|
|
|
93
|
|
|
/** |
|
94
|
|
|
* @param string $uuid |
|
95
|
|
|
* |
|
96
|
|
|
* @return $this |
|
97
|
|
|
*/ |
|
98
|
|
|
public function withUuid($uuid) |
|
99
|
|
|
{ |
|
100
|
|
|
$this->data['Uuid'] = $uuid; |
|
101
|
|
|
$this->options['query']['Uuid'] = $uuid; |
|
102
|
|
|
|
|
103
|
|
|
return $this; |
|
104
|
|
|
} |
|
105
|
|
|
|
|
106
|
|
|
/** |
|
107
|
|
|
* @param string $eventName |
|
108
|
|
|
* |
|
109
|
|
|
* @return $this |
|
110
|
|
|
*/ |
|
111
|
|
|
public function withEventName($eventName) |
|
112
|
|
|
{ |
|
113
|
|
|
$this->data['EventName'] = $eventName; |
|
114
|
|
|
$this->options['query']['EventName'] = $eventName; |
|
115
|
|
|
|
|
116
|
|
|
return $this; |
|
117
|
|
|
} |
|
118
|
|
|
} |
|
119
|
|
|
|