tencentcloud-sdk-nodejs-ssl 4.1.70 → 4.1.77
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
|
@@ -230,6 +230,10 @@ export interface DescribeHostDeployRecordDetailResponse {
|
|
|
230
230
|
* 部署中总数
|
|
231
231
|
*/
|
|
232
232
|
RunningTotalCount?: number;
|
|
233
|
+
/**
|
|
234
|
+
* 带部署总数
|
|
235
|
+
*/
|
|
236
|
+
PendingTotalCount?: number;
|
|
233
237
|
/**
|
|
234
238
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
235
239
|
*/
|
|
@@ -3099,7 +3103,7 @@ export interface UploadCertificateResponse {
|
|
|
3099
3103
|
*/
|
|
3100
3104
|
CertificateId?: string;
|
|
3101
3105
|
/**
|
|
3102
|
-
*
|
|
3106
|
+
* 当入参Repeatable为false的时候 返回的重复证书的ID,注意当用户上传相同的证书超过5000张的时候,当前接口会无视入参Repeatable,直接返回重复证书的ID。
|
|
3103
3107
|
*/
|
|
3104
3108
|
RepeatCertId?: string;
|
|
3105
3109
|
/**
|
|
@@ -4117,6 +4121,10 @@ export interface DeployRecord {
|
|
|
4117
4121
|
* 托管资源创建时间
|
|
4118
4122
|
*/
|
|
4119
4123
|
CreateTime?: string;
|
|
4124
|
+
/**
|
|
4125
|
+
* 待部署总数
|
|
4126
|
+
*/
|
|
4127
|
+
PendingTotalCount?: number;
|
|
4120
4128
|
}
|
|
4121
4129
|
/**
|
|
4122
4130
|
* DescribePackages请求参数结构体
|
|
@@ -4298,6 +4306,10 @@ export interface DescribeHostUpdateRecordDetailResponse {
|
|
|
4298
4306
|
* 部署中总数,如果取不到返回0
|
|
4299
4307
|
*/
|
|
4300
4308
|
RunningTotalCount?: number;
|
|
4309
|
+
/**
|
|
4310
|
+
* 待部署总数
|
|
4311
|
+
*/
|
|
4312
|
+
PendingTotalCount?: number;
|
|
4301
4313
|
/**
|
|
4302
4314
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4303
4315
|
*/
|