create method

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

Creates a keystore or truststore.

  • Keystore: Contains certificates and their associated keys. - Truststore: Contains trusted certificates used to validate a server's certificate. These certificates are typically self-signed certificates or certificates that are not signed by a trusted CA.

request - The metadata request object.

Request parameters:

parent - Required. Name of the environment in which to create the keystore. Use the following format in your request: organizations/{org}/environments/{env} Value must have pattern ^organizations/\[^/\]+/environments/\[^/\]+$.

name - Optional. Name of the keystore. Overrides the value in Keystore.

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

Completes with a GoogleCloudApigeeV1Keystore.

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

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

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