get method
Retrieves information about the specified reservation slot.
Request parameters:
project - The project ID for this request.
zone - The name of the zone for this request, formatted as RFC1035.
parentName - The name of the parent reservation and parent block,
formatted as
reservations/{reservation_name}/reservationBlocks/{reservation_block_name}/reservationSubBlocks/{reservation_sub_block_name}
Value must have pattern
reservations/(\[a-z\](?:\[-a-z0-9\]{0,61}\[a-z0-9\])?|\[1-9\]\[0-9\]{0,19})/reservationBlocks/(\[a-z\](?:\[-a-z0-9\]{0,61}\[a-z0-9\])?|\[1-9\]\[0-9\]{0,19})/reservationSubBlocks/(\[a-z\](?:\[-a-z0-9\]{0,61}\[a-z0-9\])?|\[1-9\]\[0-9\]{0,19}).
reservationSlot - The name of the reservation slot, formatted as RFC1035
or a resource ID
number.
$fields - Selector specifying which fields to include in a partial
response.
Completes with a ReservationSlotsGetResponse.
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<ReservationSlotsGetResponse> get(
core.String project,
core.String zone,
core.String parentName,
core.String reservationSlot, {
core.String? $fields,
}) async {
final queryParams_ = <core.String, core.List<core.String>>{
'fields': ?$fields == null ? null : [$fields],
};
final url_ =
'projects/' +
commons.escapeVariable('$project') +
'/zones/' +
commons.escapeVariable('$zone') +
'/' +
core.Uri.encodeFull('$parentName') +
'/reservationSlots/' +
commons.escapeVariable('$reservationSlot');
final response_ = await _requester.request(
url_,
'GET',
queryParams: queryParams_,
);
return ReservationSlotsGetResponse.fromJson(
response_ as core.Map<core.String, core.dynamic>,
);
}