@alicloud/dataworks-public20240518 7.7.0 → 7.7.1
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/dist/client.d.ts +2 -2
- package/dist/client.js +11 -3
- package/dist/client.js.map +1 -1
- package/dist/models/ListDataQualityScanRunsRequest.d.ts +3 -0
- package/dist/models/ListDataQualityScanRunsRequest.js +5 -0
- package/dist/models/ListDataQualityScanRunsRequest.js.map +1 -1
- package/dist/models/ListDataQualityScanRunsShrinkRequest.d.ts +89 -0
- package/dist/models/ListDataQualityScanRunsShrinkRequest.js +74 -0
- package/dist/models/ListDataQualityScanRunsShrinkRequest.js.map +1 -0
- package/dist/models/model.d.ts +1 -0
- package/dist/models/model.js +9 -7
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +13 -3
- package/src/models/ListDataQualityScanRunsRequest.ts +6 -0
- package/src/models/ListDataQualityScanRunsShrinkRequest.ts +118 -0
- package/src/models/model.ts +1 -0
package/dist/client.d.ts
CHANGED
|
@@ -2793,11 +2793,11 @@ export default class Client extends OpenApi {
|
|
|
2793
2793
|
* @remarks
|
|
2794
2794
|
* This API operation is available for all DataWorks editions.
|
|
2795
2795
|
*
|
|
2796
|
-
* @param
|
|
2796
|
+
* @param tmpReq - ListDataQualityScanRunsRequest
|
|
2797
2797
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
2798
2798
|
* @returns ListDataQualityScanRunsResponse
|
|
2799
2799
|
*/
|
|
2800
|
-
listDataQualityScanRunsWithOptions(
|
|
2800
|
+
listDataQualityScanRunsWithOptions(tmpReq: $_model.ListDataQualityScanRunsRequest, runtime: $dara.RuntimeOptions): Promise<$_model.ListDataQualityScanRunsResponse>;
|
|
2801
2801
|
/**
|
|
2802
2802
|
* Queries the execution records of data quality scans in a project.
|
|
2803
2803
|
*
|
package/dist/client.js
CHANGED
|
@@ -7752,12 +7752,17 @@ class Client extends openapi_core_1.default {
|
|
|
7752
7752
|
* @remarks
|
|
7753
7753
|
* This API operation is available for all DataWorks editions.
|
|
7754
7754
|
*
|
|
7755
|
-
* @param
|
|
7755
|
+
* @param tmpReq - ListDataQualityScanRunsRequest
|
|
7756
7756
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
7757
7757
|
* @returns ListDataQualityScanRunsResponse
|
|
7758
7758
|
*/
|
|
7759
|
-
async listDataQualityScanRunsWithOptions(
|
|
7760
|
-
|
|
7759
|
+
async listDataQualityScanRunsWithOptions(tmpReq, runtime) {
|
|
7760
|
+
tmpReq.validate();
|
|
7761
|
+
let request = new $_model.ListDataQualityScanRunsShrinkRequest({});
|
|
7762
|
+
openapi_core_2.OpenApiUtil.convert(tmpReq, request);
|
|
7763
|
+
if (!$dara.isNull(tmpReq.filter)) {
|
|
7764
|
+
request.filterShrink = openapi_core_2.OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.filter, "Filter", "json");
|
|
7765
|
+
}
|
|
7761
7766
|
let query = {};
|
|
7762
7767
|
if (!$dara.isNull(request.createTimeFrom)) {
|
|
7763
7768
|
query["CreateTimeFrom"] = request.createTimeFrom;
|
|
@@ -7768,6 +7773,9 @@ class Client extends openapi_core_1.default {
|
|
|
7768
7773
|
if (!$dara.isNull(request.dataQualityScanId)) {
|
|
7769
7774
|
query["DataQualityScanId"] = request.dataQualityScanId;
|
|
7770
7775
|
}
|
|
7776
|
+
if (!$dara.isNull(request.filterShrink)) {
|
|
7777
|
+
query["Filter"] = request.filterShrink;
|
|
7778
|
+
}
|
|
7771
7779
|
if (!$dara.isNull(request.pageNumber)) {
|
|
7772
7780
|
query["PageNumber"] = request.pageNumber;
|
|
7773
7781
|
}
|