google-apis-chromeuxreport_v1 0.14.0 → 0.16.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: 60739372dbd72032e60cdb934c044a39d8ad02df12b3cf0b839fa7bd6a096450
4
- data.tar.gz: 145a707fb8bdf33bdcdad123ba784823e240b570a663e53c2ca1a911dbfad232
3
+ metadata.gz: fb5b09076cb07cfa61c1215fe3cc186aa7dae1e0317256b9aff2aaafbe6970cc
4
+ data.tar.gz: '08192fac46b4369a8943b27f9a7caf9301039363f08c57ae3aea9833be609fa9'
5
5
  SHA512:
6
- metadata.gz: b4bbed8ea1c83a5091f6bf6bcbf8390cfbc0d043a831da33a6eb404b99abd3745c0296a5a65e39b32f19088310854698511ce4e0b7af35c6b9adb755dc871326
7
- data.tar.gz: 494a09c697f0e0dbbae6705f5818578ed3160cdd6dd4504d9e7dee15cbc718a990407fac8b8f6f205f5ca5f8d4924e290b76ab3cc53695219eccf1aa75f19f53
6
+ metadata.gz: 3392c219539bb315732d802109b099dbf5c39b5bbca37b07662a1e65ae6c72241b7617b7a3844a27c591633cbb2dce9c3c00996ecd6918c42bae8b7a7d6bb395
7
+ data.tar.gz: dd2177de6b199d5b268cfed1e3feb94b5cf8fe66250189f23a9d581ee37c7368911bbfef3dfa7b6af049a214944b27de725238af5bd0b3763c413c231988717b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-chromeuxreport_v1
2
2
 
3
+ ### v0.16.0 (2022-10-30)
4
+
5
+ * Regenerated using generator version 0.11.0
6
+
7
+ ### v0.15.0 (2022-09-21)
8
+
9
+ * Regenerated from discovery document revision 20220919
10
+ * Regenerated using generator version 0.10.0
11
+
3
12
  ### v0.14.0 (2022-09-16)
4
13
 
5
14
  * 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.14.0"
19
+ GEM_VERSION = "0.16.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.9.0"
22
+ GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220504"
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.14.0
4
+ version: 0.16.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-19 00:00:00.000000000 Z
11
+ date: 2022-10-31 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.7.2
19
+ version: 0.9.1
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.7.2
29
+ version: 0.9.1
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.14.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-chromeuxreport_v1/v0.16.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: []