google-apis-area120tables_v1alpha1 0.10.0 → 0.14.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: 2a428b5d2b9c64609c000c9a77918a7e086027e61208546ff99916a00f19e902
4
- data.tar.gz: 3174807f7bed106c4381860b626c08d1af1ea7e9c4a3a81932e97a12bb632d4d
3
+ metadata.gz: 8f1fd424518bc2ea8b0a1fdfa4055d1ed86e6b854f78537f473a381f27ab28ae
4
+ data.tar.gz: 6a86fd166871cd256f4e648d17915328e54d4af222f6686f1f4e7e4fbfcd6da2
5
5
  SHA512:
6
- metadata.gz: 9251965409f31b8401ad325e5d8f2b5afee9c5d780a7513a9d62130b5996ba511fd7e2eb9f66057425a6f9c0ee11c47f5f215bbf25b01c16be23ef3f085646a5
7
- data.tar.gz: 15aa536b26bf544cd865ce7a484c0d3d4b110e5078a816dff5f316e41856e97981431e4085e8c2c100102684902eb1e08d3a44621e6469a7297cede6862b982f
6
+ metadata.gz: 43701325b07f09e83c72ad1f72830b304fb35f973631252e0c78a0a1e0eaf8c4e99b4dde518ca410c25275a17bdbfacd1bd8f847afdc4d48ff1a9627dc44539a
7
+ data.tar.gz: 3918d0d815ff4656ad32461fe1a76d3ab6b9a37a7e9a4c5f4b6be03b63087f6b40d07b67a6834a60fd78070e31fe492ac1238eea518289b6e6edc7c4660db8f6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-area120tables_v1alpha1
2
2
 
3
+ ### v0.14.0 (2021-12-14)
4
+
5
+ * Unspecified changes
6
+
7
+ ### v0.13.0 (2021-10-20)
8
+
9
+ * Unspecified changes
10
+
11
+ ### v0.12.0 (2021-10-09)
12
+
13
+ * Regenerated from discovery document revision 20211007
14
+
15
+ ### v0.11.0 (2021-09-25)
16
+
17
+ * Regenerated from discovery document revision 20210923
18
+
3
19
  ### v0.10.0 (2021-07-01)
4
20
 
5
21
  * Regenerated from discovery document revision 20210629
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/area120tables_v1alpha1"
51
51
  client = Google::Apis::Area120tablesV1alpha1::Area120TablesService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
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.
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
60
60
 
61
61
  More detailed descriptions of the Google simple REST clients are available in two documents.
62
62
 
63
- * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
- * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
63
+ * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
+ * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Area120tables service in particular.)
67
67
 
@@ -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]
@@ -164,6 +169,12 @@ module Google
164
169
  # @return [String]
165
170
  attr_accessor :name
166
171
 
172
+ # Optional. Indicates that values for the column cannot be set by the user.
173
+ # Corresponds to the JSON property `readonly`
174
+ # @return [Boolean]
175
+ attr_accessor :readonly
176
+ alias_method :readonly?, :readonly
177
+
167
178
  # Details about a relationship column.
168
179
  # Corresponds to the JSON property `relationshipDetails`
169
180
  # @return [Google::Apis::Area120tablesV1alpha1::RelationshipDetails]
@@ -176,11 +187,13 @@ module Google
176
187
  # Update properties of this object
177
188
  def update!(**args)
178
189
  @data_type = args[:data_type] if args.key?(:data_type)
190
+ @date_details = args[:date_details] if args.key?(:date_details)
179
191
  @id = args[:id] if args.key?(:id)
180
192
  @labels = args[:labels] if args.key?(:labels)
181
193
  @lookup_details = args[:lookup_details] if args.key?(:lookup_details)
182
194
  @multiple_values_disallowed = args[:multiple_values_disallowed] if args.key?(:multiple_values_disallowed)
183
195
  @name = args[:name] if args.key?(:name)
196
+ @readonly = args[:readonly] if args.key?(:readonly)
184
197
  @relationship_details = args[:relationship_details] if args.key?(:relationship_details)
185
198
  end
186
199
  end
@@ -218,6 +231,26 @@ module Google
218
231
  end
219
232
  end
220
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
+
221
254
  # A generic empty message that you can re-use to avoid defining duplicated empty
222
255
  # messages in your APIs. A typical example is to use it as the request or the
223
256
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -448,7 +481,7 @@ module Google
448
481
  end
449
482
  end
450
483
 
451
- # A single table. NextId: 7
484
+ # A single table. NextId: 8
452
485
  class Table
453
486
  include Google::Apis::Core::Hashable
454
487
 
@@ -477,6 +510,12 @@ module Google
477
510
  # @return [Array<Google::Apis::Area120tablesV1alpha1::SavedView>]
478
511
  attr_accessor :saved_views
479
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
+
480
519
  # Time when the table was last updated excluding updates to individual rows
481
520
  # Corresponds to the JSON property `updateTime`
482
521
  # @return [String]
@@ -493,6 +532,7 @@ module Google
493
532
  @display_name = args[:display_name] if args.key?(:display_name)
494
533
  @name = args[:name] if args.key?(:name)
495
534
  @saved_views = args[:saved_views] if args.key?(:saved_views)
535
+ @time_zone = args[:time_zone] if args.key?(:time_zone)
496
536
  @update_time = args[:update_time] if args.key?(:update_time)
497
537
  end
498
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.10.0"
19
+ GEM_VERSION = "0.14.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 = "20210629"
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
 
@@ -186,6 +194,7 @@ module Google
186
194
 
187
195
  property :multiple_values_disallowed, as: 'multipleValuesDisallowed'
188
196
  property :name, as: 'name'
197
+ property :readonly, as: 'readonly'
189
198
  property :relationship_details, as: 'relationshipDetails', class: Google::Apis::Area120tablesV1alpha1::RelationshipDetails, decorator: Google::Apis::Area120tablesV1alpha1::RelationshipDetails::Representation
190
199
 
191
200
  end
@@ -201,6 +210,13 @@ module Google
201
210
  end
202
211
  end
203
212
 
213
+ class DateDetails
214
+ # @private
215
+ class Representation < Google::Apis::Core::JsonRepresentation
216
+ property :has_time, as: 'hasTime'
217
+ end
218
+ end
219
+
204
220
  class Empty
205
221
  # @private
206
222
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -285,6 +301,7 @@ module Google
285
301
  property :name, as: 'name'
286
302
  collection :saved_views, as: 'savedViews', class: Google::Apis::Area120tablesV1alpha1::SavedView, decorator: Google::Apis::Area120tablesV1alpha1::SavedView::Representation
287
303
 
304
+ property :time_zone, as: 'timeZone'
288
305
  property :update_time, as: 'updateTime'
289
306
  end
290
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.10.0
4
+ version: 0.14.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-07-05 00:00:00.000000000 Z
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
@@ -57,9 +57,9 @@ licenses:
57
57
  - Apache-2.0
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
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.10.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-area120tables_v1alpha1
60
+ changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-area120tables_v1alpha1/CHANGELOG.md
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-area120tables_v1alpha1/v0.14.0
62
+ source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-area120tables_v1alpha1
63
63
  post_install_message:
64
64
  rdoc_options: []
65
65
  require_paths:
@@ -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.2.17
78
+ rubygems_version: 3.3.4
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Area120 Tables API V1alpha1