google-cloud-datastore-v1 0.10.0 → 0.11.1
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 +4 -4
- data/README.md +2 -2
- data/lib/google/cloud/datastore/v1/datastore/client.rb +2 -2
- data/lib/google/cloud/datastore/v1/datastore/rest/client.rb +963 -0
- data/lib/google/cloud/datastore/v1/datastore/rest/service_stub.rb +528 -0
- data/lib/google/cloud/datastore/v1/datastore/rest.rb +56 -0
- data/lib/google/cloud/datastore/v1/datastore.rb +6 -0
- data/lib/google/cloud/datastore/v1/rest.rb +37 -0
- data/lib/google/cloud/datastore/v1/version.rb +1 -1
- data/lib/google/cloud/datastore/v1.rb +5 -0
- data/proto_docs/google/api/client.rb +9 -3
- data/proto_docs/google/datastore/v1/entity.rb +2 -2
- data/proto_docs/google/datastore/v1/query.rb +9 -4
- metadata +10 -5
@@ -35,7 +35,9 @@ module Google
|
|
35
35
|
# Details about how and where to publish client libraries.
|
36
36
|
# @!attribute [rw] version
|
37
37
|
# @return [::String]
|
38
|
-
# Version of the API to apply these settings to.
|
38
|
+
# Version of the API to apply these settings to. This is the full protobuf
|
39
|
+
# package for the API, ending in the version element.
|
40
|
+
# Examples: "google.cloud.speech.v1" and "google.spanner.admin.database.v1".
|
39
41
|
# @!attribute [rw] launch_stage
|
40
42
|
# @return [::Google::Api::LaunchStage]
|
41
43
|
# Launch stage of this version of the API.
|
@@ -111,6 +113,10 @@ module Google
|
|
111
113
|
# Client library settings. If the same version string appears multiple
|
112
114
|
# times in this list, then the last one wins. Settings from earlier
|
113
115
|
# settings with the same version string are discarded.
|
116
|
+
# @!attribute [rw] proto_reference_documentation_uri
|
117
|
+
# @return [::String]
|
118
|
+
# Optional link to proto reference documentation. Example:
|
119
|
+
# https://cloud.google.com/pubsub/lite/docs/reference/rpc
|
114
120
|
class Publishing
|
115
121
|
include ::Google::Protobuf::MessageExts
|
116
122
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -240,8 +246,8 @@ module Google
|
|
240
246
|
# Example of a YAML configuration::
|
241
247
|
#
|
242
248
|
# publishing:
|
243
|
-
#
|
244
|
-
# - selector:
|
249
|
+
# method_settings:
|
250
|
+
# - selector: google.cloud.speech.v2.Speech.BatchRecognize
|
245
251
|
# long_running:
|
246
252
|
# initial_poll_delay:
|
247
253
|
# seconds: 60 # 1 minute
|
@@ -216,8 +216,8 @@ module Google
|
|
216
216
|
# The map's keys are property names.
|
217
217
|
# A property name matching regex `__.*__` is reserved.
|
218
218
|
# A reserved property name is forbidden in certain documented contexts.
|
219
|
-
# The
|
220
|
-
#
|
219
|
+
# The map keys, represented as UTF-8, must not exceed 1,500 bytes and cannot
|
220
|
+
# be empty.
|
221
221
|
class Entity
|
222
222
|
include ::Google::Protobuf::MessageExts
|
223
223
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -95,6 +95,11 @@ module Google
|
|
95
95
|
# The properties to make distinct. The query results will contain the first
|
96
96
|
# result for each distinct combination of values for the given properties
|
97
97
|
# (if empty, all results are returned).
|
98
|
+
#
|
99
|
+
# Requires:
|
100
|
+
#
|
101
|
+
# * If `order` is specified, the set of distinct on properties must appear
|
102
|
+
# before the non-distinct on properties in `order`.
|
98
103
|
# @!attribute [rw] start_cursor
|
99
104
|
# @return [::String]
|
100
105
|
# A starting point for the query results. Query cursors are
|
@@ -139,7 +144,7 @@ module Google
|
|
139
144
|
include ::Google::Protobuf::MessageExts
|
140
145
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
141
146
|
|
142
|
-
# Defines
|
147
|
+
# Defines an aggregation that produces a single result.
|
143
148
|
# @!attribute [rw] count
|
144
149
|
# @return [::Google::Cloud::Datastore::V1::AggregationQuery::Aggregation::Count]
|
145
150
|
# Count aggregator.
|
@@ -156,7 +161,7 @@ module Google
|
|
156
161
|
# COUNT_UP_TO(1) AS count_up_to_1,
|
157
162
|
# COUNT_UP_TO(2),
|
158
163
|
# COUNT_UP_TO(3) AS count_up_to_3,
|
159
|
-
#
|
164
|
+
# COUNT(*)
|
160
165
|
# OVER (
|
161
166
|
# ...
|
162
167
|
# );
|
@@ -169,7 +174,7 @@ module Google
|
|
169
174
|
# COUNT_UP_TO(1) AS count_up_to_1,
|
170
175
|
# COUNT_UP_TO(2) AS property_1,
|
171
176
|
# COUNT_UP_TO(3) AS count_up_to_3,
|
172
|
-
#
|
177
|
+
# COUNT(*) AS property_2
|
173
178
|
# OVER (
|
174
179
|
# ...
|
175
180
|
# );
|
@@ -194,7 +199,7 @@ module Google
|
|
194
199
|
# count.
|
195
200
|
#
|
196
201
|
# This provides a way to set an upper bound on the number of entities
|
197
|
-
# to scan, limiting latency and cost.
|
202
|
+
# to scan, limiting latency, and cost.
|
198
203
|
#
|
199
204
|
# Unspecified is interpreted as no bound.
|
200
205
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-datastore-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.11.1
|
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-
|
11
|
+
date: 2023-03-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.18.0
|
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.18.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -174,6 +174,10 @@ files:
|
|
174
174
|
- lib/google/cloud/datastore/v1/datastore.rb
|
175
175
|
- lib/google/cloud/datastore/v1/datastore/client.rb
|
176
176
|
- lib/google/cloud/datastore/v1/datastore/credentials.rb
|
177
|
+
- lib/google/cloud/datastore/v1/datastore/rest.rb
|
178
|
+
- lib/google/cloud/datastore/v1/datastore/rest/client.rb
|
179
|
+
- lib/google/cloud/datastore/v1/datastore/rest/service_stub.rb
|
180
|
+
- lib/google/cloud/datastore/v1/rest.rb
|
177
181
|
- lib/google/cloud/datastore/v1/version.rb
|
178
182
|
- lib/google/datastore/v1/aggregation_result_pb.rb
|
179
183
|
- lib/google/datastore/v1/datastore_pb.rb
|
@@ -217,5 +221,6 @@ requirements: []
|
|
217
221
|
rubygems_version: 3.4.2
|
218
222
|
signing_key:
|
219
223
|
specification_version: 4
|
220
|
-
summary:
|
224
|
+
summary: Accesses the schemaless NoSQL database to provide fully managed, robust,
|
225
|
+
scalable storage for your application.
|
221
226
|
test_files: []
|