aws-sdk-securityhub 1.12.0 → 1.13.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
  SHA1:
3
- metadata.gz: ad8af01b86b7334c6e9f2307dce532452c7098bc
4
- data.tar.gz: 1e93a4580240d12bd36b66ba15c19b9f622f5b87
3
+ metadata.gz: 2ace39a1684e213770e73fe727e15481697adcea
4
+ data.tar.gz: e4d9559f36119dd8f7a19fc9d1fc1f0a4ae458d8
5
5
  SHA512:
6
- metadata.gz: b5186c8c14e1aa78a315d6ea49d1bc17e40d13e5a360126889f383e511edcf890fe0b6ed2b0ef0f69a47c56a9a52b0224da044c985996d5230d6b800800f96dc
7
- data.tar.gz: 02cf60d19c8efdaed7599ea6a5460a8d9c7981f18a1dc4c9720fffadaa817e00aa63e8b20dba3816bbd63a6bc6a550495eafec3e6e84f89dcde3dc48188e9d13
6
+ metadata.gz: 54ace9f68ee6c2e3f52c15b7d80097f528571e2b5e92a263448afa78753e585fc2c31a7c3f1982ecfeedb3609998cae0e736f25c4e22ba02aa29b45aea211653
7
+ data.tar.gz: 6e9c66aa38fe0363a3428049bfa538c679499d1745b047060b3e50c8cf7475db21ea9de6abc031b94a4f0e0646b5b89be77672710ebe9419296382504c684515
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-securityhub/customizations'
42
42
  # @service
43
43
  module Aws::SecurityHub
44
44
 
45
- GEM_VERSION = '1.12.0'
45
+ GEM_VERSION = '1.13.0'
46
46
 
47
47
  end
@@ -259,11 +259,11 @@ module Aws::SecurityHub
259
259
  # the member account accepts the invitation, permission is granted to
260
260
  # the master account to view findings generated in the member account.
261
261
  #
262
- # @option params [String] :master_id
262
+ # @option params [required, String] :master_id
263
263
  # The account ID of the Security Hub master account that sent the
264
264
  # invitation.
265
265
  #
266
- # @option params [String] :invitation_id
266
+ # @option params [required, String] :invitation_id
267
267
  # The ID of the invitation sent from the Security Hub master account.
268
268
  #
269
269
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
@@ -271,8 +271,8 @@ module Aws::SecurityHub
271
271
  # @example Request syntax with placeholder values
272
272
  #
273
273
  # resp = client.accept_invitation({
274
- # master_id: "NonEmptyString",
275
- # invitation_id: "NonEmptyString",
274
+ # master_id: "NonEmptyString", # required
275
+ # invitation_id: "NonEmptyString", # required
276
276
  # })
277
277
  #
278
278
  # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AcceptInvitation AWS API Documentation
@@ -1235,7 +1235,7 @@ module Aws::SecurityHub
1235
1235
 
1236
1236
  # Declines invitations to become a member account.
1237
1237
  #
1238
- # @option params [Array<String>] :account_ids
1238
+ # @option params [required, Array<String>] :account_ids
1239
1239
  # A list of account IDs that specify the accounts that invitations to
1240
1240
  # Security Hub are declined from.
1241
1241
  #
@@ -1246,7 +1246,7 @@ module Aws::SecurityHub
1246
1246
  # @example Request syntax with placeholder values
1247
1247
  #
1248
1248
  # resp = client.decline_invitations({
1249
- # account_ids: ["NonEmptyString"],
1249
+ # account_ids: ["NonEmptyString"], # required
1250
1250
  # })
1251
1251
  #
1252
1252
  # @example Response structure
@@ -1325,7 +1325,7 @@ module Aws::SecurityHub
1325
1325
  # Deletes invitations received by the AWS account to become a member
1326
1326
  # account.
1327
1327
  #
1328
- # @option params [Array<String>] :account_ids
1328
+ # @option params [required, Array<String>] :account_ids
1329
1329
  # A list of the account IDs that sent the invitations to delete.
1330
1330
  #
1331
1331
  # @return [Types::DeleteInvitationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
@@ -1335,7 +1335,7 @@ module Aws::SecurityHub
1335
1335
  # @example Request syntax with placeholder values
1336
1336
  #
1337
1337
  # resp = client.delete_invitations({
1338
- # account_ids: ["NonEmptyString"],
1338
+ # account_ids: ["NonEmptyString"], # required
1339
1339
  # })
1340
1340
  #
1341
1341
  # @example Response structure
@@ -4290,7 +4290,7 @@ module Aws::SecurityHub
4290
4290
  params: params,
4291
4291
  config: config)
4292
4292
  context[:gem_name] = 'aws-sdk-securityhub'
4293
- context[:gem_version] = '1.12.0'
4293
+ context[:gem_version] = '1.13.0'
4294
4294
  Seahorse::Client::Request.new(handlers, context)
4295
4295
  end
4296
4296
 
@@ -195,8 +195,8 @@ module Aws::SecurityHub
195
195
  VerificationState = Shapes::StringShape.new(name: 'VerificationState')
196
196
  WorkflowState = Shapes::StringShape.new(name: 'WorkflowState')
197
197
 
198
- AcceptInvitationRequest.add_member(:master_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "MasterId"))
199
- AcceptInvitationRequest.add_member(:invitation_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "InvitationId"))
198
+ AcceptInvitationRequest.add_member(:master_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "MasterId"))
199
+ AcceptInvitationRequest.add_member(:invitation_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "InvitationId"))
200
200
  AcceptInvitationRequest.struct_class = Types::AcceptInvitationRequest
201
201
 
202
202
  AcceptInvitationResponse.struct_class = Types::AcceptInvitationResponse
@@ -425,7 +425,7 @@ module Aws::SecurityHub
425
425
  DateRange.add_member(:unit, Shapes::ShapeRef.new(shape: DateRangeUnit, location_name: "Unit"))
426
426
  DateRange.struct_class = Types::DateRange
427
427
 
428
- DeclineInvitationsRequest.add_member(:account_ids, Shapes::ShapeRef.new(shape: AccountIdList, location_name: "AccountIds"))
428
+ DeclineInvitationsRequest.add_member(:account_ids, Shapes::ShapeRef.new(shape: AccountIdList, required: true, location_name: "AccountIds"))
429
429
  DeclineInvitationsRequest.struct_class = Types::DeclineInvitationsRequest
430
430
 
431
431
  DeclineInvitationsResponse.add_member(:unprocessed_accounts, Shapes::ShapeRef.new(shape: ResultList, location_name: "UnprocessedAccounts"))
@@ -443,7 +443,7 @@ module Aws::SecurityHub
443
443
  DeleteInsightResponse.add_member(:insight_arn, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "InsightArn"))
444
444
  DeleteInsightResponse.struct_class = Types::DeleteInsightResponse
445
445
 
446
- DeleteInvitationsRequest.add_member(:account_ids, Shapes::ShapeRef.new(shape: AccountIdList, location_name: "AccountIds"))
446
+ DeleteInvitationsRequest.add_member(:account_ids, Shapes::ShapeRef.new(shape: AccountIdList, required: true, location_name: "AccountIds"))
447
447
  DeleteInvitationsRequest.struct_class = Types::DeleteInvitationsRequest
448
448
 
449
449
  DeleteInvitationsResponse.add_member(:unprocessed_accounts, Shapes::ShapeRef.new(shape: ResultList, location_name: "UnprocessedAccounts"))
@@ -464,7 +464,7 @@ module Aws::SecurityHub
464
464
  DescribeActionTargetsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
465
465
  DescribeActionTargetsResponse.struct_class = Types::DescribeActionTargetsResponse
466
466
 
467
- DescribeHubRequest.add_member(:hub_arn, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "HubArn"))
467
+ DescribeHubRequest.add_member(:hub_arn, Shapes::ShapeRef.new(shape: NonEmptyString, location: "querystring", location_name: "HubArn"))
468
468
  DescribeHubRequest.struct_class = Types::DescribeHubRequest
469
469
 
470
470
  DescribeHubResponse.add_member(:hub_arn, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "HubArn"))
@@ -12,8 +12,8 @@ module Aws::SecurityHub
12
12
  # data as a hash:
13
13
  #
14
14
  # {
15
- # master_id: "NonEmptyString",
16
- # invitation_id: "NonEmptyString",
15
+ # master_id: "NonEmptyString", # required
16
+ # invitation_id: "NonEmptyString", # required
17
17
  # }
18
18
  #
19
19
  # @!attribute [rw] master_id
@@ -2631,7 +2631,7 @@ module Aws::SecurityHub
2631
2631
  # data as a hash:
2632
2632
  #
2633
2633
  # {
2634
- # account_ids: ["NonEmptyString"],
2634
+ # account_ids: ["NonEmptyString"], # required
2635
2635
  # }
2636
2636
  #
2637
2637
  # @!attribute [rw] account_ids
@@ -2720,7 +2720,7 @@ module Aws::SecurityHub
2720
2720
  # data as a hash:
2721
2721
  #
2722
2722
  # {
2723
- # account_ids: ["NonEmptyString"],
2723
+ # account_ids: ["NonEmptyString"], # required
2724
2724
  # }
2725
2725
  #
2726
2726
  # @!attribute [rw] account_ids
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.12.0
4
+ version: 1.13.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: 2019-07-25 00:00:00.000000000 Z
11
+ date: 2019-08-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core