tencentcloud-sdk-nodejs 4.1.248 → 4.1.249
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/es/common/sdk_version.js +1 -1
- package/es/services/dataagent/v20250513/dataagent_client.js +6 -0
- package/es/services/mongodb/v20190725/mongodb_client.js +165 -153
- package/es/services/ocr/v20181119/ocr_client.js +5 -8
- package/es/services/tokenhub/v20260322/tokenhub_client.js +43 -22
- package/es/services/tsf/v20180326/tsf_client.js +4 -73
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/bi/v20220105/bi_models.d.ts +219 -341
- package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +1 -1
- package/tencentcloud/services/clb/v20180317/clb_models.d.ts +1 -1
- package/tencentcloud/services/dataagent/v20250513/dataagent_client.d.ts +9 -1
- package/tencentcloud/services/dataagent/v20250513/dataagent_client.js +12 -0
- package/tencentcloud/services/dataagent/v20250513/dataagent_models.d.ts +108 -6
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +6 -35
- package/tencentcloud/services/mongodb/v20190725/mongodb_client.d.ts +186 -170
- package/tencentcloud/services/mongodb/v20190725/mongodb_client.js +274 -250
- package/tencentcloud/services/mongodb/v20190725/mongodb_models.d.ts +254 -104
- package/tencentcloud/services/ocr/v20181119/ocr_client.d.ts +11 -22
- package/tencentcloud/services/ocr/v20181119/ocr_client.js +13 -26
- package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +204 -271
- package/tencentcloud/services/tke/v20180525/tke_models.d.ts +23 -24
- package/tencentcloud/services/tokenhub/v20260322/tokenhub_client.d.ts +81 -39
- package/tencentcloud/services/tokenhub/v20260322/tokenhub_client.js +107 -51
- package/tencentcloud/services/tokenhub/v20260322/tokenhub_models.d.ts +545 -230
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +7 -15
- package/tencentcloud/services/tsf/v20180326/tsf_client.d.ts +5 -143
- package/tencentcloud/services/tsf/v20180326/tsf_client.js +6 -190
- package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +85 -1013
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +13 -9
|
@@ -128,23 +128,6 @@ export interface ApiDetailResponse {
|
|
|
128
128
|
*/
|
|
129
129
|
Description?: string;
|
|
130
130
|
}
|
|
131
|
-
/**
|
|
132
|
-
* UpdateApiRateLimitRule请求参数结构体
|
|
133
|
-
*/
|
|
134
|
-
export interface UpdateApiRateLimitRuleRequest {
|
|
135
|
-
/**
|
|
136
|
-
* 限流规则ID
|
|
137
|
-
*/
|
|
138
|
-
RuleId: string;
|
|
139
|
-
/**
|
|
140
|
-
* 开启/禁用,enabled/disabled
|
|
141
|
-
*/
|
|
142
|
-
UsableStatus: string;
|
|
143
|
-
/**
|
|
144
|
-
* qps值,开启限流规则时,必填
|
|
145
|
-
*/
|
|
146
|
-
MaxQps?: number;
|
|
147
|
-
}
|
|
148
131
|
/**
|
|
149
132
|
* DeleteCluster返回参数结构体
|
|
150
133
|
*/
|
|
@@ -707,13 +690,17 @@ export interface SimpleApplication {
|
|
|
707
690
|
ApmInstanceName?: string;
|
|
708
691
|
}
|
|
709
692
|
/**
|
|
710
|
-
*
|
|
693
|
+
* DescribeSimpleNamespaces返回参数结构体
|
|
711
694
|
*/
|
|
712
|
-
export interface
|
|
695
|
+
export interface DescribeSimpleNamespacesResponse {
|
|
696
|
+
/**
|
|
697
|
+
* 命名空间分页列表
|
|
698
|
+
*/
|
|
699
|
+
Result?: TsfPageNamespace;
|
|
713
700
|
/**
|
|
714
|
-
*
|
|
701
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
715
702
|
*/
|
|
716
|
-
|
|
703
|
+
RequestId?: string;
|
|
717
704
|
}
|
|
718
705
|
/**
|
|
719
706
|
* DescribeSimpleApplications返回参数结构体
|
|
@@ -1055,24 +1042,6 @@ export interface EnableLaneRuleRequest {
|
|
|
1055
1042
|
*/
|
|
1056
1043
|
RuleId: string;
|
|
1057
1044
|
}
|
|
1058
|
-
/**
|
|
1059
|
-
* 任务规则
|
|
1060
|
-
*/
|
|
1061
|
-
export interface TaskRule {
|
|
1062
|
-
/**
|
|
1063
|
-
* 触发规则类型,枚举值。一共3个值,Cron:定时触发,Repeat:周期触发,WorkFlow:工作流触发
|
|
1064
|
-
*/
|
|
1065
|
-
RuleType: string;
|
|
1066
|
-
/**
|
|
1067
|
-
* Cron类型规则,cron表达式。
|
|
1068
|
-
*/
|
|
1069
|
-
Expression?: string;
|
|
1070
|
-
/**
|
|
1071
|
-
* 时间间隔, 单位毫秒
|
|
1072
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1073
|
-
*/
|
|
1074
|
-
RepeatInterval?: number;
|
|
1075
|
-
}
|
|
1076
1045
|
/**
|
|
1077
1046
|
* UnbindApiGroup请求参数结构体
|
|
1078
1047
|
*/
|
|
@@ -1082,91 +1051,6 @@ export interface UnbindApiGroupRequest {
|
|
|
1082
1051
|
*/
|
|
1083
1052
|
GroupGatewayList: Array<GatewayGroupIds>;
|
|
1084
1053
|
}
|
|
1085
|
-
/**
|
|
1086
|
-
* 任务定义
|
|
1087
|
-
*/
|
|
1088
|
-
export interface TaskRecord {
|
|
1089
|
-
/**
|
|
1090
|
-
* 任务名称
|
|
1091
|
-
*/
|
|
1092
|
-
TaskName?: string;
|
|
1093
|
-
/**
|
|
1094
|
-
* 任务类型
|
|
1095
|
-
*/
|
|
1096
|
-
TaskType?: string;
|
|
1097
|
-
/**
|
|
1098
|
-
* 任务执行方式,unicast:随机单节点执行,broadcast:广播执行,shard:分片执行
|
|
1099
|
-
*/
|
|
1100
|
-
ExecuteType?: string;
|
|
1101
|
-
/**
|
|
1102
|
-
* 任务内容,长度限制65535字节
|
|
1103
|
-
*/
|
|
1104
|
-
TaskContent?: string;
|
|
1105
|
-
/**
|
|
1106
|
-
* 分组ID
|
|
1107
|
-
*/
|
|
1108
|
-
GroupId?: string;
|
|
1109
|
-
/**
|
|
1110
|
-
* 超时时间,单位:毫秒。
|
|
1111
|
-
*/
|
|
1112
|
-
TimeOut?: number;
|
|
1113
|
-
/**
|
|
1114
|
-
* 重试次数
|
|
1115
|
-
*/
|
|
1116
|
-
RetryCount?: number;
|
|
1117
|
-
/**
|
|
1118
|
-
* 重试间隔,单位:毫秒。
|
|
1119
|
-
*/
|
|
1120
|
-
RetryInterval?: number;
|
|
1121
|
-
/**
|
|
1122
|
-
* 触发规则
|
|
1123
|
-
*/
|
|
1124
|
-
TaskRule?: TaskRule;
|
|
1125
|
-
/**
|
|
1126
|
-
* 任务启用状态。一共2种状态可选,ENABLED:启用,DISABLED:停用
|
|
1127
|
-
*/
|
|
1128
|
-
TaskState?: string;
|
|
1129
|
-
/**
|
|
1130
|
-
* 任务ID
|
|
1131
|
-
*/
|
|
1132
|
-
TaskId?: string;
|
|
1133
|
-
/**
|
|
1134
|
-
* 判断任务成功的操作符
|
|
1135
|
-
*/
|
|
1136
|
-
SuccessOperator?: string;
|
|
1137
|
-
/**
|
|
1138
|
-
* 判断任务成功的阈值
|
|
1139
|
-
*/
|
|
1140
|
-
SuccessRatio?: number;
|
|
1141
|
-
/**
|
|
1142
|
-
* 分片数量
|
|
1143
|
-
*/
|
|
1144
|
-
ShardCount?: number;
|
|
1145
|
-
/**
|
|
1146
|
-
* 高级设置
|
|
1147
|
-
*/
|
|
1148
|
-
AdvanceSettings?: AdvanceSettings;
|
|
1149
|
-
/**
|
|
1150
|
-
* 分片参数
|
|
1151
|
-
*/
|
|
1152
|
-
ShardArguments?: Array<ShardArgument>;
|
|
1153
|
-
/**
|
|
1154
|
-
* 所属工作流ID
|
|
1155
|
-
*/
|
|
1156
|
-
BelongFlowIds?: Array<string>;
|
|
1157
|
-
/**
|
|
1158
|
-
* 任务历史ID
|
|
1159
|
-
*/
|
|
1160
|
-
TaskLogId?: string;
|
|
1161
|
-
/**
|
|
1162
|
-
* 触发类型,一共3种类型,WorkFlow:工作流触发,Cron:定时触发,FixRate:周期触发
|
|
1163
|
-
*/
|
|
1164
|
-
TriggerType?: string;
|
|
1165
|
-
/**
|
|
1166
|
-
* 任务参数,长度限制10000个字符
|
|
1167
|
-
*/
|
|
1168
|
-
TaskArgument?: string;
|
|
1169
|
-
}
|
|
1170
1054
|
/**
|
|
1171
1055
|
* CreateNamespace返回参数结构体
|
|
1172
1056
|
*/
|
|
@@ -1180,28 +1064,6 @@ export interface CreateNamespaceResponse {
|
|
|
1180
1064
|
*/
|
|
1181
1065
|
RequestId?: string;
|
|
1182
1066
|
}
|
|
1183
|
-
/**
|
|
1184
|
-
* RedoTaskBatch请求参数结构体
|
|
1185
|
-
*/
|
|
1186
|
-
export interface RedoTaskBatchRequest {
|
|
1187
|
-
/**
|
|
1188
|
-
* 任务ID。在[任务管理](https://console.cloud.tencent.com/tsf/tct?rid=1)列表页查看任务ID。
|
|
1189
|
-
*/
|
|
1190
|
-
TaskId: string;
|
|
1191
|
-
/**
|
|
1192
|
-
* 任务批次ID。在[任务管理](https://console.cloud.tencent.com/tsf/tct?rid=1)页面点击任务ID进入任务详情,进入执行记录列表页,第一列即为任务批次ID。
|
|
1193
|
-
*/
|
|
1194
|
-
BatchId: string;
|
|
1195
|
-
}
|
|
1196
|
-
/**
|
|
1197
|
-
* DescribeTaskLastStatus请求参数结构体
|
|
1198
|
-
*/
|
|
1199
|
-
export interface DescribeTaskLastStatusRequest {
|
|
1200
|
-
/**
|
|
1201
|
-
* 任务ID。在[任务管理](https://console.cloud.tencent.com/tsf/tct?rid=1)列表页第一列和任务基本信息页查看任务ID。
|
|
1202
|
-
*/
|
|
1203
|
-
TaskId: string;
|
|
1204
|
-
}
|
|
1205
1067
|
/**
|
|
1206
1068
|
* ModifyUploadInfo返回参数结构体
|
|
1207
1069
|
*/
|
|
@@ -1288,19 +1150,6 @@ export interface DisableLaneRuleResponse {
|
|
|
1288
1150
|
*/
|
|
1289
1151
|
RequestId?: string;
|
|
1290
1152
|
}
|
|
1291
|
-
/**
|
|
1292
|
-
* 翻页查询的任务记录返回
|
|
1293
|
-
*/
|
|
1294
|
-
export interface TaskRecordPage {
|
|
1295
|
-
/**
|
|
1296
|
-
* 总数量
|
|
1297
|
-
*/
|
|
1298
|
-
TotalCount?: number;
|
|
1299
|
-
/**
|
|
1300
|
-
* 任务记录列表
|
|
1301
|
-
*/
|
|
1302
|
-
Content?: Array<TaskRecord>;
|
|
1303
|
-
}
|
|
1304
1153
|
/**
|
|
1305
1154
|
* AssociateBusinessLogConfig请求参数结构体
|
|
1306
1155
|
*/
|
|
@@ -1339,15 +1188,6 @@ export interface DescribeDeliveryConfigRequest {
|
|
|
1339
1188
|
*/
|
|
1340
1189
|
ConfigId: string;
|
|
1341
1190
|
}
|
|
1342
|
-
/**
|
|
1343
|
-
* DeleteServerlessGroup请求参数结构体
|
|
1344
|
-
*/
|
|
1345
|
-
export interface DeleteServerlessGroupRequest {
|
|
1346
|
-
/**
|
|
1347
|
-
* groupId,分组唯一标识
|
|
1348
|
-
*/
|
|
1349
|
-
GroupId: string;
|
|
1350
|
-
}
|
|
1351
1191
|
/**
|
|
1352
1192
|
* ChangeApiUsableStatus请求参数结构体
|
|
1353
1193
|
*/
|
|
@@ -2622,19 +2462,6 @@ export interface CosUploadInfo {
|
|
|
2622
2462
|
*/
|
|
2623
2463
|
Credentials?: CosCredentials;
|
|
2624
2464
|
}
|
|
2625
|
-
/**
|
|
2626
|
-
* DescribeLanes返回参数结构体
|
|
2627
|
-
*/
|
|
2628
|
-
export interface DescribeLanesResponse {
|
|
2629
|
-
/**
|
|
2630
|
-
* 泳道配置列表。
|
|
2631
|
-
*/
|
|
2632
|
-
Result?: LaneInfos;
|
|
2633
|
-
/**
|
|
2634
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2635
|
-
*/
|
|
2636
|
-
RequestId?: string;
|
|
2637
|
-
}
|
|
2638
2465
|
/**
|
|
2639
2466
|
* StartGroup请求参数结构体
|
|
2640
2467
|
*/
|
|
@@ -2832,15 +2659,6 @@ export interface DescribeResourceTaskStatusResponse {
|
|
|
2832
2659
|
*/
|
|
2833
2660
|
RequestId?: string;
|
|
2834
2661
|
}
|
|
2835
|
-
/**
|
|
2836
|
-
* RedoTask请求参数结构体
|
|
2837
|
-
*/
|
|
2838
|
-
export interface RedoTaskRequest {
|
|
2839
|
-
/**
|
|
2840
|
-
* 任务ID。在[任务管理](https://console.cloud.tencent.com/tsf/tct?rid=1)列表页查看任务ID。
|
|
2841
|
-
*/
|
|
2842
|
-
TaskId: string;
|
|
2843
|
-
}
|
|
2844
2662
|
/**
|
|
2845
2663
|
* DeleteApiGroup返回参数结构体
|
|
2846
2664
|
*/
|
|
@@ -3141,23 +2959,6 @@ export interface DescribeOverviewInvocationRequest {
|
|
|
3141
2959
|
*/
|
|
3142
2960
|
EndTime?: string;
|
|
3143
2961
|
}
|
|
3144
|
-
/**
|
|
3145
|
-
* 任务最近一次执行状态
|
|
3146
|
-
*/
|
|
3147
|
-
export interface TaskLastExecuteStatus {
|
|
3148
|
-
/**
|
|
3149
|
-
* 批次ID
|
|
3150
|
-
*/
|
|
3151
|
-
BatchId?: string;
|
|
3152
|
-
/**
|
|
3153
|
-
* 运行状态,RUNNING/SUCCESS/FAIL/HALF/TERMINATED
|
|
3154
|
-
*/
|
|
3155
|
-
State?: string;
|
|
3156
|
-
/**
|
|
3157
|
-
* 批次历史ID
|
|
3158
|
-
*/
|
|
3159
|
-
BatchLogId?: string;
|
|
3160
|
-
}
|
|
3161
2962
|
/**
|
|
3162
2963
|
* DescribePrograms请求参数结构体
|
|
3163
2964
|
*/
|
|
@@ -3533,79 +3334,6 @@ export interface StartContainerGroupResponse {
|
|
|
3533
3334
|
*/
|
|
3534
3335
|
RequestId?: string;
|
|
3535
3336
|
}
|
|
3536
|
-
/**
|
|
3537
|
-
* ModifyTask请求参数结构体
|
|
3538
|
-
*/
|
|
3539
|
-
export interface ModifyTaskRequest {
|
|
3540
|
-
/**
|
|
3541
|
-
* 任务ID。在[任务管理](https://console.cloud.tencent.com/tsf/tct?rid=1)列表页查看任务ID。
|
|
3542
|
-
*/
|
|
3543
|
-
TaskId: string;
|
|
3544
|
-
/**
|
|
3545
|
-
* 任务名称,长度限制为64字符。在任务管理列表页面第一列或是任务基本信息页查看任务名称。
|
|
3546
|
-
*/
|
|
3547
|
-
TaskName?: string;
|
|
3548
|
-
/**
|
|
3549
|
-
* 任务类型。当前只支持一种任务类型。枚举值,java:Java类任务
|
|
3550
|
-
*/
|
|
3551
|
-
TaskType?: string;
|
|
3552
|
-
/**
|
|
3553
|
-
* 任务内容,长度限制为 65536 字节
|
|
3554
|
-
*/
|
|
3555
|
-
TaskContent?: string;
|
|
3556
|
-
/**
|
|
3557
|
-
* 任务执行方式,枚举值。unicast:随机单节点执行,broadcast:广播执行,shard:分片执行
|
|
3558
|
-
*/
|
|
3559
|
-
ExecuteType?: string;
|
|
3560
|
-
/**
|
|
3561
|
-
* 触发规则
|
|
3562
|
-
*/
|
|
3563
|
-
TaskRule?: TaskRule;
|
|
3564
|
-
/**
|
|
3565
|
-
* 超时时间,取值大于0,单位:毫秒(ms)
|
|
3566
|
-
*/
|
|
3567
|
-
TimeOut?: number;
|
|
3568
|
-
/**
|
|
3569
|
-
* 部署组ID。在[应用管理](https://console.cloud.tencent.com/tsf/app?rid=1),点击应用ID进入应用部署页查看部署组ID。
|
|
3570
|
-
*/
|
|
3571
|
-
GroupId?: string;
|
|
3572
|
-
/**
|
|
3573
|
-
* 分片数量,取值范围2~1000
|
|
3574
|
-
*/
|
|
3575
|
-
ShardCount?: number;
|
|
3576
|
-
/**
|
|
3577
|
-
* 分片参数
|
|
3578
|
-
*/
|
|
3579
|
-
ShardArguments?: Array<ShardArgument>;
|
|
3580
|
-
/**
|
|
3581
|
-
* 高级设置
|
|
3582
|
-
*/
|
|
3583
|
-
AdvanceSettings?: AdvanceSettings;
|
|
3584
|
-
/**
|
|
3585
|
-
* 判断任务成功的操作符 GT/GTE
|
|
3586
|
-
*/
|
|
3587
|
-
SuccessOperator?: string;
|
|
3588
|
-
/**
|
|
3589
|
-
* 判断任务成功率的阈值,取值范围:1-100,单位:百分比(%)
|
|
3590
|
-
*/
|
|
3591
|
-
SuccessRatio?: number;
|
|
3592
|
-
/**
|
|
3593
|
-
* 重试次数,取值范围 0 - 10,单位:次
|
|
3594
|
-
*/
|
|
3595
|
-
RetryCount?: number;
|
|
3596
|
-
/**
|
|
3597
|
-
* 重试间隔,取值范围 0-600,单位:秒(s)
|
|
3598
|
-
*/
|
|
3599
|
-
RetryInterval?: number;
|
|
3600
|
-
/**
|
|
3601
|
-
* 任务参数,长度限制10000个字符
|
|
3602
|
-
*/
|
|
3603
|
-
TaskArgument?: string;
|
|
3604
|
-
/**
|
|
3605
|
-
* 数据集列表。
|
|
3606
|
-
*/
|
|
3607
|
-
ProgramIdList?: Array<string>;
|
|
3608
|
-
}
|
|
3609
3337
|
/**
|
|
3610
3338
|
* DeleteUnitNamespaces返回参数结构体
|
|
3611
3339
|
*/
|
|
@@ -4142,27 +3870,6 @@ export interface ContainGroupResult {
|
|
|
4142
3870
|
*/
|
|
4143
3871
|
TotalCount?: number;
|
|
4144
3872
|
}
|
|
4145
|
-
/**
|
|
4146
|
-
* UpdateUnitRule请求参数结构体
|
|
4147
|
-
*/
|
|
4148
|
-
export interface UpdateUnitRuleRequest {
|
|
4149
|
-
/**
|
|
4150
|
-
* 规则ID
|
|
4151
|
-
*/
|
|
4152
|
-
Id: string;
|
|
4153
|
-
/**
|
|
4154
|
-
* 规则名称
|
|
4155
|
-
*/
|
|
4156
|
-
Name: string;
|
|
4157
|
-
/**
|
|
4158
|
-
* 规则描述
|
|
4159
|
-
*/
|
|
4160
|
-
Description?: string;
|
|
4161
|
-
/**
|
|
4162
|
-
* 规则项列表
|
|
4163
|
-
*/
|
|
4164
|
-
UnitRuleItemList?: Array<UnitRuleItem>;
|
|
4165
|
-
}
|
|
4166
3873
|
/**
|
|
4167
3874
|
* ReleasePublicConfig返回参数结构体
|
|
4168
3875
|
*/
|
|
@@ -4344,15 +4051,6 @@ export interface DescribeMsApiListResponse {
|
|
|
4344
4051
|
*/
|
|
4345
4052
|
RequestId?: string;
|
|
4346
4053
|
}
|
|
4347
|
-
/**
|
|
4348
|
-
* EnableTask请求参数结构体
|
|
4349
|
-
*/
|
|
4350
|
-
export interface EnableTaskRequest {
|
|
4351
|
-
/**
|
|
4352
|
-
* 任务ID。[任务管理](https://console.cloud.tencent.com/tsf/tct?rid=1)列表页查看任务ID。
|
|
4353
|
-
*/
|
|
4354
|
-
TaskId: string;
|
|
4355
|
-
}
|
|
4356
4054
|
/**
|
|
4357
4055
|
* 业务日志
|
|
4358
4056
|
*/
|
|
@@ -4382,19 +4080,6 @@ export interface BusinessLogV2 {
|
|
|
4382
4080
|
*/
|
|
4383
4081
|
GroupId?: string;
|
|
4384
4082
|
}
|
|
4385
|
-
/**
|
|
4386
|
-
* DisableTask返回参数结构体
|
|
4387
|
-
*/
|
|
4388
|
-
export interface DisableTaskResponse {
|
|
4389
|
-
/**
|
|
4390
|
-
* true:操作成功,false:操作失败
|
|
4391
|
-
*/
|
|
4392
|
-
Result?: boolean;
|
|
4393
|
-
/**
|
|
4394
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4395
|
-
*/
|
|
4396
|
-
RequestId?: string;
|
|
4397
|
-
}
|
|
4398
4083
|
/**
|
|
4399
4084
|
* DescribeMicroservice请求参数结构体
|
|
4400
4085
|
*/
|
|
@@ -4690,19 +4375,6 @@ export interface DeleteClusterRequest {
|
|
|
4690
4375
|
*/
|
|
4691
4376
|
Unbind?: boolean;
|
|
4692
4377
|
}
|
|
4693
|
-
/**
|
|
4694
|
-
* StopTaskBatch返回参数结构体
|
|
4695
|
-
*/
|
|
4696
|
-
export interface StopTaskBatchResponse {
|
|
4697
|
-
/**
|
|
4698
|
-
* 返回 true 或 false。true:操作成功,false:操作失败
|
|
4699
|
-
*/
|
|
4700
|
-
Result?: boolean;
|
|
4701
|
-
/**
|
|
4702
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4703
|
-
*/
|
|
4704
|
-
RequestId?: string;
|
|
4705
|
-
}
|
|
4706
4378
|
/**
|
|
4707
4379
|
* 服务统计结果
|
|
4708
4380
|
*/
|
|
@@ -4854,15 +4526,6 @@ export interface DescribeContainerGroupDetailResponse {
|
|
|
4854
4526
|
*/
|
|
4855
4527
|
RequestId?: string;
|
|
4856
4528
|
}
|
|
4857
|
-
/**
|
|
4858
|
-
* DisableTask请求参数结构体
|
|
4859
|
-
*/
|
|
4860
|
-
export interface DisableTaskRequest {
|
|
4861
|
-
/**
|
|
4862
|
-
* 任务ID。[任务管理](https://console.cloud.tencent.com/tsf/tct?rid=1)列表页查看任务ID。
|
|
4863
|
-
*/
|
|
4864
|
-
TaskId: string;
|
|
4865
|
-
}
|
|
4866
4529
|
/**
|
|
4867
4530
|
* CreatePathRewritesWithDetailResp返回参数结构体
|
|
4868
4531
|
*/
|
|
@@ -4958,19 +4621,6 @@ export interface PkgBind {
|
|
|
4958
4621
|
*/
|
|
4959
4622
|
GroupId?: string;
|
|
4960
4623
|
}
|
|
4961
|
-
/**
|
|
4962
|
-
* DeleteTask返回参数结构体
|
|
4963
|
-
*/
|
|
4964
|
-
export interface DeleteTaskResponse {
|
|
4965
|
-
/**
|
|
4966
|
-
* true:删除成功,false:删除失败
|
|
4967
|
-
*/
|
|
4968
|
-
Result?: boolean;
|
|
4969
|
-
/**
|
|
4970
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4971
|
-
*/
|
|
4972
|
-
RequestId?: string;
|
|
4973
|
-
}
|
|
4974
4624
|
/**
|
|
4975
4625
|
* 微服务实例的分页内容
|
|
4976
4626
|
*/
|
|
@@ -5316,17 +4966,25 @@ export interface DeleteContainerGroupResponse {
|
|
|
5316
4966
|
RequestId?: string;
|
|
5317
4967
|
}
|
|
5318
4968
|
/**
|
|
5319
|
-
*
|
|
4969
|
+
* ModifyGroup请求参数结构体
|
|
5320
4970
|
*/
|
|
5321
|
-
export interface
|
|
4971
|
+
export interface ModifyGroupRequest {
|
|
5322
4972
|
/**
|
|
5323
|
-
*
|
|
4973
|
+
* 部署组ID,可通过调用[DescribeContainerGroups](https://cloud.tencent.com/document/api/649/36068)查询已创建的部署组列表或登录控制台进行查看;也可以调用[CreateContainGroup](https://cloud.tencent.com/document/api/649/36075)创建新的部署组。
|
|
5324
4974
|
*/
|
|
5325
|
-
|
|
4975
|
+
GroupId: string;
|
|
5326
4976
|
/**
|
|
5327
|
-
*
|
|
4977
|
+
* 部署组名称
|
|
5328
4978
|
*/
|
|
5329
|
-
|
|
4979
|
+
GroupName?: string;
|
|
4980
|
+
/**
|
|
4981
|
+
* 部署组描述
|
|
4982
|
+
*/
|
|
4983
|
+
GroupDesc?: string;
|
|
4984
|
+
/**
|
|
4985
|
+
* 部署组备注
|
|
4986
|
+
*/
|
|
4987
|
+
Alias?: string;
|
|
5330
4988
|
}
|
|
5331
4989
|
/**
|
|
5332
4990
|
* DeleteImageTags返回参数结构体
|
|
@@ -5433,15 +5091,6 @@ export interface DisableUnitRouteResponse {
|
|
|
5433
5091
|
*/
|
|
5434
5092
|
RequestId?: string;
|
|
5435
5093
|
}
|
|
5436
|
-
/**
|
|
5437
|
-
* ExecuteTask请求参数结构体
|
|
5438
|
-
*/
|
|
5439
|
-
export interface ExecuteTaskRequest {
|
|
5440
|
-
/**
|
|
5441
|
-
* 任务ID。在[任务管理](https://console.cloud.tencent.com/tsf/tct?rid=1)列表页查看任务ID。
|
|
5442
|
-
*/
|
|
5443
|
-
TaskId: string;
|
|
5444
|
-
}
|
|
5445
5094
|
/**
|
|
5446
5095
|
* DescribeGroupBusinessLogConfigs请求参数结构体
|
|
5447
5096
|
*/
|
|
@@ -5568,26 +5217,21 @@ export interface DescribePathRewriteResponse {
|
|
|
5568
5217
|
RequestId?: string;
|
|
5569
5218
|
}
|
|
5570
5219
|
/**
|
|
5571
|
-
*
|
|
5220
|
+
* 指标监控数据曲线
|
|
5572
5221
|
*/
|
|
5573
|
-
export interface
|
|
5222
|
+
export interface MetricDataCurve {
|
|
5574
5223
|
/**
|
|
5575
|
-
*
|
|
5224
|
+
* 指标名称
|
|
5576
5225
|
*/
|
|
5577
|
-
|
|
5578
|
-
}
|
|
5579
|
-
/**
|
|
5580
|
-
* DescribeSimpleNamespaces返回参数结构体
|
|
5581
|
-
*/
|
|
5582
|
-
export interface DescribeSimpleNamespacesResponse {
|
|
5226
|
+
MetricName?: string;
|
|
5583
5227
|
/**
|
|
5584
|
-
*
|
|
5228
|
+
* 指标计算方式
|
|
5585
5229
|
*/
|
|
5586
|
-
|
|
5230
|
+
MetricFunction?: string;
|
|
5587
5231
|
/**
|
|
5588
|
-
*
|
|
5232
|
+
* 指标数据点集合
|
|
5589
5233
|
*/
|
|
5590
|
-
|
|
5234
|
+
MetricDataPoints?: Array<MetricDataPoint>;
|
|
5591
5235
|
}
|
|
5592
5236
|
/**
|
|
5593
5237
|
* 日志投递kafka用,描述部署组信息
|
|
@@ -5624,19 +5268,6 @@ export interface GroupInfo {
|
|
|
5624
5268
|
*/
|
|
5625
5269
|
AssociateTime?: string;
|
|
5626
5270
|
}
|
|
5627
|
-
/**
|
|
5628
|
-
* TerminateTaskFlowBatch返回参数结构体
|
|
5629
|
-
*/
|
|
5630
|
-
export interface TerminateTaskFlowBatchResponse {
|
|
5631
|
-
/**
|
|
5632
|
-
* 是否停止成功,true:停止成功,false:停止失败
|
|
5633
|
-
*/
|
|
5634
|
-
Result?: boolean;
|
|
5635
|
-
/**
|
|
5636
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5637
|
-
*/
|
|
5638
|
-
RequestId?: string;
|
|
5639
|
-
}
|
|
5640
5271
|
/**
|
|
5641
5272
|
* DisassociateKafkaConfig返回参数结构体
|
|
5642
5273
|
*/
|
|
@@ -6198,19 +5829,6 @@ export interface DescribeSimpleNamespacesRequest {
|
|
|
6198
5829
|
*/
|
|
6199
5830
|
DisableProgramAuthCheck?: boolean;
|
|
6200
5831
|
}
|
|
6201
|
-
/**
|
|
6202
|
-
* ExecuteTaskFlow返回参数结构体
|
|
6203
|
-
*/
|
|
6204
|
-
export interface ExecuteTaskFlowResponse {
|
|
6205
|
-
/**
|
|
6206
|
-
* 操作成功返回工作流批次ID,操作失败返回空字符串。
|
|
6207
|
-
*/
|
|
6208
|
-
Result?: string;
|
|
6209
|
-
/**
|
|
6210
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6211
|
-
*/
|
|
6212
|
-
RequestId?: string;
|
|
6213
|
-
}
|
|
6214
5832
|
/**
|
|
6215
5833
|
* DescribeClusters返回参数结构体
|
|
6216
5834
|
*/
|
|
@@ -6326,19 +5944,6 @@ export interface DescribeUnitNamespacesResponse {
|
|
|
6326
5944
|
*/
|
|
6327
5945
|
RequestId?: string;
|
|
6328
5946
|
}
|
|
6329
|
-
/**
|
|
6330
|
-
* ContinueRunFailedTaskBatch返回参数结构体
|
|
6331
|
-
*/
|
|
6332
|
-
export interface ContinueRunFailedTaskBatchResponse {
|
|
6333
|
-
/**
|
|
6334
|
-
* true:操作成功、false:操作失败
|
|
6335
|
-
*/
|
|
6336
|
-
Result?: boolean;
|
|
6337
|
-
/**
|
|
6338
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6339
|
-
*/
|
|
6340
|
-
RequestId?: string;
|
|
6341
|
-
}
|
|
6342
5947
|
/**
|
|
6343
5948
|
* DescribeSimpleClusters请求参数结构体
|
|
6344
5949
|
*/
|
|
@@ -6773,19 +6378,6 @@ export interface ImageRepositoryResult {
|
|
|
6773
6378
|
*/
|
|
6774
6379
|
Content?: Array<ImageRepository>;
|
|
6775
6380
|
}
|
|
6776
|
-
/**
|
|
6777
|
-
* ModifyTask返回参数结构体
|
|
6778
|
-
*/
|
|
6779
|
-
export interface ModifyTaskResponse {
|
|
6780
|
-
/**
|
|
6781
|
-
* 更新是否成功。true:操作成功、false:操作失败
|
|
6782
|
-
*/
|
|
6783
|
-
Result?: boolean;
|
|
6784
|
-
/**
|
|
6785
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6786
|
-
*/
|
|
6787
|
-
RequestId?: string;
|
|
6788
|
-
}
|
|
6789
6381
|
/**
|
|
6790
6382
|
* RevokeFileConfig返回参数结构体
|
|
6791
6383
|
*/
|
|
@@ -7528,19 +7120,6 @@ export interface CreateLaneRuleResponse {
|
|
|
7528
7120
|
*/
|
|
7529
7121
|
RequestId?: string;
|
|
7530
7122
|
}
|
|
7531
|
-
/**
|
|
7532
|
-
* CreateTask返回参数结构体
|
|
7533
|
-
*/
|
|
7534
|
-
export interface CreateTaskResponse {
|
|
7535
|
-
/**
|
|
7536
|
-
* 任务ID
|
|
7537
|
-
*/
|
|
7538
|
-
Result?: string;
|
|
7539
|
-
/**
|
|
7540
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
7541
|
-
*/
|
|
7542
|
-
RequestId?: string;
|
|
7543
|
-
}
|
|
7544
7123
|
/**
|
|
7545
7124
|
* DescribeContainerGroups返回参数结构体
|
|
7546
7125
|
*/
|
|
@@ -7909,31 +7488,6 @@ export interface ContainerAdditionalResourceRequirementMap {
|
|
|
7909
7488
|
*/
|
|
7910
7489
|
N: ContainerAdditionalResourceRequirement;
|
|
7911
7490
|
}
|
|
7912
|
-
/**
|
|
7913
|
-
* CreateTaskFlow请求参数结构体
|
|
7914
|
-
*/
|
|
7915
|
-
export interface CreateTaskFlowRequest {
|
|
7916
|
-
/**
|
|
7917
|
-
* 工作流名称
|
|
7918
|
-
*/
|
|
7919
|
-
FlowName: string;
|
|
7920
|
-
/**
|
|
7921
|
-
* 触发方式
|
|
7922
|
-
*/
|
|
7923
|
-
TriggerRule: TaskRule;
|
|
7924
|
-
/**
|
|
7925
|
-
* 工作流任务节点列表
|
|
7926
|
-
*/
|
|
7927
|
-
FlowEdges: Array<TaskFlowEdge>;
|
|
7928
|
-
/**
|
|
7929
|
-
* 工作流执行超时时间,单位:毫秒
|
|
7930
|
-
*/
|
|
7931
|
-
TimeOut: number;
|
|
7932
|
-
/**
|
|
7933
|
-
* 数据集列表
|
|
7934
|
-
*/
|
|
7935
|
-
ProgramIdList?: Array<string>;
|
|
7936
|
-
}
|
|
7937
7491
|
/**
|
|
7938
7492
|
* CreateFileConfigWithDetailResp返回参数结构体
|
|
7939
7493
|
*/
|
|
@@ -8396,13 +7950,25 @@ export interface ImageTag {
|
|
|
8396
7950
|
TcrRepoInfo?: TcrRepoInfo;
|
|
8397
7951
|
}
|
|
8398
7952
|
/**
|
|
8399
|
-
*
|
|
7953
|
+
* UpdateUnitRule请求参数结构体
|
|
8400
7954
|
*/
|
|
8401
|
-
export interface
|
|
7955
|
+
export interface UpdateUnitRuleRequest {
|
|
7956
|
+
/**
|
|
7957
|
+
* 规则ID
|
|
7958
|
+
*/
|
|
7959
|
+
Id: string;
|
|
7960
|
+
/**
|
|
7961
|
+
* 规则名称
|
|
7962
|
+
*/
|
|
7963
|
+
Name: string;
|
|
7964
|
+
/**
|
|
7965
|
+
* 规则描述
|
|
7966
|
+
*/
|
|
7967
|
+
Description?: string;
|
|
8402
7968
|
/**
|
|
8403
|
-
*
|
|
7969
|
+
* 规则项列表
|
|
8404
7970
|
*/
|
|
8405
|
-
|
|
7971
|
+
UnitRuleItemList?: Array<UnitRuleItem>;
|
|
8406
7972
|
}
|
|
8407
7973
|
/**
|
|
8408
7974
|
* DescribeBusinessLogConfig返回参数结构体
|
|
@@ -8417,15 +7983,6 @@ export interface DescribeBusinessLogConfigResponse {
|
|
|
8417
7983
|
*/
|
|
8418
7984
|
RequestId?: string;
|
|
8419
7985
|
}
|
|
8420
|
-
/**
|
|
8421
|
-
* TerminateTaskFlowBatch请求参数结构体
|
|
8422
|
-
*/
|
|
8423
|
-
export interface TerminateTaskFlowBatchRequest {
|
|
8424
|
-
/**
|
|
8425
|
-
* 工作流批次 ID,在[工作流执行记录](https://console.cloud.tencent.com/tsf/tct?rid=1&tab=taskflow)列表页第一列获取。
|
|
8426
|
-
*/
|
|
8427
|
-
FlowBatchId: string;
|
|
8428
|
-
}
|
|
8429
7986
|
/**
|
|
8430
7987
|
* CreateUnitRule返回参数结构体
|
|
8431
7988
|
*/
|
|
@@ -8452,19 +8009,6 @@ export interface CreateUnitNamespacesRequest {
|
|
|
8452
8009
|
*/
|
|
8453
8010
|
UnitNamespaceList?: Array<UnitNamespace>;
|
|
8454
8011
|
}
|
|
8455
|
-
/**
|
|
8456
|
-
* DescribeTaskRecords返回参数结构体
|
|
8457
|
-
*/
|
|
8458
|
-
export interface DescribeTaskRecordsResponse {
|
|
8459
|
-
/**
|
|
8460
|
-
* 任务记录列表
|
|
8461
|
-
*/
|
|
8462
|
-
Result?: TaskRecordPage;
|
|
8463
|
-
/**
|
|
8464
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
8465
|
-
*/
|
|
8466
|
-
RequestId?: string;
|
|
8467
|
-
}
|
|
8468
8012
|
/**
|
|
8469
8013
|
* ModifyGroupLane返回参数结构体
|
|
8470
8014
|
*/
|
|
@@ -8815,20 +8359,6 @@ export interface DescribePublicConfigReleaseLogsRequest {
|
|
|
8815
8359
|
*/
|
|
8816
8360
|
Limit?: number;
|
|
8817
8361
|
}
|
|
8818
|
-
/**
|
|
8819
|
-
* 分片参数
|
|
8820
|
-
*/
|
|
8821
|
-
export interface ShardArgument {
|
|
8822
|
-
/**
|
|
8823
|
-
* 分片参数 KEY,整形, 范围 [1,1000]
|
|
8824
|
-
*/
|
|
8825
|
-
ShardKey?: number;
|
|
8826
|
-
/**
|
|
8827
|
-
* 分片参数 VALUE
|
|
8828
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
8829
|
-
*/
|
|
8830
|
-
ShardValue?: string;
|
|
8831
|
-
}
|
|
8832
8362
|
/**
|
|
8833
8363
|
* 指标维度多值匹配。可选值 NamespaceId:命名空间ID,GroupId:部署组ID,InstanceId:实例ID,ApplicationId:应用ID,OperationMethod:执行方法,OperationName:执行名称,ServiceName:服务名,UpstreamNamespaceId:上游命名空间ID
|
|
8834
8364
|
*/
|
|
@@ -9081,19 +8611,6 @@ export interface CreateUnitRuleWithDetailRespResponse {
|
|
|
9081
8611
|
*/
|
|
9082
8612
|
RequestId?: string;
|
|
9083
8613
|
}
|
|
9084
|
-
/**
|
|
9085
|
-
* EnableTaskFlow返回参数结构体
|
|
9086
|
-
*/
|
|
9087
|
-
export interface EnableTaskFlowResponse {
|
|
9088
|
-
/**
|
|
9089
|
-
* true成功,false: 失败
|
|
9090
|
-
*/
|
|
9091
|
-
Result?: boolean;
|
|
9092
|
-
/**
|
|
9093
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
9094
|
-
*/
|
|
9095
|
-
RequestId?: string;
|
|
9096
|
-
}
|
|
9097
8614
|
/**
|
|
9098
8615
|
* API 明细
|
|
9099
8616
|
*/
|
|
@@ -9265,19 +8782,6 @@ export interface TsfPageConfigRelease {
|
|
|
9265
8782
|
*/
|
|
9266
8783
|
Content?: Array<ConfigRelease>;
|
|
9267
8784
|
}
|
|
9268
|
-
/**
|
|
9269
|
-
* DisableTaskFlow返回参数结构体
|
|
9270
|
-
*/
|
|
9271
|
-
export interface DisableTaskFlowResponse {
|
|
9272
|
-
/**
|
|
9273
|
-
* true成功,false: 失败
|
|
9274
|
-
*/
|
|
9275
|
-
Result?: boolean;
|
|
9276
|
-
/**
|
|
9277
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
9278
|
-
*/
|
|
9279
|
-
RequestId?: string;
|
|
9280
|
-
}
|
|
9281
8785
|
/**
|
|
9282
8786
|
* DescribeGatewayMonitorOverview请求参数结构体
|
|
9283
8787
|
*/
|
|
@@ -9300,16 +8804,6 @@ export interface DescribeImageTagsResponse {
|
|
|
9300
8804
|
*/
|
|
9301
8805
|
RequestId?: string;
|
|
9302
8806
|
}
|
|
9303
|
-
/**
|
|
9304
|
-
* 虚拟机实例相关的参数配置
|
|
9305
|
-
*/
|
|
9306
|
-
export interface VmInstanceResourceConfig {
|
|
9307
|
-
/**
|
|
9308
|
-
* 实例导入方式,可多个,公有云为 ["R", "M"],独立版的取值仅有 "M" 脚本模式
|
|
9309
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
9310
|
-
*/
|
|
9311
|
-
ImportMode?: Array<string>;
|
|
9312
|
-
}
|
|
9313
8807
|
/**
|
|
9314
8808
|
* BindPlugin返回参数结构体
|
|
9315
8809
|
*/
|
|
@@ -9323,15 +8817,6 @@ export interface BindPluginResponse {
|
|
|
9323
8817
|
*/
|
|
9324
8818
|
RequestId?: string;
|
|
9325
8819
|
}
|
|
9326
|
-
/**
|
|
9327
|
-
* RedoTaskFlowBatch请求参数结构体
|
|
9328
|
-
*/
|
|
9329
|
-
export interface RedoTaskFlowBatchRequest {
|
|
9330
|
-
/**
|
|
9331
|
-
* 工作流批次 ID。在[工作流管理](https://console.cloud.tencent.com/tsf/tct?rid=1&tab=workflowManage)页面,点击第一列的工作流ID进入工作流执行记录列表页面,第一列的内容即为工作流批次ID。
|
|
9332
|
-
*/
|
|
9333
|
-
FlowBatchId: string;
|
|
9334
|
-
}
|
|
9335
8820
|
/**
|
|
9336
8821
|
* 单元化命名空间翻页对象
|
|
9337
8822
|
*/
|
|
@@ -9412,23 +8897,6 @@ export interface MetricDataSingleValue {
|
|
|
9412
8897
|
*/
|
|
9413
8898
|
DailyPercent?: number;
|
|
9414
8899
|
}
|
|
9415
|
-
/**
|
|
9416
|
-
* StopTaskExecute请求参数结构体
|
|
9417
|
-
*/
|
|
9418
|
-
export interface StopTaskExecuteRequest {
|
|
9419
|
-
/**
|
|
9420
|
-
* 任务执行ID。在[任务管理](https://console.cloud.tencent.com/tsf/tct?rid=1)页面点击任务ID进入任务详情,进入执行记录页,点击批次ID进入执行详情列表页,第一列即为任务执行ID。
|
|
9421
|
-
*/
|
|
9422
|
-
ExecuteId: string;
|
|
9423
|
-
/**
|
|
9424
|
-
* 任务批次ID。在[任务管理](https://console.cloud.tencent.com/tsf/tct?rid=1)页面点击任务ID进入任务详情,进入执行记录列表页,第一列即为任务批次ID。
|
|
9425
|
-
*/
|
|
9426
|
-
BatchId?: string;
|
|
9427
|
-
/**
|
|
9428
|
-
* 任务ID。在[任务管理](https://console.cloud.tencent.com/tsf/tct?rid=1)列表页面可以查看任务ID。
|
|
9429
|
-
*/
|
|
9430
|
-
TaskId?: string;
|
|
9431
|
-
}
|
|
9432
8900
|
/**
|
|
9433
8901
|
* DeleteApiRateLimitRule请求参数结构体
|
|
9434
8902
|
*/
|
|
@@ -9568,75 +9036,6 @@ export interface ReleaseConfigWithDetailRespRequest {
|
|
|
9568
9036
|
*/
|
|
9569
9037
|
ReleaseDesc?: string;
|
|
9570
9038
|
}
|
|
9571
|
-
/**
|
|
9572
|
-
* CreateTask请求参数结构体
|
|
9573
|
-
*/
|
|
9574
|
-
export interface CreateTaskRequest {
|
|
9575
|
-
/**
|
|
9576
|
-
* 任务名称,任务长度64字符
|
|
9577
|
-
*/
|
|
9578
|
-
TaskName: string;
|
|
9579
|
-
/**
|
|
9580
|
-
* 任务内容,长度限制65536个字节
|
|
9581
|
-
*/
|
|
9582
|
-
TaskContent: string;
|
|
9583
|
-
/**
|
|
9584
|
-
* 任务执行方式,unicast:随机单节点执行,broadcast:广播执行,shard:分片执行
|
|
9585
|
-
*/
|
|
9586
|
-
ExecuteType: string;
|
|
9587
|
-
/**
|
|
9588
|
-
* 任务类型。当前只支持一种任务类型。枚举值,java:Java类任务
|
|
9589
|
-
*/
|
|
9590
|
-
TaskType: string;
|
|
9591
|
-
/**
|
|
9592
|
-
* 任务超时时间,取值大于0,单位:毫秒(ms)
|
|
9593
|
-
*/
|
|
9594
|
-
TimeOut: number;
|
|
9595
|
-
/**
|
|
9596
|
-
* 部署组ID。在[应用管理](https://console.cloud.tencent.com/tsf/app?rid=1),点击应用ID进入应用部署页查看部署组ID。
|
|
9597
|
-
*/
|
|
9598
|
-
GroupId: string;
|
|
9599
|
-
/**
|
|
9600
|
-
* 触发规则
|
|
9601
|
-
*/
|
|
9602
|
-
TaskRule?: TaskRule;
|
|
9603
|
-
/**
|
|
9604
|
-
* 重试次数,0 <= RetryCount<= 10
|
|
9605
|
-
*/
|
|
9606
|
-
RetryCount?: number;
|
|
9607
|
-
/**
|
|
9608
|
-
* 重试间隔, 0 <= RetryInterval <= 600000, 时间单位 ms
|
|
9609
|
-
*/
|
|
9610
|
-
RetryInterval?: number;
|
|
9611
|
-
/**
|
|
9612
|
-
* 分片数量,仅当任务执行方式为分片执行时需要设置该值,取值范围2~1000
|
|
9613
|
-
*/
|
|
9614
|
-
ShardCount?: number;
|
|
9615
|
-
/**
|
|
9616
|
-
* 分片参数
|
|
9617
|
-
*/
|
|
9618
|
-
ShardArguments?: Array<ShardArgument>;
|
|
9619
|
-
/**
|
|
9620
|
-
* 判断任务成功的操作符
|
|
9621
|
-
*/
|
|
9622
|
-
SuccessOperator?: string;
|
|
9623
|
-
/**
|
|
9624
|
-
* 判断任务成功率的阈值,如100
|
|
9625
|
-
*/
|
|
9626
|
-
SuccessRatio?: string;
|
|
9627
|
-
/**
|
|
9628
|
-
* 高级设置
|
|
9629
|
-
*/
|
|
9630
|
-
AdvanceSettings?: AdvanceSettings;
|
|
9631
|
-
/**
|
|
9632
|
-
* 任务参数,长度限制10000个字符
|
|
9633
|
-
*/
|
|
9634
|
-
TaskArgument?: string;
|
|
9635
|
-
/**
|
|
9636
|
-
* 数据集列表
|
|
9637
|
-
*/
|
|
9638
|
-
ProgramIdList?: Array<string>;
|
|
9639
|
-
}
|
|
9640
9039
|
/**
|
|
9641
9040
|
* 网关部署组、分组、API列表数据
|
|
9642
9041
|
*/
|
|
@@ -9816,61 +9215,24 @@ export interface SimpleGroup {
|
|
|
9816
9215
|
/**
|
|
9817
9216
|
* 创建时间
|
|
9818
9217
|
*/
|
|
9819
|
-
CreateTime?: string;
|
|
9820
|
-
/**
|
|
9821
|
-
* 更新时间
|
|
9822
|
-
*/
|
|
9823
|
-
UpdatedTime?: string;
|
|
9824
|
-
}
|
|
9825
|
-
/**
|
|
9826
|
-
* CreateApiRateLimitRuleWithDetailResp返回参数结构体
|
|
9827
|
-
*/
|
|
9828
|
-
export interface CreateApiRateLimitRuleWithDetailRespResponse {
|
|
9829
|
-
/**
|
|
9830
|
-
* 创建的规则 ID
|
|
9831
|
-
*/
|
|
9832
|
-
Result?: ApiRateLimitRule;
|
|
9833
|
-
/**
|
|
9834
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
9835
|
-
*/
|
|
9836
|
-
RequestId?: string;
|
|
9837
|
-
}
|
|
9838
|
-
/**
|
|
9839
|
-
* DescribeTaskRecords请求参数结构体
|
|
9840
|
-
*/
|
|
9841
|
-
export interface DescribeTaskRecordsRequest {
|
|
9842
|
-
/**
|
|
9843
|
-
* 翻页偏移量。默认值为0
|
|
9844
|
-
*/
|
|
9845
|
-
Offset?: number;
|
|
9846
|
-
/**
|
|
9847
|
-
* 翻页查询单页数量。默认值为 20,最大值为 1000
|
|
9848
|
-
*/
|
|
9849
|
-
Limit?: number;
|
|
9850
|
-
/**
|
|
9851
|
-
* 模糊查询关键字,支持任务ID和任务名称。
|
|
9852
|
-
*/
|
|
9853
|
-
SearchWord?: string;
|
|
9854
|
-
/**
|
|
9855
|
-
* 任务启用状态。一共2种状态可选,ENABLED:启用,DISABLED:停用
|
|
9856
|
-
*/
|
|
9857
|
-
TaskState?: string;
|
|
9858
|
-
/**
|
|
9859
|
-
* 部署组ID。前往[应用管理](https://console.cloud.tencent.com/tsf/app?rid=1)点击应用ID进入应用部署列表页面获取部署组ID。
|
|
9860
|
-
*/
|
|
9861
|
-
GroupId?: string;
|
|
9218
|
+
CreateTime?: string;
|
|
9862
9219
|
/**
|
|
9863
|
-
*
|
|
9220
|
+
* 更新时间
|
|
9864
9221
|
*/
|
|
9865
|
-
|
|
9222
|
+
UpdatedTime?: string;
|
|
9223
|
+
}
|
|
9224
|
+
/**
|
|
9225
|
+
* CreateApiRateLimitRuleWithDetailResp返回参数结构体
|
|
9226
|
+
*/
|
|
9227
|
+
export interface CreateApiRateLimitRuleWithDetailRespResponse {
|
|
9866
9228
|
/**
|
|
9867
|
-
*
|
|
9229
|
+
* 创建的规则 ID
|
|
9868
9230
|
*/
|
|
9869
|
-
|
|
9231
|
+
Result?: ApiRateLimitRule;
|
|
9870
9232
|
/**
|
|
9871
|
-
*
|
|
9233
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
9872
9234
|
*/
|
|
9873
|
-
|
|
9235
|
+
RequestId?: string;
|
|
9874
9236
|
}
|
|
9875
9237
|
/**
|
|
9876
9238
|
* 自定义容忍调度规则列表
|
|
@@ -10000,15 +9362,6 @@ export interface DescribeUnitNamespacesRequest {
|
|
|
10000
9362
|
*/
|
|
10001
9363
|
Limit?: number;
|
|
10002
9364
|
}
|
|
10003
|
-
/**
|
|
10004
|
-
* DeleteTask请求参数结构体
|
|
10005
|
-
*/
|
|
10006
|
-
export interface DeleteTaskRequest {
|
|
10007
|
-
/**
|
|
10008
|
-
* 任务ID。在[任务管理](https://console.cloud.tencent.com/tsf/tct?rid=1)列表页第一列和任务基本信息页查看任务ID。
|
|
10009
|
-
*/
|
|
10010
|
-
TaskId: string;
|
|
10011
|
-
}
|
|
10012
9365
|
/**
|
|
10013
9366
|
* 健康检查参数
|
|
10014
9367
|
*/
|
|
@@ -10687,23 +10040,6 @@ export interface ApplicationAttribute {
|
|
|
10687
10040
|
*/
|
|
10688
10041
|
AbnormalCount?: string;
|
|
10689
10042
|
}
|
|
10690
|
-
/**
|
|
10691
|
-
* 工作流最近批次的状态
|
|
10692
|
-
*/
|
|
10693
|
-
export interface TaskFlowLastBatchState {
|
|
10694
|
-
/**
|
|
10695
|
-
* 批次ID
|
|
10696
|
-
*/
|
|
10697
|
-
FlowBatchId?: string;
|
|
10698
|
-
/**
|
|
10699
|
-
* 批次历史ID
|
|
10700
|
-
*/
|
|
10701
|
-
FlowBatchLogId?: string;
|
|
10702
|
-
/**
|
|
10703
|
-
* 状态,WAITING/SUCCESS/FAILED/RUNNING/TERMINATING
|
|
10704
|
-
*/
|
|
10705
|
-
State?: string;
|
|
10706
|
-
}
|
|
10707
10043
|
/**
|
|
10708
10044
|
* DeletePkgs返回参数结构体
|
|
10709
10045
|
*/
|
|
@@ -10894,13 +10230,13 @@ export interface DescribeInvocationMetricScatterPlotRequest {
|
|
|
10894
10230
|
Kind?: string;
|
|
10895
10231
|
}
|
|
10896
10232
|
/**
|
|
10897
|
-
*
|
|
10233
|
+
* DescribeLanes返回参数结构体
|
|
10898
10234
|
*/
|
|
10899
|
-
export interface
|
|
10235
|
+
export interface DescribeLanesResponse {
|
|
10900
10236
|
/**
|
|
10901
|
-
*
|
|
10237
|
+
* 泳道配置列表。
|
|
10902
10238
|
*/
|
|
10903
|
-
Result?:
|
|
10239
|
+
Result?: LaneInfos;
|
|
10904
10240
|
/**
|
|
10905
10241
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
10906
10242
|
*/
|
|
@@ -11053,19 +10389,6 @@ export interface VmGroupOther {
|
|
|
11053
10389
|
*/
|
|
11054
10390
|
HealthCheckSettings?: HealthCheckSettings;
|
|
11055
10391
|
}
|
|
11056
|
-
/**
|
|
11057
|
-
* DescribeTaskLastStatus返回参数结构体
|
|
11058
|
-
*/
|
|
11059
|
-
export interface DescribeTaskLastStatusResponse {
|
|
11060
|
-
/**
|
|
11061
|
-
* 任务上一次执行状态
|
|
11062
|
-
*/
|
|
11063
|
-
Result?: TaskLastExecuteStatus;
|
|
11064
|
-
/**
|
|
11065
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
11066
|
-
*/
|
|
11067
|
-
RequestId?: string;
|
|
11068
|
-
}
|
|
11069
10392
|
/**
|
|
11070
10393
|
* DescribePublicConfigs请求参数结构体
|
|
11071
10394
|
*/
|
|
@@ -11221,19 +10544,6 @@ export interface DescribeApplicationsRequest {
|
|
|
11221
10544
|
*/
|
|
11222
10545
|
MicroserviceTypeList?: Array<string>;
|
|
11223
10546
|
}
|
|
11224
|
-
/**
|
|
11225
|
-
* DescribeTaskDetail请求参数结构体
|
|
11226
|
-
*/
|
|
11227
|
-
export interface DescribeTaskDetailRequest {
|
|
11228
|
-
/**
|
|
11229
|
-
* 任务ID。在[任务管理](https://console.cloud.tencent.com/tsf/tct?rid=1)列表页第一列和任务基本信息页查看任务ID。
|
|
11230
|
-
*/
|
|
11231
|
-
TaskId: string;
|
|
11232
|
-
/**
|
|
11233
|
-
* 任务历史ID。查询任务列表 [DescribeTaskRecords](https://cloud.tencent.com/document/api/649/56136) 返回值字段 TaskLogId
|
|
11234
|
-
*/
|
|
11235
|
-
TaskLogId?: string;
|
|
11236
|
-
}
|
|
11237
10547
|
/**
|
|
11238
10548
|
* 多值数据
|
|
11239
10549
|
*/
|
|
@@ -11772,17 +11082,14 @@ export interface DescribeClusterInstancesResponse {
|
|
|
11772
11082
|
RequestId?: string;
|
|
11773
11083
|
}
|
|
11774
11084
|
/**
|
|
11775
|
-
*
|
|
11085
|
+
* 虚拟机实例相关的参数配置
|
|
11776
11086
|
*/
|
|
11777
|
-
export interface
|
|
11778
|
-
/**
|
|
11779
|
-
* 任务详情
|
|
11780
|
-
*/
|
|
11781
|
-
Result?: TaskRecord;
|
|
11087
|
+
export interface VmInstanceResourceConfig {
|
|
11782
11088
|
/**
|
|
11783
|
-
*
|
|
11089
|
+
* 实例导入方式,可多个,公有云为 ["R", "M"],独立版的取值仅有 "M" 脚本模式
|
|
11090
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11784
11091
|
*/
|
|
11785
|
-
|
|
11092
|
+
ImportMode?: Array<string>;
|
|
11786
11093
|
}
|
|
11787
11094
|
/**
|
|
11788
11095
|
* 空目录选项
|
|
@@ -12020,15 +11327,6 @@ export interface GroupPod {
|
|
|
12020
11327
|
*/
|
|
12021
11328
|
SpecTotalCount?: string;
|
|
12022
11329
|
}
|
|
12023
|
-
/**
|
|
12024
|
-
* EnableTaskFlow请求参数结构体
|
|
12025
|
-
*/
|
|
12026
|
-
export interface EnableTaskFlowRequest {
|
|
12027
|
-
/**
|
|
12028
|
-
* 工作流 ID。[工作流管理](https://console.cloud.tencent.com/tsf/tct?rid=1&tab=workflowManage)列表页查看工作流ID。
|
|
12029
|
-
*/
|
|
12030
|
-
FlowId: string;
|
|
12031
|
-
}
|
|
12032
11330
|
/**
|
|
12033
11331
|
* 实例相关的参数配置
|
|
12034
11332
|
*/
|
|
@@ -12261,17 +11559,21 @@ export interface DescribeApiGroupResponse {
|
|
|
12261
11559
|
RequestId?: string;
|
|
12262
11560
|
}
|
|
12263
11561
|
/**
|
|
12264
|
-
*
|
|
11562
|
+
* UpdateApiRateLimitRule请求参数结构体
|
|
12265
11563
|
*/
|
|
12266
|
-
export interface
|
|
11564
|
+
export interface UpdateApiRateLimitRuleRequest {
|
|
12267
11565
|
/**
|
|
12268
|
-
*
|
|
11566
|
+
* 限流规则ID
|
|
12269
11567
|
*/
|
|
12270
|
-
|
|
11568
|
+
RuleId: string;
|
|
12271
11569
|
/**
|
|
12272
|
-
*
|
|
11570
|
+
* 开启/禁用,enabled/disabled
|
|
12273
11571
|
*/
|
|
12274
|
-
|
|
11572
|
+
UsableStatus: string;
|
|
11573
|
+
/**
|
|
11574
|
+
* qps值,开启限流规则时,必填
|
|
11575
|
+
*/
|
|
11576
|
+
MaxQps?: number;
|
|
12275
11577
|
}
|
|
12276
11578
|
/**
|
|
12277
11579
|
* CreateLane请求参数结构体
|
|
@@ -12354,23 +11656,6 @@ export interface ServiceConfig {
|
|
|
12354
11656
|
*/
|
|
12355
11657
|
HealthCheck?: HealthCheckConfig;
|
|
12356
11658
|
}
|
|
12357
|
-
/**
|
|
12358
|
-
* RedoTaskExecute请求参数结构体
|
|
12359
|
-
*/
|
|
12360
|
-
export interface RedoTaskExecuteRequest {
|
|
12361
|
-
/**
|
|
12362
|
-
* 任务批次ID。在[任务管理](https://console.cloud.tencent.com/tsf/tct?rid=1)页面第一列点击任务ID进入任务详情,进入执行记录列表页,第一列内容即为任务批次ID。
|
|
12363
|
-
*/
|
|
12364
|
-
BatchId: string;
|
|
12365
|
-
/**
|
|
12366
|
-
* 任务执行ID。在[任务管理](https://console.cloud.tencent.com/tsf/tct?rid=1)页面第一列点击任务ID进入任务详情,进入执行记录页,点击批次ID进入执行详情列表页,第一列即为任务执行ID。
|
|
12367
|
-
*/
|
|
12368
|
-
ExecuteId: string;
|
|
12369
|
-
/**
|
|
12370
|
-
* 任务ID。在[任务管理](https://console.cloud.tencent.com/tsf/tct?rid=1)列表页查看任务ID。
|
|
12371
|
-
*/
|
|
12372
|
-
TaskId: string;
|
|
12373
|
-
}
|
|
12374
11659
|
/**
|
|
12375
11660
|
* DescribeApplications返回参数结构体
|
|
12376
11661
|
*/
|
|
@@ -12469,19 +11754,6 @@ export interface DescribeConfigRequest {
|
|
|
12469
11754
|
*/
|
|
12470
11755
|
ConfigId: string;
|
|
12471
11756
|
}
|
|
12472
|
-
/**
|
|
12473
|
-
* OperateApplicationTcrBinding返回参数结构体
|
|
12474
|
-
*/
|
|
12475
|
-
export interface OperateApplicationTcrBindingResponse {
|
|
12476
|
-
/**
|
|
12477
|
-
* 是否成功
|
|
12478
|
-
*/
|
|
12479
|
-
Result?: boolean;
|
|
12480
|
-
/**
|
|
12481
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
12482
|
-
*/
|
|
12483
|
-
RequestId?: string;
|
|
12484
|
-
}
|
|
12485
11757
|
/**
|
|
12486
11758
|
* DisableUnitRoute请求参数结构体
|
|
12487
11759
|
*/
|
|
@@ -12516,23 +11788,6 @@ export interface DescribeUnitRulesRequest {
|
|
|
12516
11788
|
*/
|
|
12517
11789
|
Limit?: number;
|
|
12518
11790
|
}
|
|
12519
|
-
/**
|
|
12520
|
-
* 指标监控数据曲线
|
|
12521
|
-
*/
|
|
12522
|
-
export interface MetricDataCurve {
|
|
12523
|
-
/**
|
|
12524
|
-
* 指标名称
|
|
12525
|
-
*/
|
|
12526
|
-
MetricName?: string;
|
|
12527
|
-
/**
|
|
12528
|
-
* 指标计算方式
|
|
12529
|
-
*/
|
|
12530
|
-
MetricFunction?: string;
|
|
12531
|
-
/**
|
|
12532
|
-
* 指标数据点集合
|
|
12533
|
-
*/
|
|
12534
|
-
MetricDataPoints?: Array<MetricDataPoint>;
|
|
12535
|
-
}
|
|
12536
11791
|
/**
|
|
12537
11792
|
* UpdateConfigTemplate请求参数结构体
|
|
12538
11793
|
*/
|
|
@@ -12781,19 +12036,6 @@ export interface BindApiGroupRequest {
|
|
|
12781
12036
|
*/
|
|
12782
12037
|
GroupGatewayList: Array<GatewayGroupIds>;
|
|
12783
12038
|
}
|
|
12784
|
-
/**
|
|
12785
|
-
* StopTaskBatch请求参数结构体
|
|
12786
|
-
*/
|
|
12787
|
-
export interface StopTaskBatchRequest {
|
|
12788
|
-
/**
|
|
12789
|
-
* 任务批次ID。在[任务管理](https://console.cloud.tencent.com/tsf/tct?rid=1)页面点击任务ID进入任务详情,进入执行记录列表页,第一列即为任务批次ID。
|
|
12790
|
-
*/
|
|
12791
|
-
BatchId: string;
|
|
12792
|
-
/**
|
|
12793
|
-
* 任务ID。在[任务管理](https://console.cloud.tencent.com/tsf/tct?rid=1)列表页面可以查看任务ID。
|
|
12794
|
-
*/
|
|
12795
|
-
TaskId?: string;
|
|
12796
|
-
}
|
|
12797
12039
|
/**
|
|
12798
12040
|
* DescribeUploadInfo请求参数结构体
|
|
12799
12041
|
*/
|
|
@@ -13012,13 +12254,17 @@ export interface ProgramItem {
|
|
|
13012
12254
|
ProgramId?: string;
|
|
13013
12255
|
}
|
|
13014
12256
|
/**
|
|
13015
|
-
*
|
|
12257
|
+
* OperateApplicationTcrBinding返回参数结构体
|
|
13016
12258
|
*/
|
|
13017
|
-
export interface
|
|
12259
|
+
export interface OperateApplicationTcrBindingResponse {
|
|
12260
|
+
/**
|
|
12261
|
+
* 是否成功
|
|
12262
|
+
*/
|
|
12263
|
+
Result?: boolean;
|
|
13018
12264
|
/**
|
|
13019
|
-
*
|
|
12265
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
13020
12266
|
*/
|
|
13021
|
-
|
|
12267
|
+
RequestId?: string;
|
|
13022
12268
|
}
|
|
13023
12269
|
/**
|
|
13024
12270
|
* DescribeLogCapacity返回参数结构体
|
|
@@ -13066,19 +12312,6 @@ export interface DescribePodInstancesRequest {
|
|
|
13066
12312
|
*/
|
|
13067
12313
|
TaskId?: string;
|
|
13068
12314
|
}
|
|
13069
|
-
/**
|
|
13070
|
-
* RedoTask返回参数结构体
|
|
13071
|
-
*/
|
|
13072
|
-
export interface RedoTaskResponse {
|
|
13073
|
-
/**
|
|
13074
|
-
* 操作成功任务批次ID。操作失败返回空字符串。
|
|
13075
|
-
*/
|
|
13076
|
-
Result?: string;
|
|
13077
|
-
/**
|
|
13078
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
13079
|
-
*/
|
|
13080
|
-
RequestId?: string;
|
|
13081
|
-
}
|
|
13082
12315
|
/**
|
|
13083
12316
|
* 描述投递配置项绑定的部署组
|
|
13084
12317
|
*/
|
|
@@ -13420,19 +12653,6 @@ export interface CreateConfigTemplateResponse {
|
|
|
13420
12653
|
*/
|
|
13421
12654
|
RequestId?: string;
|
|
13422
12655
|
}
|
|
13423
|
-
/**
|
|
13424
|
-
* ExecuteTask返回参数结构体
|
|
13425
|
-
*/
|
|
13426
|
-
export interface ExecuteTaskResponse {
|
|
13427
|
-
/**
|
|
13428
|
-
* 操作成功返回任务批次ID,操作失败返回空字符串。
|
|
13429
|
-
*/
|
|
13430
|
-
Result?: string;
|
|
13431
|
-
/**
|
|
13432
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
13433
|
-
*/
|
|
13434
|
-
RequestId?: string;
|
|
13435
|
-
}
|
|
13436
12656
|
/**
|
|
13437
12657
|
* ShrinkGroup返回参数结构体
|
|
13438
12658
|
*/
|
|
@@ -13809,28 +13029,6 @@ export interface DeleteContainerGroupRequest {
|
|
|
13809
13029
|
*/
|
|
13810
13030
|
GroupId: string;
|
|
13811
13031
|
}
|
|
13812
|
-
/**
|
|
13813
|
-
* 高级选项设置
|
|
13814
|
-
*/
|
|
13815
|
-
export interface AdvanceSettings {
|
|
13816
|
-
/**
|
|
13817
|
-
* 子任务单机并发数限制,默认值为2
|
|
13818
|
-
*/
|
|
13819
|
-
SubTaskConcurrency?: number;
|
|
13820
|
-
}
|
|
13821
|
-
/**
|
|
13822
|
-
* EnableTask返回参数结构体
|
|
13823
|
-
*/
|
|
13824
|
-
export interface EnableTaskResponse {
|
|
13825
|
-
/**
|
|
13826
|
-
* true:操作成功,false:操作失败
|
|
13827
|
-
*/
|
|
13828
|
-
Result?: boolean;
|
|
13829
|
-
/**
|
|
13830
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
13831
|
-
*/
|
|
13832
|
-
RequestId?: string;
|
|
13833
|
-
}
|
|
13834
13032
|
/**
|
|
13835
13033
|
* ReleaseConfig请求参数结构体
|
|
13836
13034
|
*/
|
|
@@ -14492,32 +13690,6 @@ export interface AddInstanceResult {
|
|
|
14492
13690
|
*/
|
|
14493
13691
|
FailedReasons?: Array<string>;
|
|
14494
13692
|
}
|
|
14495
|
-
/**
|
|
14496
|
-
* DescribeFlowLastBatchState返回参数结构体
|
|
14497
|
-
*/
|
|
14498
|
-
export interface DescribeFlowLastBatchStateResponse {
|
|
14499
|
-
/**
|
|
14500
|
-
* 工作流批次最新状态
|
|
14501
|
-
*/
|
|
14502
|
-
Result?: TaskFlowLastBatchState;
|
|
14503
|
-
/**
|
|
14504
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
14505
|
-
*/
|
|
14506
|
-
RequestId?: string;
|
|
14507
|
-
}
|
|
14508
|
-
/**
|
|
14509
|
-
* StopTaskExecute返回参数结构体
|
|
14510
|
-
*/
|
|
14511
|
-
export interface StopTaskExecuteResponse {
|
|
14512
|
-
/**
|
|
14513
|
-
* 返回 true 或 false。true:操作成功,false:操作失败
|
|
14514
|
-
*/
|
|
14515
|
-
Result?: boolean;
|
|
14516
|
-
/**
|
|
14517
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
14518
|
-
*/
|
|
14519
|
-
RequestId?: string;
|
|
14520
|
-
}
|
|
14521
13693
|
/**
|
|
14522
13694
|
* 单元化规则翻页对象
|
|
14523
13695
|
*/
|
|
@@ -15462,19 +14634,6 @@ export interface SearchStdoutLogRequest {
|
|
|
15462
14634
|
*/
|
|
15463
14635
|
SearchAfter?: Array<string>;
|
|
15464
14636
|
}
|
|
15465
|
-
/**
|
|
15466
|
-
* RedoTaskBatch返回参数结构体
|
|
15467
|
-
*/
|
|
15468
|
-
export interface RedoTaskBatchResponse {
|
|
15469
|
-
/**
|
|
15470
|
-
* 批次流水ID
|
|
15471
|
-
*/
|
|
15472
|
-
Result?: string;
|
|
15473
|
-
/**
|
|
15474
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
15475
|
-
*/
|
|
15476
|
-
RequestId?: string;
|
|
15477
|
-
}
|
|
15478
14637
|
/**
|
|
15479
14638
|
* DescribeResourceConfig
|
|
15480
14639
|
*/
|
|
@@ -15510,27 +14669,6 @@ export interface DescribeResourceConfigResultV2 {
|
|
|
15510
14669
|
*/
|
|
15511
14670
|
Package: PackageConfig;
|
|
15512
14671
|
}
|
|
15513
|
-
/**
|
|
15514
|
-
* ModifyGroup请求参数结构体
|
|
15515
|
-
*/
|
|
15516
|
-
export interface ModifyGroupRequest {
|
|
15517
|
-
/**
|
|
15518
|
-
* 部署组ID,可通过调用[DescribeContainerGroups](https://cloud.tencent.com/document/api/649/36068)查询已创建的部署组列表或登录控制台进行查看;也可以调用[CreateContainGroup](https://cloud.tencent.com/document/api/649/36075)创建新的部署组。
|
|
15519
|
-
*/
|
|
15520
|
-
GroupId: string;
|
|
15521
|
-
/**
|
|
15522
|
-
* 部署组名称
|
|
15523
|
-
*/
|
|
15524
|
-
GroupName?: string;
|
|
15525
|
-
/**
|
|
15526
|
-
* 部署组描述
|
|
15527
|
-
*/
|
|
15528
|
-
GroupDesc?: string;
|
|
15529
|
-
/**
|
|
15530
|
-
* 部署组备注
|
|
15531
|
-
*/
|
|
15532
|
-
Alias?: string;
|
|
15533
|
-
}
|
|
15534
14672
|
/**
|
|
15535
14673
|
* DescribeMicroservice返回参数结构体
|
|
15536
14674
|
*/
|
|
@@ -15891,72 +15029,6 @@ export interface ReleasePublicConfigRequest {
|
|
|
15891
15029
|
*/
|
|
15892
15030
|
ReleaseDesc?: string;
|
|
15893
15031
|
}
|
|
15894
|
-
/**
|
|
15895
|
-
* 工作流图中的边
|
|
15896
|
-
*/
|
|
15897
|
-
export interface TaskFlowEdge {
|
|
15898
|
-
/**
|
|
15899
|
-
* 节点 ID,节点类型为任务时为任务ID,节点类型为逻辑节点"且"时为 AND,为逻辑节点"或"时为 OR,节点类型为头节点时为字符串"head"
|
|
15900
|
-
*/
|
|
15901
|
-
NodeId?: string;
|
|
15902
|
-
/**
|
|
15903
|
-
* 子节点 ID,节点类型为任务时为任务ID,节点类型为逻辑节点"且"时为 AND,为逻辑节点"或"时为 OR
|
|
15904
|
-
*/
|
|
15905
|
-
ChildNodeId?: string;
|
|
15906
|
-
/**
|
|
15907
|
-
* 是否核心任务,Y/N
|
|
15908
|
-
*/
|
|
15909
|
-
CoreNode?: string;
|
|
15910
|
-
/**
|
|
15911
|
-
* 边类型,上下游任务依赖触发关系。一共2个值,Y:成功触发,N:失败触发
|
|
15912
|
-
*/
|
|
15913
|
-
EdgeType?: string;
|
|
15914
|
-
/**
|
|
15915
|
-
* 任务节点类型,一共有4种类型,AND:逻辑节点且,OR:逻辑节点或,TASK:任务节点,START:头节点
|
|
15916
|
-
*/
|
|
15917
|
-
NodeType?: string;
|
|
15918
|
-
/**
|
|
15919
|
-
* X轴坐标位置
|
|
15920
|
-
*/
|
|
15921
|
-
PositionX?: string;
|
|
15922
|
-
/**
|
|
15923
|
-
* Y轴坐标位置
|
|
15924
|
-
*/
|
|
15925
|
-
PositionY?: string;
|
|
15926
|
-
/**
|
|
15927
|
-
* 图 ID,新建工作流时自动生成,不需要填写,查看工作流图时后端返回
|
|
15928
|
-
*/
|
|
15929
|
-
GraphId?: string;
|
|
15930
|
-
/**
|
|
15931
|
-
* 工作流 ID,新建工作流时自动生成,不需要填写,查看工作流图时后端返回
|
|
15932
|
-
*/
|
|
15933
|
-
FlowId?: string;
|
|
15934
|
-
/**
|
|
15935
|
-
* 节点名称
|
|
15936
|
-
*/
|
|
15937
|
-
NodeName?: string;
|
|
15938
|
-
/**
|
|
15939
|
-
* 任务ID,新建工作流时不需要填写,查看工作流图时后端返回
|
|
15940
|
-
*/
|
|
15941
|
-
TaskId?: string;
|
|
15942
|
-
/**
|
|
15943
|
-
* 任务历史ID,新建工作流时不需要填写,查看工作流图时后端返回
|
|
15944
|
-
*/
|
|
15945
|
-
TaskLogId?: string;
|
|
15946
|
-
}
|
|
15947
|
-
/**
|
|
15948
|
-
* RedoTaskFlowBatch返回参数结构体
|
|
15949
|
-
*/
|
|
15950
|
-
export interface RedoTaskFlowBatchResponse {
|
|
15951
|
-
/**
|
|
15952
|
-
* 工作流批次历史 ID。操作失败时不返回该字段,返回错误码。
|
|
15953
|
-
*/
|
|
15954
|
-
Result?: string;
|
|
15955
|
-
/**
|
|
15956
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
15957
|
-
*/
|
|
15958
|
-
RequestId?: string;
|
|
15959
|
-
}
|
|
15960
15032
|
/**
|
|
15961
15033
|
* 泳道部署组
|
|
15962
15034
|
*/
|