google-cloud-monitoring 0.27.0 → 0.28.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/README.md +17 -5
- data/lib/google/cloud/monitoring.rb +164 -6
- data/lib/google/cloud/monitoring/credentials.rb +1 -1
- data/lib/google/cloud/monitoring/v3.rb +167 -26
- data/lib/google/cloud/monitoring/v3/alert_policy_service_client.rb +486 -0
- data/lib/google/cloud/monitoring/v3/alert_policy_service_client_config.json +51 -0
- data/lib/google/cloud/monitoring/v3/doc/google/api/distribution.rb +1 -1
- data/lib/google/cloud/monitoring/v3/doc/google/api/label.rb +1 -1
- data/lib/google/cloud/monitoring/v3/doc/google/api/metric.rb +1 -1
- data/lib/google/cloud/monitoring/v3/doc/google/api/monitored_resource.rb +1 -1
- data/lib/google/cloud/monitoring/v3/doc/google/monitoring/v3/alert.rb +326 -0
- data/lib/google/cloud/monitoring/v3/doc/google/monitoring/v3/common.rb +91 -3
- data/lib/google/cloud/monitoring/v3/doc/google/monitoring/v3/group.rb +1 -1
- data/lib/google/cloud/monitoring/v3/doc/google/monitoring/v3/metric.rb +1 -1
- data/lib/google/cloud/monitoring/v3/doc/google/monitoring/v3/mutation_record.rb +28 -0
- data/lib/google/cloud/monitoring/v3/doc/google/monitoring/v3/notification.rb +152 -0
- data/lib/google/cloud/monitoring/v3/doc/google/monitoring/v3/uptime.rb +223 -0
- data/lib/google/cloud/monitoring/v3/doc/google/protobuf/duration.rb +1 -1
- data/lib/google/cloud/monitoring/v3/doc/google/protobuf/field_mask.rb +223 -0
- data/lib/google/cloud/monitoring/v3/doc/google/protobuf/timestamp.rb +1 -1
- data/lib/google/cloud/monitoring/v3/doc/google/protobuf/wrappers.rb +89 -0
- data/lib/google/cloud/monitoring/v3/doc/overview.rb +8 -7
- data/lib/google/cloud/monitoring/v3/group_service_client.rb +13 -21
- data/lib/google/cloud/monitoring/v3/metric_service_client.rb +19 -21
- data/lib/google/cloud/monitoring/v3/notification_channel_service_client.rb +557 -0
- data/lib/google/cloud/monitoring/v3/notification_channel_service_client_config.json +61 -0
- data/lib/google/cloud/monitoring/v3/uptime_check_service_client.rb +476 -0
- data/lib/google/cloud/monitoring/v3/uptime_check_service_client_config.json +56 -0
- data/lib/google/monitoring/v3/alert_pb.rb +78 -0
- data/lib/google/monitoring/v3/alert_service_pb.rb +49 -0
- data/lib/google/monitoring/v3/alert_service_services_pb.rb +62 -0
- data/lib/google/monitoring/v3/common_pb.rb +20 -0
- data/lib/google/monitoring/v3/group_service_services_pb.rb +1 -1
- data/lib/google/monitoring/v3/metric_service_services_pb.rb +1 -1
- data/lib/google/monitoring/v3/mutation_record_pb.rb +20 -0
- data/lib/google/monitoring/v3/notification_pb.rb +44 -0
- data/lib/google/monitoring/v3/notification_service_pb.rb +85 -0
- data/lib/google/monitoring/v3/notification_service_services_pb.rb +93 -0
- data/lib/google/monitoring/v3/uptime_pb.rb +89 -0
- data/lib/google/monitoring/v3/uptime_service_pb.rb +57 -0
- data/lib/google/monitoring/v3/uptime_service_services_pb.rb +66 -0
- metadata +31 -9
@@ -0,0 +1,93 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# Source: google/monitoring/v3/notification_service.proto for package 'google.monitoring.v3'
|
3
|
+
# Original file comments:
|
4
|
+
# Copyright 2018 Google Inc.
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
|
19
|
+
require 'grpc'
|
20
|
+
require 'google/monitoring/v3/notification_service_pb'
|
21
|
+
|
22
|
+
module Google
|
23
|
+
module Monitoring
|
24
|
+
module V3
|
25
|
+
module NotificationChannelService
|
26
|
+
# The Notification Channel API provides access to configuration that
|
27
|
+
# controls how messages related to incidents are sent.
|
28
|
+
class Service
|
29
|
+
|
30
|
+
include GRPC::GenericService
|
31
|
+
|
32
|
+
self.marshal_class_method = :encode
|
33
|
+
self.unmarshal_class_method = :decode
|
34
|
+
self.service_name = 'google.monitoring.v3.NotificationChannelService'
|
35
|
+
|
36
|
+
# Lists the descriptors for supported channel types. The use of descriptors
|
37
|
+
# makes it possible for new channel types to be dynamically added.
|
38
|
+
rpc :ListNotificationChannelDescriptors, ListNotificationChannelDescriptorsRequest, ListNotificationChannelDescriptorsResponse
|
39
|
+
# Gets a single channel descriptor. The descriptor indicates which fields
|
40
|
+
# are expected / permitted for a notification channel of the given type.
|
41
|
+
rpc :GetNotificationChannelDescriptor, GetNotificationChannelDescriptorRequest, NotificationChannelDescriptor
|
42
|
+
# Lists the notification channels that have been created for the project.
|
43
|
+
rpc :ListNotificationChannels, ListNotificationChannelsRequest, ListNotificationChannelsResponse
|
44
|
+
# Gets a single notification channel. The channel includes the relevant
|
45
|
+
# configuration details with which the channel was created. However, the
|
46
|
+
# response may truncate or omit passwords, API keys, or other private key
|
47
|
+
# matter and thus the response may not be 100% identical to the information
|
48
|
+
# that was supplied in the call to the create method.
|
49
|
+
rpc :GetNotificationChannel, GetNotificationChannelRequest, NotificationChannel
|
50
|
+
# Creates a new notification channel, representing a single notification
|
51
|
+
# endpoint such as an email address, SMS number, or pagerduty service.
|
52
|
+
rpc :CreateNotificationChannel, CreateNotificationChannelRequest, NotificationChannel
|
53
|
+
# Updates a notification channel. Fields not specified in the field mask
|
54
|
+
# remain unchanged.
|
55
|
+
rpc :UpdateNotificationChannel, UpdateNotificationChannelRequest, NotificationChannel
|
56
|
+
# Deletes a notification channel.
|
57
|
+
rpc :DeleteNotificationChannel, DeleteNotificationChannelRequest, Google::Protobuf::Empty
|
58
|
+
# Causes a verification code to be delivered to the channel. The code
|
59
|
+
# can then be supplied in `VerifyNotificationChannel` to verify the channel.
|
60
|
+
rpc :SendNotificationChannelVerificationCode, SendNotificationChannelVerificationCodeRequest, Google::Protobuf::Empty
|
61
|
+
# Requests a verification code for an already verified channel that can then
|
62
|
+
# be used in a call to VerifyNotificationChannel() on a different channel
|
63
|
+
# with an equivalent identity in the same or in a different project. This
|
64
|
+
# makes it possible to copy a channel between projects without requiring
|
65
|
+
# manual reverification of the channel. If the channel is not in the
|
66
|
+
# verified state, this method will fail (in other words, this may only be
|
67
|
+
# used if the SendNotificationChannelVerificationCode and
|
68
|
+
# VerifyNotificationChannel paths have already been used to put the given
|
69
|
+
# channel into the verified state).
|
70
|
+
#
|
71
|
+
# There is no guarantee that the verification codes returned by this method
|
72
|
+
# will be of a similar structure or form as the ones that are delivered
|
73
|
+
# to the channel via SendNotificationChannelVerificationCode; while
|
74
|
+
# VerifyNotificationChannel() will recognize both the codes delivered via
|
75
|
+
# SendNotificationChannelVerificationCode() and returned from
|
76
|
+
# GetNotificationChannelVerificationCode(), it is typically the case that
|
77
|
+
# the verification codes delivered via
|
78
|
+
# SendNotificationChannelVerificationCode() will be shorter and also
|
79
|
+
# have a shorter expiration (e.g. codes such as "G-123456") whereas
|
80
|
+
# GetVerificationCode() will typically return a much longer, websafe base
|
81
|
+
# 64 encoded string that has a longer expiration time.
|
82
|
+
rpc :GetNotificationChannelVerificationCode, GetNotificationChannelVerificationCodeRequest, GetNotificationChannelVerificationCodeResponse
|
83
|
+
# Verifies a `NotificationChannel` by proving receipt of the code
|
84
|
+
# delivered to the channel as a result of calling
|
85
|
+
# `SendNotificationChannelVerificationCode`.
|
86
|
+
rpc :VerifyNotificationChannel, VerifyNotificationChannelRequest, NotificationChannel
|
87
|
+
end
|
88
|
+
|
89
|
+
Stub = Service.rpc_stub_class
|
90
|
+
end
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|
@@ -0,0 +1,89 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: google/monitoring/v3/uptime.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
require 'google/api/monitored_resource_pb'
|
7
|
+
require 'google/protobuf/duration_pb'
|
8
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
|
+
add_message "google.monitoring.v3.UptimeCheckConfig" do
|
10
|
+
optional :name, :string, 1
|
11
|
+
optional :display_name, :string, 2
|
12
|
+
optional :period, :message, 7, "google.protobuf.Duration"
|
13
|
+
optional :timeout, :message, 8, "google.protobuf.Duration"
|
14
|
+
repeated :content_matchers, :message, 9, "google.monitoring.v3.UptimeCheckConfig.ContentMatcher"
|
15
|
+
repeated :selected_regions, :enum, 10, "google.monitoring.v3.UptimeCheckRegion"
|
16
|
+
repeated :internal_checkers, :message, 14, "google.monitoring.v3.UptimeCheckConfig.InternalChecker"
|
17
|
+
oneof :resource do
|
18
|
+
optional :monitored_resource, :message, 3, "google.api.MonitoredResource"
|
19
|
+
optional :resource_group, :message, 4, "google.monitoring.v3.UptimeCheckConfig.ResourceGroup"
|
20
|
+
end
|
21
|
+
oneof :check_request_type do
|
22
|
+
optional :http_check, :message, 5, "google.monitoring.v3.UptimeCheckConfig.HttpCheck"
|
23
|
+
optional :tcp_check, :message, 6, "google.monitoring.v3.UptimeCheckConfig.TcpCheck"
|
24
|
+
end
|
25
|
+
end
|
26
|
+
add_message "google.monitoring.v3.UptimeCheckConfig.ResourceGroup" do
|
27
|
+
optional :group_id, :string, 1
|
28
|
+
optional :resource_type, :enum, 2, "google.monitoring.v3.GroupResourceType"
|
29
|
+
end
|
30
|
+
add_message "google.monitoring.v3.UptimeCheckConfig.HttpCheck" do
|
31
|
+
optional :use_ssl, :bool, 1
|
32
|
+
optional :path, :string, 2
|
33
|
+
optional :port, :int32, 3
|
34
|
+
optional :auth_info, :message, 4, "google.monitoring.v3.UptimeCheckConfig.HttpCheck.BasicAuthentication"
|
35
|
+
optional :mask_headers, :bool, 5
|
36
|
+
map :headers, :string, :string, 6
|
37
|
+
end
|
38
|
+
add_message "google.monitoring.v3.UptimeCheckConfig.HttpCheck.BasicAuthentication" do
|
39
|
+
optional :username, :string, 1
|
40
|
+
optional :password, :string, 2
|
41
|
+
end
|
42
|
+
add_message "google.monitoring.v3.UptimeCheckConfig.TcpCheck" do
|
43
|
+
optional :port, :int32, 1
|
44
|
+
end
|
45
|
+
add_message "google.monitoring.v3.UptimeCheckConfig.ContentMatcher" do
|
46
|
+
optional :content, :string, 1
|
47
|
+
end
|
48
|
+
add_message "google.monitoring.v3.UptimeCheckConfig.InternalChecker" do
|
49
|
+
optional :project_id, :string, 1
|
50
|
+
optional :network, :string, 2
|
51
|
+
optional :gcp_zone, :string, 3
|
52
|
+
optional :checker_id, :string, 4
|
53
|
+
optional :display_name, :string, 5
|
54
|
+
end
|
55
|
+
add_message "google.monitoring.v3.UptimeCheckIp" do
|
56
|
+
optional :region, :enum, 1, "google.monitoring.v3.UptimeCheckRegion"
|
57
|
+
optional :location, :string, 2
|
58
|
+
optional :ip_address, :string, 3
|
59
|
+
end
|
60
|
+
add_enum "google.monitoring.v3.UptimeCheckRegion" do
|
61
|
+
value :REGION_UNSPECIFIED, 0
|
62
|
+
value :USA, 1
|
63
|
+
value :EUROPE, 2
|
64
|
+
value :SOUTH_AMERICA, 3
|
65
|
+
value :ASIA_PACIFIC, 4
|
66
|
+
end
|
67
|
+
add_enum "google.monitoring.v3.GroupResourceType" do
|
68
|
+
value :RESOURCE_TYPE_UNSPECIFIED, 0
|
69
|
+
value :INSTANCE, 1
|
70
|
+
value :AWS_ELB_LOAD_BALANCER, 2
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
module Google
|
75
|
+
module Monitoring
|
76
|
+
module V3
|
77
|
+
UptimeCheckConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.monitoring.v3.UptimeCheckConfig").msgclass
|
78
|
+
UptimeCheckConfig::ResourceGroup = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.monitoring.v3.UptimeCheckConfig.ResourceGroup").msgclass
|
79
|
+
UptimeCheckConfig::HttpCheck = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.monitoring.v3.UptimeCheckConfig.HttpCheck").msgclass
|
80
|
+
UptimeCheckConfig::HttpCheck::BasicAuthentication = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.monitoring.v3.UptimeCheckConfig.HttpCheck.BasicAuthentication").msgclass
|
81
|
+
UptimeCheckConfig::TcpCheck = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.monitoring.v3.UptimeCheckConfig.TcpCheck").msgclass
|
82
|
+
UptimeCheckConfig::ContentMatcher = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.monitoring.v3.UptimeCheckConfig.ContentMatcher").msgclass
|
83
|
+
UptimeCheckConfig::InternalChecker = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.monitoring.v3.UptimeCheckConfig.InternalChecker").msgclass
|
84
|
+
UptimeCheckIp = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.monitoring.v3.UptimeCheckIp").msgclass
|
85
|
+
UptimeCheckRegion = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.monitoring.v3.UptimeCheckRegion").enummodule
|
86
|
+
GroupResourceType = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.monitoring.v3.GroupResourceType").enummodule
|
87
|
+
end
|
88
|
+
end
|
89
|
+
end
|
@@ -0,0 +1,57 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: google/monitoring/v3/uptime_service.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
require 'google/api/annotations_pb'
|
7
|
+
require 'google/monitoring/v3/uptime_pb'
|
8
|
+
require 'google/protobuf/empty_pb'
|
9
|
+
require 'google/protobuf/field_mask_pb'
|
10
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
11
|
+
add_message "google.monitoring.v3.ListUptimeCheckConfigsRequest" do
|
12
|
+
optional :parent, :string, 1
|
13
|
+
optional :page_size, :int32, 3
|
14
|
+
optional :page_token, :string, 4
|
15
|
+
end
|
16
|
+
add_message "google.monitoring.v3.ListUptimeCheckConfigsResponse" do
|
17
|
+
repeated :uptime_check_configs, :message, 1, "google.monitoring.v3.UptimeCheckConfig"
|
18
|
+
optional :next_page_token, :string, 2
|
19
|
+
end
|
20
|
+
add_message "google.monitoring.v3.GetUptimeCheckConfigRequest" do
|
21
|
+
optional :name, :string, 1
|
22
|
+
end
|
23
|
+
add_message "google.monitoring.v3.CreateUptimeCheckConfigRequest" do
|
24
|
+
optional :parent, :string, 1
|
25
|
+
optional :uptime_check_config, :message, 2, "google.monitoring.v3.UptimeCheckConfig"
|
26
|
+
end
|
27
|
+
add_message "google.monitoring.v3.UpdateUptimeCheckConfigRequest" do
|
28
|
+
optional :update_mask, :message, 2, "google.protobuf.FieldMask"
|
29
|
+
optional :uptime_check_config, :message, 3, "google.monitoring.v3.UptimeCheckConfig"
|
30
|
+
end
|
31
|
+
add_message "google.monitoring.v3.DeleteUptimeCheckConfigRequest" do
|
32
|
+
optional :name, :string, 1
|
33
|
+
end
|
34
|
+
add_message "google.monitoring.v3.ListUptimeCheckIpsRequest" do
|
35
|
+
optional :page_size, :int32, 2
|
36
|
+
optional :page_token, :string, 3
|
37
|
+
end
|
38
|
+
add_message "google.monitoring.v3.ListUptimeCheckIpsResponse" do
|
39
|
+
repeated :uptime_check_ips, :message, 1, "google.monitoring.v3.UptimeCheckIp"
|
40
|
+
optional :next_page_token, :string, 2
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
module Google
|
45
|
+
module Monitoring
|
46
|
+
module V3
|
47
|
+
ListUptimeCheckConfigsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.monitoring.v3.ListUptimeCheckConfigsRequest").msgclass
|
48
|
+
ListUptimeCheckConfigsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.monitoring.v3.ListUptimeCheckConfigsResponse").msgclass
|
49
|
+
GetUptimeCheckConfigRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.monitoring.v3.GetUptimeCheckConfigRequest").msgclass
|
50
|
+
CreateUptimeCheckConfigRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.monitoring.v3.CreateUptimeCheckConfigRequest").msgclass
|
51
|
+
UpdateUptimeCheckConfigRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.monitoring.v3.UpdateUptimeCheckConfigRequest").msgclass
|
52
|
+
DeleteUptimeCheckConfigRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.monitoring.v3.DeleteUptimeCheckConfigRequest").msgclass
|
53
|
+
ListUptimeCheckIpsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.monitoring.v3.ListUptimeCheckIpsRequest").msgclass
|
54
|
+
ListUptimeCheckIpsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.monitoring.v3.ListUptimeCheckIpsResponse").msgclass
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
@@ -0,0 +1,66 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# Source: google/monitoring/v3/uptime_service.proto for package 'google.monitoring.v3'
|
3
|
+
# Original file comments:
|
4
|
+
# Copyright 2017 Google Inc.
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
|
19
|
+
require 'grpc'
|
20
|
+
require 'google/monitoring/v3/uptime_service_pb'
|
21
|
+
|
22
|
+
module Google
|
23
|
+
module Monitoring
|
24
|
+
module V3
|
25
|
+
module UptimeCheckService
|
26
|
+
# The UptimeCheckService API is used to manage (list, create, delete, edit)
|
27
|
+
# uptime check configurations in the Stackdriver Monitoring product. An uptime
|
28
|
+
# check is a piece of configuration that determines which resources and
|
29
|
+
# services to monitor for availability. These configurations can also be
|
30
|
+
# configured interactively by navigating to the [Cloud Console]
|
31
|
+
# (http://console.cloud.google.com), selecting the appropriate project,
|
32
|
+
# clicking on "Monitoring" on the left-hand side to navigate to Stackdriver,
|
33
|
+
# and then clicking on "Uptime".
|
34
|
+
class Service
|
35
|
+
|
36
|
+
include GRPC::GenericService
|
37
|
+
|
38
|
+
self.marshal_class_method = :encode
|
39
|
+
self.unmarshal_class_method = :decode
|
40
|
+
self.service_name = 'google.monitoring.v3.UptimeCheckService'
|
41
|
+
|
42
|
+
# Lists the existing valid uptime check configurations for the project,
|
43
|
+
# leaving out any invalid configurations.
|
44
|
+
rpc :ListUptimeCheckConfigs, ListUptimeCheckConfigsRequest, ListUptimeCheckConfigsResponse
|
45
|
+
# Gets a single uptime check configuration.
|
46
|
+
rpc :GetUptimeCheckConfig, GetUptimeCheckConfigRequest, UptimeCheckConfig
|
47
|
+
# Creates a new uptime check configuration.
|
48
|
+
rpc :CreateUptimeCheckConfig, CreateUptimeCheckConfigRequest, UptimeCheckConfig
|
49
|
+
# Updates an uptime check configuration. You can either replace the entire
|
50
|
+
# configuration with a new one or replace only certain fields in the current
|
51
|
+
# configuration by specifying the fields to be updated via `"updateMask"`.
|
52
|
+
# Returns the updated configuration.
|
53
|
+
rpc :UpdateUptimeCheckConfig, UpdateUptimeCheckConfigRequest, UptimeCheckConfig
|
54
|
+
# Deletes an uptime check configuration. Note that this method will fail
|
55
|
+
# if the uptime check configuration is referenced by an alert policy or
|
56
|
+
# other dependent configs that would be rendered invalid by the deletion.
|
57
|
+
rpc :DeleteUptimeCheckConfig, DeleteUptimeCheckConfigRequest, Google::Protobuf::Empty
|
58
|
+
# Returns the list of IPs that checkers run from
|
59
|
+
rpc :ListUptimeCheckIps, ListUptimeCheckIpsRequest, ListUptimeCheckIpsResponse
|
60
|
+
end
|
61
|
+
|
62
|
+
Stub = Service.rpc_stub_class
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.28.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
- Google
|
7
|
+
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-04-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-gax
|
@@ -42,16 +42,16 @@ dependencies:
|
|
42
42
|
name: rubocop
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - "
|
45
|
+
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 0.
|
47
|
+
version: 0.50.0
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - "
|
52
|
+
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 0.
|
54
|
+
version: 0.50.0
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: simplecov
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -80,20 +80,35 @@ files:
|
|
80
80
|
- lib/google/cloud/monitoring.rb
|
81
81
|
- lib/google/cloud/monitoring/credentials.rb
|
82
82
|
- lib/google/cloud/monitoring/v3.rb
|
83
|
+
- lib/google/cloud/monitoring/v3/alert_policy_service_client.rb
|
84
|
+
- lib/google/cloud/monitoring/v3/alert_policy_service_client_config.json
|
83
85
|
- lib/google/cloud/monitoring/v3/doc/google/api/distribution.rb
|
84
86
|
- lib/google/cloud/monitoring/v3/doc/google/api/label.rb
|
85
87
|
- lib/google/cloud/monitoring/v3/doc/google/api/metric.rb
|
86
88
|
- lib/google/cloud/monitoring/v3/doc/google/api/monitored_resource.rb
|
89
|
+
- lib/google/cloud/monitoring/v3/doc/google/monitoring/v3/alert.rb
|
87
90
|
- lib/google/cloud/monitoring/v3/doc/google/monitoring/v3/common.rb
|
88
91
|
- lib/google/cloud/monitoring/v3/doc/google/monitoring/v3/group.rb
|
89
92
|
- lib/google/cloud/monitoring/v3/doc/google/monitoring/v3/metric.rb
|
93
|
+
- lib/google/cloud/monitoring/v3/doc/google/monitoring/v3/mutation_record.rb
|
94
|
+
- lib/google/cloud/monitoring/v3/doc/google/monitoring/v3/notification.rb
|
95
|
+
- lib/google/cloud/monitoring/v3/doc/google/monitoring/v3/uptime.rb
|
90
96
|
- lib/google/cloud/monitoring/v3/doc/google/protobuf/duration.rb
|
97
|
+
- lib/google/cloud/monitoring/v3/doc/google/protobuf/field_mask.rb
|
91
98
|
- lib/google/cloud/monitoring/v3/doc/google/protobuf/timestamp.rb
|
99
|
+
- lib/google/cloud/monitoring/v3/doc/google/protobuf/wrappers.rb
|
92
100
|
- lib/google/cloud/monitoring/v3/doc/overview.rb
|
93
101
|
- lib/google/cloud/monitoring/v3/group_service_client.rb
|
94
102
|
- lib/google/cloud/monitoring/v3/group_service_client_config.json
|
95
103
|
- lib/google/cloud/monitoring/v3/metric_service_client.rb
|
96
104
|
- lib/google/cloud/monitoring/v3/metric_service_client_config.json
|
105
|
+
- lib/google/cloud/monitoring/v3/notification_channel_service_client.rb
|
106
|
+
- lib/google/cloud/monitoring/v3/notification_channel_service_client_config.json
|
107
|
+
- lib/google/cloud/monitoring/v3/uptime_check_service_client.rb
|
108
|
+
- lib/google/cloud/monitoring/v3/uptime_check_service_client_config.json
|
109
|
+
- lib/google/monitoring/v3/alert_pb.rb
|
110
|
+
- lib/google/monitoring/v3/alert_service_pb.rb
|
111
|
+
- lib/google/monitoring/v3/alert_service_services_pb.rb
|
97
112
|
- lib/google/monitoring/v3/common_pb.rb
|
98
113
|
- lib/google/monitoring/v3/group_pb.rb
|
99
114
|
- lib/google/monitoring/v3/group_service_pb.rb
|
@@ -101,7 +116,14 @@ files:
|
|
101
116
|
- lib/google/monitoring/v3/metric_pb.rb
|
102
117
|
- lib/google/monitoring/v3/metric_service_pb.rb
|
103
118
|
- lib/google/monitoring/v3/metric_service_services_pb.rb
|
104
|
-
|
119
|
+
- lib/google/monitoring/v3/mutation_record_pb.rb
|
120
|
+
- lib/google/monitoring/v3/notification_pb.rb
|
121
|
+
- lib/google/monitoring/v3/notification_service_pb.rb
|
122
|
+
- lib/google/monitoring/v3/notification_service_services_pb.rb
|
123
|
+
- lib/google/monitoring/v3/uptime_pb.rb
|
124
|
+
- lib/google/monitoring/v3/uptime_service_pb.rb
|
125
|
+
- lib/google/monitoring/v3/uptime_service_services_pb.rb
|
126
|
+
homepage: https://github.com/GoogleCloudPlatform/google-cloud-ruby/tree/master/google-cloud-monitoring
|
105
127
|
licenses:
|
106
128
|
- Apache-2.0
|
107
129
|
metadata: {}
|
@@ -121,7 +143,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
121
143
|
version: '0'
|
122
144
|
requirements: []
|
123
145
|
rubyforge_project:
|
124
|
-
rubygems_version: 2.7.
|
146
|
+
rubygems_version: 2.7.6
|
125
147
|
signing_key:
|
126
148
|
specification_version: 4
|
127
149
|
summary: API Client library for Stackdriver Monitoring API
|