batchSearchLinkProcesses method
- GoogleCloudDatacatalogLineageV1BatchSearchLinkProcessesRequest request,
- String parent, {
- String? $fields,
Retrieve information about LineageProcesses associated with specific links.
LineageProcesses are transformation pipelines that result in data flowing
from source to target assets. Links between assets represent this
operation. If you have specific link names, you can use this method to
verify which LineageProcesses contribute to creating those links. See the
SearchLinks method for more information on how to retrieve link name. You
can retrieve the LineageProcess information in every project where you
have the datalineage.events.get
permission. The project provided in the
URL is used for Billing and Quota.
request
- The metadata request object.
Request parameters:
parent
- Required. The project and location where you want to search.
Value must have pattern ^projects/\[^/\]+/locations/\[^/\]+$
.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a GoogleCloudDatacatalogLineageV1BatchSearchLinkProcessesResponse.
Completes with a commons.ApiRequestError if the API endpoint returned an error.
If the used http.Client
completes with an error when making a REST call,
this method will complete with the same error.
Implementation
async.Future<GoogleCloudDatacatalogLineageV1BatchSearchLinkProcessesResponse>
batchSearchLinkProcesses(
GoogleCloudDatacatalogLineageV1BatchSearchLinkProcessesRequest request,
core.String parent, {
core.String? $fields,
}) async {
final body_ = convert.json.encode(request);
final queryParams_ = <core.String, core.List<core.String>>{
if ($fields != null) 'fields': [$fields],
};
final url_ =
'v1/' + core.Uri.encodeFull('$parent') + ':batchSearchLinkProcesses';
final response_ = await _requester.request(
url_,
'POST',
body: body_,
queryParams: queryParams_,
);
return GoogleCloudDatacatalogLineageV1BatchSearchLinkProcessesResponse
.fromJson(response_ as core.Map<core.String, core.dynamic>);
}