aws-sdk-securityhub 1.114.0 → 1.116.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: 6ab7662c2cede2002f3481881572c3ff313c6f735e34143bad7f517afb95cef3
4
- data.tar.gz: 7523b532be349d443b6a3b5a817b57457f93395783ca9c7eea2b61f1d7f86f74
3
+ metadata.gz: eb88d9876171e6048fee321dd043f7ec57091c6d099f8579d7fd9f72efc2e779
4
+ data.tar.gz: 01a534f48f0b9e01c98219a1d226c978df927e8af722c59646c403cd5216abc7
5
5
  SHA512:
6
- metadata.gz: 26b650890fe3bdac58679770645e4377061b26d94533c8e1d2a4579d4e2b6114345c8885bd985e924b5b65f272fda364a7c40a20f9034d9d4f4e5ae332fe42a3
7
- data.tar.gz: c39ed37445c36153741ca6d716edc0771d3dd833a57eefb9b80577fee3f5bf2a81b0ee42b841449e486281bbe2658a34491cfde6f1e1bc11ddb0779049f45633
6
+ metadata.gz: bf90069b9251b1cd848c1824b2e88ef4ce55e23f4aaecf13344e3b2678f2224c676d4476790caaf06a016abf40d599576e33dc2d46a2fb813bcd8fbd85ef9cb7
7
+ data.tar.gz: c5d1d52b70ff26db81b795141bc7cfc9789530ac3ee46bbc88a02ac430c00ad36fcc4f372705782f6b0dc7e0f0192e3e0178e61b4af29eff9a311c1c5b242c08
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.116.0 (2024-09-10)
5
+ ------------------
6
+
7
+ * Feature - Documentation update for Security Hub
8
+
9
+ 1.115.0 (2024-09-03)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.114.0 (2024-08-21)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.114.0
1
+ 1.116.0
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
32
32
  require 'aws-sdk-core/plugins/request_compression.rb'
33
33
  require 'aws-sdk-core/plugins/defaults_mode.rb'
34
34
  require 'aws-sdk-core/plugins/recursion_detection.rb'
35
+ require 'aws-sdk-core/plugins/telemetry.rb'
35
36
  require 'aws-sdk-core/plugins/sign.rb'
36
37
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
37
38
 
@@ -83,6 +84,7 @@ module Aws::SecurityHub
83
84
  add_plugin(Aws::Plugins::RequestCompression)
84
85
  add_plugin(Aws::Plugins::DefaultsMode)
85
86
  add_plugin(Aws::Plugins::RecursionDetection)
87
+ add_plugin(Aws::Plugins::Telemetry)
86
88
  add_plugin(Aws::Plugins::Sign)
87
89
  add_plugin(Aws::Plugins::Protocols::RestJson)
88
90
  add_plugin(Aws::SecurityHub::Plugins::Endpoints)
@@ -330,6 +332,16 @@ module Aws::SecurityHub
330
332
  # ** Please note ** When response stubbing is enabled, no HTTP
331
333
  # requests are made, and retries are disabled.
332
334
  #
335
+ # @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
336
+ # Allows you to provide a telemetry provider, which is used to
337
+ # emit telemetry data. By default, uses `NoOpTelemetryProvider` which
338
+ # will not record or emit any telemetry data. The SDK supports the
339
+ # following telemetry providers:
340
+ #
341
+ # * OpenTelemetry (OTel) - To use the OTel provider, install and require the
342
+ # `opentelemetry-sdk` gem and then, pass in an instance of a
343
+ # `Aws::Telemetry::OTelProvider` for telemetry provider.
344
+ #
333
345
  # @option options [Aws::TokenProvider] :token_provider
334
346
  # A Bearer Token Provider. This can be an instance of any one of the
335
347
  # following classes:
@@ -413,6 +425,12 @@ module Aws::SecurityHub
413
425
  # @option options [String] :ssl_ca_store
414
426
  # Sets the X509::Store to verify peer certificate.
415
427
  #
428
+ # @option options [OpenSSL::X509::Certificate] :ssl_cert
429
+ # Sets a client certificate when creating http connections.
430
+ #
431
+ # @option options [OpenSSL::PKey] :ssl_key
432
+ # Sets a client key when creating http connections.
433
+ #
416
434
  # @option options [Float] :ssl_timeout
417
435
  # Sets the SSL timeout in seconds
418
436
  #
@@ -10426,14 +10444,19 @@ module Aws::SecurityHub
10426
10444
  # @api private
10427
10445
  def build_request(operation_name, params = {})
10428
10446
  handlers = @handlers.for(operation_name)
10447
+ tracer = config.telemetry_provider.tracer_provider.tracer(
10448
+ Aws::Telemetry.module_to_tracer_name('Aws::SecurityHub')
10449
+ )
10429
10450
  context = Seahorse::Client::RequestContext.new(
10430
10451
  operation_name: operation_name,
10431
10452
  operation: config.api.operation(operation_name),
10432
10453
  client: self,
10433
10454
  params: params,
10434
- config: config)
10455
+ config: config,
10456
+ tracer: tracer
10457
+ )
10435
10458
  context[:gem_name] = 'aws-sdk-securityhub'
10436
- context[:gem_version] = '1.114.0'
10459
+ context[:gem_version] = '1.116.0'
10437
10460
  Seahorse::Client::Request.new(handlers, context)
10438
10461
  end
10439
10462
 
@@ -1536,7 +1536,7 @@ module Aws::SecurityHub
1536
1536
  # @return [String]
1537
1537
  #
1538
1538
  # @!attribute [rw] remote_ip_details
1539
- # Provided if `CallerType` is `remoteIp`. Provides information about
1539
+ # Provided if `CallerType` is `remoteip`. Provides information about
1540
1540
  # the remote IP address that the API call originated from.
1541
1541
  # @return [Types::ActionRemoteIpDetails]
1542
1542
  #
@@ -23118,13 +23118,16 @@ module Aws::SecurityHub
23118
23118
  include Aws::Structure
23119
23119
  end
23120
23120
 
23121
- # Contains finding details that are specific to control-based findings.
23122
- # Only returned for findings generated from controls.
23121
+ # This object typically provides details about a control finding, such
23122
+ # as applicable standards and the status of control checks. While
23123
+ # finding providers can add custom content in `Compliance` object
23124
+ # fields, they are typically used to review details of Security Hub
23125
+ # control findings.
23123
23126
  #
23124
23127
  # @!attribute [rw] status
23125
- # The result of a standards check.
23128
+ # Typically summarizes the result of a control check.
23126
23129
  #
23127
- # The valid values for `Status` are as follows.
23130
+ # For Security Hub controls, valid values for `Status` are as follows.
23128
23131
  #
23129
23132
  # * * `PASSED` - Standards check passed for all evaluated resources.
23130
23133
  #
@@ -23142,37 +23145,33 @@ module Aws::SecurityHub
23142
23145
  # @return [String]
23143
23146
  #
23144
23147
  # @!attribute [rw] related_requirements
23145
- # For a control, the industry or regulatory framework requirements
23146
- # that are related to the control. The check for that control is
23147
- # aligned with these requirements.
23148
+ # Typically provides the industry or regulatory framework requirements
23149
+ # that are related to a control. The check for that control is aligned
23150
+ # with these requirements.
23148
23151
  #
23149
23152
  # Array Members: Maximum number of 32 items.
23150
23153
  # @return [Array<String>]
23151
23154
  #
23152
23155
  # @!attribute [rw] status_reasons
23153
- # For findings generated from controls, a list of reasons behind the
23154
- # value of `Status`. For the list of status reason codes and their
23155
- # meanings, see [Standards-related information in the ASFF][1] in the
23156
- # *Security Hub User Guide*.
23157
- #
23158
- #
23159
- #
23160
- # [1]: https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-standards-results.html#securityhub-standards-results-asff
23156
+ # Typically used to provide a list of reasons for the value of
23157
+ # `Status`.
23161
23158
  # @return [Array<Types::StatusReason>]
23162
23159
  #
23163
23160
  # @!attribute [rw] security_control_id
23164
- # The unique identifier of a control across standards. Values for this
23165
- # field typically consist of an Amazon Web Servicesservice and a
23166
- # number, such as APIGateway.5.
23161
+ # Typically provides the unique identifier of a control across
23162
+ # standards. For Security Hub controls, this field consists of an
23163
+ # Amazon Web Servicesservice and a unique number, such as
23164
+ # `APIGateway.5`.
23167
23165
  # @return [String]
23168
23166
  #
23169
23167
  # @!attribute [rw] associated_standards
23170
- # The enabled security standards in which a security control is
23171
- # currently enabled.
23168
+ # Typically provides an array of enabled security standards in which a
23169
+ # security control is currently enabled.
23172
23170
  # @return [Array<Types::AssociatedStandard>]
23173
23171
  #
23174
23172
  # @!attribute [rw] security_control_parameters
23175
- # An object that includes security control parameter names and values.
23173
+ # Typically an object that includes security control parameter names
23174
+ # and values.
23176
23175
  # @return [Array<Types::SecurityControlParameter>]
23177
23176
  #
23178
23177
  # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/Compliance AWS API Documentation
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-securityhub/customizations'
52
52
  # @!group service
53
53
  module Aws::SecurityHub
54
54
 
55
- GEM_VERSION = '1.114.0'
55
+ GEM_VERSION = '1.116.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -50,6 +50,7 @@ module Aws
50
50
  ?session_token: String,
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?stub_responses: untyped,
53
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
54
  ?token_provider: untyped,
54
55
  ?use_dualstack_endpoint: bool,
55
56
  ?use_fips_endpoint: bool,
data/sig/resource.rbs CHANGED
@@ -50,6 +50,7 @@ module Aws
50
50
  ?session_token: String,
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?stub_responses: untyped,
53
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
54
  ?token_provider: untyped,
54
55
  ?use_dualstack_endpoint: bool,
55
56
  ?use_fips_endpoint: bool,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-securityhub
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.114.0
4
+ version: 1.116.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-21 00:00:00.000000000 Z
11
+ date: 2024-09-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.201.0
22
+ version: 3.203.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.201.0
32
+ version: 3.203.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement