google-apis-analyticsdata_v1beta 0.9.0 → 0.12.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eb4c582515c6db87cdd7a604aaa8c73f8009711307b423f00b85d416d1467c93
|
|
4
|
+
data.tar.gz: 68fa7d4055124f9b96ec9fc06843c1a5987a6a0f3ba5248524d14f22005a6d4d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 10ee790309cd7a931a99c91da1a953a5306ec416f3c97c770b80f7295b466392b7f7006a3a983c7e54f9adabdcf6f149e90fd3e58b5b8443b6e92cb38e84d9c2
|
|
7
|
+
data.tar.gz: '049d96f72b7a15266feed7ff84e97f98e02788976b5f6063e9cf047bf5ae7f0dc036fe4cecb64fab5c57d66d73a0666688f0102beea73ab2629e580f9c0ddcbb'
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Release history for google-apis-analyticsdata_v1beta
|
|
2
2
|
|
|
3
|
+
### v0.12.0 (2022-03-24)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20220322
|
|
6
|
+
* Regenerated using generator version 0.4.1
|
|
7
|
+
|
|
8
|
+
### v0.11.0 (2022-01-05)
|
|
9
|
+
|
|
10
|
+
* Regenerated from discovery document revision 20211230
|
|
11
|
+
|
|
12
|
+
### v0.10.0 (2021-12-08)
|
|
13
|
+
|
|
14
|
+
* Regenerated from discovery document revision 20211203
|
|
15
|
+
|
|
3
16
|
### v0.9.0 (2021-11-11)
|
|
4
17
|
|
|
5
18
|
* Regenerated from discovery document revision 20211108
|
data/OVERVIEW.md
CHANGED
|
@@ -51,7 +51,7 @@ require "google/apis/analyticsdata_v1beta"
|
|
|
51
51
|
client = Google::Apis::AnalyticsdataV1beta::AnalyticsDataService.new
|
|
52
52
|
|
|
53
53
|
# Authenticate calls
|
|
54
|
-
client.
|
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
|
55
55
|
```
|
|
56
56
|
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
|
@@ -488,7 +488,7 @@ module Google
|
|
|
488
488
|
|
|
489
489
|
# Dimensions are attributes of your data. For example, the dimension city
|
|
490
490
|
# indicates the city from which an event originates. Dimension values in report
|
|
491
|
-
# responses are strings; for example, city could be "Paris" or "New York".
|
|
491
|
+
# responses are strings; for example, the city could be "Paris" or "New York".
|
|
492
492
|
# Requests are allowed up to 9 dimensions.
|
|
493
493
|
class Dimension
|
|
494
494
|
include Google::Apis::Core::Hashable
|
|
@@ -1176,7 +1176,9 @@ module Google
|
|
|
1176
1176
|
end
|
|
1177
1177
|
end
|
|
1178
1178
|
|
|
1179
|
-
#
|
|
1179
|
+
# Order bys define how rows will be sorted in the response. For example,
|
|
1180
|
+
# ordering rows by descending event count is one ordering, and ordering rows by
|
|
1181
|
+
# the event name string is a different ordering.
|
|
1180
1182
|
class OrderBy
|
|
1181
1183
|
include Google::Apis::Core::Hashable
|
|
1182
1184
|
|
|
@@ -1483,6 +1485,18 @@ module Google
|
|
|
1483
1485
|
# @return [Google::Apis::AnalyticsdataV1beta::SchemaRestrictionResponse]
|
|
1484
1486
|
attr_accessor :schema_restriction_response
|
|
1485
1487
|
|
|
1488
|
+
# If `subjectToThresholding` is true, this report is subject to thresholding and
|
|
1489
|
+
# only returns data that meets the minimum aggregation thresholds. It is
|
|
1490
|
+
# possible for a request to be subject to thresholding thresholding and no data
|
|
1491
|
+
# is absent from the report, and this happens when all data is above the
|
|
1492
|
+
# thresholds. To learn more, see [Data thresholds](https://support.google.com/
|
|
1493
|
+
# analytics/answer/9383630) and [About Demographics and Interests](https://
|
|
1494
|
+
# support.google.com/analytics/answer/2799357).
|
|
1495
|
+
# Corresponds to the JSON property `subjectToThresholding`
|
|
1496
|
+
# @return [Boolean]
|
|
1497
|
+
attr_accessor :subject_to_thresholding
|
|
1498
|
+
alias_method :subject_to_thresholding?, :subject_to_thresholding
|
|
1499
|
+
|
|
1486
1500
|
# The property's current timezone. Intended to be used to interpret time-based
|
|
1487
1501
|
# dimensions like `hour` and `minute`. Formatted as strings from the IANA Time
|
|
1488
1502
|
# Zone database (https://www.iana.org/time-zones); for example "America/New_York"
|
|
@@ -1501,6 +1515,7 @@ module Google
|
|
|
1501
1515
|
@data_loss_from_other_row = args[:data_loss_from_other_row] if args.key?(:data_loss_from_other_row)
|
|
1502
1516
|
@empty_reason = args[:empty_reason] if args.key?(:empty_reason)
|
|
1503
1517
|
@schema_restriction_response = args[:schema_restriction_response] if args.key?(:schema_restriction_response)
|
|
1518
|
+
@subject_to_thresholding = args[:subject_to_thresholding] if args.key?(:subject_to_thresholding)
|
|
1504
1519
|
@time_zone = args[:time_zone] if args.key?(:time_zone)
|
|
1505
1520
|
end
|
|
1506
1521
|
end
|
|
@@ -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.12.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.4.
|
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20220322"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -777,6 +777,7 @@ module Google
|
|
|
777
777
|
property :empty_reason, as: 'emptyReason'
|
|
778
778
|
property :schema_restriction_response, as: 'schemaRestrictionResponse', class: Google::Apis::AnalyticsdataV1beta::SchemaRestrictionResponse, decorator: Google::Apis::AnalyticsdataV1beta::SchemaRestrictionResponse::Representation
|
|
779
779
|
|
|
780
|
+
property :subject_to_thresholding, as: 'subjectToThresholding'
|
|
780
781
|
property :time_zone, as: 'timeZone'
|
|
781
782
|
end
|
|
782
783
|
end
|
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.12.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:
|
|
11
|
+
date: 2022-03-28 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.12.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.
|
|
78
|
+
rubygems_version: 3.3.5
|
|
79
79
|
signing_key:
|
|
80
80
|
specification_version: 4
|
|
81
81
|
summary: Simple REST client for Google Analytics Data API V1beta
|