create method

Future<ReservationGroup> create(
  1. ReservationGroup request,
  2. String parent, {
  3. String? reservationGroupId,
  4. String? $fields,
})

Creates a new reservation group.

request - The metadata request object.

Request parameters:

parent - Required. Project, location. E.g., projects/myproject/locations/US Value must have pattern ^projects/\[^/\]+/locations/\[^/\]+$.

reservationGroupId - Required. The reservation group 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 ReservationGroup.

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<ReservationGroup> create(
  ReservationGroup request,
  core.String parent, {
  core.String? reservationGroupId,
  core.String? $fields,
}) async {
  final body_ = convert.json.encode(request);
  final queryParams_ = <core.String, core.List<core.String>>{
    if (reservationGroupId != null)
      'reservationGroupId': [reservationGroupId],
    if ($fields != null) 'fields': [$fields],
  };

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

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