Identity and Access Management API, gRPC: KeyService.List
Retrieves the list of Key resources for the specified service account.
gRPC request
rpc List (ListKeysRequest) returns (ListKeysResponse)
ListKeysRequest
{
"format": "KeyFormat",
"serviceAccountId": "string",
"pageSize": "int64",
"pageToken": "string"
}
Field |
Description |
format |
enum KeyFormat Output format of the key.
|
serviceAccountId |
string ID of the service account to list key pairs for. |
pageSize |
int64 The maximum number of results per page to return. If the number of available |
pageToken |
string Page token. To get the next page of results, set |
ListKeysResponse
{
"keys": [
{
"id": "string",
// Includes only one of the fields `userAccountId`, `serviceAccountId`
"userAccountId": "string",
"serviceAccountId": "string",
// end of the list of possible fields
"createdAt": "google.protobuf.Timestamp",
"description": "string",
"keyAlgorithm": "Algorithm",
"publicKey": "string",
"lastUsedAt": "google.protobuf.Timestamp"
}
],
"nextPageToken": "string"
}
Field |
Description |
keys[] |
List of Key resources. |
nextPageToken |
string This token allows you to get the next page of results for list requests. If the number of results |
Key
A Key resource. For more information, see Authorized keys.
Field |
Description |
id |
string ID of the Key resource. |
userAccountId |
string ID of the user account that the Key resource belongs to. Includes only one of the fields |
serviceAccountId |
string ID of the service account that the Key resource belongs to. Includes only one of the fields |
createdAt |
Creation timestamp. |
description |
string Description of the Key resource. 0-256 characters long. |
keyAlgorithm |
enum Algorithm An algorithm used to generate a key pair of the Key resource.
|
publicKey |
string A public key of the Key resource. |
lastUsedAt |
Timestamp for the last use of this key. |