tencentcloud-sdk-nodejs-tsf 4.1.213 → 4.1.229
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
|
@@ -571,6 +571,19 @@ export interface DescribeGroupReleaseRequest {
|
|
|
571
571
|
*/
|
|
572
572
|
GroupId: string;
|
|
573
573
|
}
|
|
574
|
+
/**
|
|
575
|
+
* 模糊查询数据集信息指定字段和值
|
|
576
|
+
*/
|
|
577
|
+
export interface SearchFiltersProgram {
|
|
578
|
+
/**
|
|
579
|
+
* <p>数据集ID</p>
|
|
580
|
+
*/
|
|
581
|
+
ProgramId?: string;
|
|
582
|
+
/**
|
|
583
|
+
* <p>数据集名称</p>
|
|
584
|
+
*/
|
|
585
|
+
ProgramName?: string;
|
|
586
|
+
}
|
|
574
587
|
/**
|
|
575
588
|
* DescribeConfigTemplate返回参数结构体
|
|
576
589
|
*/
|
|
@@ -3150,17 +3163,21 @@ export interface TaskLastExecuteStatus {
|
|
|
3150
3163
|
*/
|
|
3151
3164
|
export interface DescribeProgramsRequest {
|
|
3152
3165
|
/**
|
|
3153
|
-
*
|
|
3166
|
+
* <p>模糊查询数据集ID,数据集名称,不传入时查询全量</p>
|
|
3154
3167
|
*/
|
|
3155
3168
|
SearchWord?: string;
|
|
3156
3169
|
/**
|
|
3157
|
-
*
|
|
3170
|
+
* <p>每页数量,默认值20</p>
|
|
3158
3171
|
*/
|
|
3159
3172
|
Limit?: number;
|
|
3160
3173
|
/**
|
|
3161
|
-
*
|
|
3174
|
+
* <p>起始偏移量,默认值0</p>
|
|
3162
3175
|
*/
|
|
3163
3176
|
Offset?: number;
|
|
3177
|
+
/**
|
|
3178
|
+
* <p>模糊查询,传递模糊查询字段和对应的值</p>
|
|
3179
|
+
*/
|
|
3180
|
+
SearchFilters?: SearchFiltersProgram;
|
|
3164
3181
|
}
|
|
3165
3182
|
/**
|
|
3166
3183
|
* DescribePublicConfig请求参数结构体
|
|
@@ -12949,7 +12966,7 @@ export interface TsfPageBusinessLogConfig {
|
|
|
12949
12966
|
*/
|
|
12950
12967
|
export interface DescribeProgramsResponse {
|
|
12951
12968
|
/**
|
|
12952
|
-
*
|
|
12969
|
+
* <p>数据集列表</p>
|
|
12953
12970
|
*/
|
|
12954
12971
|
Result?: PagedProgram;
|
|
12955
12972
|
/**
|