create method

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

Creates a new Secret containing no SecretVersions.

request - The metadata request object.

Request parameters:

parent - Required. The resource name of the project to associate with the Secret, in the format projects / * or projects / * /locations / * . Value must have pattern ^projects/\[^/\]+$.

secretId - Required. This must be unique within the project. A secret ID is a string with a maximum length of 255 characters and can contain uppercase and lowercase letters, numerals, and the hyphen (-) and underscore (_) characters.

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

Completes with a Secret.

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

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

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