google-apis-analyticsdata_v1beta 0.10.0 → 0.11.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: f056cec158ac73ff355c4cf2278d365bd1ad1760e0ab0399d498df563275fb8c
|
|
4
|
+
data.tar.gz: 3614d539f03d0bb7cee3246f5ff9c832abe79f9e0feae0288864fd3a4790f6b0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0c57284ce23445112f53d7c03d5e12c65675aa4ecd7e07417b0b740ef4708be2fbbe3e4b7b325b41e8debcf61a02958ef440f2ba9f80ad524a8e8fe4d2da61ed
|
|
7
|
+
data.tar.gz: 9a00e2a099e943c0235bfa99bea7552a75189e2ab02f9905de218c44b348df4fcfce581d0b144a092e76aba8d04537e0b702a3b61f990468effc83a3fcb1ab0d
|
data/CHANGELOG.md
CHANGED
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
|
|
@@ -1483,17 +1483,17 @@ module Google
|
|
|
1483
1483
|
# @return [Google::Apis::AnalyticsdataV1beta::SchemaRestrictionResponse]
|
|
1484
1484
|
attr_accessor :schema_restriction_response
|
|
1485
1485
|
|
|
1486
|
-
# If `
|
|
1487
|
-
# only returns data that meets the minimum aggregation thresholds.
|
|
1488
|
-
#
|
|
1489
|
-
#
|
|
1490
|
-
#
|
|
1491
|
-
#
|
|
1492
|
-
#
|
|
1493
|
-
# Corresponds to the JSON property `
|
|
1486
|
+
# If `subjectToThresholding` is true, this report is subject to thresholding and
|
|
1487
|
+
# only returns data that meets the minimum aggregation thresholds. It is
|
|
1488
|
+
# possible for a request to be subject to thresholding thresholding and no data
|
|
1489
|
+
# is absent from the report, and this happens when all data is above the
|
|
1490
|
+
# thresholds. To learn more, see [Data thresholds](https://support.google.com/
|
|
1491
|
+
# analytics/answer/9383630) and [About Demographics and Interests](https://
|
|
1492
|
+
# support.google.com/analytics/answer/2799357).
|
|
1493
|
+
# Corresponds to the JSON property `subjectToThresholding`
|
|
1494
1494
|
# @return [Boolean]
|
|
1495
|
-
attr_accessor :
|
|
1496
|
-
alias_method :
|
|
1495
|
+
attr_accessor :subject_to_thresholding
|
|
1496
|
+
alias_method :subject_to_thresholding?, :subject_to_thresholding
|
|
1497
1497
|
|
|
1498
1498
|
# The property's current timezone. Intended to be used to interpret time-based
|
|
1499
1499
|
# dimensions like `hour` and `minute`. Formatted as strings from the IANA Time
|
|
@@ -1513,7 +1513,7 @@ module Google
|
|
|
1513
1513
|
@data_loss_from_other_row = args[:data_loss_from_other_row] if args.key?(:data_loss_from_other_row)
|
|
1514
1514
|
@empty_reason = args[:empty_reason] if args.key?(:empty_reason)
|
|
1515
1515
|
@schema_restriction_response = args[:schema_restriction_response] if args.key?(:schema_restriction_response)
|
|
1516
|
-
@
|
|
1516
|
+
@subject_to_thresholding = args[:subject_to_thresholding] if args.key?(:subject_to_thresholding)
|
|
1517
1517
|
@time_zone = args[:time_zone] if args.key?(:time_zone)
|
|
1518
1518
|
end
|
|
1519
1519
|
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.11.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20211230"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -777,7 +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 :
|
|
780
|
+
property :subject_to_thresholding, as: 'subjectToThresholding'
|
|
781
781
|
property :time_zone, as: 'timeZone'
|
|
782
782
|
end
|
|
783
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.11.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-01-10 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.11.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.4
|
|
79
79
|
signing_key:
|
|
80
80
|
specification_version: 4
|
|
81
81
|
summary: Simple REST client for Google Analytics Data API V1beta
|