Class: Google::Apis::MonitoringV3::CreateTimeSeriesSummary
- Inherits:
-
Object
- Object
- Google::Apis::MonitoringV3::CreateTimeSeriesSummary
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/monitoring_v3/classes.rb,
generated/google/apis/monitoring_v3/representations.rb,
generated/google/apis/monitoring_v3/representations.rb
Overview
Summary of the result of a failed request to write data to a time series.
Instance Attribute Summary collapse
-
#errors ⇒ Array<Google::Apis::MonitoringV3::Error>
The number of points that failed to be written.
-
#success_point_count ⇒ Fixnum
The number of points that were successfully written.
-
#total_point_count ⇒ Fixnum
The number of points in the request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CreateTimeSeriesSummary
constructor
A new instance of CreateTimeSeriesSummary.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CreateTimeSeriesSummary
Returns a new instance of CreateTimeSeriesSummary.
843 844 845 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 843 def initialize(**args) update!(**args) end |
Instance Attribute Details
#errors ⇒ Array<Google::Apis::MonitoringV3::Error>
The number of points that failed to be written. Order is not guaranteed.
Corresponds to the JSON property errors
831 832 833 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 831 def errors @errors end |
#success_point_count ⇒ Fixnum
The number of points that were successfully written.
Corresponds to the JSON property successPointCount
836 837 838 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 836 def success_point_count @success_point_count end |
#total_point_count ⇒ Fixnum
The number of points in the request.
Corresponds to the JSON property totalPointCount
841 842 843 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 841 def total_point_count @total_point_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
848 849 850 851 852 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 848 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 |