Skip to content

Commit 3548a81

Browse files
committed
ImmediateDelete.
1 parent a9c70a4 commit 3548a81

File tree

3 files changed

+36
-1
lines changed

3 files changed

+36
-1
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# CHANGELOG
22

3+
## 1.8.45 - 2020-1-3
4+
- ImmediateDelete.
5+
- DescribeInstance CreateTimeUTC ExpireTimeUTC.
6+
- DescribeInstances CreateTimeUTC ExpireTimeUTC.
7+
- DescribeIpWhitelist Groups GroupName.
8+
9+
310
## 1.8.44 - 2019-12-31
411
- Add OTA APIs, including GenerateOTAUploadURL, CreateOTAFirmware, etc.
512
- Add UpdateProductFilterConfig interface, support setting product filter config.

src/HBase/V20190101/HBaseApiResolver.php

+28
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
* @method DescribeRegions describeRegions(array $options = [])
2222
* @method DescribeSecurityGroups describeSecurityGroups(array $options = [])
2323
* @method ListTagResources listTagResources(array $options = [])
24+
* @method ListTags listTags(array $options = [])
2425
* @method ModifyInstanceMaintainTime modifyInstanceMaintainTime(array $options = [])
2526
* @method ModifyInstanceName modifyInstanceName(array $options = [])
2627
* @method ModifyIpWhitelist modifyIpWhitelist(array $options = [])
@@ -165,6 +166,8 @@ class DeleteHbaseHaSlb extends Rpc
165166
}
166167

167168
/**
169+
* @method string getImmediateDeleteFlag()
170+
* @method $this withImmediateDeleteFlag($value)
168171
* @method string getClusterId()
169172
* @method $this withClusterId($value)
170173
*/
@@ -207,13 +210,34 @@ class DescribeInstance extends Rpc
207210
}
208211

209212
/**
213+
* @method string getClusterName()
214+
* @method $this withClusterName($value)
210215
* @method string getPageNumber()
211216
* @method $this withPageNumber($value)
212217
* @method string getPageSize()
213218
* @method $this withPageSize($value)
219+
* @method array getTag()
220+
* @method string getDbType()
221+
* @method $this withDbType($value)
214222
*/
215223
class DescribeInstances extends Rpc
216224
{
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+
}
217241
}
218242

219243
/**
@@ -289,6 +313,10 @@ public function withResourceId(array $resourceId)
289313
}
290314
}
291315

316+
class ListTags extends Rpc
317+
{
318+
}
319+
292320
/**
293321
* @method string getClusterId()
294322
* @method $this withClusterId($value)

src/Release.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Release
1616
/**
1717
* Version of the SDK
1818
*/
19-
const VERSION = '1.8.44';
19+
const VERSION = '1.8.45';
2020

2121
/**
2222
* @param Event $event

0 commit comments

Comments
 (0)