google-apis-monitoring_v3 0.20.0 → 0.21.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 79476f2ca9e53beaa2af1ba593559f6f7828a9289f40d92a4f830203343f282b
|
4
|
+
data.tar.gz: 53022c9f4844d45768cf5f36f516fe53b013747b7cfafece230d037f953e78ba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d12a7fbd3c1966b0005aaea71c5c83192a040efb072879759a0ca5e5a8aea7372fe394ea36048543a88693ef0f597dae9f331909d9879171e9db692ba81c9b87
|
7
|
+
data.tar.gz: 790add2f7459e1996ace868aa52d311996f8a2967721c41e18a38fdc2d95d1ad1688ca92b696c058564c428e433a690124c739cba2ad9863f5b1a8758e0ad349
|
data/CHANGELOG.md
CHANGED
@@ -2589,6 +2589,12 @@ module Google
|
|
2589
2589
|
# @return [String]
|
2590
2590
|
attr_accessor :duration
|
2591
2591
|
|
2592
|
+
# A condition control that determines how metric-threshold conditions are
|
2593
|
+
# evaluated when data stops arriving.
|
2594
|
+
# Corresponds to the JSON property `evaluationMissingData`
|
2595
|
+
# @return [String]
|
2596
|
+
attr_accessor :evaluation_missing_data
|
2597
|
+
|
2592
2598
|
# Required. A filter (https://cloud.google.com/monitoring/api/v3/filters) that
|
2593
2599
|
# identifies which time series should be compared with the threshold.The filter
|
2594
2600
|
# is similar to the one that is specified in the ListTimeSeries request (https://
|
@@ -2623,6 +2629,7 @@ module Google
|
|
2623
2629
|
@denominator_aggregations = args[:denominator_aggregations] if args.key?(:denominator_aggregations)
|
2624
2630
|
@denominator_filter = args[:denominator_filter] if args.key?(:denominator_filter)
|
2625
2631
|
@duration = args[:duration] if args.key?(:duration)
|
2632
|
+
@evaluation_missing_data = args[:evaluation_missing_data] if args.key?(:evaluation_missing_data)
|
2626
2633
|
@filter = args[:filter] if args.key?(:filter)
|
2627
2634
|
@threshold_value = args[:threshold_value] if args.key?(:threshold_value)
|
2628
2635
|
@trigger = args[:trigger] if args.key?(:trigger)
|
@@ -2789,6 +2796,12 @@ module Google
|
|
2789
2796
|
# @return [String]
|
2790
2797
|
attr_accessor :duration
|
2791
2798
|
|
2799
|
+
# A condition control that determines how metric-threshold conditions are
|
2800
|
+
# evaluated when data stops arriving.
|
2801
|
+
# Corresponds to the JSON property `evaluationMissingData`
|
2802
|
+
# @return [String]
|
2803
|
+
attr_accessor :evaluation_missing_data
|
2804
|
+
|
2792
2805
|
# Monitoring Query Language (https://cloud.google.com/monitoring/mql) query that
|
2793
2806
|
# outputs a boolean stream.
|
2794
2807
|
# Corresponds to the JSON property `query`
|
@@ -2808,6 +2821,7 @@ module Google
|
|
2808
2821
|
# Update properties of this object
|
2809
2822
|
def update!(**args)
|
2810
2823
|
@duration = args[:duration] if args.key?(:duration)
|
2824
|
+
@evaluation_missing_data = args[:evaluation_missing_data] if args.key?(:evaluation_missing_data)
|
2811
2825
|
@query = args[:query] if args.key?(:query)
|
2812
2826
|
@trigger = args[:trigger] if args.key?(:trigger)
|
2813
2827
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module MonitoringV3
|
18
18
|
# Version of the google-apis-monitoring_v3 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.21.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220205"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1257,6 +1257,7 @@ module Google
|
|
1257
1257
|
|
1258
1258
|
property :denominator_filter, as: 'denominatorFilter'
|
1259
1259
|
property :duration, as: 'duration'
|
1260
|
+
property :evaluation_missing_data, as: 'evaluationMissingData'
|
1260
1261
|
property :filter, as: 'filter'
|
1261
1262
|
property :threshold_value, as: 'thresholdValue'
|
1262
1263
|
property :trigger, as: 'trigger', class: Google::Apis::MonitoringV3::Trigger, decorator: Google::Apis::MonitoringV3::Trigger::Representation
|
@@ -1297,6 +1298,7 @@ module Google
|
|
1297
1298
|
# @private
|
1298
1299
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1299
1300
|
property :duration, as: 'duration'
|
1301
|
+
property :evaluation_missing_data, as: 'evaluationMissingData'
|
1300
1302
|
property :query, as: 'query'
|
1301
1303
|
property :trigger, as: 'trigger', class: Google::Apis::MonitoringV3::Trigger, decorator: Google::Apis::MonitoringV3::Trigger::Representation
|
1302
1304
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-monitoring_v3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.21.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-02-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-monitoring_v3/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v3/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v3/v0.21.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-monitoring_v3
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|