diff options
author | iddqd <iddqd@yandex-team.com> | 2024-06-11 10:12:13 +0300 |
---|---|---|
committer | iddqd <iddqd@yandex-team.com> | 2024-06-11 10:22:43 +0300 |
commit | 07f57e35443ab7f09471caf2dbf1afbcced4d9f7 (patch) | |
tree | a4a7b66ead62e83fa988a2ec2ce6576311c1f4b1 /contrib/libs/yandex-cloud-api-protos/yandex/cloud/iam/v1/service_account.proto | |
parent | 6db3b8ca95e44179e48306a58656fb1f9317d9c3 (diff) | |
download | ydb-07f57e35443ab7f09471caf2dbf1afbcced4d9f7.tar.gz |
add contrib/python/yandexcloud to import
03b7d3cad2237366b55b393e18d4dc5eb222798c
Diffstat (limited to 'contrib/libs/yandex-cloud-api-protos/yandex/cloud/iam/v1/service_account.proto')
-rw-r--r-- | contrib/libs/yandex-cloud-api-protos/yandex/cloud/iam/v1/service_account.proto | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/contrib/libs/yandex-cloud-api-protos/yandex/cloud/iam/v1/service_account.proto b/contrib/libs/yandex-cloud-api-protos/yandex/cloud/iam/v1/service_account.proto new file mode 100644 index 0000000000..55498d15ea --- /dev/null +++ b/contrib/libs/yandex-cloud-api-protos/yandex/cloud/iam/v1/service_account.proto @@ -0,0 +1,30 @@ +syntax = "proto3"; + +package yandex.cloud.iam.v1; + +import "google/protobuf/timestamp.proto"; + +option go_package = "github.com/yandex-cloud/go-genproto/yandex/cloud/iam/v1;iam"; +option java_package = "yandex.cloud.api.iam.v1"; + +// A ServiceAccount resource. For more information, see [Service accounts](/docs/iam/concepts/users/service-accounts). +message ServiceAccount { + // ID of the service account. + string id = 1; + + // ID of the folder that the service account belongs to. + string folder_id = 2; + + // Creation timestamp. + google.protobuf.Timestamp created_at = 3; + + // Name of the service account. + // The name is unique within the cloud. 3-63 characters long. + string name = 4; + + // Description of the service account. 0-256 characters long. + string description = 5; + + // Resource labels as `` key:value `` pairs. Maximum of 64 per resource. + map<string, string> labels = 6; +} |