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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 63bfeac745c978c6c5040ffab6b9151f1952d754200f6c1930b77c841bb8ce55
4
- data.tar.gz: b9448714b3437a09d07c4f745b8b7d63b890c0045ee9c2565e1e0c074f537ed1
3
+ metadata.gz: bffc04a378fb152fc1fdaf5a6cbed638ca4207c6021dfac338bb36a9ac6b95f3
4
+ data.tar.gz: f788f9d3d57489ee6ae97ba54a9a4d8b575781fe3856d3ad0d81b62a9f31fcdb
5
5
  SHA512:
6
- metadata.gz: 01fb1fda8b5b0e95460c13bf7e3b8aeaff15ea00aa169a454b3a32c901c1b597f5cafbe8bce2a2ab77cd4bc2659cc6c50e863947bf25378f684ac7f1dbe34c3b
7
- data.tar.gz: 1a2b9dd2f40fc68ed26911266e14501d6e638ab468970a556c7d21a20b020a90fef6d19afb6fc7fcbc3e62e7769bcd0336f3664bc60d44742afaef3bd8a96894
6
+ metadata.gz: 21014d4aea7dea10e5e4f9da4db8f66b79bcb95eaf416970012cb556c8fe7bafeb2b0b87906261908563106081261b8dd717a804e0db44558a6e298d75cd0043
7
+ data.tar.gz: 5c61acd6acc1082342d93f0f14e5897ca592376cb9a6b5a9ef648d02edcc3a5c0a9de1feacc7d8be68b30dd01d8fb8c866ad12e5c412f80e4e9c7472a9234dd7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-monitoring_v3
2
2
 
3
+ ### v0.18.0 (2021-12-04)
4
+
5
+ * Regenerated from discovery document revision 20211201
6
+
3
7
  ### v0.17.0 (2021-11-05)
4
8
 
5
9
  * Regenerated from discovery document revision 20211031
@@ -3139,32 +3139,35 @@ module Google
3139
3139
  class Point
3140
3140
  include Google::Apis::Core::Hashable
3141
3141
 
3142
- # A closed time interval. It extends from the start time to the end time, and
3143
- # includes both: [startTime, endTime]. Valid time intervals depend on the
3144
- # MetricKind (https://cloud.google.com/monitoring/api/ref_v3/rest/v3/projects.
3145
- # metricDescriptors#MetricKind) of the metric value. The end time must not be
3146
- # earlier than the start time. When writing data points, the start time must not
3147
- # be more than 25 hours in the past and the end time must not be more than five
3148
- # minutes in the future. For GAUGE metrics, the startTime value is technically
3149
- # optional; if no value is specified, the start time defaults to the value of
3150
- # the end time, and the interval represents a single point in time. If both
3151
- # start and end times are specified, they must be identical. Such an interval is
3152
- # valid only for GAUGE metrics, which are point-in-time measurements. The end
3153
- # time of a new interval must be at least a millisecond after the end time of
3154
- # the previous interval. For DELTA metrics, the start time and end time must
3155
- # specify a non-zero interval, with subsequent points specifying contiguous and
3156
- # non-overlapping intervals. For DELTA metrics, the start time of the next
3157
- # interval must be at least a millisecond after the end time of the previous
3158
- # interval. For CUMULATIVE metrics, the start time and end time must specify a
3159
- # non-zero interval, with subsequent points specifying the same start time and
3160
- # increasing end times, until an event resets the cumulative value to zero and
3161
- # sets a new start time for the following points. The new start time must be at
3162
- # least a millisecond after the end time of the previous interval. The start
3163
- # time of a new interval must be at least a millisecond after the end time of
3164
- # the previous interval because intervals are closed. If the start time of a new
3165
- # interval is the same as the end time of the previous interval, then data
3166
- # written at the new start time could overwrite data written at the previous end
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
- # A closed time interval. It extends from the start time to the end time, and
3195
- # includes both: [startTime, endTime]. Valid time intervals depend on the
3196
- # MetricKind (https://cloud.google.com/monitoring/api/ref_v3/rest/v3/projects.
3197
- # metricDescriptors#MetricKind) of the metric value. The end time must not be
3198
- # earlier than the start time. When writing data points, the start time must not
3199
- # be more than 25 hours in the past and the end time must not be more than five
3200
- # minutes in the future. For GAUGE metrics, the startTime value is technically
3201
- # optional; if no value is specified, the start time defaults to the value of
3202
- # the end time, and the interval represents a single point in time. If both
3203
- # start and end times are specified, they must be identical. Such an interval is
3204
- # valid only for GAUGE metrics, which are point-in-time measurements. The end
3205
- # time of a new interval must be at least a millisecond after the end time of
3206
- # the previous interval. For DELTA metrics, the start time and end time must
3207
- # specify a non-zero interval, with subsequent points specifying contiguous and
3208
- # non-overlapping intervals. For DELTA metrics, the start time of the next
3209
- # interval must be at least a millisecond after the end time of the previous
3210
- # interval. For CUMULATIVE metrics, the start time and end time must specify a
3211
- # non-zero interval, with subsequent points specifying the same start time and
3212
- # increasing end times, until an event resets the cumulative value to zero and
3213
- # sets a new start time for the following points. The new start time must be at
3214
- # least a millisecond after the end time of the previous interval. The start
3215
- # time of a new interval must be at least a millisecond after the end time of
3216
- # the previous interval because intervals are closed. If the start time of a new
3217
- # interval is the same as the end time of the previous interval, then data
3218
- # written at the new start time could overwrite data written at the previous end
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
- # A closed time interval. It extends from the start time to the end time, and
3757
- # includes both: [startTime, endTime]. Valid time intervals depend on the
3758
- # MetricKind (https://cloud.google.com/monitoring/api/ref_v3/rest/v3/projects.
3759
- # metricDescriptors#MetricKind) of the metric value. The end time must not be
3760
- # earlier than the start time. When writing data points, the start time must not
3761
- # be more than 25 hours in the past and the end time must not be more than five
3762
- # minutes in the future. For GAUGE metrics, the startTime value is technically
3763
- # optional; if no value is specified, the start time defaults to the value of
3764
- # the end time, and the interval represents a single point in time. If both
3765
- # start and end times are specified, they must be identical. Such an interval is
3766
- # valid only for GAUGE metrics, which are point-in-time measurements. The end
3767
- # time of a new interval must be at least a millisecond after the end time of
3768
- # the previous interval. For DELTA metrics, the start time and end time must
3769
- # specify a non-zero interval, with subsequent points specifying contiguous and
3770
- # non-overlapping intervals. For DELTA metrics, the start time of the next
3771
- # interval must be at least a millisecond after the end time of the previous
3772
- # interval. For CUMULATIVE metrics, the start time and end time must specify a
3773
- # non-zero interval, with subsequent points specifying the same start time and
3774
- # increasing end times, until an event resets the cumulative value to zero and
3775
- # sets a new start time for the following points. The new start time must be at
3776
- # least a millisecond after the end time of the previous interval. The start
3777
- # time of a new interval must be at least a millisecond after the end time of
3778
- # the previous interval because intervals are closed. If the start time of a new
3779
- # interval is the same as the end time of the previous interval, then data
3780
- # written at the new start time could overwrite data written at the previous end
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.17.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 = "20211031"
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.17.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-08 00:00:00.000000000 Z
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.17.0
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: []