feat:Publish Cloud Backup DR Event logging proto for documentation

PiperOrigin-RevId: 532674643
pull/805/head
Google APIs 2 years ago committed by Copybara-Service
parent 2c8a769075
commit 93d69be264
  1. 28
      google/cloud/backupdr/logging/v1/eventlog.proto

@ -1,4 +1,4 @@
// Copyright 2022 Google LLC
// Copyright 2023 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@ -16,20 +16,18 @@ syntax = "proto3";
package google.cloud.backupdr.logging.v1;
import "google/protobuf/timestamp.proto";
option go_package = "cloud.google.com/go/backupdr/logging/apiv1/loggingpb;loggingpb";
// This is an event
message Event {
// The event_time field displays the time when the event was reported
google.protobuf.Timestamp event_time = 1;
string event_time = 1;
// The srcid field displays unique id of the event occurred in the backup
// appliance
int64 srcid = 2;
// The error_message field describes the detailed error associated with the
// The errormessage field describes the detailed error associated with the
// event
string error_message = 3;
@ -41,22 +39,16 @@ message Event {
// The appliance_id field displays unique id of the appliance on which event
// occurred
int64 appliance_id = 6;
// The appliance_name field displays name of the appliance on which event
// occurred
string appliance_name = 7;
// The source_event_time field displays the time when the event occurred at
// appliance
google.protobuf.Timestamp source_event_time = 8;
int64 appliance_name = 6;
// The app_name field displays name of the application associated with the
// The appname field displays name of the application associated with the
// event
string app_name = 9;
string app_name = 7;
// The app_type field displays type of the application associated with the
// The apptype field displays type of the application associated with the
// event
string app_type = 10;
string app_type = 8;
// The job_name field displays name of the job associated with the event
string job_name = 11;
// The jobname field displays name of the job associated with the event
string job_name = 9;
}

Loading…
Cancel
Save