@alicloud/dataworks-public20240518 8.8.2 → 8.8.3
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 +104 -104
- package/dist/client.js +107 -104
- package/dist/client.js.map +1 -1
- package/dist/models/ApplyResourceAccessPermissionRequest.d.ts +35 -20
- package/dist/models/ApplyResourceAccessPermissionRequest.js.map +1 -1
- package/dist/models/ApplyResourceAccessPermissionResponseBody.d.ts +1 -1
- package/dist/models/ApplyResourceAccessPermissionShrinkRequest.d.ts +3 -3
- package/dist/models/GetApplicationContentsRequest.d.ts +1 -1
- package/dist/models/GetApplicationContentsResponseBody.d.ts +77 -55
- package/dist/models/GetApplicationContentsResponseBody.js.map +1 -1
- package/dist/models/ListMyApplicationsRequest.d.ts +40 -23
- package/dist/models/ListMyApplicationsRequest.js.map +1 -1
- package/dist/models/ListMyApplicationsResponseBody.d.ts +51 -77
- package/dist/models/ListMyApplicationsResponseBody.js.map +1 -1
- package/dist/models/ListMyApplicationsShrinkRequest.d.ts +27 -20
- package/dist/models/ListMyApplicationsShrinkRequest.js.map +1 -1
- package/dist/models/ListMyRelatedApprovalsRequest.d.ts +58 -48
- package/dist/models/ListMyRelatedApprovalsRequest.js.map +1 -1
- package/dist/models/ListMyRelatedApprovalsResponseBody.d.ts +53 -77
- package/dist/models/ListMyRelatedApprovalsResponseBody.js.map +1 -1
- package/dist/models/ListMyRelatedApprovalsShrinkRequest.d.ts +36 -24
- package/dist/models/ListMyRelatedApprovalsShrinkRequest.js.map +1 -1
- package/dist/models/ListPendingApprovalsRequest.d.ts +42 -14
- package/dist/models/ListPendingApprovalsRequest.js.map +1 -1
- package/dist/models/ListPendingApprovalsResponseBody.d.ts +60 -85
- package/dist/models/ListPendingApprovalsResponseBody.js.map +1 -1
- package/dist/models/ListPendingApprovalsShrinkRequest.d.ts +27 -9
- package/dist/models/ListPendingApprovalsShrinkRequest.js.map +1 -1
- package/dist/models/RerunTaskInstancesRequest.d.ts +3 -2
- package/dist/models/RerunTaskInstancesRequest.js +2 -0
- package/dist/models/RerunTaskInstancesRequest.js.map +1 -1
- package/dist/models/RerunTaskInstancesResponseBody.d.ts +2 -2
- package/dist/models/RerunTaskInstancesShrinkRequest.d.ts +3 -2
- package/dist/models/RerunTaskInstancesShrinkRequest.js +2 -0
- package/dist/models/RerunTaskInstancesShrinkRequest.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +108 -104
- package/src/models/ApplyResourceAccessPermissionRequest.ts +35 -20
- package/src/models/ApplyResourceAccessPermissionResponseBody.ts +1 -1
- package/src/models/ApplyResourceAccessPermissionShrinkRequest.ts +3 -3
- package/src/models/GetApplicationContentsRequest.ts +1 -1
- package/src/models/GetApplicationContentsResponseBody.ts +77 -55
- package/src/models/ListMyApplicationsRequest.ts +40 -23
- package/src/models/ListMyApplicationsResponseBody.ts +51 -77
- package/src/models/ListMyApplicationsShrinkRequest.ts +27 -20
- package/src/models/ListMyRelatedApprovalsRequest.ts +58 -48
- package/src/models/ListMyRelatedApprovalsResponseBody.ts +53 -77
- package/src/models/ListMyRelatedApprovalsShrinkRequest.ts +36 -24
- package/src/models/ListPendingApprovalsRequest.ts +42 -14
- package/src/models/ListPendingApprovalsResponseBody.ts +60 -85
- package/src/models/ListPendingApprovalsShrinkRequest.ts +27 -9
- package/src/models/RerunTaskInstancesRequest.ts +5 -2
- package/src/models/RerunTaskInstancesResponseBody.ts +2 -2
- package/src/models/RerunTaskInstancesShrinkRequest.ts +5 -2
package/dist/client.js
CHANGED
|
@@ -319,19 +319,19 @@ class Client extends openapi_core_1.default {
|
|
|
319
319
|
return await this.addEntityIntoMetaCollectionWithOptions(request, runtime);
|
|
320
320
|
}
|
|
321
321
|
/**
|
|
322
|
-
* Submits
|
|
322
|
+
* Submits an application for access permissions on a specific resource.
|
|
323
323
|
*
|
|
324
324
|
* @remarks
|
|
325
|
-
* ## Request
|
|
326
|
-
* - **Reason**: The reason for the
|
|
327
|
-
* - **ApplyContents**:
|
|
328
|
-
* - **Resource**: The resource
|
|
329
|
-
* - **Grantee**: The
|
|
330
|
-
* - **AccessTypes**:
|
|
331
|
-
* - **ExpirationTime**: The permission expiration time,
|
|
332
|
-
* - **AuthMethod**:
|
|
333
|
-
* - **ClientToken**:
|
|
334
|
-
* Ensure
|
|
325
|
+
* ## Request Description
|
|
326
|
+
* - **Reason**: The reason for the application. This parameter is required.
|
|
327
|
+
* - **ApplyContents**: Contains multiple resource permission application contents, each including the resource description (Resource), grantee description (Grantee), permission types (AccessTypes), and permission expiration time (ExpirationTime). The maximum limit per request is 400 entries.
|
|
328
|
+
* - **Resource**: The resource description. You need to specify the ResourceSchema.name and version that the resource parsing depends on, as well as the resource metadata MetaData.
|
|
329
|
+
* - **Grantee**: The grantee description. You need to specify the grantee type (PrincipalType) and the principal ID (PrincipalId).
|
|
330
|
+
* - **AccessTypes**: The list of permission types. Multiple permission combinations are supported.
|
|
331
|
+
* - **ExpirationTime**: The permission expiration time, provided as a milliseconds timestamp.
|
|
332
|
+
* - **AuthMethod**: An optional parameter that specifies the authorization method. The system uses the built-in default authorization method if not specified.
|
|
333
|
+
* - **ClientToken**: The client token used to prevent duplicate requests. This parameter is optional.
|
|
334
|
+
* Ensure all required fields are filled in correctly and comply with the corresponding constraints. For example, `DefVersion` and `MetaData` in `Resource` should match the selected `DefSchema`.
|
|
335
335
|
*
|
|
336
336
|
* @param tmpReq - ApplyResourceAccessPermissionRequest
|
|
337
337
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -371,19 +371,19 @@ class Client extends openapi_core_1.default {
|
|
|
371
371
|
return $dara.cast(await this.callApi(params, req, runtime), new $_model.ApplyResourceAccessPermissionResponse({}));
|
|
372
372
|
}
|
|
373
373
|
/**
|
|
374
|
-
* Submits
|
|
374
|
+
* Submits an application for access permissions on a specific resource.
|
|
375
375
|
*
|
|
376
376
|
* @remarks
|
|
377
|
-
* ## Request
|
|
378
|
-
* - **Reason**: The reason for the
|
|
379
|
-
* - **ApplyContents**:
|
|
380
|
-
* - **Resource**: The resource
|
|
381
|
-
* - **Grantee**: The
|
|
382
|
-
* - **AccessTypes**:
|
|
383
|
-
* - **ExpirationTime**: The permission expiration time,
|
|
384
|
-
* - **AuthMethod**:
|
|
385
|
-
* - **ClientToken**:
|
|
386
|
-
* Ensure
|
|
377
|
+
* ## Request Description
|
|
378
|
+
* - **Reason**: The reason for the application. This parameter is required.
|
|
379
|
+
* - **ApplyContents**: Contains multiple resource permission application contents, each including the resource description (Resource), grantee description (Grantee), permission types (AccessTypes), and permission expiration time (ExpirationTime). The maximum limit per request is 400 entries.
|
|
380
|
+
* - **Resource**: The resource description. You need to specify the ResourceSchema.name and version that the resource parsing depends on, as well as the resource metadata MetaData.
|
|
381
|
+
* - **Grantee**: The grantee description. You need to specify the grantee type (PrincipalType) and the principal ID (PrincipalId).
|
|
382
|
+
* - **AccessTypes**: The list of permission types. Multiple permission combinations are supported.
|
|
383
|
+
* - **ExpirationTime**: The permission expiration time, provided as a milliseconds timestamp.
|
|
384
|
+
* - **AuthMethod**: An optional parameter that specifies the authorization method. The system uses the built-in default authorization method if not specified.
|
|
385
|
+
* - **ClientToken**: The client token used to prevent duplicate requests. This parameter is optional.
|
|
386
|
+
* Ensure all required fields are filled in correctly and comply with the corresponding constraints. For example, `DefVersion` and `MetaData` in `Resource` should match the selected `DefSchema`.
|
|
387
387
|
*
|
|
388
388
|
* @param request - ApplyResourceAccessPermissionRequest
|
|
389
389
|
* @returns ApplyResourceAccessPermissionResponse
|
|
@@ -6963,14 +6963,14 @@ class Client extends openapi_core_1.default {
|
|
|
6963
6963
|
return await this.getAlertRuleWithOptions(request, runtime);
|
|
6964
6964
|
}
|
|
6965
6965
|
/**
|
|
6966
|
-
*
|
|
6966
|
+
* Queries the content of resource permission applications under the specified process instance ID.
|
|
6967
6967
|
*
|
|
6968
6968
|
* @remarks
|
|
6969
|
-
* ## Request
|
|
6970
|
-
* - This API
|
|
6971
|
-
* - A valid `ProcessInstanceId`
|
|
6972
|
-
* - The response includes basic
|
|
6973
|
-
* - Each
|
|
6969
|
+
* ## Request Description
|
|
6970
|
+
* - This API is used to query the details of resource permission applications based on the provided `ProcessInstanceId`.
|
|
6971
|
+
* - A valid `ProcessInstanceId` parameter must be provided in the request.
|
|
6972
|
+
* - The response includes the basic information, status, and the list of specific application contents.
|
|
6973
|
+
* - Each application content includes detailed resource information, the grantee, the requested operation permissions, and more.
|
|
6974
6974
|
*
|
|
6975
6975
|
* @param request - GetApplicationContentsRequest
|
|
6976
6976
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -6999,14 +6999,14 @@ class Client extends openapi_core_1.default {
|
|
|
6999
6999
|
return $dara.cast(await this.callApi(params, req, runtime), new $_model.GetApplicationContentsResponse({}));
|
|
7000
7000
|
}
|
|
7001
7001
|
/**
|
|
7002
|
-
*
|
|
7002
|
+
* Queries the content of resource permission applications under the specified process instance ID.
|
|
7003
7003
|
*
|
|
7004
7004
|
* @remarks
|
|
7005
|
-
* ## Request
|
|
7006
|
-
* - This API
|
|
7007
|
-
* - A valid `ProcessInstanceId`
|
|
7008
|
-
* - The response includes basic
|
|
7009
|
-
* - Each
|
|
7005
|
+
* ## Request Description
|
|
7006
|
+
* - This API is used to query the details of resource permission applications based on the provided `ProcessInstanceId`.
|
|
7007
|
+
* - A valid `ProcessInstanceId` parameter must be provided in the request.
|
|
7008
|
+
* - The response includes the basic information, status, and the list of specific application contents.
|
|
7009
|
+
* - Each application content includes detailed resource information, the grantee, the requested operation permissions, and more.
|
|
7010
7010
|
*
|
|
7011
7011
|
* @param request - GetApplicationContentsRequest
|
|
7012
7012
|
* @returns GetApplicationContentsResponse
|
|
@@ -12680,16 +12680,16 @@ class Client extends openapi_core_1.default {
|
|
|
12680
12680
|
return await this.listMetaEntityDefsWithOptions(request, runtime);
|
|
12681
12681
|
}
|
|
12682
12682
|
/**
|
|
12683
|
-
*
|
|
12683
|
+
* Queries all resource access permission application orders initiated by the current user.
|
|
12684
12684
|
*
|
|
12685
12685
|
* @remarks
|
|
12686
|
-
* ## Request
|
|
12687
|
-
* - This
|
|
12688
|
-
* -
|
|
12689
|
-
* -
|
|
12690
|
-
* -
|
|
12691
|
-
* -
|
|
12692
|
-
* -
|
|
12686
|
+
* ## Request description
|
|
12687
|
+
* - This API supports paginated queries, controlled by the `NextToken` and `PageSize` parameters.
|
|
12688
|
+
* - `DefSchema` is a required parameter that specifies the resource type.
|
|
12689
|
+
* - The `ResourceType` list can contain multiple resource types for more precise filtering of application orders.
|
|
12690
|
+
* - You can set `StartTime` and `EndTime` to limit the time range of the query.
|
|
12691
|
+
* - `Statuses` allows you to filter application orders by specific statuses, such as pending approval and authorized.
|
|
12692
|
+
* - If you need to filter by specific resources or authorization targets, you can provide detailed information through the `Resource` and `Grantee` fields.
|
|
12693
12693
|
*
|
|
12694
12694
|
* @param tmpReq - ListMyApplicationsRequest
|
|
12695
12695
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -12750,16 +12750,16 @@ class Client extends openapi_core_1.default {
|
|
|
12750
12750
|
return $dara.cast(await this.callApi(params, req, runtime), new $_model.ListMyApplicationsResponse({}));
|
|
12751
12751
|
}
|
|
12752
12752
|
/**
|
|
12753
|
-
*
|
|
12753
|
+
* Queries all resource access permission application orders initiated by the current user.
|
|
12754
12754
|
*
|
|
12755
12755
|
* @remarks
|
|
12756
|
-
* ## Request
|
|
12757
|
-
* - This
|
|
12758
|
-
* -
|
|
12759
|
-
* -
|
|
12760
|
-
* -
|
|
12761
|
-
* -
|
|
12762
|
-
* -
|
|
12756
|
+
* ## Request description
|
|
12757
|
+
* - This API supports paginated queries, controlled by the `NextToken` and `PageSize` parameters.
|
|
12758
|
+
* - `DefSchema` is a required parameter that specifies the resource type.
|
|
12759
|
+
* - The `ResourceType` list can contain multiple resource types for more precise filtering of application orders.
|
|
12760
|
+
* - You can set `StartTime` and `EndTime` to limit the time range of the query.
|
|
12761
|
+
* - `Statuses` allows you to filter application orders by specific statuses, such as pending approval and authorized.
|
|
12762
|
+
* - If you need to filter by specific resources or authorization targets, you can provide detailed information through the `Resource` and `Grantee` fields.
|
|
12763
12763
|
*
|
|
12764
12764
|
* @param request - ListMyApplicationsRequest
|
|
12765
12765
|
* @returns ListMyApplicationsResponse
|
|
@@ -12769,15 +12769,15 @@ class Client extends openapi_core_1.default {
|
|
|
12769
12769
|
return await this.listMyApplicationsWithOptions(request, runtime);
|
|
12770
12770
|
}
|
|
12771
12771
|
/**
|
|
12772
|
-
*
|
|
12772
|
+
* Query all permission application orders where the current user is an approver or stakeholder.
|
|
12773
12773
|
*
|
|
12774
12774
|
* @remarks
|
|
12775
|
-
* ## Request
|
|
12776
|
-
* - This API
|
|
12777
|
-
* -
|
|
12778
|
-
* -
|
|
12779
|
-
* -
|
|
12780
|
-
* - `DefSchema` and `ResourceType` are required
|
|
12775
|
+
* ## Request Description
|
|
12776
|
+
* - This API is used to retrieve all permission application orders where the current user is an approver, including pending and processed application orders.
|
|
12777
|
+
* - You can use the `Statuses` parameter to filter application orders by specific status.
|
|
12778
|
+
* - `NextToken` is used for paginated requests. It can be omitted or set to `null` for the first request. For subsequent requests, pass the `NextToken` value from the previous response.
|
|
12779
|
+
* - `PageSize` defaults to 10, with a maximum of 200.
|
|
12780
|
+
* - `DefSchema` and `ResourceType` are required fields. Other parameters can be filled in as needed.
|
|
12781
12781
|
*
|
|
12782
12782
|
* @param tmpReq - ListMyRelatedApprovalsRequest
|
|
12783
12783
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -12850,15 +12850,15 @@ class Client extends openapi_core_1.default {
|
|
|
12850
12850
|
return $dara.cast(await this.callApi(params, req, runtime), new $_model.ListMyRelatedApprovalsResponse({}));
|
|
12851
12851
|
}
|
|
12852
12852
|
/**
|
|
12853
|
-
*
|
|
12853
|
+
* Query all permission application orders where the current user is an approver or stakeholder.
|
|
12854
12854
|
*
|
|
12855
12855
|
* @remarks
|
|
12856
|
-
* ## Request
|
|
12857
|
-
* - This API
|
|
12858
|
-
* -
|
|
12859
|
-
* -
|
|
12860
|
-
* -
|
|
12861
|
-
* - `DefSchema` and `ResourceType` are required
|
|
12856
|
+
* ## Request Description
|
|
12857
|
+
* - This API is used to retrieve all permission application orders where the current user is an approver, including pending and processed application orders.
|
|
12858
|
+
* - You can use the `Statuses` parameter to filter application orders by specific status.
|
|
12859
|
+
* - `NextToken` is used for paginated requests. It can be omitted or set to `null` for the first request. For subsequent requests, pass the `NextToken` value from the previous response.
|
|
12860
|
+
* - `PageSize` defaults to 10, with a maximum of 200.
|
|
12861
|
+
* - `DefSchema` and `ResourceType` are required fields. Other parameters can be filled in as needed.
|
|
12862
12862
|
*
|
|
12863
12863
|
* @param request - ListMyRelatedApprovalsRequest
|
|
12864
12864
|
* @returns ListMyRelatedApprovalsResponse
|
|
@@ -13157,27 +13157,27 @@ class Client extends openapi_core_1.default {
|
|
|
13157
13157
|
return await this.listPartitionsWithOptions(request, runtime);
|
|
13158
13158
|
}
|
|
13159
13159
|
/**
|
|
13160
|
-
* Retrieves pending permission
|
|
13160
|
+
* Retrieves the list of pending permission request orders for which the current user is the approver.
|
|
13161
13161
|
*
|
|
13162
13162
|
* @remarks
|
|
13163
|
-
* ## Request
|
|
13164
|
-
* This API
|
|
13165
|
-
* - **ResourceType**:
|
|
13166
|
-
* - **Resource**:
|
|
13167
|
-
* - **StartTime and EndTime**:
|
|
13168
|
-
* - **Statuses**:
|
|
13169
|
-
* - **Grantee**: Filters
|
|
13170
|
-
* - **AccessTypes**: Filters the
|
|
13171
|
-
* - **PageSize and NextToken**:
|
|
13163
|
+
* ## Request Description
|
|
13164
|
+
* This API is used to query all pending permission request orders for which the current logged-in user is the approver. It supports filtering by multiple conditions, including resource type, time range, and approval status, to more precisely locate specific request orders.
|
|
13165
|
+
* - **ResourceType**: Specifies the resource type (such as table), which can have multiple values.
|
|
13166
|
+
* - **Resource**: Provides specific resource search conditions, such as the project, database, or table name.
|
|
13167
|
+
* - **StartTime and EndTime**: Define the time range during which the request was submitted.
|
|
13168
|
+
* - **Statuses**: Allows filtering results by approval status, for example, to view only pending approval requests.
|
|
13169
|
+
* - **Grantee**: Filters request orders based on the authorization principal information.
|
|
13170
|
+
* - **AccessTypes**: Filters based on the specific permission types requested (such as read or update).
|
|
13171
|
+
* - **PageSize and NextToken**: Used for pagination control, specifying the amount of data returned per request and the cursor needed to retrieve the next page of data.
|
|
13172
13172
|
* Notes:
|
|
13173
|
-
* - If no
|
|
13174
|
-
* -
|
|
13175
|
-
* - The default value of `PageSize` is 10, and the maximum value is 200. If
|
|
13176
|
-
* -
|
|
13177
|
-
* ## Response
|
|
13178
|
-
*
|
|
13179
|
-
* - **Data**: The paginated result set,
|
|
13180
|
-
* - **ApplicationQueryResponse**: The
|
|
13173
|
+
* - If no filtering conditions are provided, all matching records are returned by default.
|
|
13174
|
+
* - The `NextToken` parameter can be empty or omitted for the first call. Subsequent page requests must use the `NextToken` value provided in the previous response.
|
|
13175
|
+
* - The default value of `PageSize` is 10, and the maximum value is 200. If the specified value exceeds the maximum limit, the maximum value is used.
|
|
13176
|
+
* - When there is no more data to return, the `HasMore` field is set to `false`, and `NextToken` will be empty or absent.
|
|
13177
|
+
* ## Response Description
|
|
13178
|
+
* After a successful call to this API, the response body contains paginated results and detailed information for each request order, such as the application time, resource description, authorization principal, requested permissions, and more. Additionally, the approval process status and other related metadata are provided.
|
|
13179
|
+
* - **Data**: The paginated result set, including page size (`PageSize`), cursor (`NextToken`), and whether more data is available (`HasMore`).
|
|
13180
|
+
* - **ApplicationQueryResponse**: The specific content of each request order, including the reason for the request, submission time, status, and a detailed list of request content.
|
|
13181
13181
|
*
|
|
13182
13182
|
* @param tmpReq - ListPendingApprovalsRequest
|
|
13183
13183
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -13244,27 +13244,27 @@ class Client extends openapi_core_1.default {
|
|
|
13244
13244
|
return $dara.cast(await this.callApi(params, req, runtime), new $_model.ListPendingApprovalsResponse({}));
|
|
13245
13245
|
}
|
|
13246
13246
|
/**
|
|
13247
|
-
* Retrieves pending permission
|
|
13247
|
+
* Retrieves the list of pending permission request orders for which the current user is the approver.
|
|
13248
13248
|
*
|
|
13249
13249
|
* @remarks
|
|
13250
|
-
* ## Request
|
|
13251
|
-
* This API
|
|
13252
|
-
* - **ResourceType**:
|
|
13253
|
-
* - **Resource**:
|
|
13254
|
-
* - **StartTime and EndTime**:
|
|
13255
|
-
* - **Statuses**:
|
|
13256
|
-
* - **Grantee**: Filters
|
|
13257
|
-
* - **AccessTypes**: Filters the
|
|
13258
|
-
* - **PageSize and NextToken**:
|
|
13250
|
+
* ## Request Description
|
|
13251
|
+
* This API is used to query all pending permission request orders for which the current logged-in user is the approver. It supports filtering by multiple conditions, including resource type, time range, and approval status, to more precisely locate specific request orders.
|
|
13252
|
+
* - **ResourceType**: Specifies the resource type (such as table), which can have multiple values.
|
|
13253
|
+
* - **Resource**: Provides specific resource search conditions, such as the project, database, or table name.
|
|
13254
|
+
* - **StartTime and EndTime**: Define the time range during which the request was submitted.
|
|
13255
|
+
* - **Statuses**: Allows filtering results by approval status, for example, to view only pending approval requests.
|
|
13256
|
+
* - **Grantee**: Filters request orders based on the authorization principal information.
|
|
13257
|
+
* - **AccessTypes**: Filters based on the specific permission types requested (such as read or update).
|
|
13258
|
+
* - **PageSize and NextToken**: Used for pagination control, specifying the amount of data returned per request and the cursor needed to retrieve the next page of data.
|
|
13259
13259
|
* Notes:
|
|
13260
|
-
* - If no
|
|
13261
|
-
* -
|
|
13262
|
-
* - The default value of `PageSize` is 10, and the maximum value is 200. If
|
|
13263
|
-
* -
|
|
13264
|
-
* ## Response
|
|
13265
|
-
*
|
|
13266
|
-
* - **Data**: The paginated result set,
|
|
13267
|
-
* - **ApplicationQueryResponse**: The
|
|
13260
|
+
* - If no filtering conditions are provided, all matching records are returned by default.
|
|
13261
|
+
* - The `NextToken` parameter can be empty or omitted for the first call. Subsequent page requests must use the `NextToken` value provided in the previous response.
|
|
13262
|
+
* - The default value of `PageSize` is 10, and the maximum value is 200. If the specified value exceeds the maximum limit, the maximum value is used.
|
|
13263
|
+
* - When there is no more data to return, the `HasMore` field is set to `false`, and `NextToken` will be empty or absent.
|
|
13264
|
+
* ## Response Description
|
|
13265
|
+
* After a successful call to this API, the response body contains paginated results and detailed information for each request order, such as the application time, resource description, authorization principal, requested permissions, and more. Additionally, the approval process status and other related metadata are provided.
|
|
13266
|
+
* - **Data**: The paginated result set, including page size (`PageSize`), cursor (`NextToken`), and whether more data is available (`HasMore`).
|
|
13267
|
+
* - **ApplicationQueryResponse**: The specific content of each request order, including the reason for the request, submission time, status, and a detailed list of request content.
|
|
13268
13268
|
*
|
|
13269
13269
|
* @param request - ListPendingApprovalsRequest
|
|
13270
13270
|
* @returns ListPendingApprovalsResponse
|
|
@@ -15469,10 +15469,10 @@ class Client extends openapi_core_1.default {
|
|
|
15469
15469
|
return await this.renameWorkflowDefinitionWithOptions(request, runtime);
|
|
15470
15470
|
}
|
|
15471
15471
|
/**
|
|
15472
|
-
* Reruns multiple instances
|
|
15472
|
+
* Reruns multiple node instances in a batch.
|
|
15473
15473
|
*
|
|
15474
15474
|
* @remarks
|
|
15475
|
-
*
|
|
15475
|
+
* You must purchase DataWorks Basic Edition or a more advanced edition to use this operation.
|
|
15476
15476
|
*
|
|
15477
15477
|
* @param tmpReq - RerunTaskInstancesRequest
|
|
15478
15478
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -15492,6 +15492,9 @@ class Client extends openapi_core_1.default {
|
|
|
15492
15492
|
if (!$dara.isNull(request.idsShrink)) {
|
|
15493
15493
|
body["Ids"] = request.idsShrink;
|
|
15494
15494
|
}
|
|
15495
|
+
if (!$dara.isNull(request.useLatestConfig)) {
|
|
15496
|
+
body["UseLatestConfig"] = request.useLatestConfig;
|
|
15497
|
+
}
|
|
15495
15498
|
let req = new openapi_core_2.$OpenApiUtil.OpenApiRequest({
|
|
15496
15499
|
body: openapi_core_2.OpenApiUtil.parseToMap(body),
|
|
15497
15500
|
});
|
|
@@ -15509,10 +15512,10 @@ class Client extends openapi_core_1.default {
|
|
|
15509
15512
|
return $dara.cast(await this.callApi(params, req, runtime), new $_model.RerunTaskInstancesResponse({}));
|
|
15510
15513
|
}
|
|
15511
15514
|
/**
|
|
15512
|
-
* Reruns multiple instances
|
|
15515
|
+
* Reruns multiple node instances in a batch.
|
|
15513
15516
|
*
|
|
15514
15517
|
* @remarks
|
|
15515
|
-
*
|
|
15518
|
+
* You must purchase DataWorks Basic Edition or a more advanced edition to use this operation.
|
|
15516
15519
|
*
|
|
15517
15520
|
* @param request - RerunTaskInstancesRequest
|
|
15518
15521
|
* @returns RerunTaskInstancesResponse
|