aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/yandex-cloud-api-protos/yandex/cloud/mdb/elasticsearch/v1/backup.proto
blob: 3cd55343c739e3873cb5d19e4eef5eb02e1695ee (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
35
36
37
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;
}