tencentcloud-sdk-nodejs-oceanus 4.1.274 → 4.1.287
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
|
@@ -1400,33 +1400,27 @@ export interface VariableItem {
|
|
|
1400
1400
|
*/
|
|
1401
1401
|
export interface DescribeClustersRequest {
|
|
1402
1402
|
/**
|
|
1403
|
-
*
|
|
1403
|
+
* <p>按照一个或者多个集群 ID 查询,每次请求的集群上限为 100</p>
|
|
1404
1404
|
*/
|
|
1405
1405
|
ClusterIds?: Array<string>;
|
|
1406
1406
|
/**
|
|
1407
|
-
*
|
|
1407
|
+
* <p>偏移量,默认 0</p>
|
|
1408
1408
|
*/
|
|
1409
1409
|
Offset?: number;
|
|
1410
1410
|
/**
|
|
1411
|
-
*
|
|
1411
|
+
* <p>请求的集群数量,默认 20,最大值 100</p>
|
|
1412
1412
|
*/
|
|
1413
1413
|
Limit?: number;
|
|
1414
1414
|
/**
|
|
1415
|
-
*
|
|
1415
|
+
* <p>集群信息结果排序规则,1 按时间降序,2 按照时间升序,3 按照状态排序</p>
|
|
1416
1416
|
*/
|
|
1417
1417
|
OrderType?: number;
|
|
1418
1418
|
/**
|
|
1419
|
-
*
|
|
1420
|
-
|
|
1421
|
-
- Name
|
|
1422
|
-
按照集群的名字进行模糊查询。例如:测试
|
|
1423
|
-
类型: String
|
|
1424
|
-
必选: 否
|
|
1425
|
-
|
|
1419
|
+
* <p>过滤规则</p><ul><li>Name<br> 按照集群的名字进行模糊查询。例如:测试<br> 类型: String<br> 必选: 否</li></ul>
|
|
1426
1420
|
*/
|
|
1427
1421
|
Filters?: Array<Filter>;
|
|
1428
1422
|
/**
|
|
1429
|
-
*
|
|
1423
|
+
* <p>工作空间 SerialId</p>
|
|
1430
1424
|
*/
|
|
1431
1425
|
WorkSpaceId?: string;
|
|
1432
1426
|
}
|
|
@@ -2322,11 +2316,11 @@ export interface Connectors {
|
|
|
2322
2316
|
*/
|
|
2323
2317
|
export interface DescribeClustersResponse {
|
|
2324
2318
|
/**
|
|
2325
|
-
*
|
|
2319
|
+
* <p>集群总数</p>
|
|
2326
2320
|
*/
|
|
2327
2321
|
TotalCount?: number;
|
|
2328
2322
|
/**
|
|
2329
|
-
*
|
|
2323
|
+
* <p>集群列表</p>
|
|
2330
2324
|
*/
|
|
2331
2325
|
ClusterSet?: Array<Cluster>;
|
|
2332
2326
|
/**
|
|
@@ -3891,31 +3885,31 @@ export interface DescribeJobSubmissionLogRequest {
|
|
|
3891
3885
|
*/
|
|
3892
3886
|
export interface DescribeJobsRequest {
|
|
3893
3887
|
/**
|
|
3894
|
-
*
|
|
3888
|
+
* <p>按照一个或者多个作业ID查询。作业ID形如:cql-11112222,每次请求的作业上限为100。参数不支持同时指定JobIds和Filters。</p>
|
|
3895
3889
|
*/
|
|
3896
3890
|
JobIds?: Array<string>;
|
|
3897
3891
|
/**
|
|
3898
|
-
*
|
|
3892
|
+
* <p>过滤条件,支持的 Filter.Name 为:作业名 Name、作业状态 Status、所属集群 ClusterId、作业id JobId、集群名称 ClusterName。 每次请求的 Filters 个数的上限为 5,Filter.Values 的个数上限为 5。参数不支持同时指定 JobIds 和 Filters。</p>
|
|
3899
3893
|
*/
|
|
3900
3894
|
Filters?: Array<Filter>;
|
|
3901
3895
|
/**
|
|
3902
|
-
*
|
|
3896
|
+
* <p>偏移量,默认为0</p>
|
|
3903
3897
|
*/
|
|
3904
3898
|
Offset?: number;
|
|
3905
3899
|
/**
|
|
3906
|
-
*
|
|
3900
|
+
* <p>分页大小,默认为20,最大值为100</p>
|
|
3907
3901
|
*/
|
|
3908
3902
|
Limit?: number;
|
|
3909
3903
|
/**
|
|
3910
|
-
*
|
|
3904
|
+
* <p>工作空间 SerialId</p>
|
|
3911
3905
|
*/
|
|
3912
3906
|
WorkSpaceId?: string;
|
|
3913
3907
|
/**
|
|
3914
|
-
*
|
|
3908
|
+
* <p>查询额外的作业信息,例如 JobEventInfo</p>
|
|
3915
3909
|
*/
|
|
3916
3910
|
ExtraResult?: Array<string>;
|
|
3917
3911
|
/**
|
|
3918
|
-
*
|
|
3912
|
+
* <p>查询引用connector</p>
|
|
3919
3913
|
*/
|
|
3920
3914
|
ConnectorOptions?: string;
|
|
3921
3915
|
}
|
|
@@ -4158,6 +4152,18 @@ export interface JobV1 {
|
|
|
4158
4152
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4159
4153
|
*/
|
|
4160
4154
|
NewStateCOSBucketType?: number;
|
|
4155
|
+
/**
|
|
4156
|
+
* <p>健康分数</p>
|
|
4157
|
+
*/
|
|
4158
|
+
HealthScore?: number;
|
|
4159
|
+
/**
|
|
4160
|
+
* <p>最新诊断时间</p><p>参数格式:RFC3339</p>
|
|
4161
|
+
*/
|
|
4162
|
+
LastDiagnoseTime?: string;
|
|
4163
|
+
/**
|
|
4164
|
+
* <p>负责人Uin</p>
|
|
4165
|
+
*/
|
|
4166
|
+
ManagerUin?: string;
|
|
4161
4167
|
}
|
|
4162
4168
|
/**
|
|
4163
4169
|
* 作业配置详情
|
|
@@ -4999,11 +5005,11 @@ export interface DeleteOceanusClusterResponse {
|
|
|
4999
5005
|
*/
|
|
5000
5006
|
export interface DescribeJobsResponse {
|
|
5001
5007
|
/**
|
|
5002
|
-
*
|
|
5008
|
+
* <p>作业总数</p>
|
|
5003
5009
|
*/
|
|
5004
5010
|
TotalCount?: number;
|
|
5005
5011
|
/**
|
|
5006
|
-
*
|
|
5012
|
+
* <p>作业列表</p>
|
|
5007
5013
|
*/
|
|
5008
5014
|
JobSet?: Array<JobV1>;
|
|
5009
5015
|
/**
|