create method

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

Creates a new WorkforcePoolProviderScimToken in a WorkforcePoolProviderScimTenant.

You cannot reuse the name of a deleted SCIM token until 30 days after deletion.

request - The metadata request object.

Request parameters:

parent - Required. The parent tenant to create scim token. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}' Value must have pattern ^locations/\[^/\]+/workforcePools/\[^/\]+/providers/\[^/\]+/scimTenants/\[^/\]+$.

workforcePoolProviderScimTokenId - Required. The ID to use for the scim token, which becomes the final component of the resource name. This value should be 4-32 characters and follow this pattern: "([a-z]([a-z0-9\-]{2,30}[a-z0-9]))"

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

Completes with a WorkforcePoolProviderScimToken.

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

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

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