google-apis-monitoring_v1 0.59.0 → 0.60.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1474bc393f254d331fd783cb364091d59cacb2b2aa7178b9d043166e03d34495
|
|
4
|
+
data.tar.gz: c926150f76392ee194dd9b6f73f72436bfe8e925e8986d21f66b9ebe940a27e9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 40da5c057a39b8eb79b8a32e939649ac619e02ca8608724f8da2ba2c0849f6abb01eb5434b4723520c74467ab25835771ec93bb5135fd3bd69db5330dfd00084
|
|
7
|
+
data.tar.gz: b7f59b5c334eea7f17606afecc9ba933774247746dc2df4644e4b96b978135233a9b144e87a41198692d89bb908749ca44f24168ba9a23ee9b63fd389313c1b3
|
data/CHANGELOG.md
CHANGED
|
@@ -961,6 +961,26 @@ module Google
|
|
|
961
961
|
end
|
|
962
962
|
end
|
|
963
963
|
|
|
964
|
+
# A widget that displays an input field to change the value of a template
|
|
965
|
+
# variable.
|
|
966
|
+
class FilterControl
|
|
967
|
+
include Google::Apis::Core::Hashable
|
|
968
|
+
|
|
969
|
+
# Name of the template variable the widget affects.
|
|
970
|
+
# Corresponds to the JSON property `templateVariable`
|
|
971
|
+
# @return [String]
|
|
972
|
+
attr_accessor :template_variable
|
|
973
|
+
|
|
974
|
+
def initialize(**args)
|
|
975
|
+
update!(**args)
|
|
976
|
+
end
|
|
977
|
+
|
|
978
|
+
# Update properties of this object
|
|
979
|
+
def update!(**args)
|
|
980
|
+
@template_variable = args[:template_variable] if args.key?(:template_variable)
|
|
981
|
+
end
|
|
982
|
+
end
|
|
983
|
+
|
|
964
984
|
# A gauge chart shows where the current value sits within a pre-defined range.
|
|
965
985
|
# The upper and lower bounds should define the possible range of values for the
|
|
966
986
|
# scorecard's query (inclusive).
|
|
@@ -2989,6 +3009,12 @@ module Google
|
|
|
2989
3009
|
# @return [Google::Apis::MonitoringV1::ErrorReportingPanel]
|
|
2990
3010
|
attr_accessor :error_reporting_panel
|
|
2991
3011
|
|
|
3012
|
+
# A widget that displays an input field to change the value of a template
|
|
3013
|
+
# variable.
|
|
3014
|
+
# Corresponds to the JSON property `filterControl`
|
|
3015
|
+
# @return [Google::Apis::MonitoringV1::FilterControl]
|
|
3016
|
+
attr_accessor :filter_control
|
|
3017
|
+
|
|
2992
3018
|
# Optional. The widget id. Ids may be made up of alphanumerics, dashes and
|
|
2993
3019
|
# underscores. Widget ids are optional.
|
|
2994
3020
|
# Corresponds to the JSON property `id`
|
|
@@ -3069,6 +3095,7 @@ module Google
|
|
|
3069
3095
|
@blank = args[:blank] if args.key?(:blank)
|
|
3070
3096
|
@collapsible_group = args[:collapsible_group] if args.key?(:collapsible_group)
|
|
3071
3097
|
@error_reporting_panel = args[:error_reporting_panel] if args.key?(:error_reporting_panel)
|
|
3098
|
+
@filter_control = args[:filter_control] if args.key?(:filter_control)
|
|
3072
3099
|
@id = args[:id] if args.key?(:id)
|
|
3073
3100
|
@incident_list = args[:incident_list] if args.key?(:incident_list)
|
|
3074
3101
|
@logs_panel = args[:logs_panel] if args.key?(:logs_panel)
|
|
@@ -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.60.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260108"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -148,6 +148,12 @@ module Google
|
|
|
148
148
|
include Google::Apis::Core::JsonObjectSupport
|
|
149
149
|
end
|
|
150
150
|
|
|
151
|
+
class FilterControl
|
|
152
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
153
|
+
|
|
154
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
155
|
+
end
|
|
156
|
+
|
|
151
157
|
class GaugeView
|
|
152
158
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
153
159
|
|
|
@@ -707,6 +713,13 @@ module Google
|
|
|
707
713
|
end
|
|
708
714
|
end
|
|
709
715
|
|
|
716
|
+
class FilterControl
|
|
717
|
+
# @private
|
|
718
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
719
|
+
property :template_variable, as: 'templateVariable'
|
|
720
|
+
end
|
|
721
|
+
end
|
|
722
|
+
|
|
710
723
|
class GaugeView
|
|
711
724
|
# @private
|
|
712
725
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1243,6 +1256,8 @@ module Google
|
|
|
1243
1256
|
|
|
1244
1257
|
property :error_reporting_panel, as: 'errorReportingPanel', class: Google::Apis::MonitoringV1::ErrorReportingPanel, decorator: Google::Apis::MonitoringV1::ErrorReportingPanel::Representation
|
|
1245
1258
|
|
|
1259
|
+
property :filter_control, as: 'filterControl', class: Google::Apis::MonitoringV1::FilterControl, decorator: Google::Apis::MonitoringV1::FilterControl::Representation
|
|
1260
|
+
|
|
1246
1261
|
property :id, as: 'id'
|
|
1247
1262
|
property :incident_list, as: 'incidentList', class: Google::Apis::MonitoringV1::IncidentList, decorator: Google::Apis::MonitoringV1::IncidentList::Representation
|
|
1248
1263
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.60.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-monitoring_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v1/v0.60.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-monitoring_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|