tencentcloud-sdk-nodejs-tione 4.1.299 → 4.1.300
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
|
@@ -3068,6 +3068,31 @@ export interface DescribeMountLimitsRequest {
|
|
|
3068
3068
|
*/
|
|
3069
3069
|
OrderField?: string;
|
|
3070
3070
|
}
|
|
3071
|
+
/**
|
|
3072
|
+
* 自定义镜像仓库凭据
|
|
3073
|
+
*/
|
|
3074
|
+
export interface ImageSecret {
|
|
3075
|
+
/**
|
|
3076
|
+
* 用于加密密码的KMS公钥ID
|
|
3077
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3078
|
+
*/
|
|
3079
|
+
KeyId?: string;
|
|
3080
|
+
/**
|
|
3081
|
+
* 用户名
|
|
3082
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3083
|
+
*/
|
|
3084
|
+
Username?: string;
|
|
3085
|
+
/**
|
|
3086
|
+
* 密码,base64编码; 当keyId不为空时,密码是加密后的
|
|
3087
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3088
|
+
*/
|
|
3089
|
+
Password?: string;
|
|
3090
|
+
/**
|
|
3091
|
+
* 用户凭据ID
|
|
3092
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3093
|
+
*/
|
|
3094
|
+
SecretId?: string;
|
|
3095
|
+
}
|
|
3071
3096
|
/**
|
|
3072
3097
|
* DeleteExport返回参数结构体
|
|
3073
3098
|
*/
|
|
@@ -4193,38 +4218,43 @@ export interface UpdateSubAccountLinuxUserInfoResponse {
|
|
|
4193
4218
|
*/
|
|
4194
4219
|
export interface ImageInfo {
|
|
4195
4220
|
/**
|
|
4196
|
-
*
|
|
4221
|
+
* <p>镜像类型:TCR为腾讯云TCR镜像; CCR为腾讯云TCR个人版镜像,PreSet为平台预置镜像,CUSTOM为第三方自定义镜像</p>
|
|
4197
4222
|
*/
|
|
4198
4223
|
ImageType: string;
|
|
4199
4224
|
/**
|
|
4200
|
-
*
|
|
4225
|
+
* <p>镜像地址</p>
|
|
4201
4226
|
*/
|
|
4202
4227
|
ImageUrl: string;
|
|
4203
4228
|
/**
|
|
4204
|
-
* TCR
|
|
4229
|
+
* <p>TCR镜像对应的地域</p>
|
|
4205
4230
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4206
4231
|
*/
|
|
4207
4232
|
RegistryRegion?: string;
|
|
4208
4233
|
/**
|
|
4209
|
-
* TCR镜像对应的实例id
|
|
4234
|
+
* <p>TCR镜像对应的实例id</p>
|
|
4210
4235
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4211
4236
|
*/
|
|
4212
4237
|
RegistryId?: string;
|
|
4213
4238
|
/**
|
|
4214
|
-
*
|
|
4239
|
+
* <p>是否允许导出全部内容</p>
|
|
4215
4240
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4216
4241
|
*/
|
|
4217
4242
|
AllowSaveAllContent?: boolean;
|
|
4218
4243
|
/**
|
|
4219
|
-
*
|
|
4244
|
+
* <p>镜像名称</p>
|
|
4220
4245
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4221
4246
|
*/
|
|
4222
4247
|
ImageName?: string;
|
|
4223
4248
|
/**
|
|
4224
|
-
*
|
|
4249
|
+
* <p>是否支持数据构建</p>
|
|
4225
4250
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4226
4251
|
*/
|
|
4227
4252
|
SupportDataPipeline?: boolean;
|
|
4253
|
+
/**
|
|
4254
|
+
* <p>镜像仓库用户名密码信息(仅当ImageType为CUSTOM第三方镜像的时候需要)</p>
|
|
4255
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4256
|
+
*/
|
|
4257
|
+
ImageSecret?: ImageSecret;
|
|
4228
4258
|
}
|
|
4229
4259
|
/**
|
|
4230
4260
|
* 描述腾讯云标签
|