google-cloud-datastore-v1 0.9.0 → 0.11.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 +4 -4
- data/README.md +1 -1
- data/lib/google/cloud/datastore/v1/datastore/client.rb +1 -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/lib/google/datastore/v1/datastore_pb.rb +1 -0
- data/lib/google/datastore/v1/query_pb.rb +2 -0
- data/proto_docs/google/datastore/v1/aggregation_result.rb +4 -3
- data/proto_docs/google/datastore/v1/datastore.rb +13 -5
- data/proto_docs/google/datastore/v1/entity.rb +4 -3
- data/proto_docs/google/datastore/v1/query.rb +27 -12
- metadata +12 -7
@@ -0,0 +1,528 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
require "google/datastore/v1/datastore_pb"
|
20
|
+
|
21
|
+
module Google
|
22
|
+
module Cloud
|
23
|
+
module Datastore
|
24
|
+
module V1
|
25
|
+
module Datastore
|
26
|
+
module Rest
|
27
|
+
##
|
28
|
+
# REST service stub for the Datastore service.
|
29
|
+
# Service stub contains baseline method implementations
|
30
|
+
# including transcoding, making the REST call, and deserialing the response.
|
31
|
+
#
|
32
|
+
class ServiceStub
|
33
|
+
def initialize endpoint:, credentials:
|
34
|
+
# These require statements are intentionally placed here to initialize
|
35
|
+
# the REST modules only when it's required.
|
36
|
+
require "gapic/rest"
|
37
|
+
|
38
|
+
@client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint, credentials: credentials,
|
39
|
+
numeric_enums: true,
|
40
|
+
raise_faraday_errors: false
|
41
|
+
end
|
42
|
+
|
43
|
+
##
|
44
|
+
# Baseline implementation for the lookup REST call
|
45
|
+
#
|
46
|
+
# @param request_pb [::Google::Cloud::Datastore::V1::LookupRequest]
|
47
|
+
# A request object representing the call parameters. Required.
|
48
|
+
# @param options [::Gapic::CallOptions]
|
49
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
50
|
+
#
|
51
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
52
|
+
# @yieldparam result [::Google::Cloud::Datastore::V1::LookupResponse]
|
53
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
54
|
+
#
|
55
|
+
# @return [::Google::Cloud::Datastore::V1::LookupResponse]
|
56
|
+
# A result object deserialized from the server's reply
|
57
|
+
def lookup request_pb, options = nil
|
58
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
59
|
+
|
60
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_lookup_request request_pb
|
61
|
+
query_string_params = if query_string_params.any?
|
62
|
+
query_string_params.to_h { |p| p.split("=", 2) }
|
63
|
+
else
|
64
|
+
{}
|
65
|
+
end
|
66
|
+
|
67
|
+
response = @client_stub.make_http_request(
|
68
|
+
verb,
|
69
|
+
uri: uri,
|
70
|
+
body: body || "",
|
71
|
+
params: query_string_params,
|
72
|
+
options: options
|
73
|
+
)
|
74
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
75
|
+
result = ::Google::Cloud::Datastore::V1::LookupResponse.decode_json response.body, ignore_unknown_fields: true
|
76
|
+
|
77
|
+
yield result, operation if block_given?
|
78
|
+
result
|
79
|
+
end
|
80
|
+
|
81
|
+
##
|
82
|
+
# Baseline implementation for the run_query REST call
|
83
|
+
#
|
84
|
+
# @param request_pb [::Google::Cloud::Datastore::V1::RunQueryRequest]
|
85
|
+
# A request object representing the call parameters. Required.
|
86
|
+
# @param options [::Gapic::CallOptions]
|
87
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
88
|
+
#
|
89
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
90
|
+
# @yieldparam result [::Google::Cloud::Datastore::V1::RunQueryResponse]
|
91
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
92
|
+
#
|
93
|
+
# @return [::Google::Cloud::Datastore::V1::RunQueryResponse]
|
94
|
+
# A result object deserialized from the server's reply
|
95
|
+
def run_query request_pb, options = nil
|
96
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
97
|
+
|
98
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_run_query_request request_pb
|
99
|
+
query_string_params = if query_string_params.any?
|
100
|
+
query_string_params.to_h { |p| p.split("=", 2) }
|
101
|
+
else
|
102
|
+
{}
|
103
|
+
end
|
104
|
+
|
105
|
+
response = @client_stub.make_http_request(
|
106
|
+
verb,
|
107
|
+
uri: uri,
|
108
|
+
body: body || "",
|
109
|
+
params: query_string_params,
|
110
|
+
options: options
|
111
|
+
)
|
112
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
113
|
+
result = ::Google::Cloud::Datastore::V1::RunQueryResponse.decode_json response.body, ignore_unknown_fields: true
|
114
|
+
|
115
|
+
yield result, operation if block_given?
|
116
|
+
result
|
117
|
+
end
|
118
|
+
|
119
|
+
##
|
120
|
+
# Baseline implementation for the run_aggregation_query REST call
|
121
|
+
#
|
122
|
+
# @param request_pb [::Google::Cloud::Datastore::V1::RunAggregationQueryRequest]
|
123
|
+
# A request object representing the call parameters. Required.
|
124
|
+
# @param options [::Gapic::CallOptions]
|
125
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
126
|
+
#
|
127
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
128
|
+
# @yieldparam result [::Google::Cloud::Datastore::V1::RunAggregationQueryResponse]
|
129
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
130
|
+
#
|
131
|
+
# @return [::Google::Cloud::Datastore::V1::RunAggregationQueryResponse]
|
132
|
+
# A result object deserialized from the server's reply
|
133
|
+
def run_aggregation_query request_pb, options = nil
|
134
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
135
|
+
|
136
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_run_aggregation_query_request request_pb
|
137
|
+
query_string_params = if query_string_params.any?
|
138
|
+
query_string_params.to_h { |p| p.split("=", 2) }
|
139
|
+
else
|
140
|
+
{}
|
141
|
+
end
|
142
|
+
|
143
|
+
response = @client_stub.make_http_request(
|
144
|
+
verb,
|
145
|
+
uri: uri,
|
146
|
+
body: body || "",
|
147
|
+
params: query_string_params,
|
148
|
+
options: options
|
149
|
+
)
|
150
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
151
|
+
result = ::Google::Cloud::Datastore::V1::RunAggregationQueryResponse.decode_json response.body, ignore_unknown_fields: true
|
152
|
+
|
153
|
+
yield result, operation if block_given?
|
154
|
+
result
|
155
|
+
end
|
156
|
+
|
157
|
+
##
|
158
|
+
# Baseline implementation for the begin_transaction REST call
|
159
|
+
#
|
160
|
+
# @param request_pb [::Google::Cloud::Datastore::V1::BeginTransactionRequest]
|
161
|
+
# A request object representing the call parameters. Required.
|
162
|
+
# @param options [::Gapic::CallOptions]
|
163
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
164
|
+
#
|
165
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
166
|
+
# @yieldparam result [::Google::Cloud::Datastore::V1::BeginTransactionResponse]
|
167
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
168
|
+
#
|
169
|
+
# @return [::Google::Cloud::Datastore::V1::BeginTransactionResponse]
|
170
|
+
# A result object deserialized from the server's reply
|
171
|
+
def begin_transaction request_pb, options = nil
|
172
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
173
|
+
|
174
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_begin_transaction_request request_pb
|
175
|
+
query_string_params = if query_string_params.any?
|
176
|
+
query_string_params.to_h { |p| p.split("=", 2) }
|
177
|
+
else
|
178
|
+
{}
|
179
|
+
end
|
180
|
+
|
181
|
+
response = @client_stub.make_http_request(
|
182
|
+
verb,
|
183
|
+
uri: uri,
|
184
|
+
body: body || "",
|
185
|
+
params: query_string_params,
|
186
|
+
options: options
|
187
|
+
)
|
188
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
189
|
+
result = ::Google::Cloud::Datastore::V1::BeginTransactionResponse.decode_json response.body, ignore_unknown_fields: true
|
190
|
+
|
191
|
+
yield result, operation if block_given?
|
192
|
+
result
|
193
|
+
end
|
194
|
+
|
195
|
+
##
|
196
|
+
# Baseline implementation for the commit REST call
|
197
|
+
#
|
198
|
+
# @param request_pb [::Google::Cloud::Datastore::V1::CommitRequest]
|
199
|
+
# A request object representing the call parameters. Required.
|
200
|
+
# @param options [::Gapic::CallOptions]
|
201
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
202
|
+
#
|
203
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
204
|
+
# @yieldparam result [::Google::Cloud::Datastore::V1::CommitResponse]
|
205
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
206
|
+
#
|
207
|
+
# @return [::Google::Cloud::Datastore::V1::CommitResponse]
|
208
|
+
# A result object deserialized from the server's reply
|
209
|
+
def commit request_pb, options = nil
|
210
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
211
|
+
|
212
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_commit_request request_pb
|
213
|
+
query_string_params = if query_string_params.any?
|
214
|
+
query_string_params.to_h { |p| p.split("=", 2) }
|
215
|
+
else
|
216
|
+
{}
|
217
|
+
end
|
218
|
+
|
219
|
+
response = @client_stub.make_http_request(
|
220
|
+
verb,
|
221
|
+
uri: uri,
|
222
|
+
body: body || "",
|
223
|
+
params: query_string_params,
|
224
|
+
options: options
|
225
|
+
)
|
226
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
227
|
+
result = ::Google::Cloud::Datastore::V1::CommitResponse.decode_json response.body, ignore_unknown_fields: true
|
228
|
+
|
229
|
+
yield result, operation if block_given?
|
230
|
+
result
|
231
|
+
end
|
232
|
+
|
233
|
+
##
|
234
|
+
# Baseline implementation for the rollback REST call
|
235
|
+
#
|
236
|
+
# @param request_pb [::Google::Cloud::Datastore::V1::RollbackRequest]
|
237
|
+
# A request object representing the call parameters. Required.
|
238
|
+
# @param options [::Gapic::CallOptions]
|
239
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
240
|
+
#
|
241
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
242
|
+
# @yieldparam result [::Google::Cloud::Datastore::V1::RollbackResponse]
|
243
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
244
|
+
#
|
245
|
+
# @return [::Google::Cloud::Datastore::V1::RollbackResponse]
|
246
|
+
# A result object deserialized from the server's reply
|
247
|
+
def rollback request_pb, options = nil
|
248
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
249
|
+
|
250
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_rollback_request request_pb
|
251
|
+
query_string_params = if query_string_params.any?
|
252
|
+
query_string_params.to_h { |p| p.split("=", 2) }
|
253
|
+
else
|
254
|
+
{}
|
255
|
+
end
|
256
|
+
|
257
|
+
response = @client_stub.make_http_request(
|
258
|
+
verb,
|
259
|
+
uri: uri,
|
260
|
+
body: body || "",
|
261
|
+
params: query_string_params,
|
262
|
+
options: options
|
263
|
+
)
|
264
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
265
|
+
result = ::Google::Cloud::Datastore::V1::RollbackResponse.decode_json response.body, ignore_unknown_fields: true
|
266
|
+
|
267
|
+
yield result, operation if block_given?
|
268
|
+
result
|
269
|
+
end
|
270
|
+
|
271
|
+
##
|
272
|
+
# Baseline implementation for the allocate_ids REST call
|
273
|
+
#
|
274
|
+
# @param request_pb [::Google::Cloud::Datastore::V1::AllocateIdsRequest]
|
275
|
+
# A request object representing the call parameters. Required.
|
276
|
+
# @param options [::Gapic::CallOptions]
|
277
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
278
|
+
#
|
279
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
280
|
+
# @yieldparam result [::Google::Cloud::Datastore::V1::AllocateIdsResponse]
|
281
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
282
|
+
#
|
283
|
+
# @return [::Google::Cloud::Datastore::V1::AllocateIdsResponse]
|
284
|
+
# A result object deserialized from the server's reply
|
285
|
+
def allocate_ids request_pb, options = nil
|
286
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
287
|
+
|
288
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_allocate_ids_request request_pb
|
289
|
+
query_string_params = if query_string_params.any?
|
290
|
+
query_string_params.to_h { |p| p.split("=", 2) }
|
291
|
+
else
|
292
|
+
{}
|
293
|
+
end
|
294
|
+
|
295
|
+
response = @client_stub.make_http_request(
|
296
|
+
verb,
|
297
|
+
uri: uri,
|
298
|
+
body: body || "",
|
299
|
+
params: query_string_params,
|
300
|
+
options: options
|
301
|
+
)
|
302
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
303
|
+
result = ::Google::Cloud::Datastore::V1::AllocateIdsResponse.decode_json response.body, ignore_unknown_fields: true
|
304
|
+
|
305
|
+
yield result, operation if block_given?
|
306
|
+
result
|
307
|
+
end
|
308
|
+
|
309
|
+
##
|
310
|
+
# Baseline implementation for the reserve_ids REST call
|
311
|
+
#
|
312
|
+
# @param request_pb [::Google::Cloud::Datastore::V1::ReserveIdsRequest]
|
313
|
+
# A request object representing the call parameters. Required.
|
314
|
+
# @param options [::Gapic::CallOptions]
|
315
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
316
|
+
#
|
317
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
318
|
+
# @yieldparam result [::Google::Cloud::Datastore::V1::ReserveIdsResponse]
|
319
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
320
|
+
#
|
321
|
+
# @return [::Google::Cloud::Datastore::V1::ReserveIdsResponse]
|
322
|
+
# A result object deserialized from the server's reply
|
323
|
+
def reserve_ids request_pb, options = nil
|
324
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
325
|
+
|
326
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_reserve_ids_request request_pb
|
327
|
+
query_string_params = if query_string_params.any?
|
328
|
+
query_string_params.to_h { |p| p.split("=", 2) }
|
329
|
+
else
|
330
|
+
{}
|
331
|
+
end
|
332
|
+
|
333
|
+
response = @client_stub.make_http_request(
|
334
|
+
verb,
|
335
|
+
uri: uri,
|
336
|
+
body: body || "",
|
337
|
+
params: query_string_params,
|
338
|
+
options: options
|
339
|
+
)
|
340
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
341
|
+
result = ::Google::Cloud::Datastore::V1::ReserveIdsResponse.decode_json response.body, ignore_unknown_fields: true
|
342
|
+
|
343
|
+
yield result, operation if block_given?
|
344
|
+
result
|
345
|
+
end
|
346
|
+
|
347
|
+
##
|
348
|
+
# @private
|
349
|
+
#
|
350
|
+
# GRPC transcoding helper method for the lookup REST call
|
351
|
+
#
|
352
|
+
# @param request_pb [::Google::Cloud::Datastore::V1::LookupRequest]
|
353
|
+
# A request object representing the call parameters. Required.
|
354
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
355
|
+
# Uri, Body, Query string parameters
|
356
|
+
def self.transcode_lookup_request request_pb
|
357
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
358
|
+
.with_bindings(
|
359
|
+
uri_method: :post,
|
360
|
+
uri_template: "/v1/projects/{project_id}:lookup",
|
361
|
+
body: "*",
|
362
|
+
matches: [
|
363
|
+
["project_id", %r{^[^/]+/?$}, false]
|
364
|
+
]
|
365
|
+
)
|
366
|
+
transcoder.transcode request_pb
|
367
|
+
end
|
368
|
+
|
369
|
+
##
|
370
|
+
# @private
|
371
|
+
#
|
372
|
+
# GRPC transcoding helper method for the run_query REST call
|
373
|
+
#
|
374
|
+
# @param request_pb [::Google::Cloud::Datastore::V1::RunQueryRequest]
|
375
|
+
# A request object representing the call parameters. Required.
|
376
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
377
|
+
# Uri, Body, Query string parameters
|
378
|
+
def self.transcode_run_query_request request_pb
|
379
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
380
|
+
.with_bindings(
|
381
|
+
uri_method: :post,
|
382
|
+
uri_template: "/v1/projects/{project_id}:runQuery",
|
383
|
+
body: "*",
|
384
|
+
matches: [
|
385
|
+
["project_id", %r{^[^/]+/?$}, false]
|
386
|
+
]
|
387
|
+
)
|
388
|
+
transcoder.transcode request_pb
|
389
|
+
end
|
390
|
+
|
391
|
+
##
|
392
|
+
# @private
|
393
|
+
#
|
394
|
+
# GRPC transcoding helper method for the run_aggregation_query REST call
|
395
|
+
#
|
396
|
+
# @param request_pb [::Google::Cloud::Datastore::V1::RunAggregationQueryRequest]
|
397
|
+
# A request object representing the call parameters. Required.
|
398
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
399
|
+
# Uri, Body, Query string parameters
|
400
|
+
def self.transcode_run_aggregation_query_request request_pb
|
401
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
402
|
+
.with_bindings(
|
403
|
+
uri_method: :post,
|
404
|
+
uri_template: "/v1/projects/{project_id}:runAggregationQuery",
|
405
|
+
body: "*",
|
406
|
+
matches: [
|
407
|
+
["project_id", %r{^[^/]+/?$}, false]
|
408
|
+
]
|
409
|
+
)
|
410
|
+
transcoder.transcode request_pb
|
411
|
+
end
|
412
|
+
|
413
|
+
##
|
414
|
+
# @private
|
415
|
+
#
|
416
|
+
# GRPC transcoding helper method for the begin_transaction REST call
|
417
|
+
#
|
418
|
+
# @param request_pb [::Google::Cloud::Datastore::V1::BeginTransactionRequest]
|
419
|
+
# A request object representing the call parameters. Required.
|
420
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
421
|
+
# Uri, Body, Query string parameters
|
422
|
+
def self.transcode_begin_transaction_request request_pb
|
423
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
424
|
+
.with_bindings(
|
425
|
+
uri_method: :post,
|
426
|
+
uri_template: "/v1/projects/{project_id}:beginTransaction",
|
427
|
+
body: "*",
|
428
|
+
matches: [
|
429
|
+
["project_id", %r{^[^/]+/?$}, false]
|
430
|
+
]
|
431
|
+
)
|
432
|
+
transcoder.transcode request_pb
|
433
|
+
end
|
434
|
+
|
435
|
+
##
|
436
|
+
# @private
|
437
|
+
#
|
438
|
+
# GRPC transcoding helper method for the commit REST call
|
439
|
+
#
|
440
|
+
# @param request_pb [::Google::Cloud::Datastore::V1::CommitRequest]
|
441
|
+
# A request object representing the call parameters. Required.
|
442
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
443
|
+
# Uri, Body, Query string parameters
|
444
|
+
def self.transcode_commit_request request_pb
|
445
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
446
|
+
.with_bindings(
|
447
|
+
uri_method: :post,
|
448
|
+
uri_template: "/v1/projects/{project_id}:commit",
|
449
|
+
body: "*",
|
450
|
+
matches: [
|
451
|
+
["project_id", %r{^[^/]+/?$}, false]
|
452
|
+
]
|
453
|
+
)
|
454
|
+
transcoder.transcode request_pb
|
455
|
+
end
|
456
|
+
|
457
|
+
##
|
458
|
+
# @private
|
459
|
+
#
|
460
|
+
# GRPC transcoding helper method for the rollback REST call
|
461
|
+
#
|
462
|
+
# @param request_pb [::Google::Cloud::Datastore::V1::RollbackRequest]
|
463
|
+
# A request object representing the call parameters. Required.
|
464
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
465
|
+
# Uri, Body, Query string parameters
|
466
|
+
def self.transcode_rollback_request request_pb
|
467
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
468
|
+
.with_bindings(
|
469
|
+
uri_method: :post,
|
470
|
+
uri_template: "/v1/projects/{project_id}:rollback",
|
471
|
+
body: "*",
|
472
|
+
matches: [
|
473
|
+
["project_id", %r{^[^/]+/?$}, false]
|
474
|
+
]
|
475
|
+
)
|
476
|
+
transcoder.transcode request_pb
|
477
|
+
end
|
478
|
+
|
479
|
+
##
|
480
|
+
# @private
|
481
|
+
#
|
482
|
+
# GRPC transcoding helper method for the allocate_ids REST call
|
483
|
+
#
|
484
|
+
# @param request_pb [::Google::Cloud::Datastore::V1::AllocateIdsRequest]
|
485
|
+
# A request object representing the call parameters. Required.
|
486
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
487
|
+
# Uri, Body, Query string parameters
|
488
|
+
def self.transcode_allocate_ids_request request_pb
|
489
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
490
|
+
.with_bindings(
|
491
|
+
uri_method: :post,
|
492
|
+
uri_template: "/v1/projects/{project_id}:allocateIds",
|
493
|
+
body: "*",
|
494
|
+
matches: [
|
495
|
+
["project_id", %r{^[^/]+/?$}, false]
|
496
|
+
]
|
497
|
+
)
|
498
|
+
transcoder.transcode request_pb
|
499
|
+
end
|
500
|
+
|
501
|
+
##
|
502
|
+
# @private
|
503
|
+
#
|
504
|
+
# GRPC transcoding helper method for the reserve_ids REST call
|
505
|
+
#
|
506
|
+
# @param request_pb [::Google::Cloud::Datastore::V1::ReserveIdsRequest]
|
507
|
+
# A request object representing the call parameters. Required.
|
508
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
509
|
+
# Uri, Body, Query string parameters
|
510
|
+
def self.transcode_reserve_ids_request request_pb
|
511
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
512
|
+
.with_bindings(
|
513
|
+
uri_method: :post,
|
514
|
+
uri_template: "/v1/projects/{project_id}:reserveIds",
|
515
|
+
body: "*",
|
516
|
+
matches: [
|
517
|
+
["project_id", %r{^[^/]+/?$}, false]
|
518
|
+
]
|
519
|
+
)
|
520
|
+
transcoder.transcode request_pb
|
521
|
+
end
|
522
|
+
end
|
523
|
+
end
|
524
|
+
end
|
525
|
+
end
|
526
|
+
end
|
527
|
+
end
|
528
|
+
end
|
@@ -0,0 +1,56 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
require "gapic/rest"
|
20
|
+
require "gapic/config"
|
21
|
+
require "gapic/config/method"
|
22
|
+
|
23
|
+
require "google/cloud/datastore/v1/version"
|
24
|
+
|
25
|
+
require "google/cloud/datastore/v1/datastore/credentials"
|
26
|
+
require "google/cloud/datastore/v1/datastore/rest/client"
|
27
|
+
|
28
|
+
module Google
|
29
|
+
module Cloud
|
30
|
+
module Datastore
|
31
|
+
module V1
|
32
|
+
##
|
33
|
+
# Each RPC normalizes the partition IDs of the keys in its input entities,
|
34
|
+
# and always returns entities with keys with normalized partition IDs.
|
35
|
+
# This applies to all keys and entities, including those in values, except keys
|
36
|
+
# with both an empty path and an empty or unset partition ID. Normalization of
|
37
|
+
# input keys sets the project ID (if not already set) to the project ID from
|
38
|
+
# the request.
|
39
|
+
#
|
40
|
+
# To load this service and instantiate a REST client:
|
41
|
+
#
|
42
|
+
# require "google/cloud/datastore/v1/datastore/rest"
|
43
|
+
# client = ::Google::Cloud::Datastore::V1::Datastore::Rest::Client.new
|
44
|
+
#
|
45
|
+
module Datastore
|
46
|
+
# Client for the REST transport
|
47
|
+
module Rest
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
helper_path = ::File.join __dir__, "rest", "helpers.rb"
|
56
|
+
require "google/cloud/datastore/v1/datastore/rest/helpers" if ::File.file? helper_path
|
@@ -24,6 +24,7 @@ require "google/cloud/datastore/v1/version"
|
|
24
24
|
|
25
25
|
require "google/cloud/datastore/v1/datastore/credentials"
|
26
26
|
require "google/cloud/datastore/v1/datastore/client"
|
27
|
+
require "google/cloud/datastore/v1/datastore/rest"
|
27
28
|
|
28
29
|
module Google
|
29
30
|
module Cloud
|
@@ -42,6 +43,11 @@ module Google
|
|
42
43
|
# require "google/cloud/datastore/v1/datastore"
|
43
44
|
# client = ::Google::Cloud::Datastore::V1::Datastore::Client.new
|
44
45
|
#
|
46
|
+
# @example Load this service and instantiate a REST client
|
47
|
+
#
|
48
|
+
# require "google/cloud/datastore/v1/datastore/rest"
|
49
|
+
# client = ::Google::Cloud::Datastore::V1::Datastore::Rest::Client.new
|
50
|
+
#
|
45
51
|
module Datastore
|
46
52
|
end
|
47
53
|
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
require "google/cloud/datastore/v1/datastore/rest"
|
20
|
+
require "google/cloud/datastore/v1/version"
|
21
|
+
|
22
|
+
module Google
|
23
|
+
module Cloud
|
24
|
+
module Datastore
|
25
|
+
##
|
26
|
+
# To load just the REST part of this package, including all its services, and instantiate a REST client:
|
27
|
+
#
|
28
|
+
# @example
|
29
|
+
#
|
30
|
+
# require "google/cloud/datastore/v1/rest"
|
31
|
+
# client = ::Google::Cloud::Datastore::V1::Datastore::Rest::Client.new
|
32
|
+
#
|
33
|
+
module V1
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -30,6 +30,11 @@ module Google
|
|
30
30
|
# require "google/cloud/datastore/v1"
|
31
31
|
# client = ::Google::Cloud::Datastore::V1::Datastore::Client.new
|
32
32
|
#
|
33
|
+
# @example Load this package, including all its services, and instantiate a REST client
|
34
|
+
#
|
35
|
+
# require "google/cloud/datastore/v1"
|
36
|
+
# client = ::Google::Cloud::Datastore::V1::Datastore::Rest::Client.new
|
37
|
+
#
|
33
38
|
module V1
|
34
39
|
end
|
35
40
|
end
|
@@ -122,6 +122,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
122
122
|
add_message "google.datastore.v1.MutationResult" do
|
123
123
|
optional :key, :message, 3, "google.datastore.v1.Key"
|
124
124
|
optional :version, :int64, 4
|
125
|
+
optional :create_time, :message, 7, "google.protobuf.Timestamp"
|
125
126
|
optional :update_time, :message, 6, "google.protobuf.Timestamp"
|
126
127
|
optional :conflict_detected, :bool, 5
|
127
128
|
end
|