tencentcloud-sdk-nodejs-as 4.1.76 → 4.1.82
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
|
@@ -1134,6 +1134,7 @@ export interface DescribeAutoScalingInstancesRequest {
|
|
|
1134
1134
|
* 过滤条件。
|
|
1135
1135
|
<li> instance-id - String - 是否必填:否 -(过滤条件)按照实例ID过滤。可通过登录[控制台](https://console.cloud.tencent.com/cvm/index)或调用接口 [DescribeInstances](https://cloud.tencent.com/document/api/213/15728) ,取返回信息中的 `InstanceId` 获取实例ID。</li>
|
|
1136
1136
|
<li> auto-scaling-group-id - String - 是否必填:否 -(过滤条件)按照伸缩组ID过滤。可通过登录 [控制台](https://console.cloud.tencent.com/autoscaling/group) 或调用接口 [DescribeAutoScalingGroups](https://cloud.tencent.com/document/api/377/20438) ,取返回信息中的 AutoScalingGroupId 获取伸缩组ID。</li>
|
|
1137
|
+
<li> private-ip-address - String - 是否必填:否 -(过滤条件)按照实例内网IP过滤。可通过登录 [控制台](https://console.cloud.tencent.com/autoscaling/group) 或调用接口 [DescribeInstances](https://cloud.tencent.com/document/api/213/15728) ,取返回信息中的 `PrivateIpAddresses`获取实例内网IP。</li>
|
|
1137
1138
|
每次请求的`Filters`的上限为10,`Filter.Values`的上限为5。参数不支持同时指定`InstanceIds`和`Filters`。
|
|
1138
1139
|
*/
|
|
1139
1140
|
Filters?: Array<Filter>;
|
|
@@ -4135,6 +4136,45 @@ export interface InternetAccessible {
|
|
|
4135
4136
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4136
4137
|
*/
|
|
4137
4138
|
BandwidthPackageId?: string;
|
|
4139
|
+
/**
|
|
4140
|
+
* 线路类型。各种线路类型详情可参考:[EIP 的 IP 地址类型](https://cloud.tencent.com/document/product/1199/41646)。默认值:BGP。
|
|
4141
|
+
|
|
4142
|
+
<li>BGP:常规 BGP 线路</li>
|
|
4143
|
+
已开通静态单线IP白名单的用户,可选值:
|
|
4144
|
+
|
|
4145
|
+
<li>CMCC:中国移动</li>
|
|
4146
|
+
<li>CTCC:中国电信</li>
|
|
4147
|
+
<li>CUCC:中国联通</li>
|
|
4148
|
+
注意:仅部分地域支持静态单线IP。
|
|
4149
|
+
|
|
4150
|
+
*/
|
|
4151
|
+
InternetServiceProvider?: string;
|
|
4152
|
+
/**
|
|
4153
|
+
* 公网 IP 类型。
|
|
4154
|
+
|
|
4155
|
+
<li> WanIP:普通公网IP。</li>
|
|
4156
|
+
<li> HighQualityEIP:精品 IP。仅新加坡和中国香港支持精品IP。</li>
|
|
4157
|
+
<li> AntiDDoSEIP:高防 IP。仅部分地域支持高防IP,详情可见[弹性公网IP产品概述](https://cloud.tencent.com/document/product/1199/41646) 。 </li>
|
|
4158
|
+
如需为资源分配公网IPv4地址,请指定公网IPv4地址类型。
|
|
4159
|
+
|
|
4160
|
+
精品IP 高防IP功能仅部分地区灰度开放,如需使用[请提交工单咨询](https://console.cloud.tencent.com/workorder/category)
|
|
4161
|
+
*/
|
|
4162
|
+
IPv4AddressType?: string;
|
|
4163
|
+
/**
|
|
4164
|
+
* 高防包唯一ID,申请高防IP时,该字段必传。
|
|
4165
|
+
*/
|
|
4166
|
+
AntiDDoSPackageId?: string;
|
|
4167
|
+
/**
|
|
4168
|
+
* 实例销毁时是否一并销毁绑定的弹性IP。
|
|
4169
|
+
|
|
4170
|
+
取值范围:
|
|
4171
|
+
<li>TRUE:表示保留EIP</li>
|
|
4172
|
+
<li>FALSE:表示不保留</li>
|
|
4173
|
+
请注意,当IPv4AddressType字段指定EIP类型时,默认不保留EIP。WanIP不受此字段影响始终随实例销毁。
|
|
4174
|
+
变更配置此字段,已绑定伸缩组会立刻生效。
|
|
4175
|
+
|
|
4176
|
+
*/
|
|
4177
|
+
IsKeepEIP?: boolean;
|
|
4138
4178
|
}
|
|
4139
4179
|
/**
|
|
4140
4180
|
* EnableAutoScalingGroup返回参数结构体
|