Skip to content

Commit

Permalink
feat: added daily schedule compliance log proto and backup storage ut…
Browse files Browse the repository at this point in the history
…ilization log proto

PiperOrigin-RevId: 609634017
  • Loading branch information
Google APIs authored and Copybara-Service committed Feb 23, 2024
1 parent d2c86cf commit 8b9e8c1
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions google/cloud/backupdr/logging/v1/reportlog.proto
Original file line number Diff line number Diff line change
Expand Up @@ -270,3 +270,49 @@ message BackupStorageUtilizationReportLog {
// Required. Appliance id.
string appliance_id = 7;
}

// Holds information for the Protected Resource
message ProtectedResource {
// Required. Resource name.
string resource_name = 1;
// Required. Resource Type.
string resource_type = 2;
// Required. Resource ID.
string resource_id = 3;
// Optional. Backup Inclusion/Exclusion.
string backup_inclusion_or_exclusion = 4;
// Required. Host Id.
string host_id = 5;
// Required. Host Name.
string host_name = 6;
// Required. Backup Template ID.
string backup_plan_policy_template_id = 7;
// Required. Backup Template.
string backup_plan_policy_template = 8;
// Required. Sla Id.
string sla_id = 9;
// Required. Backup Plan restrictions.
string backup_plan_restrictions = 10;
// Required. Protected On.
string protected_on = 11;
// Optional. Policy Overrides.
string policy_overrides = 12;
// Optional. Source Appliance in case of streamsnap.
string source_appliance = 13;
// Optional. Source Appliance Id in case of streamsnap.
string source_appliance_id = 14;
// Required. Protected Data (GiB).
double protected_data_in_gib = 15;
// Optional. Onvault (GiB) .
double onvault_in_gib = 16;
// Optional. Originating Appliance in case of streamsnap.
string appliance_name = 17;
// Optional. Originating Appliance id in case of streamsnap.
string appliance_id = 18;
// Optional. Remote Appliance in case of streamsnap.
string remote_appliance = 19;
// Optional. Remote Appliance id in case of streamsnap.
string remote_appliance_id = 20;
// Optional. Recovery Point.
string recovery_point = 21;
}

0 comments on commit 8b9e8c1

Please sign in to comment.