resetAuthorizationCode method

Future<AuthorizationCode> resetAuthorizationCode(
  1. ResetAuthorizationCodeRequest request,
  2. String registration, {
  3. String? $fields,
})

Resets the authorization code of the Registration to a new random string.

You can call this method only after 60 days have elapsed since the initial domain registration.

request - The metadata request object.

Request parameters:

registration - Required. The name of the Registration whose authorization code is being reset, in the format projects / * /locations / * /registrations / * . Value must have pattern ^projects/\[^/\]+/locations/\[^/\]+/registrations/\[^/\]+$.

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

Completes with a AuthorizationCode.

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<AuthorizationCode> resetAuthorizationCode(
  ResetAuthorizationCodeRequest request,
  core.String registration, {
  core.String? $fields,
}) async {
  final _body = convert.json.encode(request.toJson());
  final _queryParams = <core.String, core.List<core.String>>{
    if ($fields != null) 'fields': [$fields],
  };

  final _url = 'v1beta1/' +
      core.Uri.encodeFull('$registration') +
      ':resetAuthorizationCode';

  final _response = await _requester.request(
    _url,
    'POST',
    body: _body,
    queryParams: _queryParams,
  );
  return AuthorizationCode.fromJson(
      _response as core.Map<core.String, core.dynamic>);
}