create method
Future<Reservation>
create(
- Reservation request,
- String parent, {
- String? reservationId,
- String? $fields,
Creates a new reservation resource.
request
- The metadata request object.
Request parameters:
parent
- Required. Project, location. E.g.,
projects/myproject/locations/US
Value must have pattern ^projects/\[^/\]+/locations/\[^/\]+$
.
reservationId
- The reservation ID. It must only contain lower case
alphanumeric characters or dashes. It must start with a letter and must
not end with a dash. Its maximum length is 64 characters.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a Reservation.
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<Reservation> create(
Reservation request,
core.String parent, {
core.String? reservationId,
core.String? $fields,
}) async {
final body_ = convert.json.encode(request);
final queryParams_ = <core.String, core.List<core.String>>{
if (reservationId != null) 'reservationId': [reservationId],
if ($fields != null) 'fields': [$fields],
};
final url_ = 'v1/' + core.Uri.encodeFull('$parent') + '/reservations';
final response_ = await _requester.request(
url_,
'POST',
body: body_,
queryParams: queryParams_,
);
return Reservation.fromJson(
response_ as core.Map<core.String, core.dynamic>);
}