google-apis-monitoring_v3 0.8.0 → 0.12.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: 16fd8889b71145bc6711cd640b38d66587a94dd1f78dc1d07fa1ba9852dd9d25
4
- data.tar.gz: 605b19913786bc63a5da9e2597b9ddcc976e17030cb882b92a3070cdc05a1e22
3
+ metadata.gz: 71e791f98efef4018204a87d1c08d0a6d689a17590a35e5717b88fd77f35c5b0
4
+ data.tar.gz: 7bdbf1e4bffe8f25d700ba61e60c07e432f49a12a384525f73186b44f2204ba3
5
5
  SHA512:
6
- metadata.gz: b8b4eaf558e4c47b29824f1f6af6e9e4e863c1c919a3a32973b492db9360b15dae254dbd20a2bf3c411ddde7386032ef94cc2da2248c5378dcba51c11dea9bb4
7
- data.tar.gz: 18fa015a9b7cf91b7e4e94146b62e8c4a9b4dce5dfad13f5d0e6682df598fcd4e2e830409943fd3edee4db596ef9046690123e31244821b1aa2b348881aae784
6
+ metadata.gz: 5291ea8fa65b91bd4262580afee2a5d640a277c6d260b8feb68deb6b5c0496458f85507efee6448a55559c131df57df914763e83ec230b5848d8b1f3c24edf60
7
+ data.tar.gz: c54cf3a84ed5d6c7516cdd021af34e493dbca405095a70b1a64143f70c9b625c7ec4a897db9d075e3e29b6b99b4362e0e0247798b35de21ac4a63a3918055446
data/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Release history for google-apis-monitoring_v3
2
2
 
3
+ ### v0.12.0 (2021-07-16)
4
+
5
+ * Regenerated from discovery document revision 20210712
6
+
7
+ ### v0.11.0 (2021-07-06)
8
+
9
+ * Regenerated from discovery document revision 20210702
10
+
11
+ ### v0.10.0 (2021-07-02)
12
+
13
+ * Regenerated from discovery document revision 20210625
14
+ * Regenerated using generator version 0.4.0
15
+
16
+ ### v0.9.0 (2021-06-25)
17
+
18
+ * Regenerated from discovery document revision 20210618
19
+ * Unspecified changes
20
+
3
21
  ### v0.8.0 (2021-06-18)
4
22
 
5
23
  * Regenerated from discovery document revision 20210614
@@ -25,7 +25,8 @@ module Google
25
25
  # associated with a Workspace, with a few exceptions as noted on the individual
26
26
  # method pages. The table entries below are presented in alphabetical order, not
27
27
  # in order of common use. For explanations of the concepts found in the table
28
- # entries, read the Cloud Monitoring documentation.
28
+ # entries, read the Cloud Monitoring documentation (https://cloud.google.com/
29
+ # monitoring/docs).
29
30
  #
30
31
  # @see https://cloud.google.com/monitoring/api/
31
32
  module MonitoringV3
@@ -123,6 +123,12 @@ module Google
123
123
  class AlertPolicy
124
124
  include Google::Apis::Core::Hashable
125
125
 
126
+ # Control over how the notification channels in notification_channels are
127
+ # notified when this alert fires.
128
+ # Corresponds to the JSON property `alertStrategy`
129
+ # @return [Google::Apis::MonitoringV3::AlertStrategy]
130
+ attr_accessor :alert_strategy
131
+
126
132
  # How to combine the results of multiple conditions to determine if an incident
127
133
  # should be opened. If condition_time_series_query_language is present, this
128
134
  # must be COMBINE_UNSPECIFIED.
@@ -215,6 +221,7 @@ module Google
215
221
 
216
222
  # Update properties of this object
217
223
  def update!(**args)
224
+ @alert_strategy = args[:alert_strategy] if args.key?(:alert_strategy)
218
225
  @combiner = args[:combiner] if args.key?(:combiner)
219
226
  @conditions = args[:conditions] if args.key?(:conditions)
220
227
  @creation_record = args[:creation_record] if args.key?(:creation_record)
@@ -229,6 +236,27 @@ module Google
229
236
  end
230
237
  end
231
238
 
239
+ # Control over how the notification channels in notification_channels are
240
+ # notified when this alert fires.
241
+ class AlertStrategy
242
+ include Google::Apis::Core::Hashable
243
+
244
+ # Control over the rate of notifications sent to this alert policy's
245
+ # notification channels.
246
+ # Corresponds to the JSON property `notificationRateLimit`
247
+ # @return [Google::Apis::MonitoringV3::NotificationRateLimit]
248
+ attr_accessor :notification_rate_limit
249
+
250
+ def initialize(**args)
251
+ update!(**args)
252
+ end
253
+
254
+ # Update properties of this object
255
+ def update!(**args)
256
+ @notification_rate_limit = args[:notification_rate_limit] if args.key?(:notification_rate_limit)
257
+ end
258
+ end
259
+
232
260
  # App Engine service. Learn more at https://cloud.google.com/appengine.
233
261
  class AppEngine
234
262
  include Google::Apis::Core::Hashable
@@ -646,6 +674,13 @@ module Google
646
674
  # @return [Google::Apis::MonitoringV3::MetricAbsence]
647
675
  attr_accessor :condition_absent
648
676
 
677
+ # A condition type that checks whether a log message in the scoping project (
678
+ # https://cloud.google.com/monitoring/api/v3#project_name) satisfies the given
679
+ # filter. Logs from other projects in the metrics scope are not evaluated.
680
+ # Corresponds to the JSON property `conditionMatchedLog`
681
+ # @return [Google::Apis::MonitoringV3::LogMatch]
682
+ attr_accessor :condition_matched_log
683
+
649
684
  # A condition type that allows alert policies to be defined using Monitoring
650
685
  # Query Language (https://cloud.google.com/monitoring/mql).
651
686
  # Corresponds to the JSON property `conditionMonitoringQueryLanguage`
@@ -689,6 +724,7 @@ module Google
689
724
  # Update properties of this object
690
725
  def update!(**args)
691
726
  @condition_absent = args[:condition_absent] if args.key?(:condition_absent)
727
+ @condition_matched_log = args[:condition_matched_log] if args.key?(:condition_matched_log)
692
728
  @condition_monitoring_query_language = args[:condition_monitoring_query_language] if args.key?(:condition_monitoring_query_language)
693
729
  @condition_threshold = args[:condition_threshold] if args.key?(:condition_threshold)
694
730
  @display_name = args[:display_name] if args.key?(:display_name)
@@ -2127,6 +2163,40 @@ module Google
2127
2163
  end
2128
2164
  end
2129
2165
 
2166
+ # A condition type that checks whether a log message in the scoping project (
2167
+ # https://cloud.google.com/monitoring/api/v3#project_name) satisfies the given
2168
+ # filter. Logs from other projects in the metrics scope are not evaluated.
2169
+ class LogMatch
2170
+ include Google::Apis::Core::Hashable
2171
+
2172
+ # Required. A logs-based filter. See Advanced Logs Queries for how this filter
2173
+ # should be constructed.
2174
+ # Corresponds to the JSON property `filter`
2175
+ # @return [String]
2176
+ attr_accessor :filter
2177
+
2178
+ # Optional. A map from a label key to an extractor expression, which is used to
2179
+ # extract the value for this label key. Each entry in this map is a
2180
+ # specification for how data should be extracted from log entries that match
2181
+ # filter. Each combination of extracted values is treated as a separate rule for
2182
+ # the purposes of triggering notifications. Label keys and corresponding values
2183
+ # can be used in notifications generated by this condition.Please see the
2184
+ # documentation on logs-based metric valueExtractors for syntax and examples.
2185
+ # Corresponds to the JSON property `labelExtractors`
2186
+ # @return [Hash<String,String>]
2187
+ attr_accessor :label_extractors
2188
+
2189
+ def initialize(**args)
2190
+ update!(**args)
2191
+ end
2192
+
2193
+ # Update properties of this object
2194
+ def update!(**args)
2195
+ @filter = args[:filter] if args.key?(:filter)
2196
+ @label_extractors = args[:label_extractors] if args.key?(:label_extractors)
2197
+ end
2198
+ end
2199
+
2130
2200
  # Istio service scoped to an Istio mesh. Anthos clusters running ASM < 1.6.8
2131
2201
  # will have their services ingested as this type.
2132
2202
  class MeshIstio
@@ -2578,7 +2648,8 @@ module Google
2578
2648
  # Required. The monitored resource type. This field must match the type field of
2579
2649
  # a MonitoredResourceDescriptor object. For example, the type of a Compute
2580
2650
  # Engine VM instance is gce_instance. For a list of types, see Monitoring
2581
- # resource types and Logging resource types.
2651
+ # resource types (https://cloud.google.com/monitoring/api/resources) and Logging
2652
+ # resource types (https://cloud.google.com/logging/docs/api/v2/resource-list).
2582
2653
  # Corresponds to the JSON property `type`
2583
2654
  # @return [String]
2584
2655
  attr_accessor :type
@@ -2929,6 +3000,26 @@ module Google
2929
3000
  end
2930
3001
  end
2931
3002
 
3003
+ # Control over the rate of notifications sent to this alert policy's
3004
+ # notification channels.
3005
+ class NotificationRateLimit
3006
+ include Google::Apis::Core::Hashable
3007
+
3008
+ # Not more than one notification per period.
3009
+ # Corresponds to the JSON property `period`
3010
+ # @return [String]
3011
+ attr_accessor :period
3012
+
3013
+ def initialize(**args)
3014
+ update!(**args)
3015
+ end
3016
+
3017
+ # Update properties of this object
3018
+ def update!(**args)
3019
+ @period = args[:period] if args.key?(:period)
3020
+ end
3021
+ end
3022
+
2932
3023
  # Contains metadata for longrunning operation for the edit Metrics Scope
2933
3024
  # endpoints.
2934
3025
  class OperationMetadata
@@ -3036,28 +3127,30 @@ module Google
3036
3127
 
3037
3128
  # A closed time interval. It extends from the start time to the end time, and
3038
3129
  # includes both: [startTime, endTime]. Valid time intervals depend on the
3039
- # MetricKind of the metric value. The end time must not be earlier than the
3040
- # start time. When writing data points, the start time must not be more than 25
3041
- # hours in the past and the end time must not be more than five minutes in the
3042
- # future. For GAUGE metrics, the startTime value is technically optional; if no
3043
- # value is specified, the start time defaults to the value of the end time, and
3044
- # the interval represents a single point in time. If both start and end times
3045
- # are specified, they must be identical. Such an interval is valid only for
3046
- # GAUGE metrics, which are point-in-time measurements. The end time of a new
3130
+ # MetricKind (https://cloud.google.com/monitoring/api/ref_v3/rest/v3/projects.
3131
+ # metricDescriptors#MetricKind) of the metric value. The end time must not be
3132
+ # earlier than the start time. When writing data points, the start time must not
3133
+ # be more than 25 hours in the past and the end time must not be more than five
3134
+ # minutes in the future. For GAUGE metrics, the startTime value is technically
3135
+ # optional; if no value is specified, the start time defaults to the value of
3136
+ # the end time, and the interval represents a single point in time. If both
3137
+ # start and end times are specified, they must be identical. Such an interval is
3138
+ # valid only for GAUGE metrics, which are point-in-time measurements. The end
3139
+ # time of a new interval must be at least a millisecond after the end time of
3140
+ # the previous interval. For DELTA metrics, the start time and end time must
3141
+ # specify a non-zero interval, with subsequent points specifying contiguous and
3142
+ # non-overlapping intervals. For DELTA metrics, the start time of the next
3047
3143
  # interval must be at least a millisecond after the end time of the previous
3048
- # interval. For DELTA metrics, the start time and end time must specify a non-
3049
- # zero interval, with subsequent points specifying contiguous and non-
3050
- # overlapping intervals. For DELTA metrics, the start time of the next interval
3051
- # must be at least a millisecond after the end time of the previous interval.
3052
- # For CUMULATIVE metrics, the start time and end time must specify a a non-zero
3053
- # interval, with subsequent points specifying the same start time and increasing
3054
- # end times, until an event resets the cumulative value to zero and sets a new
3055
- # start time for the following points. The new start time must be at least a
3056
- # millisecond after the end time of the previous interval. The start time of a
3057
- # new interval must be at least a millisecond after the end time of the previous
3058
- # interval because intervals are closed. If the start time of a new interval is
3059
- # the same as the end time of the previous interval, then data written at the
3060
- # new start time could overwrite data written at the previous end time.
3144
+ # interval. For CUMULATIVE metrics, the start time and end time must specify a a
3145
+ # non-zero interval, with subsequent points specifying the same start time and
3146
+ # increasing end times, until an event resets the cumulative value to zero and
3147
+ # sets a new start time for the following points. The new start time must be at
3148
+ # least a millisecond after the end time of the previous interval. The start
3149
+ # time of a new interval must be at least a millisecond after the end time of
3150
+ # the previous interval because intervals are closed. If the start time of a new
3151
+ # interval is the same as the end time of the previous interval, then data
3152
+ # written at the new start time could overwrite data written at the previous end
3153
+ # time.
3061
3154
  # Corresponds to the JSON property `interval`
3062
3155
  # @return [Google::Apis::MonitoringV3::TimeInterval]
3063
3156
  attr_accessor :interval
@@ -3086,28 +3179,30 @@ module Google
3086
3179
 
3087
3180
  # A closed time interval. It extends from the start time to the end time, and
3088
3181
  # includes both: [startTime, endTime]. Valid time intervals depend on the
3089
- # MetricKind of the metric value. The end time must not be earlier than the
3090
- # start time. When writing data points, the start time must not be more than 25
3091
- # hours in the past and the end time must not be more than five minutes in the
3092
- # future. For GAUGE metrics, the startTime value is technically optional; if no
3093
- # value is specified, the start time defaults to the value of the end time, and
3094
- # the interval represents a single point in time. If both start and end times
3095
- # are specified, they must be identical. Such an interval is valid only for
3096
- # GAUGE metrics, which are point-in-time measurements. The end time of a new
3182
+ # MetricKind (https://cloud.google.com/monitoring/api/ref_v3/rest/v3/projects.
3183
+ # metricDescriptors#MetricKind) of the metric value. The end time must not be
3184
+ # earlier than the start time. When writing data points, the start time must not
3185
+ # be more than 25 hours in the past and the end time must not be more than five
3186
+ # minutes in the future. For GAUGE metrics, the startTime value is technically
3187
+ # optional; if no value is specified, the start time defaults to the value of
3188
+ # the end time, and the interval represents a single point in time. If both
3189
+ # start and end times are specified, they must be identical. Such an interval is
3190
+ # valid only for GAUGE metrics, which are point-in-time measurements. The end
3191
+ # time of a new interval must be at least a millisecond after the end time of
3192
+ # the previous interval. For DELTA metrics, the start time and end time must
3193
+ # specify a non-zero interval, with subsequent points specifying contiguous and
3194
+ # non-overlapping intervals. For DELTA metrics, the start time of the next
3097
3195
  # interval must be at least a millisecond after the end time of the previous
3098
- # interval. For DELTA metrics, the start time and end time must specify a non-
3099
- # zero interval, with subsequent points specifying contiguous and non-
3100
- # overlapping intervals. For DELTA metrics, the start time of the next interval
3101
- # must be at least a millisecond after the end time of the previous interval.
3102
- # For CUMULATIVE metrics, the start time and end time must specify a a non-zero
3103
- # interval, with subsequent points specifying the same start time and increasing
3104
- # end times, until an event resets the cumulative value to zero and sets a new
3105
- # start time for the following points. The new start time must be at least a
3106
- # millisecond after the end time of the previous interval. The start time of a
3107
- # new interval must be at least a millisecond after the end time of the previous
3108
- # interval because intervals are closed. If the start time of a new interval is
3109
- # the same as the end time of the previous interval, then data written at the
3110
- # new start time could overwrite data written at the previous end time.
3196
+ # interval. For CUMULATIVE metrics, the start time and end time must specify a a
3197
+ # non-zero interval, with subsequent points specifying the same start time and
3198
+ # increasing end times, until an event resets the cumulative value to zero and
3199
+ # sets a new start time for the following points. The new start time must be at
3200
+ # least a millisecond after the end time of the previous interval. The start
3201
+ # time of a new interval must be at least a millisecond after the end time of
3202
+ # the previous interval because intervals are closed. If the start time of a new
3203
+ # interval is the same as the end time of the previous interval, then data
3204
+ # written at the new start time could overwrite data written at the previous end
3205
+ # time.
3111
3206
  # Corresponds to the JSON property `timeInterval`
3112
3207
  # @return [Google::Apis::MonitoringV3::TimeInterval]
3113
3208
  attr_accessor :time_interval
@@ -3646,28 +3741,30 @@ module Google
3646
3741
 
3647
3742
  # A closed time interval. It extends from the start time to the end time, and
3648
3743
  # includes both: [startTime, endTime]. Valid time intervals depend on the
3649
- # MetricKind of the metric value. The end time must not be earlier than the
3650
- # start time. When writing data points, the start time must not be more than 25
3651
- # hours in the past and the end time must not be more than five minutes in the
3652
- # future. For GAUGE metrics, the startTime value is technically optional; if no
3653
- # value is specified, the start time defaults to the value of the end time, and
3654
- # the interval represents a single point in time. If both start and end times
3655
- # are specified, they must be identical. Such an interval is valid only for
3656
- # GAUGE metrics, which are point-in-time measurements. The end time of a new
3744
+ # MetricKind (https://cloud.google.com/monitoring/api/ref_v3/rest/v3/projects.
3745
+ # metricDescriptors#MetricKind) of the metric value. The end time must not be
3746
+ # earlier than the start time. When writing data points, the start time must not
3747
+ # be more than 25 hours in the past and the end time must not be more than five
3748
+ # minutes in the future. For GAUGE metrics, the startTime value is technically
3749
+ # optional; if no value is specified, the start time defaults to the value of
3750
+ # the end time, and the interval represents a single point in time. If both
3751
+ # start and end times are specified, they must be identical. Such an interval is
3752
+ # valid only for GAUGE metrics, which are point-in-time measurements. The end
3753
+ # time of a new interval must be at least a millisecond after the end time of
3754
+ # the previous interval. For DELTA metrics, the start time and end time must
3755
+ # specify a non-zero interval, with subsequent points specifying contiguous and
3756
+ # non-overlapping intervals. For DELTA metrics, the start time of the next
3657
3757
  # interval must be at least a millisecond after the end time of the previous
3658
- # interval. For DELTA metrics, the start time and end time must specify a non-
3659
- # zero interval, with subsequent points specifying contiguous and non-
3660
- # overlapping intervals. For DELTA metrics, the start time of the next interval
3661
- # must be at least a millisecond after the end time of the previous interval.
3662
- # For CUMULATIVE metrics, the start time and end time must specify a a non-zero
3663
- # interval, with subsequent points specifying the same start time and increasing
3664
- # end times, until an event resets the cumulative value to zero and sets a new
3665
- # start time for the following points. The new start time must be at least a
3666
- # millisecond after the end time of the previous interval. The start time of a
3667
- # new interval must be at least a millisecond after the end time of the previous
3668
- # interval because intervals are closed. If the start time of a new interval is
3669
- # the same as the end time of the previous interval, then data written at the
3670
- # new start time could overwrite data written at the previous end time.
3758
+ # interval. For CUMULATIVE metrics, the start time and end time must specify a a
3759
+ # non-zero interval, with subsequent points specifying the same start time and
3760
+ # increasing end times, until an event resets the cumulative value to zero and
3761
+ # sets a new start time for the following points. The new start time must be at
3762
+ # least a millisecond after the end time of the previous interval. The start
3763
+ # time of a new interval must be at least a millisecond after the end time of
3764
+ # the previous interval because intervals are closed. If the start time of a new
3765
+ # interval is the same as the end time of the previous interval, then data
3766
+ # written at the new start time could overwrite data written at the previous end
3767
+ # time.
3671
3768
  class TimeInterval
3672
3769
  include Google::Apis::Core::Hashable
3673
3770
 
@@ -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.8.0"
19
+ GEM_VERSION = "0.12.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.3.0"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210614"
25
+ REVISION = "20210712"
26
26
  end
27
27
  end
28
28
  end
@@ -34,6 +34,12 @@ module Google
34
34
  include Google::Apis::Core::JsonObjectSupport
35
35
  end
36
36
 
37
+ class AlertStrategy
38
+ class Representation < Google::Apis::Core::JsonRepresentation; end
39
+
40
+ include Google::Apis::Core::JsonObjectSupport
41
+ end
42
+
37
43
  class AppEngine
38
44
  class Representation < Google::Apis::Core::JsonRepresentation; end
39
45
 
@@ -340,6 +346,12 @@ module Google
340
346
  include Google::Apis::Core::JsonObjectSupport
341
347
  end
342
348
 
349
+ class LogMatch
350
+ class Representation < Google::Apis::Core::JsonRepresentation; end
351
+
352
+ include Google::Apis::Core::JsonObjectSupport
353
+ end
354
+
343
355
  class MeshIstio
344
356
  class Representation < Google::Apis::Core::JsonRepresentation; end
345
357
 
@@ -424,6 +436,12 @@ module Google
424
436
  include Google::Apis::Core::JsonObjectSupport
425
437
  end
426
438
 
439
+ class NotificationRateLimit
440
+ class Representation < Google::Apis::Core::JsonRepresentation; end
441
+
442
+ include Google::Apis::Core::JsonObjectSupport
443
+ end
444
+
427
445
  class OperationMetadata
428
446
  class Representation < Google::Apis::Core::JsonRepresentation; end
429
447
 
@@ -629,6 +647,8 @@ module Google
629
647
  class AlertPolicy
630
648
  # @private
631
649
  class Representation < Google::Apis::Core::JsonRepresentation
650
+ property :alert_strategy, as: 'alertStrategy', class: Google::Apis::MonitoringV3::AlertStrategy, decorator: Google::Apis::MonitoringV3::AlertStrategy::Representation
651
+
632
652
  property :combiner, as: 'combiner'
633
653
  collection :conditions, as: 'conditions', class: Google::Apis::MonitoringV3::Condition, decorator: Google::Apis::MonitoringV3::Condition::Representation
634
654
 
@@ -648,6 +668,14 @@ module Google
648
668
  end
649
669
  end
650
670
 
671
+ class AlertStrategy
672
+ # @private
673
+ class Representation < Google::Apis::Core::JsonRepresentation
674
+ property :notification_rate_limit, as: 'notificationRateLimit', class: Google::Apis::MonitoringV3::NotificationRateLimit, decorator: Google::Apis::MonitoringV3::NotificationRateLimit::Representation
675
+
676
+ end
677
+ end
678
+
651
679
  class AppEngine
652
680
  # @private
653
681
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -762,6 +790,8 @@ module Google
762
790
  class Representation < Google::Apis::Core::JsonRepresentation
763
791
  property :condition_absent, as: 'conditionAbsent', class: Google::Apis::MonitoringV3::MetricAbsence, decorator: Google::Apis::MonitoringV3::MetricAbsence::Representation
764
792
 
793
+ property :condition_matched_log, as: 'conditionMatchedLog', class: Google::Apis::MonitoringV3::LogMatch, decorator: Google::Apis::MonitoringV3::LogMatch::Representation
794
+
765
795
  property :condition_monitoring_query_language, as: 'conditionMonitoringQueryLanguage', class: Google::Apis::MonitoringV3::MonitoringQueryLanguageCondition, decorator: Google::Apis::MonitoringV3::MonitoringQueryLanguageCondition::Representation
766
796
 
767
797
  property :condition_threshold, as: 'conditionThreshold', class: Google::Apis::MonitoringV3::MetricThreshold, decorator: Google::Apis::MonitoringV3::MetricThreshold::Representation
@@ -1142,6 +1172,14 @@ module Google
1142
1172
  end
1143
1173
  end
1144
1174
 
1175
+ class LogMatch
1176
+ # @private
1177
+ class Representation < Google::Apis::Core::JsonRepresentation
1178
+ property :filter, as: 'filter'
1179
+ hash :label_extractors, as: 'labelExtractors'
1180
+ end
1181
+ end
1182
+
1145
1183
  class MeshIstio
1146
1184
  # @private
1147
1185
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1303,6 +1341,13 @@ module Google
1303
1341
  end
1304
1342
  end
1305
1343
 
1344
+ class NotificationRateLimit
1345
+ # @private
1346
+ class Representation < Google::Apis::Core::JsonRepresentation
1347
+ property :period, as: 'period'
1348
+ end
1349
+ end
1350
+
1306
1351
  class OperationMetadata
1307
1352
  # @private
1308
1353
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -26,7 +26,8 @@ module Google
26
26
  # associated with a Workspace, with a few exceptions as noted on the individual
27
27
  # method pages. The table entries below are presented in alphabetical order, not
28
28
  # in order of common use. For explanations of the concepts found in the table
29
- # entries, read the Cloud Monitoring documentation.
29
+ # entries, read the Cloud Monitoring documentation (https://cloud.google.com/
30
+ # monitoring/docs).
30
31
  #
31
32
  # @example
32
33
  # require 'google/apis/monitoring_v3'
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-monitoring_v3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.12.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-06-21 00:00:00.000000000 Z
11
+ date: 2021-07-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.1'
19
+ version: '0.4'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 2.a
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '0.4'
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: '0.1'
32
+ version: 2.a
27
33
  description: This is the simple REST client for Cloud Monitoring API V3. Simple REST
28
34
  clients are Ruby client libraries that provide access to Google services via their
29
35
  HTTP REST API endpoints. These libraries are generated and updated automatically
@@ -52,7 +58,7 @@ licenses:
52
58
  metadata:
53
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-monitoring_v3/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v3/v0.8.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v3/v0.12.0
56
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-monitoring_v3
57
63
  post_install_message:
58
64
  rdoc_options: []