tencentcloud-sdk-nodejs-thpc 4.1.239 → 4.1.241
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
|
@@ -440,7 +440,7 @@ export interface GooseFSOption {
|
|
|
440
440
|
*/
|
|
441
441
|
LocalPath: string;
|
|
442
442
|
/**
|
|
443
|
-
* <p
|
|
443
|
+
* <p>文件系统远程挂载路径; 远端路径为GooseFS控制台看到的命名空间的url;命名空间文档参考https://cloud.tencent.com/document/product/1424/117877</p>
|
|
444
444
|
*/
|
|
445
445
|
RemotePath: string;
|
|
446
446
|
/**
|
|
@@ -457,17 +457,21 @@ export interface GooseFSOption {
|
|
|
457
457
|
*/
|
|
458
458
|
export interface StorageOptionOverview {
|
|
459
459
|
/**
|
|
460
|
-
* CFS
|
|
460
|
+
* <p>CFS存储选项概览信息列表。</p>
|
|
461
461
|
*/
|
|
462
|
-
CFSOptions
|
|
462
|
+
CFSOptions?: Array<CFSOptionOverview>;
|
|
463
463
|
/**
|
|
464
|
-
* GooseFS
|
|
464
|
+
* <p>GooseFS存储选项概览信息列表。</p>
|
|
465
465
|
*/
|
|
466
|
-
GooseFSOptions
|
|
466
|
+
GooseFSOptions?: Array<GooseFSOptionOverview>;
|
|
467
467
|
/**
|
|
468
|
-
* GooseFSx
|
|
468
|
+
* <p>GooseFSx存储选项概览信息列表。</p>
|
|
469
469
|
*/
|
|
470
470
|
GooseFSxOptions?: Array<GooseFSxOptionOverview>;
|
|
471
|
+
/**
|
|
472
|
+
* <p>COS存储选项概览信息列表。</p>
|
|
473
|
+
*/
|
|
474
|
+
CosOptions?: Array<CosOptionOverview>;
|
|
471
475
|
}
|
|
472
476
|
/**
|
|
473
477
|
* DescribeJobsOverview请求参数结构体
|
|
@@ -1932,6 +1936,23 @@ export interface GooseFSxOptionOverview {
|
|
|
1932
1936
|
*/
|
|
1933
1937
|
LocalPath?: string;
|
|
1934
1938
|
}
|
|
1939
|
+
/**
|
|
1940
|
+
* COS存储选项概览信息。
|
|
1941
|
+
*/
|
|
1942
|
+
export interface CosOptionOverview {
|
|
1943
|
+
/**
|
|
1944
|
+
* <p>文件系统本地挂载路径。</p>
|
|
1945
|
+
*/
|
|
1946
|
+
LocalPath?: string;
|
|
1947
|
+
/**
|
|
1948
|
+
* <p>COS桶地址。</p>
|
|
1949
|
+
*/
|
|
1950
|
+
RemotePath?: string;
|
|
1951
|
+
/**
|
|
1952
|
+
* <p>COS挂载参数</p>
|
|
1953
|
+
*/
|
|
1954
|
+
MountOption?: string;
|
|
1955
|
+
}
|
|
1935
1956
|
/**
|
|
1936
1957
|
* SetAutoScalingConfiguration请求参数结构体
|
|
1937
1958
|
*/
|