google-apis-monitoring_v3 0.50.0 → 0.52.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: f722675edc5f3403158753ef05b931b95e50be0fcb9a07931fa762a322e9ed94
4
- data.tar.gz: 9298eef7d6cf09b5ce6a90f628c9e362538c6e98242103a48d5bf10005e5120d
3
+ metadata.gz: '097c935bc29e3cafdd900c0bd0cec37b9ffbaa3e8ed4d6d116e779a6d7465509'
4
+ data.tar.gz: d4d89bb62c67ad14a339d7b03d4a44605efe5fdd008747414ec4850e21daedbe
5
5
  SHA512:
6
- metadata.gz: d38a6e5744670794c38fd5690db749423eb5bb2ebaca5d83d233656a37c8dfb4e07c38c6610a934da7cb89e17170402a093896fa3f1a0237e9add985653ffae0
7
- data.tar.gz: d85c5545cb63197dd3f621913cf2e875e0803aee90d99e139dea7f6200c4d6042e8150d90e8ef984892dd7156048bfbaf305ac7832772b9cdbb557658cea8956
6
+ metadata.gz: 732809261a56cded555fe64027eaae7c9fea1322dc677f08ba8448d5a06fee44bf7f0cf9a67d6fd90c16a2449a74ec5da92d95afae70a8a2acb56b48223d61ab
7
+ data.tar.gz: '099cb2823fd4dfb545ca002edd8c3dbaaf654352e2164935d9d053ba3fca79d24cd7ac88e9bcb65a3b421628fe4f885942b5da25cf76e2b70b2c385cc8e847bf'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-monitoring_v3
2
2
 
3
+ ### v0.52.0 (2023-11-19)
4
+
5
+ * Regenerated from discovery document revision 20231115
6
+
7
+ ### v0.51.0 (2023-10-29)
8
+
9
+ * Regenerated from discovery document revision 20231023
10
+
3
11
  ### v0.50.0 (2023-10-22)
4
12
 
5
13
  * Regenerated from discovery document revision 20231016
@@ -202,6 +202,13 @@ module Google
202
202
  # @return [Array<String>]
203
203
  attr_accessor :notification_channels
204
204
 
205
+ # Optional. The severity of an alert policy indicates how important alerts
206
+ # generated by that policy are. The severity level, if specified, will be
207
+ # displayed on the Incident detail page and in notifications.
208
+ # Corresponds to the JSON property `severity`
209
+ # @return [String]
210
+ attr_accessor :severity
211
+
205
212
  # User-supplied key/value data to be used for organizing and identifying the
206
213
  # AlertPolicy objects.The field can contain up to 64 entries. Each key and value
207
214
  # is limited to 63 Unicode characters or 128 bytes, whichever is smaller. Labels
@@ -241,6 +248,7 @@ module Google
241
248
  @mutation_record = args[:mutation_record] if args.key?(:mutation_record)
242
249
  @name = args[:name] if args.key?(:name)
243
250
  @notification_channels = args[:notification_channels] if args.key?(:notification_channels)
251
+ @severity = args[:severity] if args.key?(:severity)
244
252
  @user_labels = args[:user_labels] if args.key?(:user_labels)
245
253
  @validity = args[:validity] if args.key?(:validity)
246
254
  end
@@ -1510,7 +1518,8 @@ module Google
1510
1518
  # Required. The length of time into the future to forecast whether a time series
1511
1519
  # will violate the threshold. If the predicted value is found to violate the
1512
1520
  # threshold, and the violation is observed in all forecasts made for the
1513
- # configured duration, then the time series is considered to be failing.
1521
+ # configured duration, then the time series is considered to be failing. The
1522
+ # forecast horizon can range from 1 hour to 60 hours.
1514
1523
  # Corresponds to the JSON property `forecastHorizon`
1515
1524
  # @return [String]
1516
1525
  attr_accessor :forecast_horizon
@@ -4970,10 +4979,10 @@ module Google
4970
4979
  # @return [Google::Apis::MonitoringV3::MonitoredResource]
4971
4980
  attr_accessor :monitored_resource
4972
4981
 
4973
- # A unique resource name for this Uptime check configuration. The format is:
4974
- # projects/[PROJECT_ID_OR_NUMBER]/uptimeCheckConfigs/[UPTIME_CHECK_ID] [
4975
- # PROJECT_ID_OR_NUMBER] is the Workspace host project associated with the Uptime
4976
- # check.This field should be omitted when creating the Uptime check
4982
+ # Identifier. A unique resource name for this Uptime check configuration. The
4983
+ # format is: projects/[PROJECT_ID_OR_NUMBER]/uptimeCheckConfigs/[UPTIME_CHECK_ID]
4984
+ # [PROJECT_ID_OR_NUMBER] is the Workspace host project associated with the
4985
+ # Uptime check.This field should be omitted when creating the Uptime check
4977
4986
  # configuration; on create, the resource name is assigned by the server and
4978
4987
  # included in the response.
4979
4988
  # Corresponds to the JSON property `name`
@@ -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.50.0"
19
+ GEM_VERSION = "0.52.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20231016"
25
+ REVISION = "20231115"
26
26
  end
27
27
  end
28
28
  end
@@ -758,6 +758,7 @@ module Google
758
758
 
759
759
  property :name, as: 'name'
760
760
  collection :notification_channels, as: 'notificationChannels'
761
+ property :severity, as: 'severity'
761
762
  hash :user_labels, as: 'userLabels'
762
763
  property :validity, as: 'validity', class: Google::Apis::MonitoringV3::Status, decorator: Google::Apis::MonitoringV3::Status::Representation
763
764
 
@@ -1702,6 +1702,9 @@ module Google
1702
1702
  # Creates or adds data to one or more time series. The response is empty if all
1703
1703
  # time series in the request were written. If any time series could not be
1704
1704
  # written, a corresponding failure message is included in the error response.
1705
+ # This method does not support resource locations constraint of an organization
1706
+ # policy (https://cloud.google.com/resource-manager/docs/organization-policy/
1707
+ # defining-locations#setting_the_organization_policy).
1705
1708
  # @param [String] name
1706
1709
  # Required. The project (https://cloud.google.com/monitoring/api/v3#project_name)
1707
1710
  # on which to execute the request. The format is: projects/[
@@ -2129,10 +2132,10 @@ module Google
2129
2132
  # configuration by specifying the fields to be updated via updateMask. Returns
2130
2133
  # the updated configuration.
2131
2134
  # @param [String] name
2132
- # A unique resource name for this Uptime check configuration. The format is:
2133
- # projects/[PROJECT_ID_OR_NUMBER]/uptimeCheckConfigs/[UPTIME_CHECK_ID] [
2134
- # PROJECT_ID_OR_NUMBER] is the Workspace host project associated with the Uptime
2135
- # check.This field should be omitted when creating the Uptime check
2135
+ # Identifier. A unique resource name for this Uptime check configuration. The
2136
+ # format is: projects/[PROJECT_ID_OR_NUMBER]/uptimeCheckConfigs/[UPTIME_CHECK_ID]
2137
+ # [PROJECT_ID_OR_NUMBER] is the Workspace host project associated with the
2138
+ # Uptime check.This field should be omitted when creating the Uptime check
2136
2139
  # configuration; on create, the resource name is assigned by the server and
2137
2140
  # included in the response.
2138
2141
  # @param [Google::Apis::MonitoringV3::UptimeCheckConfig] uptime_check_config_object
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.50.0
4
+ version: 0.52.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: 2023-10-22 00:00:00.000000000 Z
11
+ date: 2023-11-19 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.50.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v3/v0.52.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: []