tencentcloud-sdk-nodejs-tione 4.0.1050 → 4.0.1054
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 +1 -1
- package/src/services/tione/index.ts +2 -2
- package/src/services/tione/v20211111/tione_models.ts +24 -0
- package/tencentcloud/services/tione/index.d.ts +4 -4
- package/tencentcloud/services/tione/index.js +2 -2
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +24 -0
package/package.json
CHANGED
|
@@ -182,6 +182,14 @@ HYBRID_PAID:
|
|
|
182
182
|
* 单副本下的实例数,仅在部署类型为DIST时生效,默认1
|
|
183
183
|
*/
|
|
184
184
|
InstancePerReplicas?: number
|
|
185
|
+
/**
|
|
186
|
+
* 30
|
|
187
|
+
*/
|
|
188
|
+
TerminationGracePeriodSeconds?: number
|
|
189
|
+
/**
|
|
190
|
+
* ["sleep","60"]
|
|
191
|
+
*/
|
|
192
|
+
PreStopCommand?: Array<string>
|
|
185
193
|
}
|
|
186
194
|
|
|
187
195
|
/**
|
|
@@ -1337,6 +1345,14 @@ HYBRID_PAID:
|
|
|
1337
1345
|
* 单副本下的实例数,仅在部署类型为DIST时生效,默认1
|
|
1338
1346
|
*/
|
|
1339
1347
|
InstancePerReplicas?: number
|
|
1348
|
+
/**
|
|
1349
|
+
* 30
|
|
1350
|
+
*/
|
|
1351
|
+
TerminationGracePeriodSeconds?: number
|
|
1352
|
+
/**
|
|
1353
|
+
* ["sleep","60"]
|
|
1354
|
+
*/
|
|
1355
|
+
PreStopCommand?: Array<string>
|
|
1340
1356
|
}
|
|
1341
1357
|
|
|
1342
1358
|
/**
|
|
@@ -2935,6 +2951,14 @@ HYBRID_PAID:
|
|
|
2935
2951
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2936
2952
|
*/
|
|
2937
2953
|
ServicePort?: number
|
|
2954
|
+
/**
|
|
2955
|
+
* 服务的优雅退出时限。单位为秒,默认值为30,最小为1
|
|
2956
|
+
*/
|
|
2957
|
+
TerminationGracePeriodSeconds?: number
|
|
2958
|
+
/**
|
|
2959
|
+
* 服务实例停止前执行的命令,执行完毕或执行时间超过优雅退出时限后实例结束
|
|
2960
|
+
*/
|
|
2961
|
+
PreStopCommand?: Array<string>
|
|
2938
2962
|
}
|
|
2939
2963
|
|
|
2940
2964
|
/**
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export declare const tione: {
|
|
2
|
-
v20211111: {
|
|
3
|
-
Client: typeof import("./v20211111/tione_client").Client;
|
|
4
|
-
Models: typeof import("./v20211111/tione_models");
|
|
5
|
-
};
|
|
6
2
|
v20191022: {
|
|
7
3
|
Client: typeof import("./v20191022/tione_client").Client;
|
|
8
4
|
Models: typeof import("./v20191022/tione_models");
|
|
9
5
|
};
|
|
6
|
+
v20211111: {
|
|
7
|
+
Client: typeof import("./v20211111/tione_client").Client;
|
|
8
|
+
Models: typeof import("./v20211111/tione_models");
|
|
9
|
+
};
|
|
10
10
|
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.tione = void 0;
|
|
4
|
-
const v20211111_1 = require("./v20211111");
|
|
5
4
|
const v20191022_1 = require("./v20191022");
|
|
5
|
+
const v20211111_1 = require("./v20211111");
|
|
6
6
|
exports.tione = {
|
|
7
|
-
v20211111: v20211111_1.v20211111,
|
|
8
7
|
v20191022: v20191022_1.v20191022,
|
|
8
|
+
v20211111: v20211111_1.v20211111,
|
|
9
9
|
};
|
|
@@ -165,6 +165,14 @@ export interface CreateModelServiceRequest {
|
|
|
165
165
|
* 单副本下的实例数,仅在部署类型为DIST时生效,默认1
|
|
166
166
|
*/
|
|
167
167
|
InstancePerReplicas?: number;
|
|
168
|
+
/**
|
|
169
|
+
* 30
|
|
170
|
+
*/
|
|
171
|
+
TerminationGracePeriodSeconds?: number;
|
|
172
|
+
/**
|
|
173
|
+
* ["sleep","60"]
|
|
174
|
+
*/
|
|
175
|
+
PreStopCommand?: Array<string>;
|
|
168
176
|
}
|
|
169
177
|
/**
|
|
170
178
|
* 描述在线服务
|
|
@@ -1283,6 +1291,14 @@ export interface ModifyModelServiceRequest {
|
|
|
1283
1291
|
* 单副本下的实例数,仅在部署类型为DIST时生效,默认1
|
|
1284
1292
|
*/
|
|
1285
1293
|
InstancePerReplicas?: number;
|
|
1294
|
+
/**
|
|
1295
|
+
* 30
|
|
1296
|
+
*/
|
|
1297
|
+
TerminationGracePeriodSeconds?: number;
|
|
1298
|
+
/**
|
|
1299
|
+
* ["sleep","60"]
|
|
1300
|
+
*/
|
|
1301
|
+
PreStopCommand?: Array<string>;
|
|
1286
1302
|
}
|
|
1287
1303
|
/**
|
|
1288
1304
|
* ChatCompletion请求参数结构体
|
|
@@ -2839,6 +2855,14 @@ export interface ServiceInfo {
|
|
|
2839
2855
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2840
2856
|
*/
|
|
2841
2857
|
ServicePort?: number;
|
|
2858
|
+
/**
|
|
2859
|
+
* 服务的优雅退出时限。单位为秒,默认值为30,最小为1
|
|
2860
|
+
*/
|
|
2861
|
+
TerminationGracePeriodSeconds?: number;
|
|
2862
|
+
/**
|
|
2863
|
+
* 服务实例停止前执行的命令,执行完毕或执行时间超过优雅退出时限后实例结束
|
|
2864
|
+
*/
|
|
2865
|
+
PreStopCommand?: Array<string>;
|
|
2842
2866
|
}
|
|
2843
2867
|
/**
|
|
2844
2868
|
* DescribeModelService请求参数结构体
|