@alicloud/dataworks-public20240518 8.4.0 → 8.4.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 +5 -2
- package/dist/client.js.map +1 -1
- package/dist/models/ListWorkflowInstancesRequest.d.ts +5 -0
- package/dist/models/ListWorkflowInstancesRequest.js +2 -0
- package/dist/models/ListWorkflowInstancesRequest.js.map +1 -1
- package/dist/models/ListWorkflowInstancesShrinkRequest.d.ts +5 -0
- package/dist/models/ListWorkflowInstancesShrinkRequest.js +2 -0
- package/dist/models/ListWorkflowInstancesShrinkRequest.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +6 -2
- package/src/models/ListWorkflowInstancesRequest.ts +7 -0
- package/src/models/ListWorkflowInstancesShrinkRequest.ts +7 -0
package/dist/client.d.ts
CHANGED
|
@@ -65,7 +65,7 @@ export default class Client extends OpenApi {
|
|
|
65
65
|
*/
|
|
66
66
|
associateProjectToImage(request: $_model.AssociateProjectToImageRequest): Promise<$_model.AssociateProjectToImageResponse>;
|
|
67
67
|
/**
|
|
68
|
-
*
|
|
68
|
+
* Bind a resource group to a workspace.
|
|
69
69
|
*
|
|
70
70
|
* @remarks
|
|
71
71
|
* 1. You can use this API operation only in DataWorks Basic Edition or an advanced edition.
|
|
@@ -78,7 +78,7 @@ export default class Client extends OpenApi {
|
|
|
78
78
|
*/
|
|
79
79
|
associateProjectToResourceGroupWithOptions(request: $_model.AssociateProjectToResourceGroupRequest, runtime: $dara.RuntimeOptions): Promise<$_model.AssociateProjectToResourceGroupResponse>;
|
|
80
80
|
/**
|
|
81
|
-
*
|
|
81
|
+
* Bind a resource group to a workspace.
|
|
82
82
|
*
|
|
83
83
|
* @remarks
|
|
84
84
|
* 1. You can use this API operation only in DataWorks Basic Edition or an advanced edition.
|
package/dist/client.js
CHANGED
|
@@ -351,7 +351,7 @@ class Client extends openapi_core_1.default {
|
|
|
351
351
|
return await this.associateProjectToImageWithOptions(request, runtime);
|
|
352
352
|
}
|
|
353
353
|
/**
|
|
354
|
-
*
|
|
354
|
+
* Bind a resource group to a workspace.
|
|
355
355
|
*
|
|
356
356
|
* @remarks
|
|
357
357
|
* 1. You can use this API operation only in DataWorks Basic Edition or an advanced edition.
|
|
@@ -388,7 +388,7 @@ class Client extends openapi_core_1.default {
|
|
|
388
388
|
return $dara.cast(await this.callApi(params, req, runtime), new $_model.AssociateProjectToResourceGroupResponse({}));
|
|
389
389
|
}
|
|
390
390
|
/**
|
|
391
|
-
*
|
|
391
|
+
* Bind a resource group to a workspace.
|
|
392
392
|
*
|
|
393
393
|
* @remarks
|
|
394
394
|
* 1. You can use this API operation only in DataWorks Basic Edition or an advanced edition.
|
|
@@ -11452,6 +11452,9 @@ class Client extends openapi_core_1.default {
|
|
|
11452
11452
|
if (!$dara.isNull(request.bizDate)) {
|
|
11453
11453
|
body["BizDate"] = request.bizDate;
|
|
11454
11454
|
}
|
|
11455
|
+
if (!$dara.isNull(request.envType)) {
|
|
11456
|
+
body["EnvType"] = request.envType;
|
|
11457
|
+
}
|
|
11455
11458
|
if (!$dara.isNull(request.filter)) {
|
|
11456
11459
|
body["Filter"] = request.filter;
|
|
11457
11460
|
}
|