get method

Future<ReservationSubBlocksGetResponse> get(
  1. String project,
  2. String zone,
  3. String parentName,
  4. String reservationSubBlock, {
  5. String? $fields,
})

Retrieves information about the specified reservation subBlock.

Request parameters:

project - Project ID for this request.

zone - Name of the zone for this request. Zone name should conform to RFC1035.

parentName - The name of the parent reservation and parent block. In the format of reservations/{reservation_name}/reservationBlocks/{reservation_block_name}

reservationSubBlock - The name of the reservation subBlock. Name should conform to RFC1035 or be a resource ID.

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

Completes with a ReservationSubBlocksGetResponse.

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<ReservationSubBlocksGetResponse> get(
  core.String project,
  core.String zone,
  core.String parentName,
  core.String reservationSubBlock, {
  core.String? $fields,
}) async {
  final queryParams_ = <core.String, core.List<core.String>>{
    if ($fields != null) 'fields': [$fields],
  };

  final url_ =
      'projects/' +
      commons.escapeVariable('$project') +
      '/zones/' +
      commons.escapeVariable('$zone') +
      '/' +
      commons.escapeVariable('$parentName') +
      '/reservationSubBlocks/' +
      commons.escapeVariable('$reservationSubBlock');

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