Interface TokenManagementService
-
@Generated public interface TokenManagementService
Enables administrators to get all tokens and delete tokens for other users. Admins can either get every token, get a specific token by ID, or get all tokens for a particular user.This is the high-level interface, that contains generated methods.
Evolving: this interface is under development. Method signatures may change.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateOboTokenResponse
createOboToken(CreateOboTokenRequest createOboTokenRequest)
Create on-behalf token.void
delete(DeleteTokenManagementRequest deleteTokenManagementRequest)
Delete a token.TokenInfo
get(GetTokenManagementRequest getTokenManagementRequest)
Get token info.ListTokensResponse
list(ListTokenManagementRequest listTokenManagementRequest)
List all tokens.
-
-
-
Method Detail
-
createOboToken
CreateOboTokenResponse createOboToken(CreateOboTokenRequest createOboTokenRequest)
Create on-behalf token.Creates a token on behalf of a service principal.
-
delete
void delete(DeleteTokenManagementRequest deleteTokenManagementRequest)
Delete a token.Deletes a token, specified by its ID.
-
get
TokenInfo get(GetTokenManagementRequest getTokenManagementRequest)
Get token info.Gets information about a token, specified by its ID.
-
list
ListTokensResponse list(ListTokenManagementRequest listTokenManagementRequest)
List all tokens.Lists all tokens associated with the specified workspace or user.
-
-