initializeAuth method

Initialize Identity Platform for a Cloud project.

Identity Platform is an end-to-end authentication system for third-party users to access your apps and services. These could include mobile/web apps, games, APIs and beyond. This is the publicly available variant of EnableIdentityPlatform that is only available to billing-enabled projects.

request - The metadata request object.

Request parameters:

project - The resource name of the target project the developer wants to enable Identity Platform for. Value must have pattern ^projects/\[^/\]+$.

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

Completes with a GoogleCloudIdentitytoolkitAdminV2InitializeIdentityPlatformResponse.

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

  final url_ = 'v2/' +
      core.Uri.encodeFull('$project') +
      '/identityPlatform:initializeAuth';

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