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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: be90c298dc5ea18687f87799a968de17f11678b69413acb3d219579e0157c03e
4
- data.tar.gz: ec6869d25c400b597fc0c397bde06edfc836e9a53874a889451d7d5af547ceca
3
+ metadata.gz: b6856967b626775c695be818fccbdb736ba4d6d8f797c8e409d40bd5d8dd10ea
4
+ data.tar.gz: 770b24b699b03420e570b42e7aece38e03a6546267ea96265d0eff3aeccb355d
5
5
  SHA512:
6
- metadata.gz: 3047604b973820bfccfe11017b9221b72e501641f519cf3caf3f36fee6c74ab929f7b19d194933ee691b267a2bc47c691aaa9fc96d951e64c5e77667a1d4f9c3
7
- data.tar.gz: 44900ca6cd6a76b65e6a7297855ee1ab4076b97625d00f18718277e47c66f78e9b36793a730b9a6092a3ec422dd093b7a41bcc92e426719bca0dc6d6f74ebdf3
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? :rpcs
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? :rpcs
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? :rpcs
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? :rpcs
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? :rpcs
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? :rpcs
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
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Monitoring
23
23
  module V3
24
- VERSION = "0.1.0"
24
+ VERSION = "0.1.1"
25
25
  end
26
26
  end
27
27
  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 includes both: `[startTime, endTime]`. Valid time intervals depend on the [`MetricKind`](/monitoring/api/ref_v3/rest/v3/projects.metricDescriptors#MetricKind) of the metric value. In no case can the end time be earlier than the start time.
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.0
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-05-26 00:00:00.000000000 Z
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.0.6
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