tencentcloud-sdk-nodejs-tcbr 4.1.216 → 4.1.229
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
|
@@ -739,29 +739,41 @@ export interface SubmitServerRollbackResponse {
|
|
|
739
739
|
*/
|
|
740
740
|
export interface VolumeConf {
|
|
741
741
|
/**
|
|
742
|
-
*
|
|
742
|
+
* <p>存储类型</p>
|
|
743
743
|
*/
|
|
744
744
|
Type?: string;
|
|
745
745
|
/**
|
|
746
|
-
*
|
|
746
|
+
* <p>对象存储桶名称</p>
|
|
747
747
|
*/
|
|
748
748
|
BucketName?: string;
|
|
749
749
|
/**
|
|
750
|
-
*
|
|
750
|
+
* <p>存储连接地址</p>
|
|
751
751
|
*/
|
|
752
752
|
Endpoint?: string;
|
|
753
753
|
/**
|
|
754
|
-
*
|
|
754
|
+
* <p>存储连接用户密码</p>
|
|
755
755
|
*/
|
|
756
756
|
KeyID?: string;
|
|
757
757
|
/**
|
|
758
|
-
*
|
|
758
|
+
* <p>存储挂载目的目录</p>
|
|
759
759
|
*/
|
|
760
760
|
DstPath?: string;
|
|
761
761
|
/**
|
|
762
|
-
*
|
|
762
|
+
* <p>存储挂载源目录</p>
|
|
763
763
|
*/
|
|
764
764
|
SrcPath?: string;
|
|
765
|
+
/**
|
|
766
|
+
* <p>cfs 实例ip</p>
|
|
767
|
+
*/
|
|
768
|
+
MountIP?: string;
|
|
769
|
+
/**
|
|
770
|
+
* <p>默认读写</p>
|
|
771
|
+
*/
|
|
772
|
+
ReadOnly?: boolean;
|
|
773
|
+
/**
|
|
774
|
+
* <p>CFS 实例 ID</p>
|
|
775
|
+
*/
|
|
776
|
+
InstanceId?: string;
|
|
765
777
|
}
|
|
766
778
|
/**
|
|
767
779
|
* 标签键值对
|