tencentcloud-sdk-nodejs-tione 4.1.155 → 4.1.161
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
|
@@ -193,6 +193,10 @@ export interface CreateModelServiceRequest {
|
|
|
193
193
|
* 数据盘批量挂载配置,当前仅支持CFS,仅针对“模型来源-腾讯云存储、模型来源-腾讯云容器镜像、模型来源-资源组、模型来源-数据源”。
|
|
194
194
|
*/
|
|
195
195
|
VolumeMounts?: Array<VolumeMount>;
|
|
196
|
+
/**
|
|
197
|
+
* 调度策略 [binpack] 优先占满整机,尽量避免碎卡(默认值)[spread] 优先分散在各个节点,确保服务高可用
|
|
198
|
+
*/
|
|
199
|
+
SchedulingStrategy?: string;
|
|
196
200
|
}
|
|
197
201
|
/**
|
|
198
202
|
* DescribeLogs请求参数结构体
|
|
@@ -802,13 +806,11 @@ export interface Service {
|
|
|
802
806
|
BusinessStatus?: string;
|
|
803
807
|
/**
|
|
804
808
|
* 已废弃,以ServiceInfo中的对应为准
|
|
805
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
806
809
|
* @deprecated
|
|
807
810
|
*/
|
|
808
811
|
ServiceLimit?: ServiceLimit;
|
|
809
812
|
/**
|
|
810
813
|
* 已废弃,以ServiceInfo中的对应为准
|
|
811
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
812
814
|
* @deprecated
|
|
813
815
|
*/
|
|
814
816
|
ScheduledAction?: ScheduledAction;
|
|
@@ -1552,6 +1554,10 @@ export interface ModifyModelServiceRequest {
|
|
|
1552
1554
|
* 数据盘批量挂载配置,当前仅支持CFS,仅针对“模型来源-腾讯云存储、模型来源-腾讯云容器镜像、模型来源-资源组、模型来源-数据源”。
|
|
1553
1555
|
*/
|
|
1554
1556
|
VolumeMounts?: Array<VolumeMount>;
|
|
1557
|
+
/**
|
|
1558
|
+
* 调度策略 [binpack] 优先占满整机,尽量避免碎卡(默认值)[spread] 优先分散在各个节点,确保服务高可用
|
|
1559
|
+
*/
|
|
1560
|
+
SchedulingStrategy?: string;
|
|
1555
1561
|
}
|
|
1556
1562
|
/**
|
|
1557
1563
|
* ChatCompletion请求参数结构体
|
|
@@ -2300,7 +2306,28 @@ export interface PublicDataSourceFS {
|
|
|
2300
2306
|
/**
|
|
2301
2307
|
* 暴露端口信息
|
|
2302
2308
|
*/
|
|
2303
|
-
export
|
|
2309
|
+
export interface ExposePortConfig {
|
|
2310
|
+
/**
|
|
2311
|
+
* 是否开启暴露容器服务端口
|
|
2312
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2313
|
+
*/
|
|
2314
|
+
Enable?: boolean;
|
|
2315
|
+
/**
|
|
2316
|
+
* vpc id
|
|
2317
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2318
|
+
*/
|
|
2319
|
+
VpcId?: string;
|
|
2320
|
+
/**
|
|
2321
|
+
* clb id
|
|
2322
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2323
|
+
*/
|
|
2324
|
+
ClbId?: string;
|
|
2325
|
+
/**
|
|
2326
|
+
* clb domain
|
|
2327
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2328
|
+
*/
|
|
2329
|
+
ClbHost?: string;
|
|
2330
|
+
}
|
|
2304
2331
|
/**
|
|
2305
2332
|
* DescribeBillingResourceGroups请求参数结构体
|
|
2306
2333
|
*/
|
|
@@ -3153,32 +3180,26 @@ export interface ServiceInfo {
|
|
|
3153
3180
|
Resources: ResourceInfo;
|
|
3154
3181
|
/**
|
|
3155
3182
|
* 后付费实例对应的机型规格
|
|
3156
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3157
3183
|
*/
|
|
3158
3184
|
InstanceType: string;
|
|
3159
3185
|
/**
|
|
3160
3186
|
* 模型信息
|
|
3161
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3162
3187
|
*/
|
|
3163
3188
|
ModelInfo: ModelInfo;
|
|
3164
3189
|
/**
|
|
3165
3190
|
* 是否启用日志
|
|
3166
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3167
3191
|
*/
|
|
3168
3192
|
LogEnable: boolean;
|
|
3169
3193
|
/**
|
|
3170
3194
|
* 日志配置
|
|
3171
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3172
3195
|
*/
|
|
3173
3196
|
LogConfig: LogConfig;
|
|
3174
3197
|
/**
|
|
3175
3198
|
* 是否开启鉴权
|
|
3176
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3177
3199
|
*/
|
|
3178
3200
|
AuthorizationEnable: boolean;
|
|
3179
3201
|
/**
|
|
3180
3202
|
* hpa配置
|
|
3181
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3182
3203
|
*/
|
|
3183
3204
|
HorizontalPodAutoscaler: HorizontalPodAutoscaler;
|
|
3184
3205
|
/**
|
|
@@ -3321,6 +3342,14 @@ export interface ServiceInfo {
|
|
|
3321
3342
|
* 批量数据盘挂载配置
|
|
3322
3343
|
*/
|
|
3323
3344
|
VolumeMounts?: Array<VolumeMount>;
|
|
3345
|
+
/**
|
|
3346
|
+
* 调度策略 [binpack] 优先占满整机,尽量避免碎卡(默认值)[spread] 优先分散在各个节点,确保服务高可用
|
|
3347
|
+
*/
|
|
3348
|
+
SchedulingStrategy?: string;
|
|
3349
|
+
/**
|
|
3350
|
+
* 服务实际运行的节点数
|
|
3351
|
+
*/
|
|
3352
|
+
NodeCount?: number;
|
|
3324
3353
|
}
|
|
3325
3354
|
/**
|
|
3326
3355
|
* DescribeModelService请求参数结构体
|
|
@@ -4162,6 +4191,14 @@ export interface ResourceInfo {
|
|
|
4162
4191
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4163
4192
|
*/
|
|
4164
4193
|
EnableRDMA?: boolean;
|
|
4194
|
+
/**
|
|
4195
|
+
* root disk size(GB)
|
|
4196
|
+
*/
|
|
4197
|
+
RootDisk?: number;
|
|
4198
|
+
/**
|
|
4199
|
+
* data disk size(GB)
|
|
4200
|
+
*/
|
|
4201
|
+
DataDisk?: number;
|
|
4165
4202
|
}
|
|
4166
4203
|
/**
|
|
4167
4204
|
* 资源信息
|