aws-sdk-accessanalyzer 1.4.0 → 1.9.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 +5 -5
- data/lib/aws-sdk-accessanalyzer.rb +3 -1
- data/lib/aws-sdk-accessanalyzer/client.rb +14 -4
- data/lib/aws-sdk-accessanalyzer/client_api.rb +17 -0
- data/lib/aws-sdk-accessanalyzer/errors.rb +2 -0
- data/lib/aws-sdk-accessanalyzer/resource.rb +2 -0
- data/lib/aws-sdk-accessanalyzer/types.rb +101 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: ebfc420d1c3cc22175a04e310116ef2a07173b6bc3fdb6dea76662eb02cee7be
|
|
4
|
+
data.tar.gz: a5332e572b5a6ba702d19aa45d97e990f3e327b1f891e59ad6b2f3ca1ddff501
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c68ad5d948daac6712338506ba6bdc635a53676cf05e498f3051a15ae3cfa51a933c092329309dff8ab4a67c8fecbcfc275bf7255458686a1290d1bb6855799a
|
|
7
|
+
data.tar.gz: 3b05413bafebc76e30fc6ce81aad2b2c3e869602e52163141f9747f8102d27890d1da1eb87ff61eacb0acaf3d3e3cde012f4f6a1146a2d4e9b2ba51833e449e9
|
|
@@ -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:
|
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-accessanalyzer/customizations'
|
|
|
45
47
|
# @service
|
|
46
48
|
module Aws::AccessAnalyzer
|
|
47
49
|
|
|
48
|
-
GEM_VERSION = '1.
|
|
50
|
+
GEM_VERSION = '1.9.0'
|
|
49
51
|
|
|
50
52
|
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::AccessAnalyzer
|
|
|
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
|
|
|
@@ -105,7 +109,7 @@ module Aws::AccessAnalyzer
|
|
|
105
109
|
# @option options [required, String] :region
|
|
106
110
|
# The AWS region to connect to. The configured `:region` is
|
|
107
111
|
# used to determine the service `:endpoint`. When not passed,
|
|
108
|
-
# a default `:region` is
|
|
112
|
+
# a default `:region` is searched for in the following locations:
|
|
109
113
|
#
|
|
110
114
|
# * `Aws.config[:region]`
|
|
111
115
|
# * `ENV['AWS_REGION']`
|
|
@@ -161,7 +165,7 @@ module Aws::AccessAnalyzer
|
|
|
161
165
|
# @option options [String] :endpoint
|
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
|
164
|
-
# to test endpoints. This should be
|
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
|
165
169
|
#
|
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
|
@@ -176,7 +180,7 @@ module Aws::AccessAnalyzer
|
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
|
177
181
|
#
|
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
|
180
184
|
#
|
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
|
182
186
|
# The log formatter.
|
|
@@ -642,6 +646,9 @@ module Aws::AccessAnalyzer
|
|
|
642
646
|
# resp.finding.resource #=> String
|
|
643
647
|
# resp.finding.resource_owner_account #=> String
|
|
644
648
|
# resp.finding.resource_type #=> String, one of "AWS::IAM::Role", "AWS::KMS::Key", "AWS::Lambda::Function", "AWS::Lambda::LayerVersion", "AWS::S3::Bucket", "AWS::SQS::Queue"
|
|
649
|
+
# resp.finding.sources #=> Array
|
|
650
|
+
# resp.finding.sources[0].detail.access_point_arn #=> String
|
|
651
|
+
# resp.finding.sources[0].type #=> String, one of "BUCKET_ACL", "POLICY", "S3_ACCESS_POINT"
|
|
645
652
|
# resp.finding.status #=> String, one of "ACTIVE", "ARCHIVED", "RESOLVED"
|
|
646
653
|
# resp.finding.updated_at #=> Time
|
|
647
654
|
#
|
|
@@ -864,6 +871,9 @@ module Aws::AccessAnalyzer
|
|
|
864
871
|
# resp.findings[0].resource #=> String
|
|
865
872
|
# resp.findings[0].resource_owner_account #=> String
|
|
866
873
|
# resp.findings[0].resource_type #=> String, one of "AWS::IAM::Role", "AWS::KMS::Key", "AWS::Lambda::Function", "AWS::Lambda::LayerVersion", "AWS::S3::Bucket", "AWS::SQS::Queue"
|
|
874
|
+
# resp.findings[0].sources #=> Array
|
|
875
|
+
# resp.findings[0].sources[0].detail.access_point_arn #=> String
|
|
876
|
+
# resp.findings[0].sources[0].type #=> String, one of "BUCKET_ACL", "POLICY", "S3_ACCESS_POINT"
|
|
867
877
|
# resp.findings[0].status #=> String, one of "ACTIVE", "ARCHIVED", "RESOLVED"
|
|
868
878
|
# resp.findings[0].updated_at #=> Time
|
|
869
879
|
# resp.next_token #=> String
|
|
@@ -1089,7 +1099,7 @@ module Aws::AccessAnalyzer
|
|
|
1089
1099
|
params: params,
|
|
1090
1100
|
config: config)
|
|
1091
1101
|
context[:gem_name] = 'aws-sdk-accessanalyzer'
|
|
1092
|
-
context[:gem_version] = '1.
|
|
1102
|
+
context[:gem_version] = '1.9.0'
|
|
1093
1103
|
Seahorse::Client::Request.new(handlers, context)
|
|
1094
1104
|
end
|
|
1095
1105
|
|
|
@@ -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:
|
|
@@ -35,6 +37,10 @@ module Aws::AccessAnalyzer
|
|
|
35
37
|
Finding = Shapes::StructureShape.new(name: 'Finding')
|
|
36
38
|
FindingId = Shapes::StringShape.new(name: 'FindingId')
|
|
37
39
|
FindingIdList = Shapes::ListShape.new(name: 'FindingIdList')
|
|
40
|
+
FindingSource = Shapes::StructureShape.new(name: 'FindingSource')
|
|
41
|
+
FindingSourceDetail = Shapes::StructureShape.new(name: 'FindingSourceDetail')
|
|
42
|
+
FindingSourceList = Shapes::ListShape.new(name: 'FindingSourceList')
|
|
43
|
+
FindingSourceType = Shapes::StringShape.new(name: 'FindingSourceType')
|
|
38
44
|
FindingStatus = Shapes::StringShape.new(name: 'FindingStatus')
|
|
39
45
|
FindingStatusUpdate = Shapes::StringShape.new(name: 'FindingStatusUpdate')
|
|
40
46
|
FindingSummary = Shapes::StructureShape.new(name: 'FindingSummary')
|
|
@@ -191,12 +197,22 @@ module Aws::AccessAnalyzer
|
|
|
191
197
|
Finding.add_member(:resource, Shapes::ShapeRef.new(shape: String, location_name: "resource"))
|
|
192
198
|
Finding.add_member(:resource_owner_account, Shapes::ShapeRef.new(shape: String, required: true, location_name: "resourceOwnerAccount"))
|
|
193
199
|
Finding.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, required: true, location_name: "resourceType"))
|
|
200
|
+
Finding.add_member(:sources, Shapes::ShapeRef.new(shape: FindingSourceList, location_name: "sources"))
|
|
194
201
|
Finding.add_member(:status, Shapes::ShapeRef.new(shape: FindingStatus, required: true, location_name: "status"))
|
|
195
202
|
Finding.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
|
|
196
203
|
Finding.struct_class = Types::Finding
|
|
197
204
|
|
|
198
205
|
FindingIdList.member = Shapes::ShapeRef.new(shape: FindingId)
|
|
199
206
|
|
|
207
|
+
FindingSource.add_member(:detail, Shapes::ShapeRef.new(shape: FindingSourceDetail, location_name: "detail"))
|
|
208
|
+
FindingSource.add_member(:type, Shapes::ShapeRef.new(shape: FindingSourceType, required: true, location_name: "type"))
|
|
209
|
+
FindingSource.struct_class = Types::FindingSource
|
|
210
|
+
|
|
211
|
+
FindingSourceDetail.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: String, location_name: "accessPointArn"))
|
|
212
|
+
FindingSourceDetail.struct_class = Types::FindingSourceDetail
|
|
213
|
+
|
|
214
|
+
FindingSourceList.member = Shapes::ShapeRef.new(shape: FindingSource)
|
|
215
|
+
|
|
200
216
|
FindingSummary.add_member(:action, Shapes::ShapeRef.new(shape: ActionList, location_name: "action"))
|
|
201
217
|
FindingSummary.add_member(:analyzed_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "analyzedAt"))
|
|
202
218
|
FindingSummary.add_member(:condition, Shapes::ShapeRef.new(shape: ConditionKeyMap, required: true, location_name: "condition"))
|
|
@@ -208,6 +224,7 @@ module Aws::AccessAnalyzer
|
|
|
208
224
|
FindingSummary.add_member(:resource, Shapes::ShapeRef.new(shape: String, location_name: "resource"))
|
|
209
225
|
FindingSummary.add_member(:resource_owner_account, Shapes::ShapeRef.new(shape: String, required: true, location_name: "resourceOwnerAccount"))
|
|
210
226
|
FindingSummary.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, required: true, location_name: "resourceType"))
|
|
227
|
+
FindingSummary.add_member(:sources, Shapes::ShapeRef.new(shape: FindingSourceList, location_name: "sources"))
|
|
211
228
|
FindingSummary.add_member(:status, Shapes::ShapeRef.new(shape: FindingStatus, required: true, location_name: "status"))
|
|
212
229
|
FindingSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
|
|
213
230
|
FindingSummary.struct_class = Types::FindingSummary
|
|
@@ -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:
|
|
@@ -17,6 +19,7 @@ module Aws::AccessAnalyzer
|
|
|
17
19
|
#
|
|
18
20
|
class AccessDeniedException < Struct.new(
|
|
19
21
|
:message)
|
|
22
|
+
SENSITIVE = []
|
|
20
23
|
include Aws::Structure
|
|
21
24
|
end
|
|
22
25
|
|
|
@@ -57,7 +60,8 @@ module Aws::AccessAnalyzer
|
|
|
57
60
|
# @return [String]
|
|
58
61
|
#
|
|
59
62
|
# @!attribute [rw] shared_via
|
|
60
|
-
# Indicates how the access that generated the finding is granted.
|
|
63
|
+
# Indicates how the access that generated the finding is granted. This
|
|
64
|
+
# is populated for Amazon S3 bucket findings.
|
|
61
65
|
# @return [Array<String>]
|
|
62
66
|
#
|
|
63
67
|
# @!attribute [rw] status
|
|
@@ -83,6 +87,7 @@ module Aws::AccessAnalyzer
|
|
|
83
87
|
:shared_via,
|
|
84
88
|
:status,
|
|
85
89
|
:updated_at)
|
|
90
|
+
SENSITIVE = []
|
|
86
91
|
include Aws::Structure
|
|
87
92
|
end
|
|
88
93
|
|
|
@@ -106,6 +111,7 @@ module Aws::AccessAnalyzer
|
|
|
106
111
|
:resource_arn,
|
|
107
112
|
:resource_owner_account,
|
|
108
113
|
:resource_type)
|
|
114
|
+
SENSITIVE = []
|
|
109
115
|
include Aws::Structure
|
|
110
116
|
end
|
|
111
117
|
|
|
@@ -171,6 +177,7 @@ module Aws::AccessAnalyzer
|
|
|
171
177
|
:status_reason,
|
|
172
178
|
:tags,
|
|
173
179
|
:type)
|
|
180
|
+
SENSITIVE = []
|
|
174
181
|
include Aws::Structure
|
|
175
182
|
end
|
|
176
183
|
|
|
@@ -199,6 +206,7 @@ module Aws::AccessAnalyzer
|
|
|
199
206
|
:filter,
|
|
200
207
|
:rule_name,
|
|
201
208
|
:updated_at)
|
|
209
|
+
SENSITIVE = []
|
|
202
210
|
include Aws::Structure
|
|
203
211
|
end
|
|
204
212
|
|
|
@@ -221,6 +229,7 @@ module Aws::AccessAnalyzer
|
|
|
221
229
|
:message,
|
|
222
230
|
:resource_id,
|
|
223
231
|
:resource_type)
|
|
232
|
+
SENSITIVE = []
|
|
224
233
|
include Aws::Structure
|
|
225
234
|
end
|
|
226
235
|
|
|
@@ -285,6 +294,7 @@ module Aws::AccessAnalyzer
|
|
|
285
294
|
:client_token,
|
|
286
295
|
:tags,
|
|
287
296
|
:type)
|
|
297
|
+
SENSITIVE = []
|
|
288
298
|
include Aws::Structure
|
|
289
299
|
end
|
|
290
300
|
|
|
@@ -298,6 +308,7 @@ module Aws::AccessAnalyzer
|
|
|
298
308
|
#
|
|
299
309
|
class CreateAnalyzerResponse < Struct.new(
|
|
300
310
|
:arn)
|
|
311
|
+
SENSITIVE = []
|
|
301
312
|
include Aws::Structure
|
|
302
313
|
end
|
|
303
314
|
|
|
@@ -346,6 +357,7 @@ module Aws::AccessAnalyzer
|
|
|
346
357
|
:client_token,
|
|
347
358
|
:filter,
|
|
348
359
|
:rule_name)
|
|
360
|
+
SENSITIVE = []
|
|
349
361
|
include Aws::Structure
|
|
350
362
|
end
|
|
351
363
|
|
|
@@ -388,6 +400,7 @@ module Aws::AccessAnalyzer
|
|
|
388
400
|
:eq,
|
|
389
401
|
:exists,
|
|
390
402
|
:neq)
|
|
403
|
+
SENSITIVE = []
|
|
391
404
|
include Aws::Structure
|
|
392
405
|
end
|
|
393
406
|
|
|
@@ -417,6 +430,7 @@ module Aws::AccessAnalyzer
|
|
|
417
430
|
class DeleteAnalyzerRequest < Struct.new(
|
|
418
431
|
:analyzer_name,
|
|
419
432
|
:client_token)
|
|
433
|
+
SENSITIVE = []
|
|
420
434
|
include Aws::Structure
|
|
421
435
|
end
|
|
422
436
|
|
|
@@ -453,6 +467,7 @@ module Aws::AccessAnalyzer
|
|
|
453
467
|
:analyzer_name,
|
|
454
468
|
:client_token,
|
|
455
469
|
:rule_name)
|
|
470
|
+
SENSITIVE = []
|
|
456
471
|
include Aws::Structure
|
|
457
472
|
end
|
|
458
473
|
|
|
@@ -506,6 +521,12 @@ module Aws::AccessAnalyzer
|
|
|
506
521
|
# The type of the resource reported in the finding.
|
|
507
522
|
# @return [String]
|
|
508
523
|
#
|
|
524
|
+
# @!attribute [rw] sources
|
|
525
|
+
# The sources of the finding. This indicates how the access that
|
|
526
|
+
# generated the finding is granted. It is populated for Amazon S3
|
|
527
|
+
# bucket findings.
|
|
528
|
+
# @return [Array<Types::FindingSource>]
|
|
529
|
+
#
|
|
509
530
|
# @!attribute [rw] status
|
|
510
531
|
# The current status of the finding.
|
|
511
532
|
# @return [String]
|
|
@@ -528,8 +549,47 @@ module Aws::AccessAnalyzer
|
|
|
528
549
|
:resource,
|
|
529
550
|
:resource_owner_account,
|
|
530
551
|
:resource_type,
|
|
552
|
+
:sources,
|
|
531
553
|
:status,
|
|
532
554
|
:updated_at)
|
|
555
|
+
SENSITIVE = []
|
|
556
|
+
include Aws::Structure
|
|
557
|
+
end
|
|
558
|
+
|
|
559
|
+
# The source of the finding. This indicates how the access that
|
|
560
|
+
# generated the finding is granted. It is populated for Amazon S3 bucket
|
|
561
|
+
# findings.
|
|
562
|
+
#
|
|
563
|
+
# @!attribute [rw] detail
|
|
564
|
+
# Includes details about how the access that generated the finding is
|
|
565
|
+
# granted. This is populated for Amazon S3 bucket findings.
|
|
566
|
+
# @return [Types::FindingSourceDetail]
|
|
567
|
+
#
|
|
568
|
+
# @!attribute [rw] type
|
|
569
|
+
# Indicates the type of access that generated the finding.
|
|
570
|
+
# @return [String]
|
|
571
|
+
#
|
|
572
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/accessanalyzer-2019-11-01/FindingSource AWS API Documentation
|
|
573
|
+
#
|
|
574
|
+
class FindingSource < Struct.new(
|
|
575
|
+
:detail,
|
|
576
|
+
:type)
|
|
577
|
+
SENSITIVE = []
|
|
578
|
+
include Aws::Structure
|
|
579
|
+
end
|
|
580
|
+
|
|
581
|
+
# Includes details about how the access that generated the finding is
|
|
582
|
+
# granted. This is populated for Amazon S3 bucket findings.
|
|
583
|
+
#
|
|
584
|
+
# @!attribute [rw] access_point_arn
|
|
585
|
+
# The ARN of the access point that generated the finding.
|
|
586
|
+
# @return [String]
|
|
587
|
+
#
|
|
588
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/accessanalyzer-2019-11-01/FindingSourceDetail AWS API Documentation
|
|
589
|
+
#
|
|
590
|
+
class FindingSourceDetail < Struct.new(
|
|
591
|
+
:access_point_arn)
|
|
592
|
+
SENSITIVE = []
|
|
533
593
|
include Aws::Structure
|
|
534
594
|
end
|
|
535
595
|
|
|
@@ -584,6 +644,12 @@ module Aws::AccessAnalyzer
|
|
|
584
644
|
# The type of the resource that the external principal has access to.
|
|
585
645
|
# @return [String]
|
|
586
646
|
#
|
|
647
|
+
# @!attribute [rw] sources
|
|
648
|
+
# The sources of the finding. This indicates how the access that
|
|
649
|
+
# generated the finding is granted. It is populated for Amazon S3
|
|
650
|
+
# bucket findings.
|
|
651
|
+
# @return [Array<Types::FindingSource>]
|
|
652
|
+
#
|
|
587
653
|
# @!attribute [rw] status
|
|
588
654
|
# The status of the finding.
|
|
589
655
|
# @return [String]
|
|
@@ -606,8 +672,10 @@ module Aws::AccessAnalyzer
|
|
|
606
672
|
:resource,
|
|
607
673
|
:resource_owner_account,
|
|
608
674
|
:resource_type,
|
|
675
|
+
:sources,
|
|
609
676
|
:status,
|
|
610
677
|
:updated_at)
|
|
678
|
+
SENSITIVE = []
|
|
611
679
|
include Aws::Structure
|
|
612
680
|
end
|
|
613
681
|
|
|
@@ -634,6 +702,7 @@ module Aws::AccessAnalyzer
|
|
|
634
702
|
class GetAnalyzedResourceRequest < Struct.new(
|
|
635
703
|
:analyzer_arn,
|
|
636
704
|
:resource_arn)
|
|
705
|
+
SENSITIVE = []
|
|
637
706
|
include Aws::Structure
|
|
638
707
|
end
|
|
639
708
|
|
|
@@ -648,6 +717,7 @@ module Aws::AccessAnalyzer
|
|
|
648
717
|
#
|
|
649
718
|
class GetAnalyzedResourceResponse < Struct.new(
|
|
650
719
|
:resource)
|
|
720
|
+
SENSITIVE = []
|
|
651
721
|
include Aws::Structure
|
|
652
722
|
end
|
|
653
723
|
|
|
@@ -668,6 +738,7 @@ module Aws::AccessAnalyzer
|
|
|
668
738
|
#
|
|
669
739
|
class GetAnalyzerRequest < Struct.new(
|
|
670
740
|
:analyzer_name)
|
|
741
|
+
SENSITIVE = []
|
|
671
742
|
include Aws::Structure
|
|
672
743
|
end
|
|
673
744
|
|
|
@@ -682,6 +753,7 @@ module Aws::AccessAnalyzer
|
|
|
682
753
|
#
|
|
683
754
|
class GetAnalyzerResponse < Struct.new(
|
|
684
755
|
:analyzer)
|
|
756
|
+
SENSITIVE = []
|
|
685
757
|
include Aws::Structure
|
|
686
758
|
end
|
|
687
759
|
|
|
@@ -708,6 +780,7 @@ module Aws::AccessAnalyzer
|
|
|
708
780
|
class GetArchiveRuleRequest < Struct.new(
|
|
709
781
|
:analyzer_name,
|
|
710
782
|
:rule_name)
|
|
783
|
+
SENSITIVE = []
|
|
711
784
|
include Aws::Structure
|
|
712
785
|
end
|
|
713
786
|
|
|
@@ -721,6 +794,7 @@ module Aws::AccessAnalyzer
|
|
|
721
794
|
#
|
|
722
795
|
class GetArchiveRuleResponse < Struct.new(
|
|
723
796
|
:archive_rule)
|
|
797
|
+
SENSITIVE = []
|
|
724
798
|
include Aws::Structure
|
|
725
799
|
end
|
|
726
800
|
|
|
@@ -747,6 +821,7 @@ module Aws::AccessAnalyzer
|
|
|
747
821
|
class GetFindingRequest < Struct.new(
|
|
748
822
|
:analyzer_arn,
|
|
749
823
|
:id)
|
|
824
|
+
SENSITIVE = []
|
|
750
825
|
include Aws::Structure
|
|
751
826
|
end
|
|
752
827
|
|
|
@@ -760,6 +835,7 @@ module Aws::AccessAnalyzer
|
|
|
760
835
|
#
|
|
761
836
|
class GetFindingResponse < Struct.new(
|
|
762
837
|
:finding)
|
|
838
|
+
SENSITIVE = []
|
|
763
839
|
include Aws::Structure
|
|
764
840
|
end
|
|
765
841
|
|
|
@@ -794,6 +870,7 @@ module Aws::AccessAnalyzer
|
|
|
794
870
|
class InlineArchiveRule < Struct.new(
|
|
795
871
|
:filter,
|
|
796
872
|
:rule_name)
|
|
873
|
+
SENSITIVE = []
|
|
797
874
|
include Aws::Structure
|
|
798
875
|
end
|
|
799
876
|
|
|
@@ -811,6 +888,7 @@ module Aws::AccessAnalyzer
|
|
|
811
888
|
class InternalServerException < Struct.new(
|
|
812
889
|
:message,
|
|
813
890
|
:retry_after_seconds)
|
|
891
|
+
SENSITIVE = []
|
|
814
892
|
include Aws::Structure
|
|
815
893
|
end
|
|
816
894
|
|
|
@@ -850,6 +928,7 @@ module Aws::AccessAnalyzer
|
|
|
850
928
|
:max_results,
|
|
851
929
|
:next_token,
|
|
852
930
|
:resource_type)
|
|
931
|
+
SENSITIVE = []
|
|
853
932
|
include Aws::Structure
|
|
854
933
|
end
|
|
855
934
|
|
|
@@ -868,6 +947,7 @@ module Aws::AccessAnalyzer
|
|
|
868
947
|
class ListAnalyzedResourcesResponse < Struct.new(
|
|
869
948
|
:analyzed_resources,
|
|
870
949
|
:next_token)
|
|
950
|
+
SENSITIVE = []
|
|
871
951
|
include Aws::Structure
|
|
872
952
|
end
|
|
873
953
|
|
|
@@ -900,6 +980,7 @@ module Aws::AccessAnalyzer
|
|
|
900
980
|
:max_results,
|
|
901
981
|
:next_token,
|
|
902
982
|
:type)
|
|
983
|
+
SENSITIVE = []
|
|
903
984
|
include Aws::Structure
|
|
904
985
|
end
|
|
905
986
|
|
|
@@ -918,6 +999,7 @@ module Aws::AccessAnalyzer
|
|
|
918
999
|
class ListAnalyzersResponse < Struct.new(
|
|
919
1000
|
:analyzers,
|
|
920
1001
|
:next_token)
|
|
1002
|
+
SENSITIVE = []
|
|
921
1003
|
include Aws::Structure
|
|
922
1004
|
end
|
|
923
1005
|
|
|
@@ -950,6 +1032,7 @@ module Aws::AccessAnalyzer
|
|
|
950
1032
|
:analyzer_name,
|
|
951
1033
|
:max_results,
|
|
952
1034
|
:next_token)
|
|
1035
|
+
SENSITIVE = []
|
|
953
1036
|
include Aws::Structure
|
|
954
1037
|
end
|
|
955
1038
|
|
|
@@ -968,6 +1051,7 @@ module Aws::AccessAnalyzer
|
|
|
968
1051
|
class ListArchiveRulesResponse < Struct.new(
|
|
969
1052
|
:archive_rules,
|
|
970
1053
|
:next_token)
|
|
1054
|
+
SENSITIVE = []
|
|
971
1055
|
include Aws::Structure
|
|
972
1056
|
end
|
|
973
1057
|
|
|
@@ -1022,6 +1106,7 @@ module Aws::AccessAnalyzer
|
|
|
1022
1106
|
:max_results,
|
|
1023
1107
|
:next_token,
|
|
1024
1108
|
:sort)
|
|
1109
|
+
SENSITIVE = []
|
|
1025
1110
|
include Aws::Structure
|
|
1026
1111
|
end
|
|
1027
1112
|
|
|
@@ -1041,6 +1126,7 @@ module Aws::AccessAnalyzer
|
|
|
1041
1126
|
class ListFindingsResponse < Struct.new(
|
|
1042
1127
|
:findings,
|
|
1043
1128
|
:next_token)
|
|
1129
|
+
SENSITIVE = []
|
|
1044
1130
|
include Aws::Structure
|
|
1045
1131
|
end
|
|
1046
1132
|
|
|
@@ -1061,6 +1147,7 @@ module Aws::AccessAnalyzer
|
|
|
1061
1147
|
#
|
|
1062
1148
|
class ListTagsForResourceRequest < Struct.new(
|
|
1063
1149
|
:resource_arn)
|
|
1150
|
+
SENSITIVE = []
|
|
1064
1151
|
include Aws::Structure
|
|
1065
1152
|
end
|
|
1066
1153
|
|
|
@@ -1074,6 +1161,7 @@ module Aws::AccessAnalyzer
|
|
|
1074
1161
|
#
|
|
1075
1162
|
class ListTagsForResourceResponse < Struct.new(
|
|
1076
1163
|
:tags)
|
|
1164
|
+
SENSITIVE = []
|
|
1077
1165
|
include Aws::Structure
|
|
1078
1166
|
end
|
|
1079
1167
|
|
|
@@ -1096,6 +1184,7 @@ module Aws::AccessAnalyzer
|
|
|
1096
1184
|
:message,
|
|
1097
1185
|
:resource_id,
|
|
1098
1186
|
:resource_type)
|
|
1187
|
+
SENSITIVE = []
|
|
1099
1188
|
include Aws::Structure
|
|
1100
1189
|
end
|
|
1101
1190
|
|
|
@@ -1118,6 +1207,7 @@ module Aws::AccessAnalyzer
|
|
|
1118
1207
|
:message,
|
|
1119
1208
|
:resource_id,
|
|
1120
1209
|
:resource_type)
|
|
1210
|
+
SENSITIVE = []
|
|
1121
1211
|
include Aws::Structure
|
|
1122
1212
|
end
|
|
1123
1213
|
|
|
@@ -1144,6 +1234,7 @@ module Aws::AccessAnalyzer
|
|
|
1144
1234
|
class SortCriteria < Struct.new(
|
|
1145
1235
|
:attribute_name,
|
|
1146
1236
|
:order_by)
|
|
1237
|
+
SENSITIVE = []
|
|
1147
1238
|
include Aws::Structure
|
|
1148
1239
|
end
|
|
1149
1240
|
|
|
@@ -1171,6 +1262,7 @@ module Aws::AccessAnalyzer
|
|
|
1171
1262
|
class StartResourceScanRequest < Struct.new(
|
|
1172
1263
|
:analyzer_arn,
|
|
1173
1264
|
:resource_arn)
|
|
1265
|
+
SENSITIVE = []
|
|
1174
1266
|
include Aws::Structure
|
|
1175
1267
|
end
|
|
1176
1268
|
|
|
@@ -1188,6 +1280,7 @@ module Aws::AccessAnalyzer
|
|
|
1188
1280
|
#
|
|
1189
1281
|
class StatusReason < Struct.new(
|
|
1190
1282
|
:code)
|
|
1283
|
+
SENSITIVE = []
|
|
1191
1284
|
include Aws::Structure
|
|
1192
1285
|
end
|
|
1193
1286
|
|
|
@@ -1216,6 +1309,7 @@ module Aws::AccessAnalyzer
|
|
|
1216
1309
|
class TagResourceRequest < Struct.new(
|
|
1217
1310
|
:resource_arn,
|
|
1218
1311
|
:tags)
|
|
1312
|
+
SENSITIVE = []
|
|
1219
1313
|
include Aws::Structure
|
|
1220
1314
|
end
|
|
1221
1315
|
|
|
@@ -1239,6 +1333,7 @@ module Aws::AccessAnalyzer
|
|
|
1239
1333
|
class ThrottlingException < Struct.new(
|
|
1240
1334
|
:message,
|
|
1241
1335
|
:retry_after_seconds)
|
|
1336
|
+
SENSITIVE = []
|
|
1242
1337
|
include Aws::Structure
|
|
1243
1338
|
end
|
|
1244
1339
|
|
|
@@ -1265,6 +1360,7 @@ module Aws::AccessAnalyzer
|
|
|
1265
1360
|
class UntagResourceRequest < Struct.new(
|
|
1266
1361
|
:resource_arn,
|
|
1267
1362
|
:tag_keys)
|
|
1363
|
+
SENSITIVE = []
|
|
1268
1364
|
include Aws::Structure
|
|
1269
1365
|
end
|
|
1270
1366
|
|
|
@@ -1320,6 +1416,7 @@ module Aws::AccessAnalyzer
|
|
|
1320
1416
|
:client_token,
|
|
1321
1417
|
:filter,
|
|
1322
1418
|
:rule_name)
|
|
1419
|
+
SENSITIVE = []
|
|
1323
1420
|
include Aws::Structure
|
|
1324
1421
|
end
|
|
1325
1422
|
|
|
@@ -1370,6 +1467,7 @@ module Aws::AccessAnalyzer
|
|
|
1370
1467
|
:ids,
|
|
1371
1468
|
:resource_arn,
|
|
1372
1469
|
:status)
|
|
1470
|
+
SENSITIVE = []
|
|
1373
1471
|
include Aws::Structure
|
|
1374
1472
|
end
|
|
1375
1473
|
|
|
@@ -1392,6 +1490,7 @@ module Aws::AccessAnalyzer
|
|
|
1392
1490
|
:field_list,
|
|
1393
1491
|
:message,
|
|
1394
1492
|
:reason)
|
|
1493
|
+
SENSITIVE = []
|
|
1395
1494
|
include Aws::Structure
|
|
1396
1495
|
end
|
|
1397
1496
|
|
|
@@ -1410,6 +1509,7 @@ module Aws::AccessAnalyzer
|
|
|
1410
1509
|
class ValidationExceptionField < Struct.new(
|
|
1411
1510
|
:message,
|
|
1412
1511
|
:name)
|
|
1512
|
+
SENSITIVE = []
|
|
1413
1513
|
include Aws::Structure
|
|
1414
1514
|
end
|
|
1415
1515
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-accessanalyzer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.9.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-06-23 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
|
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
81
81
|
version: '0'
|
|
82
82
|
requirements: []
|
|
83
83
|
rubyforge_project:
|
|
84
|
-
rubygems_version: 2.
|
|
84
|
+
rubygems_version: 2.7.6.2
|
|
85
85
|
signing_key:
|
|
86
86
|
specification_version: 4
|
|
87
87
|
summary: AWS SDK for Ruby - Access Analyzer
|