aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/yandex-cloud-api-protos/yandex/cloud/mdb/opensearch/v1/backup.proto
blob: b19279f061d09f76aa06a2270086e8c234c2719b (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.opensearch.v1;

import "google/protobuf/timestamp.proto";
import "yandex/cloud/validation.proto";

option go_package = "github.com/yandex-cloud/go-genproto/yandex/cloud/mdb/opensearch/v1;opensearch";
option java_package = "yandex.cloud.api.mdb.opensearch.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 OpenSearch cluster that the backup was created for.
  string source_cluster_id = 3;

  // Time when the backup operation was started.
  google.protobuf.Timestamp started_at = 4;

  // Time when the backup operation was completed.
  google.protobuf.Timestamp created_at = 5;

  // Names of indices in the backup.
  repeated string indices = 6  [(size) = "<=100"];

  // OpenSearch version used to create the backup.
  string opensearch_version = 7;

  // Size of the backup in bytes.
  int64 size_bytes = 8;

  // The number of indices in the backup.
  int64 indices_total = 9;
}