google-apis-monitoring_v3 0.74.0 → 0.76.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: 74e6178ec06ae8a77113f65cc55c6f651229267d87191b79c11e992873e618d5
4
- data.tar.gz: eee55c42dbe448fb5be113e147d2412636affc05f9fd7f1ad93823b6021cb4f0
3
+ metadata.gz: 34ac6b3c287a7f28c3e07729a7236f77f98cae489c736d0cb8f3ebc455f44364
4
+ data.tar.gz: d1d1757e79f9fa226a951b1689dd046b8f62a9366729b3f307f0f5d24639f199
5
5
  SHA512:
6
- metadata.gz: '069ac548adb9c128ffe7e1f9902f0f57c4852a16f930d2ab818ca65c2c816ea20d7200ff3eabd6b7eb45cf1e428d88c46807295c187a1c74bcd8d48ecdc44c5d'
7
- data.tar.gz: 6316b635b17f1496eb067be9b2d3cb20a09dfc7446d0f4b985f3d72a6ef43e1735e0e201ae5bbeb60318a07c44fec75a505ce8a5f11d60541824f81ae392e01c
6
+ metadata.gz: 3a3eab8224a16dfd420141ee648d3dca0c54a43b35494357adb131d7ff764dcebb7992ecbdaf26895e5289190a212fca4384e7f0a9473d841464687797cd7b95
7
+ data.tar.gz: 11faf5531aacd3e8f67ccb3692f8755d04262fdf54be67b677ecda4dab979446d7b65c80ed1d72b7a2e697e81203a07f9a3ffd233bc16f343788a4a66072da4c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-monitoring_v3
2
2
 
3
+ ### v0.76.0 (2025-03-23)
4
+
5
+ * Regenerated from discovery document revision 20250313
6
+
7
+ ### v0.75.0 (2025-03-09)
8
+
9
+ * Regenerated from discovery document revision 20250227
10
+
3
11
  ### v0.74.0 (2025-02-26)
4
12
 
5
13
  * Regenerated from discovery document revision 20250130
@@ -5299,6 +5299,12 @@ module Google
5299
5299
  # @return [Array<Google::Apis::MonitoringV3::ContentMatcher>]
5300
5300
  attr_accessor :content_matchers
5301
5301
 
5302
+ # Whether the check is disabled or not.
5303
+ # Corresponds to the JSON property `disabled`
5304
+ # @return [Boolean]
5305
+ attr_accessor :disabled
5306
+ alias_method :disabled?, :disabled
5307
+
5302
5308
  # A human-friendly name for the Uptime check configuration. The display name
5303
5309
  # should be unique within a Cloud Monitoring Workspace in order to make it
5304
5310
  # easier to identify; however, uniqueness is not enforced. Required.
@@ -5327,6 +5333,12 @@ module Google
5327
5333
  attr_accessor :is_internal
5328
5334
  alias_method :is_internal?, :is_internal
5329
5335
 
5336
+ # To specify whether to log the results of failed probes to Cloud Logging.
5337
+ # Corresponds to the JSON property `logCheckFailures`
5338
+ # @return [Boolean]
5339
+ attr_accessor :log_check_failures
5340
+ alias_method :log_check_failures?, :log_check_failures
5341
+
5330
5342
  # An object representing a resource that can be used for monitoring, logging,
5331
5343
  # billing, or other purposes. Examples include virtual machine instances,
5332
5344
  # databases, and storage devices such as disks. The type field identifies a
@@ -5405,10 +5417,12 @@ module Google
5405
5417
  def update!(**args)
5406
5418
  @checker_type = args[:checker_type] if args.key?(:checker_type)
5407
5419
  @content_matchers = args[:content_matchers] if args.key?(:content_matchers)
5420
+ @disabled = args[:disabled] if args.key?(:disabled)
5408
5421
  @display_name = args[:display_name] if args.key?(:display_name)
5409
5422
  @http_check = args[:http_check] if args.key?(:http_check)
5410
5423
  @internal_checkers = args[:internal_checkers] if args.key?(:internal_checkers)
5411
5424
  @is_internal = args[:is_internal] if args.key?(:is_internal)
5425
+ @log_check_failures = args[:log_check_failures] if args.key?(:log_check_failures)
5412
5426
  @monitored_resource = args[:monitored_resource] if args.key?(:monitored_resource)
5413
5427
  @name = args[:name] if args.key?(:name)
5414
5428
  @period = args[:period] if args.key?(:period)
@@ -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.74.0"
19
+ GEM_VERSION = "0.76.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250130"
25
+ REVISION = "20250313"
26
26
  end
27
27
  end
28
28
  end
@@ -2049,12 +2049,14 @@ module Google
2049
2049
  property :checker_type, as: 'checkerType'
2050
2050
  collection :content_matchers, as: 'contentMatchers', class: Google::Apis::MonitoringV3::ContentMatcher, decorator: Google::Apis::MonitoringV3::ContentMatcher::Representation
2051
2051
 
2052
+ property :disabled, as: 'disabled'
2052
2053
  property :display_name, as: 'displayName'
2053
2054
  property :http_check, as: 'httpCheck', class: Google::Apis::MonitoringV3::HttpCheck, decorator: Google::Apis::MonitoringV3::HttpCheck::Representation
2054
2055
 
2055
2056
  collection :internal_checkers, as: 'internalCheckers', class: Google::Apis::MonitoringV3::InternalChecker, decorator: Google::Apis::MonitoringV3::InternalChecker::Representation
2056
2057
 
2057
2058
  property :is_internal, as: 'isInternal'
2059
+ property :log_check_failures, as: 'logCheckFailures'
2058
2060
  property :monitored_resource, as: 'monitoredResource', class: Google::Apis::MonitoringV3::MonitoredResource, decorator: Google::Apis::MonitoringV3::MonitoredResource::Representation
2059
2061
 
2060
2062
  property :name, as: 'name'
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-monitoring_v3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.74.0
4
+ version: 0.76.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-02 00:00:00.000000000 Z
10
+ date: 2025-03-23 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-monitoring_v3/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v3/v0.74.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v3/v0.76.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-monitoring_v3
62
62
  rdoc_options: []
63
63
  require_paths: