google-apis-monitoring_v1 0.19.0 → 0.20.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: 918c1c978c2394cce21060ef06d91bd9ae2603ec5a18134ba3a2192ec8f246d4
|
4
|
+
data.tar.gz: e97a987c6058995d6333100f24039cce32e29d5026a60d30093f9b1c25cbe6f0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0f10474194ffe18348b4de9fe39b2119f589b7bc59a88c5055e248a73cbead15fdfbe701aeddf6cf108006ef8b4ea9c9f3153212a9f0cad418b73d2f29a1bb7e
|
7
|
+
data.tar.gz: db4d28b6881dca25bc97831da83ef6ec69ccb43973fac7b69bb2dbd672a19fc1e2e20d70e80a3e373c26e6c68b87a1bb31d84f53605c22b47b46ee1b7dc6278c
|
data/CHANGELOG.md
CHANGED
@@ -180,6 +180,27 @@ module Google
|
|
180
180
|
end
|
181
181
|
end
|
182
182
|
|
183
|
+
# A widget that groups the other widgets. All widgets that are within the area
|
184
|
+
# spanned by the grouping widget are considered member widgets.
|
185
|
+
class CollapsibleGroup
|
186
|
+
include Google::Apis::Core::Hashable
|
187
|
+
|
188
|
+
# The collapsed state of the widget on first page load.
|
189
|
+
# Corresponds to the JSON property `collapsed`
|
190
|
+
# @return [Boolean]
|
191
|
+
attr_accessor :collapsed
|
192
|
+
alias_method :collapsed?, :collapsed
|
193
|
+
|
194
|
+
def initialize(**args)
|
195
|
+
update!(**args)
|
196
|
+
end
|
197
|
+
|
198
|
+
# Update properties of this object
|
199
|
+
def update!(**args)
|
200
|
+
@collapsed = args[:collapsed] if args.key?(:collapsed)
|
201
|
+
end
|
202
|
+
end
|
203
|
+
|
183
204
|
# Defines the layout properties and content for a column.
|
184
205
|
class Column
|
185
206
|
include Google::Apis::Core::Hashable
|
@@ -1819,6 +1840,12 @@ module Google
|
|
1819
1840
|
# @return [Google::Apis::MonitoringV1::Empty]
|
1820
1841
|
attr_accessor :blank
|
1821
1842
|
|
1843
|
+
# A widget that groups the other widgets. All widgets that are within the area
|
1844
|
+
# spanned by the grouping widget are considered member widgets.
|
1845
|
+
# Corresponds to the JSON property `collapsibleGroup`
|
1846
|
+
# @return [Google::Apis::MonitoringV1::CollapsibleGroup]
|
1847
|
+
attr_accessor :collapsible_group
|
1848
|
+
|
1822
1849
|
# A widget that displays a stream of log.
|
1823
1850
|
# Corresponds to the JSON property `logsPanel`
|
1824
1851
|
# @return [Google::Apis::MonitoringV1::LogsPanel]
|
@@ -1858,6 +1885,7 @@ module Google
|
|
1858
1885
|
def update!(**args)
|
1859
1886
|
@alert_chart = args[:alert_chart] if args.key?(:alert_chart)
|
1860
1887
|
@blank = args[:blank] if args.key?(:blank)
|
1888
|
+
@collapsible_group = args[:collapsible_group] if args.key?(:collapsible_group)
|
1861
1889
|
@logs_panel = args[:logs_panel] if args.key?(:logs_panel)
|
1862
1890
|
@scorecard = args[:scorecard] if args.key?(:scorecard)
|
1863
1891
|
@text = args[:text] if args.key?(:text)
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.20.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 = "20220214"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -46,6 +46,12 @@ module Google
|
|
46
46
|
include Google::Apis::Core::JsonObjectSupport
|
47
47
|
end
|
48
48
|
|
49
|
+
class CollapsibleGroup
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
|
+
|
52
|
+
include Google::Apis::Core::JsonObjectSupport
|
53
|
+
end
|
54
|
+
|
49
55
|
class Column
|
50
56
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
57
|
|
@@ -342,6 +348,13 @@ module Google
|
|
342
348
|
end
|
343
349
|
end
|
344
350
|
|
351
|
+
class CollapsibleGroup
|
352
|
+
# @private
|
353
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
354
|
+
property :collapsed, as: 'collapsed'
|
355
|
+
end
|
356
|
+
end
|
357
|
+
|
345
358
|
class Column
|
346
359
|
# @private
|
347
360
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -766,6 +779,8 @@ module Google
|
|
766
779
|
|
767
780
|
property :blank, as: 'blank', class: Google::Apis::MonitoringV1::Empty, decorator: Google::Apis::MonitoringV1::Empty::Representation
|
768
781
|
|
782
|
+
property :collapsible_group, as: 'collapsibleGroup', class: Google::Apis::MonitoringV1::CollapsibleGroup, decorator: Google::Apis::MonitoringV1::CollapsibleGroup::Representation
|
783
|
+
|
769
784
|
property :logs_panel, as: 'logsPanel', class: Google::Apis::MonitoringV1::LogsPanel, decorator: Google::Apis::MonitoringV1::LogsPanel::Representation
|
770
785
|
|
771
786
|
property :scorecard, as: 'scorecard', class: Google::Apis::MonitoringV1::Scorecard, decorator: Google::Apis::MonitoringV1::Scorecard::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.
|
4
|
+
version: 0.20.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-21 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v1/v0.20.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: []
|