aws-sdk-securityhub 1.39.0 → 1.40.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: dbaa3755b40c976c24ebe4d235bc5788cf5b472d6c6be3709044f9f65c38035d
4
- data.tar.gz: 8063fc4235146737822250dc15b021f8a10a22ddeb2531133ef4224f2006661a
3
+ metadata.gz: 9e28f25a65dbe964824ca46f0cf01b8386869134afac55c944d47a7d1a30aaf7
4
+ data.tar.gz: b3ab2b6abd65e1f20aec854b7363e64f510cfae9b407c58563da2bc6aca5d8d4
5
5
  SHA512:
6
- metadata.gz: 90556a91b0b9b921733e3c7f78a7e5458c389fe583f273bb94ec9d98016db3147bed49e73baf3870d94e0adf360174ae02b8470135ba213d44f0636be4f0fd3d
7
- data.tar.gz: c0eb8761169d0c81ee1093bc410a64def006becc44f0da658b40af37ed7b1a188440ba55e88d2a7265d9915fb540b21ed2068ccb0540bb8d9602e71e9f7dbfd7
6
+ metadata.gz: 60bc5fa47df606b498d67d027b7bf9416633fcd35abc83e12426fbd06edbd648061af82742cea4acba4f84877ff7b6709e76d065d975094a0f60103eab5e6296
7
+ data.tar.gz: dfbce52331aaf49d1fba555c28c24c4d3b8f618da3f85698c47f260de8701aa34892da8502b897139843a0bfc8aa7765df18edf1d04ea8dadc6664f4d5073e50
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-securityhub/customizations'
48
48
  # @!group service
49
49
  module Aws::SecurityHub
50
50
 
51
- GEM_VERSION = '1.39.0'
51
+ GEM_VERSION = '1.40.0'
52
52
 
53
53
  end
@@ -3348,9 +3348,13 @@ module Aws::SecurityHub
3348
3348
  req.send_request(options)
3349
3349
  end
3350
3350
 
3351
- # Returns information about the available products that you can
3352
- # subscribe to and integrate with Security Hub in order to consolidate
3353
- # findings.
3351
+ # Returns information about product integrations in Security Hub.
3352
+ #
3353
+ # You can optionally provide an integration ARN. If you provide an
3354
+ # integration ARN, then the results only include that integration.
3355
+ #
3356
+ # If you do not provide an integration ARN, then the results include all
3357
+ # of the available product integrations.
3354
3358
  #
3355
3359
  # @option params [String] :next_token
3356
3360
  # The token that is required for pagination. On your first call to the
@@ -3364,6 +3368,9 @@ module Aws::SecurityHub
3364
3368
  # @option params [Integer] :max_results
3365
3369
  # The maximum number of results to return.
3366
3370
  #
3371
+ # @option params [String] :product_arn
3372
+ # The ARN of the integration to return.
3373
+ #
3367
3374
  # @return [Types::DescribeProductsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3368
3375
  #
3369
3376
  # * {Types::DescribeProductsResponse#products #products} => Array<Types::Product>
@@ -3376,6 +3383,7 @@ module Aws::SecurityHub
3376
3383
  # resp = client.describe_products({
3377
3384
  # next_token: "NextToken",
3378
3385
  # max_results: 1,
3386
+ # product_arn: "NonEmptyString",
3379
3387
  # })
3380
3388
  #
3381
3389
  # @example Response structure
@@ -7637,7 +7645,7 @@ module Aws::SecurityHub
7637
7645
  params: params,
7638
7646
  config: config)
7639
7647
  context[:gem_name] = 'aws-sdk-securityhub'
7640
- context[:gem_version] = '1.39.0'
7648
+ context[:gem_version] = '1.40.0'
7641
7649
  Seahorse::Client::Request.new(handlers, context)
7642
7650
  end
7643
7651
 
@@ -2195,6 +2195,7 @@ module Aws::SecurityHub
2195
2195
 
2196
2196
  DescribeProductsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "NextToken"))
2197
2197
  DescribeProductsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "MaxResults"))
2198
+ DescribeProductsRequest.add_member(:product_arn, Shapes::ShapeRef.new(shape: NonEmptyString, location: "querystring", location_name: "ProductArn"))
2198
2199
  DescribeProductsRequest.struct_class = Types::DescribeProductsRequest
2199
2200
 
2200
2201
  DescribeProductsResponse.add_member(:products, Shapes::ShapeRef.new(shape: ProductsList, required: true, location_name: "Products"))
@@ -85,8 +85,8 @@ module Aws::SecurityHub
85
85
  include Aws::Structure
86
86
  end
87
87
 
88
- # Provides details about one of the following actions that were detected
89
- # for the finding:
88
+ # Provides details about one of the following actions that affects or
89
+ # that was taken on a resource:
90
90
  #
91
91
  # * A remote IP address issued an AWS API call
92
92
  #
@@ -11953,7 +11953,8 @@ module Aws::SecurityHub
11953
11953
  # @return [Types::PatchSummary]
11954
11954
  #
11955
11955
  # @!attribute [rw] action
11956
- # Provides details about an action that was detected for the finding.
11956
+ # Provides details about an action that affects or that was taken on a
11957
+ # resource.
11957
11958
  # @return [Types::Action]
11958
11959
  #
11959
11960
  # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsSecurityFinding AWS API Documentation
@@ -16814,6 +16815,7 @@ module Aws::SecurityHub
16814
16815
  # {
16815
16816
  # next_token: "NextToken",
16816
16817
  # max_results: 1,
16818
+ # product_arn: "NonEmptyString",
16817
16819
  # }
16818
16820
  #
16819
16821
  # @!attribute [rw] next_token
@@ -16830,11 +16832,16 @@ module Aws::SecurityHub
16830
16832
  # The maximum number of results to return.
16831
16833
  # @return [Integer]
16832
16834
  #
16835
+ # @!attribute [rw] product_arn
16836
+ # The ARN of the integration to return.
16837
+ # @return [String]
16838
+ #
16833
16839
  # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DescribeProductsRequest AWS API Documentation
16834
16840
  #
16835
16841
  class DescribeProductsRequest < Struct.new(
16836
16842
  :next_token,
16837
- :max_results)
16843
+ :max_results,
16844
+ :product_arn)
16838
16845
  SENSITIVE = []
16839
16846
  include Aws::Structure
16840
16847
  end
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.39.0
4
+ version: 1.40.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: 2021-02-02 00:00:00.000000000 Z
11
+ date: 2021-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core