google-apis-chromeuxreport_v1 0.14.0 → 0.15.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6ed7666b83f3fba5f3d838e155e4e867d5405c6c9778949e847b5ebbea461834
|
4
|
+
data.tar.gz: 5b0bdcf323aed2c8f2595f6d815f380a99f02371c977443e3dd205e4da7e4bb8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 92d537b10f969cace2eeef3be92b7d6a3bf1943911b79853c5772ce19a2ec9a4acdacdb05f1ed05eaa401ebddd211821df1ea5da0af23eabf1ea59b482be4b14
|
7
|
+
data.tar.gz: 79f7487ff6178611945b808366ecaa448e64198abd7242e91e06c9b2ab467da534ad394fcc0cefca615b53b5cf4bf5d60c8dea23849845428c25697a73aa5846
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-chromeuxreport_v1
|
2
2
|
|
3
|
+
### v0.15.0 (2022-09-21)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220919
|
6
|
+
* Regenerated using generator version 0.10.0
|
7
|
+
|
3
8
|
### v0.14.0 (2022-09-16)
|
4
9
|
|
5
10
|
* Regenerated using generator version 0.9.0
|
@@ -60,6 +60,87 @@ module Google
|
|
60
60
|
end
|
61
61
|
end
|
62
62
|
|
63
|
+
# The collection period is a date range which includes the `first` and `last`
|
64
|
+
# day.
|
65
|
+
class CollectionPeriod
|
66
|
+
include Google::Apis::Core::Hashable
|
67
|
+
|
68
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
69
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
70
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
71
|
+
# following: * A full date, with non-zero year, month, and day values. * A month
|
72
|
+
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
73
|
+
# with a zero month and a zero day. * A year and month, with a zero day (for
|
74
|
+
# example, a credit card expiration date). Related types: * google.type.
|
75
|
+
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
76
|
+
# Corresponds to the JSON property `firstDate`
|
77
|
+
# @return [Google::Apis::ChromeuxreportV1::Date]
|
78
|
+
attr_accessor :first_date
|
79
|
+
|
80
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
81
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
82
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
83
|
+
# following: * A full date, with non-zero year, month, and day values. * A month
|
84
|
+
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
85
|
+
# with a zero month and a zero day. * A year and month, with a zero day (for
|
86
|
+
# example, a credit card expiration date). Related types: * google.type.
|
87
|
+
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
88
|
+
# Corresponds to the JSON property `lastDate`
|
89
|
+
# @return [Google::Apis::ChromeuxreportV1::Date]
|
90
|
+
attr_accessor :last_date
|
91
|
+
|
92
|
+
def initialize(**args)
|
93
|
+
update!(**args)
|
94
|
+
end
|
95
|
+
|
96
|
+
# Update properties of this object
|
97
|
+
def update!(**args)
|
98
|
+
@first_date = args[:first_date] if args.key?(:first_date)
|
99
|
+
@last_date = args[:last_date] if args.key?(:last_date)
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
104
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
105
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
106
|
+
# following: * A full date, with non-zero year, month, and day values. * A month
|
107
|
+
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
108
|
+
# with a zero month and a zero day. * A year and month, with a zero day (for
|
109
|
+
# example, a credit card expiration date). Related types: * google.type.
|
110
|
+
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
111
|
+
class Date
|
112
|
+
include Google::Apis::Core::Hashable
|
113
|
+
|
114
|
+
# Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to
|
115
|
+
# specify a year by itself or a year and month where the day isn't significant.
|
116
|
+
# Corresponds to the JSON property `day`
|
117
|
+
# @return [Fixnum]
|
118
|
+
attr_accessor :day
|
119
|
+
|
120
|
+
# Month of a year. Must be from 1 to 12, or 0 to specify a year without a month
|
121
|
+
# and day.
|
122
|
+
# Corresponds to the JSON property `month`
|
123
|
+
# @return [Fixnum]
|
124
|
+
attr_accessor :month
|
125
|
+
|
126
|
+
# Year of the date. Must be from 1 to 9999, or 0 to specify a date without a
|
127
|
+
# year.
|
128
|
+
# Corresponds to the JSON property `year`
|
129
|
+
# @return [Fixnum]
|
130
|
+
attr_accessor :year
|
131
|
+
|
132
|
+
def initialize(**args)
|
133
|
+
update!(**args)
|
134
|
+
end
|
135
|
+
|
136
|
+
# Update properties of this object
|
137
|
+
def update!(**args)
|
138
|
+
@day = args[:day] if args.key?(:day)
|
139
|
+
@month = args[:month] if args.key?(:month)
|
140
|
+
@year = args[:year] if args.key?(:year)
|
141
|
+
end
|
142
|
+
end
|
143
|
+
|
63
144
|
# Key defines all the dimensions that identify this record as unique.
|
64
145
|
class Key
|
65
146
|
include Google::Apis::Core::Hashable
|
@@ -252,6 +333,12 @@ module Google
|
|
252
333
|
class Record
|
253
334
|
include Google::Apis::Core::Hashable
|
254
335
|
|
336
|
+
# The collection period is a date range which includes the `first` and `last`
|
337
|
+
# day.
|
338
|
+
# Corresponds to the JSON property `collectionPeriod`
|
339
|
+
# @return [Google::Apis::ChromeuxreportV1::CollectionPeriod]
|
340
|
+
attr_accessor :collection_period
|
341
|
+
|
255
342
|
# Key defines all the dimensions that identify this record as unique.
|
256
343
|
# Corresponds to the JSON property `key`
|
257
344
|
# @return [Google::Apis::ChromeuxreportV1::Key]
|
@@ -271,6 +358,7 @@ module Google
|
|
271
358
|
|
272
359
|
# Update properties of this object
|
273
360
|
def update!(**args)
|
361
|
+
@collection_period = args[:collection_period] if args.key?(:collection_period)
|
274
362
|
@key = args[:key] if args.key?(:key)
|
275
363
|
@metrics = args[:metrics] if args.key?(:metrics)
|
276
364
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ChromeuxreportV1
|
18
18
|
# Version of the google-apis-chromeuxreport_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.15.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.10.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220919"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,6 +28,18 @@ module Google
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
29
29
|
end
|
30
30
|
|
31
|
+
class CollectionPeriod
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
37
|
+
class Date
|
38
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
|
+
|
40
|
+
include Google::Apis::Core::JsonObjectSupport
|
41
|
+
end
|
42
|
+
|
31
43
|
class Key
|
32
44
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
45
|
|
@@ -79,6 +91,25 @@ module Google
|
|
79
91
|
end
|
80
92
|
end
|
81
93
|
|
94
|
+
class CollectionPeriod
|
95
|
+
# @private
|
96
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
97
|
+
property :first_date, as: 'firstDate', class: Google::Apis::ChromeuxreportV1::Date, decorator: Google::Apis::ChromeuxreportV1::Date::Representation
|
98
|
+
|
99
|
+
property :last_date, as: 'lastDate', class: Google::Apis::ChromeuxreportV1::Date, decorator: Google::Apis::ChromeuxreportV1::Date::Representation
|
100
|
+
|
101
|
+
end
|
102
|
+
end
|
103
|
+
|
104
|
+
class Date
|
105
|
+
# @private
|
106
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
107
|
+
property :day, as: 'day'
|
108
|
+
property :month, as: 'month'
|
109
|
+
property :year, as: 'year'
|
110
|
+
end
|
111
|
+
end
|
112
|
+
|
82
113
|
class Key
|
83
114
|
# @private
|
84
115
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -130,6 +161,8 @@ module Google
|
|
130
161
|
class Record
|
131
162
|
# @private
|
132
163
|
class Representation < Google::Apis::Core::JsonRepresentation
|
164
|
+
property :collection_period, as: 'collectionPeriod', class: Google::Apis::ChromeuxreportV1::CollectionPeriod, decorator: Google::Apis::ChromeuxreportV1::CollectionPeriod::Representation
|
165
|
+
|
133
166
|
property :key, as: 'key', class: Google::Apis::ChromeuxreportV1::Key, decorator: Google::Apis::ChromeuxreportV1::Key::Representation
|
134
167
|
|
135
168
|
hash :metrics, as: 'metrics', class: Google::Apis::ChromeuxreportV1::Metric, decorator: Google::Apis::ChromeuxreportV1::Metric::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-chromeuxreport_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.15.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: 2022-09-
|
11
|
+
date: 2022-09-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.9.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.9.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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-chromeuxreport_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-chromeuxreport_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-chromeuxreport_v1/v0.15.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-chromeuxreport_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|