Identity and Access Management API, REST: AccessKey methods
A set of methods for managing access keys.
JSON Representation
{
"id": "string",
"serviceAccountId": "string",
"createdAt": "string",
"description": "string",
"keyId": "string",
"lastUsedAt": "string"
}
Field | Description |
---|---|
id | string ID of the AccessKey resource. It is used to manage secret credentials: an access key ID and a secret access key. |
serviceAccountId | string ID of the service account that the access key belongs to. |
createdAt | string (date-time) Creation timestamp. String in RFC3339 text format. The range of possible values is from To work with values in this field, use the APIs described in the Protocol Buffers reference. In some languages, built-in datetime utilities do not support nanosecond precision (9 digits). |
description | string Description of the access key. 0-256 characters long. |
keyId | string ID of the access key. The key is AWS compatible. |
lastUsedAt | string (date-time) Timestamp for the last authentication using this Access key. String in RFC3339 text format. The range of possible values is from To work with values in this field, use the APIs described in the Protocol Buffers reference. In some languages, built-in datetime utilities do not support nanosecond precision (9 digits). |
Methods
Method | Description |
---|---|
create | Creates an access key for the specified service account. |
delete | Deletes the specified access key. |
get | Returns the specified access key. |
list | Retrieves the list of access keys for the specified service account. |
listOperations | Retrieves the list of operations for the specified access key. |
update | Updates the specified access key. |