Skip to content

Commit

Permalink
docs: removed link to the regionalization page
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 506926790
  • Loading branch information
Google APIs authored and copybara-github committed Feb 3, 2023
1 parent fa24e95 commit 7295c41
Showing 1 changed file with 7 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ option ruby_package = "Google::Cloud::ErrorReporting::V1beta1";
// An API for reporting error events.
service ReportErrorsService {
option (google.api.default_host) = "clouderrorreporting.googleapis.com";
option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
option (google.api.oauth_scopes) =
"https://www.googleapis.com/auth/cloud-platform";

// Report an individual error event and record the event to a log.
//
Expand All @@ -51,10 +52,8 @@ service ReportErrorsService {
// on Cloud Logging and doesn't analyze logs stored
// in regional log buckets or logs routed to other Google Cloud projects.
//
// For more information, see
// [Using Error Reporting with regionalized
// logs](/error-reporting/docs/regionalization).
rpc ReportErrorEvent(ReportErrorEventRequest) returns (ReportErrorEventResponse) {
rpc ReportErrorEvent(ReportErrorEventRequest)
returns (ReportErrorEventResponse) {
option (google.api.http) = {
post: "/v1beta1/{project_name=projects/*}/events:report"
body: "event"
Expand Down Expand Up @@ -84,16 +83,15 @@ message ReportErrorEventRequest {

// Response for reporting an individual error event.
// Data may be added to this message in the future.
message ReportErrorEventResponse {

}
message ReportErrorEventResponse {}

// An error event which is reported to the Error Reporting system.
message ReportedErrorEvent {
// Optional. Time when the event occurred.
// If not provided, the time when the event was received by the
// Error Reporting system will be used.
google.protobuf.Timestamp event_time = 1 [(google.api.field_behavior) = OPTIONAL];
google.protobuf.Timestamp event_time = 1
[(google.api.field_behavior) = OPTIONAL];

// Required. The service context in which this error has occurred.
ServiceContext service_context = 2 [(google.api.field_behavior) = REQUIRED];
Expand Down

0 comments on commit 7295c41

Please sign in to comment.