aws-sdk-auditmanager 1.16.0 → 1.20.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: 61b11dd2ff0b48a2198b4f452a28a1747fba4dcb0ea0e2822b2359aaf391a4cc
4
- data.tar.gz: 17235a8af9e927f6f25dc98c0dc584cf907e912bd3db04f9300c4e6fb5b72086
3
+ metadata.gz: 8a0a9a7796bc76a6701d056c15a15373c30f58d9d9b65bfe26ecdc38c1980a78
4
+ data.tar.gz: b83b63ed136463c080b5ae844041d44ada3cd90fa7ae76ca06fbcd652ed87cb4
5
5
  SHA512:
6
- metadata.gz: 456e6c46c1b8c1d9e9a08f026330c0043f12ac4cd986777a13c8a4faeac8307ba86f8193648305ed312f4165355161b672f8c031797c2ba4503216051c469281
7
- data.tar.gz: 31d8dd4fdf6e6343526ca7fc9a4c953f4bd88fa5a67eaae6082fbaa086abc9b322565904b2a4f83f66a7c718bfa3183f6897c39716eddc38564cf63be4031d11
6
+ metadata.gz: 8d2c2a0405f04fb4c5ab0e5b2001b6c0f2caabb2ef6ed7671005eb6676caa097a2b84df798ebaca6b5ef9330bd18f658b5b97fc0ceb30ceccc0acf1ff84bc857
7
+ data.tar.gz: 8c9e4d8f839756207df3e2234e91b7f6bedf14f6ac29a158334092687cc731298dae3a5da9ec14f624834341158d4cfc54d578a513663da960a56d890bde9eb7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.20.0 (2022-02-07)
5
+ ------------------
6
+
7
+ * 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.
8
+
9
+ 1.19.0 (2022-02-03)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.18.0 (2021-12-21)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.17.0 (2021-11-30)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.16.0 (2021-11-18)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.16.0
1
+ 1.20.0
@@ -27,6 +27,8 @@ 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/defaults_mode.rb'
31
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
30
32
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
33
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
32
34
 
@@ -73,6 +75,8 @@ module Aws::AuditManager
73
75
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
76
  add_plugin(Aws::Plugins::TransferEncoding)
75
77
  add_plugin(Aws::Plugins::HttpChecksum)
78
+ add_plugin(Aws::Plugins::DefaultsMode)
79
+ add_plugin(Aws::Plugins::RecursionDetection)
76
80
  add_plugin(Aws::Plugins::SignatureV4)
77
81
  add_plugin(Aws::Plugins::Protocols::RestJson)
78
82
 
@@ -119,7 +123,9 @@ module Aws::AuditManager
119
123
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
124
  # are very aggressive. Construct and pass an instance of
121
125
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
126
+ # enable retries and extended timeouts. Instance profile credential
127
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
128
+ # to true.
123
129
  #
124
130
  # @option options [required, String] :region
125
131
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +179,10 @@ module Aws::AuditManager
173
179
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
180
  # a clock skew correction and retry requests with skewed client clocks.
175
181
  #
182
+ # @option options [String] :defaults_mode ("legacy")
183
+ # See {Aws::DefaultsModeConfiguration} for a list of the
184
+ # accepted modes and the configuration defaults that are included.
185
+ #
176
186
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
187
  # Set to true to disable SDK automatically adding host prefix
178
188
  # to default service endpoint when available.
@@ -295,7 +305,7 @@ module Aws::AuditManager
295
305
  # seconds to wait when opening a HTTP session before raising a
296
306
  # `Timeout::Error`.
297
307
  #
298
- # @option options [Integer] :http_read_timeout (60) The default
308
+ # @option options [Float] :http_read_timeout (60) The default
299
309
  # number of seconds to wait for response data. This value can
300
310
  # safely be set per-request on the session.
301
311
  #
@@ -311,6 +321,9 @@ module Aws::AuditManager
311
321
  # disables this behaviour. This value can safely be set per
312
322
  # request on the session.
313
323
  #
324
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
325
+ # in seconds.
326
+ #
314
327
  # @option options [Boolean] :http_wire_trace (false) When `true`,
315
328
  # HTTP debug output will be sent to the `:logger`.
316
329
  #
@@ -777,7 +790,7 @@ module Aws::AuditManager
777
790
  # name: "ControlSetName", # required
778
791
  # controls: [
779
792
  # {
780
- # id: "UUID",
793
+ # id: "UUID", # required
781
794
  # },
782
795
  # ],
783
796
  # },
@@ -3103,9 +3116,9 @@ module Aws::AuditManager
3103
3116
  # {
3104
3117
  # id: "ControlSetName",
3105
3118
  # name: "ControlSetName", # required
3106
- # controls: [
3119
+ # controls: [ # required
3107
3120
  # {
3108
- # id: "UUID",
3121
+ # id: "UUID", # required
3109
3122
  # },
3110
3123
  # ],
3111
3124
  # },
@@ -3523,7 +3536,7 @@ module Aws::AuditManager
3523
3536
  params: params,
3524
3537
  config: config)
3525
3538
  context[:gem_name] = 'aws-sdk-auditmanager'
3526
- context[:gem_version] = '1.16.0'
3539
+ context[:gem_version] = '1.20.0'
3527
3540
  Seahorse::Client::Request.new(handlers, context)
3528
3541
  end
3529
3542
 
@@ -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.16.0'
51
+ GEM_VERSION = '1.20.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.16.0
4
+ version: 1.20.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-11-18 00:00:00.000000000 Z
11
+ date: 2022-02-07 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.122.0
22
+ version: 3.126.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.122.0
32
+ version: 3.126.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement