Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1QueryTimeSeriesStatsResponseSequence
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1QueryTimeSeriesStatsResponseSequence
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb
Overview
A sequence of time series.
Instance Attribute Summary collapse
-
#dimensions ⇒ Hash<String,String>
Map of dimensions and their values that uniquely identifies a time series sequence.
-
#points ⇒ Array<Array<Object>>
List of points.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1QueryTimeSeriesStatsResponseSequence
constructor
A new instance of GoogleCloudApigeeV1QueryTimeSeriesStatsResponseSequence.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1QueryTimeSeriesStatsResponseSequence
Returns a new instance of GoogleCloudApigeeV1QueryTimeSeriesStatsResponseSequence.
8266 8267 8268 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 8266 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dimensions ⇒ Hash<String,String>
Map of dimensions and their values that uniquely identifies a time series
sequence.
Corresponds to the JSON property dimensions
8259 8260 8261 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 8259 def dimensions @dimensions end |
#points ⇒ Array<Array<Object>>
List of points. First value of each inner list is a timestamp.
Corresponds to the JSON property points
8264 8265 8266 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 8264 def points @points end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8271 8272 8273 8274 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 8271 def update!(**args) @dimensions = args[:dimensions] if args.key?(:dimensions) @points = args[:points] if args.key?(:points) end |