google-apis-area120tables_v1alpha1 0.8.0 → 0.12.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/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 +13 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ce58ae7912e63da3b69bb3f715bee275d1d1f1aa47397ac9533cf5a990d9f0bd
|
4
|
+
data.tar.gz: 69cfa5a8a38ec157bd12895807bae28fd8c886b8dd47872a2b49a25ad8e0af99
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2fa7ed12b0a8f3e11bbde045f9f4005400100362abbf8b1d77c5d22a4c48c1d39aee4b2cb3d1961d8601caa6567124ddc404f71bb74bf1655df36d19cdccf4e4
|
7
|
+
data.tar.gz: b26712d869278380c9230c84a9e9936f675e0659fb8dbc264f445010abcc72f5131c87ba68e39ea88386b195bc4a8d01d48c5c13a5b3e323da51e5b59285bde5
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
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
|
+
|
7
|
+
### v0.11.0 (2021-09-25)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210923
|
10
|
+
|
11
|
+
### v0.10.0 (2021-07-01)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210629
|
14
|
+
* Regenerated using generator version 0.4.0
|
15
|
+
|
16
|
+
### v0.9.0 (2021-06-24)
|
17
|
+
|
18
|
+
* Regenerated using generator version 0.3.0
|
19
|
+
|
3
20
|
### v0.8.0 (2021-05-19)
|
4
21
|
|
5
22
|
* Unspecified changes
|
@@ -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.12.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,29 +1,35 @@
|
|
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.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-
|
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
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.4'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Area120 Tables API V1alpha1. Simple
|
28
34
|
REST clients are Ruby client libraries that provide access to Google services via
|
29
35
|
their HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-area120tables_v1alpha1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-area120tables_v1alpha1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-area120tables_v1alpha1/v0.12.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-area120tables_v1alpha1
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|