google-apis-analyticsdata_v1alpha 0.5.0 → 0.6.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: 7333aeceda75e5c79a5294bfc1b36f4210555ca6fb70b597dd8039f65d8c6a76
|
4
|
+
data.tar.gz: 38644756403df9a8d84574fe3532f8eda74ed844372cbf39164427fd6d27d24d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: efada29e71ca0d2f535d920173f41d1d984b16cb6c9f957bb5124c902c717c036c3dd33b4ab16e796752736f2edd171cc7ecf1828b27bd6e5aaa3e91c941d711
|
7
|
+
data.tar.gz: 17d826301d54ae60406ebf465663b19488e9025435e8fa3fd3df90f686246b39f0da60cfd30c42e0b31047d16e74502578dfae62fb068a3940099739a27e5f6d
|
data/CHANGELOG.md
CHANGED
@@ -52,6 +52,13 @@ module Google
|
|
52
52
|
class BatchRunPivotReportsResponse
|
53
53
|
include Google::Apis::Core::Hashable
|
54
54
|
|
55
|
+
# Identifies what kind of resource this message is. This `kind` is always the
|
56
|
+
# fixed string "analyticsData#batchRunPivotReports". Useful to distinguish
|
57
|
+
# between response types in JSON.
|
58
|
+
# Corresponds to the JSON property `kind`
|
59
|
+
# @return [String]
|
60
|
+
attr_accessor :kind
|
61
|
+
|
55
62
|
# Individual responses. Each response has a separate pivot report request.
|
56
63
|
# Corresponds to the JSON property `pivotReports`
|
57
64
|
# @return [Array<Google::Apis::AnalyticsdataV1alpha::RunPivotReportResponse>]
|
@@ -63,6 +70,7 @@ module Google
|
|
63
70
|
|
64
71
|
# Update properties of this object
|
65
72
|
def update!(**args)
|
73
|
+
@kind = args[:kind] if args.key?(:kind)
|
66
74
|
@pivot_reports = args[:pivot_reports] if args.key?(:pivot_reports)
|
67
75
|
end
|
68
76
|
end
|
@@ -97,6 +105,13 @@ module Google
|
|
97
105
|
class BatchRunReportsResponse
|
98
106
|
include Google::Apis::Core::Hashable
|
99
107
|
|
108
|
+
# Identifies what kind of resource this message is. This `kind` is always the
|
109
|
+
# fixed string "analyticsData#batchRunReports". Useful to distinguish between
|
110
|
+
# response types in JSON.
|
111
|
+
# Corresponds to the JSON property `kind`
|
112
|
+
# @return [String]
|
113
|
+
attr_accessor :kind
|
114
|
+
|
100
115
|
# Individual responses. Each response has a separate report request.
|
101
116
|
# Corresponds to the JSON property `reports`
|
102
117
|
# @return [Array<Google::Apis::AnalyticsdataV1alpha::RunReportResponse>]
|
@@ -108,6 +123,7 @@ module Google
|
|
108
123
|
|
109
124
|
# Update properties of this object
|
110
125
|
def update!(**args)
|
126
|
+
@kind = args[:kind] if args.key?(:kind)
|
111
127
|
@reports = args[:reports] if args.key?(:reports)
|
112
128
|
end
|
113
129
|
end
|
@@ -1014,11 +1030,11 @@ module Google
|
|
1014
1030
|
# @return [Array<String>]
|
1015
1031
|
attr_accessor :field_names
|
1016
1032
|
|
1017
|
-
# The number of rows to return in this pivot.
|
1018
|
-
#
|
1019
|
-
# each `pivot` in a `RunPivotReportRequest` must not exceed 100,000.
|
1020
|
-
# a two pivot request with `limit: 1000` in each pivot will fail
|
1021
|
-
# product is `1,000,000`.
|
1033
|
+
# The number of rows to return in this pivot. The `limit` parameter is required.
|
1034
|
+
# A `limit` of 10,000 is common for single pivot requests. The product of the `
|
1035
|
+
# limit` for each `pivot` in a `RunPivotReportRequest` must not exceed 100,000.
|
1036
|
+
# For example, a two pivot request with `limit: 1000` in each pivot will fail
|
1037
|
+
# because the product is `1,000,000`.
|
1022
1038
|
# Corresponds to the JSON property `limit`
|
1023
1039
|
# @return [Fixnum]
|
1024
1040
|
attr_accessor :limit
|
@@ -1176,6 +1192,11 @@ module Google
|
|
1176
1192
|
# @return [Google::Apis::AnalyticsdataV1alpha::QuotaStatus]
|
1177
1193
|
attr_accessor :concurrent_requests
|
1178
1194
|
|
1195
|
+
# Current state for a particular quota group.
|
1196
|
+
# Corresponds to the JSON property `potentiallyThresholdedRequestsPerHour`
|
1197
|
+
# @return [Google::Apis::AnalyticsdataV1alpha::QuotaStatus]
|
1198
|
+
attr_accessor :potentially_thresholded_requests_per_hour
|
1199
|
+
|
1179
1200
|
# Current state for a particular quota group.
|
1180
1201
|
# Corresponds to the JSON property `serverErrorsPerProjectPerHour`
|
1181
1202
|
# @return [Google::Apis::AnalyticsdataV1alpha::QuotaStatus]
|
@@ -1198,6 +1219,7 @@ module Google
|
|
1198
1219
|
# Update properties of this object
|
1199
1220
|
def update!(**args)
|
1200
1221
|
@concurrent_requests = args[:concurrent_requests] if args.key?(:concurrent_requests)
|
1222
|
+
@potentially_thresholded_requests_per_hour = args[:potentially_thresholded_requests_per_hour] if args.key?(:potentially_thresholded_requests_per_hour)
|
1201
1223
|
@server_errors_per_project_per_hour = args[:server_errors_per_project_per_hour] if args.key?(:server_errors_per_project_per_hour)
|
1202
1224
|
@tokens_per_day = args[:tokens_per_day] if args.key?(:tokens_per_day)
|
1203
1225
|
@tokens_per_hour = args[:tokens_per_hour] if args.key?(:tokens_per_hour)
|
@@ -1407,6 +1429,13 @@ module Google
|
|
1407
1429
|
# @return [Array<Google::Apis::AnalyticsdataV1alpha::DimensionHeader>]
|
1408
1430
|
attr_accessor :dimension_headers
|
1409
1431
|
|
1432
|
+
# Identifies what kind of resource this message is. This `kind` is always the
|
1433
|
+
# fixed string "analyticsData#runPivotReport". Useful to distinguish between
|
1434
|
+
# response types in JSON.
|
1435
|
+
# Corresponds to the JSON property `kind`
|
1436
|
+
# @return [String]
|
1437
|
+
attr_accessor :kind
|
1438
|
+
|
1410
1439
|
# Response's metadata carrying additional information about the report content.
|
1411
1440
|
# Corresponds to the JSON property `metadata`
|
1412
1441
|
# @return [Google::Apis::AnalyticsdataV1alpha::ResponseMetaData]
|
@@ -1450,6 +1479,7 @@ module Google
|
|
1450
1479
|
def update!(**args)
|
1451
1480
|
@aggregates = args[:aggregates] if args.key?(:aggregates)
|
1452
1481
|
@dimension_headers = args[:dimension_headers] if args.key?(:dimension_headers)
|
1482
|
+
@kind = args[:kind] if args.key?(:kind)
|
1453
1483
|
@metadata = args[:metadata] if args.key?(:metadata)
|
1454
1484
|
@metric_headers = args[:metric_headers] if args.key?(:metric_headers)
|
1455
1485
|
@pivot_headers = args[:pivot_headers] if args.key?(:pivot_headers)
|
@@ -1536,6 +1566,13 @@ module Google
|
|
1536
1566
|
# @return [Array<Google::Apis::AnalyticsdataV1alpha::DimensionHeader>]
|
1537
1567
|
attr_accessor :dimension_headers
|
1538
1568
|
|
1569
|
+
# Identifies what kind of resource this message is. This `kind` is always the
|
1570
|
+
# fixed string "analyticsData#runRealtimeReport". Useful to distinguish between
|
1571
|
+
# response types in JSON.
|
1572
|
+
# Corresponds to the JSON property `kind`
|
1573
|
+
# @return [String]
|
1574
|
+
attr_accessor :kind
|
1575
|
+
|
1539
1576
|
# If requested, the maximum values of metrics.
|
1540
1577
|
# Corresponds to the JSON property `maximums`
|
1541
1578
|
# @return [Array<Google::Apis::AnalyticsdataV1alpha::Row>]
|
@@ -1584,6 +1621,7 @@ module Google
|
|
1584
1621
|
# Update properties of this object
|
1585
1622
|
def update!(**args)
|
1586
1623
|
@dimension_headers = args[:dimension_headers] if args.key?(:dimension_headers)
|
1624
|
+
@kind = args[:kind] if args.key?(:kind)
|
1587
1625
|
@maximums = args[:maximums] if args.key?(:maximums)
|
1588
1626
|
@metric_headers = args[:metric_headers] if args.key?(:metric_headers)
|
1589
1627
|
@minimums = args[:minimums] if args.key?(:minimums)
|
@@ -1731,6 +1769,13 @@ module Google
|
|
1731
1769
|
# @return [Array<Google::Apis::AnalyticsdataV1alpha::DimensionHeader>]
|
1732
1770
|
attr_accessor :dimension_headers
|
1733
1771
|
|
1772
|
+
# Identifies what kind of resource this message is. This `kind` is always the
|
1773
|
+
# fixed string "analyticsData#runReport". Useful to distinguish between response
|
1774
|
+
# types in JSON.
|
1775
|
+
# Corresponds to the JSON property `kind`
|
1776
|
+
# @return [String]
|
1777
|
+
attr_accessor :kind
|
1778
|
+
|
1734
1779
|
# If requested, the maximum values of metrics.
|
1735
1780
|
# Corresponds to the JSON property `maximums`
|
1736
1781
|
# @return [Array<Google::Apis::AnalyticsdataV1alpha::Row>]
|
@@ -1786,6 +1831,7 @@ module Google
|
|
1786
1831
|
# Update properties of this object
|
1787
1832
|
def update!(**args)
|
1788
1833
|
@dimension_headers = args[:dimension_headers] if args.key?(:dimension_headers)
|
1834
|
+
@kind = args[:kind] if args.key?(:kind)
|
1789
1835
|
@maximums = args[:maximums] if args.key?(:maximums)
|
1790
1836
|
@metadata = args[:metadata] if args.key?(:metadata)
|
1791
1837
|
@metric_headers = args[:metric_headers] if args.key?(:metric_headers)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AnalyticsdataV1alpha
|
18
18
|
# Version of the google-apis-analyticsdata_v1alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.6.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210314"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -323,6 +323,7 @@ module Google
|
|
323
323
|
class BatchRunPivotReportsResponse
|
324
324
|
# @private
|
325
325
|
class Representation < Google::Apis::Core::JsonRepresentation
|
326
|
+
property :kind, as: 'kind'
|
326
327
|
collection :pivot_reports, as: 'pivotReports', class: Google::Apis::AnalyticsdataV1alpha::RunPivotReportResponse, decorator: Google::Apis::AnalyticsdataV1alpha::RunPivotReportResponse::Representation
|
327
328
|
|
328
329
|
end
|
@@ -341,6 +342,7 @@ module Google
|
|
341
342
|
class BatchRunReportsResponse
|
342
343
|
# @private
|
343
344
|
class Representation < Google::Apis::Core::JsonRepresentation
|
345
|
+
property :kind, as: 'kind'
|
344
346
|
collection :reports, as: 'reports', class: Google::Apis::AnalyticsdataV1alpha::RunReportResponse, decorator: Google::Apis::AnalyticsdataV1alpha::RunReportResponse::Representation
|
345
347
|
|
346
348
|
end
|
@@ -660,6 +662,8 @@ module Google
|
|
660
662
|
class Representation < Google::Apis::Core::JsonRepresentation
|
661
663
|
property :concurrent_requests, as: 'concurrentRequests', class: Google::Apis::AnalyticsdataV1alpha::QuotaStatus, decorator: Google::Apis::AnalyticsdataV1alpha::QuotaStatus::Representation
|
662
664
|
|
665
|
+
property :potentially_thresholded_requests_per_hour, as: 'potentiallyThresholdedRequestsPerHour', class: Google::Apis::AnalyticsdataV1alpha::QuotaStatus, decorator: Google::Apis::AnalyticsdataV1alpha::QuotaStatus::Representation
|
666
|
+
|
663
667
|
property :server_errors_per_project_per_hour, as: 'serverErrorsPerProjectPerHour', class: Google::Apis::AnalyticsdataV1alpha::QuotaStatus, decorator: Google::Apis::AnalyticsdataV1alpha::QuotaStatus::Representation
|
664
668
|
|
665
669
|
property :tokens_per_day, as: 'tokensPerDay', class: Google::Apis::AnalyticsdataV1alpha::QuotaStatus, decorator: Google::Apis::AnalyticsdataV1alpha::QuotaStatus::Representation
|
@@ -726,6 +730,7 @@ module Google
|
|
726
730
|
|
727
731
|
collection :dimension_headers, as: 'dimensionHeaders', class: Google::Apis::AnalyticsdataV1alpha::DimensionHeader, decorator: Google::Apis::AnalyticsdataV1alpha::DimensionHeader::Representation
|
728
732
|
|
733
|
+
property :kind, as: 'kind'
|
729
734
|
property :metadata, as: 'metadata', class: Google::Apis::AnalyticsdataV1alpha::ResponseMetaData, decorator: Google::Apis::AnalyticsdataV1alpha::ResponseMetaData::Representation
|
730
735
|
|
731
736
|
collection :metric_headers, as: 'metricHeaders', class: Google::Apis::AnalyticsdataV1alpha::MetricHeader, decorator: Google::Apis::AnalyticsdataV1alpha::MetricHeader::Representation
|
@@ -763,6 +768,7 @@ module Google
|
|
763
768
|
class Representation < Google::Apis::Core::JsonRepresentation
|
764
769
|
collection :dimension_headers, as: 'dimensionHeaders', class: Google::Apis::AnalyticsdataV1alpha::DimensionHeader, decorator: Google::Apis::AnalyticsdataV1alpha::DimensionHeader::Representation
|
765
770
|
|
771
|
+
property :kind, as: 'kind'
|
766
772
|
collection :maximums, as: 'maximums', class: Google::Apis::AnalyticsdataV1alpha::Row, decorator: Google::Apis::AnalyticsdataV1alpha::Row::Representation
|
767
773
|
|
768
774
|
collection :metric_headers, as: 'metricHeaders', class: Google::Apis::AnalyticsdataV1alpha::MetricHeader, decorator: Google::Apis::AnalyticsdataV1alpha::MetricHeader::Representation
|
@@ -812,6 +818,7 @@ module Google
|
|
812
818
|
class Representation < Google::Apis::Core::JsonRepresentation
|
813
819
|
collection :dimension_headers, as: 'dimensionHeaders', class: Google::Apis::AnalyticsdataV1alpha::DimensionHeader, decorator: Google::Apis::AnalyticsdataV1alpha::DimensionHeader::Representation
|
814
820
|
|
821
|
+
property :kind, as: 'kind'
|
815
822
|
collection :maximums, as: 'maximums', class: Google::Apis::AnalyticsdataV1alpha::Row, decorator: Google::Apis::AnalyticsdataV1alpha::Row::Representation
|
816
823
|
|
817
824
|
property :metadata, as: 'metadata', class: Google::Apis::AnalyticsdataV1alpha::ResponseMetaData, decorator: Google::Apis::AnalyticsdataV1alpha::ResponseMetaData::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-analyticsdata_v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.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: 2021-03-
|
11
|
+
date: 2021-03-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-analyticsdata_v1alpha/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsdata_v1alpha/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsdata_v1alpha/v0.6.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-analyticsdata_v1alpha
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|