aws-sdk-auditmanager 1.6.0 → 1.7.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: df851d2507551fa841bb0b86b8010d7b7c8153043ea7374bb07fab96830ec079
4
- data.tar.gz: 5c87aefa9c17c376c19218f2d3125d09c7bc9788cf22a1fa99e2e329b7507bb2
3
+ metadata.gz: 22f308bc935d8db7f6669212549e9b08d1bcd6ddfa0504f550d6a866e48b109a
4
+ data.tar.gz: 3ee5ea01046baf58ca9420cfa9abf622e294f78d4c3225b20d6413b299317467
5
5
  SHA512:
6
- metadata.gz: 91eaad5df913daf09f2de346f5229c9734079c588695c619799fdce62c96c055da52e1692802f285c3783a2a4c63649192a0a7c9a3b7c676b9bc8d996cfa0033
7
- data.tar.gz: 151919e3dad1b7c3af3dc889f24df6d4e434d87cab2bf10b2d40c41c09d12b44a447be0e968af17c1afd7fd3ef65c26065a6d97e306b68a50bbe261a9b94539b
6
+ metadata.gz: bd2f463514b067246e72232f7eeb8ac2ab3ed06691cac6ffc1949c8d30c5da685bd938cd1592aa879dd39bb44d830e1ff6f95f1b8497001aa97856783f544ed1
7
+ data.tar.gz: 3cacb0bb1310916d905cb9362a93385b4019ae726886655e1923784b65009b372f6051fea8793ce25293f9b47c88e9bb6344109a3125f772b6b07ddba04f7fa6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.7.0 (2021-05-05)
5
+ ------------------
6
+
7
+ * Feature - This release updates the CreateAssessmentFrameworkControlSet and UpdateAssessmentFrameworkControlSet API data types. For both of these data types, the control set name is now a required attribute.
8
+
4
9
  1.6.0 (2021-04-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.0
1
+ 1.7.0
@@ -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.6.0'
51
+ GEM_VERSION = '1.7.0'
52
52
 
53
53
  end
@@ -765,7 +765,7 @@ module Aws::AuditManager
765
765
  # compliance_type: "ComplianceType",
766
766
  # control_sets: [ # required
767
767
  # {
768
- # name: "ControlSetName",
768
+ # name: "ControlSetName", # required
769
769
  # controls: [
770
770
  # {
771
771
  # id: "UUID",
@@ -2642,7 +2642,7 @@ module Aws::AuditManager
2642
2642
  # control_sets: [ # required
2643
2643
  # {
2644
2644
  # id: "ControlSetName",
2645
- # name: "ControlSetName",
2645
+ # name: "ControlSetName", # required
2646
2646
  # controls: [
2647
2647
  # {
2648
2648
  # id: "UUID",
@@ -3013,7 +3013,7 @@ module Aws::AuditManager
3013
3013
  params: params,
3014
3014
  config: config)
3015
3015
  context[:gem_name] = 'aws-sdk-auditmanager'
3016
- context[:gem_version] = '1.6.0'
3016
+ context[:gem_version] = '1.7.0'
3017
3017
  Seahorse::Client::Request.new(handlers, context)
3018
3018
  end
3019
3019
 
@@ -562,7 +562,7 @@ module Aws::AuditManager
562
562
  CreateAssessmentFrameworkControl.add_member(:id, Shapes::ShapeRef.new(shape: UUID, location_name: "id"))
563
563
  CreateAssessmentFrameworkControl.struct_class = Types::CreateAssessmentFrameworkControl
564
564
 
565
- CreateAssessmentFrameworkControlSet.add_member(:name, Shapes::ShapeRef.new(shape: ControlSetName, location_name: "name"))
565
+ CreateAssessmentFrameworkControlSet.add_member(:name, Shapes::ShapeRef.new(shape: ControlSetName, required: true, location_name: "name"))
566
566
  CreateAssessmentFrameworkControlSet.add_member(:controls, Shapes::ShapeRef.new(shape: CreateAssessmentFrameworkControls, location_name: "controls"))
567
567
  CreateAssessmentFrameworkControlSet.struct_class = Types::CreateAssessmentFrameworkControlSet
568
568
 
@@ -1037,7 +1037,7 @@ module Aws::AuditManager
1037
1037
  UpdateAssessmentControlSetStatusResponse.struct_class = Types::UpdateAssessmentControlSetStatusResponse
1038
1038
 
1039
1039
  UpdateAssessmentFrameworkControlSet.add_member(:id, Shapes::ShapeRef.new(shape: ControlSetName, location_name: "id"))
1040
- UpdateAssessmentFrameworkControlSet.add_member(:name, Shapes::ShapeRef.new(shape: ControlSetName, location_name: "name"))
1040
+ UpdateAssessmentFrameworkControlSet.add_member(:name, Shapes::ShapeRef.new(shape: ControlSetName, required: true, location_name: "name"))
1041
1041
  UpdateAssessmentFrameworkControlSet.add_member(:controls, Shapes::ShapeRef.new(shape: CreateAssessmentFrameworkControls, location_name: "controls"))
1042
1042
  UpdateAssessmentFrameworkControlSet.struct_class = Types::UpdateAssessmentFrameworkControlSet
1043
1043
 
@@ -1368,7 +1368,7 @@ module Aws::AuditManager
1368
1368
  # data as a hash:
1369
1369
  #
1370
1370
  # {
1371
- # name: "ControlSetName",
1371
+ # name: "ControlSetName", # required
1372
1372
  # controls: [
1373
1373
  # {
1374
1374
  # id: "UUID",
@@ -1403,7 +1403,7 @@ module Aws::AuditManager
1403
1403
  # compliance_type: "ComplianceType",
1404
1404
  # control_sets: [ # required
1405
1405
  # {
1406
- # name: "ControlSetName",
1406
+ # name: "ControlSetName", # required
1407
1407
  # controls: [
1408
1408
  # {
1409
1409
  # id: "UUID",
@@ -2153,7 +2153,7 @@ module Aws::AuditManager
2153
2153
  # @return [String]
2154
2154
  #
2155
2155
  # @!attribute [rw] assessment_report_selection
2156
- # Specifies whether the evidence is inclded in the assessment report.
2156
+ # Specifies whether the evidence is included in the assessment report.
2157
2157
  # @return [String]
2158
2158
  #
2159
2159
  # @see http://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/Evidence AWS API Documentation
@@ -3770,7 +3770,7 @@ module Aws::AuditManager
3770
3770
  #
3771
3771
  # {
3772
3772
  # id: "ControlSetName",
3773
- # name: "ControlSetName",
3773
+ # name: "ControlSetName", # required
3774
3774
  # controls: [
3775
3775
  # {
3776
3776
  # id: "UUID",
@@ -3811,7 +3811,7 @@ module Aws::AuditManager
3811
3811
  # control_sets: [ # required
3812
3812
  # {
3813
3813
  # id: "ControlSetName",
3814
- # name: "ControlSetName",
3814
+ # name: "ControlSetName", # required
3815
3815
  # controls: [
3816
3816
  # {
3817
3817
  # id: "UUID",
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.6.0
4
+ version: 1.7.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-04-27 00:00:00.000000000 Z
11
+ date: 2021-05-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core