Class: Google::Apis::AnalyticsdataV1alpha::RunRealtimeReportRequest
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsdataV1alpha::RunRealtimeReportRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/analyticsdata_v1alpha/classes.rb,
generated/google/apis/analyticsdata_v1alpha/representations.rb,
generated/google/apis/analyticsdata_v1alpha/representations.rb
Overview
The request to generate a realtime report.
Instance Attribute Summary collapse
-
#dimension_filter ⇒ Google::Apis::AnalyticsdataV1alpha::FilterExpression
To express dimension or metric filters.
-
#dimensions ⇒ Array<Google::Apis::AnalyticsdataV1alpha::Dimension>
The dimensions requested and displayed.
-
#limit ⇒ Fixnum
The number of rows to return.
-
#metric_aggregations ⇒ Array<String>
Aggregation of metrics.
-
#metric_filter ⇒ Google::Apis::AnalyticsdataV1alpha::FilterExpression
To express dimension or metric filters.
-
#metrics ⇒ Array<Google::Apis::AnalyticsdataV1alpha::Metric>
The metrics requested and displayed.
-
#order_bys ⇒ Array<Google::Apis::AnalyticsdataV1alpha::OrderBy>
Specifies how rows are ordered in the response.
-
#return_property_quota ⇒ Boolean
(also: #return_property_quota?)
Toggles whether to return the current state of this Analytics Property's Realtime quota.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RunRealtimeReportRequest
constructor
A new instance of RunRealtimeReportRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RunRealtimeReportRequest
Returns a new instance of RunRealtimeReportRequest.
1516 1517 1518 |
# File 'generated/google/apis/analyticsdata_v1alpha/classes.rb', line 1516 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dimension_filter ⇒ Google::Apis::AnalyticsdataV1alpha::FilterExpression
To express dimension or metric filters. The fields in the same
FilterExpression need to be either all dimensions or all metrics.
Corresponds to the JSON property dimensionFilter
1474 1475 1476 |
# File 'generated/google/apis/analyticsdata_v1alpha/classes.rb', line 1474 def dimension_filter @dimension_filter end |
#dimensions ⇒ Array<Google::Apis::AnalyticsdataV1alpha::Dimension>
The dimensions requested and displayed.
Corresponds to the JSON property dimensions
1479 1480 1481 |
# File 'generated/google/apis/analyticsdata_v1alpha/classes.rb', line 1479 def dimensions @dimensions end |
#limit ⇒ Fixnum
The number of rows to return. If unspecified, 10 rows are returned. If -1, all
rows are returned.
Corresponds to the JSON property limit
1485 1486 1487 |
# File 'generated/google/apis/analyticsdata_v1alpha/classes.rb', line 1485 def limit @limit end |
#metric_aggregations ⇒ Array<String>
Aggregation of metrics. Aggregated metric values will be shown in rows where
the dimension_values are set to "RESERVED_(MetricAggregation)".
Corresponds to the JSON property metricAggregations
1491 1492 1493 |
# File 'generated/google/apis/analyticsdata_v1alpha/classes.rb', line 1491 def metric_aggregations @metric_aggregations end |
#metric_filter ⇒ Google::Apis::AnalyticsdataV1alpha::FilterExpression
To express dimension or metric filters. The fields in the same
FilterExpression need to be either all dimensions or all metrics.
Corresponds to the JSON property metricFilter
1497 1498 1499 |
# File 'generated/google/apis/analyticsdata_v1alpha/classes.rb', line 1497 def metric_filter @metric_filter end |
#metrics ⇒ Array<Google::Apis::AnalyticsdataV1alpha::Metric>
The metrics requested and displayed.
Corresponds to the JSON property metrics
1502 1503 1504 |
# File 'generated/google/apis/analyticsdata_v1alpha/classes.rb', line 1502 def metrics @metrics end |
#order_bys ⇒ Array<Google::Apis::AnalyticsdataV1alpha::OrderBy>
Specifies how rows are ordered in the response.
Corresponds to the JSON property orderBys
1507 1508 1509 |
# File 'generated/google/apis/analyticsdata_v1alpha/classes.rb', line 1507 def order_bys @order_bys end |
#return_property_quota ⇒ Boolean Also known as: return_property_quota?
Toggles whether to return the current state of this Analytics Property's
Realtime quota. Quota is returned in PropertyQuota.
Corresponds to the JSON property returnPropertyQuota
1513 1514 1515 |
# File 'generated/google/apis/analyticsdata_v1alpha/classes.rb', line 1513 def return_property_quota @return_property_quota end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 |
# File 'generated/google/apis/analyticsdata_v1alpha/classes.rb', line 1521 def update!(**args) @dimension_filter = args[:dimension_filter] if args.key?(:dimension_filter) @dimensions = args[:dimensions] if args.key?(:dimensions) @limit = args[:limit] if args.key?(:limit) @metric_aggregations = args[:metric_aggregations] if args.key?(:metric_aggregations) @metric_filter = args[:metric_filter] if args.key?(:metric_filter) @metrics = args[:metrics] if args.key?(:metrics) @order_bys = args[:order_bys] if args.key?(:order_bys) @return_property_quota = args[:return_property_quota] if args.key?(:return_property_quota) end |