tencentcloud-sdk-nodejs-tcbr 4.1.93 → 4.1.100
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
|
@@ -336,6 +336,39 @@ export interface DiffConfigItem {
|
|
|
336
336
|
* 配置内网访问时网络信息
|
|
337
337
|
*/
|
|
338
338
|
VpcConf?: VpcConf;
|
|
339
|
+
/**
|
|
340
|
+
* 存储配置信息
|
|
341
|
+
*/
|
|
342
|
+
VolumesConf?: Array<VolumeConf>;
|
|
343
|
+
}
|
|
344
|
+
/**
|
|
345
|
+
* 存储配置
|
|
346
|
+
*/
|
|
347
|
+
export interface VolumeConf {
|
|
348
|
+
/**
|
|
349
|
+
* 存储类型
|
|
350
|
+
*/
|
|
351
|
+
Type?: string;
|
|
352
|
+
/**
|
|
353
|
+
* 对象存储桶名称
|
|
354
|
+
*/
|
|
355
|
+
BucketName?: string;
|
|
356
|
+
/**
|
|
357
|
+
* 存储连接地址
|
|
358
|
+
*/
|
|
359
|
+
Endpoint?: string;
|
|
360
|
+
/**
|
|
361
|
+
* 存储连接用户密码
|
|
362
|
+
*/
|
|
363
|
+
KeyID?: string;
|
|
364
|
+
/**
|
|
365
|
+
* 存储挂载目的目录
|
|
366
|
+
*/
|
|
367
|
+
DstPath?: string;
|
|
368
|
+
/**
|
|
369
|
+
* 存储挂载源目录
|
|
370
|
+
*/
|
|
371
|
+
SrcPath?: string;
|
|
339
372
|
}
|
|
340
373
|
/**
|
|
341
374
|
* OperateServerManage请求参数结构体
|
|
@@ -705,6 +738,10 @@ export interface ServerBaseConfig {
|
|
|
705
738
|
* Vpc 配置参数
|
|
706
739
|
*/
|
|
707
740
|
VpcConf?: VpcConf;
|
|
741
|
+
/**
|
|
742
|
+
* 存储配置信息
|
|
743
|
+
*/
|
|
744
|
+
VolumesConf?: Array<VolumeConf>;
|
|
708
745
|
}
|
|
709
746
|
/**
|
|
710
747
|
* DescribeCloudRunServerDetail返回参数结构体
|