tencentcloud-sdk-nodejs-batch 4.1.98 → 4.1.99

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-batch",
3
- "version": "4.1.98",
3
+ "version": "4.1.99",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -1768,10 +1768,10 @@ export interface Dependence {
1768
1768
  > * 若存在多个`Filter`时,`Filter`间的关系为逻辑与(`AND`)关系。
1769
1769
  > * 若同一个`Filter`存在多个`Values`,同一`Filter`下`Values`间的关系为逻辑或(`OR`)关系。
1770
1770
  >
1771
- > 以[DescribeInstances](https://cloud.tencent.com/document/api/213/15728)接口的`Filter`为例。若我们需要查询可用区(`zone`)为广州一区 ***并且*** 实例计费模式(`instance-charge-type`)为包年包月 ***或者*** 按量计费的实例时,可如下实现:
1771
+ > 以[DescribeInstances](https://cloud.tencent.com/document/api/213/15728)接口的`Filter`为例。若我们需要查询可用区(`zone`)为广州六区 ***并且*** 实例计费模式(`instance-charge-type`)为包年包月 ***或者*** 按量计费的实例时,可如下实现:
1772
1772
  ```
1773
1773
  Filters.0.Name=zone
1774
- &Filters.0.Values.0=ap-guangzhou-1
1774
+ &Filters.0.Values.0=ap-guangzhou-6
1775
1775
  &Filters.1.Name=instance-charge-type
1776
1776
  &Filters.1.Values.0=PREPAID
1777
1777
  &Filters.1.Values.1=POSTPAID_BY_HOUR