google-apis-monitoring_v3 0.58.0 → 0.59.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: 4d4da50c9994fe6a96164fd2b8043785d639d07a6622e8013b4664f3c94838a6
4
- data.tar.gz: c3c0b11280fd1e503d72c1d731431d5d7e7e20e4789f56c2dd8bcc6eb260578f
3
+ metadata.gz: 632f2c2f487cfd5f862fd85acfc142b94645449da3086bc7d0b660d0357d6071
4
+ data.tar.gz: 56a7cd23a36e5819ac9db0257d5a04ee6fc2fe6e904926539199f704cd6605cb
5
5
  SHA512:
6
- metadata.gz: 42f484ea5b7d9dce3f59a36d59c7bbf2b673ef717b92b113d575f4f04cc2b59a563b4d15d7131704c301902260e1db58bcd00ae86fc9a3b68d024e93600d8f7b
7
- data.tar.gz: 2ca1f53d999d85713a71c0743d39af36c0e02aa182a428dded8f37af925c186b9df9e56e9785ae8d73a5cfd1ff6847a5a505aecb01b9fd08b750e2b82a182b04
6
+ metadata.gz: fef6a1b816e0e48b776ae0fc6a7f8653a50c9245ba26e78cd0cd7c578c30a3b09f44aa92ae29d26de05ccfde6f707eb06a8d7a0048172f5e90b0d2be547820a5
7
+ data.tar.gz: 67381433f5dfd44bce0a29ff9f75701625813541001ecb3407fcd373187dd63b5ca6c20a4bf5db93de06e5bc840b8658a573648a8ec353bcf7deb782f582c9eb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-monitoring_v3
2
2
 
3
+ ### v0.59.0 (2024-04-21)
4
+
5
+ * Regenerated from discovery document revision 20240414
6
+
3
7
  ### v0.58.0 (2024-03-10)
4
8
 
5
9
  * Regenerated from discovery document revision 20240303
@@ -163,7 +163,8 @@ module Google
163
163
  # @return [String]
164
164
  attr_accessor :display_name
165
165
 
166
- # A content string and a MIME type that describes the content string's format.
166
+ # Documentation that is included in the notifications and incidents pertaining
167
+ # to this policy.
167
168
  # Corresponds to the JSON property `documentation`
168
169
  # @return [Google::Apis::MonitoringV3::Documentation]
169
170
  attr_accessor :documentation
@@ -1211,7 +1212,8 @@ module Google
1211
1212
  end
1212
1213
  end
1213
1214
 
1214
- # A content string and a MIME type that describes the content string's format.
1215
+ # Documentation that is included in the notifications and incidents pertaining
1216
+ # to this policy.
1215
1217
  class Documentation
1216
1218
  include Google::Apis::Core::Hashable
1217
1219
 
@@ -1925,6 +1927,13 @@ module Google
1925
1927
  # @return [String]
1926
1928
  attr_accessor :request_method
1927
1929
 
1930
+ # Contains information needed for generating an OpenID Connect token (https://
1931
+ # developers.google.com/identity/protocols/OpenIDConnect). The OIDC token will
1932
+ # be generated for the Monitoring service agent service account.
1933
+ # Corresponds to the JSON property `serviceAgentAuthentication`
1934
+ # @return [Google::Apis::MonitoringV3::ServiceAgentAuthentication]
1935
+ attr_accessor :service_agent_authentication
1936
+
1928
1937
  # If true, use HTTPS instead of HTTP to run the check.
1929
1938
  # Corresponds to the JSON property `useSsl`
1930
1939
  # @return [Boolean]
@@ -1956,6 +1965,7 @@ module Google
1956
1965
  @ping_config = args[:ping_config] if args.key?(:ping_config)
1957
1966
  @port = args[:port] if args.key?(:port)
1958
1967
  @request_method = args[:request_method] if args.key?(:request_method)
1968
+ @service_agent_authentication = args[:service_agent_authentication] if args.key?(:service_agent_authentication)
1959
1969
  @use_ssl = args[:use_ssl] if args.key?(:use_ssl)
1960
1970
  @validate_ssl = args[:validate_ssl] if args.key?(:validate_ssl)
1961
1971
  end
@@ -4184,6 +4194,27 @@ module Google
4184
4194
  end
4185
4195
  end
4186
4196
 
4197
+ # Contains information needed for generating an OpenID Connect token (https://
4198
+ # developers.google.com/identity/protocols/OpenIDConnect). The OIDC token will
4199
+ # be generated for the Monitoring service agent service account.
4200
+ class ServiceAgentAuthentication
4201
+ include Google::Apis::Core::Hashable
4202
+
4203
+ # Type of authentication.
4204
+ # Corresponds to the JSON property `type`
4205
+ # @return [String]
4206
+ attr_accessor :type
4207
+
4208
+ def initialize(**args)
4209
+ update!(**args)
4210
+ end
4211
+
4212
+ # Update properties of this object
4213
+ def update!(**args)
4214
+ @type = args[:type] if args.key?(:type)
4215
+ end
4216
+ end
4217
+
4187
4218
  # A Service-Level Indicator (SLI) describes the "performance" of a service. For
4188
4219
  # some services, the SLI is well-defined. In such cases, the SLI can be
4189
4220
  # described easily by referencing the well-known SLI and providing the needed
@@ -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.58.0"
19
+ GEM_VERSION = "0.59.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240303"
25
+ REVISION = "20240414"
26
26
  end
27
27
  end
28
28
  end
@@ -598,6 +598,12 @@ module Google
598
598
  include Google::Apis::Core::JsonObjectSupport
599
599
  end
600
600
 
601
+ class ServiceAgentAuthentication
602
+ class Representation < Google::Apis::Core::JsonRepresentation; end
603
+
604
+ include Google::Apis::Core::JsonObjectSupport
605
+ end
606
+
601
607
  class ServiceLevelIndicator
602
608
  class Representation < Google::Apis::Core::JsonRepresentation; end
603
609
 
@@ -1179,6 +1185,8 @@ module Google
1179
1185
 
1180
1186
  property :port, as: 'port'
1181
1187
  property :request_method, as: 'requestMethod'
1188
+ property :service_agent_authentication, as: 'serviceAgentAuthentication', class: Google::Apis::MonitoringV3::ServiceAgentAuthentication, decorator: Google::Apis::MonitoringV3::ServiceAgentAuthentication::Representation
1189
+
1182
1190
  property :use_ssl, as: 'useSsl'
1183
1191
  property :validate_ssl, as: 'validateSsl'
1184
1192
  end
@@ -1722,6 +1730,13 @@ module Google
1722
1730
  end
1723
1731
  end
1724
1732
 
1733
+ class ServiceAgentAuthentication
1734
+ # @private
1735
+ class Representation < Google::Apis::Core::JsonRepresentation
1736
+ property :type, as: 'type'
1737
+ end
1738
+ end
1739
+
1725
1740
  class ServiceLevelIndicator
1726
1741
  # @private
1727
1742
  class Representation < Google::Apis::Core::JsonRepresentation
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.58.0
4
+ version: 0.59.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: 2024-03-10 00:00:00.000000000 Z
11
+ date: 2024-04-21 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.58.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v3/v0.59.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: []