google-cloud-alloy_db-v1alpha 0.7.2 → 0.9.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.
Files changed (27) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +31 -21
  3. data/lib/google/cloud/alloy_db/v1alpha/alloy_db_admin/client.rb +560 -184
  4. data/lib/google/cloud/alloy_db/v1alpha/alloy_db_admin/operations.rb +12 -15
  5. data/lib/google/cloud/alloy_db/v1alpha/alloy_db_admin/rest/client.rb +4276 -0
  6. data/lib/google/cloud/alloy_db/v1alpha/alloy_db_admin/rest/operations.rb +907 -0
  7. data/lib/google/cloud/alloy_db/v1alpha/alloy_db_admin/rest/service_stub.rb +2236 -0
  8. data/lib/google/cloud/alloy_db/v1alpha/alloy_db_admin/rest.rb +54 -0
  9. data/lib/google/cloud/alloy_db/v1alpha/alloy_db_admin.rb +6 -0
  10. data/lib/google/cloud/alloy_db/v1alpha/bindings_override.rb +102 -0
  11. data/lib/google/cloud/alloy_db/v1alpha/rest.rb +38 -0
  12. data/lib/google/cloud/alloy_db/v1alpha/version.rb +1 -1
  13. data/lib/google/cloud/alloy_db/v1alpha.rb +5 -0
  14. data/lib/google/cloud/alloydb/v1alpha/csql_resources_pb.rb +44 -0
  15. data/lib/google/cloud/alloydb/v1alpha/data_model_pb.rb +45 -0
  16. data/lib/google/cloud/alloydb/v1alpha/gemini_pb.rb +45 -0
  17. data/lib/google/cloud/alloydb/v1alpha/resources_pb.rb +11 -1
  18. data/lib/google/cloud/alloydb/v1alpha/service_pb.rb +22 -1
  19. data/lib/google/cloud/alloydb/v1alpha/service_services_pb.rb +9 -0
  20. data/proto_docs/google/api/client.rb +39 -0
  21. data/proto_docs/google/cloud/alloydb/v1alpha/csql_resources.rb +42 -0
  22. data/proto_docs/google/cloud/alloydb/v1alpha/data_model.rb +75 -0
  23. data/proto_docs/google/cloud/alloydb/v1alpha/gemini.rb +52 -0
  24. data/proto_docs/google/cloud/alloydb/v1alpha/resources.rb +214 -39
  25. data/proto_docs/google/cloud/alloydb/v1alpha/service.rb +540 -146
  26. data/proto_docs/google/longrunning/operations.rb +19 -14
  27. metadata +18 -6
@@ -0,0 +1,2236 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2024 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/alloydb/v1alpha/service_pb"
20
+
21
+ module Google
22
+ module Cloud
23
+ module AlloyDB
24
+ module V1alpha
25
+ module AlloyDBAdmin
26
+ module Rest
27
+ ##
28
+ # REST service stub for the AlloyDBAdmin service.
29
+ # Service stub contains baseline method implementations
30
+ # including transcoding, making the REST call, and deserialing the response.
31
+ #
32
+ class ServiceStub
33
+ # @private
34
+ def initialize endpoint:, endpoint_template:, universe_domain:, credentials:, logger:
35
+ # These require statements are intentionally placed here to initialize
36
+ # the REST modules only when it's required.
37
+ require "gapic/rest"
38
+
39
+ @client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint,
40
+ endpoint_template: endpoint_template,
41
+ universe_domain: universe_domain,
42
+ credentials: credentials,
43
+ numeric_enums: true,
44
+ service_name: self.class,
45
+ raise_faraday_errors: false,
46
+ logger: logger
47
+ end
48
+
49
+ ##
50
+ # The effective universe domain
51
+ #
52
+ # @return [String]
53
+ #
54
+ def universe_domain
55
+ @client_stub.universe_domain
56
+ end
57
+
58
+ ##
59
+ # The effective endpoint
60
+ #
61
+ # @return [String]
62
+ #
63
+ def endpoint
64
+ @client_stub.endpoint
65
+ end
66
+
67
+ ##
68
+ # The logger used for request/response debug logging.
69
+ #
70
+ # @return [Logger]
71
+ #
72
+ def logger stub: false
73
+ stub ? @client_stub.stub_logger : @client_stub.logger
74
+ end
75
+
76
+ ##
77
+ # Baseline implementation for the list_clusters REST call
78
+ #
79
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::ListClustersRequest]
80
+ # A request object representing the call parameters. Required.
81
+ # @param options [::Gapic::CallOptions]
82
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
83
+ #
84
+ # @yield [result, operation] Access the result along with the TransportOperation object
85
+ # @yieldparam result [::Google::Cloud::AlloyDB::V1alpha::ListClustersResponse]
86
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
87
+ #
88
+ # @return [::Google::Cloud::AlloyDB::V1alpha::ListClustersResponse]
89
+ # A result object deserialized from the server's reply
90
+ def list_clusters request_pb, options = nil
91
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
92
+
93
+ verb, uri, query_string_params, body = ServiceStub.transcode_list_clusters_request request_pb
94
+ query_string_params = if query_string_params.any?
95
+ query_string_params.to_h { |p| p.split "=", 2 }
96
+ else
97
+ {}
98
+ end
99
+
100
+ response = @client_stub.make_http_request(
101
+ verb,
102
+ uri: uri,
103
+ body: body || "",
104
+ params: query_string_params,
105
+ method_name: "list_clusters",
106
+ options: options
107
+ )
108
+ operation = ::Gapic::Rest::TransportOperation.new response
109
+ result = ::Google::Cloud::AlloyDB::V1alpha::ListClustersResponse.decode_json response.body, ignore_unknown_fields: true
110
+ catch :response do
111
+ yield result, operation if block_given?
112
+ result
113
+ end
114
+ end
115
+
116
+ ##
117
+ # Baseline implementation for the get_cluster REST call
118
+ #
119
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::GetClusterRequest]
120
+ # A request object representing the call parameters. Required.
121
+ # @param options [::Gapic::CallOptions]
122
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
123
+ #
124
+ # @yield [result, operation] Access the result along with the TransportOperation object
125
+ # @yieldparam result [::Google::Cloud::AlloyDB::V1alpha::Cluster]
126
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
127
+ #
128
+ # @return [::Google::Cloud::AlloyDB::V1alpha::Cluster]
129
+ # A result object deserialized from the server's reply
130
+ def get_cluster request_pb, options = nil
131
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
132
+
133
+ verb, uri, query_string_params, body = ServiceStub.transcode_get_cluster_request request_pb
134
+ query_string_params = if query_string_params.any?
135
+ query_string_params.to_h { |p| p.split "=", 2 }
136
+ else
137
+ {}
138
+ end
139
+
140
+ response = @client_stub.make_http_request(
141
+ verb,
142
+ uri: uri,
143
+ body: body || "",
144
+ params: query_string_params,
145
+ method_name: "get_cluster",
146
+ options: options
147
+ )
148
+ operation = ::Gapic::Rest::TransportOperation.new response
149
+ result = ::Google::Cloud::AlloyDB::V1alpha::Cluster.decode_json response.body, ignore_unknown_fields: true
150
+ catch :response do
151
+ yield result, operation if block_given?
152
+ result
153
+ end
154
+ end
155
+
156
+ ##
157
+ # Baseline implementation for the create_cluster REST call
158
+ #
159
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::CreateClusterRequest]
160
+ # A request object representing the call parameters. Required.
161
+ # @param options [::Gapic::CallOptions]
162
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
163
+ #
164
+ # @yield [result, operation] Access the result along with the TransportOperation object
165
+ # @yieldparam result [::Google::Longrunning::Operation]
166
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
167
+ #
168
+ # @return [::Google::Longrunning::Operation]
169
+ # A result object deserialized from the server's reply
170
+ def create_cluster request_pb, options = nil
171
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
172
+
173
+ verb, uri, query_string_params, body = ServiceStub.transcode_create_cluster_request request_pb
174
+ query_string_params = if query_string_params.any?
175
+ query_string_params.to_h { |p| p.split "=", 2 }
176
+ else
177
+ {}
178
+ end
179
+
180
+ response = @client_stub.make_http_request(
181
+ verb,
182
+ uri: uri,
183
+ body: body || "",
184
+ params: query_string_params,
185
+ method_name: "create_cluster",
186
+ options: options
187
+ )
188
+ operation = ::Gapic::Rest::TransportOperation.new response
189
+ result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
190
+ catch :response do
191
+ yield result, operation if block_given?
192
+ result
193
+ end
194
+ end
195
+
196
+ ##
197
+ # Baseline implementation for the update_cluster REST call
198
+ #
199
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::UpdateClusterRequest]
200
+ # A request object representing the call parameters. Required.
201
+ # @param options [::Gapic::CallOptions]
202
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
203
+ #
204
+ # @yield [result, operation] Access the result along with the TransportOperation object
205
+ # @yieldparam result [::Google::Longrunning::Operation]
206
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
207
+ #
208
+ # @return [::Google::Longrunning::Operation]
209
+ # A result object deserialized from the server's reply
210
+ def update_cluster request_pb, options = nil
211
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
212
+
213
+ verb, uri, query_string_params, body = ServiceStub.transcode_update_cluster_request request_pb
214
+ query_string_params = if query_string_params.any?
215
+ query_string_params.to_h { |p| p.split "=", 2 }
216
+ else
217
+ {}
218
+ end
219
+
220
+ response = @client_stub.make_http_request(
221
+ verb,
222
+ uri: uri,
223
+ body: body || "",
224
+ params: query_string_params,
225
+ method_name: "update_cluster",
226
+ options: options
227
+ )
228
+ operation = ::Gapic::Rest::TransportOperation.new response
229
+ result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
230
+ catch :response do
231
+ yield result, operation if block_given?
232
+ result
233
+ end
234
+ end
235
+
236
+ ##
237
+ # Baseline implementation for the upgrade_cluster REST call
238
+ #
239
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::UpgradeClusterRequest]
240
+ # A request object representing the call parameters. Required.
241
+ # @param options [::Gapic::CallOptions]
242
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
243
+ #
244
+ # @yield [result, operation] Access the result along with the TransportOperation object
245
+ # @yieldparam result [::Google::Longrunning::Operation]
246
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
247
+ #
248
+ # @return [::Google::Longrunning::Operation]
249
+ # A result object deserialized from the server's reply
250
+ def upgrade_cluster request_pb, options = nil
251
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
252
+
253
+ verb, uri, query_string_params, body = ServiceStub.transcode_upgrade_cluster_request request_pb
254
+ query_string_params = if query_string_params.any?
255
+ query_string_params.to_h { |p| p.split "=", 2 }
256
+ else
257
+ {}
258
+ end
259
+
260
+ response = @client_stub.make_http_request(
261
+ verb,
262
+ uri: uri,
263
+ body: body || "",
264
+ params: query_string_params,
265
+ method_name: "upgrade_cluster",
266
+ options: options
267
+ )
268
+ operation = ::Gapic::Rest::TransportOperation.new response
269
+ result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
270
+ catch :response do
271
+ yield result, operation if block_given?
272
+ result
273
+ end
274
+ end
275
+
276
+ ##
277
+ # Baseline implementation for the delete_cluster REST call
278
+ #
279
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::DeleteClusterRequest]
280
+ # A request object representing the call parameters. Required.
281
+ # @param options [::Gapic::CallOptions]
282
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
283
+ #
284
+ # @yield [result, operation] Access the result along with the TransportOperation object
285
+ # @yieldparam result [::Google::Longrunning::Operation]
286
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
287
+ #
288
+ # @return [::Google::Longrunning::Operation]
289
+ # A result object deserialized from the server's reply
290
+ def delete_cluster request_pb, options = nil
291
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
292
+
293
+ verb, uri, query_string_params, body = ServiceStub.transcode_delete_cluster_request request_pb
294
+ query_string_params = if query_string_params.any?
295
+ query_string_params.to_h { |p| p.split "=", 2 }
296
+ else
297
+ {}
298
+ end
299
+
300
+ response = @client_stub.make_http_request(
301
+ verb,
302
+ uri: uri,
303
+ body: body || "",
304
+ params: query_string_params,
305
+ method_name: "delete_cluster",
306
+ options: options
307
+ )
308
+ operation = ::Gapic::Rest::TransportOperation.new response
309
+ result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
310
+ catch :response do
311
+ yield result, operation if block_given?
312
+ result
313
+ end
314
+ end
315
+
316
+ ##
317
+ # Baseline implementation for the promote_cluster REST call
318
+ #
319
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::PromoteClusterRequest]
320
+ # A request object representing the call parameters. Required.
321
+ # @param options [::Gapic::CallOptions]
322
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
323
+ #
324
+ # @yield [result, operation] Access the result along with the TransportOperation object
325
+ # @yieldparam result [::Google::Longrunning::Operation]
326
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
327
+ #
328
+ # @return [::Google::Longrunning::Operation]
329
+ # A result object deserialized from the server's reply
330
+ def promote_cluster request_pb, options = nil
331
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
332
+
333
+ verb, uri, query_string_params, body = ServiceStub.transcode_promote_cluster_request request_pb
334
+ query_string_params = if query_string_params.any?
335
+ query_string_params.to_h { |p| p.split "=", 2 }
336
+ else
337
+ {}
338
+ end
339
+
340
+ response = @client_stub.make_http_request(
341
+ verb,
342
+ uri: uri,
343
+ body: body || "",
344
+ params: query_string_params,
345
+ method_name: "promote_cluster",
346
+ options: options
347
+ )
348
+ operation = ::Gapic::Rest::TransportOperation.new response
349
+ result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
350
+ catch :response do
351
+ yield result, operation if block_given?
352
+ result
353
+ end
354
+ end
355
+
356
+ ##
357
+ # Baseline implementation for the switchover_cluster REST call
358
+ #
359
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::SwitchoverClusterRequest]
360
+ # A request object representing the call parameters. Required.
361
+ # @param options [::Gapic::CallOptions]
362
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
363
+ #
364
+ # @yield [result, operation] Access the result along with the TransportOperation object
365
+ # @yieldparam result [::Google::Longrunning::Operation]
366
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
367
+ #
368
+ # @return [::Google::Longrunning::Operation]
369
+ # A result object deserialized from the server's reply
370
+ def switchover_cluster request_pb, options = nil
371
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
372
+
373
+ verb, uri, query_string_params, body = ServiceStub.transcode_switchover_cluster_request request_pb
374
+ query_string_params = if query_string_params.any?
375
+ query_string_params.to_h { |p| p.split "=", 2 }
376
+ else
377
+ {}
378
+ end
379
+
380
+ response = @client_stub.make_http_request(
381
+ verb,
382
+ uri: uri,
383
+ body: body || "",
384
+ params: query_string_params,
385
+ method_name: "switchover_cluster",
386
+ options: options
387
+ )
388
+ operation = ::Gapic::Rest::TransportOperation.new response
389
+ result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
390
+ catch :response do
391
+ yield result, operation if block_given?
392
+ result
393
+ end
394
+ end
395
+
396
+ ##
397
+ # Baseline implementation for the restore_cluster REST call
398
+ #
399
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::RestoreClusterRequest]
400
+ # A request object representing the call parameters. Required.
401
+ # @param options [::Gapic::CallOptions]
402
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
403
+ #
404
+ # @yield [result, operation] Access the result along with the TransportOperation object
405
+ # @yieldparam result [::Google::Longrunning::Operation]
406
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
407
+ #
408
+ # @return [::Google::Longrunning::Operation]
409
+ # A result object deserialized from the server's reply
410
+ def restore_cluster request_pb, options = nil
411
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
412
+
413
+ verb, uri, query_string_params, body = ServiceStub.transcode_restore_cluster_request request_pb
414
+ query_string_params = if query_string_params.any?
415
+ query_string_params.to_h { |p| p.split "=", 2 }
416
+ else
417
+ {}
418
+ end
419
+
420
+ response = @client_stub.make_http_request(
421
+ verb,
422
+ uri: uri,
423
+ body: body || "",
424
+ params: query_string_params,
425
+ method_name: "restore_cluster",
426
+ options: options
427
+ )
428
+ operation = ::Gapic::Rest::TransportOperation.new response
429
+ result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
430
+ catch :response do
431
+ yield result, operation if block_given?
432
+ result
433
+ end
434
+ end
435
+
436
+ ##
437
+ # Baseline implementation for the create_secondary_cluster REST call
438
+ #
439
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::CreateSecondaryClusterRequest]
440
+ # A request object representing the call parameters. Required.
441
+ # @param options [::Gapic::CallOptions]
442
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
443
+ #
444
+ # @yield [result, operation] Access the result along with the TransportOperation object
445
+ # @yieldparam result [::Google::Longrunning::Operation]
446
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
447
+ #
448
+ # @return [::Google::Longrunning::Operation]
449
+ # A result object deserialized from the server's reply
450
+ def create_secondary_cluster request_pb, options = nil
451
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
452
+
453
+ verb, uri, query_string_params, body = ServiceStub.transcode_create_secondary_cluster_request request_pb
454
+ query_string_params = if query_string_params.any?
455
+ query_string_params.to_h { |p| p.split "=", 2 }
456
+ else
457
+ {}
458
+ end
459
+
460
+ response = @client_stub.make_http_request(
461
+ verb,
462
+ uri: uri,
463
+ body: body || "",
464
+ params: query_string_params,
465
+ method_name: "create_secondary_cluster",
466
+ options: options
467
+ )
468
+ operation = ::Gapic::Rest::TransportOperation.new response
469
+ result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
470
+ catch :response do
471
+ yield result, operation if block_given?
472
+ result
473
+ end
474
+ end
475
+
476
+ ##
477
+ # Baseline implementation for the list_instances REST call
478
+ #
479
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::ListInstancesRequest]
480
+ # A request object representing the call parameters. Required.
481
+ # @param options [::Gapic::CallOptions]
482
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
483
+ #
484
+ # @yield [result, operation] Access the result along with the TransportOperation object
485
+ # @yieldparam result [::Google::Cloud::AlloyDB::V1alpha::ListInstancesResponse]
486
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
487
+ #
488
+ # @return [::Google::Cloud::AlloyDB::V1alpha::ListInstancesResponse]
489
+ # A result object deserialized from the server's reply
490
+ def list_instances request_pb, options = nil
491
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
492
+
493
+ verb, uri, query_string_params, body = ServiceStub.transcode_list_instances_request request_pb
494
+ query_string_params = if query_string_params.any?
495
+ query_string_params.to_h { |p| p.split "=", 2 }
496
+ else
497
+ {}
498
+ end
499
+
500
+ response = @client_stub.make_http_request(
501
+ verb,
502
+ uri: uri,
503
+ body: body || "",
504
+ params: query_string_params,
505
+ method_name: "list_instances",
506
+ options: options
507
+ )
508
+ operation = ::Gapic::Rest::TransportOperation.new response
509
+ result = ::Google::Cloud::AlloyDB::V1alpha::ListInstancesResponse.decode_json response.body, ignore_unknown_fields: true
510
+ catch :response do
511
+ yield result, operation if block_given?
512
+ result
513
+ end
514
+ end
515
+
516
+ ##
517
+ # Baseline implementation for the get_instance REST call
518
+ #
519
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::GetInstanceRequest]
520
+ # A request object representing the call parameters. Required.
521
+ # @param options [::Gapic::CallOptions]
522
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
523
+ #
524
+ # @yield [result, operation] Access the result along with the TransportOperation object
525
+ # @yieldparam result [::Google::Cloud::AlloyDB::V1alpha::Instance]
526
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
527
+ #
528
+ # @return [::Google::Cloud::AlloyDB::V1alpha::Instance]
529
+ # A result object deserialized from the server's reply
530
+ def get_instance request_pb, options = nil
531
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
532
+
533
+ verb, uri, query_string_params, body = ServiceStub.transcode_get_instance_request request_pb
534
+ query_string_params = if query_string_params.any?
535
+ query_string_params.to_h { |p| p.split "=", 2 }
536
+ else
537
+ {}
538
+ end
539
+
540
+ response = @client_stub.make_http_request(
541
+ verb,
542
+ uri: uri,
543
+ body: body || "",
544
+ params: query_string_params,
545
+ method_name: "get_instance",
546
+ options: options
547
+ )
548
+ operation = ::Gapic::Rest::TransportOperation.new response
549
+ result = ::Google::Cloud::AlloyDB::V1alpha::Instance.decode_json response.body, ignore_unknown_fields: true
550
+ catch :response do
551
+ yield result, operation if block_given?
552
+ result
553
+ end
554
+ end
555
+
556
+ ##
557
+ # Baseline implementation for the create_instance REST call
558
+ #
559
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::CreateInstanceRequest]
560
+ # A request object representing the call parameters. Required.
561
+ # @param options [::Gapic::CallOptions]
562
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
563
+ #
564
+ # @yield [result, operation] Access the result along with the TransportOperation object
565
+ # @yieldparam result [::Google::Longrunning::Operation]
566
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
567
+ #
568
+ # @return [::Google::Longrunning::Operation]
569
+ # A result object deserialized from the server's reply
570
+ def create_instance request_pb, options = nil
571
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
572
+
573
+ verb, uri, query_string_params, body = ServiceStub.transcode_create_instance_request request_pb
574
+ query_string_params = if query_string_params.any?
575
+ query_string_params.to_h { |p| p.split "=", 2 }
576
+ else
577
+ {}
578
+ end
579
+
580
+ response = @client_stub.make_http_request(
581
+ verb,
582
+ uri: uri,
583
+ body: body || "",
584
+ params: query_string_params,
585
+ method_name: "create_instance",
586
+ options: options
587
+ )
588
+ operation = ::Gapic::Rest::TransportOperation.new response
589
+ result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
590
+ catch :response do
591
+ yield result, operation if block_given?
592
+ result
593
+ end
594
+ end
595
+
596
+ ##
597
+ # Baseline implementation for the create_secondary_instance REST call
598
+ #
599
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::CreateSecondaryInstanceRequest]
600
+ # A request object representing the call parameters. Required.
601
+ # @param options [::Gapic::CallOptions]
602
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
603
+ #
604
+ # @yield [result, operation] Access the result along with the TransportOperation object
605
+ # @yieldparam result [::Google::Longrunning::Operation]
606
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
607
+ #
608
+ # @return [::Google::Longrunning::Operation]
609
+ # A result object deserialized from the server's reply
610
+ def create_secondary_instance request_pb, options = nil
611
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
612
+
613
+ verb, uri, query_string_params, body = ServiceStub.transcode_create_secondary_instance_request request_pb
614
+ query_string_params = if query_string_params.any?
615
+ query_string_params.to_h { |p| p.split "=", 2 }
616
+ else
617
+ {}
618
+ end
619
+
620
+ response = @client_stub.make_http_request(
621
+ verb,
622
+ uri: uri,
623
+ body: body || "",
624
+ params: query_string_params,
625
+ method_name: "create_secondary_instance",
626
+ options: options
627
+ )
628
+ operation = ::Gapic::Rest::TransportOperation.new response
629
+ result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
630
+ catch :response do
631
+ yield result, operation if block_given?
632
+ result
633
+ end
634
+ end
635
+
636
+ ##
637
+ # Baseline implementation for the batch_create_instances REST call
638
+ #
639
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::BatchCreateInstancesRequest]
640
+ # A request object representing the call parameters. Required.
641
+ # @param options [::Gapic::CallOptions]
642
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
643
+ #
644
+ # @yield [result, operation] Access the result along with the TransportOperation object
645
+ # @yieldparam result [::Google::Longrunning::Operation]
646
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
647
+ #
648
+ # @return [::Google::Longrunning::Operation]
649
+ # A result object deserialized from the server's reply
650
+ def batch_create_instances request_pb, options = nil
651
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
652
+
653
+ verb, uri, query_string_params, body = ServiceStub.transcode_batch_create_instances_request request_pb
654
+ query_string_params = if query_string_params.any?
655
+ query_string_params.to_h { |p| p.split "=", 2 }
656
+ else
657
+ {}
658
+ end
659
+
660
+ response = @client_stub.make_http_request(
661
+ verb,
662
+ uri: uri,
663
+ body: body || "",
664
+ params: query_string_params,
665
+ method_name: "batch_create_instances",
666
+ options: options
667
+ )
668
+ operation = ::Gapic::Rest::TransportOperation.new response
669
+ result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
670
+ catch :response do
671
+ yield result, operation if block_given?
672
+ result
673
+ end
674
+ end
675
+
676
+ ##
677
+ # Baseline implementation for the update_instance REST call
678
+ #
679
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::UpdateInstanceRequest]
680
+ # A request object representing the call parameters. Required.
681
+ # @param options [::Gapic::CallOptions]
682
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
683
+ #
684
+ # @yield [result, operation] Access the result along with the TransportOperation object
685
+ # @yieldparam result [::Google::Longrunning::Operation]
686
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
687
+ #
688
+ # @return [::Google::Longrunning::Operation]
689
+ # A result object deserialized from the server's reply
690
+ def update_instance request_pb, options = nil
691
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
692
+
693
+ verb, uri, query_string_params, body = ServiceStub.transcode_update_instance_request request_pb
694
+ query_string_params = if query_string_params.any?
695
+ query_string_params.to_h { |p| p.split "=", 2 }
696
+ else
697
+ {}
698
+ end
699
+
700
+ response = @client_stub.make_http_request(
701
+ verb,
702
+ uri: uri,
703
+ body: body || "",
704
+ params: query_string_params,
705
+ method_name: "update_instance",
706
+ options: options
707
+ )
708
+ operation = ::Gapic::Rest::TransportOperation.new response
709
+ result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
710
+ catch :response do
711
+ yield result, operation if block_given?
712
+ result
713
+ end
714
+ end
715
+
716
+ ##
717
+ # Baseline implementation for the delete_instance REST call
718
+ #
719
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::DeleteInstanceRequest]
720
+ # A request object representing the call parameters. Required.
721
+ # @param options [::Gapic::CallOptions]
722
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
723
+ #
724
+ # @yield [result, operation] Access the result along with the TransportOperation object
725
+ # @yieldparam result [::Google::Longrunning::Operation]
726
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
727
+ #
728
+ # @return [::Google::Longrunning::Operation]
729
+ # A result object deserialized from the server's reply
730
+ def delete_instance request_pb, options = nil
731
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
732
+
733
+ verb, uri, query_string_params, body = ServiceStub.transcode_delete_instance_request request_pb
734
+ query_string_params = if query_string_params.any?
735
+ query_string_params.to_h { |p| p.split "=", 2 }
736
+ else
737
+ {}
738
+ end
739
+
740
+ response = @client_stub.make_http_request(
741
+ verb,
742
+ uri: uri,
743
+ body: body || "",
744
+ params: query_string_params,
745
+ method_name: "delete_instance",
746
+ options: options
747
+ )
748
+ operation = ::Gapic::Rest::TransportOperation.new response
749
+ result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
750
+ catch :response do
751
+ yield result, operation if block_given?
752
+ result
753
+ end
754
+ end
755
+
756
+ ##
757
+ # Baseline implementation for the failover_instance REST call
758
+ #
759
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::FailoverInstanceRequest]
760
+ # A request object representing the call parameters. Required.
761
+ # @param options [::Gapic::CallOptions]
762
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
763
+ #
764
+ # @yield [result, operation] Access the result along with the TransportOperation object
765
+ # @yieldparam result [::Google::Longrunning::Operation]
766
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
767
+ #
768
+ # @return [::Google::Longrunning::Operation]
769
+ # A result object deserialized from the server's reply
770
+ def failover_instance request_pb, options = nil
771
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
772
+
773
+ verb, uri, query_string_params, body = ServiceStub.transcode_failover_instance_request request_pb
774
+ query_string_params = if query_string_params.any?
775
+ query_string_params.to_h { |p| p.split "=", 2 }
776
+ else
777
+ {}
778
+ end
779
+
780
+ response = @client_stub.make_http_request(
781
+ verb,
782
+ uri: uri,
783
+ body: body || "",
784
+ params: query_string_params,
785
+ method_name: "failover_instance",
786
+ options: options
787
+ )
788
+ operation = ::Gapic::Rest::TransportOperation.new response
789
+ result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
790
+ catch :response do
791
+ yield result, operation if block_given?
792
+ result
793
+ end
794
+ end
795
+
796
+ ##
797
+ # Baseline implementation for the inject_fault REST call
798
+ #
799
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::InjectFaultRequest]
800
+ # A request object representing the call parameters. Required.
801
+ # @param options [::Gapic::CallOptions]
802
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
803
+ #
804
+ # @yield [result, operation] Access the result along with the TransportOperation object
805
+ # @yieldparam result [::Google::Longrunning::Operation]
806
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
807
+ #
808
+ # @return [::Google::Longrunning::Operation]
809
+ # A result object deserialized from the server's reply
810
+ def inject_fault request_pb, options = nil
811
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
812
+
813
+ verb, uri, query_string_params, body = ServiceStub.transcode_inject_fault_request request_pb
814
+ query_string_params = if query_string_params.any?
815
+ query_string_params.to_h { |p| p.split "=", 2 }
816
+ else
817
+ {}
818
+ end
819
+
820
+ response = @client_stub.make_http_request(
821
+ verb,
822
+ uri: uri,
823
+ body: body || "",
824
+ params: query_string_params,
825
+ method_name: "inject_fault",
826
+ options: options
827
+ )
828
+ operation = ::Gapic::Rest::TransportOperation.new response
829
+ result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
830
+ catch :response do
831
+ yield result, operation if block_given?
832
+ result
833
+ end
834
+ end
835
+
836
+ ##
837
+ # Baseline implementation for the restart_instance REST call
838
+ #
839
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::RestartInstanceRequest]
840
+ # A request object representing the call parameters. Required.
841
+ # @param options [::Gapic::CallOptions]
842
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
843
+ #
844
+ # @yield [result, operation] Access the result along with the TransportOperation object
845
+ # @yieldparam result [::Google::Longrunning::Operation]
846
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
847
+ #
848
+ # @return [::Google::Longrunning::Operation]
849
+ # A result object deserialized from the server's reply
850
+ def restart_instance request_pb, options = nil
851
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
852
+
853
+ verb, uri, query_string_params, body = ServiceStub.transcode_restart_instance_request request_pb
854
+ query_string_params = if query_string_params.any?
855
+ query_string_params.to_h { |p| p.split "=", 2 }
856
+ else
857
+ {}
858
+ end
859
+
860
+ response = @client_stub.make_http_request(
861
+ verb,
862
+ uri: uri,
863
+ body: body || "",
864
+ params: query_string_params,
865
+ method_name: "restart_instance",
866
+ options: options
867
+ )
868
+ operation = ::Gapic::Rest::TransportOperation.new response
869
+ result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
870
+ catch :response do
871
+ yield result, operation if block_given?
872
+ result
873
+ end
874
+ end
875
+
876
+ ##
877
+ # Baseline implementation for the execute_sql REST call
878
+ #
879
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::ExecuteSqlRequest]
880
+ # A request object representing the call parameters. Required.
881
+ # @param options [::Gapic::CallOptions]
882
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
883
+ #
884
+ # @yield [result, operation] Access the result along with the TransportOperation object
885
+ # @yieldparam result [::Google::Cloud::AlloyDB::V1alpha::ExecuteSqlResponse]
886
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
887
+ #
888
+ # @return [::Google::Cloud::AlloyDB::V1alpha::ExecuteSqlResponse]
889
+ # A result object deserialized from the server's reply
890
+ def execute_sql request_pb, options = nil
891
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
892
+
893
+ verb, uri, query_string_params, body = ServiceStub.transcode_execute_sql_request request_pb
894
+ query_string_params = if query_string_params.any?
895
+ query_string_params.to_h { |p| p.split "=", 2 }
896
+ else
897
+ {}
898
+ end
899
+
900
+ response = @client_stub.make_http_request(
901
+ verb,
902
+ uri: uri,
903
+ body: body || "",
904
+ params: query_string_params,
905
+ method_name: "execute_sql",
906
+ options: options
907
+ )
908
+ operation = ::Gapic::Rest::TransportOperation.new response
909
+ result = ::Google::Cloud::AlloyDB::V1alpha::ExecuteSqlResponse.decode_json response.body, ignore_unknown_fields: true
910
+ catch :response do
911
+ yield result, operation if block_given?
912
+ result
913
+ end
914
+ end
915
+
916
+ ##
917
+ # Baseline implementation for the list_backups REST call
918
+ #
919
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::ListBackupsRequest]
920
+ # A request object representing the call parameters. Required.
921
+ # @param options [::Gapic::CallOptions]
922
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
923
+ #
924
+ # @yield [result, operation] Access the result along with the TransportOperation object
925
+ # @yieldparam result [::Google::Cloud::AlloyDB::V1alpha::ListBackupsResponse]
926
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
927
+ #
928
+ # @return [::Google::Cloud::AlloyDB::V1alpha::ListBackupsResponse]
929
+ # A result object deserialized from the server's reply
930
+ def list_backups request_pb, options = nil
931
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
932
+
933
+ verb, uri, query_string_params, body = ServiceStub.transcode_list_backups_request request_pb
934
+ query_string_params = if query_string_params.any?
935
+ query_string_params.to_h { |p| p.split "=", 2 }
936
+ else
937
+ {}
938
+ end
939
+
940
+ response = @client_stub.make_http_request(
941
+ verb,
942
+ uri: uri,
943
+ body: body || "",
944
+ params: query_string_params,
945
+ method_name: "list_backups",
946
+ options: options
947
+ )
948
+ operation = ::Gapic::Rest::TransportOperation.new response
949
+ result = ::Google::Cloud::AlloyDB::V1alpha::ListBackupsResponse.decode_json response.body, ignore_unknown_fields: true
950
+ catch :response do
951
+ yield result, operation if block_given?
952
+ result
953
+ end
954
+ end
955
+
956
+ ##
957
+ # Baseline implementation for the get_backup REST call
958
+ #
959
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::GetBackupRequest]
960
+ # A request object representing the call parameters. Required.
961
+ # @param options [::Gapic::CallOptions]
962
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
963
+ #
964
+ # @yield [result, operation] Access the result along with the TransportOperation object
965
+ # @yieldparam result [::Google::Cloud::AlloyDB::V1alpha::Backup]
966
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
967
+ #
968
+ # @return [::Google::Cloud::AlloyDB::V1alpha::Backup]
969
+ # A result object deserialized from the server's reply
970
+ def get_backup request_pb, options = nil
971
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
972
+
973
+ verb, uri, query_string_params, body = ServiceStub.transcode_get_backup_request request_pb
974
+ query_string_params = if query_string_params.any?
975
+ query_string_params.to_h { |p| p.split "=", 2 }
976
+ else
977
+ {}
978
+ end
979
+
980
+ response = @client_stub.make_http_request(
981
+ verb,
982
+ uri: uri,
983
+ body: body || "",
984
+ params: query_string_params,
985
+ method_name: "get_backup",
986
+ options: options
987
+ )
988
+ operation = ::Gapic::Rest::TransportOperation.new response
989
+ result = ::Google::Cloud::AlloyDB::V1alpha::Backup.decode_json response.body, ignore_unknown_fields: true
990
+ catch :response do
991
+ yield result, operation if block_given?
992
+ result
993
+ end
994
+ end
995
+
996
+ ##
997
+ # Baseline implementation for the create_backup REST call
998
+ #
999
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::CreateBackupRequest]
1000
+ # A request object representing the call parameters. Required.
1001
+ # @param options [::Gapic::CallOptions]
1002
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
1003
+ #
1004
+ # @yield [result, operation] Access the result along with the TransportOperation object
1005
+ # @yieldparam result [::Google::Longrunning::Operation]
1006
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
1007
+ #
1008
+ # @return [::Google::Longrunning::Operation]
1009
+ # A result object deserialized from the server's reply
1010
+ def create_backup request_pb, options = nil
1011
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
1012
+
1013
+ verb, uri, query_string_params, body = ServiceStub.transcode_create_backup_request request_pb
1014
+ query_string_params = if query_string_params.any?
1015
+ query_string_params.to_h { |p| p.split "=", 2 }
1016
+ else
1017
+ {}
1018
+ end
1019
+
1020
+ response = @client_stub.make_http_request(
1021
+ verb,
1022
+ uri: uri,
1023
+ body: body || "",
1024
+ params: query_string_params,
1025
+ method_name: "create_backup",
1026
+ options: options
1027
+ )
1028
+ operation = ::Gapic::Rest::TransportOperation.new response
1029
+ result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
1030
+ catch :response do
1031
+ yield result, operation if block_given?
1032
+ result
1033
+ end
1034
+ end
1035
+
1036
+ ##
1037
+ # Baseline implementation for the update_backup REST call
1038
+ #
1039
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::UpdateBackupRequest]
1040
+ # A request object representing the call parameters. Required.
1041
+ # @param options [::Gapic::CallOptions]
1042
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
1043
+ #
1044
+ # @yield [result, operation] Access the result along with the TransportOperation object
1045
+ # @yieldparam result [::Google::Longrunning::Operation]
1046
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
1047
+ #
1048
+ # @return [::Google::Longrunning::Operation]
1049
+ # A result object deserialized from the server's reply
1050
+ def update_backup request_pb, options = nil
1051
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
1052
+
1053
+ verb, uri, query_string_params, body = ServiceStub.transcode_update_backup_request request_pb
1054
+ query_string_params = if query_string_params.any?
1055
+ query_string_params.to_h { |p| p.split "=", 2 }
1056
+ else
1057
+ {}
1058
+ end
1059
+
1060
+ response = @client_stub.make_http_request(
1061
+ verb,
1062
+ uri: uri,
1063
+ body: body || "",
1064
+ params: query_string_params,
1065
+ method_name: "update_backup",
1066
+ options: options
1067
+ )
1068
+ operation = ::Gapic::Rest::TransportOperation.new response
1069
+ result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
1070
+ catch :response do
1071
+ yield result, operation if block_given?
1072
+ result
1073
+ end
1074
+ end
1075
+
1076
+ ##
1077
+ # Baseline implementation for the delete_backup REST call
1078
+ #
1079
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::DeleteBackupRequest]
1080
+ # A request object representing the call parameters. Required.
1081
+ # @param options [::Gapic::CallOptions]
1082
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
1083
+ #
1084
+ # @yield [result, operation] Access the result along with the TransportOperation object
1085
+ # @yieldparam result [::Google::Longrunning::Operation]
1086
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
1087
+ #
1088
+ # @return [::Google::Longrunning::Operation]
1089
+ # A result object deserialized from the server's reply
1090
+ def delete_backup request_pb, options = nil
1091
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
1092
+
1093
+ verb, uri, query_string_params, body = ServiceStub.transcode_delete_backup_request request_pb
1094
+ query_string_params = if query_string_params.any?
1095
+ query_string_params.to_h { |p| p.split "=", 2 }
1096
+ else
1097
+ {}
1098
+ end
1099
+
1100
+ response = @client_stub.make_http_request(
1101
+ verb,
1102
+ uri: uri,
1103
+ body: body || "",
1104
+ params: query_string_params,
1105
+ method_name: "delete_backup",
1106
+ options: options
1107
+ )
1108
+ operation = ::Gapic::Rest::TransportOperation.new response
1109
+ result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
1110
+ catch :response do
1111
+ yield result, operation if block_given?
1112
+ result
1113
+ end
1114
+ end
1115
+
1116
+ ##
1117
+ # Baseline implementation for the list_supported_database_flags REST call
1118
+ #
1119
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::ListSupportedDatabaseFlagsRequest]
1120
+ # A request object representing the call parameters. Required.
1121
+ # @param options [::Gapic::CallOptions]
1122
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
1123
+ #
1124
+ # @yield [result, operation] Access the result along with the TransportOperation object
1125
+ # @yieldparam result [::Google::Cloud::AlloyDB::V1alpha::ListSupportedDatabaseFlagsResponse]
1126
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
1127
+ #
1128
+ # @return [::Google::Cloud::AlloyDB::V1alpha::ListSupportedDatabaseFlagsResponse]
1129
+ # A result object deserialized from the server's reply
1130
+ def list_supported_database_flags request_pb, options = nil
1131
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
1132
+
1133
+ verb, uri, query_string_params, body = ServiceStub.transcode_list_supported_database_flags_request request_pb
1134
+ query_string_params = if query_string_params.any?
1135
+ query_string_params.to_h { |p| p.split "=", 2 }
1136
+ else
1137
+ {}
1138
+ end
1139
+
1140
+ response = @client_stub.make_http_request(
1141
+ verb,
1142
+ uri: uri,
1143
+ body: body || "",
1144
+ params: query_string_params,
1145
+ method_name: "list_supported_database_flags",
1146
+ options: options
1147
+ )
1148
+ operation = ::Gapic::Rest::TransportOperation.new response
1149
+ result = ::Google::Cloud::AlloyDB::V1alpha::ListSupportedDatabaseFlagsResponse.decode_json response.body, ignore_unknown_fields: true
1150
+ catch :response do
1151
+ yield result, operation if block_given?
1152
+ result
1153
+ end
1154
+ end
1155
+
1156
+ ##
1157
+ # Baseline implementation for the generate_client_certificate REST call
1158
+ #
1159
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::GenerateClientCertificateRequest]
1160
+ # A request object representing the call parameters. Required.
1161
+ # @param options [::Gapic::CallOptions]
1162
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
1163
+ #
1164
+ # @yield [result, operation] Access the result along with the TransportOperation object
1165
+ # @yieldparam result [::Google::Cloud::AlloyDB::V1alpha::GenerateClientCertificateResponse]
1166
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
1167
+ #
1168
+ # @return [::Google::Cloud::AlloyDB::V1alpha::GenerateClientCertificateResponse]
1169
+ # A result object deserialized from the server's reply
1170
+ def generate_client_certificate request_pb, options = nil
1171
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
1172
+
1173
+ verb, uri, query_string_params, body = ServiceStub.transcode_generate_client_certificate_request request_pb
1174
+ query_string_params = if query_string_params.any?
1175
+ query_string_params.to_h { |p| p.split "=", 2 }
1176
+ else
1177
+ {}
1178
+ end
1179
+
1180
+ response = @client_stub.make_http_request(
1181
+ verb,
1182
+ uri: uri,
1183
+ body: body || "",
1184
+ params: query_string_params,
1185
+ method_name: "generate_client_certificate",
1186
+ options: options
1187
+ )
1188
+ operation = ::Gapic::Rest::TransportOperation.new response
1189
+ result = ::Google::Cloud::AlloyDB::V1alpha::GenerateClientCertificateResponse.decode_json response.body, ignore_unknown_fields: true
1190
+ catch :response do
1191
+ yield result, operation if block_given?
1192
+ result
1193
+ end
1194
+ end
1195
+
1196
+ ##
1197
+ # Baseline implementation for the get_connection_info REST call
1198
+ #
1199
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::GetConnectionInfoRequest]
1200
+ # A request object representing the call parameters. Required.
1201
+ # @param options [::Gapic::CallOptions]
1202
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
1203
+ #
1204
+ # @yield [result, operation] Access the result along with the TransportOperation object
1205
+ # @yieldparam result [::Google::Cloud::AlloyDB::V1alpha::ConnectionInfo]
1206
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
1207
+ #
1208
+ # @return [::Google::Cloud::AlloyDB::V1alpha::ConnectionInfo]
1209
+ # A result object deserialized from the server's reply
1210
+ def get_connection_info request_pb, options = nil
1211
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
1212
+
1213
+ verb, uri, query_string_params, body = ServiceStub.transcode_get_connection_info_request request_pb
1214
+ query_string_params = if query_string_params.any?
1215
+ query_string_params.to_h { |p| p.split "=", 2 }
1216
+ else
1217
+ {}
1218
+ end
1219
+
1220
+ response = @client_stub.make_http_request(
1221
+ verb,
1222
+ uri: uri,
1223
+ body: body || "",
1224
+ params: query_string_params,
1225
+ method_name: "get_connection_info",
1226
+ options: options
1227
+ )
1228
+ operation = ::Gapic::Rest::TransportOperation.new response
1229
+ result = ::Google::Cloud::AlloyDB::V1alpha::ConnectionInfo.decode_json response.body, ignore_unknown_fields: true
1230
+ catch :response do
1231
+ yield result, operation if block_given?
1232
+ result
1233
+ end
1234
+ end
1235
+
1236
+ ##
1237
+ # Baseline implementation for the list_users REST call
1238
+ #
1239
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::ListUsersRequest]
1240
+ # A request object representing the call parameters. Required.
1241
+ # @param options [::Gapic::CallOptions]
1242
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
1243
+ #
1244
+ # @yield [result, operation] Access the result along with the TransportOperation object
1245
+ # @yieldparam result [::Google::Cloud::AlloyDB::V1alpha::ListUsersResponse]
1246
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
1247
+ #
1248
+ # @return [::Google::Cloud::AlloyDB::V1alpha::ListUsersResponse]
1249
+ # A result object deserialized from the server's reply
1250
+ def list_users request_pb, options = nil
1251
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
1252
+
1253
+ verb, uri, query_string_params, body = ServiceStub.transcode_list_users_request request_pb
1254
+ query_string_params = if query_string_params.any?
1255
+ query_string_params.to_h { |p| p.split "=", 2 }
1256
+ else
1257
+ {}
1258
+ end
1259
+
1260
+ response = @client_stub.make_http_request(
1261
+ verb,
1262
+ uri: uri,
1263
+ body: body || "",
1264
+ params: query_string_params,
1265
+ method_name: "list_users",
1266
+ options: options
1267
+ )
1268
+ operation = ::Gapic::Rest::TransportOperation.new response
1269
+ result = ::Google::Cloud::AlloyDB::V1alpha::ListUsersResponse.decode_json response.body, ignore_unknown_fields: true
1270
+ catch :response do
1271
+ yield result, operation if block_given?
1272
+ result
1273
+ end
1274
+ end
1275
+
1276
+ ##
1277
+ # Baseline implementation for the get_user REST call
1278
+ #
1279
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::GetUserRequest]
1280
+ # A request object representing the call parameters. Required.
1281
+ # @param options [::Gapic::CallOptions]
1282
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
1283
+ #
1284
+ # @yield [result, operation] Access the result along with the TransportOperation object
1285
+ # @yieldparam result [::Google::Cloud::AlloyDB::V1alpha::User]
1286
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
1287
+ #
1288
+ # @return [::Google::Cloud::AlloyDB::V1alpha::User]
1289
+ # A result object deserialized from the server's reply
1290
+ def get_user request_pb, options = nil
1291
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
1292
+
1293
+ verb, uri, query_string_params, body = ServiceStub.transcode_get_user_request request_pb
1294
+ query_string_params = if query_string_params.any?
1295
+ query_string_params.to_h { |p| p.split "=", 2 }
1296
+ else
1297
+ {}
1298
+ end
1299
+
1300
+ response = @client_stub.make_http_request(
1301
+ verb,
1302
+ uri: uri,
1303
+ body: body || "",
1304
+ params: query_string_params,
1305
+ method_name: "get_user",
1306
+ options: options
1307
+ )
1308
+ operation = ::Gapic::Rest::TransportOperation.new response
1309
+ result = ::Google::Cloud::AlloyDB::V1alpha::User.decode_json response.body, ignore_unknown_fields: true
1310
+ catch :response do
1311
+ yield result, operation if block_given?
1312
+ result
1313
+ end
1314
+ end
1315
+
1316
+ ##
1317
+ # Baseline implementation for the create_user REST call
1318
+ #
1319
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::CreateUserRequest]
1320
+ # A request object representing the call parameters. Required.
1321
+ # @param options [::Gapic::CallOptions]
1322
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
1323
+ #
1324
+ # @yield [result, operation] Access the result along with the TransportOperation object
1325
+ # @yieldparam result [::Google::Cloud::AlloyDB::V1alpha::User]
1326
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
1327
+ #
1328
+ # @return [::Google::Cloud::AlloyDB::V1alpha::User]
1329
+ # A result object deserialized from the server's reply
1330
+ def create_user request_pb, options = nil
1331
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
1332
+
1333
+ verb, uri, query_string_params, body = ServiceStub.transcode_create_user_request request_pb
1334
+ query_string_params = if query_string_params.any?
1335
+ query_string_params.to_h { |p| p.split "=", 2 }
1336
+ else
1337
+ {}
1338
+ end
1339
+
1340
+ response = @client_stub.make_http_request(
1341
+ verb,
1342
+ uri: uri,
1343
+ body: body || "",
1344
+ params: query_string_params,
1345
+ method_name: "create_user",
1346
+ options: options
1347
+ )
1348
+ operation = ::Gapic::Rest::TransportOperation.new response
1349
+ result = ::Google::Cloud::AlloyDB::V1alpha::User.decode_json response.body, ignore_unknown_fields: true
1350
+ catch :response do
1351
+ yield result, operation if block_given?
1352
+ result
1353
+ end
1354
+ end
1355
+
1356
+ ##
1357
+ # Baseline implementation for the update_user REST call
1358
+ #
1359
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::UpdateUserRequest]
1360
+ # A request object representing the call parameters. Required.
1361
+ # @param options [::Gapic::CallOptions]
1362
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
1363
+ #
1364
+ # @yield [result, operation] Access the result along with the TransportOperation object
1365
+ # @yieldparam result [::Google::Cloud::AlloyDB::V1alpha::User]
1366
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
1367
+ #
1368
+ # @return [::Google::Cloud::AlloyDB::V1alpha::User]
1369
+ # A result object deserialized from the server's reply
1370
+ def update_user request_pb, options = nil
1371
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
1372
+
1373
+ verb, uri, query_string_params, body = ServiceStub.transcode_update_user_request request_pb
1374
+ query_string_params = if query_string_params.any?
1375
+ query_string_params.to_h { |p| p.split "=", 2 }
1376
+ else
1377
+ {}
1378
+ end
1379
+
1380
+ response = @client_stub.make_http_request(
1381
+ verb,
1382
+ uri: uri,
1383
+ body: body || "",
1384
+ params: query_string_params,
1385
+ method_name: "update_user",
1386
+ options: options
1387
+ )
1388
+ operation = ::Gapic::Rest::TransportOperation.new response
1389
+ result = ::Google::Cloud::AlloyDB::V1alpha::User.decode_json response.body, ignore_unknown_fields: true
1390
+ catch :response do
1391
+ yield result, operation if block_given?
1392
+ result
1393
+ end
1394
+ end
1395
+
1396
+ ##
1397
+ # Baseline implementation for the delete_user REST call
1398
+ #
1399
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::DeleteUserRequest]
1400
+ # A request object representing the call parameters. Required.
1401
+ # @param options [::Gapic::CallOptions]
1402
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
1403
+ #
1404
+ # @yield [result, operation] Access the result along with the TransportOperation object
1405
+ # @yieldparam result [::Google::Protobuf::Empty]
1406
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
1407
+ #
1408
+ # @return [::Google::Protobuf::Empty]
1409
+ # A result object deserialized from the server's reply
1410
+ def delete_user request_pb, options = nil
1411
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
1412
+
1413
+ verb, uri, query_string_params, body = ServiceStub.transcode_delete_user_request request_pb
1414
+ query_string_params = if query_string_params.any?
1415
+ query_string_params.to_h { |p| p.split "=", 2 }
1416
+ else
1417
+ {}
1418
+ end
1419
+
1420
+ response = @client_stub.make_http_request(
1421
+ verb,
1422
+ uri: uri,
1423
+ body: body || "",
1424
+ params: query_string_params,
1425
+ method_name: "delete_user",
1426
+ options: options
1427
+ )
1428
+ operation = ::Gapic::Rest::TransportOperation.new response
1429
+ result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true
1430
+ catch :response do
1431
+ yield result, operation if block_given?
1432
+ result
1433
+ end
1434
+ end
1435
+
1436
+ ##
1437
+ # Baseline implementation for the list_databases REST call
1438
+ #
1439
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::ListDatabasesRequest]
1440
+ # A request object representing the call parameters. Required.
1441
+ # @param options [::Gapic::CallOptions]
1442
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
1443
+ #
1444
+ # @yield [result, operation] Access the result along with the TransportOperation object
1445
+ # @yieldparam result [::Google::Cloud::AlloyDB::V1alpha::ListDatabasesResponse]
1446
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
1447
+ #
1448
+ # @return [::Google::Cloud::AlloyDB::V1alpha::ListDatabasesResponse]
1449
+ # A result object deserialized from the server's reply
1450
+ def list_databases request_pb, options = nil
1451
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
1452
+
1453
+ verb, uri, query_string_params, body = ServiceStub.transcode_list_databases_request request_pb
1454
+ query_string_params = if query_string_params.any?
1455
+ query_string_params.to_h { |p| p.split "=", 2 }
1456
+ else
1457
+ {}
1458
+ end
1459
+
1460
+ response = @client_stub.make_http_request(
1461
+ verb,
1462
+ uri: uri,
1463
+ body: body || "",
1464
+ params: query_string_params,
1465
+ method_name: "list_databases",
1466
+ options: options
1467
+ )
1468
+ operation = ::Gapic::Rest::TransportOperation.new response
1469
+ result = ::Google::Cloud::AlloyDB::V1alpha::ListDatabasesResponse.decode_json response.body, ignore_unknown_fields: true
1470
+ catch :response do
1471
+ yield result, operation if block_given?
1472
+ result
1473
+ end
1474
+ end
1475
+
1476
+ ##
1477
+ # @private
1478
+ #
1479
+ # GRPC transcoding helper method for the list_clusters REST call
1480
+ #
1481
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::ListClustersRequest]
1482
+ # A request object representing the call parameters. Required.
1483
+ # @return [Array(String, [String, nil], Hash{String => String})]
1484
+ # Uri, Body, Query string parameters
1485
+ def self.transcode_list_clusters_request request_pb
1486
+ transcoder = Gapic::Rest::GrpcTranscoder.new
1487
+ .with_bindings(
1488
+ uri_method: :get,
1489
+ uri_template: "/v1alpha/{parent}/clusters",
1490
+ matches: [
1491
+ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
1492
+ ]
1493
+ )
1494
+ transcoder.transcode request_pb
1495
+ end
1496
+
1497
+ ##
1498
+ # @private
1499
+ #
1500
+ # GRPC transcoding helper method for the get_cluster REST call
1501
+ #
1502
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::GetClusterRequest]
1503
+ # A request object representing the call parameters. Required.
1504
+ # @return [Array(String, [String, nil], Hash{String => String})]
1505
+ # Uri, Body, Query string parameters
1506
+ def self.transcode_get_cluster_request request_pb
1507
+ transcoder = Gapic::Rest::GrpcTranscoder.new
1508
+ .with_bindings(
1509
+ uri_method: :get,
1510
+ uri_template: "/v1alpha/{name}",
1511
+ matches: [
1512
+ ["name", %r{^projects/[^/]+/locations/[^/]+/clusters/[^/]+/?$}, false]
1513
+ ]
1514
+ )
1515
+ transcoder.transcode request_pb
1516
+ end
1517
+
1518
+ ##
1519
+ # @private
1520
+ #
1521
+ # GRPC transcoding helper method for the create_cluster REST call
1522
+ #
1523
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::CreateClusterRequest]
1524
+ # A request object representing the call parameters. Required.
1525
+ # @return [Array(String, [String, nil], Hash{String => String})]
1526
+ # Uri, Body, Query string parameters
1527
+ def self.transcode_create_cluster_request request_pb
1528
+ transcoder = Gapic::Rest::GrpcTranscoder.new
1529
+ .with_bindings(
1530
+ uri_method: :post,
1531
+ uri_template: "/v1alpha/{parent}/clusters",
1532
+ body: "cluster",
1533
+ matches: [
1534
+ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
1535
+ ]
1536
+ )
1537
+ transcoder.transcode request_pb
1538
+ end
1539
+
1540
+ ##
1541
+ # @private
1542
+ #
1543
+ # GRPC transcoding helper method for the update_cluster REST call
1544
+ #
1545
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::UpdateClusterRequest]
1546
+ # A request object representing the call parameters. Required.
1547
+ # @return [Array(String, [String, nil], Hash{String => String})]
1548
+ # Uri, Body, Query string parameters
1549
+ def self.transcode_update_cluster_request request_pb
1550
+ transcoder = Gapic::Rest::GrpcTranscoder.new
1551
+ .with_bindings(
1552
+ uri_method: :patch,
1553
+ uri_template: "/v1alpha/{cluster.name}",
1554
+ body: "cluster",
1555
+ matches: [
1556
+ ["cluster.name", %r{^projects/[^/]+/locations/[^/]+/clusters/[^/]+/?$}, false]
1557
+ ]
1558
+ )
1559
+ transcoder.transcode request_pb
1560
+ end
1561
+
1562
+ ##
1563
+ # @private
1564
+ #
1565
+ # GRPC transcoding helper method for the upgrade_cluster REST call
1566
+ #
1567
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::UpgradeClusterRequest]
1568
+ # A request object representing the call parameters. Required.
1569
+ # @return [Array(String, [String, nil], Hash{String => String})]
1570
+ # Uri, Body, Query string parameters
1571
+ def self.transcode_upgrade_cluster_request request_pb
1572
+ transcoder = Gapic::Rest::GrpcTranscoder.new
1573
+ .with_bindings(
1574
+ uri_method: :patch,
1575
+ uri_template: "/v1alpha/{name}:upgrade",
1576
+ body: "*",
1577
+ matches: [
1578
+ ["name", %r{^projects/[^/]+/locations/[^/]+/clusters/[^/]+/?$}, false]
1579
+ ]
1580
+ )
1581
+ transcoder.transcode request_pb
1582
+ end
1583
+
1584
+ ##
1585
+ # @private
1586
+ #
1587
+ # GRPC transcoding helper method for the delete_cluster REST call
1588
+ #
1589
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::DeleteClusterRequest]
1590
+ # A request object representing the call parameters. Required.
1591
+ # @return [Array(String, [String, nil], Hash{String => String})]
1592
+ # Uri, Body, Query string parameters
1593
+ def self.transcode_delete_cluster_request request_pb
1594
+ transcoder = Gapic::Rest::GrpcTranscoder.new
1595
+ .with_bindings(
1596
+ uri_method: :delete,
1597
+ uri_template: "/v1alpha/{name}",
1598
+ matches: [
1599
+ ["name", %r{^projects/[^/]+/locations/[^/]+/clusters/[^/]+/?$}, false]
1600
+ ]
1601
+ )
1602
+ transcoder.transcode request_pb
1603
+ end
1604
+
1605
+ ##
1606
+ # @private
1607
+ #
1608
+ # GRPC transcoding helper method for the promote_cluster REST call
1609
+ #
1610
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::PromoteClusterRequest]
1611
+ # A request object representing the call parameters. Required.
1612
+ # @return [Array(String, [String, nil], Hash{String => String})]
1613
+ # Uri, Body, Query string parameters
1614
+ def self.transcode_promote_cluster_request request_pb
1615
+ transcoder = Gapic::Rest::GrpcTranscoder.new
1616
+ .with_bindings(
1617
+ uri_method: :post,
1618
+ uri_template: "/v1alpha/{name}:promote",
1619
+ body: "*",
1620
+ matches: [
1621
+ ["name", %r{^projects/[^/]+/locations/[^/]+/clusters/[^/]+/?$}, false]
1622
+ ]
1623
+ )
1624
+ transcoder.transcode request_pb
1625
+ end
1626
+
1627
+ ##
1628
+ # @private
1629
+ #
1630
+ # GRPC transcoding helper method for the switchover_cluster REST call
1631
+ #
1632
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::SwitchoverClusterRequest]
1633
+ # A request object representing the call parameters. Required.
1634
+ # @return [Array(String, [String, nil], Hash{String => String})]
1635
+ # Uri, Body, Query string parameters
1636
+ def self.transcode_switchover_cluster_request request_pb
1637
+ transcoder = Gapic::Rest::GrpcTranscoder.new
1638
+ .with_bindings(
1639
+ uri_method: :post,
1640
+ uri_template: "/v1alpha/{name}:switchover",
1641
+ body: "*",
1642
+ matches: [
1643
+ ["name", %r{^projects/[^/]+/locations/[^/]+/clusters/[^/]+/?$}, false]
1644
+ ]
1645
+ )
1646
+ transcoder.transcode request_pb
1647
+ end
1648
+
1649
+ ##
1650
+ # @private
1651
+ #
1652
+ # GRPC transcoding helper method for the restore_cluster REST call
1653
+ #
1654
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::RestoreClusterRequest]
1655
+ # A request object representing the call parameters. Required.
1656
+ # @return [Array(String, [String, nil], Hash{String => String})]
1657
+ # Uri, Body, Query string parameters
1658
+ def self.transcode_restore_cluster_request request_pb
1659
+ transcoder = Gapic::Rest::GrpcTranscoder.new
1660
+ .with_bindings(
1661
+ uri_method: :post,
1662
+ uri_template: "/v1alpha/{parent}/clusters:restore",
1663
+ body: "*",
1664
+ matches: [
1665
+ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
1666
+ ]
1667
+ )
1668
+ transcoder.transcode request_pb
1669
+ end
1670
+
1671
+ ##
1672
+ # @private
1673
+ #
1674
+ # GRPC transcoding helper method for the create_secondary_cluster REST call
1675
+ #
1676
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::CreateSecondaryClusterRequest]
1677
+ # A request object representing the call parameters. Required.
1678
+ # @return [Array(String, [String, nil], Hash{String => String})]
1679
+ # Uri, Body, Query string parameters
1680
+ def self.transcode_create_secondary_cluster_request request_pb
1681
+ transcoder = Gapic::Rest::GrpcTranscoder.new
1682
+ .with_bindings(
1683
+ uri_method: :post,
1684
+ uri_template: "/v1alpha/{parent}/clusters:createsecondary",
1685
+ body: "cluster",
1686
+ matches: [
1687
+ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
1688
+ ]
1689
+ )
1690
+ transcoder.transcode request_pb
1691
+ end
1692
+
1693
+ ##
1694
+ # @private
1695
+ #
1696
+ # GRPC transcoding helper method for the list_instances REST call
1697
+ #
1698
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::ListInstancesRequest]
1699
+ # A request object representing the call parameters. Required.
1700
+ # @return [Array(String, [String, nil], Hash{String => String})]
1701
+ # Uri, Body, Query string parameters
1702
+ def self.transcode_list_instances_request request_pb
1703
+ transcoder = Gapic::Rest::GrpcTranscoder.new
1704
+ .with_bindings(
1705
+ uri_method: :get,
1706
+ uri_template: "/v1alpha/{parent}/instances",
1707
+ matches: [
1708
+ ["parent", %r{^projects/[^/]+/locations/[^/]+/clusters/[^/]+/?$}, false]
1709
+ ]
1710
+ )
1711
+ transcoder.transcode request_pb
1712
+ end
1713
+
1714
+ ##
1715
+ # @private
1716
+ #
1717
+ # GRPC transcoding helper method for the get_instance REST call
1718
+ #
1719
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::GetInstanceRequest]
1720
+ # A request object representing the call parameters. Required.
1721
+ # @return [Array(String, [String, nil], Hash{String => String})]
1722
+ # Uri, Body, Query string parameters
1723
+ def self.transcode_get_instance_request request_pb
1724
+ transcoder = Gapic::Rest::GrpcTranscoder.new
1725
+ .with_bindings(
1726
+ uri_method: :get,
1727
+ uri_template: "/v1alpha/{name}",
1728
+ matches: [
1729
+ ["name", %r{^projects/[^/]+/locations/[^/]+/clusters/[^/]+/instances/[^/]+/?$}, false]
1730
+ ]
1731
+ )
1732
+ transcoder.transcode request_pb
1733
+ end
1734
+
1735
+ ##
1736
+ # @private
1737
+ #
1738
+ # GRPC transcoding helper method for the create_instance REST call
1739
+ #
1740
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::CreateInstanceRequest]
1741
+ # A request object representing the call parameters. Required.
1742
+ # @return [Array(String, [String, nil], Hash{String => String})]
1743
+ # Uri, Body, Query string parameters
1744
+ def self.transcode_create_instance_request request_pb
1745
+ transcoder = Gapic::Rest::GrpcTranscoder.new
1746
+ .with_bindings(
1747
+ uri_method: :post,
1748
+ uri_template: "/v1alpha/{parent}/instances",
1749
+ body: "instance",
1750
+ matches: [
1751
+ ["parent", %r{^projects/[^/]+/locations/[^/]+/clusters/[^/]+/?$}, false]
1752
+ ]
1753
+ )
1754
+ transcoder.transcode request_pb
1755
+ end
1756
+
1757
+ ##
1758
+ # @private
1759
+ #
1760
+ # GRPC transcoding helper method for the create_secondary_instance REST call
1761
+ #
1762
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::CreateSecondaryInstanceRequest]
1763
+ # A request object representing the call parameters. Required.
1764
+ # @return [Array(String, [String, nil], Hash{String => String})]
1765
+ # Uri, Body, Query string parameters
1766
+ def self.transcode_create_secondary_instance_request request_pb
1767
+ transcoder = Gapic::Rest::GrpcTranscoder.new
1768
+ .with_bindings(
1769
+ uri_method: :post,
1770
+ uri_template: "/v1alpha/{parent}/instances:createsecondary",
1771
+ body: "instance",
1772
+ matches: [
1773
+ ["parent", %r{^projects/[^/]+/locations/[^/]+/clusters/[^/]+/?$}, false]
1774
+ ]
1775
+ )
1776
+ transcoder.transcode request_pb
1777
+ end
1778
+
1779
+ ##
1780
+ # @private
1781
+ #
1782
+ # GRPC transcoding helper method for the batch_create_instances REST call
1783
+ #
1784
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::BatchCreateInstancesRequest]
1785
+ # A request object representing the call parameters. Required.
1786
+ # @return [Array(String, [String, nil], Hash{String => String})]
1787
+ # Uri, Body, Query string parameters
1788
+ def self.transcode_batch_create_instances_request request_pb
1789
+ transcoder = Gapic::Rest::GrpcTranscoder.new
1790
+ .with_bindings(
1791
+ uri_method: :post,
1792
+ uri_template: "/v1alpha/{parent}/instances:batchCreate",
1793
+ body: "requests",
1794
+ matches: [
1795
+ ["parent", %r{^projects/[^/]+/locations/[^/]+/clusters/[^/]+/?$}, false]
1796
+ ]
1797
+ )
1798
+ transcoder.transcode request_pb
1799
+ end
1800
+
1801
+ ##
1802
+ # @private
1803
+ #
1804
+ # GRPC transcoding helper method for the update_instance REST call
1805
+ #
1806
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::UpdateInstanceRequest]
1807
+ # A request object representing the call parameters. Required.
1808
+ # @return [Array(String, [String, nil], Hash{String => String})]
1809
+ # Uri, Body, Query string parameters
1810
+ def self.transcode_update_instance_request request_pb
1811
+ transcoder = Gapic::Rest::GrpcTranscoder.new
1812
+ .with_bindings(
1813
+ uri_method: :patch,
1814
+ uri_template: "/v1alpha/{instance.name}",
1815
+ body: "instance",
1816
+ matches: [
1817
+ ["instance.name", %r{^projects/[^/]+/locations/[^/]+/clusters/[^/]+/instances/[^/]+/?$}, false]
1818
+ ]
1819
+ )
1820
+ transcoder.transcode request_pb
1821
+ end
1822
+
1823
+ ##
1824
+ # @private
1825
+ #
1826
+ # GRPC transcoding helper method for the delete_instance REST call
1827
+ #
1828
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::DeleteInstanceRequest]
1829
+ # A request object representing the call parameters. Required.
1830
+ # @return [Array(String, [String, nil], Hash{String => String})]
1831
+ # Uri, Body, Query string parameters
1832
+ def self.transcode_delete_instance_request request_pb
1833
+ transcoder = Gapic::Rest::GrpcTranscoder.new
1834
+ .with_bindings(
1835
+ uri_method: :delete,
1836
+ uri_template: "/v1alpha/{name}",
1837
+ matches: [
1838
+ ["name", %r{^projects/[^/]+/locations/[^/]+/clusters/[^/]+/instances/[^/]+/?$}, false]
1839
+ ]
1840
+ )
1841
+ transcoder.transcode request_pb
1842
+ end
1843
+
1844
+ ##
1845
+ # @private
1846
+ #
1847
+ # GRPC transcoding helper method for the failover_instance REST call
1848
+ #
1849
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::FailoverInstanceRequest]
1850
+ # A request object representing the call parameters. Required.
1851
+ # @return [Array(String, [String, nil], Hash{String => String})]
1852
+ # Uri, Body, Query string parameters
1853
+ def self.transcode_failover_instance_request request_pb
1854
+ transcoder = Gapic::Rest::GrpcTranscoder.new
1855
+ .with_bindings(
1856
+ uri_method: :post,
1857
+ uri_template: "/v1alpha/{name}:failover",
1858
+ body: "*",
1859
+ matches: [
1860
+ ["name", %r{^projects/[^/]+/locations/[^/]+/clusters/[^/]+/instances/[^/]+/?$}, false]
1861
+ ]
1862
+ )
1863
+ transcoder.transcode request_pb
1864
+ end
1865
+
1866
+ ##
1867
+ # @private
1868
+ #
1869
+ # GRPC transcoding helper method for the inject_fault REST call
1870
+ #
1871
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::InjectFaultRequest]
1872
+ # A request object representing the call parameters. Required.
1873
+ # @return [Array(String, [String, nil], Hash{String => String})]
1874
+ # Uri, Body, Query string parameters
1875
+ def self.transcode_inject_fault_request request_pb
1876
+ transcoder = Gapic::Rest::GrpcTranscoder.new
1877
+ .with_bindings(
1878
+ uri_method: :post,
1879
+ uri_template: "/v1alpha/{name}:injectFault",
1880
+ body: "*",
1881
+ matches: [
1882
+ ["name", %r{^projects/[^/]+/locations/[^/]+/clusters/[^/]+/instances/[^/]+/?$}, false]
1883
+ ]
1884
+ )
1885
+ transcoder.transcode request_pb
1886
+ end
1887
+
1888
+ ##
1889
+ # @private
1890
+ #
1891
+ # GRPC transcoding helper method for the restart_instance REST call
1892
+ #
1893
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::RestartInstanceRequest]
1894
+ # A request object representing the call parameters. Required.
1895
+ # @return [Array(String, [String, nil], Hash{String => String})]
1896
+ # Uri, Body, Query string parameters
1897
+ def self.transcode_restart_instance_request request_pb
1898
+ transcoder = Gapic::Rest::GrpcTranscoder.new
1899
+ .with_bindings(
1900
+ uri_method: :post,
1901
+ uri_template: "/v1alpha/{name}:restart",
1902
+ body: "*",
1903
+ matches: [
1904
+ ["name", %r{^projects/[^/]+/locations/[^/]+/clusters/[^/]+/instances/[^/]+/?$}, false]
1905
+ ]
1906
+ )
1907
+ transcoder.transcode request_pb
1908
+ end
1909
+
1910
+ ##
1911
+ # @private
1912
+ #
1913
+ # GRPC transcoding helper method for the execute_sql REST call
1914
+ #
1915
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::ExecuteSqlRequest]
1916
+ # A request object representing the call parameters. Required.
1917
+ # @return [Array(String, [String, nil], Hash{String => String})]
1918
+ # Uri, Body, Query string parameters
1919
+ def self.transcode_execute_sql_request request_pb
1920
+ transcoder = Gapic::Rest::GrpcTranscoder.new
1921
+ .with_bindings(
1922
+ uri_method: :post,
1923
+ uri_template: "/v1alpha/{instance}:executeSql",
1924
+ body: "*",
1925
+ matches: [
1926
+ ["instance", %r{^projects/[^/]+/locations/[^/]+/clusters/[^/]+/instances/[^/]+/?$}, false]
1927
+ ]
1928
+ )
1929
+ transcoder.transcode request_pb
1930
+ end
1931
+
1932
+ ##
1933
+ # @private
1934
+ #
1935
+ # GRPC transcoding helper method for the list_backups REST call
1936
+ #
1937
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::ListBackupsRequest]
1938
+ # A request object representing the call parameters. Required.
1939
+ # @return [Array(String, [String, nil], Hash{String => String})]
1940
+ # Uri, Body, Query string parameters
1941
+ def self.transcode_list_backups_request request_pb
1942
+ transcoder = Gapic::Rest::GrpcTranscoder.new
1943
+ .with_bindings(
1944
+ uri_method: :get,
1945
+ uri_template: "/v1alpha/{parent}/backups",
1946
+ matches: [
1947
+ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
1948
+ ]
1949
+ )
1950
+ transcoder.transcode request_pb
1951
+ end
1952
+
1953
+ ##
1954
+ # @private
1955
+ #
1956
+ # GRPC transcoding helper method for the get_backup REST call
1957
+ #
1958
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::GetBackupRequest]
1959
+ # A request object representing the call parameters. Required.
1960
+ # @return [Array(String, [String, nil], Hash{String => String})]
1961
+ # Uri, Body, Query string parameters
1962
+ def self.transcode_get_backup_request request_pb
1963
+ transcoder = Gapic::Rest::GrpcTranscoder.new
1964
+ .with_bindings(
1965
+ uri_method: :get,
1966
+ uri_template: "/v1alpha/{name}",
1967
+ matches: [
1968
+ ["name", %r{^projects/[^/]+/locations/[^/]+/backups/[^/]+/?$}, false]
1969
+ ]
1970
+ )
1971
+ transcoder.transcode request_pb
1972
+ end
1973
+
1974
+ ##
1975
+ # @private
1976
+ #
1977
+ # GRPC transcoding helper method for the create_backup REST call
1978
+ #
1979
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::CreateBackupRequest]
1980
+ # A request object representing the call parameters. Required.
1981
+ # @return [Array(String, [String, nil], Hash{String => String})]
1982
+ # Uri, Body, Query string parameters
1983
+ def self.transcode_create_backup_request request_pb
1984
+ transcoder = Gapic::Rest::GrpcTranscoder.new
1985
+ .with_bindings(
1986
+ uri_method: :post,
1987
+ uri_template: "/v1alpha/{parent}/backups",
1988
+ body: "backup",
1989
+ matches: [
1990
+ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
1991
+ ]
1992
+ )
1993
+ transcoder.transcode request_pb
1994
+ end
1995
+
1996
+ ##
1997
+ # @private
1998
+ #
1999
+ # GRPC transcoding helper method for the update_backup REST call
2000
+ #
2001
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::UpdateBackupRequest]
2002
+ # A request object representing the call parameters. Required.
2003
+ # @return [Array(String, [String, nil], Hash{String => String})]
2004
+ # Uri, Body, Query string parameters
2005
+ def self.transcode_update_backup_request request_pb
2006
+ transcoder = Gapic::Rest::GrpcTranscoder.new
2007
+ .with_bindings(
2008
+ uri_method: :patch,
2009
+ uri_template: "/v1alpha/{backup.name}",
2010
+ body: "backup",
2011
+ matches: [
2012
+ ["backup.name", %r{^projects/[^/]+/locations/[^/]+/backups/[^/]+/?$}, false]
2013
+ ]
2014
+ )
2015
+ transcoder.transcode request_pb
2016
+ end
2017
+
2018
+ ##
2019
+ # @private
2020
+ #
2021
+ # GRPC transcoding helper method for the delete_backup REST call
2022
+ #
2023
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::DeleteBackupRequest]
2024
+ # A request object representing the call parameters. Required.
2025
+ # @return [Array(String, [String, nil], Hash{String => String})]
2026
+ # Uri, Body, Query string parameters
2027
+ def self.transcode_delete_backup_request request_pb
2028
+ transcoder = Gapic::Rest::GrpcTranscoder.new
2029
+ .with_bindings(
2030
+ uri_method: :delete,
2031
+ uri_template: "/v1alpha/{name}",
2032
+ matches: [
2033
+ ["name", %r{^projects/[^/]+/locations/[^/]+/backups/[^/]+/?$}, false]
2034
+ ]
2035
+ )
2036
+ transcoder.transcode request_pb
2037
+ end
2038
+
2039
+ ##
2040
+ # @private
2041
+ #
2042
+ # GRPC transcoding helper method for the list_supported_database_flags REST call
2043
+ #
2044
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::ListSupportedDatabaseFlagsRequest]
2045
+ # A request object representing the call parameters. Required.
2046
+ # @return [Array(String, [String, nil], Hash{String => String})]
2047
+ # Uri, Body, Query string parameters
2048
+ def self.transcode_list_supported_database_flags_request request_pb
2049
+ transcoder = Gapic::Rest::GrpcTranscoder.new
2050
+ .with_bindings(
2051
+ uri_method: :get,
2052
+ uri_template: "/v1alpha/{parent}/supportedDatabaseFlags",
2053
+ matches: [
2054
+ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
2055
+ ]
2056
+ )
2057
+ transcoder.transcode request_pb
2058
+ end
2059
+
2060
+ ##
2061
+ # @private
2062
+ #
2063
+ # GRPC transcoding helper method for the generate_client_certificate REST call
2064
+ #
2065
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::GenerateClientCertificateRequest]
2066
+ # A request object representing the call parameters. Required.
2067
+ # @return [Array(String, [String, nil], Hash{String => String})]
2068
+ # Uri, Body, Query string parameters
2069
+ def self.transcode_generate_client_certificate_request request_pb
2070
+ transcoder = Gapic::Rest::GrpcTranscoder.new
2071
+ .with_bindings(
2072
+ uri_method: :post,
2073
+ uri_template: "/v1alpha/{parent}:generateClientCertificate",
2074
+ body: "*",
2075
+ matches: [
2076
+ ["parent", %r{^projects/[^/]+/locations/[^/]+/clusters/[^/]+/?$}, false]
2077
+ ]
2078
+ )
2079
+ transcoder.transcode request_pb
2080
+ end
2081
+
2082
+ ##
2083
+ # @private
2084
+ #
2085
+ # GRPC transcoding helper method for the get_connection_info REST call
2086
+ #
2087
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::GetConnectionInfoRequest]
2088
+ # A request object representing the call parameters. Required.
2089
+ # @return [Array(String, [String, nil], Hash{String => String})]
2090
+ # Uri, Body, Query string parameters
2091
+ def self.transcode_get_connection_info_request request_pb
2092
+ transcoder = Gapic::Rest::GrpcTranscoder.new
2093
+ .with_bindings(
2094
+ uri_method: :get,
2095
+ uri_template: "/v1alpha/{parent}/connectionInfo",
2096
+ matches: [
2097
+ ["parent", %r{^projects/[^/]+/locations/[^/]+/clusters/[^/]+/instances/[^/]+/?$}, false]
2098
+ ]
2099
+ )
2100
+ transcoder.transcode request_pb
2101
+ end
2102
+
2103
+ ##
2104
+ # @private
2105
+ #
2106
+ # GRPC transcoding helper method for the list_users REST call
2107
+ #
2108
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::ListUsersRequest]
2109
+ # A request object representing the call parameters. Required.
2110
+ # @return [Array(String, [String, nil], Hash{String => String})]
2111
+ # Uri, Body, Query string parameters
2112
+ def self.transcode_list_users_request request_pb
2113
+ transcoder = Gapic::Rest::GrpcTranscoder.new
2114
+ .with_bindings(
2115
+ uri_method: :get,
2116
+ uri_template: "/v1alpha/{parent}/users",
2117
+ matches: [
2118
+ ["parent", %r{^projects/[^/]+/locations/[^/]+/clusters/[^/]+/?$}, false]
2119
+ ]
2120
+ )
2121
+ transcoder.transcode request_pb
2122
+ end
2123
+
2124
+ ##
2125
+ # @private
2126
+ #
2127
+ # GRPC transcoding helper method for the get_user REST call
2128
+ #
2129
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::GetUserRequest]
2130
+ # A request object representing the call parameters. Required.
2131
+ # @return [Array(String, [String, nil], Hash{String => String})]
2132
+ # Uri, Body, Query string parameters
2133
+ def self.transcode_get_user_request request_pb
2134
+ transcoder = Gapic::Rest::GrpcTranscoder.new
2135
+ .with_bindings(
2136
+ uri_method: :get,
2137
+ uri_template: "/v1alpha/{name}",
2138
+ matches: [
2139
+ ["name", %r{^projects/[^/]+/locations/[^/]+/clusters/[^/]+/users/[^/]+/?$}, false]
2140
+ ]
2141
+ )
2142
+ transcoder.transcode request_pb
2143
+ end
2144
+
2145
+ ##
2146
+ # @private
2147
+ #
2148
+ # GRPC transcoding helper method for the create_user REST call
2149
+ #
2150
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::CreateUserRequest]
2151
+ # A request object representing the call parameters. Required.
2152
+ # @return [Array(String, [String, nil], Hash{String => String})]
2153
+ # Uri, Body, Query string parameters
2154
+ def self.transcode_create_user_request request_pb
2155
+ transcoder = Gapic::Rest::GrpcTranscoder.new
2156
+ .with_bindings(
2157
+ uri_method: :post,
2158
+ uri_template: "/v1alpha/{parent}/users",
2159
+ body: "user",
2160
+ matches: [
2161
+ ["parent", %r{^projects/[^/]+/locations/[^/]+/clusters/[^/]+/?$}, false]
2162
+ ]
2163
+ )
2164
+ transcoder.transcode request_pb
2165
+ end
2166
+
2167
+ ##
2168
+ # @private
2169
+ #
2170
+ # GRPC transcoding helper method for the update_user REST call
2171
+ #
2172
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::UpdateUserRequest]
2173
+ # A request object representing the call parameters. Required.
2174
+ # @return [Array(String, [String, nil], Hash{String => String})]
2175
+ # Uri, Body, Query string parameters
2176
+ def self.transcode_update_user_request request_pb
2177
+ transcoder = Gapic::Rest::GrpcTranscoder.new
2178
+ .with_bindings(
2179
+ uri_method: :patch,
2180
+ uri_template: "/v1alpha/{user.name}",
2181
+ body: "user",
2182
+ matches: [
2183
+ ["user.name", %r{^projects/[^/]+/locations/[^/]+/clusters/[^/]+/users/[^/]+/?$}, false]
2184
+ ]
2185
+ )
2186
+ transcoder.transcode request_pb
2187
+ end
2188
+
2189
+ ##
2190
+ # @private
2191
+ #
2192
+ # GRPC transcoding helper method for the delete_user REST call
2193
+ #
2194
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::DeleteUserRequest]
2195
+ # A request object representing the call parameters. Required.
2196
+ # @return [Array(String, [String, nil], Hash{String => String})]
2197
+ # Uri, Body, Query string parameters
2198
+ def self.transcode_delete_user_request request_pb
2199
+ transcoder = Gapic::Rest::GrpcTranscoder.new
2200
+ .with_bindings(
2201
+ uri_method: :delete,
2202
+ uri_template: "/v1alpha/{name}",
2203
+ matches: [
2204
+ ["name", %r{^projects/[^/]+/locations/[^/]+/clusters/[^/]+/users/[^/]+/?$}, false]
2205
+ ]
2206
+ )
2207
+ transcoder.transcode request_pb
2208
+ end
2209
+
2210
+ ##
2211
+ # @private
2212
+ #
2213
+ # GRPC transcoding helper method for the list_databases REST call
2214
+ #
2215
+ # @param request_pb [::Google::Cloud::AlloyDB::V1alpha::ListDatabasesRequest]
2216
+ # A request object representing the call parameters. Required.
2217
+ # @return [Array(String, [String, nil], Hash{String => String})]
2218
+ # Uri, Body, Query string parameters
2219
+ def self.transcode_list_databases_request request_pb
2220
+ transcoder = Gapic::Rest::GrpcTranscoder.new
2221
+ .with_bindings(
2222
+ uri_method: :get,
2223
+ uri_template: "/v1alpha/{parent}/databases",
2224
+ matches: [
2225
+ ["parent", %r{^projects/[^/]+/locations/[^/]+/clusters/[^/]+/?$}, false]
2226
+ ]
2227
+ )
2228
+ transcoder.transcode request_pb
2229
+ end
2230
+ end
2231
+ end
2232
+ end
2233
+ end
2234
+ end
2235
+ end
2236
+ end