aws-sdk-detective 1.17.0 → 1.18.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: 19f3f223e64029f4db45b7e0f8628bc20e99e941ca13c870fd9a58f75fd20ae4
4
- data.tar.gz: f70911eee261e0106367f4ba015ae6a2b581daaae443b34636ea195bf5721de3
3
+ metadata.gz: 061fb6f42c1f273a6b1537db50c51a6fc15eba63f74b0198683635e2cb461ec1
4
+ data.tar.gz: 5f63645ba8218fe2a4cc7b81b5f3d29c84db299d5813a05e1451740104acb547
5
5
  SHA512:
6
- metadata.gz: 2a7011c9fb2cb8651ded5ee843217730d1ebe73330cca0d6979c8a35e1e9547480286b3df49a12383ddd124c5b90967474ce6deb676ac0acc891f896d1a3285d
7
- data.tar.gz: df0df2259f2514381c715937a4c89e77d889da4a8484e14aa39c3eb86afe20e086b70ece386c36607fd3af42198223e996d4caa331c76dd553761713ce3fc075
6
+ metadata.gz: fe39bf5a985550c5bfdfc5bf10302f3e3c84f7c502782cbdefb46c02d98cf7d420acd987d4247ffd10641883fa207757cc9455ddc140f64ff02ceadc5bdaaa64
7
+ data.tar.gz: 46b6d40644b33a83a265487d41ea0a7a61f463281dbc4838e1fbbdedb4679fbddf8403b15d52a1ef45937dd364885ce34cf4c04a12eacaa74491718e653c01af
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.18.0 (2021-05-14)
5
+ ------------------
6
+
7
+ * Feature - Updated descriptions of array parameters to add the restrictions on the array and value lengths.
8
+
4
9
  1.17.0 (2021-04-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.17.0
1
+ 1.18.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-detective/customizations'
48
48
  # @!group service
49
49
  module Aws::Detective
50
50
 
51
- GEM_VERSION = '1.17.0'
51
+ GEM_VERSION = '1.18.0'
52
52
 
53
53
  end
@@ -382,8 +382,10 @@ module Aws::Detective
382
382
  # graph ARN. It does not create a new behavior graph.
383
383
  #
384
384
  # @option params [Hash<String,String>] :tags
385
- # The tags to assign to the new behavior graph. For each tag, you
386
- # provide the tag key and the tag value.
385
+ # The tags to assign to the new behavior graph. You can add up to 50
386
+ # tags. For each tag, you provide the tag key and the tag value. Each
387
+ # tag key can contain up to 128 characters. Each tag value can contain
388
+ # up to 256 characters.
387
389
  #
388
390
  # @return [Types::CreateGraphResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
389
391
  #
@@ -448,8 +450,9 @@ module Aws::Detective
448
450
  #
449
451
  # @option params [required, Array<Types::Account>] :accounts
450
452
  # The list of AWS accounts to invite to become member accounts in the
451
- # behavior graph. For each invited account, the account list contains
452
- # the account identifier and the AWS account root user email address.
453
+ # behavior graph. You can invite up to 50 accounts at a time. For each
454
+ # invited account, the account list contains the account identifier and
455
+ # the AWS account root user email address.
453
456
  #
454
457
  # @return [Types::CreateMembersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
455
458
  #
@@ -538,7 +541,8 @@ module Aws::Detective
538
541
  #
539
542
  # @option params [required, Array<String>] :account_ids
540
543
  # The list of AWS account identifiers for the member accounts to delete
541
- # from the behavior graph.
544
+ # from the behavior graph. You can delete up to 50 member accounts at a
545
+ # time.
542
546
  #
543
547
  # @return [Types::DeleteMembersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
544
548
  #
@@ -604,7 +608,8 @@ module Aws::Detective
604
608
  #
605
609
  # @option params [required, Array<String>] :account_ids
606
610
  # The list of AWS account identifiers for the member account for which
607
- # to return member details.
611
+ # to return member details. You can request details for up to 50 member
612
+ # accounts at a time.
608
613
  #
609
614
  # You cannot use `GetMembers` to retrieve information about member
610
615
  # accounts that were removed from the behavior graph.
@@ -920,7 +925,10 @@ module Aws::Detective
920
925
  # The ARN of the behavior graph to assign the tags to.
921
926
  #
922
927
  # @option params [required, Hash<String,String>] :tags
923
- # The tag values to assign to the behavior graph.
928
+ # The tags to assign to the behavior graph. You can add up to 50 tags.
929
+ # For each tag, you provide the tag key and the tag value. Each tag key
930
+ # can contain up to 128 characters. Each tag value can contain up to 256
931
+ # characters.
924
932
  #
925
933
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
926
934
  #
@@ -948,7 +956,8 @@ module Aws::Detective
948
956
  # The ARN of the behavior graph to remove the tags from.
949
957
  #
950
958
  # @option params [required, Array<String>] :tag_keys
951
- # The tag keys of the tags to remove from the behavior graph.
959
+ # The tag keys of the tags to remove from the behavior graph. You can
960
+ # remove up to 50 tags at a time.
952
961
  #
953
962
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
954
963
  #
@@ -981,7 +990,7 @@ module Aws::Detective
981
990
  params: params,
982
991
  config: config)
983
992
  context[:gem_name] = 'aws-sdk-detective'
984
- context[:gem_version] = '1.17.0'
993
+ context[:gem_version] = '1.18.0'
985
994
  Seahorse::Client::Request.new(handlers, context)
986
995
  end
987
996
 
@@ -83,8 +83,10 @@ module Aws::Detective
83
83
  # }
84
84
  #
85
85
  # @!attribute [rw] tags
86
- # The tags to assign to the new behavior graph. For each tag, you
87
- # provide the tag key and the tag value.
86
+ # The tags to assign to the new behavior graph. You can add up to 50
87
+ # tags. For each tag, you provide the tag key and the tag value. Each
88
+ # tag key can contain up to 128 characters. Each tag value can contain
89
+ # up to 256 characters.
88
90
  # @return [Hash<String,String>]
89
91
  #
90
92
  # @see http://docs.aws.amazon.com/goto/WebAPI/detective-2018-10-26/CreateGraphRequest AWS API Documentation
@@ -140,8 +142,9 @@ module Aws::Detective
140
142
  #
141
143
  # @!attribute [rw] accounts
142
144
  # The list of AWS accounts to invite to become member accounts in the
143
- # behavior graph. For each invited account, the account list contains
144
- # the account identifier and the AWS account root user email address.
145
+ # behavior graph. You can invite up to 50 accounts at a time. For each
146
+ # invited account, the account list contains the account identifier
147
+ # and the AWS account root user email address.
145
148
  # @return [Array<Types::Account>]
146
149
  #
147
150
  # @see http://docs.aws.amazon.com/goto/WebAPI/detective-2018-10-26/CreateMembersRequest AWS API Documentation
@@ -211,7 +214,8 @@ module Aws::Detective
211
214
  #
212
215
  # @!attribute [rw] account_ids
213
216
  # The list of AWS account identifiers for the member accounts to
214
- # delete from the behavior graph.
217
+ # delete from the behavior graph. You can delete up to 50 member
218
+ # accounts at a time.
215
219
  # @return [Array<String>]
216
220
  #
217
221
  # @see http://docs.aws.amazon.com/goto/WebAPI/detective-2018-10-26/DeleteMembersRequest AWS API Documentation
@@ -280,7 +284,8 @@ module Aws::Detective
280
284
  #
281
285
  # @!attribute [rw] account_ids
282
286
  # The list of AWS account identifiers for the member account for which
283
- # to return member details.
287
+ # to return member details. You can request details for up to 50
288
+ # member accounts at a time.
284
289
  #
285
290
  # You cannot use `GetMembers` to retrieve information about member
286
291
  # accounts that were removed from the behavior graph.
@@ -529,7 +534,8 @@ module Aws::Detective
529
534
  end
530
535
 
531
536
  # @!attribute [rw] tags
532
- # The tag values that are assigned to the behavior graph.
537
+ # The tag values that are assigned to the behavior graph. The request
538
+ # returns up to 50 tag values.
533
539
  # @return [Hash<String,String>]
534
540
  #
535
541
  # @see http://docs.aws.amazon.com/goto/WebAPI/detective-2018-10-26/ListTagsForResourceResponse AWS API Documentation
@@ -770,7 +776,10 @@ module Aws::Detective
770
776
  # @return [String]
771
777
  #
772
778
  # @!attribute [rw] tags
773
- # The tag values to assign to the behavior graph.
779
+ # The tags to assign to the behavior graph. You can add up to 50 tags.
780
+ # For each tag, you provide the tag key and the tag value. Each tag
781
+ # key can contain up to 128 characters. Each tag value can contain up
782
+ # to 256 characters.
774
783
  # @return [Hash<String,String>]
775
784
  #
776
785
  # @see http://docs.aws.amazon.com/goto/WebAPI/detective-2018-10-26/TagResourceRequest AWS API Documentation
@@ -820,7 +829,8 @@ module Aws::Detective
820
829
  # @return [String]
821
830
  #
822
831
  # @!attribute [rw] tag_keys
823
- # The tag keys of the tags to remove from the behavior graph.
832
+ # The tag keys of the tags to remove from the behavior graph. You can
833
+ # remove up to 50 tags at a time.
824
834
  # @return [Array<String>]
825
835
  #
826
836
  # @see http://docs.aws.amazon.com/goto/WebAPI/detective-2018-10-26/UntagResourceRequest AWS API Documentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-detective
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.17.0
4
+ version: 1.18.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-04-21 00:00:00.000000000 Z
11
+ date: 2021-05-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -83,8 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
83
83
  - !ruby/object:Gem::Version
84
84
  version: '0'
85
85
  requirements: []
86
- rubyforge_project:
87
- rubygems_version: 2.7.6.3
86
+ rubygems_version: 3.1.6
88
87
  signing_key:
89
88
  specification_version: 4
90
89
  summary: AWS SDK for Ruby - Amazon Detective