class Google::Apis::ClouderrorreportingV1beta1::ListEventsResponse

Contains a set of requested error events.

Attributes

error_events[RW]

The error events which match the given request. Corresponds to the JSON property `errorEvents` @return [Array<Google::Apis::ClouderrorreportingV1beta1::ErrorEvent>]

next_page_token[RW]

If non-empty, more results are available. Pass this token, along with the same query parameters as the first request, to view the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]

time_range_begin[RW]

The timestamp specifies the start time to which the request was restricted. Corresponds to the JSON property `timeRangeBegin` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/clouderrorreporting_v1beta1/classes.rb, line 328
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/clouderrorreporting_v1beta1/classes.rb, line 333
def update!(**args)
  @error_events = args[:error_events] if args.key?(:error_events)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @time_range_begin = args[:time_range_begin] if args.key?(:time_range_begin)
end