list method

Future<ListAvailableVersionsResponse> list(
  1. String parent, {
  2. bool? latestPatchOnly,
  3. int? pageSize,
  4. String? pageToken,
  5. String? $fields,
})

Lists possible versions for Data Fusion instances in the specified project and location.

Request parameters:

parent - Required. The project and location for which to retrieve instance information in the format projects/{project}/locations/{location}. Value must have pattern ^projects/\[^/\]+/locations/\[^/\]+$.

latestPatchOnly - Whether or not to return the latest patch of every available minor version. If true, only the latest patch will be returned. Ex. if allowed versions is [6.1.1, 6.1.2, 6.2.0] then response will be [6.1.2, 6.2.0]

pageSize - The maximum number of items to return.

pageToken - The next_page_token value to use if there are additional results to retrieve for this list request.

$fields - Selector specifying which fields to include in a partial response.

Completes with a ListAvailableVersionsResponse.

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<ListAvailableVersionsResponse> list(
  core.String parent, {
  core.bool? latestPatchOnly,
  core.int? pageSize,
  core.String? pageToken,
  core.String? $fields,
}) async {
  final queryParams_ = <core.String, core.List<core.String>>{
    if (latestPatchOnly != null) 'latestPatchOnly': ['${latestPatchOnly}'],
    if (pageSize != null) 'pageSize': ['${pageSize}'],
    if (pageToken != null) 'pageToken': [pageToken],
    if ($fields != null) 'fields': [$fields],
  };

  final url_ = 'v1/' + core.Uri.encodeFull('$parent') + '/versions';

  final response_ = await _requester.request(
    url_,
    'GET',
    queryParams: queryParams_,
  );
  return ListAvailableVersionsResponse.fromJson(
      response_ as core.Map<core.String, core.dynamic>);
}