tencentcloud-sdk-nodejs-wedata 4.0.961 → 4.0.963
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 +1 -1
- package/products.md +59 -60
- package/src/services/wedata/v20210820/wedata_client.ts +37 -7
- package/src/services/wedata/v20210820/wedata_models.ts +455 -118
- package/tencentcloud/services/wedata/v20210820/wedata_client.d.ts +9 -1
- package/tencentcloud/services/wedata/v20210820/wedata_client.js +12 -0
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +445 -118
|
@@ -1223,6 +1223,31 @@ export interface JudgeResourceFileResponse {
|
|
|
1223
1223
|
*/
|
|
1224
1224
|
RequestId?: string;
|
|
1225
1225
|
}
|
|
1226
|
+
/**
|
|
1227
|
+
* 获取数据服务API的发布态信息列表过滤条件
|
|
1228
|
+
*/
|
|
1229
|
+
export interface DataServicePublishedApiListFilter {
|
|
1230
|
+
/**
|
|
1231
|
+
* 请求路径关键词筛选
|
|
1232
|
+
*/
|
|
1233
|
+
PathUrl?: string;
|
|
1234
|
+
/**
|
|
1235
|
+
* Api名称关键词筛选
|
|
1236
|
+
*/
|
|
1237
|
+
Keyword?: string;
|
|
1238
|
+
/**
|
|
1239
|
+
* Api认证方式筛选 0:免认证 1:应用认证
|
|
1240
|
+
*/
|
|
1241
|
+
AuthTypes?: Array<number | bigint>;
|
|
1242
|
+
/**
|
|
1243
|
+
* 服务Api状态 1:已上线 3:已下线
|
|
1244
|
+
*/
|
|
1245
|
+
ApiStatus?: Array<number | bigint>;
|
|
1246
|
+
/**
|
|
1247
|
+
* API配置方式 0:向导、1、脚本、2、注册Api
|
|
1248
|
+
*/
|
|
1249
|
+
ConfigTypes?: Array<number | bigint>;
|
|
1250
|
+
}
|
|
1226
1251
|
/**
|
|
1227
1252
|
* SubmitTask请求参数结构体
|
|
1228
1253
|
*/
|
|
@@ -1657,18 +1682,19 @@ export interface DescribeFieldBasicInfoResponse {
|
|
|
1657
1682
|
RequestId?: string;
|
|
1658
1683
|
}
|
|
1659
1684
|
/**
|
|
1660
|
-
*
|
|
1685
|
+
* ColumnItem
|
|
1661
1686
|
*/
|
|
1662
|
-
export interface
|
|
1687
|
+
export interface ColumnItem {
|
|
1663
1688
|
/**
|
|
1664
|
-
*
|
|
1689
|
+
* ColumnName1
|
|
1665
1690
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1666
1691
|
*/
|
|
1667
|
-
|
|
1692
|
+
ColumnName?: string;
|
|
1668
1693
|
/**
|
|
1669
|
-
*
|
|
1694
|
+
* ColumnName1
|
|
1695
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1670
1696
|
*/
|
|
1671
|
-
|
|
1697
|
+
ColumnRef?: string;
|
|
1672
1698
|
}
|
|
1673
1699
|
/**
|
|
1674
1700
|
* 规则组执行结果
|
|
@@ -2060,21 +2086,54 @@ export interface DescribeInstanceByCycleResponse {
|
|
|
2060
2086
|
RequestId?: string;
|
|
2061
2087
|
}
|
|
2062
2088
|
/**
|
|
2063
|
-
*
|
|
2089
|
+
* 数据服务入参
|
|
2064
2090
|
*/
|
|
2065
|
-
export interface
|
|
2091
|
+
export interface DataServiceRequestParam {
|
|
2066
2092
|
/**
|
|
2067
|
-
*
|
|
2093
|
+
* 参数名称
|
|
2094
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2068
2095
|
*/
|
|
2069
|
-
|
|
2096
|
+
ParamName: string;
|
|
2070
2097
|
/**
|
|
2071
|
-
*
|
|
2098
|
+
* 绑定字段
|
|
2099
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2072
2100
|
*/
|
|
2073
|
-
|
|
2101
|
+
BindField: string;
|
|
2074
2102
|
/**
|
|
2075
|
-
*
|
|
2103
|
+
* 参数类型
|
|
2104
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2076
2105
|
*/
|
|
2077
|
-
|
|
2106
|
+
ParamType: string;
|
|
2107
|
+
/**
|
|
2108
|
+
* 参数位置
|
|
2109
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2110
|
+
*/
|
|
2111
|
+
ParamPosition: string;
|
|
2112
|
+
/**
|
|
2113
|
+
* 操作符
|
|
2114
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2115
|
+
*/
|
|
2116
|
+
Operator: string;
|
|
2117
|
+
/**
|
|
2118
|
+
* 是否为空
|
|
2119
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2120
|
+
*/
|
|
2121
|
+
NonEmpty: number;
|
|
2122
|
+
/**
|
|
2123
|
+
* 默认值
|
|
2124
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2125
|
+
*/
|
|
2126
|
+
DefaultValue?: string;
|
|
2127
|
+
/**
|
|
2128
|
+
* 示例值
|
|
2129
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2130
|
+
*/
|
|
2131
|
+
ExampleValue?: string;
|
|
2132
|
+
/**
|
|
2133
|
+
* 参数描述
|
|
2134
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2135
|
+
*/
|
|
2136
|
+
Description?: string;
|
|
2078
2137
|
}
|
|
2079
2138
|
/**
|
|
2080
2139
|
* DescribeDataCheckStat请求参数结构体
|
|
@@ -4268,6 +4327,31 @@ export interface DescribeSchedulerTaskTypeCntResponse {
|
|
|
4268
4327
|
*/
|
|
4269
4328
|
RequestId?: string;
|
|
4270
4329
|
}
|
|
4330
|
+
/**
|
|
4331
|
+
* 数据质量生产调度任务业务实体
|
|
4332
|
+
*/
|
|
4333
|
+
export interface ProdSchedulerTask {
|
|
4334
|
+
/**
|
|
4335
|
+
* 生产调度任务工作流ID
|
|
4336
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4337
|
+
*/
|
|
4338
|
+
WorkflowId: string;
|
|
4339
|
+
/**
|
|
4340
|
+
* 生产调度任务Id
|
|
4341
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4342
|
+
*/
|
|
4343
|
+
TaskId?: string;
|
|
4344
|
+
/**
|
|
4345
|
+
* 生产调度任务名称
|
|
4346
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4347
|
+
*/
|
|
4348
|
+
TaskName?: string;
|
|
4349
|
+
/**
|
|
4350
|
+
* 生产调度任务任务类型
|
|
4351
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4352
|
+
*/
|
|
4353
|
+
CycleType?: number;
|
|
4354
|
+
}
|
|
4271
4355
|
/**
|
|
4272
4356
|
* DeleteCustomFunction返回参数结构体
|
|
4273
4357
|
*/
|
|
@@ -6743,24 +6827,29 @@ export interface FindAllFolderResponse {
|
|
|
6743
6827
|
RequestId?: string;
|
|
6744
6828
|
}
|
|
6745
6829
|
/**
|
|
6746
|
-
*
|
|
6830
|
+
* DescribeDataServicePublishedApiList请求参数结构体
|
|
6747
6831
|
*/
|
|
6748
|
-
export interface
|
|
6832
|
+
export interface DescribeDataServicePublishedApiListRequest {
|
|
6749
6833
|
/**
|
|
6750
|
-
*
|
|
6751
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6834
|
+
* 页码
|
|
6752
6835
|
*/
|
|
6753
|
-
|
|
6836
|
+
PageNumber: number;
|
|
6754
6837
|
/**
|
|
6755
|
-
*
|
|
6756
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6838
|
+
* 每页大小
|
|
6757
6839
|
*/
|
|
6758
|
-
|
|
6840
|
+
PageSize: number;
|
|
6759
6841
|
/**
|
|
6760
|
-
*
|
|
6761
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6842
|
+
* 项目ID
|
|
6762
6843
|
*/
|
|
6763
|
-
|
|
6844
|
+
ProjectId: string;
|
|
6845
|
+
/**
|
|
6846
|
+
* 查询参数
|
|
6847
|
+
*/
|
|
6848
|
+
Filters?: DataServicePublishedApiListFilter;
|
|
6849
|
+
/**
|
|
6850
|
+
* 排序配置
|
|
6851
|
+
*/
|
|
6852
|
+
OrderFields?: Array<DataServiceRequestListOrder>;
|
|
6764
6853
|
}
|
|
6765
6854
|
/**
|
|
6766
6855
|
* 资源管理目录树节点
|
|
@@ -6984,6 +7073,36 @@ export interface KillOpsMakePlanInstancesResponse {
|
|
|
6984
7073
|
*/
|
|
6985
7074
|
RequestId?: string;
|
|
6986
7075
|
}
|
|
7076
|
+
/**
|
|
7077
|
+
* 数据服务入参
|
|
7078
|
+
*/
|
|
7079
|
+
export interface DataServiceResponseParam {
|
|
7080
|
+
/**
|
|
7081
|
+
* 参数名称
|
|
7082
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7083
|
+
*/
|
|
7084
|
+
ParamName: string;
|
|
7085
|
+
/**
|
|
7086
|
+
* 绑定字段
|
|
7087
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7088
|
+
*/
|
|
7089
|
+
BindField: string;
|
|
7090
|
+
/**
|
|
7091
|
+
* 参数类型
|
|
7092
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7093
|
+
*/
|
|
7094
|
+
ParamType: string;
|
|
7095
|
+
/**
|
|
7096
|
+
* 示例值
|
|
7097
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7098
|
+
*/
|
|
7099
|
+
ExampleValue: string;
|
|
7100
|
+
/**
|
|
7101
|
+
* 参数描述
|
|
7102
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7103
|
+
*/
|
|
7104
|
+
Description: string;
|
|
7105
|
+
}
|
|
6987
7106
|
/**
|
|
6988
7107
|
* TaskLog请求参数结构体
|
|
6989
7108
|
*/
|
|
@@ -7043,6 +7162,106 @@ export interface OpsTaskLinkInfoDto {
|
|
|
7043
7162
|
*/
|
|
7044
7163
|
LinkStyle?: string;
|
|
7045
7164
|
}
|
|
7165
|
+
/**
|
|
7166
|
+
* 开发空间-脚本相关响应
|
|
7167
|
+
*/
|
|
7168
|
+
export interface ScriptInfoResponse {
|
|
7169
|
+
/**
|
|
7170
|
+
* 资源id
|
|
7171
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7172
|
+
*/
|
|
7173
|
+
ResourceId?: string;
|
|
7174
|
+
/**
|
|
7175
|
+
* 脚本名称
|
|
7176
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7177
|
+
*/
|
|
7178
|
+
FileName?: string;
|
|
7179
|
+
/**
|
|
7180
|
+
* 文件扩展名类型
|
|
7181
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7182
|
+
*/
|
|
7183
|
+
FileExtensionType?: string;
|
|
7184
|
+
/**
|
|
7185
|
+
* 文件类型
|
|
7186
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7187
|
+
*/
|
|
7188
|
+
Type?: string;
|
|
7189
|
+
/**
|
|
7190
|
+
* md5值
|
|
7191
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7192
|
+
*/
|
|
7193
|
+
Md5Value?: string;
|
|
7194
|
+
/**
|
|
7195
|
+
* 创建时间
|
|
7196
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7197
|
+
*/
|
|
7198
|
+
CreateTime?: string;
|
|
7199
|
+
/**
|
|
7200
|
+
* 更新时间
|
|
7201
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7202
|
+
*/
|
|
7203
|
+
UpdateTime?: string;
|
|
7204
|
+
/**
|
|
7205
|
+
* 文件大小
|
|
7206
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7207
|
+
*/
|
|
7208
|
+
Size?: number;
|
|
7209
|
+
/**
|
|
7210
|
+
* 本地路径
|
|
7211
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7212
|
+
*/
|
|
7213
|
+
LocalPath?: string;
|
|
7214
|
+
/**
|
|
7215
|
+
* 远程路径
|
|
7216
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7217
|
+
*/
|
|
7218
|
+
RemotePath?: string;
|
|
7219
|
+
/**
|
|
7220
|
+
* 用户名称
|
|
7221
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7222
|
+
*/
|
|
7223
|
+
OwnerName?: string;
|
|
7224
|
+
/**
|
|
7225
|
+
* 用户id
|
|
7226
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7227
|
+
*/
|
|
7228
|
+
Owner?: string;
|
|
7229
|
+
/**
|
|
7230
|
+
* 路径深度
|
|
7231
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7232
|
+
*/
|
|
7233
|
+
PathDepth?: number;
|
|
7234
|
+
/**
|
|
7235
|
+
* 项目id
|
|
7236
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7237
|
+
*/
|
|
7238
|
+
ProjectId?: string;
|
|
7239
|
+
/**
|
|
7240
|
+
* 附加信息
|
|
7241
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7242
|
+
*/
|
|
7243
|
+
ExtraInfo?: string;
|
|
7244
|
+
/**
|
|
7245
|
+
* 本地临时文件路径
|
|
7246
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7247
|
+
*/
|
|
7248
|
+
LocalTempPath?: string;
|
|
7249
|
+
/**
|
|
7250
|
+
* 本地压缩文件路径
|
|
7251
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7252
|
+
*/
|
|
7253
|
+
ZipPath?: string;
|
|
7254
|
+
/**
|
|
7255
|
+
* cos桶名
|
|
7256
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7257
|
+
*/
|
|
7258
|
+
Bucket?: string;
|
|
7259
|
+
/**
|
|
7260
|
+
* cos地区
|
|
7261
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7262
|
+
*/
|
|
7263
|
+
Region?: string;
|
|
7264
|
+
}
|
|
7046
7265
|
/**
|
|
7047
7266
|
* DescribeIntegrationStatisticsTaskStatus请求参数结构体
|
|
7048
7267
|
*/
|
|
@@ -7403,6 +7622,26 @@ export interface DeleteTaskDsResponse {
|
|
|
7403
7622
|
*/
|
|
7404
7623
|
RequestId?: string;
|
|
7405
7624
|
}
|
|
7625
|
+
/**
|
|
7626
|
+
* 表生命周期相关信息
|
|
7627
|
+
*/
|
|
7628
|
+
export interface LifecycleInfo {
|
|
7629
|
+
/**
|
|
7630
|
+
* 生命周期值
|
|
7631
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7632
|
+
*/
|
|
7633
|
+
Lifecycle?: number;
|
|
7634
|
+
/**
|
|
7635
|
+
* 列名
|
|
7636
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7637
|
+
*/
|
|
7638
|
+
Columns?: Array<string>;
|
|
7639
|
+
/**
|
|
7640
|
+
* 日期格式
|
|
7641
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7642
|
+
*/
|
|
7643
|
+
DateFormat?: Array<string>;
|
|
7644
|
+
}
|
|
7406
7645
|
/**
|
|
7407
7646
|
* DescribeAllByFolderNew返回参数结构体
|
|
7408
7647
|
*/
|
|
@@ -7443,6 +7682,57 @@ export interface DescribeDsParentFolderTreeRequest {
|
|
|
7443
7682
|
*/
|
|
7444
7683
|
DisplayType?: string;
|
|
7445
7684
|
}
|
|
7685
|
+
/**
|
|
7686
|
+
* 获取数据服务API的发布态信息列表响应内容
|
|
7687
|
+
*/
|
|
7688
|
+
export interface DescribeDataServicePublishedApiListResp {
|
|
7689
|
+
/**
|
|
7690
|
+
* 服务id
|
|
7691
|
+
*/
|
|
7692
|
+
Id?: string;
|
|
7693
|
+
/**
|
|
7694
|
+
* 服务Api名称
|
|
7695
|
+
*/
|
|
7696
|
+
ApiName?: string;
|
|
7697
|
+
/**
|
|
7698
|
+
* 所属目录名称
|
|
7699
|
+
*/
|
|
7700
|
+
ApiFolderName?: string;
|
|
7701
|
+
/**
|
|
7702
|
+
* 服务Api标签名称集合
|
|
7703
|
+
*/
|
|
7704
|
+
ApiTagNames?: string;
|
|
7705
|
+
/**
|
|
7706
|
+
* 服务负责人
|
|
7707
|
+
*/
|
|
7708
|
+
OwnerName?: string;
|
|
7709
|
+
/**
|
|
7710
|
+
* 服务创建时间
|
|
7711
|
+
*/
|
|
7712
|
+
CreateTime?: string;
|
|
7713
|
+
/**
|
|
7714
|
+
* Api的id
|
|
7715
|
+
*/
|
|
7716
|
+
ApiId?: string;
|
|
7717
|
+
/**
|
|
7718
|
+
* 服务Api认证方式 0:免认证 1:应用认证
|
|
7719
|
+
*/
|
|
7720
|
+
AuthType?: number;
|
|
7721
|
+
/**
|
|
7722
|
+
* 服务Api状态 0:创建 1:已上线 2:已删除 3:已下线
|
|
7723
|
+
*/
|
|
7724
|
+
ApiStatus?: number;
|
|
7725
|
+
/**
|
|
7726
|
+
* 配置方式 0:向导、1、脚本、2、注册Api
|
|
7727
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7728
|
+
*/
|
|
7729
|
+
ConfigType?: number;
|
|
7730
|
+
/**
|
|
7731
|
+
* 更新时间
|
|
7732
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7733
|
+
*/
|
|
7734
|
+
ModifyTime?: string;
|
|
7735
|
+
}
|
|
7446
7736
|
/**
|
|
7447
7737
|
* KillScheduleInstances返回参数结构体
|
|
7448
7738
|
*/
|
|
@@ -9659,6 +9949,20 @@ export interface DescribeAlarmReceiverRequest {
|
|
|
9659
9949
|
*/
|
|
9660
9950
|
MonitorType?: number;
|
|
9661
9951
|
}
|
|
9952
|
+
/**
|
|
9953
|
+
* DescribeStatisticInstanceStatusTrendOps返回参数结构体
|
|
9954
|
+
*/
|
|
9955
|
+
export interface DescribeStatisticInstanceStatusTrendOpsResponse {
|
|
9956
|
+
/**
|
|
9957
|
+
* 实例状态统计结果
|
|
9958
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9959
|
+
*/
|
|
9960
|
+
Data?: Array<InstanceStatisticInfo>;
|
|
9961
|
+
/**
|
|
9962
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
9963
|
+
*/
|
|
9964
|
+
RequestId?: string;
|
|
9965
|
+
}
|
|
9662
9966
|
/**
|
|
9663
9967
|
* 集成离线任务实例信息
|
|
9664
9968
|
*/
|
|
@@ -12488,29 +12792,17 @@ export interface DescribeTopTableStatResponse {
|
|
|
12488
12792
|
RequestId?: string;
|
|
12489
12793
|
}
|
|
12490
12794
|
/**
|
|
12491
|
-
*
|
|
12795
|
+
* DescribeDataServicePublishedApiDetail请求参数结构体
|
|
12492
12796
|
*/
|
|
12493
|
-
export interface
|
|
12797
|
+
export interface DescribeDataServicePublishedApiDetailRequest {
|
|
12494
12798
|
/**
|
|
12495
|
-
*
|
|
12496
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
12497
|
-
*/
|
|
12498
|
-
WorkflowId: string;
|
|
12499
|
-
/**
|
|
12500
|
-
* 生产调度任务Id
|
|
12501
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
12799
|
+
* 服务Id
|
|
12502
12800
|
*/
|
|
12503
|
-
|
|
12504
|
-
/**
|
|
12505
|
-
* 生产调度任务名称
|
|
12506
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
12507
|
-
*/
|
|
12508
|
-
TaskName?: string;
|
|
12801
|
+
Id: string;
|
|
12509
12802
|
/**
|
|
12510
|
-
*
|
|
12511
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
12803
|
+
* 项目ID
|
|
12512
12804
|
*/
|
|
12513
|
-
|
|
12805
|
+
ProjectId: string;
|
|
12514
12806
|
}
|
|
12515
12807
|
/**
|
|
12516
12808
|
* 工作流调度详情
|
|
@@ -12722,6 +13014,23 @@ export interface AdhocRecord {
|
|
|
12722
13014
|
*/
|
|
12723
13015
|
InstanceId?: string;
|
|
12724
13016
|
}
|
|
13017
|
+
/**
|
|
13018
|
+
* DescribeDataServicePublishedApiList返回参数结构体
|
|
13019
|
+
*/
|
|
13020
|
+
export interface DescribeDataServicePublishedApiListResponse {
|
|
13021
|
+
/**
|
|
13022
|
+
* 总条数
|
|
13023
|
+
*/
|
|
13024
|
+
TotalCount?: number;
|
|
13025
|
+
/**
|
|
13026
|
+
* 服务列表
|
|
13027
|
+
*/
|
|
13028
|
+
DataSet?: Array<DescribeDataServicePublishedApiListResp>;
|
|
13029
|
+
/**
|
|
13030
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
13031
|
+
*/
|
|
13032
|
+
RequestId?: string;
|
|
13033
|
+
}
|
|
12725
13034
|
/**
|
|
12726
13035
|
* TriggerDsEvent返回参数结构体
|
|
12727
13036
|
*/
|
|
@@ -12903,29 +13212,21 @@ export interface SimpleTaskInfo {
|
|
|
12903
13212
|
TaskName: string;
|
|
12904
13213
|
}
|
|
12905
13214
|
/**
|
|
12906
|
-
*
|
|
13215
|
+
* DescribeIntegrationStatisticsRecordsTrend请求参数结构体
|
|
12907
13216
|
*/
|
|
12908
|
-
export interface
|
|
12909
|
-
/**
|
|
12910
|
-
* 1
|
|
12911
|
-
*/
|
|
12912
|
-
TaskType?: number;
|
|
12913
|
-
/**
|
|
12914
|
-
* Y
|
|
12915
|
-
*/
|
|
12916
|
-
TypeName?: string;
|
|
13217
|
+
export interface DescribeIntegrationStatisticsRecordsTrendRequest {
|
|
12917
13218
|
/**
|
|
12918
|
-
*
|
|
13219
|
+
* 任务类型(实时:201,离线:202)
|
|
12919
13220
|
*/
|
|
12920
|
-
|
|
13221
|
+
TaskType: number;
|
|
12921
13222
|
/**
|
|
12922
|
-
*
|
|
13223
|
+
* 项目id
|
|
12923
13224
|
*/
|
|
12924
|
-
|
|
13225
|
+
ProjectId: string;
|
|
12925
13226
|
/**
|
|
12926
|
-
*
|
|
13227
|
+
* 查询日期
|
|
12927
13228
|
*/
|
|
12928
|
-
|
|
13229
|
+
QueryDate?: string;
|
|
12929
13230
|
}
|
|
12930
13231
|
/**
|
|
12931
13232
|
* DescribeRealTimeTaskInstanceNodeInfo请求参数结构体
|
|
@@ -14174,6 +14475,31 @@ export interface TaskAlarmInfo {
|
|
|
14174
14475
|
*/
|
|
14175
14476
|
DingDingWebHooks?: string;
|
|
14176
14477
|
}
|
|
14478
|
+
/**
|
|
14479
|
+
* DescribeSchedulerTaskCntByStatus请求参数结构体
|
|
14480
|
+
*/
|
|
14481
|
+
export interface DescribeSchedulerTaskCntByStatusRequest {
|
|
14482
|
+
/**
|
|
14483
|
+
* 1
|
|
14484
|
+
*/
|
|
14485
|
+
TaskType?: number;
|
|
14486
|
+
/**
|
|
14487
|
+
* Y
|
|
14488
|
+
*/
|
|
14489
|
+
TypeName?: string;
|
|
14490
|
+
/**
|
|
14491
|
+
* 111
|
|
14492
|
+
*/
|
|
14493
|
+
ProjectId?: string;
|
|
14494
|
+
/**
|
|
14495
|
+
* 1
|
|
14496
|
+
*/
|
|
14497
|
+
InCharge?: string;
|
|
14498
|
+
/**
|
|
14499
|
+
* 工作流ID
|
|
14500
|
+
*/
|
|
14501
|
+
WorkflowId?: string;
|
|
14502
|
+
}
|
|
14177
14503
|
/**
|
|
14178
14504
|
* ModifyApproveStatus请求参数结构体
|
|
14179
14505
|
*/
|
|
@@ -14615,19 +14941,17 @@ export interface AlarmIndicatorInfo {
|
|
|
14615
14941
|
Threshold?: number;
|
|
14616
14942
|
}
|
|
14617
14943
|
/**
|
|
14618
|
-
*
|
|
14944
|
+
* DescribeDataServicePublishedApiDetail返回参数结构体
|
|
14619
14945
|
*/
|
|
14620
|
-
export interface
|
|
14946
|
+
export interface DescribeDataServicePublishedApiDetailResponse {
|
|
14621
14947
|
/**
|
|
14622
|
-
*
|
|
14623
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
14948
|
+
* 服务详情
|
|
14624
14949
|
*/
|
|
14625
|
-
|
|
14950
|
+
Data?: DescribeDataServicePublishedApiDetailResp;
|
|
14626
14951
|
/**
|
|
14627
|
-
*
|
|
14628
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
14952
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
14629
14953
|
*/
|
|
14630
|
-
|
|
14954
|
+
RequestId?: string;
|
|
14631
14955
|
}
|
|
14632
14956
|
/**
|
|
14633
14957
|
* 表的元数据信息
|
|
@@ -19222,6 +19546,22 @@ export interface DescribeSchedulerRunTimeInstanceCntByStatusRequest {
|
|
|
19222
19546
|
*/
|
|
19223
19547
|
SortType?: string;
|
|
19224
19548
|
}
|
|
19549
|
+
/**
|
|
19550
|
+
* 数据服务通用排序参数
|
|
19551
|
+
*/
|
|
19552
|
+
export interface DataServiceRequestListOrder {
|
|
19553
|
+
/**
|
|
19554
|
+
* 排序参数名称
|
|
19555
|
+
取值:
|
|
19556
|
+
CreateTime 表示按照创建时间排序
|
|
19557
|
+
ModifyTime 表示按照更新时间排序
|
|
19558
|
+
*/
|
|
19559
|
+
Name?: string;
|
|
19560
|
+
/**
|
|
19561
|
+
* 排序参数顺序
|
|
19562
|
+
*/
|
|
19563
|
+
Direction?: string;
|
|
19564
|
+
}
|
|
19225
19565
|
/**
|
|
19226
19566
|
* map
|
|
19227
19567
|
*/
|
|
@@ -19542,104 +19882,91 @@ export interface DescribeExecStrategyRequest {
|
|
|
19542
19882
|
ProjectId?: string;
|
|
19543
19883
|
}
|
|
19544
19884
|
/**
|
|
19545
|
-
*
|
|
19885
|
+
* 查询数据服务API的发布态信息详情出参
|
|
19546
19886
|
*/
|
|
19547
|
-
export interface
|
|
19887
|
+
export interface DescribeDataServicePublishedApiDetailResp {
|
|
19548
19888
|
/**
|
|
19549
|
-
*
|
|
19550
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
19889
|
+
* 服务Api名称
|
|
19551
19890
|
*/
|
|
19552
|
-
|
|
19891
|
+
ApiName?: string;
|
|
19553
19892
|
/**
|
|
19554
|
-
*
|
|
19555
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
19893
|
+
* 服务请求Path
|
|
19556
19894
|
*/
|
|
19557
|
-
|
|
19895
|
+
PathUrl?: string;
|
|
19558
19896
|
/**
|
|
19559
|
-
*
|
|
19560
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
19897
|
+
* 服务责任人名称
|
|
19561
19898
|
*/
|
|
19562
|
-
|
|
19899
|
+
OwnerName?: string;
|
|
19563
19900
|
/**
|
|
19564
|
-
*
|
|
19565
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
19901
|
+
* 服务请求方式
|
|
19566
19902
|
*/
|
|
19567
|
-
|
|
19903
|
+
RequestType?: string;
|
|
19568
19904
|
/**
|
|
19569
|
-
*
|
|
19905
|
+
* 服务标签名称集合
|
|
19570
19906
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
19571
19907
|
*/
|
|
19572
|
-
|
|
19908
|
+
ApiTagNames?: string;
|
|
19573
19909
|
/**
|
|
19574
|
-
*
|
|
19910
|
+
* 服务描述
|
|
19575
19911
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
19576
19912
|
*/
|
|
19577
|
-
|
|
19913
|
+
ApiDescription?: string;
|
|
19578
19914
|
/**
|
|
19579
|
-
*
|
|
19915
|
+
* 服务请求返回示例
|
|
19580
19916
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
19581
19917
|
*/
|
|
19582
|
-
|
|
19918
|
+
RequestExample?: string;
|
|
19583
19919
|
/**
|
|
19584
|
-
*
|
|
19920
|
+
* 服务请求成功返回示例
|
|
19585
19921
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
19586
19922
|
*/
|
|
19587
|
-
|
|
19923
|
+
RequestSuccess?: string;
|
|
19588
19924
|
/**
|
|
19589
|
-
*
|
|
19925
|
+
* 服务请求失败返回示例
|
|
19590
19926
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
19591
19927
|
*/
|
|
19592
|
-
|
|
19928
|
+
RequestError?: string;
|
|
19593
19929
|
/**
|
|
19594
|
-
*
|
|
19930
|
+
* 服务请求参数列表
|
|
19595
19931
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
19596
19932
|
*/
|
|
19597
|
-
|
|
19933
|
+
RequestParam?: Array<DataServiceRequestParam>;
|
|
19598
19934
|
/**
|
|
19599
|
-
*
|
|
19935
|
+
* 服务响应参数列表
|
|
19600
19936
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
19601
19937
|
*/
|
|
19602
|
-
|
|
19938
|
+
ResponseParam?: Array<DataServiceResponseParam>;
|
|
19603
19939
|
/**
|
|
19604
|
-
*
|
|
19605
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
19940
|
+
* 最大qps
|
|
19606
19941
|
*/
|
|
19607
|
-
|
|
19942
|
+
MaxAllowQps?: number;
|
|
19608
19943
|
/**
|
|
19609
|
-
*
|
|
19610
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
19944
|
+
* 最大记录数
|
|
19611
19945
|
*/
|
|
19612
|
-
|
|
19946
|
+
MaxAllowPageSize?: number;
|
|
19613
19947
|
/**
|
|
19614
|
-
*
|
|
19615
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
19948
|
+
* 超时时间,单位ms
|
|
19616
19949
|
*/
|
|
19617
|
-
|
|
19950
|
+
TimeoutPeriod?: number;
|
|
19618
19951
|
/**
|
|
19619
|
-
*
|
|
19952
|
+
* ApiId
|
|
19620
19953
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
19621
19954
|
*/
|
|
19622
|
-
|
|
19955
|
+
ApiId?: string;
|
|
19623
19956
|
/**
|
|
19624
|
-
*
|
|
19625
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
19957
|
+
* 0:免认证 1:应用认证
|
|
19626
19958
|
*/
|
|
19627
|
-
|
|
19959
|
+
AuthType?: number;
|
|
19628
19960
|
/**
|
|
19629
|
-
*
|
|
19961
|
+
* 请求地址
|
|
19630
19962
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
19631
19963
|
*/
|
|
19632
|
-
|
|
19964
|
+
GatewayApiUrl?: string;
|
|
19633
19965
|
/**
|
|
19634
|
-
*
|
|
19966
|
+
* 服务Api状态 1:已上线 3:已下线
|
|
19635
19967
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
19636
19968
|
*/
|
|
19637
|
-
|
|
19638
|
-
/**
|
|
19639
|
-
* cos地区
|
|
19640
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
19641
|
-
*/
|
|
19642
|
-
Region?: string;
|
|
19969
|
+
ApiStatus?: number;
|
|
19643
19970
|
}
|
|
19644
19971
|
/**
|
|
19645
19972
|
* CreateHiveTable请求参数结构体
|