tencentcloud-sdk-nodejs-cfs 4.1.139 → 4.1.145
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
|
@@ -532,7 +532,7 @@ export interface SignUpCfsServiceResponse {
|
|
|
532
532
|
/**
|
|
533
533
|
* 该用户当前 CFS 服务的状态,creating 是开通中,created 是已开通
|
|
534
534
|
*/
|
|
535
|
-
CfsServiceStatus
|
|
535
|
+
CfsServiceStatus?: string;
|
|
536
536
|
/**
|
|
537
537
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
538
538
|
*/
|
|
@@ -1104,23 +1104,23 @@ export interface CreateCfsPGroupResponse {
|
|
|
1104
1104
|
/**
|
|
1105
1105
|
* 权限组 ID
|
|
1106
1106
|
*/
|
|
1107
|
-
PGroupId
|
|
1107
|
+
PGroupId?: string;
|
|
1108
1108
|
/**
|
|
1109
1109
|
* 权限组名字
|
|
1110
1110
|
*/
|
|
1111
|
-
Name
|
|
1111
|
+
Name?: string;
|
|
1112
1112
|
/**
|
|
1113
1113
|
* 权限组描述信息
|
|
1114
1114
|
*/
|
|
1115
|
-
DescInfo
|
|
1115
|
+
DescInfo?: string;
|
|
1116
1116
|
/**
|
|
1117
1117
|
* 已经与该权限组绑定的文件系统个数
|
|
1118
1118
|
*/
|
|
1119
|
-
BindCfsNum
|
|
1119
|
+
BindCfsNum?: number;
|
|
1120
1120
|
/**
|
|
1121
1121
|
* 权限组创建时间
|
|
1122
1122
|
*/
|
|
1123
|
-
CDate
|
|
1123
|
+
CDate?: string;
|
|
1124
1124
|
/**
|
|
1125
1125
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1126
1126
|
*/
|