google-apis-monitoring_v1 0.58.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
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-monitoring_v1
|
|
2
2
|
|
|
3
|
+
### v0.60.0 (2026-01-18)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260108
|
|
6
|
+
|
|
7
|
+
### v0.59.0 (2025-08-31)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20250821
|
|
10
|
+
|
|
3
11
|
### v0.58.0 (2025-08-03)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250723
|
|
@@ -670,8 +670,9 @@ module Google
|
|
|
670
670
|
class Dimension
|
|
671
671
|
include Google::Apis::Core::Hashable
|
|
672
672
|
|
|
673
|
-
# Required.
|
|
674
|
-
# the
|
|
673
|
+
# Required. For widgets that use SQL queries, set the value to the name of the
|
|
674
|
+
# column in the results table whose data is charted. For a histogram that uses a
|
|
675
|
+
# time series query, set the value of this field to metric_value.
|
|
675
676
|
# Corresponds to the JSON property `column`
|
|
676
677
|
# @return [String]
|
|
677
678
|
attr_accessor :column
|
|
@@ -691,14 +692,18 @@ module Google
|
|
|
691
692
|
# @return [Float]
|
|
692
693
|
attr_accessor :float_bin_size
|
|
693
694
|
|
|
694
|
-
#
|
|
695
|
-
# count is not enforced.
|
|
695
|
+
# For widgets that use SQL queries, the limit to the number of bins to generate.
|
|
696
|
+
# When 0 is specified, the maximum count is not enforced. For a histogram that
|
|
697
|
+
# uses a time series query, the exact number of bins to generate. If not
|
|
698
|
+
# specified or the value is 0, then the histogram determines the number of bins
|
|
699
|
+
# to use.
|
|
696
700
|
# Corresponds to the JSON property `maxBinCount`
|
|
697
701
|
# @return [Fixnum]
|
|
698
702
|
attr_accessor :max_bin_count
|
|
699
703
|
|
|
700
704
|
# numeric_bin_size is used when the column type used for a dimension is numeric
|
|
701
|
-
# or string.
|
|
705
|
+
# or string. If the column field is set to metric_value, then numericBinSize
|
|
706
|
+
# overrides maxBinCount.
|
|
702
707
|
# Corresponds to the JSON property `numericBinSize`
|
|
703
708
|
# @return [Fixnum]
|
|
704
709
|
attr_accessor :numeric_bin_size
|
|
@@ -715,8 +720,8 @@ module Google
|
|
|
715
720
|
# @return [String]
|
|
716
721
|
attr_accessor :sort_order
|
|
717
722
|
|
|
718
|
-
# time_bin_size is used when the data type specified
|
|
719
|
-
# and the bin size is determined by a time duration. If column_type is DATE,
|
|
723
|
+
# time_bin_size is used when the data type of the specified dimension is a time
|
|
724
|
+
# type and the bin size is determined by a time duration. If column_type is DATE,
|
|
720
725
|
# this must be a whole value multiple of 1 day. If column_type is TIME, this
|
|
721
726
|
# must be less than or equal to 24 hours.
|
|
722
727
|
# Corresponds to the JSON property `timeBinSize`
|
|
@@ -956,6 +961,26 @@ module Google
|
|
|
956
961
|
end
|
|
957
962
|
end
|
|
958
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
|
+
|
|
959
984
|
# A gauge chart shows where the current value sits within a pre-defined range.
|
|
960
985
|
# The upper and lower bounds should define the possible range of values for the
|
|
961
986
|
# scorecard's query (inclusive).
|
|
@@ -2984,6 +3009,12 @@ module Google
|
|
|
2984
3009
|
# @return [Google::Apis::MonitoringV1::ErrorReportingPanel]
|
|
2985
3010
|
attr_accessor :error_reporting_panel
|
|
2986
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
|
+
|
|
2987
3018
|
# Optional. The widget id. Ids may be made up of alphanumerics, dashes and
|
|
2988
3019
|
# underscores. Widget ids are optional.
|
|
2989
3020
|
# Corresponds to the JSON property `id`
|
|
@@ -3064,6 +3095,7 @@ module Google
|
|
|
3064
3095
|
@blank = args[:blank] if args.key?(:blank)
|
|
3065
3096
|
@collapsible_group = args[:collapsible_group] if args.key?(:collapsible_group)
|
|
3066
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)
|
|
3067
3099
|
@id = args[:id] if args.key?(:id)
|
|
3068
3100
|
@incident_list = args[:incident_list] if args.key?(:incident_list)
|
|
3069
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:
|