aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGoogle APIs <noreply@google.com>2024-05-07 02:42:41 -0700
committerCopybara-Service <copybara-worker@google.com>2024-05-07 02:43:43 -0700
commit67ce40dc5fbccff1a5f0f0ca5f1af079f8c4b524 (patch)
tree2caa1d1f92eb462e7335f8ccbaacc85eef553392
parent900ed84f9f02a78eab2207e46fbdaa9d5f9ad875 (diff)
downloadgoogleapis-67ce40dc5fbccff1a5f0f0ca5f1af079f8c4b524.tar.gz
feat: add mounted image log proto to googleapis
PiperOrigin-RevId: 631351462
-rw-r--r--google/cloud/backupdr/logging/v1/reportlog.proto52
1 files changed, 52 insertions, 0 deletions
diff --git a/google/cloud/backupdr/logging/v1/reportlog.proto b/google/cloud/backupdr/logging/v1/reportlog.proto
index 69d99bc95..11bd3f36f 100644
--- a/google/cloud/backupdr/logging/v1/reportlog.proto
+++ b/google/cloud/backupdr/logging/v1/reportlog.proto
@@ -316,3 +316,55 @@ message ProtectedResource {
// Optional. Recovery Point.
string recovery_point = 21;
}
+
+// Holds information for the Mounted Images log
+message MountedImage {
+ // Required. Source Resource name.
+ string source_resource_name = 1;
+ // Required. Source Resource id.
+ string source_resource_id = 2;
+ // Required. Cluster Name.
+ string appliance_name = 3;
+ // Required. Cluster Id.
+ string appliance_id = 4;
+ // Required. Mounted Image Name.
+ string mounted_image_name = 5;
+ // Required. Source Image Name.
+ string source_image_name = 6;
+ // Required.Job Type.
+ string job_type = 7;
+ // Required. Recovery point Date.
+ string recovery_point_date = 8;
+ // Required. Last Mount Date
+ string last_mount_date = 9;
+ // Required. Resource type.
+ string resource_type = 10;
+ // Required. Source Host Name.
+ string source_host_name = 11;
+ // Required. Source Host Id.
+ string source_host_id = 12;
+ // Required. Mounted Host Name.
+ string mounted_host_name = 13;
+ // Required. Mounted Host Id.
+ string mounted_host_id = 14;
+ // Required. Mounted Resource Name.
+ string mounted_resource_name = 15;
+ // Required. Resource Virtual size(in GB)
+ string resource_virtual_size = 16;
+ // Required. Storage Consumed.
+ string storage_consumed = 17;
+ // Optional. label.
+ string mounted_resource_label = 18;
+ // Optional. Restorable Objects.
+ string restorable_object = 19;
+ // Required. Mount Duration.
+ string mount_duration = 20;
+ // Required. User Name.
+ string user_name = 21;
+ // Optional. Read Mode.
+ string read_mode = 22;
+ // Required. Resource size(in GB)
+ string resource_size = 23;
+ // Optional. Image Expiration Date
+ string image_expiration_date = 24;
+}