google-apis-area120tables_v1alpha1 0.2.0 → 0.3.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: eceed49a95e98675f3ef63016069a93d121243595c9c288d7fbf66ea9c27fae0
4
- data.tar.gz: 404d6ce3c233b626538ef4cd4c93c5d54ef5ee24c748a9e648795b212324afb2
3
+ metadata.gz: 696f6f1c015ebc4b1e37753a5ed1817511ed1586df783f11fe31ee3680566948
4
+ data.tar.gz: c196f2586fcfe667375e2febd88e684fb00cc6c516d7bb9987f3b2bfbc296881
5
5
  SHA512:
6
- metadata.gz: 166b418115fd60d943a36a51422079d544bc3d9ce7bea6e064f7d45528bf0019c64fbda2f04dafb50e7c678b75935ce76cdc478c4da0d2b9804559082c040605
7
- data.tar.gz: b8477b2c48af5c13ac53e9cd7f5263955d680c0ef8f0e23b27e5c6eca440f57d35bc3dcf286f6cc42286879aaed5196ee8efb316ca73115d9d727bdcd8b3379a
6
+ metadata.gz: 565857689302622b7af5568161a61e517e1a30ebb3329eaa3990da369d071b5f37d6574ba2886fb863a463157581176611decda7615dc2ef8cf0b4a895bc76df
7
+ data.tar.gz: f9446eb657477b0dca3991fbc38753c40e92a4c945c0d388e6f5f9dd4960677af6737c5d81e3584e1a24c2b9cbe6b7fa7e5fdd177afda35250d0bb6b0b2a5f49
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-area120tables_v1alpha1
2
2
 
3
+ ### v0.3.0 (2021-02-19)
4
+
5
+ * Regenerated from discovery document revision 20210217
6
+ * Regenerated using generator version 0.1.2
7
+
3
8
  ### v0.2.0 (2021-01-15)
4
9
 
5
10
  * Regenerated from discovery document revision 20210113
@@ -379,12 +379,22 @@ module Google
379
379
  class Row
380
380
  include Google::Apis::Core::Hashable
381
381
 
382
+ # Time when the row was created.
383
+ # Corresponds to the JSON property `createTime`
384
+ # @return [String]
385
+ attr_accessor :create_time
386
+
382
387
  # The resource name of the row. Row names have the form `tables/`table`/rows/`
383
388
  # row``. The name is ignored when creating a row.
384
389
  # Corresponds to the JSON property `name`
385
390
  # @return [String]
386
391
  attr_accessor :name
387
392
 
393
+ # Time when the row was last updated.
394
+ # Corresponds to the JSON property `updateTime`
395
+ # @return [String]
396
+ attr_accessor :update_time
397
+
388
398
  # The values of the row. This is a map of column key to value. Key is user
389
399
  # entered name(default) or the internal column id based on the view in the
390
400
  # request.
@@ -398,7 +408,9 @@ module Google
398
408
 
399
409
  # Update properties of this object
400
410
  def update!(**args)
411
+ @create_time = args[:create_time] if args.key?(:create_time)
401
412
  @name = args[:name] if args.key?(:name)
413
+ @update_time = args[:update_time] if args.key?(:update_time)
402
414
  @values = args[:values] if args.key?(:values)
403
415
  end
404
416
  end
@@ -412,6 +424,11 @@ module Google
412
424
  # @return [Array<Google::Apis::Area120tablesV1alpha1::ColumnDescription>]
413
425
  attr_accessor :columns
414
426
 
427
+ # Time when the table was created.
428
+ # Corresponds to the JSON property `createTime`
429
+ # @return [String]
430
+ attr_accessor :create_time
431
+
415
432
  # The human readable title of the table.
416
433
  # Corresponds to the JSON property `displayName`
417
434
  # @return [String]
@@ -422,6 +439,11 @@ module Google
422
439
  # @return [String]
423
440
  attr_accessor :name
424
441
 
442
+ # Time when the table was last updated excluding updates to individual rows
443
+ # Corresponds to the JSON property `updateTime`
444
+ # @return [String]
445
+ attr_accessor :update_time
446
+
425
447
  def initialize(**args)
426
448
  update!(**args)
427
449
  end
@@ -429,8 +451,10 @@ module Google
429
451
  # Update properties of this object
430
452
  def update!(**args)
431
453
  @columns = args[:columns] if args.key?(:columns)
454
+ @create_time = args[:create_time] if args.key?(:create_time)
432
455
  @display_name = args[:display_name] if args.key?(:display_name)
433
456
  @name = args[:name] if args.key?(:name)
457
+ @update_time = args[:update_time] if args.key?(:update_time)
434
458
  end
435
459
  end
436
460
 
@@ -470,6 +494,11 @@ module Google
470
494
  class Workspace
471
495
  include Google::Apis::Core::Hashable
472
496
 
497
+ # Time when the workspace was created.
498
+ # Corresponds to the JSON property `createTime`
499
+ # @return [String]
500
+ attr_accessor :create_time
501
+
473
502
  # The human readable title of the workspace.
474
503
  # Corresponds to the JSON property `displayName`
475
504
  # @return [String]
@@ -486,15 +515,22 @@ module Google
486
515
  # @return [Array<Google::Apis::Area120tablesV1alpha1::Table>]
487
516
  attr_accessor :tables
488
517
 
518
+ # Time when the workspace was last updated.
519
+ # Corresponds to the JSON property `updateTime`
520
+ # @return [String]
521
+ attr_accessor :update_time
522
+
489
523
  def initialize(**args)
490
524
  update!(**args)
491
525
  end
492
526
 
493
527
  # Update properties of this object
494
528
  def update!(**args)
529
+ @create_time = args[:create_time] if args.key?(:create_time)
495
530
  @display_name = args[:display_name] if args.key?(:display_name)
496
531
  @name = args[:name] if args.key?(:name)
497
532
  @tables = args[:tables] if args.key?(:tables)
533
+ @update_time = args[:update_time] if args.key?(:update_time)
498
534
  end
499
535
  end
500
536
  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.2.0"
19
+ GEM_VERSION = "0.3.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.1.1"
22
+ GENERATOR_VERSION = "0.1.2"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210113"
25
+ REVISION = "20210217"
26
26
  end
27
27
  end
28
28
  end
@@ -253,7 +253,9 @@ module Google
253
253
  class Row
254
254
  # @private
255
255
  class Representation < Google::Apis::Core::JsonRepresentation
256
+ property :create_time, as: 'createTime'
256
257
  property :name, as: 'name'
258
+ property :update_time, as: 'updateTime'
257
259
  hash :values, as: 'values'
258
260
  end
259
261
  end
@@ -263,8 +265,10 @@ module Google
263
265
  class Representation < Google::Apis::Core::JsonRepresentation
264
266
  collection :columns, as: 'columns', class: Google::Apis::Area120tablesV1alpha1::ColumnDescription, decorator: Google::Apis::Area120tablesV1alpha1::ColumnDescription::Representation
265
267
 
268
+ property :create_time, as: 'createTime'
266
269
  property :display_name, as: 'displayName'
267
270
  property :name, as: 'name'
271
+ property :update_time, as: 'updateTime'
268
272
  end
269
273
  end
270
274
 
@@ -281,10 +285,12 @@ module Google
281
285
  class Workspace
282
286
  # @private
283
287
  class Representation < Google::Apis::Core::JsonRepresentation
288
+ property :create_time, as: 'createTime'
284
289
  property :display_name, as: 'displayName'
285
290
  property :name, as: 'name'
286
291
  collection :tables, as: 'tables', class: Google::Apis::Area120tablesV1alpha1::Table, decorator: Google::Apis::Area120tablesV1alpha1::Table::Representation
287
292
 
293
+ property :update_time, as: 'updateTime'
288
294
  end
289
295
  end
290
296
  end
@@ -323,6 +323,10 @@ module Google
323
323
  # Lists rows in a table. Returns NOT_FOUND if the table does not exist.
324
324
  # @param [String] parent
325
325
  # Required. The parent table. Format: tables/`table`
326
+ # @param [String] filter
327
+ # Optional. Raw text query to search for in rows of the table. Special
328
+ # characters must be escaped. Logical operators and field specific filtering not
329
+ # supported.
326
330
  # @param [Fixnum] page_size
327
331
  # The maximum number of rows to return. The service may return fewer than this
328
332
  # value. If unspecified, at most 50 rows are returned. The maximum value is 1,
@@ -351,11 +355,12 @@ module Google
351
355
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
352
356
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
353
357
  # @raise [Google::Apis::AuthorizationError] Authorization is required
354
- def list_table_rows(parent, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
358
+ def list_table_rows(parent, filter: nil, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
355
359
  command = make_simple_command(:get, 'v1alpha1/{+parent}/rows', options)
356
360
  command.response_representation = Google::Apis::Area120tablesV1alpha1::ListRowsResponse::Representation
357
361
  command.response_class = Google::Apis::Area120tablesV1alpha1::ListRowsResponse
358
362
  command.params['parent'] = parent unless parent.nil?
363
+ command.query['filter'] = filter unless filter.nil?
359
364
  command.query['pageSize'] = page_size unless page_size.nil?
360
365
  command.query['pageToken'] = page_token unless page_token.nil?
361
366
  command.query['view'] = view unless view.nil?
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.2.0
4
+ version: 0.3.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-02-08 00:00:00.000000000 Z
11
+ date: 2021-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  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.2.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-area120tables_v1alpha1/v0.3.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-area120tables_v1alpha1
57
57
  post_install_message:
58
58
  rdoc_options: []