tencentcloud-sdk-nodejs-tione 4.1.104 → 4.1.114
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
|
@@ -527,6 +527,11 @@ export interface SSHConfig {
|
|
|
527
527
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
528
528
|
*/
|
|
529
529
|
IsAddressChanged?: boolean;
|
|
530
|
+
/**
|
|
531
|
+
* POD访问信息
|
|
532
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
533
|
+
*/
|
|
534
|
+
PodSSHInfo?: PodSSHInfo;
|
|
530
535
|
}
|
|
531
536
|
/**
|
|
532
537
|
* 大模型生成Token统计
|
|
@@ -2971,6 +2976,23 @@ export interface TagFilter {
|
|
|
2971
2976
|
*/
|
|
2972
2977
|
TagValues?: Array<string>;
|
|
2973
2978
|
}
|
|
2979
|
+
/**
|
|
2980
|
+
* SSH pod访问信息
|
|
2981
|
+
*/
|
|
2982
|
+
export interface PodSSHInfo {
|
|
2983
|
+
/**
|
|
2984
|
+
* pod访问ip
|
|
2985
|
+
*/
|
|
2986
|
+
Host?: string;
|
|
2987
|
+
/**
|
|
2988
|
+
* pod ssh访问端口
|
|
2989
|
+
*/
|
|
2990
|
+
Port?: number;
|
|
2991
|
+
/**
|
|
2992
|
+
* ssh访问命令
|
|
2993
|
+
*/
|
|
2994
|
+
LoginCommand?: string;
|
|
2995
|
+
}
|
|
2974
2996
|
/**
|
|
2975
2997
|
* DescribeModelServiceGroups请求参数结构体
|
|
2976
2998
|
*/
|