|
21 | 21 | * @method DescribeRegions describeRegions(array $options = [])
|
22 | 22 | * @method DescribeSecurityGroups describeSecurityGroups(array $options = [])
|
23 | 23 | * @method ListTagResources listTagResources(array $options = [])
|
| 24 | + * @method ListTags listTags(array $options = []) |
24 | 25 | * @method ModifyInstanceMaintainTime modifyInstanceMaintainTime(array $options = [])
|
25 | 26 | * @method ModifyInstanceName modifyInstanceName(array $options = [])
|
26 | 27 | * @method ModifyIpWhitelist modifyIpWhitelist(array $options = [])
|
@@ -165,6 +166,8 @@ class DeleteHbaseHaSlb extends Rpc
|
165 | 166 | }
|
166 | 167 |
|
167 | 168 | /**
|
| 169 | + * @method string getImmediateDeleteFlag() |
| 170 | + * @method $this withImmediateDeleteFlag($value) |
168 | 171 | * @method string getClusterId()
|
169 | 172 | * @method $this withClusterId($value)
|
170 | 173 | */
|
@@ -207,13 +210,34 @@ class DescribeInstance extends Rpc
|
207 | 210 | }
|
208 | 211 |
|
209 | 212 | /**
|
| 213 | + * @method string getClusterName() |
| 214 | + * @method $this withClusterName($value) |
210 | 215 | * @method string getPageNumber()
|
211 | 216 | * @method $this withPageNumber($value)
|
212 | 217 | * @method string getPageSize()
|
213 | 218 | * @method $this withPageSize($value)
|
| 219 | + * @method array getTag() |
| 220 | + * @method string getDbType() |
| 221 | + * @method $this withDbType($value) |
214 | 222 | */
|
215 | 223 | class DescribeInstances extends Rpc
|
216 | 224 | {
|
| 225 | + |
| 226 | + /** |
| 227 | + * @param array $tag |
| 228 | + * |
| 229 | + * @return $this |
| 230 | + */ |
| 231 | + public function withTag(array $tag) |
| 232 | + { |
| 233 | + $this->data['Tag'] = $tag; |
| 234 | + foreach ($tag as $depth1 => $depth1Value) { |
| 235 | + $this->options['query']['Tag.' . ($depth1 + 1) . '.Value'] = $depth1Value['Value']; |
| 236 | + $this->options['query']['Tag.' . ($depth1 + 1) . '.Key'] = $depth1Value['Key']; |
| 237 | + } |
| 238 | + |
| 239 | + return $this; |
| 240 | + } |
217 | 241 | }
|
218 | 242 |
|
219 | 243 | /**
|
@@ -289,6 +313,10 @@ public function withResourceId(array $resourceId)
|
289 | 313 | }
|
290 | 314 | }
|
291 | 315 |
|
| 316 | +class ListTags extends Rpc |
| 317 | +{ |
| 318 | +} |
| 319 | + |
292 | 320 | /**
|
293 | 321 | * @method string getClusterId()
|
294 | 322 | * @method $this withClusterId($value)
|
|
0 commit comments