Skip navigation links

@Generated(value="by gapic-generator")

Package com.google.cloud.iam.credentials.v1

A client to IAM Service Account Credentials API.

See: Description

Package com.google.cloud.iam.credentials.v1 Description

A client to IAM Service Account Credentials API.

The interfaces provided are listed below, along with usage samples.

==================== IamCredentialsClient ====================

Service Description: A service account is a special type of Google account that belongs to your application or a virtual machine (VM), instead of to an individual end user. Your application assumes the identity of the service account to call Google APIs, so that the users aren't directly involved.

Service account credentials are used to temporarily assume the identity of the service account. Supported credential types include OAuth 2.0 access tokens, OpenID Connect ID tokens, self-signed JSON Web Tokens (JWTs), and more.

Sample for IamCredentialsClient:

 
 try (IamCredentialsClient iamCredentialsClient = IamCredentialsClient.create()) {
   ServiceAccountName name = ServiceAccountName.of("[PROJECT]", "[SERVICE_ACCOUNT]");
   List<String> delegates = new ArrayList<>();
   List<String> scope = new ArrayList<>();
   Duration lifetime = Duration.newBuilder().build();
   GenerateAccessTokenResponse response = iamCredentialsClient.generateAccessToken(name, delegates, scope, lifetime);
 }
 
 
Skip navigation links

Copyright © 2019 Google LLC. All rights reserved.