google-cloud-monitoring-v3 0.1.0 → 0.1.1
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/monitoring/v3/alert_policy_service/client.rb +1 -1
- data/lib/google/cloud/monitoring/v3/group_service/client.rb +1 -1
- data/lib/google/cloud/monitoring/v3/metric_service/client.rb +1 -1
- data/lib/google/cloud/monitoring/v3/notification_channel_service/client.rb +1 -1
- data/lib/google/cloud/monitoring/v3/service_monitoring_service/client.rb +1 -1
- data/lib/google/cloud/monitoring/v3/uptime_check_service/client.rb +1 -1
- data/lib/google/cloud/monitoring/v3/version.rb +1 -1
- data/proto_docs/google/monitoring/v3/common.rb +5 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b6856967b626775c695be818fccbdb736ba4d6d8f797c8e409d40bd5d8dd10ea
|
4
|
+
data.tar.gz: 770b24b699b03420e570b42e7aece38e03a6546267ea96265d0eff3aeccb355d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ff8875b6565bffd3452d4ddd02e8435cd4bd5a6c7b91cd81acbefc327d8cd6765a07d210370d86f1bb73793eaf4aeed1bd49e519b4541db3a2ba06b2810585d3
|
7
|
+
data.tar.gz: 32ba560c72fded98c223e3ea0f795b160debeef92305a9f8d5c809a62ddc7c275c4f6a5511a23775e59c0660bab8bd65e23552ca6162d3895e7cf93a16fb838d
|
@@ -698,7 +698,7 @@ module Google
|
|
698
698
|
def rpcs
|
699
699
|
@rpcs ||= begin
|
700
700
|
parent_rpcs = nil
|
701
|
-
parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to?
|
701
|
+
parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
|
702
702
|
Rpcs.new parent_rpcs
|
703
703
|
end
|
704
704
|
end
|
@@ -781,7 +781,7 @@ module Google
|
|
781
781
|
def rpcs
|
782
782
|
@rpcs ||= begin
|
783
783
|
parent_rpcs = nil
|
784
|
-
parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to?
|
784
|
+
parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
|
785
785
|
Rpcs.new parent_rpcs
|
786
786
|
end
|
787
787
|
end
|
@@ -945,7 +945,7 @@ module Google
|
|
945
945
|
def rpcs
|
946
946
|
@rpcs ||= begin
|
947
947
|
parent_rpcs = nil
|
948
|
-
parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to?
|
948
|
+
parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
|
949
949
|
Rpcs.new parent_rpcs
|
950
950
|
end
|
951
951
|
end
|
@@ -1104,7 +1104,7 @@ module Google
|
|
1104
1104
|
def rpcs
|
1105
1105
|
@rpcs ||= begin
|
1106
1106
|
parent_rpcs = nil
|
1107
|
-
parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to?
|
1107
|
+
parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
|
1108
1108
|
Rpcs.new parent_rpcs
|
1109
1109
|
end
|
1110
1110
|
end
|
@@ -1059,7 +1059,7 @@ module Google
|
|
1059
1059
|
def rpcs
|
1060
1060
|
@rpcs ||= begin
|
1061
1061
|
parent_rpcs = nil
|
1062
|
-
parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to?
|
1062
|
+
parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
|
1063
1063
|
Rpcs.new parent_rpcs
|
1064
1064
|
end
|
1065
1065
|
end
|
@@ -741,7 +741,7 @@ module Google
|
|
741
741
|
def rpcs
|
742
742
|
@rpcs ||= begin
|
743
743
|
parent_rpcs = nil
|
744
|
-
parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to?
|
744
|
+
parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
|
745
745
|
Rpcs.new parent_rpcs
|
746
746
|
end
|
747
747
|
end
|
@@ -44,7 +44,11 @@ module Google
|
|
44
44
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
45
45
|
end
|
46
46
|
|
47
|
-
# A closed time interval. It extends from the start time to the end time, and
|
47
|
+
# A closed time interval. It extends from the start time to the end time, and
|
48
|
+
# includes both: `[startTime, endTime]`. Valid time intervals depend on the
|
49
|
+
# [`MetricKind`](https://cloud.google.com/monitoring/api/ref_v3/rest/v3/projects.metricDescriptors#MetricKind)
|
50
|
+
# of the metric value. In no case can the end time be earlier than the start
|
51
|
+
# time.
|
48
52
|
#
|
49
53
|
# * For a `GAUGE` metric, the `startTime` value is technically optional; if
|
50
54
|
# no value is specified, the start time defaults to the value of the
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-monitoring-v3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-06-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -262,7 +262,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
262
262
|
- !ruby/object:Gem::Version
|
263
263
|
version: '0'
|
264
264
|
requirements: []
|
265
|
-
rubygems_version: 3.
|
265
|
+
rubygems_version: 3.1.3
|
266
266
|
signing_key:
|
267
267
|
specification_version: 4
|
268
268
|
summary: API Client library for the Cloud Monitoring V3 API
|