aws-sdk-securityhub 1.158.0 → 1.159.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.
data/sig/types.rbs CHANGED
@@ -241,6 +241,9 @@ module Aws::SecurityHub
241
241
  attr_accessor resource_application_arn: ::Array[Types::StringFilter]
242
242
  attr_accessor resource_application_name: ::Array[Types::StringFilter]
243
243
  attr_accessor aws_account_name: ::Array[Types::StringFilter]
244
+ attr_accessor resource_provider: ::Array[Types::StringFilter]
245
+ attr_accessor resource_owner_account_id: ::Array[Types::StringFilter]
246
+ attr_accessor resource_owner_org_id: ::Array[Types::StringFilter]
244
247
  SENSITIVE: []
245
248
  end
246
249
 
@@ -4322,6 +4325,9 @@ module Aws::SecurityHub
4322
4325
  attr_accessor aws_account_name: ::Array[Types::StringFilter]
4323
4326
  attr_accessor resource_application_name: ::Array[Types::StringFilter]
4324
4327
  attr_accessor resource_application_arn: ::Array[Types::StringFilter]
4328
+ attr_accessor resource_owner_account_id: ::Array[Types::StringFilter]
4329
+ attr_accessor resource_owner_org_id: ::Array[Types::StringFilter]
4330
+ attr_accessor resource_provider: ::Array[Types::StringFilter]
4325
4331
  SENSITIVE: []
4326
4332
  end
4327
4333
 
@@ -4689,6 +4695,32 @@ module Aws::SecurityHub
4689
4695
  SENSITIVE: []
4690
4696
  end
4691
4697
 
4698
+ class AzureDetail
4699
+ attr_accessor aws_config_connector_arn: ::String
4700
+ attr_accessor scope_configuration: Types::AzureScopeConfiguration
4701
+ attr_accessor azure_regions: ::Array[::String]
4702
+ SENSITIVE: []
4703
+ end
4704
+
4705
+ class AzureProviderConfiguration
4706
+ attr_accessor aws_config_connector_arn: ::String
4707
+ attr_accessor scope_configuration: Types::AzureScopeConfiguration
4708
+ attr_accessor azure_regions: ::Array[::String]
4709
+ SENSITIVE: []
4710
+ end
4711
+
4712
+ class AzureScopeConfiguration
4713
+ attr_accessor scope_type: ("TENANT" | "SUBSCRIPTION")
4714
+ attr_accessor scope_values: ::Array[::String]
4715
+ SENSITIVE: []
4716
+ end
4717
+
4718
+ class AzureUpdateConfiguration
4719
+ attr_accessor scope_configuration: Types::AzureScopeConfiguration
4720
+ attr_accessor azure_regions: ::Array[::String]
4721
+ SENSITIVE: []
4722
+ end
4723
+
4692
4724
  class BatchDeleteAutomationRulesRequest
4693
4725
  attr_accessor automation_rules_arns: ::Array[::String]
4694
4726
  SENSITIVE: []
@@ -5014,6 +5046,8 @@ module Aws::SecurityHub
5014
5046
  attr_accessor description: ::String
5015
5047
  attr_accessor provider_summary: Types::ProviderSummary
5016
5048
  attr_accessor created_at: ::Time
5049
+ attr_accessor enablement_status: ("ENABLED" | "PENDING_ENABLEMENT" | "FAILED_TO_ENABLE" | "PENDING_UPDATE" | "FAILED_TO_UPDATE" | "PENDING_DELETION" | "FAILED_TO_DELETE")
5050
+ attr_accessor enablement_status_reason: ::String
5017
5051
  SENSITIVE: []
5018
5052
  end
5019
5053
 
@@ -5116,6 +5150,23 @@ module Aws::SecurityHub
5116
5150
  SENSITIVE: []
5117
5151
  end
5118
5152
 
5153
+ class CreateConnectorRequest
5154
+ attr_accessor name: ::String
5155
+ attr_accessor description: ::String
5156
+ attr_accessor provider: Types::CspmProviderConfiguration
5157
+ attr_accessor tags: ::Hash[::String, ::String]
5158
+ attr_accessor client_token: ::String
5159
+ SENSITIVE: []
5160
+ end
5161
+
5162
+ class CreateConnectorResponse
5163
+ attr_accessor connector_arn: ::String
5164
+ attr_accessor connector_id: ::String
5165
+ attr_accessor connector_status: ("CONNECTED" | "DEGRADED" | "FAILED_TO_CONNECT" | "UNKNOWN")
5166
+ attr_accessor enablement_status: ("ENABLED" | "PENDING_ENABLEMENT" | "PENDING_UPDATE" | "PENDING_DELETION")
5167
+ SENSITIVE: []
5168
+ end
5169
+
5119
5170
  class CreateConnectorV2Request
5120
5171
  attr_accessor name: ::String
5121
5172
  attr_accessor description: ::String
@@ -5130,7 +5181,8 @@ module Aws::SecurityHub
5130
5181
  attr_accessor connector_arn: ::String
5131
5182
  attr_accessor connector_id: ::String
5132
5183
  attr_accessor auth_url: ::String
5133
- attr_accessor connector_status: ("CONNECTED" | "FAILED_TO_CONNECT" | "PENDING_CONFIGURATION" | "PENDING_AUTHORIZATION")
5184
+ attr_accessor connector_status: ("CONNECTED" | "DEGRADED" | "FAILED_TO_CONNECT" | "PENDING_AUTHORIZATION" | "PENDING_CONFIGURATION" | "UNKNOWN")
5185
+ attr_accessor enablement_status: ("ENABLED" | "PENDING_ENABLEMENT" | "FAILED_TO_ENABLE" | "PENDING_UPDATE" | "FAILED_TO_UPDATE" | "PENDING_DELETION" | "FAILED_TO_DELETE")
5134
5186
  SENSITIVE: []
5135
5187
  end
5136
5188
 
@@ -5195,6 +5247,66 @@ module Aws::SecurityHub
5195
5247
  end
5196
5248
  end
5197
5249
 
5250
+ class CspmConnectorSummary
5251
+ attr_accessor connector_arn: ::String
5252
+ attr_accessor connector_id: ::String
5253
+ attr_accessor name: ::String
5254
+ attr_accessor description: ::String
5255
+ attr_accessor provider_summary: Types::CspmProviderSummary
5256
+ attr_accessor created_at: ::Time
5257
+ attr_accessor created_by: ::String
5258
+ attr_accessor enablement_status: ("ENABLED" | "PENDING_ENABLEMENT" | "PENDING_UPDATE" | "PENDING_DELETION")
5259
+ SENSITIVE: []
5260
+ end
5261
+
5262
+ class CspmHealthCheck
5263
+ attr_accessor connector_status: ("CONNECTED" | "DEGRADED" | "FAILED_TO_CONNECT" | "UNKNOWN")
5264
+ attr_accessor message: ::String
5265
+ attr_accessor last_checked_at: ::Time
5266
+ attr_accessor issues: ::Array[Types::HealthIssue]
5267
+ SENSITIVE: []
5268
+ end
5269
+
5270
+ class CspmProviderConfiguration
5271
+ attr_accessor azure: Types::AzureProviderConfiguration
5272
+ attr_accessor unknown: untyped
5273
+ SENSITIVE: []
5274
+
5275
+ class Azure < CspmProviderConfiguration
5276
+ end
5277
+ class Unknown < CspmProviderConfiguration
5278
+ end
5279
+ end
5280
+
5281
+ class CspmProviderDetail
5282
+ attr_accessor azure: Types::AzureDetail
5283
+ attr_accessor unknown: untyped
5284
+ SENSITIVE: []
5285
+
5286
+ class Azure < CspmProviderDetail
5287
+ end
5288
+ class Unknown < CspmProviderDetail
5289
+ end
5290
+ end
5291
+
5292
+ class CspmProviderSummary
5293
+ attr_accessor provider_name: ("AZURE")
5294
+ attr_accessor connector_status: ("CONNECTED" | "DEGRADED" | "FAILED_TO_CONNECT" | "UNKNOWN")
5295
+ attr_accessor provider_configuration: Types::CspmProviderDetail
5296
+ SENSITIVE: []
5297
+ end
5298
+
5299
+ class CspmProviderUpdateConfiguration
5300
+ attr_accessor azure: Types::AzureUpdateConfiguration
5301
+ attr_accessor unknown: untyped
5302
+ SENSITIVE: []
5303
+
5304
+ class Azure < CspmProviderUpdateConfiguration
5305
+ end
5306
+ class Unknown < CspmProviderUpdateConfiguration
5307
+ end
5308
+ end
5309
+
5198
5310
  class CustomDataIdentifiersDetections
5199
5311
  attr_accessor count: ::Integer
5200
5312
  attr_accessor arn: ::String
@@ -5282,12 +5394,24 @@ module Aws::SecurityHub
5282
5394
  class DeleteConfigurationPolicyResponse < Aws::EmptyStructure
5283
5395
  end
5284
5396
 
5397
+ class DeleteConnectorRequest
5398
+ attr_accessor connector_id: ::String
5399
+ SENSITIVE: []
5400
+ end
5401
+
5402
+ class DeleteConnectorResponse
5403
+ attr_accessor enablement_status: ("ENABLED" | "PENDING_ENABLEMENT" | "PENDING_UPDATE" | "PENDING_DELETION")
5404
+ SENSITIVE: []
5405
+ end
5406
+
5285
5407
  class DeleteConnectorV2Request
5286
5408
  attr_accessor connector_id: ::String
5287
5409
  SENSITIVE: []
5288
5410
  end
5289
5411
 
5290
- class DeleteConnectorV2Response < Aws::EmptyStructure
5412
+ class DeleteConnectorV2Response
5413
+ attr_accessor enablement_status: ("ENABLED" | "PENDING_ENABLEMENT" | "FAILED_TO_ENABLE" | "PENDING_UPDATE" | "FAILED_TO_UPDATE" | "PENDING_DELETION" | "FAILED_TO_DELETE")
5414
+ SENSITIVE: []
5291
5415
  end
5292
5416
 
5293
5417
  class DeleteFindingAggregatorRequest
@@ -5396,6 +5520,7 @@ module Aws::SecurityHub
5396
5520
  class DescribeSecurityHubV2Response
5397
5521
  attr_accessor hub_v2_arn: ::String
5398
5522
  attr_accessor subscribed_at: ::String
5523
+ attr_accessor features: ::Hash[::String, Types::FeatureDetail]
5399
5524
  SENSITIVE: []
5400
5525
  end
5401
5526
 
@@ -5415,6 +5540,7 @@ module Aws::SecurityHub
5415
5540
  class DescribeStandardsRequest
5416
5541
  attr_accessor next_token: ::String
5417
5542
  attr_accessor max_results: ::Integer
5543
+ attr_accessor providers: ::Array[("AWS" | "Azure")]
5418
5544
  SENSITIVE: []
5419
5545
  end
5420
5546
 
@@ -5446,6 +5572,14 @@ module Aws::SecurityHub
5446
5572
  class DisableOrganizationAdminAccountResponse < Aws::EmptyStructure
5447
5573
  end
5448
5574
 
5575
+ class DisableSecurityHubFeatureV2Request
5576
+ attr_accessor feature_name: ("NETWORK_SCANNING")
5577
+ SENSITIVE: []
5578
+ end
5579
+
5580
+ class DisableSecurityHubFeatureV2Response < Aws::EmptyStructure
5581
+ end
5582
+
5449
5583
  class DisableSecurityHubRequest < Aws::EmptyStructure
5450
5584
  end
5451
5585
 
@@ -5514,6 +5648,14 @@ module Aws::SecurityHub
5514
5648
  SENSITIVE: []
5515
5649
  end
5516
5650
 
5651
+ class EnableSecurityHubFeatureV2Request
5652
+ attr_accessor feature_name: ("NETWORK_SCANNING")
5653
+ SENSITIVE: []
5654
+ end
5655
+
5656
+ class EnableSecurityHubFeatureV2Response < Aws::EmptyStructure
5657
+ end
5658
+
5517
5659
  class EnableSecurityHubRequest
5518
5660
  attr_accessor tags: ::Hash[::String, ::String]
5519
5661
  attr_accessor enable_default_standards: bool
@@ -5552,6 +5694,12 @@ module Aws::SecurityHub
5552
5694
  SENSITIVE: []
5553
5695
  end
5554
5696
 
5697
+ class FeatureDetail
5698
+ attr_accessor feature_status: ("ENABLED" | "DISABLED")
5699
+ attr_accessor updated_at: ::Time
5700
+ SENSITIVE: []
5701
+ end
5702
+
5555
5703
  class FilePaths
5556
5704
  attr_accessor file_path: ::String
5557
5705
  attr_accessor file_name: ::String
@@ -5622,7 +5770,7 @@ module Aws::SecurityHub
5622
5770
  end
5623
5771
 
5624
5772
  class FindingsTrendsStringFilter
5625
- attr_accessor field_name: ("account_id" | "region" | "finding_types" | "finding_status" | "finding_cve_ids" | "finding_compliance_status" | "finding_control_id" | "finding_class_name" | "finding_provider" | "finding_activity_name")
5773
+ attr_accessor field_name: ("account_id" | "region" | "finding_types" | "finding_status" | "finding_cve_ids" | "finding_compliance_status" | "finding_control_id" | "finding_class_name" | "finding_provider" | "finding_activity_name" | "resource_cloud_providers" | "resource_regions" | "resource_owner_ids" | "resource_owner_organization_ids")
5626
5774
  attr_accessor filter: Types::StringFilter
5627
5775
  SENSITIVE: []
5628
5776
  end
@@ -5746,6 +5894,25 @@ module Aws::SecurityHub
5746
5894
  SENSITIVE: []
5747
5895
  end
5748
5896
 
5897
+ class GetConnectorRequest
5898
+ attr_accessor connector_id: ::String
5899
+ SENSITIVE: []
5900
+ end
5901
+
5902
+ class GetConnectorResponse
5903
+ attr_accessor connector_arn: ::String
5904
+ attr_accessor connector_id: ::String
5905
+ attr_accessor name: ::String
5906
+ attr_accessor description: ::String
5907
+ attr_accessor created_at: ::Time
5908
+ attr_accessor last_updated_at: ::Time
5909
+ attr_accessor health: Types::CspmHealthCheck
5910
+ attr_accessor provider_detail: Types::CspmProviderDetail
5911
+ attr_accessor created_by: ::String
5912
+ attr_accessor enablement_status: ("ENABLED" | "PENDING_ENABLEMENT" | "PENDING_UPDATE" | "PENDING_DELETION")
5913
+ SENSITIVE: []
5914
+ end
5915
+
5749
5916
  class GetConnectorV2Request
5750
5917
  attr_accessor connector_id: ::String
5751
5918
  SENSITIVE: []
@@ -5761,6 +5928,8 @@ module Aws::SecurityHub
5761
5928
  attr_accessor last_updated_at: ::Time
5762
5929
  attr_accessor health: Types::HealthCheck
5763
5930
  attr_accessor provider_detail: Types::ProviderDetail
5931
+ attr_accessor enablement_status: ("ENABLED" | "PENDING_ENABLEMENT" | "FAILED_TO_ENABLE" | "PENDING_UPDATE" | "FAILED_TO_UPDATE" | "PENDING_DELETION" | "FAILED_TO_DELETE")
5932
+ attr_accessor enablement_status_reason: ::String
5764
5933
  SENSITIVE: []
5765
5934
  end
5766
5935
 
@@ -5768,6 +5937,7 @@ module Aws::SecurityHub
5768
5937
  attr_accessor standards_subscription_arns: ::Array[::String]
5769
5938
  attr_accessor next_token: ::String
5770
5939
  attr_accessor max_results: ::Integer
5940
+ attr_accessor providers: ::Array[("AWS" | "Azure")]
5771
5941
  SENSITIVE: []
5772
5942
  end
5773
5943
 
@@ -5992,7 +6162,7 @@ module Aws::SecurityHub
5992
6162
 
5993
6163
  class GroupByRule
5994
6164
  attr_accessor filters: Types::OcsfFindingFilters
5995
- attr_accessor group_by_field: ("activity_name" | "cloud.account.uid" | "cloud.provider" | "cloud.region" | "compliance.assessments.name" | "compliance.status" | "compliance.control" | "finding_info.title" | "finding_info.related_events.traits.category" | "finding_info.types" | "metadata.product.name" | "metadata.product.uid" | "resources.type" | "resources.uid" | "severity" | "status" | "vulnerabilities.fix_coverage" | "class_name" | "vulnerabilities.affected_packages.name" | "finding_info.analytic.name" | "compliance.standards" | "cloud.account.name" | "vendor_attributes.severity" | "metadata.product.vendor_name")
6165
+ attr_accessor group_by_field: ("activity_name" | "cloud.account.uid" | "cloud.provider" | "cloud.region" | "compliance.assessments.name" | "compliance.status" | "compliance.control" | "finding_info.title" | "finding_info.related_events.traits.category" | "finding_info.types" | "metadata.product.name" | "metadata.product.uid" | "resources.type" | "resources.cloud_partition" | "resources.name" | "resources.owner.account.uid" | "resources.owner.org.uid" | "resources.owner.account.name" | "resources.provider" | "resources.region" | "resources.uid" | "severity" | "status" | "vulnerabilities.fix_coverage" | "class_name" | "vulnerabilities.affected_packages.name" | "finding_info.analytic.name" | "compliance.standards" | "cloud.account.name" | "vendor_attributes.severity" | "metadata.product.vendor_name")
5996
6166
  SENSITIVE: []
5997
6167
  end
5998
6168
 
@@ -6003,9 +6173,16 @@ module Aws::SecurityHub
6003
6173
  end
6004
6174
 
6005
6175
  class HealthCheck
6006
- attr_accessor connector_status: ("CONNECTED" | "FAILED_TO_CONNECT" | "PENDING_CONFIGURATION" | "PENDING_AUTHORIZATION")
6176
+ attr_accessor connector_status: ("CONNECTED" | "DEGRADED" | "FAILED_TO_CONNECT" | "PENDING_AUTHORIZATION" | "PENDING_CONFIGURATION" | "UNKNOWN")
6007
6177
  attr_accessor message: ::String
6008
6178
  attr_accessor last_checked_at: ::Time
6179
+ attr_accessor issues: ::Array[Types::HealthIssue]
6180
+ SENSITIVE: []
6181
+ end
6182
+
6183
+ class HealthIssue
6184
+ attr_accessor code: ("AUTHENTICATION_FAILURE" | "STREAM_AUTHORIZATION_FAILURE" | "DISCOVERY_FAILURE" | "STREAM_LIMIT_EXCEEDED" | "STREAM_DISCONNECTED" | "RECORDING_FAILURE" | "NO_HEALTH_DATA")
6185
+ attr_accessor message: ::String
6009
6186
  SENSITIVE: []
6010
6187
  end
6011
6188
 
@@ -6219,11 +6396,27 @@ module Aws::SecurityHub
6219
6396
  SENSITIVE: []
6220
6397
  end
6221
6398
 
6399
+ class ListConnectorsRequest
6400
+ attr_accessor next_token: ::String
6401
+ attr_accessor max_results: ::Integer
6402
+ attr_accessor provider_name: ("AZURE")
6403
+ attr_accessor connector_status: ("CONNECTED" | "DEGRADED" | "FAILED_TO_CONNECT" | "UNKNOWN")
6404
+ attr_accessor enablement_status: ("ENABLED" | "PENDING_ENABLEMENT" | "PENDING_UPDATE" | "PENDING_DELETION")
6405
+ SENSITIVE: []
6406
+ end
6407
+
6408
+ class ListConnectorsResponse
6409
+ attr_accessor next_token: ::String
6410
+ attr_accessor connectors: ::Array[Types::CspmConnectorSummary]
6411
+ SENSITIVE: []
6412
+ end
6413
+
6222
6414
  class ListConnectorsV2Request
6223
6415
  attr_accessor next_token: ::String
6224
6416
  attr_accessor max_results: ::Integer
6225
- attr_accessor provider_name: ("JIRA_CLOUD" | "SERVICENOW")
6226
- attr_accessor connector_status: ("CONNECTED" | "FAILED_TO_CONNECT" | "PENDING_CONFIGURATION" | "PENDING_AUTHORIZATION")
6417
+ attr_accessor provider_name: ("JIRA_CLOUD" | "SERVICENOW" | "AZURE")
6418
+ attr_accessor connector_status: ("CONNECTED" | "DEGRADED" | "FAILED_TO_CONNECT" | "PENDING_AUTHORIZATION" | "PENDING_CONFIGURATION" | "UNKNOWN")
6419
+ attr_accessor enablement_status: ("ENABLED" | "PENDING_ENABLEMENT" | "FAILED_TO_ENABLE" | "PENDING_UPDATE" | "FAILED_TO_UPDATE" | "PENDING_DELETION" | "FAILED_TO_DELETE")
6227
6420
  SENSITIVE: []
6228
6421
  end
6229
6422
 
@@ -6300,6 +6493,7 @@ module Aws::SecurityHub
6300
6493
  attr_accessor standards_arn: ::String
6301
6494
  attr_accessor next_token: ::String
6302
6495
  attr_accessor max_results: ::Integer
6496
+ attr_accessor providers: ::Array[("AWS" | "Azure")]
6303
6497
  SENSITIVE: []
6304
6498
  end
6305
6499
 
@@ -6516,7 +6710,7 @@ module Aws::SecurityHub
6516
6710
  end
6517
6711
 
6518
6712
  class OcsfStringFilter
6519
- attr_accessor field_name: ("metadata.uid" | "activity_name" | "cloud.account.uid" | "cloud.provider" | "cloud.region" | "compliance.assessments.category" | "compliance.assessments.name" | "compliance.control" | "compliance.status" | "compliance.standards" | "finding_info.desc" | "finding_info.src_url" | "finding_info.title" | "finding_info.types" | "finding_info.uid" | "finding_info.related_events.traits.category" | "finding_info.related_events.uid" | "finding_info.related_events.product.uid" | "finding_info.related_events.title" | "metadata.product.name" | "metadata.product.uid" | "metadata.product.vendor_name" | "remediation.desc" | "remediation.references" | "resources.cloud_partition" | "resources.region" | "resources.type" | "resources.uid" | "severity" | "status" | "comment" | "vulnerabilities.fix_coverage" | "class_name" | "databucket.encryption_details.algorithm" | "databucket.encryption_details.key_uid" | "databucket.file.data_classifications.classifier_details.type" | "evidences.actor.user.account.uid" | "evidences.api.operation" | "evidences.api.response.error_message" | "evidences.api.service.name" | "evidences.connection_info.direction" | "evidences.connection_info.protocol_name" | "evidences.dst_endpoint.autonomous_system.name" | "evidences.dst_endpoint.location.city" | "evidences.dst_endpoint.location.country" | "evidences.src_endpoint.autonomous_system.name" | "evidences.src_endpoint.hostname" | "evidences.src_endpoint.location.city" | "evidences.src_endpoint.location.country" | "finding_info.analytic.name" | "malware.name" | "malware_scan_info.uid" | "malware.severity" | "resources.cloud_function.layers.uid_alt" | "resources.cloud_function.runtime" | "resources.cloud_function.user.uid" | "resources.device.encryption_details.key_uid" | "resources.device.image.uid" | "resources.image.architecture" | "resources.image.registry_uid" | "resources.image.repository_name" | "resources.image.uid" | "resources.subnet_info.uid" | "resources.vpc_uid" | "vulnerabilities.affected_code.file.path" | "vulnerabilities.affected_packages.name" | "vulnerabilities.cve.epss.score" | "vulnerabilities.cve.uid" | "vulnerabilities.related_vulnerabilities" | "cloud.account.name" | "vendor_attributes.severity")
6713
+ attr_accessor field_name: ("metadata.uid" | "activity_name" | "cloud.account.uid" | "cloud.provider" | "cloud.region" | "compliance.assessments.category" | "compliance.assessments.name" | "compliance.control" | "compliance.status" | "compliance.standards" | "finding_info.desc" | "finding_info.src_url" | "finding_info.title" | "finding_info.types" | "finding_info.uid" | "finding_info.related_events.traits.category" | "finding_info.related_events.uid" | "finding_info.related_events.product.uid" | "finding_info.related_events.title" | "metadata.product.name" | "metadata.product.uid" | "metadata.product.vendor_name" | "remediation.desc" | "remediation.references" | "resources.cloud_partition" | "resources.name" | "resources.owner.account.uid" | "resources.owner.org.uid" | "resources.owner.account.name" | "resources.provider" | "resources.region" | "resources.type" | "resources.uid" | "severity" | "status" | "comment" | "vulnerabilities.fix_coverage" | "class_name" | "databucket.encryption_details.algorithm" | "databucket.encryption_details.key_uid" | "databucket.file.data_classifications.classifier_details.type" | "evidences.actor.user.account.uid" | "evidences.api.operation" | "evidences.api.response.error_message" | "evidences.api.service.name" | "evidences.connection_info.direction" | "evidences.connection_info.protocol_name" | "evidences.dst_endpoint.autonomous_system.name" | "evidences.dst_endpoint.location.city" | "evidences.dst_endpoint.location.country" | "evidences.src_endpoint.autonomous_system.name" | "evidences.src_endpoint.hostname" | "evidences.src_endpoint.location.city" | "evidences.src_endpoint.location.country" | "finding_info.analytic.name" | "malware.name" | "malware_scan_info.uid" | "malware.severity" | "resources.cloud_function.layers.uid_alt" | "resources.cloud_function.runtime" | "resources.cloud_function.user.uid" | "resources.device.encryption_details.key_uid" | "resources.device.image.uid" | "resources.image.architecture" | "resources.image.registry_uid" | "resources.image.repository_name" | "resources.image.uid" | "resources.subnet_info.uid" | "resources.vpc_uid" | "vulnerabilities.affected_code.file.path" | "vulnerabilities.affected_packages.name" | "vulnerabilities.cve.epss.score" | "vulnerabilities.cve.uid" | "vulnerabilities.related_vulnerabilities" | "cloud.account.name" | "vendor_attributes.severity")
6520
6714
  attr_accessor filter: Types::StringFilter
6521
6715
  SENSITIVE: []
6522
6716
  end
@@ -6685,6 +6879,7 @@ module Aws::SecurityHub
6685
6879
  class ProviderConfiguration
6686
6880
  attr_accessor jira_cloud: Types::JiraCloudProviderConfiguration
6687
6881
  attr_accessor service_now: Types::ServiceNowProviderConfiguration
6882
+ attr_accessor azure: Types::AzureProviderConfiguration
6688
6883
  attr_accessor unknown: untyped
6689
6884
  SENSITIVE: []
6690
6885
 
@@ -6692,6 +6887,8 @@ module Aws::SecurityHub
6692
6887
  end
6693
6888
  class ServiceNow < ProviderConfiguration
6694
6889
  end
6890
+ class Azure < ProviderConfiguration
6891
+ end
6695
6892
  class Unknown < ProviderConfiguration
6696
6893
  end
6697
6894
  end
@@ -6699,6 +6896,7 @@ module Aws::SecurityHub
6699
6896
  class ProviderDetail
6700
6897
  attr_accessor jira_cloud: Types::JiraCloudDetail
6701
6898
  attr_accessor service_now: Types::ServiceNowDetail
6899
+ attr_accessor azure: Types::AzureDetail
6702
6900
  attr_accessor unknown: untyped
6703
6901
  SENSITIVE: []
6704
6902
 
@@ -6706,19 +6904,23 @@ module Aws::SecurityHub
6706
6904
  end
6707
6905
  class ServiceNow < ProviderDetail
6708
6906
  end
6907
+ class Azure < ProviderDetail
6908
+ end
6709
6909
  class Unknown < ProviderDetail
6710
6910
  end
6711
6911
  end
6712
6912
 
6713
6913
  class ProviderSummary
6714
- attr_accessor provider_name: ("JIRA_CLOUD" | "SERVICENOW")
6715
- attr_accessor connector_status: ("CONNECTED" | "FAILED_TO_CONNECT" | "PENDING_CONFIGURATION" | "PENDING_AUTHORIZATION")
6914
+ attr_accessor provider_name: ("JIRA_CLOUD" | "SERVICENOW" | "AZURE")
6915
+ attr_accessor connector_status: ("CONNECTED" | "DEGRADED" | "FAILED_TO_CONNECT" | "PENDING_AUTHORIZATION" | "PENDING_CONFIGURATION" | "UNKNOWN")
6916
+ attr_accessor provider_configuration: Types::ProviderDetail
6716
6917
  SENSITIVE: []
6717
6918
  end
6718
6919
 
6719
6920
  class ProviderUpdateConfiguration
6720
6921
  attr_accessor jira_cloud: Types::JiraCloudUpdateConfiguration
6721
6922
  attr_accessor service_now: Types::ServiceNowUpdateConfiguration
6923
+ attr_accessor azure: Types::AzureUpdateConfiguration
6722
6924
  attr_accessor unknown: untyped
6723
6925
  SENSITIVE: []
6724
6926
 
@@ -6726,6 +6928,8 @@ module Aws::SecurityHub
6726
6928
  end
6727
6929
  class ServiceNow < ProviderUpdateConfiguration
6728
6930
  end
6931
+ class Azure < ProviderUpdateConfiguration
6932
+ end
6729
6933
  class Unknown < ProviderUpdateConfiguration
6730
6934
  end
6731
6935
  end
@@ -6792,8 +6996,10 @@ module Aws::SecurityHub
6792
6996
  class Resource
6793
6997
  attr_accessor type: ::String
6794
6998
  attr_accessor id: ::String
6795
- attr_accessor partition: ("aws" | "aws-cn" | "aws-us-gov")
6999
+ attr_accessor partition: ("aws" | "aws-cn" | "aws-us-gov" | "aws-us-iso" | "aws-us-iso-b" | "AzureCloud")
6796
7000
  attr_accessor region: ::String
7001
+ attr_accessor provider: ("Azure" | "AWS")
7002
+ attr_accessor owner: Types::ResourceOwner
6797
7003
  attr_accessor resource_role: ::String
6798
7004
  attr_accessor tags: ::Hash[::String, ::String]
6799
7005
  attr_accessor data_classification: Types::DataClassificationDetails
@@ -6910,6 +7116,7 @@ module Aws::SecurityHub
6910
7116
  attr_accessor aws_s3_access_point: Types::AwsS3AccessPointDetails
6911
7117
  attr_accessor aws_ec2_client_vpn_endpoint: Types::AwsEc2ClientVpnEndpointDetails
6912
7118
  attr_accessor code_repository: Types::CodeRepositoryDetails
7119
+ attr_accessor azure_resource: untyped
6913
7120
  SENSITIVE: []
6914
7121
  end
6915
7122
 
@@ -6922,7 +7129,7 @@ module Aws::SecurityHub
6922
7129
  end
6923
7130
 
6924
7131
  class ResourceGroupByRule
6925
- attr_accessor group_by_field: ("AccountId" | "Region" | "ResourceCategory" | "ResourceType" | "ResourceName" | "FindingsSummary.FindingType")
7132
+ attr_accessor group_by_field: ("AccountId" | "AccountName" | "Region" | "ResourceProvider" | "ResourceOwnerAccountId" | "ResourceOwnerOrgId" | "ResourceCloudPartition" | "ResourceRegion" | "ResourceCategory" | "ResourceType" | "ResourceName" | "FindingsSummary.FindingType")
6926
7133
  attr_accessor filters: Types::ResourcesFilters
6927
7134
  SENSITIVE: []
6928
7135
  end
@@ -6939,12 +7146,34 @@ module Aws::SecurityHub
6939
7146
  SENSITIVE: []
6940
7147
  end
6941
7148
 
7149
+ class ResourceOwner
7150
+ attr_accessor account: Types::ResourceOwnerAccount
7151
+ attr_accessor org: Types::ResourceOwnerOrg
7152
+ SENSITIVE: []
7153
+ end
7154
+
7155
+ class ResourceOwnerAccount
7156
+ attr_accessor id: ::String
7157
+ SENSITIVE: []
7158
+ end
7159
+
7160
+ class ResourceOwnerOrg
7161
+ attr_accessor id: ::String
7162
+ SENSITIVE: []
7163
+ end
7164
+
6942
7165
  class ResourceResult
6943
7166
  attr_accessor resource_guid: ::String
6944
7167
  attr_accessor resource_id: ::String
6945
7168
  attr_accessor account_id: ::String
7169
+ attr_accessor account_name: ::String
6946
7170
  attr_accessor region: ::String
6947
- attr_accessor resource_category: ("Compute" | "Database" | "Storage" | "Code" | "AI/ML" | "Identity" | "Network" | "Other")
7171
+ attr_accessor resource_provider: ::String
7172
+ attr_accessor resource_owner_account_id: ::String
7173
+ attr_accessor resource_owner_org_id: ::String
7174
+ attr_accessor resource_cloud_partition: ::String
7175
+ attr_accessor resource_region: ::String
7176
+ attr_accessor resource_category: ("Compute" | "Database" | "Storage" | "Code" | "AI/ML" | "Identity" | "Network" | "Messaging" | "Other")
6948
7177
  attr_accessor resource_type: ::String
6949
7178
  attr_accessor resource_name: ::String
6950
7179
  attr_accessor resource_creation_time_dt: ::String
@@ -7018,7 +7247,7 @@ module Aws::SecurityHub
7018
7247
  end
7019
7248
 
7020
7249
  class ResourcesStringFilter
7021
- attr_accessor field_name: ("ResourceGuid" | "ResourceId" | "AccountId" | "Region" | "ResourceCategory" | "ResourceType" | "ResourceName" | "FindingsSummary.FindingType" | "FindingsSummary.ProductName")
7250
+ attr_accessor field_name: ("ResourceGuid" | "ResourceId" | "AccountId" | "AccountName" | "Region" | "ResourceProvider" | "ResourceOwnerAccountId" | "ResourceOwnerOrgId" | "ResourceCloudPartition" | "ResourceRegion" | "ResourceCategory" | "ResourceType" | "ResourceName" | "FindingsSummary.FindingType" | "FindingsSummary.ProductName")
7022
7251
  attr_accessor filter: Types::StringFilter
7023
7252
  SENSITIVE: []
7024
7253
  end
@@ -7043,7 +7272,7 @@ module Aws::SecurityHub
7043
7272
  end
7044
7273
 
7045
7274
  class ResourcesTrendsStringFilter
7046
- attr_accessor field_name: ("account_id" | "region" | "resource_type" | "resource_category")
7275
+ attr_accessor field_name: ("account_id" | "region" | "resource_type" | "resource_category" | "resource_cloud_provider" | "resource_region" | "resource_owner_id" | "resource_owner_organization_id")
7047
7276
  attr_accessor filter: Types::StringFilter
7048
7277
  SENSITIVE: []
7049
7278
  end
@@ -7212,6 +7441,7 @@ module Aws::SecurityHub
7212
7441
  attr_accessor update_status: ("READY" | "UPDATING")
7213
7442
  attr_accessor parameters: ::Hash[::String, Types::ParameterConfiguration]
7214
7443
  attr_accessor last_update_reason: ::String
7444
+ attr_accessor provider: ("AWS" | "Azure")
7215
7445
  SENSITIVE: []
7216
7446
  end
7217
7447
 
@@ -7230,6 +7460,7 @@ module Aws::SecurityHub
7230
7460
  attr_accessor current_region_availability: ("AVAILABLE" | "UNAVAILABLE")
7231
7461
  attr_accessor customizable_properties: ::Array[("Parameters")]
7232
7462
  attr_accessor parameter_definitions: ::Hash[::String, Types::ParameterDefinition]
7463
+ attr_accessor provider: ("AWS" | "Azure")
7233
7464
  SENSITIVE: []
7234
7465
  end
7235
7466
 
@@ -7372,6 +7603,7 @@ module Aws::SecurityHub
7372
7603
  attr_accessor name: ::String
7373
7604
  attr_accessor description: ::String
7374
7605
  attr_accessor enabled_by_default: bool
7606
+ attr_accessor provider: ("AWS" | "Azure")
7375
7607
  attr_accessor standards_managed_by: Types::StandardsManagedBy
7376
7608
  SENSITIVE: []
7377
7609
  end
@@ -7438,7 +7670,7 @@ module Aws::SecurityHub
7438
7670
  end
7439
7671
 
7440
7672
  class StandardsStatusReason
7441
- attr_accessor status_reason_code: ("NO_AVAILABLE_CONFIGURATION_RECORDER" | "MAXIMUM_NUMBER_OF_CONFIG_RULES_EXCEEDED" | "INTERNAL_ERROR")
7673
+ attr_accessor status_reason_code: ("NO_AVAILABLE_CONFIGURATION_RECORDER" | "MAXIMUM_NUMBER_OF_CONFIG_RULES_EXCEEDED" | "NO_AVAILABLE_MULTICLOUD_CONNECTOR" | "INTERNAL_ERROR")
7442
7674
  SENSITIVE: []
7443
7675
  end
7444
7676
 
@@ -7449,6 +7681,7 @@ module Aws::SecurityHub
7449
7681
  attr_accessor standards_status: ("PENDING" | "READY" | "FAILED" | "DELETING" | "INCOMPLETE")
7450
7682
  attr_accessor standards_controls_updatable: ("READY_FOR_UPDATES" | "NOT_READY_FOR_UPDATES")
7451
7683
  attr_accessor standards_status_reason: Types::StandardsStatusReason
7684
+ attr_accessor provider: ("AWS" | "Azure")
7452
7685
  SENSITIVE: []
7453
7686
  end
7454
7687
 
@@ -7711,6 +7944,19 @@ module Aws::SecurityHub
7711
7944
  SENSITIVE: []
7712
7945
  end
7713
7946
 
7947
+ class UpdateConnectorRequest
7948
+ attr_accessor connector_id: ::String
7949
+ attr_accessor description: ::String
7950
+ attr_accessor provider: Types::CspmProviderUpdateConfiguration
7951
+ SENSITIVE: []
7952
+ end
7953
+
7954
+ class UpdateConnectorResponse
7955
+ attr_accessor connector_status: ("CONNECTED" | "DEGRADED" | "FAILED_TO_CONNECT" | "UNKNOWN")
7956
+ attr_accessor enablement_status: ("ENABLED" | "PENDING_ENABLEMENT" | "PENDING_UPDATE" | "PENDING_DELETION")
7957
+ SENSITIVE: []
7958
+ end
7959
+
7714
7960
  class UpdateConnectorV2Request
7715
7961
  attr_accessor connector_id: ::String
7716
7962
  attr_accessor description: ::String
@@ -7718,7 +7964,10 @@ module Aws::SecurityHub
7718
7964
  SENSITIVE: []
7719
7965
  end
7720
7966
 
7721
- class UpdateConnectorV2Response < Aws::EmptyStructure
7967
+ class UpdateConnectorV2Response
7968
+ attr_accessor connector_status: ("CONNECTED" | "DEGRADED" | "FAILED_TO_CONNECT" | "PENDING_AUTHORIZATION" | "PENDING_CONFIGURATION" | "UNKNOWN")
7969
+ attr_accessor enablement_status: ("ENABLED" | "PENDING_ENABLEMENT" | "FAILED_TO_ENABLE" | "PENDING_UPDATE" | "FAILED_TO_UPDATE" | "PENDING_DELETION" | "FAILED_TO_DELETE")
7970
+ SENSITIVE: []
7722
7971
  end
7723
7972
 
7724
7973
  class UpdateFindingAggregatorRequest
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-securityhub
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.158.0
4
+ version: 1.159.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services