Class: Fog::Google::Monitoring::TimeseriesDescriptors
- Inherits:
-
Collection
- Object
- Collection
- Fog::Google::Monitoring::TimeseriesDescriptors
- Defined in:
- lib/fog/google/models/monitoring/timeseries_descriptors.rb
Instance Method Summary collapse
-
#all(metric, youngest, options = {}) ⇒ Array<Fog::Google::Monitoring::TimeseriesDescriptor>
Lists all Timeseries Descriptors.
Instance Method Details
#all(metric, youngest, options = {}) ⇒ Array<Fog::Google::Monitoring::TimeseriesDescriptor>
Lists all Timeseries Descriptors.
24 25 26 27 |
# File 'lib/fog/google/models/monitoring/timeseries_descriptors.rb', line 24 def all(metric, youngest, = {}) data = service.list_timeseries_descriptors(metric, youngest, ).body['timeseries'] || [] load(data) end |