Class: Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaExportAnalyticsMetricsRequest
- Inherits:
-
Object
- Object
- Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaExportAnalyticsMetricsRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/retail_v2alpha/classes.rb,
lib/google/apis/retail_v2alpha/representations.rb,
lib/google/apis/retail_v2alpha/representations.rb
Overview
Request message for the ExportAnalyticsMetrics
method.
Instance Attribute Summary collapse
-
#filter ⇒ String
A filtering expression to specify restrictions on returned metrics.
-
#output_config ⇒ Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaOutputConfig
The output configuration setting.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudRetailV2alphaExportAnalyticsMetricsRequest
constructor
A new instance of GoogleCloudRetailV2alphaExportAnalyticsMetricsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRetailV2alphaExportAnalyticsMetricsRequest
Returns a new instance of GoogleCloudRetailV2alphaExportAnalyticsMetricsRequest.
2918 2919 2920 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 2918 def initialize(**args) update!(**args) end |
Instance Attribute Details
#filter ⇒ String
A filtering expression to specify restrictions on returned metrics. The
expression is a sequence of terms. Each term applies a restriction to the
returned metrics. Use this expression to restrict results to a specific time
range. Currently we expect only one types of fields: * timestamp
: This can
be specified twice, once with a less than operator and once with a greater
than operator. The timestamp
restriction should result in one, contiguous,
valid, timestamp
range. Some examples of valid filters expressions: *
Example 1: timestamp > "2012-04-23T18:25:43.511Z" timestamp < "2012-04-23T18:
30:43.511Z"
* Example 2: timestamp > "2012-04-23T18:25:43.511Z"
Corresponds to the JSON property filter
2911 2912 2913 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 2911 def filter @filter end |
#output_config ⇒ Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaOutputConfig
The output configuration setting.
Corresponds to the JSON property outputConfig
2916 2917 2918 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 2916 def output_config @output_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2923 2924 2925 2926 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 2923 def update!(**args) @filter = args[:filter] if args.key?(:filter) @output_config = args[:output_config] if args.key?(:output_config) end |