aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/yandex-cloud-api-protos/yandex/cloud/iam/v1/awscompatibility/access_key.proto
blob: 7a533ba5e521e9043de2f12bfc87afa706f6e987 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
syntax = "proto3";

package yandex.cloud.iam.v1.awscompatibility;

import "google/protobuf/timestamp.proto";

option go_package = "github.com/yandex-cloud/go-genproto/yandex/cloud/iam/v1/awscompatibility;awscompatibility";
option java_package = "yandex.cloud.api.iam.v1.awscompatibility";

// An access key.
// For more information, see [AWS-compatible access keys](/docs/iam/concepts/authorization/access-key).
message AccessKey {
  // ID of the AccessKey resource.
  // It is used to manage secret credentials: an access key ID and a secret access key.
  string id = 1;

  // ID of the service account that the access key belongs to.
  string service_account_id = 2;

  // Creation timestamp.
  google.protobuf.Timestamp created_at = 3;

  // Description of the access key. 0-256 characters long.
  string description = 4;

  // ID of the access key.
  // The key is AWS compatible.
  string key_id = 5;

  reserved 6;

  // Timestamp for the last authentication using this Access key.
  google.protobuf.Timestamp last_used_at = 7;
}