aws-sdk-guardduty 1.89.0 → 1.91.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: 17b65972af65719879325e2105b93afa525189c5851a519d735654f8282ea2fc
4
- data.tar.gz: f1b9299e18b7f95e4cb643e3a655756b6decad4ecd590d69c452b86e9e27b6e5
3
+ metadata.gz: db86555a9f39ea4fd2bd6be22cf594a01da757f2f1bc7fa32588be3e9ec334c2
4
+ data.tar.gz: 687faaa74fd5b34a4707d45802320415f0c6ec9bf75d21b085bc24ea370cc040
5
5
  SHA512:
6
- metadata.gz: 8a7139d8178d2b490ca621c8656b20c57043ade1900ddd37127ddf4a902b01967ed0bf0f4cbef0bde52fdcd8a9f4b5cba555fa3d43e81391ebb2668aef27bfd3
7
- data.tar.gz: cecdd4ccab6555b0ab9befacf0c6db6ba16f6354a9c0db764712da5295356a5f3325eec2a02c06a00cc0409de687548dd5503bb87db0979fc4e08692ec8e132c
6
+ metadata.gz: b7babceaef5731de3e7084418a43557e6be51696dd3a50b109a6f39d3d0285b7b7f874cce405a45672e38c1a3b7706bd780cfb5020fc15d35025892017d3fc54
7
+ data.tar.gz: f2d00dcaeb621858da3e70394b4e9ea431d57fa6bd8cf4e29e56ad3ee7d28909abc6434b33f560ba5209be21e4d0bf6c3efd16abe1e3525897d655f0d9feb8ee
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.91.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.90.0 (2024-04-18)
10
+ ------------------
11
+
12
+ * Feature - Added IPv6Address fields for local and remote IP addresses
13
+
4
14
  1.89.0 (2024-03-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.89.0
1
+ 1.91.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::GuardDuty
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::GuardDuty
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -337,50 +346,65 @@ module Aws::GuardDuty
337
346
  # @option options [Aws::GuardDuty::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::GuardDuty::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
365
- #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
368
399
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
372
402
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
378
405
  #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -735,6 +759,8 @@ module Aws::GuardDuty
735
759
  #
736
760
  # * service.action.awsApiCallAction.remoteIpDetails.ipAddressV4
737
761
  #
762
+ # * service.action.awsApiCallAction.remoteIpDetails.ipAddressV6
763
+ #
738
764
  # * service.action.awsApiCallAction.remoteIpDetails.organization.asn
739
765
  #
740
766
  # * service.action.awsApiCallAction.remoteIpDetails.organization.asnOrg
@@ -759,6 +785,8 @@ module Aws::GuardDuty
759
785
  #
760
786
  # * service.action.networkConnectionAction.remoteIpDetails.ipAddressV4
761
787
  #
788
+ # * service.action.networkConnectionAction.remoteIpDetails.ipAddressV6
789
+ #
762
790
  # * service.action.networkConnectionAction.remoteIpDetails.organization.asn
763
791
  #
764
792
  # * service.action.networkConnectionAction.remoteIpDetails.organization.asnOrg
@@ -769,6 +797,8 @@ module Aws::GuardDuty
769
797
  #
770
798
  # * service.action.kubernetesApiCallAction.remoteIpDetails.ipAddressV4
771
799
  #
800
+ # * service.action.kubernetesApiCallAction.remoteIpDetails.ipAddressV6
801
+ #
772
802
  # * service.action.kubernetesApiCallAction.namespace
773
803
  #
774
804
  # * service.action.kubernetesApiCallAction.remoteIpDetails.organization.asn
@@ -779,6 +809,8 @@ module Aws::GuardDuty
779
809
  #
780
810
  # * service.action.networkConnectionAction.localIpDetails.ipAddressV4
781
811
  #
812
+ # * service.action.networkConnectionAction.localIpDetails.ipAddressV6
813
+ #
782
814
  # * service.action.networkConnectionAction.protocol
783
815
  #
784
816
  # * service.action.awsApiCallAction.serviceName
@@ -2305,6 +2337,7 @@ module Aws::GuardDuty
2305
2337
  # resp.findings[0].service.action.aws_api_call_action.remote_ip_details.geo_location.lat #=> Float
2306
2338
  # resp.findings[0].service.action.aws_api_call_action.remote_ip_details.geo_location.lon #=> Float
2307
2339
  # resp.findings[0].service.action.aws_api_call_action.remote_ip_details.ip_address_v4 #=> String
2340
+ # resp.findings[0].service.action.aws_api_call_action.remote_ip_details.ip_address_v6 #=> String
2308
2341
  # resp.findings[0].service.action.aws_api_call_action.remote_ip_details.organization.asn #=> String
2309
2342
  # resp.findings[0].service.action.aws_api_call_action.remote_ip_details.organization.asn_org #=> String
2310
2343
  # resp.findings[0].service.action.aws_api_call_action.remote_ip_details.organization.isp #=> String
@@ -2324,12 +2357,14 @@ module Aws::GuardDuty
2324
2357
  # resp.findings[0].service.action.network_connection_action.local_port_details.port_name #=> String
2325
2358
  # resp.findings[0].service.action.network_connection_action.protocol #=> String
2326
2359
  # resp.findings[0].service.action.network_connection_action.local_ip_details.ip_address_v4 #=> String
2360
+ # resp.findings[0].service.action.network_connection_action.local_ip_details.ip_address_v6 #=> String
2327
2361
  # resp.findings[0].service.action.network_connection_action.remote_ip_details.city.city_name #=> String
2328
2362
  # resp.findings[0].service.action.network_connection_action.remote_ip_details.country.country_code #=> String
2329
2363
  # resp.findings[0].service.action.network_connection_action.remote_ip_details.country.country_name #=> String
2330
2364
  # resp.findings[0].service.action.network_connection_action.remote_ip_details.geo_location.lat #=> Float
2331
2365
  # resp.findings[0].service.action.network_connection_action.remote_ip_details.geo_location.lon #=> Float
2332
2366
  # resp.findings[0].service.action.network_connection_action.remote_ip_details.ip_address_v4 #=> String
2367
+ # resp.findings[0].service.action.network_connection_action.remote_ip_details.ip_address_v6 #=> String
2333
2368
  # resp.findings[0].service.action.network_connection_action.remote_ip_details.organization.asn #=> String
2334
2369
  # resp.findings[0].service.action.network_connection_action.remote_ip_details.organization.asn_org #=> String
2335
2370
  # resp.findings[0].service.action.network_connection_action.remote_ip_details.organization.isp #=> String
@@ -2341,12 +2376,14 @@ module Aws::GuardDuty
2341
2376
  # resp.findings[0].service.action.port_probe_action.port_probe_details[0].local_port_details.port #=> Integer
2342
2377
  # resp.findings[0].service.action.port_probe_action.port_probe_details[0].local_port_details.port_name #=> String
2343
2378
  # resp.findings[0].service.action.port_probe_action.port_probe_details[0].local_ip_details.ip_address_v4 #=> String
2379
+ # resp.findings[0].service.action.port_probe_action.port_probe_details[0].local_ip_details.ip_address_v6 #=> String
2344
2380
  # resp.findings[0].service.action.port_probe_action.port_probe_details[0].remote_ip_details.city.city_name #=> String
2345
2381
  # resp.findings[0].service.action.port_probe_action.port_probe_details[0].remote_ip_details.country.country_code #=> String
2346
2382
  # resp.findings[0].service.action.port_probe_action.port_probe_details[0].remote_ip_details.country.country_name #=> String
2347
2383
  # resp.findings[0].service.action.port_probe_action.port_probe_details[0].remote_ip_details.geo_location.lat #=> Float
2348
2384
  # resp.findings[0].service.action.port_probe_action.port_probe_details[0].remote_ip_details.geo_location.lon #=> Float
2349
2385
  # resp.findings[0].service.action.port_probe_action.port_probe_details[0].remote_ip_details.ip_address_v4 #=> String
2386
+ # resp.findings[0].service.action.port_probe_action.port_probe_details[0].remote_ip_details.ip_address_v6 #=> String
2350
2387
  # resp.findings[0].service.action.port_probe_action.port_probe_details[0].remote_ip_details.organization.asn #=> String
2351
2388
  # resp.findings[0].service.action.port_probe_action.port_probe_details[0].remote_ip_details.organization.asn_org #=> String
2352
2389
  # resp.findings[0].service.action.port_probe_action.port_probe_details[0].remote_ip_details.organization.isp #=> String
@@ -2362,6 +2399,7 @@ module Aws::GuardDuty
2362
2399
  # resp.findings[0].service.action.kubernetes_api_call_action.remote_ip_details.geo_location.lat #=> Float
2363
2400
  # resp.findings[0].service.action.kubernetes_api_call_action.remote_ip_details.geo_location.lon #=> Float
2364
2401
  # resp.findings[0].service.action.kubernetes_api_call_action.remote_ip_details.ip_address_v4 #=> String
2402
+ # resp.findings[0].service.action.kubernetes_api_call_action.remote_ip_details.ip_address_v6 #=> String
2365
2403
  # resp.findings[0].service.action.kubernetes_api_call_action.remote_ip_details.organization.asn #=> String
2366
2404
  # resp.findings[0].service.action.kubernetes_api_call_action.remote_ip_details.organization.asn_org #=> String
2367
2405
  # resp.findings[0].service.action.kubernetes_api_call_action.remote_ip_details.organization.isp #=> String
@@ -2378,6 +2416,7 @@ module Aws::GuardDuty
2378
2416
  # resp.findings[0].service.action.rds_login_attempt_action.remote_ip_details.geo_location.lat #=> Float
2379
2417
  # resp.findings[0].service.action.rds_login_attempt_action.remote_ip_details.geo_location.lon #=> Float
2380
2418
  # resp.findings[0].service.action.rds_login_attempt_action.remote_ip_details.ip_address_v4 #=> String
2419
+ # resp.findings[0].service.action.rds_login_attempt_action.remote_ip_details.ip_address_v6 #=> String
2381
2420
  # resp.findings[0].service.action.rds_login_attempt_action.remote_ip_details.organization.asn #=> String
2382
2421
  # resp.findings[0].service.action.rds_login_attempt_action.remote_ip_details.organization.asn_org #=> String
2383
2422
  # resp.findings[0].service.action.rds_login_attempt_action.remote_ip_details.organization.isp #=> String
@@ -4694,7 +4733,7 @@ module Aws::GuardDuty
4694
4733
  params: params,
4695
4734
  config: config)
4696
4735
  context[:gem_name] = 'aws-sdk-guardduty'
4697
- context[:gem_version] = '1.89.0'
4736
+ context[:gem_version] = '1.91.0'
4698
4737
  Seahorse::Client::Request.new(handlers, context)
4699
4738
  end
4700
4739
 
@@ -1526,6 +1526,7 @@ module Aws::GuardDuty
1526
1526
  ListThreatIntelSetsResponse.struct_class = Types::ListThreatIntelSetsResponse
1527
1527
 
1528
1528
  LocalIpDetails.add_member(:ip_address_v4, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "ipAddressV4"))
1529
+ LocalIpDetails.add_member(:ip_address_v6, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "ipAddressV6"))
1529
1530
  LocalIpDetails.struct_class = Types::LocalIpDetails
1530
1531
 
1531
1532
  LocalPortDetails.add_member(:port, Shapes::ShapeRef.new(shape: Integer, location_name: "port"))
@@ -1817,6 +1818,7 @@ module Aws::GuardDuty
1817
1818
  RemoteIpDetails.add_member(:country, Shapes::ShapeRef.new(shape: Country, location_name: "country"))
1818
1819
  RemoteIpDetails.add_member(:geo_location, Shapes::ShapeRef.new(shape: GeoLocation, location_name: "geoLocation"))
1819
1820
  RemoteIpDetails.add_member(:ip_address_v4, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "ipAddressV4"))
1821
+ RemoteIpDetails.add_member(:ip_address_v6, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "ipAddressV6"))
1820
1822
  RemoteIpDetails.add_member(:organization, Shapes::ShapeRef.new(shape: Organization, location_name: "organization"))
1821
1823
  RemoteIpDetails.struct_class = Types::RemoteIpDetails
1822
1824
 
@@ -1306,6 +1306,8 @@ module Aws::GuardDuty
1306
1306
  #
1307
1307
  # * service.action.awsApiCallAction.remoteIpDetails.ipAddressV4
1308
1308
  #
1309
+ # * service.action.awsApiCallAction.remoteIpDetails.ipAddressV6
1310
+ #
1309
1311
  # * service.action.awsApiCallAction.remoteIpDetails.organization.asn
1310
1312
  #
1311
1313
  # * service.action.awsApiCallAction.remoteIpDetails.organization.asnOrg
@@ -1330,6 +1332,8 @@ module Aws::GuardDuty
1330
1332
  #
1331
1333
  # * service.action.networkConnectionAction.remoteIpDetails.ipAddressV4
1332
1334
  #
1335
+ # * service.action.networkConnectionAction.remoteIpDetails.ipAddressV6
1336
+ #
1333
1337
  # * service.action.networkConnectionAction.remoteIpDetails.organization.asn
1334
1338
  #
1335
1339
  # * service.action.networkConnectionAction.remoteIpDetails.organization.asnOrg
@@ -1340,6 +1344,8 @@ module Aws::GuardDuty
1340
1344
  #
1341
1345
  # * service.action.kubernetesApiCallAction.remoteIpDetails.ipAddressV4
1342
1346
  #
1347
+ # * service.action.kubernetesApiCallAction.remoteIpDetails.ipAddressV6
1348
+ #
1343
1349
  # * service.action.kubernetesApiCallAction.namespace
1344
1350
  #
1345
1351
  # * service.action.kubernetesApiCallAction.remoteIpDetails.organization.asn
@@ -1350,6 +1356,8 @@ module Aws::GuardDuty
1350
1356
  #
1351
1357
  # * service.action.networkConnectionAction.localIpDetails.ipAddressV4
1352
1358
  #
1359
+ # * service.action.networkConnectionAction.localIpDetails.ipAddressV6
1360
+ #
1353
1361
  # * service.action.networkConnectionAction.protocol
1354
1362
  #
1355
1363
  # * service.action.awsApiCallAction.serviceName
@@ -5039,11 +5047,16 @@ module Aws::GuardDuty
5039
5047
  # The IPv4 local address of the connection.
5040
5048
  # @return [String]
5041
5049
  #
5050
+ # @!attribute [rw] ip_address_v6
5051
+ # The IPv6 local address of the connection.
5052
+ # @return [String]
5053
+ #
5042
5054
  # @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/LocalIpDetails AWS API Documentation
5043
5055
  #
5044
5056
  class LocalIpDetails < Struct.new(
5045
- :ip_address_v4)
5046
- SENSITIVE = [:ip_address_v4]
5057
+ :ip_address_v4,
5058
+ :ip_address_v6)
5059
+ SENSITIVE = [:ip_address_v4, :ip_address_v6]
5047
5060
  include Aws::Structure
5048
5061
  end
5049
5062
 
@@ -6383,6 +6396,10 @@ module Aws::GuardDuty
6383
6396
  # The IPv4 remote address of the connection.
6384
6397
  # @return [String]
6385
6398
  #
6399
+ # @!attribute [rw] ip_address_v6
6400
+ # The IPv6 remote address of the connection.
6401
+ # @return [String]
6402
+ #
6386
6403
  # @!attribute [rw] organization
6387
6404
  # The ISP organization information of the remote IP address.
6388
6405
  # @return [Types::Organization]
@@ -6394,8 +6411,9 @@ module Aws::GuardDuty
6394
6411
  :country,
6395
6412
  :geo_location,
6396
6413
  :ip_address_v4,
6414
+ :ip_address_v6,
6397
6415
  :organization)
6398
- SENSITIVE = [:ip_address_v4]
6416
+ SENSITIVE = [:ip_address_v4, :ip_address_v6]
6399
6417
  include Aws::Structure
6400
6418
  end
6401
6419
 
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-guardduty/customizations'
52
52
  # @!group service
53
53
  module Aws::GuardDuty
54
54
 
55
- GEM_VERSION = '1.89.0'
55
+ GEM_VERSION = '1.91.0'
56
56
 
57
57
  end
data/sig/types.rbs CHANGED
@@ -1325,7 +1325,8 @@ module Aws::GuardDuty
1325
1325
 
1326
1326
  class LocalIpDetails
1327
1327
  attr_accessor ip_address_v4: ::String
1328
- SENSITIVE: [:ip_address_v4]
1328
+ attr_accessor ip_address_v6: ::String
1329
+ SENSITIVE: [:ip_address_v4, :ip_address_v6]
1329
1330
  end
1330
1331
 
1331
1332
  class LocalPortDetails
@@ -1674,8 +1675,9 @@ module Aws::GuardDuty
1674
1675
  attr_accessor country: Types::Country
1675
1676
  attr_accessor geo_location: Types::GeoLocation
1676
1677
  attr_accessor ip_address_v4: ::String
1678
+ attr_accessor ip_address_v6: ::String
1677
1679
  attr_accessor organization: Types::Organization
1678
- SENSITIVE: [:ip_address_v4]
1680
+ SENSITIVE: [:ip_address_v4, :ip_address_v6]
1679
1681
  end
1680
1682
 
1681
1683
  class RemotePortDetails
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-guardduty
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.89.0
4
+ version: 1.91.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-03-28 00:00:00.000000000 Z
11
+ date: 2024-04-25 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.191.0
22
+ version: 3.193.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.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement