aws-sdk-auditmanager 1.19.0 → 1.22.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: '08c91fb1bace7166fe100d644892763707d1c664e4a21874d87cf6e5857656e4'
4
- data.tar.gz: b2829eac7bdd395303df5e016c02a4610b863c63ac680d15d6140f0668f8348d
3
+ metadata.gz: 77cdb0fb314c81b34daa050c6f9fcf3bd133344441782f20796590dc1f0a4970
4
+ data.tar.gz: 54ab6346c4c761e570e2e411b4e0d3cded0c2d6ad54f5c0dca60b93c16c2f5d1
5
5
  SHA512:
6
- metadata.gz: f52c4111b30b4061757371cbdc828459f868516985073c4adccc7de198f850f22dfd8eff1f44210fca031fccd7a91d58ab55e4baea0bf4b250a245f5b089b1c7
7
- data.tar.gz: 5cb6d0aa5f40d694f0f35483bb660b6a2b6d3bcd695d3c25d3540b056c4bdf926c13a8ca0f30b55b1624d5d2ecb654d79deb86cdcb545577de59cb4d6dcf78c4
6
+ metadata.gz: 9c9c8d880450ea25c9c271a5d5875588a3d1d96a41e047d1303bf5c8752a3d6a8674fa8a1beebb7090acafde34615fe05419ebb9d256f7a911d23b0a07b92bd5
7
+ data.tar.gz: 38bebb76e9b53efbdb4454a7aab5e28356313192d97ef22eb59903cb240c2ffbcef7419251c4358ca8d4ac1d512d5d9d8f6f7fbea2f7da413bfad60a88fd261b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.22.0 (2022-03-23)
5
+ ------------------
6
+
7
+ * Feature - This release updates 1 API parameter, the SnsArn attribute. The character length and regex pattern for the SnsArn attribute have been updated, which enables you to deselect an SNS topic when using the UpdateSettings operation.
8
+
9
+ 1.21.0 (2022-02-24)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.20.0 (2022-02-07)
15
+ ------------------
16
+
17
+ * Feature - This release updates 3 API parameters. UpdateAssessmentFrameworkControlSet now requires the controls attribute, and CreateAssessmentFrameworkControl requires the id attribute. Additionally, UpdateAssessmentFramework now has a minimum length constraint for the controlSets attribute.
18
+
4
19
  1.19.0 (2022-02-03)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.19.0
1
+ 1.22.0
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
30
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
31
32
  require 'aws-sdk-core/plugins/recursion_detection.rb'
32
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
@@ -75,6 +76,7 @@ module Aws::AuditManager
75
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
76
77
  add_plugin(Aws::Plugins::TransferEncoding)
77
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
78
80
  add_plugin(Aws::Plugins::DefaultsMode)
79
81
  add_plugin(Aws::Plugins::RecursionDetection)
80
82
  add_plugin(Aws::Plugins::SignatureV4)
@@ -790,7 +792,7 @@ module Aws::AuditManager
790
792
  # name: "ControlSetName", # required
791
793
  # controls: [
792
794
  # {
793
- # id: "UUID",
795
+ # id: "UUID", # required
794
796
  # },
795
797
  # ],
796
798
  # },
@@ -3116,9 +3118,9 @@ module Aws::AuditManager
3116
3118
  # {
3117
3119
  # id: "ControlSetName",
3118
3120
  # name: "ControlSetName", # required
3119
- # controls: [
3121
+ # controls: [ # required
3120
3122
  # {
3121
- # id: "UUID",
3123
+ # id: "UUID", # required
3122
3124
  # },
3123
3125
  # ],
3124
3126
  # },
@@ -3536,7 +3538,7 @@ module Aws::AuditManager
3536
3538
  params: params,
3537
3539
  config: config)
3538
3540
  context[:gem_name] = 'aws-sdk-auditmanager'
3539
- context[:gem_version] = '1.19.0'
3541
+ context[:gem_version] = '1.22.0'
3540
3542
  Seahorse::Client::Request.new(handlers, context)
3541
3543
  end
3542
3544
 
@@ -642,7 +642,7 @@ module Aws::AuditManager
642
642
 
643
643
  Controls.member = Shapes::ShapeRef.new(shape: Control)
644
644
 
645
- CreateAssessmentFrameworkControl.add_member(:id, Shapes::ShapeRef.new(shape: UUID, location_name: "id"))
645
+ CreateAssessmentFrameworkControl.add_member(:id, Shapes::ShapeRef.new(shape: UUID, required: true, location_name: "id"))
646
646
  CreateAssessmentFrameworkControl.struct_class = Types::CreateAssessmentFrameworkControl
647
647
 
648
648
  CreateAssessmentFrameworkControlSet.add_member(:name, Shapes::ShapeRef.new(shape: ControlSetName, required: true, location_name: "name"))
@@ -1215,7 +1215,7 @@ module Aws::AuditManager
1215
1215
 
1216
1216
  UpdateAssessmentFrameworkControlSet.add_member(:id, Shapes::ShapeRef.new(shape: ControlSetName, location_name: "id"))
1217
1217
  UpdateAssessmentFrameworkControlSet.add_member(:name, Shapes::ShapeRef.new(shape: ControlSetName, required: true, location_name: "name"))
1218
- UpdateAssessmentFrameworkControlSet.add_member(:controls, Shapes::ShapeRef.new(shape: CreateAssessmentFrameworkControls, location_name: "controls"))
1218
+ UpdateAssessmentFrameworkControlSet.add_member(:controls, Shapes::ShapeRef.new(shape: CreateAssessmentFrameworkControls, required: true, location_name: "controls"))
1219
1219
  UpdateAssessmentFrameworkControlSet.struct_class = Types::UpdateAssessmentFrameworkControlSet
1220
1220
 
1221
1221
  UpdateAssessmentFrameworkControlSets.member = Shapes::ShapeRef.new(shape: UpdateAssessmentFrameworkControlSet)
@@ -1561,7 +1561,7 @@ module Aws::AuditManager
1561
1561
  # data as a hash:
1562
1562
  #
1563
1563
  # {
1564
- # id: "UUID",
1564
+ # id: "UUID", # required
1565
1565
  # }
1566
1566
  #
1567
1567
  # @!attribute [rw] id
@@ -1586,7 +1586,7 @@ module Aws::AuditManager
1586
1586
  # name: "ControlSetName", # required
1587
1587
  # controls: [
1588
1588
  # {
1589
- # id: "UUID",
1589
+ # id: "UUID", # required
1590
1590
  # },
1591
1591
  # ],
1592
1592
  # }
@@ -1621,7 +1621,7 @@ module Aws::AuditManager
1621
1621
  # name: "ControlSetName", # required
1622
1622
  # controls: [
1623
1623
  # {
1624
- # id: "UUID",
1624
+ # id: "UUID", # required
1625
1625
  # },
1626
1626
  # ],
1627
1627
  # },
@@ -4584,9 +4584,9 @@ module Aws::AuditManager
4584
4584
  # {
4585
4585
  # id: "ControlSetName",
4586
4586
  # name: "ControlSetName", # required
4587
- # controls: [
4587
+ # controls: [ # required
4588
4588
  # {
4589
- # id: "UUID",
4589
+ # id: "UUID", # required
4590
4590
  # },
4591
4591
  # ],
4592
4592
  # }
@@ -4625,9 +4625,9 @@ module Aws::AuditManager
4625
4625
  # {
4626
4626
  # id: "ControlSetName",
4627
4627
  # name: "ControlSetName", # required
4628
- # controls: [
4628
+ # controls: [ # required
4629
4629
  # {
4630
- # id: "UUID",
4630
+ # id: "UUID", # required
4631
4631
  # },
4632
4632
  # ],
4633
4633
  # },
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-auditmanager/customizations'
48
48
  # @!group service
49
49
  module Aws::AuditManager
50
50
 
51
- GEM_VERSION = '1.19.0'
51
+ GEM_VERSION = '1.22.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-auditmanager
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.19.0
4
+ version: 1.22.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: 2022-02-03 00:00:00.000000000 Z
11
+ date: 2022-03-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.126.0
22
+ version: 3.127.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.126.0
32
+ version: 3.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement