Access Key, gRPC: AccessKeyService.Get
Returns the specified access key.
To get the list of available access keys, make a List request.
gRPC request
rpc Get (GetAccessKeyRequest) returns (AccessKey)
GetAccessKeyRequest
{
"accessKeyId": "string"
}
Field |
Description |
accessKeyId |
string Required field. ID of the AccessKey resource to return. |
AccessKey
{
"id": "string",
"serviceAccountId": "string",
"createdAt": "google.protobuf.Timestamp",
"description": "string",
"keyId": "string",
"lastUsedAt": "google.protobuf.Timestamp"
}
An access key.
For more information, see AWS-compatible access keys.
Field |
Description |
id |
string ID of the AccessKey resource. |
serviceAccountId |
string ID of the service account that the access key belongs to. |
createdAt |
Creation timestamp. |
description |
string Description of the access key. 0-256 characters long. |
keyId |
string ID of the access key. |
lastUsedAt |
Timestamp for the last authentication using this Access key. |