google-apis-monitoring_v1 0.49.0 → 0.50.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: 65608d8ec60f7e8f2cf0f5f77811e6b97bfc80439d5b69dadac51448e3d37776
4
- data.tar.gz: 0f82f9a4fbc6a73747d802dc7f5c3aaf0f5b2d56af1b50a7a5ab7d615f6a3f38
3
+ metadata.gz: 6a2ebcbdf34d02d63599e01e92c434d91b9a9c3ff09410ec9503b3bd732c4093
4
+ data.tar.gz: e1ad40f3184faacfbacc1e2565d94403e3a830294f7895c0a78cdafbad75ac90
5
5
  SHA512:
6
- metadata.gz: 9864a1311ef6f4d7c82aecb0b6175d4ac4db86ae88b0d3fbb6d9f28114556b6199b3d3b0051139bcc6af608d8b8bc3fdd7441ab416bffd3587000319bdbe5bd8
7
- data.tar.gz: f16cab0870636beb02646b736b90a34a548b036ad397139188ab1008ce78767d4f6ce5f83957006fb74b95973637aaf9cbe2b5822747b7c2d8189646bc7cf1b2
6
+ metadata.gz: c647195c8c993f168f39e349087dec25ef5937b3112f0605146b35a1d308be0de22c1757d82cb1b071f7ddcad2c52c7c074c9eb734f8bf391a33d420f45f24ea
7
+ data.tar.gz: a5725c9bd25a79b1ecc0a6bffcb4cd67c04a8a843597019321d1cf15056839721bd642a250c878058486e0c7a26165c00c694bc8b95e92869992a21c0f1bbdfc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-monitoring_v1
2
2
 
3
+ ### v0.50.0 (2024-06-16)
4
+
5
+ * Regenerated from discovery document revision 20240609
6
+
3
7
  ### v0.49.0 (2024-05-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20240505
@@ -481,12 +481,6 @@ module Google
481
481
  class DashboardFilter
482
482
  include Google::Apis::Core::Hashable
483
483
 
484
- # Whether to apply this filter to new widgets by default
485
- # Corresponds to the JSON property `applyToNewWidgets`
486
- # @return [Boolean]
487
- attr_accessor :apply_to_new_widgets
488
- alias_method :apply_to_new_widgets?, :apply_to_new_widgets
489
-
490
484
  # The specified filter type
491
485
  # Corresponds to the JSON property `filterType`
492
486
  # @return [String]
@@ -515,7 +509,6 @@ module Google
515
509
 
516
510
  # Update properties of this object
517
511
  def update!(**args)
518
- @apply_to_new_widgets = args[:apply_to_new_widgets] if args.key?(:apply_to_new_widgets)
519
512
  @filter_type = args[:filter_type] if args.key?(:filter_type)
520
513
  @label_key = args[:label_key] if args.key?(:label_key)
521
514
  @string_value = args[:string_value] if args.key?(:string_value)
@@ -1888,6 +1881,12 @@ module Google
1888
1881
  # @return [Google::Apis::MonitoringV1::Empty]
1889
1882
  attr_accessor :blank_view
1890
1883
 
1884
+ # Optional. A dimension is a structured label, class, or category for a set of
1885
+ # measurements in your data.
1886
+ # Corresponds to the JSON property `dimensions`
1887
+ # @return [Array<Google::Apis::MonitoringV1::Dimension>]
1888
+ attr_accessor :dimensions
1889
+
1891
1890
  # A gauge chart shows where the current value sits within a pre-defined range.
1892
1891
  # The upper and lower bounds should define the possible range of values for the
1893
1892
  # scorecard's query (inclusive).
@@ -1895,6 +1894,12 @@ module Google
1895
1894
  # @return [Google::Apis::MonitoringV1::GaugeView]
1896
1895
  attr_accessor :gauge_view
1897
1896
 
1897
+ # Optional. A measure is a measured value of a property in your data. For
1898
+ # example, rainfall in inches, number of units sold, revenue gained, etc.
1899
+ # Corresponds to the JSON property `measures`
1900
+ # @return [Array<Google::Apis::MonitoringV1::Measure>]
1901
+ attr_accessor :measures
1902
+
1898
1903
  # A sparkChart is a small chart suitable for inclusion in a table-cell or inline
1899
1904
  # in text. This message contains the configuration for a sparkChart to show up
1900
1905
  # on a Scorecard, showing recent trends of the scorecard's timeseries.
@@ -1934,7 +1939,9 @@ module Google
1934
1939
  # Update properties of this object
1935
1940
  def update!(**args)
1936
1941
  @blank_view = args[:blank_view] if args.key?(:blank_view)
1942
+ @dimensions = args[:dimensions] if args.key?(:dimensions)
1937
1943
  @gauge_view = args[:gauge_view] if args.key?(:gauge_view)
1944
+ @measures = args[:measures] if args.key?(:measures)
1938
1945
  @spark_chart_view = args[:spark_chart_view] if args.key?(:spark_chart_view)
1939
1946
  @thresholds = args[:thresholds] if args.key?(:thresholds)
1940
1947
  @time_series_query = args[:time_series_query] if args.key?(:time_series_query)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module MonitoringV1
18
18
  # Version of the google-apis-monitoring_v1 gem
19
- GEM_VERSION = "0.49.0"
19
+ GEM_VERSION = "0.50.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240505"
25
+ REVISION = "20240609"
26
26
  end
27
27
  end
28
28
  end
@@ -561,7 +561,6 @@ module Google
561
561
  class DashboardFilter
562
562
  # @private
563
563
  class Representation < Google::Apis::Core::JsonRepresentation
564
- property :apply_to_new_widgets, as: 'applyToNewWidgets'
565
564
  property :filter_type, as: 'filterType'
566
565
  property :label_key, as: 'labelKey'
567
566
  property :string_value, as: 'stringValue'
@@ -920,8 +919,12 @@ module Google
920
919
  class Representation < Google::Apis::Core::JsonRepresentation
921
920
  property :blank_view, as: 'blankView', class: Google::Apis::MonitoringV1::Empty, decorator: Google::Apis::MonitoringV1::Empty::Representation
922
921
 
922
+ collection :dimensions, as: 'dimensions', class: Google::Apis::MonitoringV1::Dimension, decorator: Google::Apis::MonitoringV1::Dimension::Representation
923
+
923
924
  property :gauge_view, as: 'gaugeView', class: Google::Apis::MonitoringV1::GaugeView, decorator: Google::Apis::MonitoringV1::GaugeView::Representation
924
925
 
926
+ collection :measures, as: 'measures', class: Google::Apis::MonitoringV1::Measure, decorator: Google::Apis::MonitoringV1::Measure::Representation
927
+
925
928
  property :spark_chart_view, as: 'sparkChartView', class: Google::Apis::MonitoringV1::SparkChartView, decorator: Google::Apis::MonitoringV1::SparkChartView::Representation
926
929
 
927
930
  collection :thresholds, as: 'thresholds', class: Google::Apis::MonitoringV1::Threshold, decorator: Google::Apis::MonitoringV1::Threshold::Representation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-monitoring_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.49.0
4
+ version: 0.50.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: 2024-05-19 00:00:00.000000000 Z
11
+ date: 2024-06-16 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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v1/v0.49.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v1/v0.50.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-monitoring_v1
63
63
  post_install_message:
64
64
  rdoc_options: []