google-apis-area120tables_v1alpha1 0.9.0 → 0.13.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +17 -0
- data/OVERVIEW.md +2 -2
- data/lib/google/apis/area120tables_v1alpha1/classes.rb +41 -1
- data/lib/google/apis/area120tables_v1alpha1/gem_version.rb +3 -3
- data/lib/google/apis/area120tables_v1alpha1/representations.rb +17 -0
- data/lib/google/apis/area120tables_v1alpha1.rb +2 -2
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 294658ed6ff9f88abf3f88ae82c7bbb63f57433154944cf958c7331e8ea78111
|
4
|
+
data.tar.gz: b06d48fa7ff8672d3e71328dde6682b18df8786521004d70468375dda74012ec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 89087245f698dfff21d6ff288ed79f38c5239873bf98148b8c8128f539cbfe02b42b41f47051f6955cbb1dc78d8fc24edcce3fba937069e8495274452b928b6a
|
7
|
+
data.tar.gz: 314ce1e08b8d68a81a90bfd69e7f6735a6896e80b54c5a5bd7350e3efa7231f541985fadf60a51284a8a2ac66f720a06059ebf439e15911235cab0396512fcc0
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
# Release history for google-apis-area120tables_v1alpha1
|
2
2
|
|
3
|
+
### v0.13.0 (2021-10-20)
|
4
|
+
|
5
|
+
* Unspecified changes
|
6
|
+
|
7
|
+
### v0.12.0 (2021-10-09)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20211007
|
10
|
+
|
11
|
+
### v0.11.0 (2021-09-25)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210923
|
14
|
+
|
15
|
+
### v0.10.0 (2021-07-01)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20210629
|
18
|
+
* Regenerated using generator version 0.4.0
|
19
|
+
|
3
20
|
### v0.9.0 (2021-06-24)
|
4
21
|
|
5
22
|
* Regenerated using generator version 0.3.0
|
data/OVERVIEW.md
CHANGED
@@ -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/
|
64
|
-
* The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/
|
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:
|
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.
|
19
|
+
GEM_VERSION = "0.13.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
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
|
@@ -38,10 +38,10 @@ module Google
|
|
38
38
|
# See and download all your Google Drive files
|
39
39
|
AUTH_DRIVE_READONLY = 'https://www.googleapis.com/auth/drive.readonly'
|
40
40
|
|
41
|
-
# See, edit, create, and delete your
|
41
|
+
# See, edit, create, and delete all your Google Sheets spreadsheets
|
42
42
|
AUTH_SPREADSHEETS = 'https://www.googleapis.com/auth/spreadsheets'
|
43
43
|
|
44
|
-
#
|
44
|
+
# See all your Google Sheets spreadsheets
|
45
45
|
AUTH_SPREADSHEETS_READONLY = 'https://www.googleapis.com/auth/spreadsheets.readonly'
|
46
46
|
|
47
47
|
# See, edit, create, and delete your tables in Tables by Area 120
|
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.
|
4
|
+
version: 0.13.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-
|
11
|
+
date: 2021-10-27 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.4'
|
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.4'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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/
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-area120tables_v1alpha1/v0.
|
62
|
-
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/
|
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.13.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:
|