google-apis-monitoring_v3 0.17.0 → 0.18.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 +4 -0
- data/lib/google/apis/monitoring_v3/classes.rb +87 -78
- data/lib/google/apis/monitoring_v3/gem_version.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bffc04a378fb152fc1fdaf5a6cbed638ca4207c6021dfac338bb36a9ac6b95f3
|
4
|
+
data.tar.gz: f788f9d3d57489ee6ae97ba54a9a4d8b575781fe3856d3ad0d81b62a9f31fcdb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 21014d4aea7dea10e5e4f9da4db8f66b79bcb95eaf416970012cb556c8fe7bafeb2b0b87906261908563106081261b8dd717a804e0db44558a6e298d75cd0043
|
7
|
+
data.tar.gz: 5c61acd6acc1082342d93f0f14e5897ca592376cb9a6b5a9ef648d02edcc3a5c0a9de1feacc7d8be68b30dd01d8fb8c866ad12e5c412f80e4e9c7472a9234dd7
|
data/CHANGELOG.md
CHANGED
@@ -3139,32 +3139,35 @@ module Google
|
|
3139
3139
|
class Point
|
3140
3140
|
include Google::Apis::Core::Hashable
|
3141
3141
|
|
3142
|
-
#
|
3143
|
-
#
|
3144
|
-
#
|
3145
|
-
#
|
3146
|
-
#
|
3147
|
-
#
|
3148
|
-
#
|
3149
|
-
#
|
3150
|
-
# the
|
3151
|
-
#
|
3152
|
-
#
|
3153
|
-
#
|
3154
|
-
#
|
3155
|
-
#
|
3156
|
-
#
|
3157
|
-
#
|
3158
|
-
#
|
3159
|
-
#
|
3160
|
-
#
|
3161
|
-
#
|
3162
|
-
#
|
3163
|
-
#
|
3164
|
-
#
|
3165
|
-
#
|
3166
|
-
#
|
3167
|
-
# time
|
3142
|
+
# Describes a time interval: Reads: A half-open time interval. It includes the
|
3143
|
+
# end time but excludes the start time: (startTime, endTime]. The start time
|
3144
|
+
# must be specified, must be earlier than the end time, and should be no older
|
3145
|
+
# than the data retention period for the metric. Writes: A closed time interval.
|
3146
|
+
# It extends from the start time to the end time, and includes both: [startTime,
|
3147
|
+
# endTime]. Valid time intervals depend on the MetricKind (https://cloud.google.
|
3148
|
+
# com/monitoring/api/ref_v3/rest/v3/projects.metricDescriptors#MetricKind) of
|
3149
|
+
# the metric value. The end time must not be earlier than the start time. When
|
3150
|
+
# writing data points, the start time must not be more than 25 hours in the past
|
3151
|
+
# and the end time must not be more than five minutes in the future. For GAUGE
|
3152
|
+
# metrics, the startTime value is technically optional; if no value is specified,
|
3153
|
+
# the start time defaults to the value of the end time, and the interval
|
3154
|
+
# represents a single point in time. If both start and end times are specified,
|
3155
|
+
# they must be identical. Such an interval is valid only for GAUGE metrics,
|
3156
|
+
# which are point-in-time measurements. The end time of a new interval must be
|
3157
|
+
# at least a millisecond after the end time of the previous interval. For DELTA
|
3158
|
+
# metrics, the start time and end time must specify a non-zero interval, with
|
3159
|
+
# subsequent points specifying contiguous and non-overlapping intervals. For
|
3160
|
+
# DELTA metrics, the start time of the next interval must be at least a
|
3161
|
+
# millisecond after the end time of the previous interval. For CUMULATIVE
|
3162
|
+
# metrics, the start time and end time must specify a non-zero interval, with
|
3163
|
+
# subsequent points specifying the same start time and increasing end times,
|
3164
|
+
# until an event resets the cumulative value to zero and sets a new start time
|
3165
|
+
# for the following points. The new start time must be at least a millisecond
|
3166
|
+
# after the end time of the previous interval. The start time of a new interval
|
3167
|
+
# must be at least a millisecond after the end time of the previous interval
|
3168
|
+
# because intervals are closed. If the start time of a new interval is the same
|
3169
|
+
# as the end time of the previous interval, then data written at the new start
|
3170
|
+
# time could overwrite data written at the previous end time.
|
3168
3171
|
# Corresponds to the JSON property `interval`
|
3169
3172
|
# @return [Google::Apis::MonitoringV3::TimeInterval]
|
3170
3173
|
attr_accessor :interval
|
@@ -3191,32 +3194,35 @@ module Google
|
|
3191
3194
|
class PointData
|
3192
3195
|
include Google::Apis::Core::Hashable
|
3193
3196
|
|
3194
|
-
#
|
3195
|
-
#
|
3196
|
-
#
|
3197
|
-
#
|
3198
|
-
#
|
3199
|
-
#
|
3200
|
-
#
|
3201
|
-
#
|
3202
|
-
# the
|
3203
|
-
#
|
3204
|
-
#
|
3205
|
-
#
|
3206
|
-
#
|
3207
|
-
#
|
3208
|
-
#
|
3209
|
-
#
|
3210
|
-
#
|
3211
|
-
#
|
3212
|
-
#
|
3213
|
-
#
|
3214
|
-
#
|
3215
|
-
#
|
3216
|
-
#
|
3217
|
-
#
|
3218
|
-
#
|
3219
|
-
# time
|
3197
|
+
# Describes a time interval: Reads: A half-open time interval. It includes the
|
3198
|
+
# end time but excludes the start time: (startTime, endTime]. The start time
|
3199
|
+
# must be specified, must be earlier than the end time, and should be no older
|
3200
|
+
# than the data retention period for the metric. Writes: A closed time interval.
|
3201
|
+
# It extends from the start time to the end time, and includes both: [startTime,
|
3202
|
+
# endTime]. Valid time intervals depend on the MetricKind (https://cloud.google.
|
3203
|
+
# com/monitoring/api/ref_v3/rest/v3/projects.metricDescriptors#MetricKind) of
|
3204
|
+
# the metric value. The end time must not be earlier than the start time. When
|
3205
|
+
# writing data points, the start time must not be more than 25 hours in the past
|
3206
|
+
# and the end time must not be more than five minutes in the future. For GAUGE
|
3207
|
+
# metrics, the startTime value is technically optional; if no value is specified,
|
3208
|
+
# the start time defaults to the value of the end time, and the interval
|
3209
|
+
# represents a single point in time. If both start and end times are specified,
|
3210
|
+
# they must be identical. Such an interval is valid only for GAUGE metrics,
|
3211
|
+
# which are point-in-time measurements. The end time of a new interval must be
|
3212
|
+
# at least a millisecond after the end time of the previous interval. For DELTA
|
3213
|
+
# metrics, the start time and end time must specify a non-zero interval, with
|
3214
|
+
# subsequent points specifying contiguous and non-overlapping intervals. For
|
3215
|
+
# DELTA metrics, the start time of the next interval must be at least a
|
3216
|
+
# millisecond after the end time of the previous interval. For CUMULATIVE
|
3217
|
+
# metrics, the start time and end time must specify a non-zero interval, with
|
3218
|
+
# subsequent points specifying the same start time and increasing end times,
|
3219
|
+
# until an event resets the cumulative value to zero and sets a new start time
|
3220
|
+
# for the following points. The new start time must be at least a millisecond
|
3221
|
+
# after the end time of the previous interval. The start time of a new interval
|
3222
|
+
# must be at least a millisecond after the end time of the previous interval
|
3223
|
+
# because intervals are closed. If the start time of a new interval is the same
|
3224
|
+
# as the end time of the previous interval, then data written at the new start
|
3225
|
+
# time could overwrite data written at the previous end time.
|
3220
3226
|
# Corresponds to the JSON property `timeInterval`
|
3221
3227
|
# @return [Google::Apis::MonitoringV3::TimeInterval]
|
3222
3228
|
attr_accessor :time_interval
|
@@ -3753,32 +3759,35 @@ module Google
|
|
3753
3759
|
end
|
3754
3760
|
end
|
3755
3761
|
|
3756
|
-
#
|
3757
|
-
#
|
3758
|
-
#
|
3759
|
-
#
|
3760
|
-
#
|
3761
|
-
#
|
3762
|
-
#
|
3763
|
-
#
|
3764
|
-
# the
|
3765
|
-
#
|
3766
|
-
#
|
3767
|
-
#
|
3768
|
-
#
|
3769
|
-
#
|
3770
|
-
#
|
3771
|
-
#
|
3772
|
-
#
|
3773
|
-
#
|
3774
|
-
#
|
3775
|
-
#
|
3776
|
-
#
|
3777
|
-
#
|
3778
|
-
#
|
3779
|
-
#
|
3780
|
-
#
|
3781
|
-
# time
|
3762
|
+
# Describes a time interval: Reads: A half-open time interval. It includes the
|
3763
|
+
# end time but excludes the start time: (startTime, endTime]. The start time
|
3764
|
+
# must be specified, must be earlier than the end time, and should be no older
|
3765
|
+
# than the data retention period for the metric. Writes: A closed time interval.
|
3766
|
+
# It extends from the start time to the end time, and includes both: [startTime,
|
3767
|
+
# endTime]. Valid time intervals depend on the MetricKind (https://cloud.google.
|
3768
|
+
# com/monitoring/api/ref_v3/rest/v3/projects.metricDescriptors#MetricKind) of
|
3769
|
+
# the metric value. The end time must not be earlier than the start time. When
|
3770
|
+
# writing data points, the start time must not be more than 25 hours in the past
|
3771
|
+
# and the end time must not be more than five minutes in the future. For GAUGE
|
3772
|
+
# metrics, the startTime value is technically optional; if no value is specified,
|
3773
|
+
# the start time defaults to the value of the end time, and the interval
|
3774
|
+
# represents a single point in time. If both start and end times are specified,
|
3775
|
+
# they must be identical. Such an interval is valid only for GAUGE metrics,
|
3776
|
+
# which are point-in-time measurements. The end time of a new interval must be
|
3777
|
+
# at least a millisecond after the end time of the previous interval. For DELTA
|
3778
|
+
# metrics, the start time and end time must specify a non-zero interval, with
|
3779
|
+
# subsequent points specifying contiguous and non-overlapping intervals. For
|
3780
|
+
# DELTA metrics, the start time of the next interval must be at least a
|
3781
|
+
# millisecond after the end time of the previous interval. For CUMULATIVE
|
3782
|
+
# metrics, the start time and end time must specify a non-zero interval, with
|
3783
|
+
# subsequent points specifying the same start time and increasing end times,
|
3784
|
+
# until an event resets the cumulative value to zero and sets a new start time
|
3785
|
+
# for the following points. The new start time must be at least a millisecond
|
3786
|
+
# after the end time of the previous interval. The start time of a new interval
|
3787
|
+
# must be at least a millisecond after the end time of the previous interval
|
3788
|
+
# because intervals are closed. If the start time of a new interval is the same
|
3789
|
+
# as the end time of the previous interval, then data written at the new start
|
3790
|
+
# time could overwrite data written at the previous end time.
|
3782
3791
|
class TimeInterval
|
3783
3792
|
include Google::Apis::Core::Hashable
|
3784
3793
|
|
@@ -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.18.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20211201"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
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.18.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-12-06 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.18.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: []
|