google-apis-monitoring_v1 0.8.0 → 0.9.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: f126b0e68dd7f9cefb19fd10a7cb599a8f0494c8d1b092a4e4c870081eb70cf2
|
4
|
+
data.tar.gz: 80128f9c69e802aae4d2dd24ef2682f505330f1ef703c2ba251bc75cd5f8f63f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa19f1d8bf353cd2f3d9faf337da2ea22b49320158207d67a07543563a453eaf134656d5a409a5cd3607a917dcdd250479425032c574d4169f393c57c99375dc
|
7
|
+
data.tar.gz: ce68065eebcf5c1944faf8c7fdd596c5a8a37159cf23ec19db381b76dfe7e12722ca7afff16725bccee5ec70a9515e9e26f25f67b366b79939619548e1e00d3e
|
data/CHANGELOG.md
CHANGED
@@ -116,6 +116,26 @@ module Google
|
|
116
116
|
end
|
117
117
|
end
|
118
118
|
|
119
|
+
# A chart that displays alert policy data.
|
120
|
+
class AlertChart
|
121
|
+
include Google::Apis::Core::Hashable
|
122
|
+
|
123
|
+
# Required. The resource name of the alert policy. The format is: projects/[
|
124
|
+
# PROJECT_ID_OR_NUMBER]/alertPolicies/[ALERT_POLICY_ID]
|
125
|
+
# Corresponds to the JSON property `name`
|
126
|
+
# @return [String]
|
127
|
+
attr_accessor :name
|
128
|
+
|
129
|
+
def initialize(**args)
|
130
|
+
update!(**args)
|
131
|
+
end
|
132
|
+
|
133
|
+
# Update properties of this object
|
134
|
+
def update!(**args)
|
135
|
+
@name = args[:name] if args.key?(:name)
|
136
|
+
end
|
137
|
+
end
|
138
|
+
|
119
139
|
# A chart axis.
|
120
140
|
class Axis
|
121
141
|
include Google::Apis::Core::Hashable
|
@@ -1292,6 +1312,11 @@ module Google
|
|
1292
1312
|
class Widget
|
1293
1313
|
include Google::Apis::Core::Hashable
|
1294
1314
|
|
1315
|
+
# A chart that displays alert policy data.
|
1316
|
+
# Corresponds to the JSON property `alertChart`
|
1317
|
+
# @return [Google::Apis::MonitoringV1::AlertChart]
|
1318
|
+
attr_accessor :alert_chart
|
1319
|
+
|
1295
1320
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
1296
1321
|
# messages in your APIs. A typical example is to use it as the request or the
|
1297
1322
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -1328,6 +1353,7 @@ module Google
|
|
1328
1353
|
|
1329
1354
|
# Update properties of this object
|
1330
1355
|
def update!(**args)
|
1356
|
+
@alert_chart = args[:alert_chart] if args.key?(:alert_chart)
|
1331
1357
|
@blank = args[:blank] if args.key?(:blank)
|
1332
1358
|
@scorecard = args[:scorecard] if args.key?(:scorecard)
|
1333
1359
|
@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.9.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210625"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,6 +28,12 @@ module Google
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
29
29
|
end
|
30
30
|
|
31
|
+
class AlertChart
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
31
37
|
class Axis
|
32
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
39
|
|
@@ -236,6 +242,13 @@ module Google
|
|
236
242
|
end
|
237
243
|
end
|
238
244
|
|
245
|
+
class AlertChart
|
246
|
+
# @private
|
247
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
248
|
+
property :name, as: 'name'
|
249
|
+
end
|
250
|
+
end
|
251
|
+
|
239
252
|
class Axis
|
240
253
|
# @private
|
241
254
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -548,6 +561,8 @@ module Google
|
|
548
561
|
class Widget
|
549
562
|
# @private
|
550
563
|
class Representation < Google::Apis::Core::JsonRepresentation
|
564
|
+
property :alert_chart, as: 'alertChart', class: Google::Apis::MonitoringV1::AlertChart, decorator: Google::Apis::MonitoringV1::AlertChart::Representation
|
565
|
+
|
551
566
|
property :blank, as: 'blank', class: Google::Apis::MonitoringV1::Empty, decorator: Google::Apis::MonitoringV1::Empty::Representation
|
552
567
|
|
553
568
|
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.9.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: 2021-
|
11
|
+
date: 2021-07-05 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.
|
19
|
+
version: '0.4'
|
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.
|
29
|
+
version: '0.4'
|
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/master/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.9.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-monitoring_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|