google-apis-monitoring_v3 0.18.0 → 0.19.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 +5 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/monitoring_v3/classes.rb +69 -69
- data/lib/google/apis/monitoring_v3/gem_version.rb +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f9cc2a1932f41055c8acfb204226aee4e97b6122d4637c9a95d2c33b774ada44
|
4
|
+
data.tar.gz: cbb153e475eb28e4885a7dd878ae68835273314a77fd1b5c485631b91948badf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e46350608d6f6fc0c4adc945f7ad97cd5d5f59846ce498bc8ff0fb508be8366b519ed92cd8855dea39d0fb61f509c926bd24bea0e82e7c5d378759ed3b89fd79
|
7
|
+
data.tar.gz: ff999c1bbcfae642333f643f51a21c3c78b49c2d52e0235315d9a30f163e9b61849019ddd809be91c5617e8109921871342da2a67d9999896ef7d091cd5dabf6
|
data/CHANGELOG.md
CHANGED
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/monitoring_v3"
|
|
51
51
|
client = Google::Apis::MonitoringV3::MonitoringService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
55
55
|
```
|
56
56
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
@@ -1479,9 +1479,9 @@ module Google
|
|
1479
1479
|
# URL_ENCODED, the body passed in must be URL-encoded. Users can provide a
|
1480
1480
|
# Content-Length header via the headers field or the API will do so. If the
|
1481
1481
|
# request_method is GET and body is not empty, the API will return an error. The
|
1482
|
-
# maximum byte size is 1 megabyte.
|
1483
|
-
#
|
1484
|
-
#
|
1482
|
+
# maximum byte size is 1 megabyte.Note: If client libraries aren't used (which
|
1483
|
+
# performs the conversion automatically) base64 encode your body data since the
|
1484
|
+
# field is of bytes type.
|
1485
1485
|
# Corresponds to the JSON property `body`
|
1486
1486
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
1487
1487
|
# @return [String]
|
@@ -3146,28 +3146,28 @@ module Google
|
|
3146
3146
|
# It extends from the start time to the end time, and includes both: [startTime,
|
3147
3147
|
# endTime]. Valid time intervals depend on the MetricKind (https://cloud.google.
|
3148
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
|
3150
|
-
#
|
3151
|
-
#
|
3152
|
-
#
|
3153
|
-
# the
|
3154
|
-
#
|
3155
|
-
#
|
3156
|
-
#
|
3157
|
-
#
|
3158
|
-
#
|
3159
|
-
#
|
3160
|
-
#
|
3161
|
-
#
|
3162
|
-
#
|
3163
|
-
#
|
3164
|
-
#
|
3165
|
-
#
|
3166
|
-
#
|
3167
|
-
#
|
3168
|
-
#
|
3169
|
-
#
|
3170
|
-
# time
|
3149
|
+
# the metric value. The end time must not be earlier than the start time, and
|
3150
|
+
# the end time must not be more than 25 hours in the past or more than five
|
3151
|
+
# minutes in the future. For GAUGE metrics, the startTime value is technically
|
3152
|
+
# optional; if no value is specified, the start time defaults to the value of
|
3153
|
+
# the end time, and the interval represents a single point in time. If both
|
3154
|
+
# start and end times are specified, they must be identical. Such an interval is
|
3155
|
+
# valid only for GAUGE metrics, which are point-in-time measurements. The end
|
3156
|
+
# time of a new interval must be at least a millisecond after the end time of
|
3157
|
+
# the previous interval. For DELTA metrics, the start time and end time must
|
3158
|
+
# specify a non-zero interval, with subsequent points specifying contiguous and
|
3159
|
+
# non-overlapping intervals. For DELTA metrics, the start time of the next
|
3160
|
+
# interval must be at least a millisecond after the end time of the previous
|
3161
|
+
# interval. For CUMULATIVE metrics, the start time and end time must specify a
|
3162
|
+
# non-zero interval, with subsequent points specifying the same start time and
|
3163
|
+
# increasing end times, until an event resets the cumulative value to zero and
|
3164
|
+
# sets a new start time for the following points. The new start time must be at
|
3165
|
+
# least a millisecond after the end time of the previous interval. The start
|
3166
|
+
# time of a new interval must be at least a millisecond after the end time of
|
3167
|
+
# the previous interval because intervals are closed. If the start time of a new
|
3168
|
+
# interval is the same as the end time of the previous interval, then data
|
3169
|
+
# written at the new start time could overwrite data written at the previous end
|
3170
|
+
# time.
|
3171
3171
|
# Corresponds to the JSON property `interval`
|
3172
3172
|
# @return [Google::Apis::MonitoringV3::TimeInterval]
|
3173
3173
|
attr_accessor :interval
|
@@ -3201,28 +3201,28 @@ module Google
|
|
3201
3201
|
# It extends from the start time to the end time, and includes both: [startTime,
|
3202
3202
|
# endTime]. Valid time intervals depend on the MetricKind (https://cloud.google.
|
3203
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
|
3205
|
-
#
|
3206
|
-
#
|
3207
|
-
#
|
3208
|
-
# the
|
3209
|
-
#
|
3210
|
-
#
|
3211
|
-
#
|
3212
|
-
#
|
3213
|
-
#
|
3214
|
-
#
|
3215
|
-
#
|
3216
|
-
#
|
3217
|
-
#
|
3218
|
-
#
|
3219
|
-
#
|
3220
|
-
#
|
3221
|
-
#
|
3222
|
-
#
|
3223
|
-
#
|
3224
|
-
#
|
3225
|
-
# time
|
3204
|
+
# the metric value. The end time must not be earlier than the start time, and
|
3205
|
+
# the end time must not be more than 25 hours in the past or more than five
|
3206
|
+
# minutes in the future. For GAUGE metrics, the startTime value is technically
|
3207
|
+
# optional; if no value is specified, the start time defaults to the value of
|
3208
|
+
# the end time, and the interval represents a single point in time. If both
|
3209
|
+
# start and end times are specified, they must be identical. Such an interval is
|
3210
|
+
# valid only for GAUGE metrics, which are point-in-time measurements. The end
|
3211
|
+
# time of a new interval must be at least a millisecond after the end time of
|
3212
|
+
# the previous interval. For DELTA metrics, the start time and end time must
|
3213
|
+
# specify a non-zero interval, with subsequent points specifying contiguous and
|
3214
|
+
# non-overlapping intervals. For DELTA metrics, the start time of the next
|
3215
|
+
# interval must be at least a millisecond after the end time of the previous
|
3216
|
+
# interval. For CUMULATIVE metrics, the start time and end time must specify a
|
3217
|
+
# non-zero interval, with subsequent points specifying the same start time and
|
3218
|
+
# increasing end times, until an event resets the cumulative value to zero and
|
3219
|
+
# sets a new start time for the following points. The new start time must be at
|
3220
|
+
# least a millisecond after the end time of the previous interval. The start
|
3221
|
+
# time of a new interval must be at least a millisecond after the end time of
|
3222
|
+
# the previous interval because intervals are closed. If the start time of a new
|
3223
|
+
# interval is the same as the end time of the previous interval, then data
|
3224
|
+
# written at the new start time could overwrite data written at the previous end
|
3225
|
+
# time.
|
3226
3226
|
# Corresponds to the JSON property `timeInterval`
|
3227
3227
|
# @return [Google::Apis::MonitoringV3::TimeInterval]
|
3228
3228
|
attr_accessor :time_interval
|
@@ -3766,28 +3766,28 @@ module Google
|
|
3766
3766
|
# It extends from the start time to the end time, and includes both: [startTime,
|
3767
3767
|
# endTime]. Valid time intervals depend on the MetricKind (https://cloud.google.
|
3768
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
|
3770
|
-
#
|
3771
|
-
#
|
3772
|
-
#
|
3773
|
-
# the
|
3774
|
-
#
|
3775
|
-
#
|
3776
|
-
#
|
3777
|
-
#
|
3778
|
-
#
|
3779
|
-
#
|
3780
|
-
#
|
3781
|
-
#
|
3782
|
-
#
|
3783
|
-
#
|
3784
|
-
#
|
3785
|
-
#
|
3786
|
-
#
|
3787
|
-
#
|
3788
|
-
#
|
3789
|
-
#
|
3790
|
-
# time
|
3769
|
+
# the metric value. The end time must not be earlier than the start time, and
|
3770
|
+
# the end time must not be more than 25 hours in the past or more than five
|
3771
|
+
# minutes in the future. For GAUGE metrics, the startTime value is technically
|
3772
|
+
# optional; if no value is specified, the start time defaults to the value of
|
3773
|
+
# the end time, and the interval represents a single point in time. If both
|
3774
|
+
# start and end times are specified, they must be identical. Such an interval is
|
3775
|
+
# valid only for GAUGE metrics, which are point-in-time measurements. The end
|
3776
|
+
# time of a new interval must be at least a millisecond after the end time of
|
3777
|
+
# the previous interval. For DELTA metrics, the start time and end time must
|
3778
|
+
# specify a non-zero interval, with subsequent points specifying contiguous and
|
3779
|
+
# non-overlapping intervals. For DELTA metrics, the start time of the next
|
3780
|
+
# interval must be at least a millisecond after the end time of the previous
|
3781
|
+
# interval. For CUMULATIVE metrics, the start time and end time must specify a
|
3782
|
+
# non-zero interval, with subsequent points specifying the same start time and
|
3783
|
+
# increasing end times, until an event resets the cumulative value to zero and
|
3784
|
+
# sets a new start time for the following points. The new start time must be at
|
3785
|
+
# least a millisecond after the end time of the previous interval. The start
|
3786
|
+
# time of a new interval must be at least a millisecond after the end time of
|
3787
|
+
# the previous interval because intervals are closed. If the start time of a new
|
3788
|
+
# interval is the same as the end time of the previous interval, then data
|
3789
|
+
# written at the new start time could overwrite data written at the previous end
|
3790
|
+
# time.
|
3791
3791
|
class TimeInterval
|
3792
3792
|
include Google::Apis::Core::Hashable
|
3793
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.19.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 = "20211213"
|
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.19.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:
|
11
|
+
date: 2022-01-10 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.19.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.3.4
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Monitoring API V3
|