class Google::Apis::MonitoringV3::CreateCollectdTimeSeriesResponse
The CreateCollectdTimeSeries response.
Attributes
payload_errors[RW]
Records the error status for points that were not written due to an error in the request.Failed requests for which nothing is written will return an error response instead. Requests where data points were rejected by the backend will set summary instead. Corresponds to the JSON property `payloadErrors` @return [Array<Google::Apis::MonitoringV3::CollectdPayloadError>]
summary[RW]
Summary of the result of a failed request to write data to a time series. Corresponds to the JSON property `summary` @return [Google::Apis::MonitoringV3::CreateTimeSeriesSummary]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/monitoring_v3/classes.rb, line 902 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/monitoring_v3/classes.rb, line 907 def update!(**args) @payload_errors = args[:payload_errors] if args.key?(:payload_errors) @summary = args[:summary] if args.key?(:summary) end