tencentcloud-sdk-nodejs-tione 4.0.673 → 4.0.674
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/CHANGELOG.md +145 -0
- package/SERVICE_CHANGELOG.md +452 -729
- package/package.json +1 -1
- package/products.md +13 -13
- package/src/services/tione/v20211111/tione_client.ts +2 -1
- package/src/services/tione/v20211111/tione_models.ts +94 -54
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +93 -54
|
@@ -141,6 +141,10 @@ export interface CreateModelServiceRequest {
|
|
|
141
141
|
* 服务分类
|
|
142
142
|
*/
|
|
143
143
|
ServiceCategory?: string;
|
|
144
|
+
/**
|
|
145
|
+
* 服务的启动命令
|
|
146
|
+
*/
|
|
147
|
+
Command?: string;
|
|
144
148
|
}
|
|
145
149
|
/**
|
|
146
150
|
* CreateNotebookImage返回参数结构体
|
|
@@ -877,115 +881,115 @@ export interface Service {
|
|
|
877
881
|
/**
|
|
878
882
|
* 服务组id
|
|
879
883
|
*/
|
|
880
|
-
ServiceGroupId
|
|
884
|
+
ServiceGroupId?: string;
|
|
881
885
|
/**
|
|
882
886
|
* 服务id
|
|
883
887
|
*/
|
|
884
|
-
ServiceId
|
|
888
|
+
ServiceId?: string;
|
|
885
889
|
/**
|
|
886
890
|
* 服务组名
|
|
887
891
|
*/
|
|
888
|
-
ServiceGroupName
|
|
892
|
+
ServiceGroupName?: string;
|
|
889
893
|
/**
|
|
890
894
|
* 服务描述
|
|
891
895
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
892
896
|
*/
|
|
893
|
-
ServiceDescription
|
|
897
|
+
ServiceDescription?: string;
|
|
894
898
|
/**
|
|
895
899
|
* 服务的详细信息
|
|
896
900
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
897
901
|
*/
|
|
898
|
-
ServiceInfo
|
|
902
|
+
ServiceInfo?: ServiceInfo;
|
|
899
903
|
/**
|
|
900
904
|
* 集群id
|
|
901
905
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
902
906
|
*/
|
|
903
|
-
ClusterId
|
|
907
|
+
ClusterId?: string;
|
|
904
908
|
/**
|
|
905
909
|
* 地域
|
|
906
910
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
907
911
|
*/
|
|
908
|
-
Region
|
|
912
|
+
Region?: string;
|
|
909
913
|
/**
|
|
910
914
|
* 命名空间
|
|
911
915
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
912
916
|
*/
|
|
913
|
-
Namespace
|
|
917
|
+
Namespace?: string;
|
|
914
918
|
/**
|
|
915
919
|
* 付费类型
|
|
916
920
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
917
921
|
*/
|
|
918
|
-
ChargeType
|
|
922
|
+
ChargeType?: string;
|
|
919
923
|
/**
|
|
920
924
|
* 包年包月服务的资源组id,按量计费的服务为空
|
|
921
925
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
922
926
|
*/
|
|
923
|
-
ResourceGroupId
|
|
927
|
+
ResourceGroupId?: string;
|
|
924
928
|
/**
|
|
925
929
|
* 包年包月服务对应的资源组名字
|
|
926
930
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
927
931
|
*/
|
|
928
|
-
ResourceGroupName
|
|
932
|
+
ResourceGroupName?: string;
|
|
929
933
|
/**
|
|
930
934
|
* 服务的标签
|
|
931
935
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
932
936
|
*/
|
|
933
|
-
Tags
|
|
937
|
+
Tags?: Array<Tag>;
|
|
934
938
|
/**
|
|
935
939
|
* 服务所在的 ingress 的 name
|
|
936
940
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
937
941
|
*/
|
|
938
|
-
IngressName
|
|
942
|
+
IngressName?: string;
|
|
939
943
|
/**
|
|
940
944
|
* 创建者
|
|
941
945
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
942
946
|
*/
|
|
943
|
-
CreatedBy
|
|
947
|
+
CreatedBy?: string;
|
|
944
948
|
/**
|
|
945
949
|
* 创建时间
|
|
946
950
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
947
951
|
*/
|
|
948
|
-
CreateTime
|
|
952
|
+
CreateTime?: string;
|
|
949
953
|
/**
|
|
950
954
|
* 更新时间
|
|
951
955
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
952
956
|
*/
|
|
953
|
-
UpdateTime
|
|
957
|
+
UpdateTime?: string;
|
|
954
958
|
/**
|
|
955
959
|
* 主账号
|
|
956
960
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
957
961
|
*/
|
|
958
|
-
Uin
|
|
962
|
+
Uin?: string;
|
|
959
963
|
/**
|
|
960
964
|
* 子账号
|
|
961
965
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
962
966
|
*/
|
|
963
|
-
SubUin
|
|
967
|
+
SubUin?: string;
|
|
964
968
|
/**
|
|
965
969
|
* app_id
|
|
966
970
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
967
971
|
*/
|
|
968
|
-
AppId
|
|
972
|
+
AppId?: number;
|
|
969
973
|
/**
|
|
970
974
|
* 服务的业务状态
|
|
971
975
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
972
976
|
*/
|
|
973
|
-
BusinessStatus
|
|
977
|
+
BusinessStatus?: string;
|
|
974
978
|
/**
|
|
975
979
|
* 已废弃
|
|
976
980
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
977
981
|
*/
|
|
978
|
-
ServiceLimit
|
|
982
|
+
ServiceLimit?: ServiceLimit;
|
|
979
983
|
/**
|
|
980
984
|
* 已废弃
|
|
981
985
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
982
986
|
*/
|
|
983
|
-
ScheduledAction
|
|
987
|
+
ScheduledAction?: ScheduledAction;
|
|
984
988
|
/**
|
|
985
989
|
* 服务创建失败的原因,创建成功后该字段为默认值 CREATE_SUCCEED
|
|
986
990
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
987
991
|
*/
|
|
988
|
-
CreateFailedReason
|
|
992
|
+
CreateFailedReason?: string;
|
|
989
993
|
/**
|
|
990
994
|
* 服务状态
|
|
991
995
|
CREATING 创建中
|
|
@@ -998,34 +1002,34 @@ export interface Service {
|
|
|
998
1002
|
Waiting 就绪中
|
|
999
1003
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1000
1004
|
*/
|
|
1001
|
-
Status
|
|
1005
|
+
Status?: string;
|
|
1002
1006
|
/**
|
|
1003
1007
|
* 费用信息
|
|
1004
1008
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1005
1009
|
*/
|
|
1006
|
-
BillingInfo
|
|
1010
|
+
BillingInfo?: string;
|
|
1007
1011
|
/**
|
|
1008
1012
|
* 模型权重
|
|
1009
1013
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1010
1014
|
*/
|
|
1011
|
-
Weight
|
|
1015
|
+
Weight?: number;
|
|
1012
1016
|
/**
|
|
1013
1017
|
* 服务的创建来源
|
|
1014
1018
|
AUTO_ML: 来自自动学习的一键发布
|
|
1015
1019
|
DEFAULT: 其他来源
|
|
1016
1020
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1017
1021
|
*/
|
|
1018
|
-
CreateSource
|
|
1022
|
+
CreateSource?: string;
|
|
1019
1023
|
/**
|
|
1020
1024
|
* 版本号
|
|
1021
1025
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1022
1026
|
*/
|
|
1023
|
-
Version
|
|
1027
|
+
Version?: string;
|
|
1024
1028
|
/**
|
|
1025
1029
|
* 服务组下服务的最高版本号
|
|
1026
1030
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1027
1031
|
*/
|
|
1028
|
-
LatestVersion
|
|
1032
|
+
LatestVersion?: string;
|
|
1029
1033
|
}
|
|
1030
1034
|
/**
|
|
1031
1035
|
* 模型专业参数
|
|
@@ -1777,6 +1781,7 @@ export interface WorkloadStatus {
|
|
|
1777
1781
|
Status: string;
|
|
1778
1782
|
/**
|
|
1779
1783
|
* 工作负载的状况信息
|
|
1784
|
+
* @deprecated
|
|
1780
1785
|
*/
|
|
1781
1786
|
StatefulSetCondition?: Array<StatefulSetCondition>;
|
|
1782
1787
|
/**
|
|
@@ -2104,6 +2109,10 @@ export interface ModifyModelServiceRequest {
|
|
|
2104
2109
|
* 是否开启模型的加速, 仅对StableDiffusion(动态加速)格式的模型有效。默认不开启
|
|
2105
2110
|
*/
|
|
2106
2111
|
ModelTurboEnable?: boolean;
|
|
2112
|
+
/**
|
|
2113
|
+
* 服务的启动命令
|
|
2114
|
+
*/
|
|
2115
|
+
Command?: string;
|
|
2107
2116
|
}
|
|
2108
2117
|
/**
|
|
2109
2118
|
* 框架版本以及对应的训练模式
|
|
@@ -2407,6 +2416,36 @@ export interface DeleteBatchTaskRequest {
|
|
|
2407
2416
|
*/
|
|
2408
2417
|
BatchTaskId: string;
|
|
2409
2418
|
}
|
|
2419
|
+
/**
|
|
2420
|
+
* 服务的调用信息,服务组下唯一
|
|
2421
|
+
*/
|
|
2422
|
+
export interface InferGatewayCallInfo {
|
|
2423
|
+
/**
|
|
2424
|
+
* 内网http调用地址
|
|
2425
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2426
|
+
*/
|
|
2427
|
+
VpcHttpAddr: string;
|
|
2428
|
+
/**
|
|
2429
|
+
* 内网https调用地址
|
|
2430
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2431
|
+
*/
|
|
2432
|
+
VpcHttpsAddr: string;
|
|
2433
|
+
/**
|
|
2434
|
+
* 内网grpc调用地址
|
|
2435
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2436
|
+
*/
|
|
2437
|
+
VpcGrpcTlsAddr: string;
|
|
2438
|
+
/**
|
|
2439
|
+
* 可访问的vpcid
|
|
2440
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2441
|
+
*/
|
|
2442
|
+
VpcId: string;
|
|
2443
|
+
/**
|
|
2444
|
+
* 后端ip对应的子网
|
|
2445
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2446
|
+
*/
|
|
2447
|
+
SubnetId: string;
|
|
2448
|
+
}
|
|
2410
2449
|
/**
|
|
2411
2450
|
* DescribeTrainingModels返回参数结构体
|
|
2412
2451
|
*/
|
|
@@ -3073,34 +3112,14 @@ export interface DescribeBillingSpecsRequest {
|
|
|
3073
3112
|
ResourceType?: string;
|
|
3074
3113
|
}
|
|
3075
3114
|
/**
|
|
3076
|
-
*
|
|
3115
|
+
* 推理代码的信息
|
|
3077
3116
|
*/
|
|
3078
|
-
export interface
|
|
3079
|
-
/**
|
|
3080
|
-
* 内网http调用地址
|
|
3081
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3082
|
-
*/
|
|
3083
|
-
VpcHttpAddr: string;
|
|
3117
|
+
export interface InferCodeInfo {
|
|
3084
3118
|
/**
|
|
3085
|
-
*
|
|
3119
|
+
* 推理代码所在的cos详情
|
|
3086
3120
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3087
3121
|
*/
|
|
3088
|
-
|
|
3089
|
-
/**
|
|
3090
|
-
* 内网grpc调用地址
|
|
3091
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3092
|
-
*/
|
|
3093
|
-
VpcGrpcTlsAddr: string;
|
|
3094
|
-
/**
|
|
3095
|
-
* 可访问的vpcid
|
|
3096
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3097
|
-
*/
|
|
3098
|
-
VpcId: string;
|
|
3099
|
-
/**
|
|
3100
|
-
* 后端ip对应的子网
|
|
3101
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3102
|
-
*/
|
|
3103
|
-
SubnetId: string;
|
|
3122
|
+
CosPathInfo?: CosPathInfo;
|
|
3104
3123
|
}
|
|
3105
3124
|
/**
|
|
3106
3125
|
* DescribeInferTemplates请求参数结构体
|
|
@@ -3717,6 +3736,21 @@ export interface ServiceInfo {
|
|
|
3717
3736
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3718
3737
|
*/
|
|
3719
3738
|
ModelTurboEnable?: boolean;
|
|
3739
|
+
/**
|
|
3740
|
+
* 挂载
|
|
3741
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3742
|
+
*/
|
|
3743
|
+
VolumeMount?: VolumeMount;
|
|
3744
|
+
/**
|
|
3745
|
+
* 推理代码信息
|
|
3746
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3747
|
+
*/
|
|
3748
|
+
InferCodeInfo?: InferCodeInfo;
|
|
3749
|
+
/**
|
|
3750
|
+
* 服务的启动命令
|
|
3751
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3752
|
+
*/
|
|
3753
|
+
Command?: string;
|
|
3720
3754
|
}
|
|
3721
3755
|
/**
|
|
3722
3756
|
* 出参类型
|
|
@@ -4059,6 +4093,11 @@ export interface StatefulSetCondition {
|
|
|
4059
4093
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4060
4094
|
*/
|
|
4061
4095
|
LastTransitionTime: string;
|
|
4096
|
+
/**
|
|
4097
|
+
* 上次更新的时间
|
|
4098
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4099
|
+
*/
|
|
4100
|
+
LastUpdateTime?: string;
|
|
4062
4101
|
}
|
|
4063
4102
|
/**
|
|
4064
4103
|
* ModifyNotebook返回参数结构体
|
|
@@ -5046,7 +5085,7 @@ export interface VolumeMount {
|
|
|
5046
5085
|
*/
|
|
5047
5086
|
CFSConfig: CFSConfig;
|
|
5048
5087
|
/**
|
|
5049
|
-
*
|
|
5088
|
+
* 挂载源类型,CFS、COS,默认为CFS
|
|
5050
5089
|
*/
|
|
5051
5090
|
VolumeSourceType?: string;
|
|
5052
5091
|
}
|