google-cloud-monitoring 0.21.0 → 0.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.yardopts +8 -0
- data/LICENSE +201 -0
- data/README.md +2 -2
- data/lib/google-cloud-monitoring.rb +24 -0
- data/lib/google/cloud/monitoring/v3.rb +2 -2
- data/lib/google/cloud/monitoring/v3/doc/google/api/distribution.rb +172 -0
- data/lib/google/cloud/monitoring/v3/doc/google/api/label.rb +41 -0
- data/lib/google/cloud/monitoring/v3/doc/google/api/metric.rb +187 -0
- data/lib/google/cloud/monitoring/v3/doc/google/api/monitored_resource.rb +81 -0
- data/lib/google/cloud/monitoring/v3/doc/google/monitoring/v3/common.rb +322 -0
- data/lib/google/cloud/monitoring/v3/doc/google/monitoring/v3/group.rb +69 -0
- data/lib/google/cloud/monitoring/v3/doc/google/monitoring/v3/metric.rb +78 -0
- data/lib/google/cloud/monitoring/v3/doc/google/protobuf/duration.rb +71 -0
- data/lib/google/cloud/monitoring/v3/doc/google/protobuf/timestamp.rb +83 -0
- data/lib/google/cloud/monitoring/v3/{group_service_api.rb → group_service_client.rb} +63 -57
- data/lib/google/cloud/monitoring/v3/{metric_service_api.rb → metric_service_client.rb} +77 -70
- metadata +37 -39
- data/Rakefile +0 -70
@@ -37,7 +37,7 @@ module Google
|
|
37
37
|
#
|
38
38
|
# @!attribute [r] metric_service_stub
|
39
39
|
# @return [Google::Monitoring::V3::MetricService::Stub]
|
40
|
-
class
|
40
|
+
class MetricServiceClient
|
41
41
|
attr_reader :metric_service_stub
|
42
42
|
|
43
43
|
# The default address of the service.
|
@@ -70,6 +70,10 @@ module Google
|
|
70
70
|
# The scopes needed to make gRPC calls to all of the methods defined in
|
71
71
|
# this service.
|
72
72
|
ALL_SCOPES = [
|
73
|
+
"https://www.googleapis.com/auth/cloud-platform",
|
74
|
+
"https://www.googleapis.com/auth/monitoring",
|
75
|
+
"https://www.googleapis.com/auth/monitoring.read",
|
76
|
+
"https://www.googleapis.com/auth/monitoring.write"
|
73
77
|
].freeze
|
74
78
|
|
75
79
|
PROJECT_PATH_TEMPLATE = Google::Gax::PathTemplate.new(
|
@@ -191,6 +195,7 @@ module Google
|
|
191
195
|
require "google/gax/grpc"
|
192
196
|
require "google/monitoring/v3/metric_service_services_pb"
|
193
197
|
|
198
|
+
|
194
199
|
google_api_client = "#{app_name}/#{app_version} " \
|
195
200
|
"#{CODE_GEN_NAME_VERSION} gax/#{Google::Gax::VERSION} " \
|
196
201
|
"ruby/#{RUBY_VERSION}".freeze
|
@@ -284,20 +289,20 @@ module Google
|
|
284
289
|
# object.
|
285
290
|
# @raise [Google::Gax::GaxError] if the RPC is aborted.
|
286
291
|
# @example
|
287
|
-
# require "google/cloud/monitoring/v3/
|
292
|
+
# require "google/cloud/monitoring/v3/metric_service_client"
|
288
293
|
#
|
289
|
-
#
|
294
|
+
# MetricServiceClient = Google::Cloud::Monitoring::V3::MetricServiceClient
|
290
295
|
#
|
291
|
-
#
|
292
|
-
# formatted_name =
|
296
|
+
# metric_service_client = MetricServiceClient.new
|
297
|
+
# formatted_name = MetricServiceClient.project_path("[PROJECT]")
|
293
298
|
#
|
294
299
|
# # Iterate over all results.
|
295
|
-
#
|
300
|
+
# metric_service_client.list_monitored_resource_descriptors(formatted_name).each do |element|
|
296
301
|
# # Process element.
|
297
302
|
# end
|
298
303
|
#
|
299
304
|
# # Or iterate over results one page at a time.
|
300
|
-
#
|
305
|
+
# metric_service_client.list_monitored_resource_descriptors(formatted_name).each_page do |page|
|
301
306
|
# # Process each page at a time.
|
302
307
|
# page.each do |element|
|
303
308
|
# # Process element.
|
@@ -309,11 +314,11 @@ module Google
|
|
309
314
|
filter: nil,
|
310
315
|
page_size: nil,
|
311
316
|
options: nil
|
312
|
-
req = Google::Monitoring::V3::ListMonitoredResourceDescriptorsRequest.new(
|
313
|
-
name: name
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
+
req = Google::Monitoring::V3::ListMonitoredResourceDescriptorsRequest.new({
|
318
|
+
name: name,
|
319
|
+
filter: filter,
|
320
|
+
page_size: page_size
|
321
|
+
}.delete_if { |_, v| v.nil? })
|
317
322
|
@list_monitored_resource_descriptors.call(req, options)
|
318
323
|
end
|
319
324
|
|
@@ -330,20 +335,20 @@ module Google
|
|
330
335
|
# @return [Google::Api::MonitoredResourceDescriptor]
|
331
336
|
# @raise [Google::Gax::GaxError] if the RPC is aborted.
|
332
337
|
# @example
|
333
|
-
# require "google/cloud/monitoring/v3/
|
338
|
+
# require "google/cloud/monitoring/v3/metric_service_client"
|
334
339
|
#
|
335
|
-
#
|
340
|
+
# MetricServiceClient = Google::Cloud::Monitoring::V3::MetricServiceClient
|
336
341
|
#
|
337
|
-
#
|
338
|
-
# formatted_name =
|
339
|
-
# response =
|
342
|
+
# metric_service_client = MetricServiceClient.new
|
343
|
+
# formatted_name = MetricServiceClient.monitored_resource_descriptor_path("[PROJECT]", "[MONITORED_RESOURCE_DESCRIPTOR]")
|
344
|
+
# response = metric_service_client.get_monitored_resource_descriptor(formatted_name)
|
340
345
|
|
341
346
|
def get_monitored_resource_descriptor \
|
342
347
|
name,
|
343
348
|
options: nil
|
344
|
-
req = Google::Monitoring::V3::GetMonitoredResourceDescriptorRequest.new(
|
349
|
+
req = Google::Monitoring::V3::GetMonitoredResourceDescriptorRequest.new({
|
345
350
|
name: name
|
346
|
-
)
|
351
|
+
}.delete_if { |_, v| v.nil? })
|
347
352
|
@get_monitored_resource_descriptor.call(req, options)
|
348
353
|
end
|
349
354
|
|
@@ -377,20 +382,20 @@ module Google
|
|
377
382
|
# object.
|
378
383
|
# @raise [Google::Gax::GaxError] if the RPC is aborted.
|
379
384
|
# @example
|
380
|
-
# require "google/cloud/monitoring/v3/
|
385
|
+
# require "google/cloud/monitoring/v3/metric_service_client"
|
381
386
|
#
|
382
|
-
#
|
387
|
+
# MetricServiceClient = Google::Cloud::Monitoring::V3::MetricServiceClient
|
383
388
|
#
|
384
|
-
#
|
385
|
-
# formatted_name =
|
389
|
+
# metric_service_client = MetricServiceClient.new
|
390
|
+
# formatted_name = MetricServiceClient.project_path("[PROJECT]")
|
386
391
|
#
|
387
392
|
# # Iterate over all results.
|
388
|
-
#
|
393
|
+
# metric_service_client.list_metric_descriptors(formatted_name).each do |element|
|
389
394
|
# # Process element.
|
390
395
|
# end
|
391
396
|
#
|
392
397
|
# # Or iterate over results one page at a time.
|
393
|
-
#
|
398
|
+
# metric_service_client.list_metric_descriptors(formatted_name).each_page do |page|
|
394
399
|
# # Process each page at a time.
|
395
400
|
# page.each do |element|
|
396
401
|
# # Process element.
|
@@ -402,11 +407,11 @@ module Google
|
|
402
407
|
filter: nil,
|
403
408
|
page_size: nil,
|
404
409
|
options: nil
|
405
|
-
req = Google::Monitoring::V3::ListMetricDescriptorsRequest.new(
|
406
|
-
name: name
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
+
req = Google::Monitoring::V3::ListMetricDescriptorsRequest.new({
|
411
|
+
name: name,
|
412
|
+
filter: filter,
|
413
|
+
page_size: page_size
|
414
|
+
}.delete_if { |_, v| v.nil? })
|
410
415
|
@list_metric_descriptors.call(req, options)
|
411
416
|
end
|
412
417
|
|
@@ -423,20 +428,20 @@ module Google
|
|
423
428
|
# @return [Google::Api::MetricDescriptor]
|
424
429
|
# @raise [Google::Gax::GaxError] if the RPC is aborted.
|
425
430
|
# @example
|
426
|
-
# require "google/cloud/monitoring/v3/
|
431
|
+
# require "google/cloud/monitoring/v3/metric_service_client"
|
427
432
|
#
|
428
|
-
#
|
433
|
+
# MetricServiceClient = Google::Cloud::Monitoring::V3::MetricServiceClient
|
429
434
|
#
|
430
|
-
#
|
431
|
-
# formatted_name =
|
432
|
-
# response =
|
435
|
+
# metric_service_client = MetricServiceClient.new
|
436
|
+
# formatted_name = MetricServiceClient.metric_descriptor_path("[PROJECT]", "[METRIC_DESCRIPTOR]")
|
437
|
+
# response = metric_service_client.get_metric_descriptor(formatted_name)
|
433
438
|
|
434
439
|
def get_metric_descriptor \
|
435
440
|
name,
|
436
441
|
options: nil
|
437
|
-
req = Google::Monitoring::V3::GetMetricDescriptorRequest.new(
|
442
|
+
req = Google::Monitoring::V3::GetMetricDescriptorRequest.new({
|
438
443
|
name: name
|
439
|
-
)
|
444
|
+
}.delete_if { |_, v| v.nil? })
|
440
445
|
@get_metric_descriptor.call(req, options)
|
441
446
|
end
|
442
447
|
|
@@ -456,24 +461,24 @@ module Google
|
|
456
461
|
# @return [Google::Api::MetricDescriptor]
|
457
462
|
# @raise [Google::Gax::GaxError] if the RPC is aborted.
|
458
463
|
# @example
|
459
|
-
# require "google/cloud/monitoring/v3/
|
464
|
+
# require "google/cloud/monitoring/v3/metric_service_client"
|
460
465
|
#
|
461
466
|
# MetricDescriptor = Google::Api::MetricDescriptor
|
462
|
-
#
|
467
|
+
# MetricServiceClient = Google::Cloud::Monitoring::V3::MetricServiceClient
|
463
468
|
#
|
464
|
-
#
|
465
|
-
# formatted_name =
|
469
|
+
# metric_service_client = MetricServiceClient.new
|
470
|
+
# formatted_name = MetricServiceClient.project_path("[PROJECT]")
|
466
471
|
# metric_descriptor = MetricDescriptor.new
|
467
|
-
# response =
|
472
|
+
# response = metric_service_client.create_metric_descriptor(formatted_name, metric_descriptor)
|
468
473
|
|
469
474
|
def create_metric_descriptor \
|
470
475
|
name,
|
471
476
|
metric_descriptor,
|
472
477
|
options: nil
|
473
|
-
req = Google::Monitoring::V3::CreateMetricDescriptorRequest.new(
|
478
|
+
req = Google::Monitoring::V3::CreateMetricDescriptorRequest.new({
|
474
479
|
name: name,
|
475
480
|
metric_descriptor: metric_descriptor
|
476
|
-
)
|
481
|
+
}.delete_if { |_, v| v.nil? })
|
477
482
|
@create_metric_descriptor.call(req, options)
|
478
483
|
end
|
479
484
|
|
@@ -490,21 +495,22 @@ module Google
|
|
490
495
|
# retries, etc.
|
491
496
|
# @raise [Google::Gax::GaxError] if the RPC is aborted.
|
492
497
|
# @example
|
493
|
-
# require "google/cloud/monitoring/v3/
|
498
|
+
# require "google/cloud/monitoring/v3/metric_service_client"
|
494
499
|
#
|
495
|
-
#
|
500
|
+
# MetricServiceClient = Google::Cloud::Monitoring::V3::MetricServiceClient
|
496
501
|
#
|
497
|
-
#
|
498
|
-
# formatted_name =
|
499
|
-
#
|
502
|
+
# metric_service_client = MetricServiceClient.new
|
503
|
+
# formatted_name = MetricServiceClient.metric_descriptor_path("[PROJECT]", "[METRIC_DESCRIPTOR]")
|
504
|
+
# metric_service_client.delete_metric_descriptor(formatted_name)
|
500
505
|
|
501
506
|
def delete_metric_descriptor \
|
502
507
|
name,
|
503
508
|
options: nil
|
504
|
-
req = Google::Monitoring::V3::DeleteMetricDescriptorRequest.new(
|
509
|
+
req = Google::Monitoring::V3::DeleteMetricDescriptorRequest.new({
|
505
510
|
name: name
|
506
|
-
)
|
511
|
+
}.delete_if { |_, v| v.nil? })
|
507
512
|
@delete_metric_descriptor.call(req, options)
|
513
|
+
nil
|
508
514
|
end
|
509
515
|
|
510
516
|
# Lists time series that match a filter. This method does not require a Stackdriver account.
|
@@ -550,25 +556,25 @@ module Google
|
|
550
556
|
# object.
|
551
557
|
# @raise [Google::Gax::GaxError] if the RPC is aborted.
|
552
558
|
# @example
|
553
|
-
# require "google/cloud/monitoring/v3/
|
559
|
+
# require "google/cloud/monitoring/v3/metric_service_client"
|
554
560
|
#
|
555
|
-
#
|
561
|
+
# MetricServiceClient = Google::Cloud::Monitoring::V3::MetricServiceClient
|
556
562
|
# TimeInterval = Google::Monitoring::V3::TimeInterval
|
557
563
|
# TimeSeriesView = Google::Monitoring::V3::ListTimeSeriesRequest::TimeSeriesView
|
558
564
|
#
|
559
|
-
#
|
560
|
-
# formatted_name =
|
565
|
+
# metric_service_client = MetricServiceClient.new
|
566
|
+
# formatted_name = MetricServiceClient.project_path("[PROJECT]")
|
561
567
|
# filter = ''
|
562
568
|
# interval = TimeInterval.new
|
563
569
|
# view = TimeSeriesView::FULL
|
564
570
|
#
|
565
571
|
# # Iterate over all results.
|
566
|
-
#
|
572
|
+
# metric_service_client.list_time_series(formatted_name, filter, interval, view).each do |element|
|
567
573
|
# # Process element.
|
568
574
|
# end
|
569
575
|
#
|
570
576
|
# # Or iterate over results one page at a time.
|
571
|
-
#
|
577
|
+
# metric_service_client.list_time_series(formatted_name, filter, interval, view).each_page do |page|
|
572
578
|
# # Process each page at a time.
|
573
579
|
# page.each do |element|
|
574
580
|
# # Process element.
|
@@ -584,15 +590,15 @@ module Google
|
|
584
590
|
order_by: nil,
|
585
591
|
page_size: nil,
|
586
592
|
options: nil
|
587
|
-
req = Google::Monitoring::V3::ListTimeSeriesRequest.new(
|
593
|
+
req = Google::Monitoring::V3::ListTimeSeriesRequest.new({
|
588
594
|
name: name,
|
589
595
|
filter: filter,
|
590
596
|
interval: interval,
|
591
|
-
view: view
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
597
|
+
view: view,
|
598
|
+
aggregation: aggregation,
|
599
|
+
order_by: order_by,
|
600
|
+
page_size: page_size
|
601
|
+
}.delete_if { |_, v| v.nil? })
|
596
602
|
@list_time_series.call(req, options)
|
597
603
|
end
|
598
604
|
|
@@ -615,24 +621,25 @@ module Google
|
|
615
621
|
# retries, etc.
|
616
622
|
# @raise [Google::Gax::GaxError] if the RPC is aborted.
|
617
623
|
# @example
|
618
|
-
# require "google/cloud/monitoring/v3/
|
624
|
+
# require "google/cloud/monitoring/v3/metric_service_client"
|
619
625
|
#
|
620
|
-
#
|
626
|
+
# MetricServiceClient = Google::Cloud::Monitoring::V3::MetricServiceClient
|
621
627
|
#
|
622
|
-
#
|
623
|
-
# formatted_name =
|
628
|
+
# metric_service_client = MetricServiceClient.new
|
629
|
+
# formatted_name = MetricServiceClient.project_path("[PROJECT]")
|
624
630
|
# time_series = []
|
625
|
-
#
|
631
|
+
# metric_service_client.create_time_series(formatted_name, time_series)
|
626
632
|
|
627
633
|
def create_time_series \
|
628
634
|
name,
|
629
635
|
time_series,
|
630
636
|
options: nil
|
631
|
-
req = Google::Monitoring::V3::CreateTimeSeriesRequest.new(
|
637
|
+
req = Google::Monitoring::V3::CreateTimeSeriesRequest.new({
|
632
638
|
name: name,
|
633
639
|
time_series: time_series
|
634
|
-
)
|
640
|
+
}.delete_if { |_, v| v.nil? })
|
635
641
|
@create_time_series.call(req, options)
|
642
|
+
nil
|
636
643
|
end
|
637
644
|
end
|
638
645
|
end
|
metadata
CHANGED
@@ -1,29 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-monitoring
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.22.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google Inc
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-01-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: google-gax
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - "~>"
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: 0.6.0
|
20
|
-
type: :runtime
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - "~>"
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: 0.6.0
|
27
13
|
- !ruby/object:Gem::Dependency
|
28
14
|
name: grpc
|
29
15
|
requirement: !ruby/object:Gem::Requirement
|
@@ -39,73 +25,85 @@ dependencies:
|
|
39
25
|
- !ruby/object:Gem::Version
|
40
26
|
version: '1.0'
|
41
27
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
28
|
+
name: google-gax
|
43
29
|
requirement: !ruby/object:Gem::Requirement
|
44
30
|
requirements:
|
45
31
|
- - "~>"
|
46
32
|
- !ruby/object:Gem::Version
|
47
|
-
version: 0.
|
33
|
+
version: 0.6.0
|
48
34
|
type: :runtime
|
49
35
|
prerelease: false
|
50
36
|
version_requirements: !ruby/object:Gem::Requirement
|
51
37
|
requirements:
|
52
38
|
- - "~>"
|
53
39
|
- !ruby/object:Gem::Version
|
54
|
-
version: 0.
|
40
|
+
version: 0.6.0
|
55
41
|
- !ruby/object:Gem::Dependency
|
56
|
-
name:
|
42
|
+
name: google-protobuf
|
57
43
|
requirement: !ruby/object:Gem::Requirement
|
58
44
|
requirements:
|
59
45
|
- - "~>"
|
60
46
|
- !ruby/object:Gem::Version
|
61
|
-
version:
|
47
|
+
version: '3.0'
|
62
48
|
type: :runtime
|
63
49
|
prerelease: false
|
64
50
|
version_requirements: !ruby/object:Gem::Requirement
|
65
51
|
requirements:
|
66
52
|
- - "~>"
|
67
53
|
- !ruby/object:Gem::Version
|
68
|
-
version:
|
54
|
+
version: '3.0'
|
69
55
|
- !ruby/object:Gem::Dependency
|
70
|
-
name:
|
56
|
+
name: googleapis-common-protos
|
71
57
|
requirement: !ruby/object:Gem::Requirement
|
72
58
|
requirements:
|
73
59
|
- - "~>"
|
74
60
|
- !ruby/object:Gem::Version
|
75
|
-
version: '1.
|
76
|
-
type: :
|
61
|
+
version: '1.3'
|
62
|
+
type: :runtime
|
77
63
|
prerelease: false
|
78
64
|
version_requirements: !ruby/object:Gem::Requirement
|
79
65
|
requirements:
|
80
66
|
- - "~>"
|
81
67
|
- !ruby/object:Gem::Version
|
82
|
-
version: '1.
|
68
|
+
version: '1.3'
|
83
69
|
- !ruby/object:Gem::Dependency
|
84
|
-
name:
|
70
|
+
name: rubocop
|
85
71
|
requirement: !ruby/object:Gem::Requirement
|
86
72
|
requirements:
|
87
|
-
- - "
|
73
|
+
- - "<="
|
88
74
|
- !ruby/object:Gem::Version
|
89
|
-
version:
|
75
|
+
version: 0.35.1
|
90
76
|
type: :development
|
91
77
|
prerelease: false
|
92
78
|
version_requirements: !ruby/object:Gem::Requirement
|
93
79
|
requirements:
|
94
|
-
- - "
|
80
|
+
- - "<="
|
95
81
|
- !ruby/object:Gem::Version
|
96
|
-
version:
|
97
|
-
description:
|
98
|
-
email:
|
82
|
+
version: 0.35.1
|
83
|
+
description: google-cloud-monitoring is the official library for Stackdriver Monitoring.
|
84
|
+
email:
|
85
|
+
- googleapis-packages@google.com
|
99
86
|
executables: []
|
100
87
|
extensions: []
|
101
88
|
extra_rdoc_files: []
|
102
89
|
files:
|
90
|
+
- ".yardopts"
|
91
|
+
- LICENSE
|
103
92
|
- README.md
|
104
|
-
-
|
93
|
+
- lib/google-cloud-monitoring.rb
|
105
94
|
- lib/google/cloud/monitoring/v3.rb
|
106
|
-
- lib/google/cloud/monitoring/v3/
|
95
|
+
- lib/google/cloud/monitoring/v3/doc/google/api/distribution.rb
|
96
|
+
- lib/google/cloud/monitoring/v3/doc/google/api/label.rb
|
97
|
+
- lib/google/cloud/monitoring/v3/doc/google/api/metric.rb
|
98
|
+
- lib/google/cloud/monitoring/v3/doc/google/api/monitored_resource.rb
|
99
|
+
- lib/google/cloud/monitoring/v3/doc/google/monitoring/v3/common.rb
|
100
|
+
- lib/google/cloud/monitoring/v3/doc/google/monitoring/v3/group.rb
|
101
|
+
- lib/google/cloud/monitoring/v3/doc/google/monitoring/v3/metric.rb
|
102
|
+
- lib/google/cloud/monitoring/v3/doc/google/protobuf/duration.rb
|
103
|
+
- lib/google/cloud/monitoring/v3/doc/google/protobuf/timestamp.rb
|
104
|
+
- lib/google/cloud/monitoring/v3/group_service_client.rb
|
107
105
|
- lib/google/cloud/monitoring/v3/group_service_client_config.json
|
108
|
-
- lib/google/cloud/monitoring/v3/
|
106
|
+
- lib/google/cloud/monitoring/v3/metric_service_client.rb
|
109
107
|
- lib/google/cloud/monitoring/v3/metric_service_client_config.json
|
110
108
|
- lib/google/monitoring/v3/common_pb.rb
|
111
109
|
- lib/google/monitoring/v3/group_pb.rb
|
@@ -114,7 +112,7 @@ files:
|
|
114
112
|
- lib/google/monitoring/v3/metric_pb.rb
|
115
113
|
- lib/google/monitoring/v3/metric_service_pb.rb
|
116
114
|
- lib/google/monitoring/v3/metric_service_services_pb.rb
|
117
|
-
homepage:
|
115
|
+
homepage: http://googlecloudplatform.github.io/google-cloud-ruby/
|
118
116
|
licenses:
|
119
117
|
- Apache-2.0
|
120
118
|
metadata: {}
|
@@ -134,8 +132,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
134
132
|
version: '0'
|
135
133
|
requirements: []
|
136
134
|
rubyforge_project:
|
137
|
-
rubygems_version: 2.6.
|
135
|
+
rubygems_version: 2.6.10
|
138
136
|
signing_key:
|
139
137
|
specification_version: 4
|
140
|
-
summary:
|
138
|
+
summary: API Cient library for Stackdriver Monitoring
|
141
139
|
test_files: []
|