google-cloud-eventarc-v1 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 86046a0010197e2dbf376a389b02409d1b112ac2d731d89d59aa2bc08b11f012
4
- data.tar.gz: 2fdf50ff6327d7c64c80b7c76a9460fef173f8fb6d7e52014cba7d9c72c352b3
3
+ metadata.gz: b510d72713a0c74ae497b0ddd5d938c370c18de7fb06ab6a0e69a75b6cf5acd5
4
+ data.tar.gz: f2de204ab37cf6301c13c71ec4929bc5aceaec53ac5e3b89fcdd30c816e3003c
5
5
  SHA512:
6
- metadata.gz: 3d75e03e8a53cba1fba9f03921764a356c56c1be78da4bdf969651bf5c4c1338700e512ae42264ed058c770eccfc2012779b7a2c869c1b631052b455dc244168
7
- data.tar.gz: 6cb3720054d24f2112d3c4ebaf4f3a8480db08279c769716763873beb8c8916972917371540ca967cb1c77b59e85aeb33d0b69b690a4ff56aad334200a0c3ce1
6
+ metadata.gz: 6ef43828cb9162b63f30d2ef0936c137f08186d8b89c6bd3d6f14a0b50b1d3a8752472c396fdbf2b11ff48c7c0edcf3aacfacde376b1637a0088d59095d8ea59
7
+ data.tar.gz: ff4f97a6936710a9069a265b8f6d4a3b98cfa16e80501dbdcc6312f91f89c1eabe2ce2fa28f1094c660e4e40916f7237511dacda4b600f1c452cffd8bfcbef81
@@ -186,6 +186,21 @@ module Google
186
186
  #
187
187
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
188
188
  #
189
+ # @example Basic example
190
+ # require "google/cloud/eventarc/v1"
191
+ #
192
+ # # Create a client object. The client can be reused for multiple calls.
193
+ # client = Google::Cloud::Eventarc::V1::Eventarc::Client.new
194
+ #
195
+ # # Create a request. To set request fields, pass in keyword arguments.
196
+ # request = Google::Cloud::Eventarc::V1::GetTriggerRequest.new
197
+ #
198
+ # # Call the get_trigger method.
199
+ # result = client.get_trigger request
200
+ #
201
+ # # The returned object is of type Google::Cloud::Eventarc::V1::Trigger.
202
+ # p result
203
+ #
189
204
  def get_trigger request, options = nil
190
205
  raise ::ArgumentError, "request must be provided" if request.nil?
191
206
 
@@ -203,9 +218,11 @@ module Google
203
218
  gapic_version: ::Google::Cloud::Eventarc::V1::VERSION
204
219
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
205
220
 
206
- header_params = {
207
- "name" => request.name
208
- }
221
+ header_params = {}
222
+ if request.name
223
+ header_params["name"] = request.name
224
+ end
225
+
209
226
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
210
227
  metadata[:"x-goog-request-params"] ||= request_params_header
211
228
 
@@ -268,6 +285,27 @@ module Google
268
285
  #
269
286
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
270
287
  #
288
+ # @example Basic example
289
+ # require "google/cloud/eventarc/v1"
290
+ #
291
+ # # Create a client object. The client can be reused for multiple calls.
292
+ # client = Google::Cloud::Eventarc::V1::Eventarc::Client.new
293
+ #
294
+ # # Create a request. To set request fields, pass in keyword arguments.
295
+ # request = Google::Cloud::Eventarc::V1::ListTriggersRequest.new
296
+ #
297
+ # # Call the list_triggers method.
298
+ # result = client.list_triggers request
299
+ #
300
+ # # The returned object is of type Gapic::PagedEnumerable. You can
301
+ # # iterate over all elements by calling #each, and the enumerable
302
+ # # will lazily make API calls to fetch subsequent pages. Other
303
+ # # methods are also available for managing paging directly.
304
+ # result.each do |response|
305
+ # # Each element is of type ::Google::Cloud::Eventarc::V1::Trigger.
306
+ # p response
307
+ # end
308
+ #
271
309
  def list_triggers request, options = nil
272
310
  raise ::ArgumentError, "request must be provided" if request.nil?
273
311
 
@@ -285,9 +323,11 @@ module Google
285
323
  gapic_version: ::Google::Cloud::Eventarc::V1::VERSION
286
324
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
287
325
 
288
- header_params = {
289
- "parent" => request.parent
290
- }
326
+ header_params = {}
327
+ if request.parent
328
+ header_params["parent"] = request.parent
329
+ end
330
+
291
331
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
292
332
  metadata[:"x-goog-request-params"] ||= request_params_header
293
333
 
@@ -344,6 +384,28 @@ module Google
344
384
  #
345
385
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
346
386
  #
387
+ # @example Basic example
388
+ # require "google/cloud/eventarc/v1"
389
+ #
390
+ # # Create a client object. The client can be reused for multiple calls.
391
+ # client = Google::Cloud::Eventarc::V1::Eventarc::Client.new
392
+ #
393
+ # # Create a request. To set request fields, pass in keyword arguments.
394
+ # request = Google::Cloud::Eventarc::V1::CreateTriggerRequest.new
395
+ #
396
+ # # Call the create_trigger method.
397
+ # result = client.create_trigger request
398
+ #
399
+ # # The returned object is of type Gapic::Operation. You can use this
400
+ # # object to check the status of an operation, cancel it, or wait
401
+ # # for results. Here is how to block until completion:
402
+ # result.wait_until_done! timeout: 60
403
+ # if result.response?
404
+ # p result.response
405
+ # else
406
+ # puts "Error!"
407
+ # end
408
+ #
347
409
  def create_trigger request, options = nil
348
410
  raise ::ArgumentError, "request must be provided" if request.nil?
349
411
 
@@ -361,9 +423,11 @@ module Google
361
423
  gapic_version: ::Google::Cloud::Eventarc::V1::VERSION
362
424
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
363
425
 
364
- header_params = {
365
- "parent" => request.parent
366
- }
426
+ header_params = {}
427
+ if request.parent
428
+ header_params["parent"] = request.parent
429
+ end
430
+
367
431
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
368
432
  metadata[:"x-goog-request-params"] ||= request_params_header
369
433
 
@@ -423,6 +487,28 @@ module Google
423
487
  #
424
488
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
425
489
  #
490
+ # @example Basic example
491
+ # require "google/cloud/eventarc/v1"
492
+ #
493
+ # # Create a client object. The client can be reused for multiple calls.
494
+ # client = Google::Cloud::Eventarc::V1::Eventarc::Client.new
495
+ #
496
+ # # Create a request. To set request fields, pass in keyword arguments.
497
+ # request = Google::Cloud::Eventarc::V1::UpdateTriggerRequest.new
498
+ #
499
+ # # Call the update_trigger method.
500
+ # result = client.update_trigger request
501
+ #
502
+ # # The returned object is of type Gapic::Operation. You can use this
503
+ # # object to check the status of an operation, cancel it, or wait
504
+ # # for results. Here is how to block until completion:
505
+ # result.wait_until_done! timeout: 60
506
+ # if result.response?
507
+ # p result.response
508
+ # else
509
+ # puts "Error!"
510
+ # end
511
+ #
426
512
  def update_trigger request, options = nil
427
513
  raise ::ArgumentError, "request must be provided" if request.nil?
428
514
 
@@ -440,9 +526,11 @@ module Google
440
526
  gapic_version: ::Google::Cloud::Eventarc::V1::VERSION
441
527
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
442
528
 
443
- header_params = {
444
- "trigger.name" => request.trigger.name
445
- }
529
+ header_params = {}
530
+ if request.trigger&.name
531
+ header_params["trigger.name"] = request.trigger.name
532
+ end
533
+
446
534
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
447
535
  metadata[:"x-goog-request-params"] ||= request_params_header
448
536
 
@@ -501,6 +589,28 @@ module Google
501
589
  #
502
590
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
503
591
  #
592
+ # @example Basic example
593
+ # require "google/cloud/eventarc/v1"
594
+ #
595
+ # # Create a client object. The client can be reused for multiple calls.
596
+ # client = Google::Cloud::Eventarc::V1::Eventarc::Client.new
597
+ #
598
+ # # Create a request. To set request fields, pass in keyword arguments.
599
+ # request = Google::Cloud::Eventarc::V1::DeleteTriggerRequest.new
600
+ #
601
+ # # Call the delete_trigger method.
602
+ # result = client.delete_trigger request
603
+ #
604
+ # # The returned object is of type Gapic::Operation. You can use this
605
+ # # object to check the status of an operation, cancel it, or wait
606
+ # # for results. Here is how to block until completion:
607
+ # result.wait_until_done! timeout: 60
608
+ # if result.response?
609
+ # p result.response
610
+ # else
611
+ # puts "Error!"
612
+ # end
613
+ #
504
614
  def delete_trigger request, options = nil
505
615
  raise ::ArgumentError, "request must be provided" if request.nil?
506
616
 
@@ -518,9 +628,11 @@ module Google
518
628
  gapic_version: ::Google::Cloud::Eventarc::V1::VERSION
519
629
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
520
630
 
521
- header_params = {
522
- "name" => request.name
523
- }
631
+ header_params = {}
632
+ if request.name
633
+ header_params["name"] = request.name
634
+ end
635
+
524
636
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
525
637
  metadata[:"x-goog-request-params"] ||= request_params_header
526
638
 
@@ -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::Eventarc::V1::VERSION
161
182
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
162
183
 
163
- header_params = {
164
- "name" => request.name
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::Eventarc::V1::VERSION
233
278
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
234
279
 
235
- header_params = {
236
- "name" => request.name
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::Eventarc::V1::VERSION
305
367
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
306
368
 
307
- header_params = {
308
- "name" => request.name
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::Eventarc::V1::VERSION
382
461
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
383
462
 
384
- header_params = {
385
- "name" => request.name
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,8 +1,6 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: google/cloud/eventarc/v1/eventarc.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'
@@ -11,6 +9,8 @@ require 'google/cloud/eventarc/v1/trigger_pb'
11
9
  require 'google/longrunning/operations_pb'
12
10
  require 'google/protobuf/field_mask_pb'
13
11
  require 'google/protobuf/timestamp_pb'
12
+ require 'google/protobuf'
13
+
14
14
  Google::Protobuf::DescriptorPool.generated_pool.build do
15
15
  add_file("google/cloud/eventarc/v1/eventarc.proto", :syntax => :proto3) do
16
16
  add_message "google.cloud.eventarc.v1.GetTriggerRequest" do
@@ -28,7 +28,7 @@ module Google
28
28
  # Google Cloud services and forward them to supported destinations.
29
29
  class Service
30
30
 
31
- include GRPC::GenericService
31
+ include ::GRPC::GenericService
32
32
 
33
33
  self.marshal_class_method = :encode
34
34
  self.unmarshal_class_method = :decode
@@ -1,12 +1,12 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: google/cloud/eventarc/v1/trigger.proto
3
3
 
4
- require 'google/protobuf'
5
-
6
4
  require 'google/api/annotations_pb'
7
5
  require 'google/api/field_behavior_pb'
8
6
  require 'google/api/resource_pb'
9
7
  require 'google/protobuf/timestamp_pb'
8
+ require 'google/protobuf'
9
+
10
10
  Google::Protobuf::DescriptorPool.generated_pool.build do
11
11
  add_file("google/cloud/eventarc/v1/trigger.proto", :syntax => :proto3) do
12
12
  add_message "google.cloud.eventarc.v1.Trigger" do
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Eventarc
23
23
  module V1
24
- VERSION = "0.1.2"
24
+ VERSION = "0.1.3"
25
25
  end
26
26
  end
27
27
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-eventarc-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
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 00:00:00.000000000 Z
11
+ date: 2021-11-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common