google-apis-monitoring_v1 0.30.0 → 0.32.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: 6913c522065a8b09edb117265b9a7366e151e9212438a0c239e0811d1cddd992
4
- data.tar.gz: 31109155312d2804b62615ee1cfbd28e5814b1379ca864c26043e891133dca4d
3
+ metadata.gz: 5253a415e24644171d066810829abf20891036b6dc84f3f291e3171d97bfc336
4
+ data.tar.gz: 1f7c448254825689878b991394b8b98646e7d2420d983a3c0b5e7d0bd268cdfa
5
5
  SHA512:
6
- metadata.gz: 5ecd9186780aed0bbb44ab2798c49ee49998ed360b009812d2593e6f7df6fdaedb13302800cf9d1163de08e69a765641cb6f73b9da7410434f7ff47181fe5e78
7
- data.tar.gz: 42c3319495540903f73b9be276c80bd6a02f183e7e404bc179562a385744bc1e3a323b99beb18a3bf7508790ac9f73562aa5916ad64b08188c08f5767aef1a52
6
+ metadata.gz: eb8815a3eed5f82634efd34105d134416ee05faf18c7b71175bcb90440fe290f9365cff89c2c75f585b783a05a7f971090205966d5200696d1b2e073345944ed
7
+ data.tar.gz: 6f6f82b489a9ff88ce7ddbb1cacc6b1a9cedb9020501a164481535ab1fa925ee4bab9f50227c33cdf99b4d997d990c1abf370a157df1d7020c850c5197868f7d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-monitoring_v1
2
2
 
3
+ ### v0.32.0 (2022-11-15)
4
+
5
+ * Regenerated from discovery document revision 20221107
6
+
7
+ ### v0.31.0 (2022-10-27)
8
+
9
+ * Regenerated from discovery document revision 20221024
10
+
3
11
  ### v0.30.0 (2022-10-20)
4
12
 
5
13
  * Regenerated using generator version 0.11.0
@@ -249,6 +249,32 @@ module Google
249
249
  end
250
250
  end
251
251
 
252
+ # The persistent settings for a table's columns.
253
+ class ColumnSettings
254
+ include Google::Apis::Core::Hashable
255
+
256
+ # Required. The id of the column.
257
+ # Corresponds to the JSON property `column`
258
+ # @return [String]
259
+ attr_accessor :column
260
+
261
+ # Required. Whether the column should be visible on page load.
262
+ # Corresponds to the JSON property `visible`
263
+ # @return [Boolean]
264
+ attr_accessor :visible
265
+ alias_method :visible?, :visible
266
+
267
+ def initialize(**args)
268
+ update!(**args)
269
+ end
270
+
271
+ # Update properties of this object
272
+ def update!(**args)
273
+ @column = args[:column] if args.key?(:column)
274
+ @visible = args[:visible] if args.key?(:visible)
275
+ end
276
+ end
277
+
252
278
  # A Google Stackdriver dashboard. Dashboards define the content and layout of
253
279
  # pages in the Stackdriver web application.
254
280
  class Dashboard
@@ -1482,12 +1508,19 @@ module Google
1482
1508
  class TableDisplayOptions
1483
1509
  include Google::Apis::Core::Hashable
1484
1510
 
1511
+ # Optional. This field is unused and has been replaced by TimeSeriesTable.
1512
+ # column_settings
1513
+ # Corresponds to the JSON property `shownColumns`
1514
+ # @return [Array<String>]
1515
+ attr_accessor :shown_columns
1516
+
1485
1517
  def initialize(**args)
1486
1518
  update!(**args)
1487
1519
  end
1488
1520
 
1489
1521
  # Update properties of this object
1490
1522
  def update!(**args)
1523
+ @shown_columns = args[:shown_columns] if args.key?(:shown_columns)
1491
1524
  end
1492
1525
  end
1493
1526
 
@@ -1833,6 +1866,11 @@ module Google
1833
1866
  class TimeSeriesTable
1834
1867
  include Google::Apis::Core::Hashable
1835
1868
 
1869
+ # Optional. The list of the persistent column settings for the table.
1870
+ # Corresponds to the JSON property `columnSettings`
1871
+ # @return [Array<Google::Apis::MonitoringV1::ColumnSettings>]
1872
+ attr_accessor :column_settings
1873
+
1836
1874
  # Required. The data displayed in this table.
1837
1875
  # Corresponds to the JSON property `dataSets`
1838
1876
  # @return [Array<Google::Apis::MonitoringV1::TableDataSet>]
@@ -1849,6 +1887,7 @@ module Google
1849
1887
 
1850
1888
  # Update properties of this object
1851
1889
  def update!(**args)
1890
+ @column_settings = args[:column_settings] if args.key?(:column_settings)
1852
1891
  @data_sets = args[:data_sets] if args.key?(:data_sets)
1853
1892
  @metric_visualization = args[:metric_visualization] if args.key?(:metric_visualization)
1854
1893
  end
@@ -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.30.0"
19
+ GEM_VERSION = "0.32.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220930"
25
+ REVISION = "20221107"
26
26
  end
27
27
  end
28
28
  end
@@ -64,6 +64,12 @@ module Google
64
64
  include Google::Apis::Core::JsonObjectSupport
65
65
  end
66
66
 
67
+ class ColumnSettings
68
+ class Representation < Google::Apis::Core::JsonRepresentation; end
69
+
70
+ include Google::Apis::Core::JsonObjectSupport
71
+ end
72
+
67
73
  class Dashboard
68
74
  class Representation < Google::Apis::Core::JsonRepresentation; end
69
75
 
@@ -384,6 +390,14 @@ module Google
384
390
  end
385
391
  end
386
392
 
393
+ class ColumnSettings
394
+ # @private
395
+ class Representation < Google::Apis::Core::JsonRepresentation
396
+ property :column, as: 'column'
397
+ property :visible, as: 'visible'
398
+ end
399
+ end
400
+
387
401
  class Dashboard
388
402
  # @private
389
403
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -704,6 +718,7 @@ module Google
704
718
  class TableDisplayOptions
705
719
  # @private
706
720
  class Representation < Google::Apis::Core::JsonRepresentation
721
+ collection :shown_columns, as: 'shownColumns'
707
722
  end
708
723
  end
709
724
 
@@ -785,6 +800,8 @@ module Google
785
800
  class TimeSeriesTable
786
801
  # @private
787
802
  class Representation < Google::Apis::Core::JsonRepresentation
803
+ collection :column_settings, as: 'columnSettings', class: Google::Apis::MonitoringV1::ColumnSettings, decorator: Google::Apis::MonitoringV1::ColumnSettings::Representation
804
+
788
805
  collection :data_sets, as: 'dataSets', class: Google::Apis::MonitoringV1::TableDataSet, decorator: Google::Apis::MonitoringV1::TableDataSet::Representation
789
806
 
790
807
  property :metric_visualization, as: 'metricVisualization'
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.30.0
4
+ version: 0.32.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-10-21 00:00:00.000000000 Z
11
+ date: 2022-12-12 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.30.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v1/v0.32.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: []