google-apis-monitoring_v3 0.67.0 → 0.68.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: fe171b394d074b12ce04ed8cc1bc459543c708c6cf1afd13510d07b9d2fddc39
|
4
|
+
data.tar.gz: 51a95d30eef1e36421c7a4228772bb91e7f79adae97681ee44c6567d7c6bb4d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5957094ff78af716a43b822762cd8f8cf9df04f5437f5f9279c2c9a0d9f4aa0585341ac35b524e8dce05e111c357aa07c1a8473c2bfdd57bb22b3975d4941975
|
7
|
+
data.tar.gz: cd99a6d608e75783f852650c103cfb911f86575a87ce0009af596b675cbf1f61f9d36d30f0316a74dfc7995de6f77ebb5a28790443cf1b064a6e59b3d0a79ac6
|
data/CHANGELOG.md
CHANGED
@@ -2980,6 +2980,11 @@ module Google
|
|
2980
2980
|
# @return [String]
|
2981
2981
|
attr_accessor :sample_period
|
2982
2982
|
|
2983
|
+
# The scope of the timeseries data of the metric.
|
2984
|
+
# Corresponds to the JSON property `timeSeriesResourceHierarchyLevel`
|
2985
|
+
# @return [Array<String>]
|
2986
|
+
attr_accessor :time_series_resource_hierarchy_level
|
2987
|
+
|
2983
2988
|
def initialize(**args)
|
2984
2989
|
update!(**args)
|
2985
2990
|
end
|
@@ -2989,6 +2994,7 @@ module Google
|
|
2989
2994
|
@ingest_delay = args[:ingest_delay] if args.key?(:ingest_delay)
|
2990
2995
|
@launch_stage = args[:launch_stage] if args.key?(:launch_stage)
|
2991
2996
|
@sample_period = args[:sample_period] if args.key?(:sample_period)
|
2997
|
+
@time_series_resource_hierarchy_level = args[:time_series_resource_hierarchy_level] if args.key?(:time_series_resource_hierarchy_level)
|
2992
2998
|
end
|
2993
2999
|
end
|
2994
3000
|
|
@@ -3905,7 +3911,9 @@ module Google
|
|
3905
3911
|
end
|
3906
3912
|
end
|
3907
3913
|
|
3908
|
-
# The QueryTimeSeries request.
|
3914
|
+
# The QueryTimeSeries request. For information about the status of Monitoring
|
3915
|
+
# Query Language (MQL), see the MQL deprecation notice (https://cloud.google.com/
|
3916
|
+
# stackdriver/docs/deprecations/mql).
|
3909
3917
|
class QueryTimeSeriesRequest
|
3910
3918
|
include Google::Apis::Core::Hashable
|
3911
3919
|
|
@@ -3939,7 +3947,9 @@ module Google
|
|
3939
3947
|
end
|
3940
3948
|
end
|
3941
3949
|
|
3942
|
-
# The QueryTimeSeries response.
|
3950
|
+
# The QueryTimeSeries response. For information about the status of Monitoring
|
3951
|
+
# Query Language (MQL), see the MQL deprecation notice (https://cloud.google.com/
|
3952
|
+
# stackdriver/docs/deprecations/mql).
|
3943
3953
|
class QueryTimeSeriesResponse
|
3944
3954
|
include Google::Apis::Core::Hashable
|
3945
3955
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module MonitoringV3
|
18
18
|
# Version of the google-apis-monitoring_v3 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.68.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240829"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1457,6 +1457,7 @@ module Google
|
|
1457
1457
|
property :ingest_delay, as: 'ingestDelay'
|
1458
1458
|
property :launch_stage, as: 'launchStage'
|
1459
1459
|
property :sample_period, as: 'samplePeriod'
|
1460
|
+
collection :time_series_resource_hierarchy_level, as: 'timeSeriesResourceHierarchyLevel'
|
1460
1461
|
end
|
1461
1462
|
end
|
1462
1463
|
|
@@ -1946,7 +1946,10 @@ module Google
|
|
1946
1946
|
execute_or_queue_command(command, &block)
|
1947
1947
|
end
|
1948
1948
|
|
1949
|
-
# Queries time series using Monitoring Query Language.
|
1949
|
+
# Queries time series by using Monitoring Query Language (MQL). We recommend
|
1950
|
+
# using PromQL instead of MQL. For more information about the status of MQL, see
|
1951
|
+
# the MQL deprecation notice (https://cloud.google.com/stackdriver/docs/
|
1952
|
+
# deprecations/mql).
|
1950
1953
|
# @param [String] name
|
1951
1954
|
# Required. The project (https://cloud.google.com/monitoring/api/v3#project_name)
|
1952
1955
|
# on which to execute the request. The format is: projects/[
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-monitoring_v3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.68.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: 2024-
|
11
|
+
date: 2024-09-15 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_v3/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v3/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v3/v0.68.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-monitoring_v3
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|