google-apis-datastore_v1 0.27.0 → 0.29.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: 5933d71d6d01e1bd08cdaa6ed713dd626ebc754f34922f4dc3c4487119ed4d8e
4
- data.tar.gz: dcb444a50c5899a43dce1eac057918038afed6c589da6e838b0e531ec150afa0
3
+ metadata.gz: 31d6eb7fbf9537ecc88669d7ba11b7b748e62cb100398ef7e82f845c240cae48
4
+ data.tar.gz: 3f08c67355c06cdbe4013359e5360098dc7227f297c5fef52314cea3f4144fc4
5
5
  SHA512:
6
- metadata.gz: 822c27f4efab0b1f6e85ade79a8fd16d573705e81534b68a7ca6bf7ddbd4af3bedef91e60b5eee84cb3688bfa3546d4e5d9447311f232d609190418be4149050
7
- data.tar.gz: 1c92c02c678be1a26718bfcc949adc9c879bb07a67de93925c0443d49ddecb05918709ded1b4e7e32ed3551b634a7232fad76425239713b32abbe84e806b0698
6
+ metadata.gz: 5a095725611c761f4600425b5a3ce1f8708537f4e6dc3d572bb9be3b0ddf905835eaa900415cce1fb20e2c82070d52d71b779074690cbe79415b9fa9ec5fc66c
7
+ data.tar.gz: d19cda499257de41ca4330c7d049728f9165cc82c0e3b7a5ecca02bd20814cb8e3ee68ab5604f3d8856a1bf6a6b92bc7de82ae89322864fe138726fb4cb38187
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datastore_v1
2
2
 
3
+ ### v0.29.0 (2023-07-23)
4
+
5
+ * Regenerated from discovery document revision 20230716
6
+
7
+ ### v0.28.0 (2023-05-14)
8
+
9
+ * Regenerated from discovery document revision 20230508
10
+
3
11
  ### v0.27.0 (2023-04-02)
4
12
 
5
13
  * Regenerated from discovery document revision 20230328
@@ -407,9 +407,7 @@ module Google
407
407
  end
408
408
  end
409
409
 
410
- # A Datastore data object. An entity is limited to 1 megabyte when stored. That
411
- # _roughly_ corresponds to a limit of 1 megabyte for the serialized form of this
412
- # message.
410
+ # A Datastore data object. Must not exceed 1 MiB - 4 bytes.
413
411
  class Entity
414
412
  include Google::Apis::Core::Hashable
415
413
 
@@ -456,9 +454,7 @@ module Google
456
454
  # @return [String]
457
455
  attr_accessor :cursor
458
456
 
459
- # A Datastore data object. An entity is limited to 1 megabyte when stored. That
460
- # _roughly_ corresponds to a limit of 1 megabyte for the serialized form of this
461
- # message.
457
+ # A Datastore data object. Must not exceed 1 MiB - 4 bytes.
462
458
  # Corresponds to the JSON property `entity`
463
459
  # @return [Google::Apis::DatastoreV1::Entity]
464
460
  attr_accessor :entity
@@ -1690,16 +1686,12 @@ module Google
1690
1686
  # @return [Google::Apis::DatastoreV1::Key]
1691
1687
  attr_accessor :delete
1692
1688
 
1693
- # A Datastore data object. An entity is limited to 1 megabyte when stored. That
1694
- # _roughly_ corresponds to a limit of 1 megabyte for the serialized form of this
1695
- # message.
1689
+ # A Datastore data object. Must not exceed 1 MiB - 4 bytes.
1696
1690
  # Corresponds to the JSON property `insert`
1697
1691
  # @return [Google::Apis::DatastoreV1::Entity]
1698
1692
  attr_accessor :insert
1699
1693
 
1700
- # A Datastore data object. An entity is limited to 1 megabyte when stored. That
1701
- # _roughly_ corresponds to a limit of 1 megabyte for the serialized form of this
1702
- # message.
1694
+ # A Datastore data object. Must not exceed 1 MiB - 4 bytes.
1703
1695
  # Corresponds to the JSON property `update`
1704
1696
  # @return [Google::Apis::DatastoreV1::Entity]
1705
1697
  attr_accessor :update
@@ -1710,9 +1702,7 @@ module Google
1710
1702
  # @return [String]
1711
1703
  attr_accessor :update_time
1712
1704
 
1713
- # A Datastore data object. An entity is limited to 1 megabyte when stored. That
1714
- # _roughly_ corresponds to a limit of 1 megabyte for the serialized form of this
1715
- # message.
1705
+ # A Datastore data object. Must not exceed 1 MiB - 4 bytes.
1716
1706
  # Corresponds to the JSON property `upsert`
1717
1707
  # @return [Google::Apis::DatastoreV1::Entity]
1718
1708
  attr_accessor :upsert
@@ -2121,7 +2111,9 @@ module Google
2121
2111
  class ReadOnly
2122
2112
  include Google::Apis::Core::Hashable
2123
2113
 
2124
- # Reads entities at the given time. This may not be older than 60 seconds.
2114
+ # Reads entities at the given time. This must be a microsecond precision
2115
+ # timestamp within the past one hour, or if Point-in-Time Recovery is enabled,
2116
+ # can additionally be a whole minute timestamp within the past 7 days.
2125
2117
  # Corresponds to the JSON property `readTime`
2126
2118
  # @return [String]
2127
2119
  attr_accessor :read_time
@@ -2152,8 +2144,10 @@ module Google
2152
2144
  # @return [String]
2153
2145
  attr_accessor :read_consistency
2154
2146
 
2155
- # Reads entities as they were at the given time. This may not be older than 270
2156
- # seconds. This value is only supported for Cloud Firestore in Datastore mode.
2147
+ # Reads entities as they were at the given time. This value is only supported
2148
+ # for Cloud Firestore in Datastore mode. This must be a microsecond precision
2149
+ # timestamp within the past one hour, or if Point-in-Time Recovery is enabled,
2150
+ # can additionally be a whole minute timestamp within the past 7 days.
2157
2151
  # Corresponds to the JSON property `readTime`
2158
2152
  # @return [String]
2159
2153
  attr_accessor :read_time
@@ -2547,9 +2541,7 @@ module Google
2547
2541
  # @return [Float]
2548
2542
  attr_accessor :double_value
2549
2543
 
2550
- # A Datastore data object. An entity is limited to 1 megabyte when stored. That
2551
- # _roughly_ corresponds to a limit of 1 megabyte for the serialized form of this
2552
- # message.
2544
+ # A Datastore data object. Must not exceed 1 MiB - 4 bytes.
2553
2545
  # Corresponds to the JSON property `entityValue`
2554
2546
  # @return [Google::Apis::DatastoreV1::Entity]
2555
2547
  attr_accessor :entity_value
@@ -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.27.0"
19
+ GEM_VERSION = "0.29.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230328"
25
+ REVISION = "20230716"
26
26
  end
27
27
  end
28
28
  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.27.0
4
+ version: 0.29.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: 2023-04-02 00:00:00.000000000 Z
11
+ date: 2023-07-23 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.27.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datastore_v1/v0.29.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: []