google-apis-monitoring_v1 0.27.0 → 0.29.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: f859f4aa6a6cd245d47b88b898fe95331b208bb21e898198237cee84a239cc0e
4
- data.tar.gz: 80c3394c86122eb927c27de43f1a97506d233a3a52eba59be55929d541681556
3
+ metadata.gz: 9fe6a05f96ec4d3786bcf85ac9f811ee03b997e503560724ce613a9922bd54d8
4
+ data.tar.gz: c23e60aa77b0e530f73b0816d373055559160470d4773f5022980d5dc9b155dc
5
5
  SHA512:
6
- metadata.gz: 9265995738ddf8bfba67dcb65281cd01e12415a43599648cf62eb0f07da72f9a14ea8dda4e8f43b586bc3d2382de438afcdc8b413ebd4418f4c3c23cb9d2129f
7
- data.tar.gz: 2a91b85af7ab01418fb78b501fe942a67dd6f4e472de8e731a439bd8bbf34a8aa49340b14969b4346acbdad62f00080d999a37297afecdc3c740e22f9314225a
6
+ metadata.gz: 5eba2c6b1582d860e8bd04eccdd968bade235f2abaf0d347eb9509916c6f71f90d20ca3623fb8732f873e69cf6662de858f15ee968dc90a9254e5fe4610943aa
7
+ data.tar.gz: a259cc23b14b8af95369b084bc7ee0d2fc98984492a8c25076f13b4a75418ad9668acecb994554421f318539e9d9d1f2b9b42b3b50a3b4ff7dd4e46ab0bdccf5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-monitoring_v1
2
2
 
3
+ ### v0.29.0 (2022-10-10)
4
+
5
+ * Regenerated from discovery document revision 20220930
6
+
7
+ ### v0.28.0 (2022-09-21)
8
+
9
+ * Regenerated from discovery document revision 20220916
10
+ * Regenerated using generator version 0.10.0
11
+
3
12
  ### v0.27.0 (2022-07-28)
4
13
 
5
14
  * Regenerated from discovery document revision 20220725
@@ -1482,20 +1482,12 @@ module Google
1482
1482
  class TableDisplayOptions
1483
1483
  include Google::Apis::Core::Hashable
1484
1484
 
1485
- # Optional. Columns to display in the table. Leave empty to display all
1486
- # available columns. Note: This field is for future features and is not
1487
- # currently used.
1488
- # Corresponds to the JSON property `shownColumns`
1489
- # @return [Array<String>]
1490
- attr_accessor :shown_columns
1491
-
1492
1485
  def initialize(**args)
1493
1486
  update!(**args)
1494
1487
  end
1495
1488
 
1496
1489
  # Update properties of this object
1497
1490
  def update!(**args)
1498
- @shown_columns = args[:shown_columns] if args.key?(:shown_columns)
1499
1491
  end
1500
1492
  end
1501
1493
 
@@ -1791,6 +1783,11 @@ module Google
1791
1783
  class TimeSeriesQuery
1792
1784
  include Google::Apis::Core::Hashable
1793
1785
 
1786
+ # A query used to fetch time series with PromQL.
1787
+ # Corresponds to the JSON property `prometheusQuery`
1788
+ # @return [String]
1789
+ attr_accessor :prometheus_query
1790
+
1794
1791
  # A filter that defines a subset of time series data that is displayed in a
1795
1792
  # widget. Time series data is fetched using the ListTimeSeries (https://cloud.
1796
1793
  # google.com/monitoring/api/ref_v3/rest/v3/projects.timeSeries/list) method.
@@ -1824,6 +1821,7 @@ module Google
1824
1821
 
1825
1822
  # Update properties of this object
1826
1823
  def update!(**args)
1824
+ @prometheus_query = args[:prometheus_query] if args.key?(:prometheus_query)
1827
1825
  @time_series_filter = args[:time_series_filter] if args.key?(:time_series_filter)
1828
1826
  @time_series_filter_ratio = args[:time_series_filter_ratio] if args.key?(:time_series_filter_ratio)
1829
1827
  @time_series_query_language = args[:time_series_query_language] if args.key?(:time_series_query_language)
@@ -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.27.0"
19
+ GEM_VERSION = "0.29.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.9.0"
22
+ GENERATOR_VERSION = "0.10.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220725"
25
+ REVISION = "20220930"
26
26
  end
27
27
  end
28
28
  end
@@ -704,7 +704,6 @@ module Google
704
704
  class TableDisplayOptions
705
705
  # @private
706
706
  class Representation < Google::Apis::Core::JsonRepresentation
707
- collection :shown_columns, as: 'shownColumns'
708
707
  end
709
708
  end
710
709
 
@@ -773,6 +772,7 @@ module Google
773
772
  class TimeSeriesQuery
774
773
  # @private
775
774
  class Representation < Google::Apis::Core::JsonRepresentation
775
+ property :prometheus_query, as: 'prometheusQuery'
776
776
  property :time_series_filter, as: 'timeSeriesFilter', class: Google::Apis::MonitoringV1::TimeSeriesFilter, decorator: Google::Apis::MonitoringV1::TimeSeriesFilter::Representation
777
777
 
778
778
  property :time_series_filter_ratio, as: 'timeSeriesFilterRatio', class: Google::Apis::MonitoringV1::TimeSeriesFilterRatio, decorator: Google::Apis::MonitoringV1::TimeSeriesFilterRatio::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.27.0
4
+ version: 0.29.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-08-01 00:00:00.000000000 Z
11
+ date: 2022-10-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.7'
19
+ version: 0.9.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.7'
29
+ version: 0.9.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.27.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v1/v0.29.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: []