google-apis-area120tables_v1alpha1 0.11.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: 2dc92f496d69846a0b2bc823865ec8f7021a3f08859f4ece129536c910470fcc
4
- data.tar.gz: 4420d43c9377d3d6346ebe36a63356ad1e7b22e0127a6fc44d300c9e19a4b1f8
3
+ metadata.gz: ce58ae7912e63da3b69bb3f715bee275d1d1f1aa47397ac9533cf5a990d9f0bd
4
+ data.tar.gz: 69cfa5a8a38ec157bd12895807bae28fd8c886b8dd47872a2b49a25ad8e0af99
5
5
  SHA512:
6
- metadata.gz: 8a7e8d358a9ca9b85f1e1ac7b48763ddb4bc7b830f1b255edd0eb23cf887db0db7a75ab7dc6eb43bd808a008e7b3a56662c64ad81ee15140e450f32c3f508ab1
7
- data.tar.gz: 1ea8d02c5cd73cf93d7244bea86f526ed1142644d47f22cad3e01b066e624b1eddf6e67070c4cabc4b8e637c0a336f8940aabbba9806e5338bf7ca4b5703c9df
6
+ metadata.gz: 2fa7ed12b0a8f3e11bbde045f9f4005400100362abbf8b1d77c5d22a4c48c1d39aee4b2cb3d1961d8601caa6567124ddc404f71bb74bf1655df36d19cdccf4e4
7
+ data.tar.gz: b26712d869278380c9230c84a9e9936f675e0659fb8dbc264f445010abcc72f5131c87ba68e39ea88386b195bc4a8d01d48c5c13a5b3e323da51e5b59285bde5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-area120tables_v1alpha1
2
2
 
3
+ ### v0.12.0 (2021-10-09)
4
+
5
+ * Regenerated from discovery document revision 20211007
6
+
3
7
  ### v0.11.0 (2021-09-25)
4
8
 
5
9
  * Regenerated from discovery document revision 20210923
@@ -134,6 +134,11 @@ module Google
134
134
  # @return [String]
135
135
  attr_accessor :data_type
136
136
 
137
+ # Details about a date column.
138
+ # Corresponds to the JSON property `dateDetails`
139
+ # @return [Google::Apis::Area120tablesV1alpha1::DateDetails]
140
+ attr_accessor :date_details
141
+
137
142
  # Internal id for a column.
138
143
  # Corresponds to the JSON property `id`
139
144
  # @return [String]
@@ -182,6 +187,7 @@ module Google
182
187
  # Update properties of this object
183
188
  def update!(**args)
184
189
  @data_type = args[:data_type] if args.key?(:data_type)
190
+ @date_details = args[:date_details] if args.key?(:date_details)
185
191
  @id = args[:id] if args.key?(:id)
186
192
  @labels = args[:labels] if args.key?(:labels)
187
193
  @lookup_details = args[:lookup_details] if args.key?(:lookup_details)
@@ -225,6 +231,26 @@ module Google
225
231
  end
226
232
  end
227
233
 
234
+ # Details about a date column.
235
+ class DateDetails
236
+ include Google::Apis::Core::Hashable
237
+
238
+ # Whether the date column includes time.
239
+ # Corresponds to the JSON property `hasTime`
240
+ # @return [Boolean]
241
+ attr_accessor :has_time
242
+ alias_method :has_time?, :has_time
243
+
244
+ def initialize(**args)
245
+ update!(**args)
246
+ end
247
+
248
+ # Update properties of this object
249
+ def update!(**args)
250
+ @has_time = args[:has_time] if args.key?(:has_time)
251
+ end
252
+ end
253
+
228
254
  # A generic empty message that you can re-use to avoid defining duplicated empty
229
255
  # messages in your APIs. A typical example is to use it as the request or the
230
256
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -455,7 +481,7 @@ module Google
455
481
  end
456
482
  end
457
483
 
458
- # A single table. NextId: 7
484
+ # A single table. NextId: 8
459
485
  class Table
460
486
  include Google::Apis::Core::Hashable
461
487
 
@@ -484,6 +510,12 @@ module Google
484
510
  # @return [Array<Google::Apis::Area120tablesV1alpha1::SavedView>]
485
511
  attr_accessor :saved_views
486
512
 
513
+ # The time zone of the table. IANA Time Zone Database time zone, e.g. "America/
514
+ # New_York".
515
+ # Corresponds to the JSON property `timeZone`
516
+ # @return [String]
517
+ attr_accessor :time_zone
518
+
487
519
  # Time when the table was last updated excluding updates to individual rows
488
520
  # Corresponds to the JSON property `updateTime`
489
521
  # @return [String]
@@ -500,6 +532,7 @@ module Google
500
532
  @display_name = args[:display_name] if args.key?(:display_name)
501
533
  @name = args[:name] if args.key?(:name)
502
534
  @saved_views = args[:saved_views] if args.key?(:saved_views)
535
+ @time_zone = args[:time_zone] if args.key?(:time_zone)
503
536
  @update_time = args[:update_time] if args.key?(:update_time)
504
537
  end
505
538
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module Area120tablesV1alpha1
18
18
  # Version of the google-apis-area120tables_v1alpha1 gem
19
- GEM_VERSION = "0.11.0"
19
+ GEM_VERSION = "0.12.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 = "20210923"
25
+ REVISION = "20211007"
26
26
  end
27
27
  end
28
28
  end
@@ -64,6 +64,12 @@ module Google
64
64
  include Google::Apis::Core::JsonObjectSupport
65
65
  end
66
66
 
67
+ class DateDetails
68
+ class Representation < Google::Apis::Core::JsonRepresentation; end
69
+
70
+ include Google::Apis::Core::JsonObjectSupport
71
+ end
72
+
67
73
  class Empty
68
74
  class Representation < Google::Apis::Core::JsonRepresentation; end
69
75
 
@@ -179,6 +185,8 @@ module Google
179
185
  # @private
180
186
  class Representation < Google::Apis::Core::JsonRepresentation
181
187
  property :data_type, as: 'dataType'
188
+ property :date_details, as: 'dateDetails', class: Google::Apis::Area120tablesV1alpha1::DateDetails, decorator: Google::Apis::Area120tablesV1alpha1::DateDetails::Representation
189
+
182
190
  property :id, as: 'id'
183
191
  collection :labels, as: 'labels', class: Google::Apis::Area120tablesV1alpha1::LabeledItem, decorator: Google::Apis::Area120tablesV1alpha1::LabeledItem::Representation
184
192
 
@@ -202,6 +210,13 @@ module Google
202
210
  end
203
211
  end
204
212
 
213
+ class DateDetails
214
+ # @private
215
+ class Representation < Google::Apis::Core::JsonRepresentation
216
+ property :has_time, as: 'hasTime'
217
+ end
218
+ end
219
+
205
220
  class Empty
206
221
  # @private
207
222
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -286,6 +301,7 @@ module Google
286
301
  property :name, as: 'name'
287
302
  collection :saved_views, as: 'savedViews', class: Google::Apis::Area120tablesV1alpha1::SavedView, decorator: Google::Apis::Area120tablesV1alpha1::SavedView::Representation
288
303
 
304
+ property :time_zone, as: 'timeZone'
289
305
  property :update_time, as: 'updateTime'
290
306
  end
291
307
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-area120tables_v1alpha1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.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: 2021-09-27 00:00:00.000000000 Z
11
+ date: 2021-10-11 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/master/generated/google-apis-area120tables_v1alpha1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-area120tables_v1alpha1/v0.11.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-area120tables_v1alpha1/v0.12.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-area120tables_v1alpha1
63
63
  post_install_message:
64
64
  rdoc_options: []