aws-sdk-detective 1.17.0 → 1.21.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 +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-detective/client.rb +18 -9
- data/lib/aws-sdk-detective/types.rb +19 -9
- data/lib/aws-sdk-detective.rb +1 -1
- metadata +6 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dbacb00a149ac29c929543f7942e7c52255ff0e4df1170ab53831deed55749cc
|
4
|
+
data.tar.gz: 79e0d2c6b9ee0ef48a18660afd234e5a42c7c716e3b3e8da5cef3facf4321b4a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0cd3bdd20c22bb190a99c090a941bc30e572f497ebfb3dc63692e26ed6362e467b58b2ec268ecd81ddc54fe1b98b9d678fba3cf06e1d78e0ff0ccaa512a64664
|
7
|
+
data.tar.gz: 6ebb9a41e667435891454da60c65472fc29a200e3a9baa35ca743c56f5fad743dab499c81f348664143b0f7f97f7e1749d736ac8586f71d5a1b851c479f45527
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.21.0 (2021-09-01)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.20.0 (2021-07-30)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.19.0 (2021-07-28)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.18.0 (2021-05-14)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Updated descriptions of array parameters to add the restrictions on the array and value lengths.
|
23
|
+
|
4
24
|
1.17.0 (2021-04-21)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.21.0
|
@@ -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.
|
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.
|
452
|
-
# the account
|
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
|
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.
|
993
|
+
context[:gem_version] = '1.21.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.
|
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.
|
144
|
-
# the account
|
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
|
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
|
data/lib/aws-sdk-detective.rb
CHANGED
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.
|
4
|
+
version: 1.21.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-
|
11
|
+
date: 2021-09-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.120.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.120.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -76,15 +76,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
76
76
|
requirements:
|
77
77
|
- - ">="
|
78
78
|
- !ruby/object:Gem::Version
|
79
|
-
version: '
|
79
|
+
version: '2.3'
|
80
80
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
81
|
requirements:
|
82
82
|
- - ">="
|
83
83
|
- !ruby/object:Gem::Version
|
84
84
|
version: '0'
|
85
85
|
requirements: []
|
86
|
-
|
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
|