aws-sdk-auditmanager 1.68.0 → 1.70.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-auditmanager/client.rb +11 -1
- data/lib/aws-sdk-auditmanager/client_api.rb +2 -1
- data/lib/aws-sdk-auditmanager/types.rb +25 -3
- data/lib/aws-sdk-auditmanager.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ed229c54569b05ec2d716f2f381628893f2f74999fc3ed708e9e23c2d25417d7
|
4
|
+
data.tar.gz: 016316c80c8f0979688de522c9ddc6765dccdfcd4f6a49c23ae5baf8cd228ae2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e0ad0c4e88c6feda7456af95afa76bb5a644c48c3edb1df86bbc229a79989001f5a4a510fd9bf62929c7016da6d80d036242973a63b9bb60093adeece077e066
|
7
|
+
data.tar.gz: 5cce81e27c86dd5908a30f7d549c18554fa7375a400bd3faa0ff2e651af62e58cbbfeb0f6d98d8bb33b745f86fca792af479aa2e5f0ff0d52158c4ae0208e387
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.70.0 (2025-08-01)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added a note to Framework APIs (CreateAssessmentFramework, GetAssessmentFramework, UpdateAssessmentFramework) clarifying that the Controls object returns a partial response when called through Framework APIs. Added documentation that the Framework's controlSources parameter is no longer supported.
|
8
|
+
|
9
|
+
1.69.0 (2025-07-31)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.68.0 (2025-07-21)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.70.0
|
@@ -944,6 +944,11 @@ module Aws::AuditManager
|
|
944
944
|
# @option params [required, Array<Types::CreateAssessmentFrameworkControlSet>] :control_sets
|
945
945
|
# The control sets that are associated with the framework.
|
946
946
|
#
|
947
|
+
# <note markdown="1"> The `Controls` object returns a partial response when called through
|
948
|
+
# Framework APIs. For a complete `Controls` object, use `GetControl`.
|
949
|
+
#
|
950
|
+
# </note>
|
951
|
+
#
|
947
952
|
# @option params [Hash<String,String>] :tags
|
948
953
|
# The tags that are associated with the framework.
|
949
954
|
#
|
@@ -3587,6 +3592,11 @@ module Aws::AuditManager
|
|
3587
3592
|
# @option params [required, Array<Types::UpdateAssessmentFrameworkControlSet>] :control_sets
|
3588
3593
|
# The control sets that are associated with the framework.
|
3589
3594
|
#
|
3595
|
+
# <note markdown="1"> The `Controls` object returns a partial response when called through
|
3596
|
+
# Framework APIs. For a complete `Controls` object, use `GetControl`.
|
3597
|
+
#
|
3598
|
+
# </note>
|
3599
|
+
#
|
3590
3600
|
# @return [Types::UpdateAssessmentFrameworkResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3591
3601
|
#
|
3592
3602
|
# * {Types::UpdateAssessmentFrameworkResponse#framework #framework} => Types::Framework
|
@@ -4067,7 +4077,7 @@ module Aws::AuditManager
|
|
4067
4077
|
tracer: tracer
|
4068
4078
|
)
|
4069
4079
|
context[:gem_name] = 'aws-sdk-auditmanager'
|
4070
|
-
context[:gem_version] = '1.
|
4080
|
+
context[:gem_version] = '1.70.0'
|
4071
4081
|
Seahorse::Client::Request.new(handlers, context)
|
4072
4082
|
end
|
4073
4083
|
|
@@ -858,7 +858,7 @@ module Aws::AuditManager
|
|
858
858
|
Framework.add_member(:compliance_type, Shapes::ShapeRef.new(shape: ComplianceType, location_name: "complianceType"))
|
859
859
|
Framework.add_member(:description, Shapes::ShapeRef.new(shape: FrameworkDescription, location_name: "description"))
|
860
860
|
Framework.add_member(:logo, Shapes::ShapeRef.new(shape: Filename, location_name: "logo"))
|
861
|
-
Framework.add_member(:control_sources, Shapes::ShapeRef.new(shape: ControlSources, location_name: "controlSources"))
|
861
|
+
Framework.add_member(:control_sources, Shapes::ShapeRef.new(shape: ControlSources, deprecated: true, location_name: "controlSources", metadata: {"deprecatedMessage" => "Use controlSources from the Control", "deprecatedSince" => "2025-07-24"}))
|
862
862
|
Framework.add_member(:control_sets, Shapes::ShapeRef.new(shape: ControlSets, location_name: "controlSets"))
|
863
863
|
Framework.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
|
864
864
|
Framework.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastUpdatedAt"))
|
@@ -2146,6 +2146,7 @@ module Aws::AuditManager
|
|
2146
2146
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
2147
2147
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
2148
2148
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
2149
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
2149
2150
|
end)
|
2150
2151
|
|
2151
2152
|
api.add_operation(:update_assessment_framework_share, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1569,6 +1569,11 @@ module Aws::AuditManager
|
|
1569
1569
|
#
|
1570
1570
|
# @!attribute [rw] control_sets
|
1571
1571
|
# The control sets that are associated with the framework.
|
1572
|
+
#
|
1573
|
+
# <note markdown="1"> The `Controls` object returns a partial response when called through
|
1574
|
+
# Framework APIs. For a complete `Controls` object, use `GetControl`.
|
1575
|
+
#
|
1576
|
+
# </note>
|
1572
1577
|
# @return [Array<Types::CreateAssessmentFrameworkControlSet>]
|
1573
1578
|
#
|
1574
1579
|
# @!attribute [rw] tags
|
@@ -1588,8 +1593,8 @@ module Aws::AuditManager
|
|
1588
1593
|
end
|
1589
1594
|
|
1590
1595
|
# @!attribute [rw] framework
|
1591
|
-
# The
|
1592
|
-
#
|
1596
|
+
# The new framework object that the `CreateAssessmentFramework` API
|
1597
|
+
# returned.
|
1593
1598
|
# @return [Types::Framework]
|
1594
1599
|
#
|
1595
1600
|
# @see http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/CreateAssessmentFrameworkResponse AWS API Documentation
|
@@ -2498,10 +2503,17 @@ module Aws::AuditManager
|
|
2498
2503
|
#
|
2499
2504
|
# @!attribute [rw] control_sources
|
2500
2505
|
# The control data sources where Audit Manager collects evidence from.
|
2506
|
+
#
|
2507
|
+
# This API parameter is no longer supported.
|
2501
2508
|
# @return [String]
|
2502
2509
|
#
|
2503
2510
|
# @!attribute [rw] control_sets
|
2504
2511
|
# The control sets that are associated with the framework.
|
2512
|
+
#
|
2513
|
+
# <note markdown="1"> The `Controls` object returns a partial response when called through
|
2514
|
+
# Framework APIs. For a complete `Controls` object, use `GetControl`.
|
2515
|
+
#
|
2516
|
+
# </note>
|
2505
2517
|
# @return [Array<Types::ControlSet>]
|
2506
2518
|
#
|
2507
2519
|
# @!attribute [rw] created_at
|
@@ -2607,6 +2619,11 @@ module Aws::AuditManager
|
|
2607
2619
|
|
2608
2620
|
# @!attribute [rw] framework
|
2609
2621
|
# The framework that the `GetAssessmentFramework` API returned.
|
2622
|
+
#
|
2623
|
+
# <note markdown="1"> The `Controls` object returns a partial response when called through
|
2624
|
+
# Framework APIs. For a complete `Controls` object, use `GetControl`.
|
2625
|
+
#
|
2626
|
+
# </note>
|
2610
2627
|
# @return [Types::Framework]
|
2611
2628
|
#
|
2612
2629
|
# @see http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/GetAssessmentFrameworkResponse AWS API Documentation
|
@@ -4629,6 +4646,11 @@ module Aws::AuditManager
|
|
4629
4646
|
#
|
4630
4647
|
# @!attribute [rw] control_sets
|
4631
4648
|
# The control sets that are associated with the framework.
|
4649
|
+
#
|
4650
|
+
# <note markdown="1"> The `Controls` object returns a partial response when called through
|
4651
|
+
# Framework APIs. For a complete `Controls` object, use `GetControl`.
|
4652
|
+
#
|
4653
|
+
# </note>
|
4632
4654
|
# @return [Array<Types::UpdateAssessmentFrameworkControlSet>]
|
4633
4655
|
#
|
4634
4656
|
# @see http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/UpdateAssessmentFrameworkRequest AWS API Documentation
|
@@ -4644,7 +4666,7 @@ module Aws::AuditManager
|
|
4644
4666
|
end
|
4645
4667
|
|
4646
4668
|
# @!attribute [rw] framework
|
4647
|
-
# The
|
4669
|
+
# The framework object.
|
4648
4670
|
# @return [Types::Framework]
|
4649
4671
|
#
|
4650
4672
|
# @see http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/UpdateAssessmentFrameworkResponse AWS API Documentation
|
data/lib/aws-sdk-auditmanager.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-auditmanager
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.70.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.228.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.228.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|