@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 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 request - ListDataQualityScanRunsRequest
2796
+ * @param tmpReq - ListDataQualityScanRunsRequest
2797
2797
  * @param runtime - runtime options for this request RuntimeOptions
2798
2798
  * @returns ListDataQualityScanRunsResponse
2799
2799
  */
2800
- listDataQualityScanRunsWithOptions(request: $_model.ListDataQualityScanRunsRequest, runtime: $dara.RuntimeOptions): Promise<$_model.ListDataQualityScanRunsResponse>;
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 request - ListDataQualityScanRunsRequest
7755
+ * @param tmpReq - ListDataQualityScanRunsRequest
7756
7756
  * @param runtime - runtime options for this request RuntimeOptions
7757
7757
  * @returns ListDataQualityScanRunsResponse
7758
7758
  */
7759
- async listDataQualityScanRunsWithOptions(request, runtime) {
7760
- request.validate();
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
  }