google-apis-monitoring_v3 0.20.0 → 0.23.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d875afd30422637d9e01fc4c8d056cc93ffcc79e2dbfc2a63374e729af63689b
4
- data.tar.gz: 6a3829cb310d46cdbd81db25402db17b9ac3ec850d271496b5e22eb1638690a4
3
+ metadata.gz: 28d519dbec304366e265d4868f582a7c8cccbefb432acbfad3f049c788830c0e
4
+ data.tar.gz: 93c46c73482a2503e31b2aeb21e39e169148f23f6494a6647b90b0e01fe50f94
5
5
  SHA512:
6
- metadata.gz: 99ae7a752eead12db970394ceaf6ef428169297980cf9c0572ae8d7679695c98ddbfbd02c026959c155420ad1b3d1f6e2144d830d1b57cdca6ee455c94f5e376
7
- data.tar.gz: ba0985c529f3e7479e84c1c3847a8358603139a50e5f9a234efcafedb075ed45f04d0b957fb099920c39bb4e53b21f933fd954f339e81b80433e210934dd8c53
6
+ metadata.gz: 528995057b41d3ed589c735a51c026402dd62acd6dc4493d44bb5737396b29cfe92e3f1636dc56992c79b05c4305149fb8b42c360cd92bb1818ef9704198fb40
7
+ data.tar.gz: 9009a56cce4fd7ed869e533f50737564bf498e3d3cfce77c777405448b01c5e9afe800da035c8f5092b72ef1bd84d2f8633eaad37b33924f6ec2d2b1dd0c3baa
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-monitoring_v3
2
2
 
3
+ ### v0.23.0 (2022-02-25)
4
+
5
+ * Regenerated from discovery document revision 20220218
6
+
7
+ ### v0.22.0 (2022-02-18)
8
+
9
+ * Regenerated from discovery document revision 20220214
10
+
11
+ ### v0.21.0 (2022-02-10)
12
+
13
+ * Regenerated from discovery document revision 20220205
14
+
3
15
  ### v0.20.0 (2022-01-21)
4
16
 
5
17
  * Regenerated from discovery document revision 20220117
@@ -746,8 +746,8 @@ module Google
746
746
  class ContentMatcher
747
747
  include Google::Apis::Core::Hashable
748
748
 
749
- # String or regex content to match. Maximum 1024 bytes. An empty content string
750
- # indicates no content matching is to be performed.
749
+ # String, regex or JSON content to match. Maximum 1024 bytes. An empty content
750
+ # string indicates no content matching is to be performed.
751
751
  # Corresponds to the JSON property `content`
752
752
  # @return [String]
753
753
  attr_accessor :content
@@ -1036,7 +1036,9 @@ module Google
1036
1036
 
1037
1037
  # The text of the documentation, interpreted according to mime_type. The content
1038
1038
  # may not exceed 8,192 Unicode characters and may not exceed more than 10,240
1039
- # bytes when encoded in UTF-8 format, whichever is smaller.
1039
+ # bytes when encoded in UTF-8 format, whichever is smaller. This text can be
1040
+ # templatized by using variables (https://cloud.google.com/monitoring/alerts/doc-
1041
+ # variables).
1040
1042
  # Corresponds to the JSON property `content`
1041
1043
  # @return [String]
1042
1044
  attr_accessor :content
@@ -2589,6 +2591,12 @@ module Google
2589
2591
  # @return [String]
2590
2592
  attr_accessor :duration
2591
2593
 
2594
+ # A condition control that determines how metric-threshold conditions are
2595
+ # evaluated when data stops arriving.
2596
+ # Corresponds to the JSON property `evaluationMissingData`
2597
+ # @return [String]
2598
+ attr_accessor :evaluation_missing_data
2599
+
2592
2600
  # Required. A filter (https://cloud.google.com/monitoring/api/v3/filters) that
2593
2601
  # identifies which time series should be compared with the threshold.The filter
2594
2602
  # is similar to the one that is specified in the ListTimeSeries request (https://
@@ -2623,6 +2631,7 @@ module Google
2623
2631
  @denominator_aggregations = args[:denominator_aggregations] if args.key?(:denominator_aggregations)
2624
2632
  @denominator_filter = args[:denominator_filter] if args.key?(:denominator_filter)
2625
2633
  @duration = args[:duration] if args.key?(:duration)
2634
+ @evaluation_missing_data = args[:evaluation_missing_data] if args.key?(:evaluation_missing_data)
2626
2635
  @filter = args[:filter] if args.key?(:filter)
2627
2636
  @threshold_value = args[:threshold_value] if args.key?(:threshold_value)
2628
2637
  @trigger = args[:trigger] if args.key?(:trigger)
@@ -2789,6 +2798,12 @@ module Google
2789
2798
  # @return [String]
2790
2799
  attr_accessor :duration
2791
2800
 
2801
+ # A condition control that determines how metric-threshold conditions are
2802
+ # evaluated when data stops arriving.
2803
+ # Corresponds to the JSON property `evaluationMissingData`
2804
+ # @return [String]
2805
+ attr_accessor :evaluation_missing_data
2806
+
2792
2807
  # Monitoring Query Language (https://cloud.google.com/monitoring/mql) query that
2793
2808
  # outputs a boolean stream.
2794
2809
  # Corresponds to the JSON property `query`
@@ -2808,6 +2823,7 @@ module Google
2808
2823
  # Update properties of this object
2809
2824
  def update!(**args)
2810
2825
  @duration = args[:duration] if args.key?(:duration)
2826
+ @evaluation_missing_data = args[:evaluation_missing_data] if args.key?(:evaluation_missing_data)
2811
2827
  @query = args[:query] if args.key?(:query)
2812
2828
  @trigger = args[:trigger] if args.key?(:trigger)
2813
2829
  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.20.0"
19
+ GEM_VERSION = "0.23.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 = "20220117"
25
+ REVISION = "20220218"
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
 
@@ -49,8 +49,7 @@ module Google
49
49
  @batch_path = 'batch'
50
50
  end
51
51
 
52
- # Lists time series that match a filter. This method does not require a
53
- # Workspace.
52
+ # Lists time series that match a filter.
54
53
  # @param [String] name
55
54
  # Required. The project (https://cloud.google.com/monitoring/api/v3#project_name)
56
55
  # , organization or folder on which to execute the request. The format is:
@@ -214,8 +213,7 @@ module Google
214
213
  execute_or_queue_command(command, &block)
215
214
  end
216
215
 
217
- # Lists time series that match a filter. This method does not require a
218
- # Workspace.
216
+ # Lists time series that match a filter.
219
217
  # @param [String] name
220
218
  # Required. The project (https://cloud.google.com/monitoring/api/v3#project_name)
221
219
  # , organization or folder on which to execute the request. The format is:
@@ -953,7 +951,7 @@ module Google
953
951
  execute_or_queue_command(command, &block)
954
952
  end
955
953
 
956
- # Gets a single metric descriptor. This method does not require a Workspace.
954
+ # Gets a single metric descriptor.
957
955
  # @param [String] name
958
956
  # Required. The metric descriptor on which to execute the request. The format is:
959
957
  # projects/[PROJECT_ID_OR_NUMBER]/metricDescriptors/[METRIC_ID] An example
@@ -986,8 +984,7 @@ module Google
986
984
  execute_or_queue_command(command, &block)
987
985
  end
988
986
 
989
- # Lists metric descriptors that match a filter. This method does not require a
990
- # Workspace.
987
+ # Lists metric descriptors that match a filter.
991
988
  # @param [String] name
992
989
  # Required. The project (https://cloud.google.com/monitoring/api/v3#project_name)
993
990
  # on which to execute the request. The format is: projects/[
@@ -1035,8 +1032,7 @@ module Google
1035
1032
  execute_or_queue_command(command, &block)
1036
1033
  end
1037
1034
 
1038
- # Gets a single monitored resource descriptor. This method does not require a
1039
- # Workspace.
1035
+ # Gets a single monitored resource descriptor.
1040
1036
  # @param [String] name
1041
1037
  # Required. The monitored resource descriptor to get. The format is: projects/[
1042
1038
  # PROJECT_ID_OR_NUMBER]/monitoredResourceDescriptors/[RESOURCE_TYPE] The [
@@ -1068,8 +1064,7 @@ module Google
1068
1064
  execute_or_queue_command(command, &block)
1069
1065
  end
1070
1066
 
1071
- # Lists monitored resource descriptors that match a filter. This method does not
1072
- # require a Workspace.
1067
+ # Lists monitored resource descriptors that match a filter.
1073
1068
  # @param [String] name
1074
1069
  # Required. The project (https://cloud.google.com/monitoring/api/v3#project_name)
1075
1070
  # on which to execute the request. The format is: projects/[
@@ -1595,8 +1590,7 @@ module Google
1595
1590
  execute_or_queue_command(command, &block)
1596
1591
  end
1597
1592
 
1598
- # Lists time series that match a filter. This method does not require a
1599
- # Workspace.
1593
+ # Lists time series that match a filter.
1600
1594
  # @param [String] name
1601
1595
  # Required. The project (https://cloud.google.com/monitoring/api/v3#project_name)
1602
1596
  # , organization or folder on which to execute the request. The format is:
@@ -1760,8 +1754,7 @@ module Google
1760
1754
  execute_or_queue_command(command, &block)
1761
1755
  end
1762
1756
 
1763
- # Queries time series using Monitoring Query Language. This method does not
1764
- # require a Workspace.
1757
+ # Queries time series using Monitoring Query Language.
1765
1758
  # @param [String] name
1766
1759
  # Required. The project (https://cloud.google.com/monitoring/api/v3#project_name)
1767
1760
  # on which to execute the request. The format is: projects/[
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.20.0
4
+ version: 0.23.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-01-24 00:00:00.000000000 Z
11
+ date: 2022-02-28 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.20.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v3/v0.23.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: []