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/mdb/elasticsearch/v1/backup.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/mdb/elasticsearch/v1/backup.proto')
-rw-r--r-- | contrib/libs/yandex-cloud-api-protos/yandex/cloud/mdb/elasticsearch/v1/backup.proto | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/contrib/libs/yandex-cloud-api-protos/yandex/cloud/mdb/elasticsearch/v1/backup.proto b/contrib/libs/yandex-cloud-api-protos/yandex/cloud/mdb/elasticsearch/v1/backup.proto new file mode 100644 index 0000000000..3cd55343c7 --- /dev/null +++ b/contrib/libs/yandex-cloud-api-protos/yandex/cloud/mdb/elasticsearch/v1/backup.proto @@ -0,0 +1,38 @@ +syntax = "proto3"; + +package yandex.cloud.mdb.elasticsearch.v1; + +import "google/protobuf/timestamp.proto"; +import "yandex/cloud/validation.proto"; + +option go_package = "github.com/yandex-cloud/go-genproto/yandex/cloud/mdb/elasticsearch/v1;elasticsearch"; +option java_package = "yandex.cloud.api.mdb.elasticsearch.v1"; + +message Backup { + // Required. ID of the backup. + string id = 1; + + // ID of the folder that the backup belongs to. + string folder_id = 2; + + // ID of the associated Elasticsearch cluster. + string source_cluster_id = 3; + + // The time when the backup operation was started. + google.protobuf.Timestamp started_at = 4; + + // The time when the backup was created (i.e. when the backup operation completed). + google.protobuf.Timestamp created_at = 5; + + // Indices names. (max 100) + repeated string indices = 6 [(size) = "<=100"]; + + // Elasticsearch version used to create the snapshot + string elasticsearch_version = 7; + + // Total size of all indices in backup. in bytes + int64 size_bytes = 8; + + // Total count of indices in backup + int64 indices_total = 9; +} |