aws-sdk-auditmanager 1.18.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1a569af173feae7639924a392295410b41335bea45288c67673aff6583e21eab
4
- data.tar.gz: 15e4f24bc0ab6c0b0f73d17a16e91f2a5045cd7b42fd6b1b26d8111491da2d3a
3
+ metadata.gz: 1aa67868bc5168765a006eb1e85f22790a7458ea3affa0956776eed29975f83a
4
+ data.tar.gz: 64094150daddc01c3ffd6742dbd901dbe9ce8d1c4e2dd4f3d44566d41ca2f665
5
5
  SHA512:
6
- metadata.gz: 0b8a96949e328d06a44c768cf58f966e27bfda267a64914ba19a4fba10fb78ca2b3e290b171820d06f975010e02938114c064289ea79cc6211db40e0f2c50ec2
7
- data.tar.gz: 024bd0ef984633bb1f77dcf3a82718800120f9d54bcf45a9d62db0d969b3e414319ec9fcda04c6775ba0f479a95a8995fecaaee0ba7174c85a9d741fb89c290b
6
+ metadata.gz: 2a86cef96ae21b765fbf4737a785e92b6b31ebd8d97d2bab7ba45794acf1e9bcd7f979d47302235807fd96ee2fbc56d7e3fa65ee0bccdadd01646cf71a3cc98a
7
+ data.tar.gz: f8020dee4c1a0388a252e665bac72b249f6d6aacf06e496c238d6c71167753bf0ccd55ac68b1b2e47dc57a27939ac5fe3d46b8e7f7db09658bae9d83b74ba507
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.21.0 (2022-02-24)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.20.0 (2022-02-07)
10
+ ------------------
11
+
12
+ * 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.
13
+
14
+ 1.19.0 (2022-02-03)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
4
19
  1.18.0 (2021-12-21)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.18.0
1
+ 1.21.0
@@ -27,7 +27,9 @@ 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'
32
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
31
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
32
34
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
33
35
 
@@ -74,7 +76,9 @@ module Aws::AuditManager
74
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
75
77
  add_plugin(Aws::Plugins::TransferEncoding)
76
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
77
80
  add_plugin(Aws::Plugins::DefaultsMode)
81
+ add_plugin(Aws::Plugins::RecursionDetection)
78
82
  add_plugin(Aws::Plugins::SignatureV4)
79
83
  add_plugin(Aws::Plugins::Protocols::RestJson)
80
84
 
@@ -788,7 +792,7 @@ module Aws::AuditManager
788
792
  # name: "ControlSetName", # required
789
793
  # controls: [
790
794
  # {
791
- # id: "UUID",
795
+ # id: "UUID", # required
792
796
  # },
793
797
  # ],
794
798
  # },
@@ -3114,9 +3118,9 @@ module Aws::AuditManager
3114
3118
  # {
3115
3119
  # id: "ControlSetName",
3116
3120
  # name: "ControlSetName", # required
3117
- # controls: [
3121
+ # controls: [ # required
3118
3122
  # {
3119
- # id: "UUID",
3123
+ # id: "UUID", # required
3120
3124
  # },
3121
3125
  # ],
3122
3126
  # },
@@ -3534,7 +3538,7 @@ module Aws::AuditManager
3534
3538
  params: params,
3535
3539
  config: config)
3536
3540
  context[:gem_name] = 'aws-sdk-auditmanager'
3537
- context[:gem_version] = '1.18.0'
3541
+ context[:gem_version] = '1.21.0'
3538
3542
  Seahorse::Client::Request.new(handlers, context)
3539
3543
  end
3540
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.18.0'
51
+ GEM_VERSION = '1.21.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.18.0
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-12-21 00:00:00.000000000 Z
11
+ date: 2022-02-24 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.125.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.125.0
32
+ version: 3.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement