aws-sdk-detective 1.5.0 → 1.10.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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e4cccd82a6a66699ba47918b17ceb7ee1262508b4ac98e46185ab436a9c46fd0
|
4
|
+
data.tar.gz: 723c83aae7101f7f3bb9194114f829a64b7c2462720df287907225a1b0bebdb5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b7ad8b7046e5218f7fc5998193cb132cf4342f7c5e8eecfe22560dc6e49ec587cada1c2c3ce7cabab649f375cd7d9f8248bfa2272d9a42145a4e1c09b6059068
|
7
|
+
data.tar.gz: 78edf5e3f5976d2b3e1579680975f979423a53787ca944671f62f899e8198cc64ac1e483ffe5521a27fab6dd603ecddf28d366ded36b46cd5b57133a044559d2
|
data/lib/aws-sdk-detective.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -5,6 +7,7 @@
|
|
5
7
|
#
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
10
|
+
|
8
11
|
require 'aws-sdk-core'
|
9
12
|
require 'aws-sigv4'
|
10
13
|
|
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-detective/customizations'
|
|
42
45
|
#
|
43
46
|
# See {Errors} for more information.
|
44
47
|
#
|
45
|
-
#
|
48
|
+
# @!group service
|
46
49
|
module Aws::Detective
|
47
50
|
|
48
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.10.0'
|
49
52
|
|
50
53
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::Detective
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
74
78
|
|
@@ -81,13 +85,28 @@ module Aws::Detective
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
82
86
|
# credentials.
|
83
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
86
104
|
#
|
87
|
-
# * `Aws::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
91
110
|
#
|
92
111
|
# When `:credentials` are not configured directly, the following
|
93
112
|
# locations will be searched for credentials:
|
@@ -97,10 +116,10 @@ module Aws::Detective
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
98
117
|
# * `~/.aws/credentials`
|
99
118
|
# * `~/.aws/config`
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
103
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
104
123
|
#
|
105
124
|
# @option options [required, String] :region
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -161,7 +180,7 @@ module Aws::Detective
|
|
161
180
|
# @option options [String] :endpoint
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
184
|
#
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +195,7 @@ module Aws::Detective
|
|
176
195
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
196
|
#
|
178
197
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
198
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
199
|
#
|
181
200
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
201
|
# The log formatter.
|
@@ -844,7 +863,7 @@ module Aws::Detective
|
|
844
863
|
params: params,
|
845
864
|
config: config)
|
846
865
|
context[:gem_name] = 'aws-sdk-detective'
|
847
|
-
context[:gem_version] = '1.
|
866
|
+
context[:gem_version] = '1.10.0'
|
848
867
|
Seahorse::Client::Request.new(handlers, context)
|
849
868
|
end
|
850
869
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -26,6 +28,7 @@ module Aws::Detective
|
|
26
28
|
#
|
27
29
|
class AcceptInvitationRequest < Struct.new(
|
28
30
|
:graph_arn)
|
31
|
+
SENSITIVE = []
|
29
32
|
include Aws::Structure
|
30
33
|
end
|
31
34
|
|
@@ -52,6 +55,7 @@ module Aws::Detective
|
|
52
55
|
class Account < Struct.new(
|
53
56
|
:account_id,
|
54
57
|
:email_address)
|
58
|
+
SENSITIVE = []
|
55
59
|
include Aws::Structure
|
56
60
|
end
|
57
61
|
|
@@ -64,6 +68,7 @@ module Aws::Detective
|
|
64
68
|
#
|
65
69
|
class ConflictException < Struct.new(
|
66
70
|
:message)
|
71
|
+
SENSITIVE = []
|
67
72
|
include Aws::Structure
|
68
73
|
end
|
69
74
|
|
@@ -75,6 +80,7 @@ module Aws::Detective
|
|
75
80
|
#
|
76
81
|
class CreateGraphResponse < Struct.new(
|
77
82
|
:graph_arn)
|
83
|
+
SENSITIVE = []
|
78
84
|
include Aws::Structure
|
79
85
|
end
|
80
86
|
|
@@ -114,6 +120,7 @@ module Aws::Detective
|
|
114
120
|
:graph_arn,
|
115
121
|
:message,
|
116
122
|
:accounts)
|
123
|
+
SENSITIVE = []
|
117
124
|
include Aws::Structure
|
118
125
|
end
|
119
126
|
|
@@ -136,6 +143,7 @@ module Aws::Detective
|
|
136
143
|
class CreateMembersResponse < Struct.new(
|
137
144
|
:members,
|
138
145
|
:unprocessed_accounts)
|
146
|
+
SENSITIVE = []
|
139
147
|
include Aws::Structure
|
140
148
|
end
|
141
149
|
|
@@ -154,6 +162,7 @@ module Aws::Detective
|
|
154
162
|
#
|
155
163
|
class DeleteGraphRequest < Struct.new(
|
156
164
|
:graph_arn)
|
165
|
+
SENSITIVE = []
|
157
166
|
include Aws::Structure
|
158
167
|
end
|
159
168
|
|
@@ -179,6 +188,7 @@ module Aws::Detective
|
|
179
188
|
class DeleteMembersRequest < Struct.new(
|
180
189
|
:graph_arn,
|
181
190
|
:account_ids)
|
191
|
+
SENSITIVE = []
|
182
192
|
include Aws::Structure
|
183
193
|
end
|
184
194
|
|
@@ -198,6 +208,7 @@ module Aws::Detective
|
|
198
208
|
class DeleteMembersResponse < Struct.new(
|
199
209
|
:account_ids,
|
200
210
|
:unprocessed_accounts)
|
211
|
+
SENSITIVE = []
|
201
212
|
include Aws::Structure
|
202
213
|
end
|
203
214
|
|
@@ -219,6 +230,7 @@ module Aws::Detective
|
|
219
230
|
#
|
220
231
|
class DisassociateMembershipRequest < Struct.new(
|
221
232
|
:graph_arn)
|
233
|
+
SENSITIVE = []
|
222
234
|
include Aws::Structure
|
223
235
|
end
|
224
236
|
|
@@ -248,6 +260,7 @@ module Aws::Detective
|
|
248
260
|
class GetMembersRequest < Struct.new(
|
249
261
|
:graph_arn,
|
250
262
|
:account_ids)
|
263
|
+
SENSITIVE = []
|
251
264
|
include Aws::Structure
|
252
265
|
end
|
253
266
|
|
@@ -269,6 +282,7 @@ module Aws::Detective
|
|
269
282
|
class GetMembersResponse < Struct.new(
|
270
283
|
:member_details,
|
271
284
|
:unprocessed_accounts)
|
285
|
+
SENSITIVE = []
|
272
286
|
include Aws::Structure
|
273
287
|
end
|
274
288
|
|
@@ -288,6 +302,7 @@ module Aws::Detective
|
|
288
302
|
class Graph < Struct.new(
|
289
303
|
:arn,
|
290
304
|
:created_time)
|
305
|
+
SENSITIVE = []
|
291
306
|
include Aws::Structure
|
292
307
|
end
|
293
308
|
|
@@ -301,6 +316,7 @@ module Aws::Detective
|
|
301
316
|
#
|
302
317
|
class InternalServerException < Struct.new(
|
303
318
|
:message)
|
319
|
+
SENSITIVE = []
|
304
320
|
include Aws::Structure
|
305
321
|
end
|
306
322
|
|
@@ -329,6 +345,7 @@ module Aws::Detective
|
|
329
345
|
class ListGraphsRequest < Struct.new(
|
330
346
|
:next_token,
|
331
347
|
:max_results)
|
348
|
+
SENSITIVE = []
|
332
349
|
include Aws::Structure
|
333
350
|
end
|
334
351
|
|
@@ -347,6 +364,7 @@ module Aws::Detective
|
|
347
364
|
class ListGraphsResponse < Struct.new(
|
348
365
|
:graph_list,
|
349
366
|
:next_token)
|
367
|
+
SENSITIVE = []
|
350
368
|
include Aws::Structure
|
351
369
|
end
|
352
370
|
|
@@ -375,6 +393,7 @@ module Aws::Detective
|
|
375
393
|
class ListInvitationsRequest < Struct.new(
|
376
394
|
:next_token,
|
377
395
|
:max_results)
|
396
|
+
SENSITIVE = []
|
378
397
|
include Aws::Structure
|
379
398
|
end
|
380
399
|
|
@@ -394,6 +413,7 @@ module Aws::Detective
|
|
394
413
|
class ListInvitationsResponse < Struct.new(
|
395
414
|
:invitations,
|
396
415
|
:next_token)
|
416
|
+
SENSITIVE = []
|
397
417
|
include Aws::Structure
|
398
418
|
end
|
399
419
|
|
@@ -429,6 +449,7 @@ module Aws::Detective
|
|
429
449
|
:graph_arn,
|
430
450
|
:next_token,
|
431
451
|
:max_results)
|
452
|
+
SENSITIVE = []
|
432
453
|
include Aws::Structure
|
433
454
|
end
|
434
455
|
|
@@ -452,6 +473,7 @@ module Aws::Detective
|
|
452
473
|
class ListMembersResponse < Struct.new(
|
453
474
|
:member_details,
|
454
475
|
:next_token)
|
476
|
+
SENSITIVE = []
|
455
477
|
include Aws::Structure
|
456
478
|
end
|
457
479
|
|
@@ -562,6 +584,7 @@ module Aws::Detective
|
|
562
584
|
:updated_time,
|
563
585
|
:percent_of_graph_utilization,
|
564
586
|
:percent_of_graph_utilization_updated_time)
|
587
|
+
SENSITIVE = []
|
565
588
|
include Aws::Structure
|
566
589
|
end
|
567
590
|
|
@@ -583,6 +606,7 @@ module Aws::Detective
|
|
583
606
|
#
|
584
607
|
class RejectInvitationRequest < Struct.new(
|
585
608
|
:graph_arn)
|
609
|
+
SENSITIVE = []
|
586
610
|
include Aws::Structure
|
587
611
|
end
|
588
612
|
|
@@ -595,6 +619,7 @@ module Aws::Detective
|
|
595
619
|
#
|
596
620
|
class ResourceNotFoundException < Struct.new(
|
597
621
|
:message)
|
622
|
+
SENSITIVE = []
|
598
623
|
include Aws::Structure
|
599
624
|
end
|
600
625
|
|
@@ -618,6 +643,7 @@ module Aws::Detective
|
|
618
643
|
#
|
619
644
|
class ServiceQuotaExceededException < Struct.new(
|
620
645
|
:message)
|
646
|
+
SENSITIVE = []
|
621
647
|
include Aws::Structure
|
622
648
|
end
|
623
649
|
|
@@ -645,6 +671,7 @@ module Aws::Detective
|
|
645
671
|
class StartMonitoringMemberRequest < Struct.new(
|
646
672
|
:graph_arn,
|
647
673
|
:account_id)
|
674
|
+
SENSITIVE = []
|
648
675
|
include Aws::Structure
|
649
676
|
end
|
650
677
|
|
@@ -665,6 +692,7 @@ module Aws::Detective
|
|
665
692
|
class UnprocessedAccount < Struct.new(
|
666
693
|
:account_id,
|
667
694
|
:reason)
|
695
|
+
SENSITIVE = []
|
668
696
|
include Aws::Structure
|
669
697
|
end
|
670
698
|
|
@@ -677,6 +705,7 @@ module Aws::Detective
|
|
677
705
|
#
|
678
706
|
class ValidationException < Struct.new(
|
679
707
|
:message)
|
708
|
+
SENSITIVE = []
|
680
709
|
include Aws::Structure
|
681
710
|
end
|
682
711
|
|
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.10.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: 2020-
|
11
|
+
date: 2020-09-15 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.99.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.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|