google-cloud-logging-v2 0.5.4 → 0.5.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/google/cloud/logging/v2/config_service/client.rb +484 -69
- data/lib/google/cloud/logging/v2/logging_service/client.rb +121 -6
- data/lib/google/cloud/logging/v2/metrics_service/client.rb +106 -15
- data/lib/google/cloud/logging/v2/version.rb +1 -1
- data/lib/google/logging/v2/log_entry_pb.rb +2 -2
- data/lib/google/logging/v2/logging_config_pb.rb +2 -2
- data/lib/google/logging/v2/logging_config_services_pb.rb +1 -1
- data/lib/google/logging/v2/logging_metrics_pb.rb +2 -2
- data/lib/google/logging/v2/logging_metrics_services_pb.rb +1 -1
- data/lib/google/logging/v2/logging_pb.rb +2 -2
- data/lib/google/logging/v2/logging_services_pb.rb +1 -1
- metadata +2 -2
@@ -217,6 +217,21 @@ module Google
|
|
217
217
|
#
|
218
218
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
219
219
|
#
|
220
|
+
# @example Basic example
|
221
|
+
# require "google/cloud/logging/v2"
|
222
|
+
#
|
223
|
+
# # Create a client object. The client can be reused for multiple calls.
|
224
|
+
# client = Google::Cloud::Logging::V2::LoggingService::Client.new
|
225
|
+
#
|
226
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
227
|
+
# request = Google::Cloud::Logging::V2::DeleteLogRequest.new
|
228
|
+
#
|
229
|
+
# # Call the delete_log method.
|
230
|
+
# result = client.delete_log request
|
231
|
+
#
|
232
|
+
# # The returned object is of type Google::Protobuf::Empty.
|
233
|
+
# p result
|
234
|
+
#
|
220
235
|
def delete_log request, options = nil
|
221
236
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
222
237
|
|
@@ -234,9 +249,11 @@ module Google
|
|
234
249
|
gapic_version: ::Google::Cloud::Logging::V2::VERSION
|
235
250
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
236
251
|
|
237
|
-
header_params = {
|
238
|
-
|
239
|
-
|
252
|
+
header_params = {}
|
253
|
+
if request.log_name
|
254
|
+
header_params["log_name"] = request.log_name
|
255
|
+
end
|
256
|
+
|
240
257
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
241
258
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
242
259
|
|
@@ -356,6 +373,21 @@ module Google
|
|
356
373
|
#
|
357
374
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
358
375
|
#
|
376
|
+
# @example Basic example
|
377
|
+
# require "google/cloud/logging/v2"
|
378
|
+
#
|
379
|
+
# # Create a client object. The client can be reused for multiple calls.
|
380
|
+
# client = Google::Cloud::Logging::V2::LoggingService::Client.new
|
381
|
+
#
|
382
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
383
|
+
# request = Google::Cloud::Logging::V2::WriteLogEntriesRequest.new
|
384
|
+
#
|
385
|
+
# # Call the write_log_entries method.
|
386
|
+
# result = client.write_log_entries request
|
387
|
+
#
|
388
|
+
# # The returned object is of type Google::Cloud::Logging::V2::WriteLogEntriesResponse.
|
389
|
+
# p result
|
390
|
+
#
|
359
391
|
def write_log_entries request, options = nil
|
360
392
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
361
393
|
|
@@ -460,6 +492,27 @@ module Google
|
|
460
492
|
#
|
461
493
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
462
494
|
#
|
495
|
+
# @example Basic example
|
496
|
+
# require "google/cloud/logging/v2"
|
497
|
+
#
|
498
|
+
# # Create a client object. The client can be reused for multiple calls.
|
499
|
+
# client = Google::Cloud::Logging::V2::LoggingService::Client.new
|
500
|
+
#
|
501
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
502
|
+
# request = Google::Cloud::Logging::V2::ListLogEntriesRequest.new
|
503
|
+
#
|
504
|
+
# # Call the list_log_entries method.
|
505
|
+
# result = client.list_log_entries request
|
506
|
+
#
|
507
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can
|
508
|
+
# # iterate over all elements by calling #each, and the enumerable
|
509
|
+
# # will lazily make API calls to fetch subsequent pages. Other
|
510
|
+
# # methods are also available for managing paging directly.
|
511
|
+
# result.each do |response|
|
512
|
+
# # Each element is of type ::Google::Cloud::Logging::V2::LogEntry.
|
513
|
+
# p response
|
514
|
+
# end
|
515
|
+
#
|
463
516
|
def list_log_entries request, options = nil
|
464
517
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
465
518
|
|
@@ -530,6 +583,27 @@ module Google
|
|
530
583
|
#
|
531
584
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
532
585
|
#
|
586
|
+
# @example Basic example
|
587
|
+
# require "google/cloud/logging/v2"
|
588
|
+
#
|
589
|
+
# # Create a client object. The client can be reused for multiple calls.
|
590
|
+
# client = Google::Cloud::Logging::V2::LoggingService::Client.new
|
591
|
+
#
|
592
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
593
|
+
# request = Google::Cloud::Logging::V2::ListMonitoredResourceDescriptorsRequest.new
|
594
|
+
#
|
595
|
+
# # Call the list_monitored_resource_descriptors method.
|
596
|
+
# result = client.list_monitored_resource_descriptors request
|
597
|
+
#
|
598
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can
|
599
|
+
# # iterate over all elements by calling #each, and the enumerable
|
600
|
+
# # will lazily make API calls to fetch subsequent pages. Other
|
601
|
+
# # methods are also available for managing paging directly.
|
602
|
+
# result.each do |response|
|
603
|
+
# # Each element is of type ::Google::Api::MonitoredResourceDescriptor.
|
604
|
+
# p response
|
605
|
+
# end
|
606
|
+
#
|
533
607
|
def list_monitored_resource_descriptors request, options = nil
|
534
608
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
535
609
|
|
@@ -620,6 +694,21 @@ module Google
|
|
620
694
|
#
|
621
695
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
622
696
|
#
|
697
|
+
# @example Basic example
|
698
|
+
# require "google/cloud/logging/v2"
|
699
|
+
#
|
700
|
+
# # Create a client object. The client can be reused for multiple calls.
|
701
|
+
# client = Google::Cloud::Logging::V2::LoggingService::Client.new
|
702
|
+
#
|
703
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
704
|
+
# request = Google::Cloud::Logging::V2::ListLogsRequest.new
|
705
|
+
#
|
706
|
+
# # Call the list_logs method.
|
707
|
+
# result = client.list_logs request
|
708
|
+
#
|
709
|
+
# # The returned object is of type Google::Cloud::Logging::V2::ListLogsResponse.
|
710
|
+
# p result
|
711
|
+
#
|
623
712
|
def list_logs request, options = nil
|
624
713
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
625
714
|
|
@@ -637,9 +726,11 @@ module Google
|
|
637
726
|
gapic_version: ::Google::Cloud::Logging::V2::VERSION
|
638
727
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
639
728
|
|
640
|
-
header_params = {
|
641
|
-
|
642
|
-
|
729
|
+
header_params = {}
|
730
|
+
if request.parent
|
731
|
+
header_params["parent"] = request.parent
|
732
|
+
end
|
733
|
+
|
643
734
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
644
735
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
645
736
|
|
@@ -676,6 +767,30 @@ module Google
|
|
676
767
|
#
|
677
768
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
678
769
|
#
|
770
|
+
# @example Basic example
|
771
|
+
# require "google/cloud/logging/v2"
|
772
|
+
#
|
773
|
+
# # Create a client object. The client can be reused for multiple calls.
|
774
|
+
# client = Google::Cloud::Logging::V2::LoggingService::Client.new
|
775
|
+
#
|
776
|
+
# # Create an input stream
|
777
|
+
# input = Gapic::StreamInput.new
|
778
|
+
#
|
779
|
+
# # Call the tail_log_entries method to start streaming.
|
780
|
+
# output = client.tail_log_entries input
|
781
|
+
#
|
782
|
+
# # Send requests on the stream. For each request, pass in keyword
|
783
|
+
# # arguments to set fields. Be sure to close the stream when done.
|
784
|
+
# input << Google::Cloud::Logging::V2::TailLogEntriesRequest.new
|
785
|
+
# input << Google::Cloud::Logging::V2::TailLogEntriesRequest.new
|
786
|
+
# input.close
|
787
|
+
#
|
788
|
+
# # Handle streamed responses. These may be interleaved with inputs.
|
789
|
+
# # Each response is of type ::Google::Cloud::Logging::V2::TailLogEntriesResponse.
|
790
|
+
# output.each do |response|
|
791
|
+
# p response
|
792
|
+
# end
|
793
|
+
#
|
679
794
|
def tail_log_entries request, options = nil
|
680
795
|
unless request.is_a? ::Enumerable
|
681
796
|
raise ::ArgumentError, "request must be an Enumerable" unless request.respond_to? :to_enum
|
@@ -206,6 +206,27 @@ module Google
|
|
206
206
|
#
|
207
207
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
208
208
|
#
|
209
|
+
# @example Basic example
|
210
|
+
# require "google/cloud/logging/v2"
|
211
|
+
#
|
212
|
+
# # Create a client object. The client can be reused for multiple calls.
|
213
|
+
# client = Google::Cloud::Logging::V2::MetricsService::Client.new
|
214
|
+
#
|
215
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
216
|
+
# request = Google::Cloud::Logging::V2::ListLogMetricsRequest.new
|
217
|
+
#
|
218
|
+
# # Call the list_log_metrics method.
|
219
|
+
# result = client.list_log_metrics request
|
220
|
+
#
|
221
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can
|
222
|
+
# # iterate over all elements by calling #each, and the enumerable
|
223
|
+
# # will lazily make API calls to fetch subsequent pages. Other
|
224
|
+
# # methods are also available for managing paging directly.
|
225
|
+
# result.each do |response|
|
226
|
+
# # Each element is of type ::Google::Cloud::Logging::V2::LogMetric.
|
227
|
+
# p response
|
228
|
+
# end
|
229
|
+
#
|
209
230
|
def list_log_metrics request, options = nil
|
210
231
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
211
232
|
|
@@ -223,9 +244,11 @@ module Google
|
|
223
244
|
gapic_version: ::Google::Cloud::Logging::V2::VERSION
|
224
245
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
225
246
|
|
226
|
-
header_params = {
|
227
|
-
|
228
|
-
|
247
|
+
header_params = {}
|
248
|
+
if request.parent
|
249
|
+
header_params["parent"] = request.parent
|
250
|
+
end
|
251
|
+
|
229
252
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
230
253
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
231
254
|
|
@@ -277,6 +300,21 @@ module Google
|
|
277
300
|
#
|
278
301
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
279
302
|
#
|
303
|
+
# @example Basic example
|
304
|
+
# require "google/cloud/logging/v2"
|
305
|
+
#
|
306
|
+
# # Create a client object. The client can be reused for multiple calls.
|
307
|
+
# client = Google::Cloud::Logging::V2::MetricsService::Client.new
|
308
|
+
#
|
309
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
310
|
+
# request = Google::Cloud::Logging::V2::GetLogMetricRequest.new
|
311
|
+
#
|
312
|
+
# # Call the get_log_metric method.
|
313
|
+
# result = client.get_log_metric request
|
314
|
+
#
|
315
|
+
# # The returned object is of type Google::Cloud::Logging::V2::LogMetric.
|
316
|
+
# p result
|
317
|
+
#
|
280
318
|
def get_log_metric request, options = nil
|
281
319
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
282
320
|
|
@@ -294,9 +332,11 @@ module Google
|
|
294
332
|
gapic_version: ::Google::Cloud::Logging::V2::VERSION
|
295
333
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
296
334
|
|
297
|
-
header_params = {
|
298
|
-
|
299
|
-
|
335
|
+
header_params = {}
|
336
|
+
if request.metric_name
|
337
|
+
header_params["metric_name"] = request.metric_name
|
338
|
+
end
|
339
|
+
|
300
340
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
301
341
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
302
342
|
|
@@ -352,6 +392,21 @@ module Google
|
|
352
392
|
#
|
353
393
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
354
394
|
#
|
395
|
+
# @example Basic example
|
396
|
+
# require "google/cloud/logging/v2"
|
397
|
+
#
|
398
|
+
# # Create a client object. The client can be reused for multiple calls.
|
399
|
+
# client = Google::Cloud::Logging::V2::MetricsService::Client.new
|
400
|
+
#
|
401
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
402
|
+
# request = Google::Cloud::Logging::V2::CreateLogMetricRequest.new
|
403
|
+
#
|
404
|
+
# # Call the create_log_metric method.
|
405
|
+
# result = client.create_log_metric request
|
406
|
+
#
|
407
|
+
# # The returned object is of type Google::Cloud::Logging::V2::LogMetric.
|
408
|
+
# p result
|
409
|
+
#
|
355
410
|
def create_log_metric request, options = nil
|
356
411
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
357
412
|
|
@@ -369,9 +424,11 @@ module Google
|
|
369
424
|
gapic_version: ::Google::Cloud::Logging::V2::VERSION
|
370
425
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
371
426
|
|
372
|
-
header_params = {
|
373
|
-
|
374
|
-
|
427
|
+
header_params = {}
|
428
|
+
if request.parent
|
429
|
+
header_params["parent"] = request.parent
|
430
|
+
end
|
431
|
+
|
375
432
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
376
433
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
377
434
|
|
@@ -428,6 +485,21 @@ module Google
|
|
428
485
|
#
|
429
486
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
430
487
|
#
|
488
|
+
# @example Basic example
|
489
|
+
# require "google/cloud/logging/v2"
|
490
|
+
#
|
491
|
+
# # Create a client object. The client can be reused for multiple calls.
|
492
|
+
# client = Google::Cloud::Logging::V2::MetricsService::Client.new
|
493
|
+
#
|
494
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
495
|
+
# request = Google::Cloud::Logging::V2::UpdateLogMetricRequest.new
|
496
|
+
#
|
497
|
+
# # Call the update_log_metric method.
|
498
|
+
# result = client.update_log_metric request
|
499
|
+
#
|
500
|
+
# # The returned object is of type Google::Cloud::Logging::V2::LogMetric.
|
501
|
+
# p result
|
502
|
+
#
|
431
503
|
def update_log_metric request, options = nil
|
432
504
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
433
505
|
|
@@ -445,9 +517,11 @@ module Google
|
|
445
517
|
gapic_version: ::Google::Cloud::Logging::V2::VERSION
|
446
518
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
447
519
|
|
448
|
-
header_params = {
|
449
|
-
|
450
|
-
|
520
|
+
header_params = {}
|
521
|
+
if request.metric_name
|
522
|
+
header_params["metric_name"] = request.metric_name
|
523
|
+
end
|
524
|
+
|
451
525
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
452
526
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
453
527
|
|
@@ -498,6 +572,21 @@ module Google
|
|
498
572
|
#
|
499
573
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
500
574
|
#
|
575
|
+
# @example Basic example
|
576
|
+
# require "google/cloud/logging/v2"
|
577
|
+
#
|
578
|
+
# # Create a client object. The client can be reused for multiple calls.
|
579
|
+
# client = Google::Cloud::Logging::V2::MetricsService::Client.new
|
580
|
+
#
|
581
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
582
|
+
# request = Google::Cloud::Logging::V2::DeleteLogMetricRequest.new
|
583
|
+
#
|
584
|
+
# # Call the delete_log_metric method.
|
585
|
+
# result = client.delete_log_metric request
|
586
|
+
#
|
587
|
+
# # The returned object is of type Google::Protobuf::Empty.
|
588
|
+
# p result
|
589
|
+
#
|
501
590
|
def delete_log_metric request, options = nil
|
502
591
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
503
592
|
|
@@ -515,9 +604,11 @@ module Google
|
|
515
604
|
gapic_version: ::Google::Cloud::Logging::V2::VERSION
|
516
605
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
517
606
|
|
518
|
-
header_params = {
|
519
|
-
|
520
|
-
|
607
|
+
header_params = {}
|
608
|
+
if request.metric_name
|
609
|
+
header_params["metric_name"] = request.metric_name
|
610
|
+
end
|
611
|
+
|
521
612
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
522
613
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
523
614
|
|
@@ -1,8 +1,6 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/logging/v2/log_entry.proto
|
3
3
|
|
4
|
-
require 'google/protobuf'
|
5
|
-
|
6
4
|
require 'google/api/field_behavior_pb'
|
7
5
|
require 'google/api/monitored_resource_pb'
|
8
6
|
require 'google/api/resource_pb'
|
@@ -13,6 +11,8 @@ require 'google/protobuf/struct_pb'
|
|
13
11
|
require 'google/protobuf/timestamp_pb'
|
14
12
|
require 'google/rpc/status_pb'
|
15
13
|
require 'google/api/annotations_pb'
|
14
|
+
require 'google/protobuf'
|
15
|
+
|
16
16
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
17
17
|
add_file("google/logging/v2/log_entry.proto", :syntax => :proto3) do
|
18
18
|
add_message "google.logging.v2.LogEntry" do
|
@@ -1,8 +1,6 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/logging/v2/logging_config.proto
|
3
3
|
|
4
|
-
require 'google/protobuf'
|
5
|
-
|
6
4
|
require 'google/api/client_pb'
|
7
5
|
require 'google/api/field_behavior_pb'
|
8
6
|
require 'google/api/resource_pb'
|
@@ -11,6 +9,8 @@ require 'google/protobuf/empty_pb'
|
|
11
9
|
require 'google/protobuf/field_mask_pb'
|
12
10
|
require 'google/protobuf/timestamp_pb'
|
13
11
|
require 'google/api/annotations_pb'
|
12
|
+
require 'google/protobuf'
|
13
|
+
|
14
14
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
15
15
|
add_file("google/logging/v2/logging_config.proto", :syntax => :proto3) do
|
16
16
|
add_message "google.logging.v2.LogBucket" do
|
@@ -1,8 +1,6 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/logging/v2/logging_metrics.proto
|
3
3
|
|
4
|
-
require 'google/protobuf'
|
5
|
-
|
6
4
|
require 'google/api/client_pb'
|
7
5
|
require 'google/api/distribution_pb'
|
8
6
|
require 'google/api/field_behavior_pb'
|
@@ -13,6 +11,8 @@ require 'google/protobuf/empty_pb'
|
|
13
11
|
require 'google/protobuf/field_mask_pb'
|
14
12
|
require 'google/protobuf/timestamp_pb'
|
15
13
|
require 'google/api/annotations_pb'
|
14
|
+
require 'google/protobuf'
|
15
|
+
|
16
16
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
17
17
|
add_file("google/logging/v2/logging_metrics.proto", :syntax => :proto3) do
|
18
18
|
add_message "google.logging.v2.LogMetric" do
|
@@ -1,8 +1,6 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/logging/v2/logging.proto
|
3
3
|
|
4
|
-
require 'google/protobuf'
|
5
|
-
|
6
4
|
require 'google/api/client_pb'
|
7
5
|
require 'google/api/field_behavior_pb'
|
8
6
|
require 'google/api/monitored_resource_pb'
|
@@ -15,6 +13,8 @@ require 'google/protobuf/field_mask_pb'
|
|
15
13
|
require 'google/protobuf/timestamp_pb'
|
16
14
|
require 'google/rpc/status_pb'
|
17
15
|
require 'google/api/annotations_pb'
|
16
|
+
require 'google/protobuf'
|
17
|
+
|
18
18
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
19
19
|
add_file("google/logging/v2/logging.proto", :syntax => :proto3) do
|
20
20
|
add_message "google.logging.v2.DeleteLogRequest" do
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-logging-v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.5
|
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
|