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:
// This snippet has been automatically generated for illustrative purposes only.// It may require modifications to work in your environment.try(IamCredentialsClientiamCredentialsClient=IamCredentialsClient.create()){ServiceAccountNamename=ServiceAccountName.of("[PROJECT]","[SERVICE_ACCOUNT]");List<String>delegates=newArrayList<>();List<String>scope=newArrayList<>();Durationlifetime=Duration.newBuilder().build();GenerateAccessTokenResponseresponse=iamCredentialsClient.generateAccessToken(name,delegates,scope,lifetime);}
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2026-03-14 UTC."],[],[]]