aws-sdk-securityhub 1.124.0 → 1.126.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.
@@ -54,7 +54,7 @@ module Aws::SecurityHub
54
54
  autoload :EndpointProvider, 'aws-sdk-securityhub/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-securityhub/endpoints'
56
56
 
57
- GEM_VERSION = '1.124.0'
57
+ GEM_VERSION = '1.126.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -4373,7 +4373,88 @@ module Aws
4373
4373
  labels: Array[::String]?
4374
4374
  }?,
4375
4375
  processed_at: ::String?,
4376
- aws_account_name: ::String?
4376
+ aws_account_name: ::String?,
4377
+ detection: {
4378
+ sequence: {
4379
+ uid: ::String?,
4380
+ actors: Array[
4381
+ {
4382
+ id: ::String?,
4383
+ user: {
4384
+ name: ::String?,
4385
+ uid: ::String?,
4386
+ type: ::String?,
4387
+ credential_uid: ::String?,
4388
+ account: {
4389
+ uid: ::String?,
4390
+ name: ::String?
4391
+ }?
4392
+ }?,
4393
+ session: {
4394
+ uid: ::String?,
4395
+ mfa_status: ("ENABLED" | "DISABLED")?,
4396
+ created_time: ::Integer?,
4397
+ issuer: ::String?
4398
+ }?
4399
+ },
4400
+ ]?,
4401
+ endpoints: Array[
4402
+ {
4403
+ id: ::String?,
4404
+ ip: ::String?,
4405
+ domain: ::String?,
4406
+ port: ::Integer?,
4407
+ location: {
4408
+ city: ::String?,
4409
+ country: ::String?,
4410
+ lat: ::Float?,
4411
+ lon: ::Float?
4412
+ }?,
4413
+ autonomous_system: {
4414
+ name: ::String?,
4415
+ number: ::Integer?
4416
+ }?,
4417
+ connection: {
4418
+ direction: ("INBOUND" | "OUTBOUND")?
4419
+ }?
4420
+ },
4421
+ ]?,
4422
+ signals: Array[
4423
+ {
4424
+ type: ::String?,
4425
+ id: ::String?,
4426
+ title: ::String?,
4427
+ product_arn: ::String?,
4428
+ resource_ids: Array[::String]?,
4429
+ signal_indicators: Array[
4430
+ {
4431
+ key: ::String?,
4432
+ values: Array[::String]?,
4433
+ title: ::String?,
4434
+ type: ::String?
4435
+ },
4436
+ ]?,
4437
+ name: ::String?,
4438
+ created_at: ::Integer?,
4439
+ updated_at: ::Integer?,
4440
+ first_seen_at: ::Integer?,
4441
+ last_seen_at: ::Integer?,
4442
+ severity: ::Float?,
4443
+ count: ::Integer?,
4444
+ actor_ids: Array[::String]?,
4445
+ endpoint_ids: Array[::String]?
4446
+ },
4447
+ ]?,
4448
+ sequence_indicators: Array[
4449
+ {
4450
+ key: ::String?,
4451
+ values: Array[::String]?,
4452
+ title: ::String?,
4453
+ type: ::String?
4454
+ },
4455
+ ]?
4456
+ }?
4457
+ }?
4377
4458
  },
4378
4459
  ]
4379
4460
  ) -> _BatchImportFindingsResponseSuccess
data/sig/types.rbs CHANGED
@@ -80,6 +80,30 @@ module Aws::SecurityHub
80
80
  SENSITIVE: []
81
81
  end
82
82
 
83
+ class Actor
84
+ attr_accessor id: ::String
85
+ attr_accessor user: Types::ActorUser
86
+ attr_accessor session: Types::ActorSession
87
+ SENSITIVE: []
88
+ end
89
+
90
+ class ActorSession
91
+ attr_accessor uid: ::String
92
+ attr_accessor mfa_status: ("ENABLED" | "DISABLED")
93
+ attr_accessor created_time: ::Integer
94
+ attr_accessor issuer: ::String
95
+ SENSITIVE: []
96
+ end
97
+
98
+ class ActorUser
99
+ attr_accessor name: ::String
100
+ attr_accessor uid: ::String
101
+ attr_accessor type: ::String
102
+ attr_accessor credential_uid: ::String
103
+ attr_accessor account: Types::UserAccount
104
+ SENSITIVE: []
105
+ end
106
+
83
107
  class Adjustment
84
108
  attr_accessor metric: ::String
85
109
  attr_accessor reason: ::String
@@ -4146,6 +4170,7 @@ module Aws::SecurityHub
4146
4170
  attr_accessor generator_details: Types::GeneratorDetails
4147
4171
  attr_accessor processed_at: ::String
4148
4172
  attr_accessor aws_account_name: ::String
4173
+ attr_accessor detection: Types::Detection
4149
4174
  SENSITIVE: []
4150
4175
  end
4151
4176
 
@@ -5169,6 +5194,11 @@ module Aws::SecurityHub
5169
5194
  SENSITIVE: []
5170
5195
  end
5171
5196
 
5197
+ class Detection
5198
+ attr_accessor sequence: Types::Sequence
5199
+ SENSITIVE: []
5200
+ end
5201
+
5172
5202
  class DisableImportFindingsForProductRequest
5173
5203
  attr_accessor product_subscription_arn: ::String
5174
5204
  SENSITIVE: []
@@ -5524,6 +5554,14 @@ module Aws::SecurityHub
5524
5554
  SENSITIVE: []
5525
5555
  end
5526
5556
 
5557
+ class Indicator
5558
+ attr_accessor key: ::String
5559
+ attr_accessor values: ::Array[::String]
5560
+ attr_accessor title: ::String
5561
+ attr_accessor type: ::String
5562
+ SENSITIVE: []
5563
+ end
5564
+
5527
5565
  class Insight
5528
5566
  attr_accessor insight_arn: ::String
5529
5567
  attr_accessor name: ::String
@@ -5809,6 +5847,17 @@ module Aws::SecurityHub
5809
5847
  SENSITIVE: []
5810
5848
  end
5811
5849
 
5850
+ class NetworkAutonomousSystem
5851
+ attr_accessor name: ::String
5852
+ attr_accessor number: ::Integer
5853
+ SENSITIVE: []
5854
+ end
5855
+
5856
+ class NetworkConnection
5857
+ attr_accessor direction: ("INBOUND" | "OUTBOUND")
5858
+ SENSITIVE: []
5859
+ end
5860
+
5812
5861
  class NetworkConnectionAction
5813
5862
  attr_accessor connection_direction: ::String
5814
5863
  attr_accessor remote_ip_details: Types::ActionRemoteIpDetails
@@ -5819,6 +5868,25 @@ module Aws::SecurityHub
5819
5868
  SENSITIVE: []
5820
5869
  end
5821
5870
 
5871
+ class NetworkEndpoint
5872
+ attr_accessor id: ::String
5873
+ attr_accessor ip: ::String
5874
+ attr_accessor domain: ::String
5875
+ attr_accessor port: ::Integer
5876
+ attr_accessor location: Types::NetworkGeoLocation
5877
+ attr_accessor autonomous_system: Types::NetworkAutonomousSystem
5878
+ attr_accessor connection: Types::NetworkConnection
5879
+ SENSITIVE: []
5880
+ end
5881
+
5882
+ class NetworkGeoLocation
5883
+ attr_accessor city: ::String
5884
+ attr_accessor country: ::String
5885
+ attr_accessor lat: ::Float
5886
+ attr_accessor lon: ::Float
5887
+ SENSITIVE: []
5888
+ end
5889
+
5822
5890
  class NetworkHeader
5823
5891
  attr_accessor protocol: ::String
5824
5892
  attr_accessor destination: Types::NetworkPathComponentDetails
@@ -6387,6 +6455,15 @@ module Aws::SecurityHub
6387
6455
  SENSITIVE: []
6388
6456
  end
6389
6457
 
6458
+ class Sequence
6459
+ attr_accessor uid: ::String
6460
+ attr_accessor actors: ::Array[Types::Actor]
6461
+ attr_accessor endpoints: ::Array[Types::NetworkEndpoint]
6462
+ attr_accessor signals: ::Array[Types::Signal]
6463
+ attr_accessor sequence_indicators: ::Array[Types::Indicator]
6464
+ SENSITIVE: []
6465
+ end
6466
+
6390
6467
  class Severity
6391
6468
  attr_accessor product: ::Float
6392
6469
  attr_accessor label: ("INFORMATIONAL" | "LOW" | "MEDIUM" | "HIGH" | "CRITICAL")
@@ -6402,6 +6479,25 @@ module Aws::SecurityHub
6402
6479
  SENSITIVE: []
6403
6480
  end
6404
6481
 
6482
+ class Signal
6483
+ attr_accessor type: ::String
6484
+ attr_accessor id: ::String
6485
+ attr_accessor title: ::String
6486
+ attr_accessor product_arn: ::String
6487
+ attr_accessor resource_ids: ::Array[::String]
6488
+ attr_accessor signal_indicators: ::Array[Types::Indicator]
6489
+ attr_accessor name: ::String
6490
+ attr_accessor created_at: ::Integer
6491
+ attr_accessor updated_at: ::Integer
6492
+ attr_accessor first_seen_at: ::Integer
6493
+ attr_accessor last_seen_at: ::Integer
6494
+ attr_accessor severity: ::Float
6495
+ attr_accessor count: ::Integer
6496
+ attr_accessor actor_ids: ::Array[::String]
6497
+ attr_accessor endpoint_ids: ::Array[::String]
6498
+ SENSITIVE: []
6499
+ end
6500
+
6405
6501
  class SoftwarePackage
6406
6502
  attr_accessor name: ::String
6407
6503
  attr_accessor version: ::String
@@ -6786,6 +6882,12 @@ module Aws::SecurityHub
6786
6882
  class UpdateStandardsControlResponse < Aws::EmptyStructure
6787
6883
  end
6788
6884
 
6885
+ class UserAccount
6886
+ attr_accessor uid: ::String
6887
+ attr_accessor name: ::String
6888
+ SENSITIVE: []
6889
+ end
6890
+
6789
6891
  class VolumeMount
6790
6892
  attr_accessor name: ::String
6791
6893
  attr_accessor mount_path: ::String
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.124.0
4
+ version: 1.126.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-11-18 00:00:00.000000000 Z
11
+ date: 2024-12-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core