Class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSet
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSet
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/analyticsadmin_v1alpha/classes.rb,
lib/google/apis/analyticsadmin_v1alpha/representations.rb,
lib/google/apis/analyticsadmin_v1alpha/representations.rb
Overview
A resource message representing a GA4 ExpandedDataSet.
Instance Attribute Summary collapse
-
#data_collection_start_time ⇒ String
Output only.
-
#description ⇒ String
Optional.
-
#dimension_filter_expression ⇒ Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpression
A logical expression of EnhancedDataSet dimension filters.
-
#dimension_names ⇒ Array<String>
Immutable.
-
#display_name ⇒ String
Required.
-
#metric_names ⇒ Array<String>
Immutable.
-
#name ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaExpandedDataSet
constructor
A new instance of GoogleAnalyticsAdminV1alphaExpandedDataSet.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaExpandedDataSet
Returns a new instance of GoogleAnalyticsAdminV1alphaExpandedDataSet.
2457 2458 2459 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 2457 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_collection_start_time ⇒ String
Output only. Time when expanded data set began (or will begin) collecing data.
Corresponds to the JSON property dataCollectionStartTime
2420 2421 2422 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 2420 def data_collection_start_time @data_collection_start_time end |
#description ⇒ String
Optional. The description of the ExpandedDataSet. Max 50 chars.
Corresponds to the JSON property description
2425 2426 2427 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 2425 def description @description end |
#dimension_filter_expression ⇒ Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpression
A logical expression of EnhancedDataSet dimension filters.
Corresponds to the JSON property dimensionFilterExpression
2430 2431 2432 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 2430 def dimension_filter_expression @dimension_filter_expression end |
#dimension_names ⇒ Array<String>
Immutable. The list of dimensions included in the ExpandedDataSet. See the
API Dimensions for the list of dimension names.
Corresponds to the JSON property dimensionNames
2437 2438 2439 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 2437 def dimension_names @dimension_names end |
#display_name ⇒ String
Required. The display name of the ExpandedDataSet. Max 200 chars.
Corresponds to the JSON property displayName
2442 2443 2444 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 2442 def display_name @display_name end |
#metric_names ⇒ Array<String>
Immutable. The list of metrics included in the ExpandedDataSet. See the API
Metrics for the list of dimension names.
Corresponds to the JSON property metricNames
2449 2450 2451 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 2449 def metric_names @metric_names end |
#name ⇒ String
Output only. The resource name for this ExpandedDataSet resource. Format:
properties/property_id/expandedDataSets/expanded_data_set
Corresponds to the JSON property name
2455 2456 2457 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 2455 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2462 2463 2464 2465 2466 2467 2468 2469 2470 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 2462 def update!(**args) @data_collection_start_time = args[:data_collection_start_time] if args.key?(:data_collection_start_time) @description = args[:description] if args.key?(:description) @dimension_filter_expression = args[:dimension_filter_expression] if args.key?(:dimension_filter_expression) @dimension_names = args[:dimension_names] if args.key?(:dimension_names) @display_name = args[:display_name] if args.key?(:display_name) @metric_names = args[:metric_names] if args.key?(:metric_names) @name = args[:name] if args.key?(:name) end |