aws-sdk-opsworks 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a5d344ac3f5b9f808ffd8282bf736564941683db4f1ed786f58949a11c7cff81
4
- data.tar.gz: 336240fe2469af0d37ef549766d4b139c6dbe6e06fce18f3ab8f50b8e6ecd276
3
+ metadata.gz: 43662aff0b8f13317b97e99ab7e35b4d98847e324a01ac1743aa3a35bef76115
4
+ data.tar.gz: 78a24ff8d40b6abd8aa67d974b538190c8082538e73d7a2e4ea4670c96f11924
5
5
  SHA512:
6
- metadata.gz: 1ff3bd950d09771774166365da359e724624ba276822d821736d5eb91c436abdf8061ab83e05713d7de9529d6ff3399d144eaa4a5fd1645e96cd904e84e08a2f
7
- data.tar.gz: 4b220f083cbc838fa39a89c3e5b0f65abf2db4858c49b8887a989524bfad95aa041f264f257d2cd1f483abf8c558c94f985e85079fd4ed9d62829e03fa5b8bed
6
+ metadata.gz: 2eb547a2034e4aa1572841e4f220e2ebb4117e1866482e59d82c0ec46920d09dcb8d4f709882cb8512d0a5ca0743126554d2e6d43b2882a67ab382fd458f0558
7
+ data.tar.gz: 70ffc3fa328bffd57394b4cb5d8ce73be68009f46fba81a50df75e205fd8ee6e6f1ab1940809583718b42c561b268c974326cbc9bda8d9fb5f7c3c6a0cc576d4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.70.0 (2025-01-15)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.69.0 (2024-11-06)
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 (2024-10-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.68.0
1
+ 1.70.0
@@ -257,11 +257,34 @@ module Aws::OpsWorks
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -820,7 +843,7 @@ module Aws::OpsWorks
820
843
  # override the corresponding default stack configuration JSON values.
821
844
  # The string should be in the following format:
822
845
  #
823
- # `"\{"key1": "value1", "key2": "value2",...\}"`
846
+ # `"{"key1": "value1", "key2": "value2",...}"`
824
847
  #
825
848
  # For more information about custom JSON, see [Use Custom JSON to Modify
826
849
  # the Stack Configuration Attributes][1]
@@ -1171,7 +1194,7 @@ module Aws::OpsWorks
1171
1194
  # parameter to override some corresponding default stack configuration
1172
1195
  # JSON values. The string should be in the following format:
1173
1196
  #
1174
- # `"\{"key1": "value1", "key2": "value2",...\}"`
1197
+ # `"{"key1": "value1", "key2": "value2",...}"`
1175
1198
  #
1176
1199
  # For more information about custom JSON, see [Use Custom JSON to Modify
1177
1200
  # the Stack Configuration Attributes][1] and [Overriding Attributes With
@@ -1872,7 +1895,7 @@ module Aws::OpsWorks
1872
1895
  # values or to pass data to recipes. The string should be in the
1873
1896
  # following format:
1874
1897
  #
1875
- # `"\{"key1": "value1", "key2": "value2",...\}"`
1898
+ # `"{"key1": "value1", "key2": "value2",...}"`
1876
1899
  #
1877
1900
  # For more information about custom JSON, see [Use Custom JSON to Modify
1878
1901
  # the Stack Configuration Attributes][1].
@@ -5517,7 +5540,7 @@ module Aws::OpsWorks
5517
5540
  # override the corresponding default stack configuration JSON values or
5518
5541
  # to pass data to recipes. The string should be in the following format:
5519
5542
  #
5520
- # `"\{"key1": "value1", "key2": "value2",...\}"`
5543
+ # `"{"key1": "value1", "key2": "value2",...}"`
5521
5544
  #
5522
5545
  # For more information about custom JSON, see [Use Custom JSON to Modify
5523
5546
  # the Stack Configuration Attributes][1].
@@ -5790,7 +5813,7 @@ module Aws::OpsWorks
5790
5813
  tracer: tracer
5791
5814
  )
5792
5815
  context[:gem_name] = 'aws-sdk-opsworks'
5793
- context[:gem_version] = '1.68.0'
5816
+ context[:gem_version] = '1.70.0'
5794
5817
  Seahorse::Client::Request.new(handlers, context)
5795
5818
  end
5796
5819
 
@@ -248,7 +248,7 @@ module Aws::OpsWorks
248
248
  # values or to pass data to recipes. The string should be in the
249
249
  # following format:
250
250
  #
251
- # `"\{"key1": "value1", "key2": "value2",...\}"`
251
+ # `"{"key1": "value1", "key2": "value2",...}"`
252
252
  #
253
253
  # For more information about custom JSON, see [Use Custom JSON to Modify
254
254
  # the Stack Configuration Attributes][1].
@@ -130,7 +130,7 @@ module Aws::OpsWorks
130
130
  # values or to pass data to recipes. The string should be in the
131
131
  # following format:
132
132
  #
133
- # `"\{"key1": "value1", "key2": "value2",...\}"`
133
+ # `"{"key1": "value1", "key2": "value2",...}"`
134
134
  #
135
135
  # For more information on custom JSON, see [Use Custom JSON to Modify
136
136
  # the Stack Configuration Attributes][1].
@@ -528,7 +528,7 @@ module Aws::OpsWorks
528
528
  # override the corresponding default stack configuration JSON values.
529
529
  # The string should be in the following format:
530
530
  #
531
- # `"\{"key1": "value1", "key2": "value2",...\}"`
531
+ # `"{"key1": "value1", "key2": "value2",...}"`
532
532
  #
533
533
  # For more information about custom JSON, see [Use Custom JSON to
534
534
  # Modify the Stack Configuration Attributes][1]
@@ -1056,7 +1056,7 @@ module Aws::OpsWorks
1056
1056
  # parameter to override some corresponding default stack configuration
1057
1057
  # JSON values. The string should be in the following format:
1058
1058
  #
1059
- # `"\{"key1": "value1", "key2": "value2",...\}"`
1059
+ # `"{"key1": "value1", "key2": "value2",...}"`
1060
1060
  #
1061
1061
  # For more information about custom JSON, see [Use Custom JSON to
1062
1062
  # Modify the Stack Configuration Attributes][1] and [Overriding
@@ -1703,7 +1703,7 @@ module Aws::OpsWorks
1703
1703
  # values or to pass data to recipes. The string should be in the
1704
1704
  # following format:
1705
1705
  #
1706
- # `"\{"key1": "value1", "key2": "value2",...\}"`
1706
+ # `"{"key1": "value1", "key2": "value2",...}"`
1707
1707
  #
1708
1708
  # For more information about custom JSON, see [Use Custom JSON to
1709
1709
  # Modify the Stack Configuration Attributes][1].
@@ -2067,7 +2067,7 @@ module Aws::OpsWorks
2067
2067
  # values for stack or to pass data to recipes. The string should be in
2068
2068
  # the following format:
2069
2069
  #
2070
- # `"\{"key1": "value1", "key2": "value2",...\}"`
2070
+ # `"{"key1": "value1", "key2": "value2",...}"`
2071
2071
  #
2072
2072
  # For more information on custom JSON, see [Use Custom JSON to Modify
2073
2073
  # the Stack Configuration Attributes][1].
@@ -2111,7 +2111,7 @@ module Aws::OpsWorks
2111
2111
  # recipes, set an `Args` parameter named `recipes` to the list of
2112
2112
  # recipes to be executed. For example, to execute
2113
2113
  # `phpapp::appsetup`, set `Args` to
2114
- # `\{"recipes":["phpapp::appsetup"]\}`.
2114
+ # `{"recipes":["phpapp::appsetup"]}`.
2115
2115
  #
2116
2116
  # * `install_dependencies`: Install the stack's dependencies.
2117
2117
  #
@@ -2129,8 +2129,8 @@ module Aws::OpsWorks
2129
2129
  #
2130
2130
  # * `deploy`: Deploy an app. Ruby on Rails apps have an optional
2131
2131
  # `Args` parameter named `migrate`. Set `Args` to
2132
- # \\\{"migrate":\["true"\]\\} to migrate the database. The
2133
- # default setting is \\\{"migrate":\["false"\]\\}.
2132
+ # \{"migrate":\["true"\]} to migrate the database. The default
2133
+ # setting is \{"migrate":\["false"\]}.
2134
2134
  #
2135
2135
  # * `rollback` Roll the app back to the previous version. When you
2136
2136
  # update an app, OpsWorks Stacks stores the previous version, up to
@@ -2150,8 +2150,8 @@ module Aws::OpsWorks
2150
2150
  # The arguments of those commands that take arguments. It should be
2151
2151
  # set to a JSON object with the following format:
2152
2152
  #
2153
- # `\{"arg_name1" : ["value1", "value2", ...], "arg_name2" : ["value1",
2154
- # "value2", ...], ...\}`
2153
+ # `{"arg_name1" : ["value1", "value2", ...], "arg_name2" : ["value1",
2154
+ # "value2", ...], ...}`
2155
2155
  #
2156
2156
  # The `update_dependencies` command takes two arguments:
2157
2157
  #
@@ -2167,8 +2167,8 @@ module Aws::OpsWorks
2167
2167
  # For example, to upgrade an instance to Amazon Linux 2018.03, set
2168
2168
  # `Args` to the following.
2169
2169
  #
2170
- # ` \{ "upgrade_os_to":["Amazon Linux 2018.03"],
2171
- # "allow_reboot":["true"] \} `
2170
+ # ` { "upgrade_os_to":["Amazon Linux 2018.03"],
2171
+ # "allow_reboot":["true"] } `
2172
2172
  # @return [Hash<String,Array<String>>]
2173
2173
  #
2174
2174
  # @see http://docs.aws.amazon.com/goto/WebAPI/opsworks-2013-02-18/DeploymentCommand AWS API Documentation
@@ -4947,7 +4947,7 @@ module Aws::OpsWorks
4947
4947
  # configuration attribute values or to pass data to recipes. The
4948
4948
  # string should be in the following format:
4949
4949
  #
4950
- # `"\{"key1": "value1", "key2": "value2",...\}"`
4950
+ # `"{"key1": "value1", "key2": "value2",...}"`
4951
4951
  #
4952
4952
  # For more information on custom JSON, see [Use Custom JSON to Modify
4953
4953
  # the Stack Configuration Attributes][1].
@@ -5855,7 +5855,7 @@ module Aws::OpsWorks
5855
5855
  # or to pass data to recipes. The string should be in the following
5856
5856
  # format:
5857
5857
  #
5858
- # `"\{"key1": "value1", "key2": "value2",...\}"`
5858
+ # `"{"key1": "value1", "key2": "value2",...}"`
5859
5859
  #
5860
5860
  # For more information about custom JSON, see [Use Custom JSON to
5861
5861
  # Modify the Stack Configuration Attributes][1].
@@ -6326,7 +6326,7 @@ module Aws::OpsWorks
6326
6326
  # four hours, from UTC 1200 - 1600. It will be off for the remainder of
6327
6327
  # the day.
6328
6328
  #
6329
- # ` \{ "12":"on", "13":"on", "14":"on", "15":"on" \} `
6329
+ # ` { "12":"on", "13":"on", "14":"on", "15":"on" } `
6330
6330
  #
6331
6331
  # @!attribute [rw] monday
6332
6332
  # The schedule for Monday.
@@ -58,7 +58,7 @@ module Aws::OpsWorks
58
58
  autoload :Stack, 'aws-sdk-opsworks/stack'
59
59
  autoload :StackSummary, 'aws-sdk-opsworks/stack_summary'
60
60
 
61
- GEM_VERSION = '1.68.0'
61
+ GEM_VERSION = '1.70.0'
62
62
 
63
63
  end
64
64
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-opsworks
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.68.0
4
+ version: 1.70.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: 2024-10-18 00:00:00.000000000 Z
11
+ date: 2025-01-15 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.210.0
22
+ version: 3.216.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.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement