tencentcloud-sdk-nodejs-vpc 4.1.162 → 4.1.166
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
|
@@ -6198,11 +6198,11 @@ export interface DescribeGatewayFlowQosResponse {
|
|
|
6198
6198
|
/**
|
|
6199
6199
|
* 实例详细信息列表。
|
|
6200
6200
|
*/
|
|
6201
|
-
GatewayQosSet
|
|
6201
|
+
GatewayQosSet?: Array<GatewayQos>;
|
|
6202
6202
|
/**
|
|
6203
6203
|
* 符合条件的实例数量。
|
|
6204
6204
|
*/
|
|
6205
|
-
TotalCount
|
|
6205
|
+
TotalCount?: number;
|
|
6206
6206
|
/**
|
|
6207
6207
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6208
6208
|
*/
|
|
@@ -12095,13 +12095,17 @@ export interface GatewayQos {
|
|
|
12095
12095
|
*/
|
|
12096
12096
|
IpAddress?: string;
|
|
12097
12097
|
/**
|
|
12098
|
-
*
|
|
12098
|
+
* 网关流控出方向带宽值,当值为-1时,代表未限速;当值大于等于0时,限速带宽上限为返回值。
|
|
12099
12099
|
*/
|
|
12100
12100
|
Bandwidth?: number;
|
|
12101
12101
|
/**
|
|
12102
12102
|
* 创建时间。
|
|
12103
12103
|
*/
|
|
12104
12104
|
CreateTime?: string;
|
|
12105
|
+
/**
|
|
12106
|
+
* 网关流控入方向带宽值,当值为-1时,代表未限速;当值大于等于0时,限速带宽上限为返回值。
|
|
12107
|
+
*/
|
|
12108
|
+
InBandwidth?: number;
|
|
12105
12109
|
}
|
|
12106
12110
|
/**
|
|
12107
12111
|
* DescribePrivateNatGatewayTranslationNatRules请求参数结构体
|