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
{
"access_key_id": "string"
}
Field |
Description |
access_key_id |
string Required field. ID of the AccessKey resource to return. |
AccessKey
{
"id": "string",
"service_account_id": "string",
"created_at": "google.protobuf.Timestamp",
"description": "string",
"key_id": "string",
"last_used_at": "google.protobuf.Timestamp"
}
An access key.
For more information, see AWS-compatible access keys.
Field |
Description |
id |
string ID of the AccessKey resource. |
service_account_id |
string ID of the service account that the access key belongs to. |
created_at |
Creation timestamp. |
description |
string Description of the access key. 0-256 characters long. |
key_id |
string ID of the access key. |
last_used_at |
Timestamp for the last authentication using this Access key. |