tencentcloud-sdk-nodejs-cbs 4.1.87 → 4.1.101
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
|
@@ -2062,13 +2062,17 @@ export interface InquiryPriceResizeDiskRequest {
|
|
|
2062
2062
|
*/
|
|
2063
2063
|
DiskSize: number;
|
|
2064
2064
|
/**
|
|
2065
|
-
* 云硬盘ID, 通过[DescribeDisks](/document/product/362/16315)
|
|
2065
|
+
* 云硬盘ID, 通过[DescribeDisks](/document/product/362/16315)接口查询。与参数DiskIds互斥。
|
|
2066
2066
|
*/
|
|
2067
|
-
DiskId
|
|
2067
|
+
DiskId?: string;
|
|
2068
2068
|
/**
|
|
2069
2069
|
* 云硬盘所属项目ID。该参数可以通过调用[DescribeProject](https://cloud.tencent.com/document/api/651/78725) 的返回值中的 projectId 字段来获取。 如传入则仅用于鉴权。
|
|
2070
2070
|
*/
|
|
2071
2071
|
ProjectId?: number;
|
|
2072
|
+
/**
|
|
2073
|
+
* 云硬盘ID列表, 通过[DescribeDisks](/document/product/362/16315)接口查询。与参数DiskId互斥。
|
|
2074
|
+
*/
|
|
2075
|
+
DiskIds?: Array<string>;
|
|
2072
2076
|
}
|
|
2073
2077
|
/**
|
|
2074
2078
|
* DescribeDiskConfigQuota请求参数结构体
|