class Google::Apis::MonitoringV3::CreateTimeSeriesSummary
Summary of the result of a failed request to write data to a time series.
Attributes
errors[RW]
The number of points that failed to be written. Order is not guaranteed. Corresponds to the JSON property `errors` @return [Array<Google::Apis::MonitoringV3::Error>]
success_point_count[RW]
The number of points that were successfully written. Corresponds to the JSON property `successPointCount` @return [Fixnum]
total_point_count[RW]
The number of points in the request. Corresponds to the JSON property `totalPointCount` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/monitoring_v3/classes.rb, line 956 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 961 def update!(**args) @errors = args[:errors] if args.key?(:errors) @success_point_count = args[:success_point_count] if args.key?(:success_point_count) @total_point_count = args[:total_point_count] if args.key?(:total_point_count) end