Skip to content

Commit

Permalink
feat: add mounted image log proto to googleapis
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 631351462
  • Loading branch information
Google APIs authored and Copybara-Service committed May 7, 2024
1 parent 900ed84 commit 67ce40d
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions google/cloud/backupdr/logging/v1/reportlog.proto
Expand Up @@ -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;
}

0 comments on commit 67ce40d

Please sign in to comment.