google-apis-monitoring_v1 0.57.0 → 0.59.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/monitoring_v1/classes.rb +25 -10
- data/lib/google/apis/monitoring_v1/gem_version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d74f66ec7cd85a76c2fe0e6b27e6844095f609126a0284189a7c20d46a30dfff
|
4
|
+
data.tar.gz: 9ac683db6518f5b314589e5489681fd382d359fa1ed9081edbd4e12d976b1e33
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b0bb0e4e6d11432d72c02dfb024c072c6b1fd12d0224d7ba18c459d80a133c22541865dee75f9a1bf3db5bcee00d395a1a2a45c63e25b12a48c274f54768f771
|
7
|
+
data.tar.gz: c4c94926d5ed1a77684be26bf505719dc51db2b0c2c1631d5cf10d6490809dd85c72384cc62c7d256b23edda85a7d4de0d2552a8dffa0bfce572300b152b4865
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-monitoring_v1
|
2
2
|
|
3
|
+
### v0.59.0 (2025-08-31)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250821
|
6
|
+
|
7
|
+
### v0.58.0 (2025-08-03)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250723
|
10
|
+
|
3
11
|
### v0.57.0 (2025-06-08)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250529
|
@@ -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`
|
@@ -876,7 +881,11 @@ module Google
|
|
876
881
|
end
|
877
882
|
end
|
878
883
|
|
879
|
-
# A single field of a message type.
|
884
|
+
# A single field of a message type.New usages of this message as an alternative
|
885
|
+
# to FieldDescriptorProto are strongly discouraged. This message does not
|
886
|
+
# reliability preserve all information necessary to model the schema and
|
887
|
+
# preserve semantics. Instead make use of FileDescriptorSet which preserves the
|
888
|
+
# necessary information.
|
880
889
|
class Field
|
881
890
|
include Google::Apis::Core::Hashable
|
882
891
|
|
@@ -1483,7 +1492,9 @@ module Google
|
|
1483
1492
|
end
|
1484
1493
|
|
1485
1494
|
# A protocol buffer option, which can be attached to a message, field,
|
1486
|
-
# enumeration, etc.
|
1495
|
+
# enumeration, etc.New usages of this message as an alternative to FileOptions,
|
1496
|
+
# MessageOptions, FieldOptions, EnumOptions, EnumValueOptions, ServiceOptions,
|
1497
|
+
# or MethodOptions are strongly discouraged.
|
1487
1498
|
class Option
|
1488
1499
|
include Google::Apis::Core::Hashable
|
1489
1500
|
|
@@ -2870,7 +2881,11 @@ module Google
|
|
2870
2881
|
end
|
2871
2882
|
end
|
2872
2883
|
|
2873
|
-
# A protocol buffer message type.
|
2884
|
+
# A protocol buffer message type.New usages of this message as an alternative to
|
2885
|
+
# DescriptorProto are strongly discouraged. This message does not reliability
|
2886
|
+
# preserve all information necessary to model the schema and preserve semantics.
|
2887
|
+
# Instead make use of FileDescriptorSet which preserves the necessary
|
2888
|
+
# information.
|
2874
2889
|
class Type
|
2875
2890
|
include Google::Apis::Core::Hashable
|
2876
2891
|
|
@@ -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.59.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 = "20250821"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
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.59.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.59.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:
|