google-apis-analyticsdata_v1beta 0.37.0 → 0.39.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/analyticsdata_v1beta/classes.rb +37 -18
- data/lib/google/apis/analyticsdata_v1beta/gem_version.rb +2 -2
- data/lib/google/apis/analyticsdata_v1beta/representations.rb +14 -0
- data/lib/google/apis/analyticsdata_v1beta/service.rb +33 -33
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ce7c7d8d23807406e96e14e4462b765bc71a491f4865dbf3aad63d1e0c0e454d
|
4
|
+
data.tar.gz: d283d1def9f527b09971e34a18b8a9923a17af3d3dc68a4ee40ad4c84d143911
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 91099250c967576259d1bd47a0f00764177486ffa0f28afc5d680f5be7c1d238cae19151ef687a31c96ee8cebfd262f15b9ae215e90976e3eea6aaaf7d81a2be
|
7
|
+
data.tar.gz: e2936d20012b769ab551e6a268104131d5364493d3f127717776e99b2a937558fb4f85ca4afee9a556f726aa2d358ca874211179e76f4800811c89a800f9a9b6
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-analyticsdata_v1beta
|
2
2
|
|
3
|
+
### v0.39.0 (2024-11-24)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241117
|
6
|
+
|
7
|
+
### v0.38.0 (2024-09-01)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240825
|
10
|
+
|
3
11
|
### v0.37.0 (2024-08-04)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240731
|
@@ -882,6 +882,19 @@ module Google
|
|
882
882
|
end
|
883
883
|
end
|
884
884
|
|
885
|
+
# Filter for empty values.
|
886
|
+
class EmptyFilter
|
887
|
+
include Google::Apis::Core::Hashable
|
888
|
+
|
889
|
+
def initialize(**args)
|
890
|
+
update!(**args)
|
891
|
+
end
|
892
|
+
|
893
|
+
# Update properties of this object
|
894
|
+
def update!(**args)
|
895
|
+
end
|
896
|
+
end
|
897
|
+
|
885
898
|
# An expression to filter dimension or metric values.
|
886
899
|
class Filter
|
887
900
|
include Google::Apis::Core::Hashable
|
@@ -891,6 +904,11 @@ module Google
|
|
891
904
|
# @return [Google::Apis::AnalyticsdataV1beta::BetweenFilter]
|
892
905
|
attr_accessor :between_filter
|
893
906
|
|
907
|
+
# Filter for empty values.
|
908
|
+
# Corresponds to the JSON property `emptyFilter`
|
909
|
+
# @return [Google::Apis::AnalyticsdataV1beta::EmptyFilter]
|
910
|
+
attr_accessor :empty_filter
|
911
|
+
|
894
912
|
# The dimension name or metric name. In most methods, dimensions & metrics can
|
895
913
|
# be used for the first time in this field. However in a RunPivotReportRequest,
|
896
914
|
# this field must be additionally specified by name in the RunPivotReportRequest'
|
@@ -921,6 +939,7 @@ module Google
|
|
921
939
|
# Update properties of this object
|
922
940
|
def update!(**args)
|
923
941
|
@between_filter = args[:between_filter] if args.key?(:between_filter)
|
942
|
+
@empty_filter = args[:empty_filter] if args.key?(:empty_filter)
|
924
943
|
@field_name = args[:field_name] if args.key?(:field_name)
|
925
944
|
@in_list_filter = args[:in_list_filter] if args.key?(:in_list_filter)
|
926
945
|
@numeric_filter = args[:numeric_filter] if args.key?(:numeric_filter)
|
@@ -1990,8 +2009,8 @@ module Google
|
|
1990
2009
|
# If false or unspecified, each row with all metrics equal to 0 will not be
|
1991
2010
|
# returned. If true, these rows will be returned if they are not separately
|
1992
2011
|
# removed by a filter. Regardless of this `keep_empty_rows` setting, only data
|
1993
|
-
# recorded by the Google Analytics
|
1994
|
-
#
|
2012
|
+
# recorded by the Google Analytics property can be displayed in a report. For
|
2013
|
+
# example if a property never logs a `purchase` event, then a query for the `
|
1995
2014
|
# eventName` dimension and `eventCount` metric will not have a row eventName: "
|
1996
2015
|
# purchase" and eventCount: 0.
|
1997
2016
|
# Corresponds to the JSON property `keepEmptyRows`
|
@@ -2020,18 +2039,18 @@ module Google
|
|
2020
2039
|
# @return [Array<Google::Apis::AnalyticsdataV1beta::Pivot>]
|
2021
2040
|
attr_accessor :pivots
|
2022
2041
|
|
2023
|
-
# A Google Analytics
|
2024
|
-
#
|
2025
|
-
#
|
2026
|
-
#
|
2042
|
+
# A Google Analytics property identifier whose events are tracked. Specified in
|
2043
|
+
# the URL path and not the body. To learn more, see [where to find your Property
|
2044
|
+
# ID](https://developers.google.com/analytics/devguides/reporting/data/v1/
|
2045
|
+
# property-id). Within a batch request, this property should either be
|
2027
2046
|
# unspecified or consistent with the batch-level property. Example: properties/
|
2028
2047
|
# 1234
|
2029
2048
|
# Corresponds to the JSON property `property`
|
2030
2049
|
# @return [String]
|
2031
2050
|
attr_accessor :property
|
2032
2051
|
|
2033
|
-
# Toggles whether to return the current state of this Analytics
|
2034
|
-
# Quota is returned in [PropertyQuota](#PropertyQuota).
|
2052
|
+
# Toggles whether to return the current state of this Google Analytics property'
|
2053
|
+
# s quota. Quota is returned in [PropertyQuota](#PropertyQuota).
|
2035
2054
|
# Corresponds to the JSON property `returnPropertyQuota`
|
2036
2055
|
# @return [Boolean]
|
2037
2056
|
attr_accessor :return_property_quota
|
@@ -2192,8 +2211,8 @@ module Google
|
|
2192
2211
|
# @return [Array<Google::Apis::AnalyticsdataV1beta::OrderBy>]
|
2193
2212
|
attr_accessor :order_bys
|
2194
2213
|
|
2195
|
-
# Toggles whether to return the current state of this Analytics
|
2196
|
-
# Realtime quota. Quota is returned in [PropertyQuota](#PropertyQuota).
|
2214
|
+
# Toggles whether to return the current state of this Google Analytics property'
|
2215
|
+
# s Realtime quota. Quota is returned in [PropertyQuota](#PropertyQuota).
|
2197
2216
|
# Corresponds to the JSON property `returnPropertyQuota`
|
2198
2217
|
# @return [Boolean]
|
2199
2218
|
attr_accessor :return_property_quota
|
@@ -2349,8 +2368,8 @@ module Google
|
|
2349
2368
|
# If false or unspecified, each row with all metrics equal to 0 will not be
|
2350
2369
|
# returned. If true, these rows will be returned if they are not separately
|
2351
2370
|
# removed by a filter. Regardless of this `keep_empty_rows` setting, only data
|
2352
|
-
# recorded by the Google Analytics
|
2353
|
-
#
|
2371
|
+
# recorded by the Google Analytics property can be displayed in a report. For
|
2372
|
+
# example if a property never logs a `purchase` event, then a query for the `
|
2354
2373
|
# eventName` dimension and `eventCount` metric will not have a row eventName: "
|
2355
2374
|
# purchase" and eventCount: 0.
|
2356
2375
|
# Corresponds to the JSON property `keepEmptyRows`
|
@@ -2408,18 +2427,18 @@ module Google
|
|
2408
2427
|
# @return [Array<Google::Apis::AnalyticsdataV1beta::OrderBy>]
|
2409
2428
|
attr_accessor :order_bys
|
2410
2429
|
|
2411
|
-
# A Google Analytics
|
2412
|
-
#
|
2413
|
-
#
|
2414
|
-
#
|
2430
|
+
# A Google Analytics property identifier whose events are tracked. Specified in
|
2431
|
+
# the URL path and not the body. To learn more, see [where to find your Property
|
2432
|
+
# ID](https://developers.google.com/analytics/devguides/reporting/data/v1/
|
2433
|
+
# property-id). Within a batch request, this property should either be
|
2415
2434
|
# unspecified or consistent with the batch-level property. Example: properties/
|
2416
2435
|
# 1234
|
2417
2436
|
# Corresponds to the JSON property `property`
|
2418
2437
|
# @return [String]
|
2419
2438
|
attr_accessor :property
|
2420
2439
|
|
2421
|
-
# Toggles whether to return the current state of this Analytics
|
2422
|
-
# Quota is returned in [PropertyQuota](#PropertyQuota).
|
2440
|
+
# Toggles whether to return the current state of this Google Analytics property'
|
2441
|
+
# s quota. Quota is returned in [PropertyQuota](#PropertyQuota).
|
2423
2442
|
# Corresponds to the JSON property `returnPropertyQuota`
|
2424
2443
|
# @return [Boolean]
|
2425
2444
|
attr_accessor :return_property_quota
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AnalyticsdataV1beta
|
18
18
|
# Version of the google-apis-analyticsdata_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.39.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241117"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -178,6 +178,12 @@ module Google
|
|
178
178
|
include Google::Apis::Core::JsonObjectSupport
|
179
179
|
end
|
180
180
|
|
181
|
+
class EmptyFilter
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
|
+
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
185
|
+
end
|
186
|
+
|
181
187
|
class Filter
|
182
188
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
189
|
|
@@ -669,11 +675,19 @@ module Google
|
|
669
675
|
end
|
670
676
|
end
|
671
677
|
|
678
|
+
class EmptyFilter
|
679
|
+
# @private
|
680
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
681
|
+
end
|
682
|
+
end
|
683
|
+
|
672
684
|
class Filter
|
673
685
|
# @private
|
674
686
|
class Representation < Google::Apis::Core::JsonRepresentation
|
675
687
|
property :between_filter, as: 'betweenFilter', class: Google::Apis::AnalyticsdataV1beta::BetweenFilter, decorator: Google::Apis::AnalyticsdataV1beta::BetweenFilter::Representation
|
676
688
|
|
689
|
+
property :empty_filter, as: 'emptyFilter', class: Google::Apis::AnalyticsdataV1beta::EmptyFilter, decorator: Google::Apis::AnalyticsdataV1beta::EmptyFilter::Representation
|
690
|
+
|
677
691
|
property :field_name, as: 'fieldName'
|
678
692
|
property :in_list_filter, as: 'inListFilter', class: Google::Apis::AnalyticsdataV1beta::InListFilter, decorator: Google::Apis::AnalyticsdataV1beta::InListFilter::Representation
|
679
693
|
|
@@ -57,12 +57,12 @@ module Google
|
|
57
57
|
end
|
58
58
|
|
59
59
|
# Returns multiple pivot reports in a batch. All reports must be for the same
|
60
|
-
#
|
60
|
+
# Google Analytics property.
|
61
61
|
# @param [String] property
|
62
|
-
# A Google Analytics
|
63
|
-
#
|
64
|
-
#
|
65
|
-
#
|
62
|
+
# A Google Analytics property identifier whose events are tracked. Specified in
|
63
|
+
# the URL path and not the body. To learn more, see [where to find your Property
|
64
|
+
# ID](https://developers.google.com/analytics/devguides/reporting/data/v1/
|
65
|
+
# property-id). This property must be specified for the batch. The property
|
66
66
|
# within RunPivotReportRequest may either be unspecified or consistent with this
|
67
67
|
# property. Example: properties/1234
|
68
68
|
# @param [Google::Apis::AnalyticsdataV1beta::BatchRunPivotReportsRequest] batch_run_pivot_reports_request_object
|
@@ -95,13 +95,13 @@ module Google
|
|
95
95
|
execute_or_queue_command(command, &block)
|
96
96
|
end
|
97
97
|
|
98
|
-
# Returns multiple reports in a batch. All reports must be for the same
|
99
|
-
#
|
98
|
+
# Returns multiple reports in a batch. All reports must be for the same Google
|
99
|
+
# Analytics property.
|
100
100
|
# @param [String] property
|
101
|
-
# A Google Analytics
|
102
|
-
#
|
103
|
-
#
|
104
|
-
#
|
101
|
+
# A Google Analytics property identifier whose events are tracked. Specified in
|
102
|
+
# the URL path and not the body. To learn more, see [where to find your Property
|
103
|
+
# ID](https://developers.google.com/analytics/devguides/reporting/data/v1/
|
104
|
+
# property-id). This property must be specified for the batch. The property
|
105
105
|
# within RunReportRequest may either be unspecified or consistent with this
|
106
106
|
# property. Example: properties/1234
|
107
107
|
# @param [Google::Apis::AnalyticsdataV1beta::BatchRunReportsRequest] batch_run_reports_request_object
|
@@ -142,10 +142,10 @@ module Google
|
|
142
142
|
# the report is compatible. The Realtime and Core reports have different
|
143
143
|
# compatibility rules. This method checks compatibility for Core reports.
|
144
144
|
# @param [String] property
|
145
|
-
# A Google Analytics
|
146
|
-
#
|
147
|
-
#
|
148
|
-
#
|
145
|
+
# A Google Analytics property identifier whose events are tracked. To learn more,
|
146
|
+
# see [where to find your Property ID](https://developers.google.com/analytics/
|
147
|
+
# devguides/reporting/data/v1/property-id). `property` should be the same value
|
148
|
+
# as in your `runReport` request. Example: properties/1234
|
149
149
|
# @param [Google::Apis::AnalyticsdataV1beta::CheckCompatibilityRequest] check_compatibility_request_object
|
150
150
|
# @param [String] fields
|
151
151
|
# Selector specifying which fields to include in a partial response.
|
@@ -178,7 +178,7 @@ module Google
|
|
178
178
|
|
179
179
|
# Returns metadata for dimensions and metrics available in reporting methods.
|
180
180
|
# Used to explore the dimensions and metrics. In this method, a Google Analytics
|
181
|
-
#
|
181
|
+
# property identifier is specified in the request, and the metadata response
|
182
182
|
# includes Custom dimensions and metrics as well as Universal metadata. For
|
183
183
|
# example if a custom metric with parameter name `levels_unlocked` is registered
|
184
184
|
# to a property, the Metadata response will contain `customEvent:levels_unlocked`
|
@@ -187,11 +187,11 @@ module Google
|
|
187
187
|
# @param [String] name
|
188
188
|
# Required. The resource name of the metadata to retrieve. This name field is
|
189
189
|
# specified in the URL path and not URL parameters. Property is a numeric Google
|
190
|
-
# Analytics
|
191
|
-
#
|
192
|
-
#
|
193
|
-
#
|
194
|
-
#
|
190
|
+
# Analytics property identifier. To learn more, see [where to find your Property
|
191
|
+
# ID](https://developers.google.com/analytics/devguides/reporting/data/v1/
|
192
|
+
# property-id). Example: properties/1234/metadata Set the Property ID to 0 for
|
193
|
+
# dimensions and metrics common to all properties. In this special mode, this
|
194
|
+
# method will not return custom dimensions and metrics.
|
195
195
|
# @param [String] fields
|
196
196
|
# Selector specifying which fields to include in a partial response.
|
197
197
|
# @param [String] quota_user
|
@@ -224,10 +224,10 @@ module Google
|
|
224
224
|
# pivot report, dimensions are only visible if they are included in a pivot.
|
225
225
|
# Multiple pivots can be specified to further dissect your data.
|
226
226
|
# @param [String] property
|
227
|
-
# A Google Analytics
|
228
|
-
#
|
229
|
-
#
|
230
|
-
#
|
227
|
+
# A Google Analytics property identifier whose events are tracked. Specified in
|
228
|
+
# the URL path and not the body. To learn more, see [where to find your Property
|
229
|
+
# ID](https://developers.google.com/analytics/devguides/reporting/data/v1/
|
230
|
+
# property-id). Within a batch request, this property should either be
|
231
231
|
# unspecified or consistent with the batch-level property. Example: properties/
|
232
232
|
# 1234
|
233
233
|
# @param [Google::Apis::AnalyticsdataV1beta::RunPivotReportRequest] run_pivot_report_request_object
|
@@ -268,10 +268,10 @@ module Google
|
|
268
268
|
# understanding responses, see [Creating a Realtime Report](https://developers.
|
269
269
|
# google.com/analytics/devguides/reporting/data/v1/realtime-basics).
|
270
270
|
# @param [String] property
|
271
|
-
# A Google Analytics
|
272
|
-
#
|
273
|
-
#
|
274
|
-
#
|
271
|
+
# A Google Analytics property identifier whose events are tracked. Specified in
|
272
|
+
# the URL path and not the body. To learn more, see [where to find your Property
|
273
|
+
# ID](https://developers.google.com/analytics/devguides/reporting/data/v1/
|
274
|
+
# property-id). Example: properties/1234
|
275
275
|
# @param [Google::Apis::AnalyticsdataV1beta::RunRealtimeReportRequest] run_realtime_report_request_object
|
276
276
|
# @param [String] fields
|
277
277
|
# Selector specifying which fields to include in a partial response.
|
@@ -312,10 +312,10 @@ module Google
|
|
312
312
|
# see [Creating a Report](https://developers.google.com/analytics/devguides/
|
313
313
|
# reporting/data/v1/basics).
|
314
314
|
# @param [String] property
|
315
|
-
# A Google Analytics
|
316
|
-
#
|
317
|
-
#
|
318
|
-
#
|
315
|
+
# A Google Analytics property identifier whose events are tracked. Specified in
|
316
|
+
# the URL path and not the body. To learn more, see [where to find your Property
|
317
|
+
# ID](https://developers.google.com/analytics/devguides/reporting/data/v1/
|
318
|
+
# property-id). Within a batch request, this property should either be
|
319
319
|
# unspecified or consistent with the batch-level property. Example: properties/
|
320
320
|
# 1234
|
321
321
|
# @param [Google::Apis::AnalyticsdataV1beta::RunReportRequest] run_report_request_object
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-analyticsdata_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.39.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-12-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticsdata_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsdata_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsdata_v1beta/v0.39.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticsdata_v1beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.22
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Google Analytics Data API V1beta
|