Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestGroupBy
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestGroupBy
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1alpha/classes.rb,
lib/google/apis/integrations_v1alpha/representations.rb,
lib/google/apis/integrations_v1alpha/representations.rb
Overview
MashQuery GroupBy parameters.
Instance Attribute Summary collapse
-
#fields ⇒ Array<String>
Optional.
-
#reducer ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestGroupBy
constructor
A new instance of GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestGroupBy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestGroupBy
Returns a new instance of GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestGroupBy.
7777 7778 7779 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7777 def initialize(**args) update!(**args) end |
Instance Attribute Details
#fields ⇒ Array<String>
Optional. optional, metrics list for GroupBy.
Corresponds to the JSON property fields
7770 7771 7772 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7770 def fields @fields end |
#reducer ⇒ String
Optional. optional, reduce function for GroupBy.
Corresponds to the JSON property reducer
7775 7776 7777 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7775 def reducer @reducer end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7782 7783 7784 7785 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7782 def update!(**args) @fields = args[:fields] if args.key?(:fields) @reducer = args[:reducer] if args.key?(:reducer) end |