123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222 |
- syntax = "proto3";
- package google.cloud.gkebackup.v1;
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/cloud/gkebackup/v1/common.proto";
- import "google/protobuf/timestamp.proto";
- option csharp_namespace = "Google.Cloud.GkeBackup.V1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/gkebackup/v1;gkebackup";
- option java_multiple_files = true;
- option java_outer_classname = "VolumeProto";
- option java_package = "com.google.cloud.gkebackup.v1";
- option php_namespace = "Google\\Cloud\\GkeBackup\\V1";
- option ruby_package = "Google::Cloud::GkeBackup::V1";
- message VolumeBackup {
- option (google.api.resource) = {
- type: "gkebackup.googleapis.com/VolumeBackup"
- pattern: "projects/{project}/locations/{location}/backupPlans/{backup_plan}/backups/{backup}/volumeBackups/{volume_backup}"
- };
-
- enum VolumeBackupFormat {
-
- VOLUME_BACKUP_FORMAT_UNSPECIFIED = 0;
-
- GCE_PERSISTENT_DISK = 1;
- }
-
- enum State {
-
- STATE_UNSPECIFIED = 0;
-
-
- CREATING = 1;
-
-
-
-
- SNAPSHOTTING = 2;
-
-
- UPLOADING = 3;
-
- SUCCEEDED = 4;
-
- FAILED = 5;
-
-
- DELETING = 6;
- }
-
-
- string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- string uid = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- google.protobuf.Timestamp create_time = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- google.protobuf.Timestamp update_time = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- NamespacedName source_pvc = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string volume_backup_handle = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- VolumeBackupFormat format = 7 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
- int64 storage_bytes = 8 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- int64 disk_size_bytes = 9 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- google.protobuf.Timestamp complete_time = 10 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- State state = 11 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- string state_message = 12 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
- string etag = 13 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message VolumeRestore {
- option (google.api.resource) = {
- type: "gkebackup.googleapis.com/VolumeRestore"
- pattern: "projects/{project}/locations/{location}/restorePlans/{restore_plan}/restores/{restore}/volumeRestores/{volume_restore}"
- };
-
- enum VolumeType {
-
- VOLUME_TYPE_UNSPECIFIED = 0;
-
- GCE_PERSISTENT_DISK = 1;
- }
-
- enum State {
-
- STATE_UNSPECIFIED = 0;
-
-
- CREATING = 1;
-
- RESTORING = 2;
-
- SUCCEEDED = 3;
-
- FAILED = 4;
-
- DELETING = 5;
- }
-
-
- string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- string uid = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- google.protobuf.Timestamp create_time = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- google.protobuf.Timestamp update_time = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- string volume_backup = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- NamespacedName target_pvc = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- string volume_handle = 7 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- VolumeType volume_type = 8 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- google.protobuf.Timestamp complete_time = 9 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- State state = 10 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- string state_message = 11 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
- string etag = 12 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
|