create method

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

Creates a new KeyHandle, triggering the provisioning of a new CryptoKey for CMEK use with the given resource type in the configured key project and the same location.

GetOperation should be used to resolve the resulting long-running operation and get the resulting KeyHandle and CryptoKey.

request - The metadata request object.

Request parameters:

parent - Required. Name of the resource project and location to create the KeyHandle in, e.g. projects/{PROJECT_ID}/locations/{LOCATION}. Value must have pattern ^projects/\[^/\]+/locations/\[^/\]+$.

keyHandleId - Optional. Id of the KeyHandle. Must be unique to the resource project and location. If not provided by the caller, a new UUID is used.

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

Completes with a Operation.

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

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

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