google-apis-datastore_v1 0.10.0 → 0.13.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b2e8dda66e7b060105a34941dc8be086dd33adfda6256b811054daccccf3c220
|
4
|
+
data.tar.gz: a01a4ca826ad37f0084a034918d9adcab6245a3d165f5310b5cb6f4a9af5f79a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c8b840fae4cf821064df3442f187901de31f3276c7ac2917ba3c279eeb0434f1a585c989e9f05a2a067b1d0ff3af5d598ea6846ac3853e1e6f67f703de137f66
|
7
|
+
data.tar.gz: 899f1193ddc3fa3ae8649d58f327f00654682a5cf97f943b5dd67ee9f193565a20e463fcf54aef3020c5e7c22eb6d23f10bcbadfaa28205e2e930e261bcd0cbf
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-datastore_v1
|
2
2
|
|
3
|
+
### v0.13.0 (2022-04-09)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220402
|
6
|
+
|
7
|
+
### v0.12.0 (2022-03-30)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220319
|
10
|
+
|
11
|
+
### v0.11.0 (2022-01-21)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220110
|
14
|
+
* Regenerated using generator version 0.4.1
|
15
|
+
|
3
16
|
### v0.10.0 (2021-12-14)
|
4
17
|
|
5
18
|
* Unspecified changes
|
@@ -165,6 +165,11 @@ module Google
|
|
165
165
|
class CommitResponse
|
166
166
|
include Google::Apis::Core::Hashable
|
167
167
|
|
168
|
+
# The transaction commit timestamp. Not set for non-transactional commits.
|
169
|
+
# Corresponds to the JSON property `commitTime`
|
170
|
+
# @return [String]
|
171
|
+
attr_accessor :commit_time
|
172
|
+
|
168
173
|
# The number of index entries updated during the commit, or zero if none were
|
169
174
|
# updated.
|
170
175
|
# Corresponds to the JSON property `indexUpdates`
|
@@ -183,6 +188,7 @@ module Google
|
|
183
188
|
|
184
189
|
# Update properties of this object
|
185
190
|
def update!(**args)
|
191
|
+
@commit_time = args[:commit_time] if args.key?(:commit_time)
|
186
192
|
@index_updates = args[:index_updates] if args.key?(:index_updates)
|
187
193
|
@mutation_results = args[:mutation_results] if args.key?(:mutation_results)
|
188
194
|
end
|
@@ -216,8 +222,7 @@ module Google
|
|
216
222
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
217
223
|
# messages in your APIs. A typical example is to use it as the request or the
|
218
224
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
219
|
-
# protobuf.Empty) returns (google.protobuf.Empty); `
|
220
|
-
# `Empty` is empty JSON object ````.
|
225
|
+
# protobuf.Empty) returns (google.protobuf.Empty); `
|
221
226
|
class Empty
|
222
227
|
include Google::Apis::Core::Hashable
|
223
228
|
|
@@ -280,6 +285,12 @@ module Google
|
|
280
285
|
# @return [Google::Apis::DatastoreV1::Entity]
|
281
286
|
attr_accessor :entity
|
282
287
|
|
288
|
+
# The time at which the entity was last changed. This field is set for `FULL`
|
289
|
+
# entity results. If this entity is missing, this field will not be set.
|
290
|
+
# Corresponds to the JSON property `updateTime`
|
291
|
+
# @return [String]
|
292
|
+
attr_accessor :update_time
|
293
|
+
|
283
294
|
# The version of the entity, a strictly positive number that monotonically
|
284
295
|
# increases with changes to the entity. This field is set for `FULL` entity
|
285
296
|
# results. For missing entities in `LookupResponse`, this is the version of the
|
@@ -297,6 +308,7 @@ module Google
|
|
297
308
|
def update!(**args)
|
298
309
|
@cursor = args[:cursor] if args.key?(:cursor)
|
299
310
|
@entity = args[:entity] if args.key?(:entity)
|
311
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
300
312
|
@version = args[:version] if args.key?(:version)
|
301
313
|
end
|
302
314
|
end
|
@@ -374,7 +386,7 @@ module Google
|
|
374
386
|
# DatastoreFirestoreMigration operation is not started by the end-user via an
|
375
387
|
# explicit "creation" method. This is an intentional deviation from the LRO
|
376
388
|
# design pattern. This singleton resource can be accessed at: "projects/`
|
377
|
-
# project_id`/datastore-firestore-migration"
|
389
|
+
# project_id`/operations/datastore-firestore-migration"
|
378
390
|
class GoogleDatastoreAdminV1DatastoreFirestoreMigrationMetadata
|
379
391
|
include Google::Apis::Core::Hashable
|
380
392
|
|
@@ -790,6 +802,81 @@ module Google
|
|
790
802
|
end
|
791
803
|
end
|
792
804
|
|
805
|
+
# An event signifying the start of a new step in a [migration from Cloud
|
806
|
+
# Datastore to Cloud Firestore in Datastore mode](https://cloud.google.com/
|
807
|
+
# datastore/docs/upgrade-to-firestore).
|
808
|
+
class GoogleDatastoreAdminV1MigrationProgressEvent
|
809
|
+
include Google::Apis::Core::Hashable
|
810
|
+
|
811
|
+
# Details for the `PREPARE` step.
|
812
|
+
# Corresponds to the JSON property `prepareStepDetails`
|
813
|
+
# @return [Google::Apis::DatastoreV1::GoogleDatastoreAdminV1PrepareStepDetails]
|
814
|
+
attr_accessor :prepare_step_details
|
815
|
+
|
816
|
+
# Details for the `REDIRECT_WRITES` step.
|
817
|
+
# Corresponds to the JSON property `redirectWritesStepDetails`
|
818
|
+
# @return [Google::Apis::DatastoreV1::GoogleDatastoreAdminV1RedirectWritesStepDetails]
|
819
|
+
attr_accessor :redirect_writes_step_details
|
820
|
+
|
821
|
+
# The step that is starting. An event with step set to `START` indicates that
|
822
|
+
# the migration has been reverted back to the initial pre-migration state.
|
823
|
+
# Corresponds to the JSON property `step`
|
824
|
+
# @return [String]
|
825
|
+
attr_accessor :step
|
826
|
+
|
827
|
+
def initialize(**args)
|
828
|
+
update!(**args)
|
829
|
+
end
|
830
|
+
|
831
|
+
# Update properties of this object
|
832
|
+
def update!(**args)
|
833
|
+
@prepare_step_details = args[:prepare_step_details] if args.key?(:prepare_step_details)
|
834
|
+
@redirect_writes_step_details = args[:redirect_writes_step_details] if args.key?(:redirect_writes_step_details)
|
835
|
+
@step = args[:step] if args.key?(:step)
|
836
|
+
end
|
837
|
+
end
|
838
|
+
|
839
|
+
# An event signifying a change in state of a [migration from Cloud Datastore to
|
840
|
+
# Cloud Firestore in Datastore mode](https://cloud.google.com/datastore/docs/
|
841
|
+
# upgrade-to-firestore).
|
842
|
+
class GoogleDatastoreAdminV1MigrationStateEvent
|
843
|
+
include Google::Apis::Core::Hashable
|
844
|
+
|
845
|
+
# The new state of the migration.
|
846
|
+
# Corresponds to the JSON property `state`
|
847
|
+
# @return [String]
|
848
|
+
attr_accessor :state
|
849
|
+
|
850
|
+
def initialize(**args)
|
851
|
+
update!(**args)
|
852
|
+
end
|
853
|
+
|
854
|
+
# Update properties of this object
|
855
|
+
def update!(**args)
|
856
|
+
@state = args[:state] if args.key?(:state)
|
857
|
+
end
|
858
|
+
end
|
859
|
+
|
860
|
+
# Details for the `PREPARE` step.
|
861
|
+
class GoogleDatastoreAdminV1PrepareStepDetails
|
862
|
+
include Google::Apis::Core::Hashable
|
863
|
+
|
864
|
+
# The concurrency mode this database will use when it reaches the `
|
865
|
+
# REDIRECT_WRITES` step.
|
866
|
+
# Corresponds to the JSON property `concurrencyMode`
|
867
|
+
# @return [String]
|
868
|
+
attr_accessor :concurrency_mode
|
869
|
+
|
870
|
+
def initialize(**args)
|
871
|
+
update!(**args)
|
872
|
+
end
|
873
|
+
|
874
|
+
# Update properties of this object
|
875
|
+
def update!(**args)
|
876
|
+
@concurrency_mode = args[:concurrency_mode] if args.key?(:concurrency_mode)
|
877
|
+
end
|
878
|
+
end
|
879
|
+
|
793
880
|
# Measures the progress of a particular metric.
|
794
881
|
class GoogleDatastoreAdminV1Progress
|
795
882
|
include Google::Apis::Core::Hashable
|
@@ -817,6 +904,25 @@ module Google
|
|
817
904
|
end
|
818
905
|
end
|
819
906
|
|
907
|
+
# Details for the `REDIRECT_WRITES` step.
|
908
|
+
class GoogleDatastoreAdminV1RedirectWritesStepDetails
|
909
|
+
include Google::Apis::Core::Hashable
|
910
|
+
|
911
|
+
# Ths concurrency mode for this database.
|
912
|
+
# Corresponds to the JSON property `concurrencyMode`
|
913
|
+
# @return [String]
|
914
|
+
attr_accessor :concurrency_mode
|
915
|
+
|
916
|
+
def initialize(**args)
|
917
|
+
update!(**args)
|
918
|
+
end
|
919
|
+
|
920
|
+
# Update properties of this object
|
921
|
+
def update!(**args)
|
922
|
+
@concurrency_mode = args[:concurrency_mode] if args.key?(:concurrency_mode)
|
923
|
+
end
|
924
|
+
end
|
925
|
+
|
820
926
|
# Metadata common to all Datastore Admin operations.
|
821
927
|
class GoogleDatastoreAdminV1beta1CommonMetadata
|
822
928
|
include Google::Apis::Core::Hashable
|
@@ -1353,6 +1459,11 @@ module Google
|
|
1353
1459
|
# @return [Array<Google::Apis::DatastoreV1::EntityResult>]
|
1354
1460
|
attr_accessor :missing
|
1355
1461
|
|
1462
|
+
# The time at which these entities were read or found missing.
|
1463
|
+
# Corresponds to the JSON property `readTime`
|
1464
|
+
# @return [String]
|
1465
|
+
attr_accessor :read_time
|
1466
|
+
|
1356
1467
|
def initialize(**args)
|
1357
1468
|
update!(**args)
|
1358
1469
|
end
|
@@ -1362,6 +1473,7 @@ module Google
|
|
1362
1473
|
@deferred = args[:deferred] if args.key?(:deferred)
|
1363
1474
|
@found = args[:found] if args.key?(:found)
|
1364
1475
|
@missing = args[:missing] if args.key?(:missing)
|
1476
|
+
@read_time = args[:read_time] if args.key?(:read_time)
|
1365
1477
|
end
|
1366
1478
|
end
|
1367
1479
|
|
@@ -1396,6 +1508,12 @@ module Google
|
|
1396
1508
|
# @return [Google::Apis::DatastoreV1::Entity]
|
1397
1509
|
attr_accessor :update
|
1398
1510
|
|
1511
|
+
# The update time of the entity that this mutation is being applied to. If this
|
1512
|
+
# does not match the current update time on the server, the mutation conflicts.
|
1513
|
+
# Corresponds to the JSON property `updateTime`
|
1514
|
+
# @return [String]
|
1515
|
+
attr_accessor :update_time
|
1516
|
+
|
1399
1517
|
# A Datastore data object. An entity is limited to 1 megabyte when stored. That
|
1400
1518
|
# _roughly_ corresponds to a limit of 1 megabyte for the serialized form of this
|
1401
1519
|
# message.
|
@@ -1413,6 +1531,7 @@ module Google
|
|
1413
1531
|
@delete = args[:delete] if args.key?(:delete)
|
1414
1532
|
@insert = args[:insert] if args.key?(:insert)
|
1415
1533
|
@update = args[:update] if args.key?(:update)
|
1534
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
1416
1535
|
@upsert = args[:upsert] if args.key?(:upsert)
|
1417
1536
|
end
|
1418
1537
|
end
|
@@ -1435,6 +1554,14 @@ module Google
|
|
1435
1554
|
# @return [Google::Apis::DatastoreV1::Key]
|
1436
1555
|
attr_accessor :key
|
1437
1556
|
|
1557
|
+
# The update time of the entity on the server after processing the mutation. If
|
1558
|
+
# the mutation doesn't change anything on the server, then the timestamp will be
|
1559
|
+
# the update timestamp of the current entity. This field will not be set after a
|
1560
|
+
# 'delete'.
|
1561
|
+
# Corresponds to the JSON property `updateTime`
|
1562
|
+
# @return [String]
|
1563
|
+
attr_accessor :update_time
|
1564
|
+
|
1438
1565
|
# The version of the entity on the server after processing the mutation. If the
|
1439
1566
|
# mutation doesn't change anything on the server, then the version will be the
|
1440
1567
|
# version of the current entity or, if no entity is present, a version that is
|
@@ -1452,6 +1579,7 @@ module Google
|
|
1452
1579
|
def update!(**args)
|
1453
1580
|
@conflict_detected = args[:conflict_detected] if args.key?(:conflict_detected)
|
1454
1581
|
@key = args[:key] if args.key?(:key)
|
1582
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
1455
1583
|
@version = args[:version] if args.key?(:version)
|
1456
1584
|
end
|
1457
1585
|
end
|
@@ -1725,6 +1853,17 @@ module Google
|
|
1725
1853
|
# @return [String]
|
1726
1854
|
attr_accessor :more_results
|
1727
1855
|
|
1856
|
+
# Read timestamp this batch was returned from. This applies to the range of
|
1857
|
+
# results from the query's `start_cursor` (or the beginning of the query if no
|
1858
|
+
# cursor was given) to this batch's `end_cursor` (not the query's `end_cursor`).
|
1859
|
+
# In a single transaction, subsequent query result batches for the same query
|
1860
|
+
# can have a greater timestamp. Each batch's read timestamp is valid for all
|
1861
|
+
# preceding batches. This value will not be set for eventually consistent
|
1862
|
+
# queries in Cloud Datastore.
|
1863
|
+
# Corresponds to the JSON property `readTime`
|
1864
|
+
# @return [String]
|
1865
|
+
attr_accessor :read_time
|
1866
|
+
|
1728
1867
|
# A cursor that points to the position after the last skipped result. Will be
|
1729
1868
|
# set when `skipped_results` != 0.
|
1730
1869
|
# Corresponds to the JSON property `skippedCursor`
|
@@ -1758,6 +1897,7 @@ module Google
|
|
1758
1897
|
@entity_result_type = args[:entity_result_type] if args.key?(:entity_result_type)
|
1759
1898
|
@entity_results = args[:entity_results] if args.key?(:entity_results)
|
1760
1899
|
@more_results = args[:more_results] if args.key?(:more_results)
|
1900
|
+
@read_time = args[:read_time] if args.key?(:read_time)
|
1761
1901
|
@skipped_cursor = args[:skipped_cursor] if args.key?(:skipped_cursor)
|
1762
1902
|
@skipped_results = args[:skipped_results] if args.key?(:skipped_results)
|
1763
1903
|
@snapshot_version = args[:snapshot_version] if args.key?(:snapshot_version)
|
@@ -1768,12 +1908,18 @@ module Google
|
|
1768
1908
|
class ReadOnly
|
1769
1909
|
include Google::Apis::Core::Hashable
|
1770
1910
|
|
1911
|
+
# Reads entities at the given time. This may not be older than 60 seconds.
|
1912
|
+
# Corresponds to the JSON property `readTime`
|
1913
|
+
# @return [String]
|
1914
|
+
attr_accessor :read_time
|
1915
|
+
|
1771
1916
|
def initialize(**args)
|
1772
1917
|
update!(**args)
|
1773
1918
|
end
|
1774
1919
|
|
1775
1920
|
# Update properties of this object
|
1776
1921
|
def update!(**args)
|
1922
|
+
@read_time = args[:read_time] if args.key?(:read_time)
|
1777
1923
|
end
|
1778
1924
|
end
|
1779
1925
|
|
@@ -1787,6 +1933,12 @@ module Google
|
|
1787
1933
|
# @return [String]
|
1788
1934
|
attr_accessor :read_consistency
|
1789
1935
|
|
1936
|
+
# Reads entities as they were at the given time. This may not be older than 270
|
1937
|
+
# seconds. This value is only supported for Cloud Firestore in Datastore mode.
|
1938
|
+
# Corresponds to the JSON property `readTime`
|
1939
|
+
# @return [String]
|
1940
|
+
attr_accessor :read_time
|
1941
|
+
|
1790
1942
|
# The identifier of the transaction in which to read. A transaction identifier
|
1791
1943
|
# is returned by a call to Datastore.BeginTransaction.
|
1792
1944
|
# Corresponds to the JSON property `transaction`
|
@@ -1801,6 +1953,7 @@ module Google
|
|
1801
1953
|
# Update properties of this object
|
1802
1954
|
def update!(**args)
|
1803
1955
|
@read_consistency = args[:read_consistency] if args.key?(:read_consistency)
|
1956
|
+
@read_time = args[:read_time] if args.key?(:read_time)
|
1804
1957
|
@transaction = args[:transaction] if args.key?(:transaction)
|
1805
1958
|
end
|
1806
1959
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DatastoreV1
|
18
18
|
# Version of the google-apis-datastore_v1 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.4.
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220402"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -166,12 +166,36 @@ module Google
|
|
166
166
|
include Google::Apis::Core::JsonObjectSupport
|
167
167
|
end
|
168
168
|
|
169
|
+
class GoogleDatastoreAdminV1MigrationProgressEvent
|
170
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
|
+
|
172
|
+
include Google::Apis::Core::JsonObjectSupport
|
173
|
+
end
|
174
|
+
|
175
|
+
class GoogleDatastoreAdminV1MigrationStateEvent
|
176
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
|
+
|
178
|
+
include Google::Apis::Core::JsonObjectSupport
|
179
|
+
end
|
180
|
+
|
181
|
+
class GoogleDatastoreAdminV1PrepareStepDetails
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
|
+
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
185
|
+
end
|
186
|
+
|
169
187
|
class GoogleDatastoreAdminV1Progress
|
170
188
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
189
|
|
172
190
|
include Google::Apis::Core::JsonObjectSupport
|
173
191
|
end
|
174
192
|
|
193
|
+
class GoogleDatastoreAdminV1RedirectWritesStepDetails
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
+
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
197
|
+
end
|
198
|
+
|
175
199
|
class GoogleDatastoreAdminV1beta1CommonMetadata
|
176
200
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
201
|
|
@@ -446,6 +470,7 @@ module Google
|
|
446
470
|
class CommitResponse
|
447
471
|
# @private
|
448
472
|
class Representation < Google::Apis::Core::JsonRepresentation
|
473
|
+
property :commit_time, as: 'commitTime'
|
449
474
|
property :index_updates, as: 'indexUpdates'
|
450
475
|
collection :mutation_results, as: 'mutationResults', class: Google::Apis::DatastoreV1::MutationResult, decorator: Google::Apis::DatastoreV1::MutationResult::Representation
|
451
476
|
|
@@ -483,6 +508,7 @@ module Google
|
|
483
508
|
property :cursor, :base64 => true, as: 'cursor'
|
484
509
|
property :entity, as: 'entity', class: Google::Apis::DatastoreV1::Entity, decorator: Google::Apis::DatastoreV1::Entity::Representation
|
485
510
|
|
511
|
+
property :update_time, as: 'updateTime'
|
486
512
|
property :version, :numeric_string => true, as: 'version'
|
487
513
|
end
|
488
514
|
end
|
@@ -622,6 +648,31 @@ module Google
|
|
622
648
|
end
|
623
649
|
end
|
624
650
|
|
651
|
+
class GoogleDatastoreAdminV1MigrationProgressEvent
|
652
|
+
# @private
|
653
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
654
|
+
property :prepare_step_details, as: 'prepareStepDetails', class: Google::Apis::DatastoreV1::GoogleDatastoreAdminV1PrepareStepDetails, decorator: Google::Apis::DatastoreV1::GoogleDatastoreAdminV1PrepareStepDetails::Representation
|
655
|
+
|
656
|
+
property :redirect_writes_step_details, as: 'redirectWritesStepDetails', class: Google::Apis::DatastoreV1::GoogleDatastoreAdminV1RedirectWritesStepDetails, decorator: Google::Apis::DatastoreV1::GoogleDatastoreAdminV1RedirectWritesStepDetails::Representation
|
657
|
+
|
658
|
+
property :step, as: 'step'
|
659
|
+
end
|
660
|
+
end
|
661
|
+
|
662
|
+
class GoogleDatastoreAdminV1MigrationStateEvent
|
663
|
+
# @private
|
664
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
665
|
+
property :state, as: 'state'
|
666
|
+
end
|
667
|
+
end
|
668
|
+
|
669
|
+
class GoogleDatastoreAdminV1PrepareStepDetails
|
670
|
+
# @private
|
671
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
672
|
+
property :concurrency_mode, as: 'concurrencyMode'
|
673
|
+
end
|
674
|
+
end
|
675
|
+
|
625
676
|
class GoogleDatastoreAdminV1Progress
|
626
677
|
# @private
|
627
678
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -630,6 +681,13 @@ module Google
|
|
630
681
|
end
|
631
682
|
end
|
632
683
|
|
684
|
+
class GoogleDatastoreAdminV1RedirectWritesStepDetails
|
685
|
+
# @private
|
686
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
687
|
+
property :concurrency_mode, as: 'concurrencyMode'
|
688
|
+
end
|
689
|
+
end
|
690
|
+
|
633
691
|
class GoogleDatastoreAdminV1beta1CommonMetadata
|
634
692
|
# @private
|
635
693
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -780,6 +838,7 @@ module Google
|
|
780
838
|
|
781
839
|
collection :missing, as: 'missing', class: Google::Apis::DatastoreV1::EntityResult, decorator: Google::Apis::DatastoreV1::EntityResult::Representation
|
782
840
|
|
841
|
+
property :read_time, as: 'readTime'
|
783
842
|
end
|
784
843
|
end
|
785
844
|
|
@@ -793,6 +852,7 @@ module Google
|
|
793
852
|
|
794
853
|
property :update, as: 'update', class: Google::Apis::DatastoreV1::Entity, decorator: Google::Apis::DatastoreV1::Entity::Representation
|
795
854
|
|
855
|
+
property :update_time, as: 'updateTime'
|
796
856
|
property :upsert, as: 'upsert', class: Google::Apis::DatastoreV1::Entity, decorator: Google::Apis::DatastoreV1::Entity::Representation
|
797
857
|
|
798
858
|
end
|
@@ -804,6 +864,7 @@ module Google
|
|
804
864
|
property :conflict_detected, as: 'conflictDetected'
|
805
865
|
property :key, as: 'key', class: Google::Apis::DatastoreV1::Key, decorator: Google::Apis::DatastoreV1::Key::Representation
|
806
866
|
|
867
|
+
property :update_time, as: 'updateTime'
|
807
868
|
property :version, :numeric_string => true, as: 'version'
|
808
869
|
end
|
809
870
|
end
|
@@ -888,6 +949,7 @@ module Google
|
|
888
949
|
collection :entity_results, as: 'entityResults', class: Google::Apis::DatastoreV1::EntityResult, decorator: Google::Apis::DatastoreV1::EntityResult::Representation
|
889
950
|
|
890
951
|
property :more_results, as: 'moreResults'
|
952
|
+
property :read_time, as: 'readTime'
|
891
953
|
property :skipped_cursor, :base64 => true, as: 'skippedCursor'
|
892
954
|
property :skipped_results, as: 'skippedResults'
|
893
955
|
property :snapshot_version, :numeric_string => true, as: 'snapshotVersion'
|
@@ -897,6 +959,7 @@ module Google
|
|
897
959
|
class ReadOnly
|
898
960
|
# @private
|
899
961
|
class Representation < Google::Apis::Core::JsonRepresentation
|
962
|
+
property :read_time, as: 'readTime'
|
900
963
|
end
|
901
964
|
end
|
902
965
|
|
@@ -904,6 +967,7 @@ module Google
|
|
904
967
|
# @private
|
905
968
|
class Representation < Google::Apis::Core::JsonRepresentation
|
906
969
|
property :read_consistency, as: 'readConsistency'
|
970
|
+
property :read_time, as: 'readTime'
|
907
971
|
property :transaction, :base64 => true, as: 'transaction'
|
908
972
|
end
|
909
973
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-datastore_v1
|
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: 2022-
|
11
|
+
date: 2022-04-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/main/generated/google-apis-datastore_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datastore_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datastore_v1/v0.13.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datastore_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -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.3.
|
78
|
+
rubygems_version: 3.3.5
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Datastore API V1
|