google-cloud-vpc_access-v1 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/google/cloud/vpc_access/v1/version.rb +1 -1
- data/lib/google/cloud/vpc_access/v1/vpc_access_service/client.rb +100 -12
- data/lib/google/cloud/vpc_access/v1/vpc_access_service/operations.rb +115 -12
- data/lib/google/cloud/vpcaccess/v1/vpc_access_pb.rb +2 -2
- data/lib/google/cloud/vpcaccess/v1/vpc_access_services_pb.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a200497ba2e2527ade99917926be282b2d52dcaa29517e47f08d0b83cac3e138
|
4
|
+
data.tar.gz: 0a2879b2461de9715c1b870d8f06ff405e06c4ceeafeae89554a51cf49d377f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 297344246b8647ce771f94df9934fef03cc0433cafbc8fed674cc7e10d9af61ee45e5639dfebc5e4f5dc79b703c2474d7bf50e7e07c2a67a9f2491257d5aac32
|
7
|
+
data.tar.gz: 989d6d4960322ca0f3a30a6c778bacff6961cc59441717a49d6e98f01bb64625d7564fbb67c1ec37093261c3a7063c7523ee9590e2bf31f55b7c50b5fed1db13
|
@@ -205,6 +205,28 @@ module Google
|
|
205
205
|
#
|
206
206
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
207
207
|
#
|
208
|
+
# @example Basic example
|
209
|
+
# require "google/cloud/vpc_access/v1"
|
210
|
+
#
|
211
|
+
# # Create a client object. The client can be reused for multiple calls.
|
212
|
+
# client = Google::Cloud::VpcAccess::V1::VpcAccessService::Client.new
|
213
|
+
#
|
214
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
215
|
+
# request = Google::Cloud::VpcAccess::V1::CreateConnectorRequest.new
|
216
|
+
#
|
217
|
+
# # Call the create_connector method.
|
218
|
+
# result = client.create_connector request
|
219
|
+
#
|
220
|
+
# # The returned object is of type Gapic::Operation. You can use this
|
221
|
+
# # object to check the status of an operation, cancel it, or wait
|
222
|
+
# # for results. Here is how to block until completion:
|
223
|
+
# result.wait_until_done! timeout: 60
|
224
|
+
# if result.response?
|
225
|
+
# p result.response
|
226
|
+
# else
|
227
|
+
# puts "Error!"
|
228
|
+
# end
|
229
|
+
#
|
208
230
|
def create_connector request, options = nil
|
209
231
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
210
232
|
|
@@ -222,9 +244,11 @@ module Google
|
|
222
244
|
gapic_version: ::Google::Cloud::VpcAccess::V1::VERSION
|
223
245
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
224
246
|
|
225
|
-
header_params = {
|
226
|
-
|
227
|
-
|
247
|
+
header_params = {}
|
248
|
+
if request.parent
|
249
|
+
header_params["parent"] = request.parent
|
250
|
+
end
|
251
|
+
|
228
252
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
229
253
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
230
254
|
|
@@ -275,6 +299,21 @@ module Google
|
|
275
299
|
#
|
276
300
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
277
301
|
#
|
302
|
+
# @example Basic example
|
303
|
+
# require "google/cloud/vpc_access/v1"
|
304
|
+
#
|
305
|
+
# # Create a client object. The client can be reused for multiple calls.
|
306
|
+
# client = Google::Cloud::VpcAccess::V1::VpcAccessService::Client.new
|
307
|
+
#
|
308
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
309
|
+
# request = Google::Cloud::VpcAccess::V1::GetConnectorRequest.new
|
310
|
+
#
|
311
|
+
# # Call the get_connector method.
|
312
|
+
# result = client.get_connector request
|
313
|
+
#
|
314
|
+
# # The returned object is of type Google::Cloud::VpcAccess::V1::Connector.
|
315
|
+
# p result
|
316
|
+
#
|
278
317
|
def get_connector request, options = nil
|
279
318
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
280
319
|
|
@@ -292,9 +331,11 @@ module Google
|
|
292
331
|
gapic_version: ::Google::Cloud::VpcAccess::V1::VERSION
|
293
332
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
294
333
|
|
295
|
-
header_params = {
|
296
|
-
|
297
|
-
|
334
|
+
header_params = {}
|
335
|
+
if request.name
|
336
|
+
header_params["name"] = request.name
|
337
|
+
end
|
338
|
+
|
298
339
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
299
340
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
300
341
|
|
@@ -347,6 +388,27 @@ module Google
|
|
347
388
|
#
|
348
389
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
349
390
|
#
|
391
|
+
# @example Basic example
|
392
|
+
# require "google/cloud/vpc_access/v1"
|
393
|
+
#
|
394
|
+
# # Create a client object. The client can be reused for multiple calls.
|
395
|
+
# client = Google::Cloud::VpcAccess::V1::VpcAccessService::Client.new
|
396
|
+
#
|
397
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
398
|
+
# request = Google::Cloud::VpcAccess::V1::ListConnectorsRequest.new
|
399
|
+
#
|
400
|
+
# # Call the list_connectors method.
|
401
|
+
# result = client.list_connectors request
|
402
|
+
#
|
403
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can
|
404
|
+
# # iterate over all elements by calling #each, and the enumerable
|
405
|
+
# # will lazily make API calls to fetch subsequent pages. Other
|
406
|
+
# # methods are also available for managing paging directly.
|
407
|
+
# result.each do |response|
|
408
|
+
# # Each element is of type ::Google::Cloud::VpcAccess::V1::Connector.
|
409
|
+
# p response
|
410
|
+
# end
|
411
|
+
#
|
350
412
|
def list_connectors request, options = nil
|
351
413
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
352
414
|
|
@@ -364,9 +426,11 @@ module Google
|
|
364
426
|
gapic_version: ::Google::Cloud::VpcAccess::V1::VERSION
|
365
427
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
366
428
|
|
367
|
-
header_params = {
|
368
|
-
|
369
|
-
|
429
|
+
header_params = {}
|
430
|
+
if request.parent
|
431
|
+
header_params["parent"] = request.parent
|
432
|
+
end
|
433
|
+
|
370
434
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
371
435
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
372
436
|
|
@@ -417,6 +481,28 @@ module Google
|
|
417
481
|
#
|
418
482
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
419
483
|
#
|
484
|
+
# @example Basic example
|
485
|
+
# require "google/cloud/vpc_access/v1"
|
486
|
+
#
|
487
|
+
# # Create a client object. The client can be reused for multiple calls.
|
488
|
+
# client = Google::Cloud::VpcAccess::V1::VpcAccessService::Client.new
|
489
|
+
#
|
490
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
491
|
+
# request = Google::Cloud::VpcAccess::V1::DeleteConnectorRequest.new
|
492
|
+
#
|
493
|
+
# # Call the delete_connector method.
|
494
|
+
# result = client.delete_connector request
|
495
|
+
#
|
496
|
+
# # The returned object is of type Gapic::Operation. You can use this
|
497
|
+
# # object to check the status of an operation, cancel it, or wait
|
498
|
+
# # for results. Here is how to block until completion:
|
499
|
+
# result.wait_until_done! timeout: 60
|
500
|
+
# if result.response?
|
501
|
+
# p result.response
|
502
|
+
# else
|
503
|
+
# puts "Error!"
|
504
|
+
# end
|
505
|
+
#
|
420
506
|
def delete_connector request, options = nil
|
421
507
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
422
508
|
|
@@ -434,9 +520,11 @@ module Google
|
|
434
520
|
gapic_version: ::Google::Cloud::VpcAccess::V1::VERSION
|
435
521
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
436
522
|
|
437
|
-
header_params = {
|
438
|
-
|
439
|
-
|
523
|
+
header_params = {}
|
524
|
+
if request.name
|
525
|
+
header_params["name"] = request.name
|
526
|
+
end
|
527
|
+
|
440
528
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
441
529
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
442
530
|
|
@@ -143,6 +143,27 @@ module Google
|
|
143
143
|
#
|
144
144
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
145
145
|
#
|
146
|
+
# @example Basic example
|
147
|
+
# require "google/longrunning"
|
148
|
+
#
|
149
|
+
# # Create a client object. The client can be reused for multiple calls.
|
150
|
+
# client = Google::Longrunning::Operations::Client.new
|
151
|
+
#
|
152
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
153
|
+
# request = Google::Longrunning::ListOperationsRequest.new
|
154
|
+
#
|
155
|
+
# # Call the list_operations method.
|
156
|
+
# result = client.list_operations request
|
157
|
+
#
|
158
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can
|
159
|
+
# # iterate over all elements by calling #each, and the enumerable
|
160
|
+
# # will lazily make API calls to fetch subsequent pages. Other
|
161
|
+
# # methods are also available for managing paging directly.
|
162
|
+
# result.each do |response|
|
163
|
+
# # Each element is of type ::Google::Longrunning::Operation.
|
164
|
+
# p response
|
165
|
+
# end
|
166
|
+
#
|
146
167
|
def list_operations request, options = nil
|
147
168
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
148
169
|
|
@@ -160,9 +181,11 @@ module Google
|
|
160
181
|
gapic_version: ::Google::Cloud::VpcAccess::V1::VERSION
|
161
182
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
162
183
|
|
163
|
-
header_params = {
|
164
|
-
|
165
|
-
|
184
|
+
header_params = {}
|
185
|
+
if request.name
|
186
|
+
header_params["name"] = request.name
|
187
|
+
end
|
188
|
+
|
166
189
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
167
190
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
168
191
|
|
@@ -215,6 +238,28 @@ module Google
|
|
215
238
|
#
|
216
239
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
217
240
|
#
|
241
|
+
# @example Basic example
|
242
|
+
# require "google/longrunning"
|
243
|
+
#
|
244
|
+
# # Create a client object. The client can be reused for multiple calls.
|
245
|
+
# client = Google::Longrunning::Operations::Client.new
|
246
|
+
#
|
247
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
248
|
+
# request = Google::Longrunning::GetOperationRequest.new
|
249
|
+
#
|
250
|
+
# # Call the get_operation method.
|
251
|
+
# result = client.get_operation request
|
252
|
+
#
|
253
|
+
# # The returned object is of type Gapic::Operation. You can use this
|
254
|
+
# # object to check the status of an operation, cancel it, or wait
|
255
|
+
# # for results. Here is how to block until completion:
|
256
|
+
# result.wait_until_done! timeout: 60
|
257
|
+
# if result.response?
|
258
|
+
# p result.response
|
259
|
+
# else
|
260
|
+
# puts "Error!"
|
261
|
+
# end
|
262
|
+
#
|
218
263
|
def get_operation request, options = nil
|
219
264
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
220
265
|
|
@@ -232,9 +277,11 @@ module Google
|
|
232
277
|
gapic_version: ::Google::Cloud::VpcAccess::V1::VERSION
|
233
278
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
234
279
|
|
235
|
-
header_params = {
|
236
|
-
|
237
|
-
|
280
|
+
header_params = {}
|
281
|
+
if request.name
|
282
|
+
header_params["name"] = request.name
|
283
|
+
end
|
284
|
+
|
238
285
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
239
286
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
240
287
|
|
@@ -287,6 +334,21 @@ module Google
|
|
287
334
|
#
|
288
335
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
289
336
|
#
|
337
|
+
# @example Basic example
|
338
|
+
# require "google/longrunning"
|
339
|
+
#
|
340
|
+
# # Create a client object. The client can be reused for multiple calls.
|
341
|
+
# client = Google::Longrunning::Operations::Client.new
|
342
|
+
#
|
343
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
344
|
+
# request = Google::Longrunning::DeleteOperationRequest.new
|
345
|
+
#
|
346
|
+
# # Call the delete_operation method.
|
347
|
+
# result = client.delete_operation request
|
348
|
+
#
|
349
|
+
# # The returned object is of type Google::Protobuf::Empty.
|
350
|
+
# p result
|
351
|
+
#
|
290
352
|
def delete_operation request, options = nil
|
291
353
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
292
354
|
|
@@ -304,9 +366,11 @@ module Google
|
|
304
366
|
gapic_version: ::Google::Cloud::VpcAccess::V1::VERSION
|
305
367
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
306
368
|
|
307
|
-
header_params = {
|
308
|
-
|
309
|
-
|
369
|
+
header_params = {}
|
370
|
+
if request.name
|
371
|
+
header_params["name"] = request.name
|
372
|
+
end
|
373
|
+
|
310
374
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
311
375
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
312
376
|
|
@@ -364,6 +428,21 @@ module Google
|
|
364
428
|
#
|
365
429
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
366
430
|
#
|
431
|
+
# @example Basic example
|
432
|
+
# require "google/longrunning"
|
433
|
+
#
|
434
|
+
# # Create a client object. The client can be reused for multiple calls.
|
435
|
+
# client = Google::Longrunning::Operations::Client.new
|
436
|
+
#
|
437
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
438
|
+
# request = Google::Longrunning::CancelOperationRequest.new
|
439
|
+
#
|
440
|
+
# # Call the cancel_operation method.
|
441
|
+
# result = client.cancel_operation request
|
442
|
+
#
|
443
|
+
# # The returned object is of type Google::Protobuf::Empty.
|
444
|
+
# p result
|
445
|
+
#
|
367
446
|
def cancel_operation request, options = nil
|
368
447
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
369
448
|
|
@@ -381,9 +460,11 @@ module Google
|
|
381
460
|
gapic_version: ::Google::Cloud::VpcAccess::V1::VERSION
|
382
461
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
383
462
|
|
384
|
-
header_params = {
|
385
|
-
|
386
|
-
|
463
|
+
header_params = {}
|
464
|
+
if request.name
|
465
|
+
header_params["name"] = request.name
|
466
|
+
end
|
467
|
+
|
387
468
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
388
469
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
389
470
|
|
@@ -444,6 +525,28 @@ module Google
|
|
444
525
|
#
|
445
526
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
446
527
|
#
|
528
|
+
# @example Basic example
|
529
|
+
# require "google/longrunning"
|
530
|
+
#
|
531
|
+
# # Create a client object. The client can be reused for multiple calls.
|
532
|
+
# client = Google::Longrunning::Operations::Client.new
|
533
|
+
#
|
534
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
535
|
+
# request = Google::Longrunning::WaitOperationRequest.new
|
536
|
+
#
|
537
|
+
# # Call the wait_operation method.
|
538
|
+
# result = client.wait_operation request
|
539
|
+
#
|
540
|
+
# # The returned object is of type Gapic::Operation. You can use this
|
541
|
+
# # object to check the status of an operation, cancel it, or wait
|
542
|
+
# # for results. Here is how to block until completion:
|
543
|
+
# result.wait_until_done! timeout: 60
|
544
|
+
# if result.response?
|
545
|
+
# p result.response
|
546
|
+
# else
|
547
|
+
# puts "Error!"
|
548
|
+
# end
|
549
|
+
#
|
447
550
|
def wait_operation request, options = nil
|
448
551
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
449
552
|
|
@@ -1,14 +1,14 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/cloud/vpcaccess/v1/vpc_access.proto
|
3
3
|
|
4
|
-
require 'google/protobuf'
|
5
|
-
|
6
4
|
require 'google/api/annotations_pb'
|
7
5
|
require 'google/api/client_pb'
|
8
6
|
require 'google/api/field_behavior_pb'
|
9
7
|
require 'google/api/resource_pb'
|
10
8
|
require 'google/longrunning/operations_pb'
|
11
9
|
require 'google/protobuf/timestamp_pb'
|
10
|
+
require 'google/protobuf'
|
11
|
+
|
12
12
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
13
13
|
add_file("google/cloud/vpcaccess/v1/vpc_access.proto", :syntax => :proto3) do
|
14
14
|
add_message "google.cloud.vpcaccess.v1.Connector" do
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-vpc_access-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-08
|
11
|
+
date: 2021-11-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|