aws-sdk-storagegateway 1.100.0 → 1.102.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-storagegateway/client.rb +32 -9
- data/lib/aws-sdk-storagegateway/types.rb +12 -12
- data/lib/aws-sdk-storagegateway.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/resource.rbs +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ced522a11f471d98be9cc3e04534d959dfb6026d857bb7896b805ed08a5bc542
|
4
|
+
data.tar.gz: 96015ee210b7e13780a84e57b315b4634b2d3f08cdd6fd3d6cf14e023ee8f20a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5b9ded2ef5425690f1996d1cfe6b559907a13d339a081cb358cbfedacc3ad6ec9e62068dd7012d613b5546af008e7128acde655c004e444b80f31de4216ff574
|
7
|
+
data.tar.gz: 2b2f99df43f182acb6a0babb28fbac1ed436c0750e54ffd6ae01cd3d61d6ca9577cfcc7f128fa9765ca4bb52483c124dee964c99525397b7e749361e12570688
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.102.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.101.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.100.0 (2024-10-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.102.0
|
@@ -257,11 +257,34 @@ module Aws::StorageGateway
|
|
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.
|
@@ -1559,11 +1582,11 @@ module Aws::StorageGateway
|
|
1559
1582
|
# The following example sets `NotificationPolicy` on with
|
1560
1583
|
# `SettlingTimeInSeconds` set to 60.
|
1561
1584
|
#
|
1562
|
-
#
|
1585
|
+
# `{"Upload": {"SettlingTimeInSeconds": 60}}`
|
1563
1586
|
#
|
1564
1587
|
# The following example sets `NotificationPolicy` off.
|
1565
1588
|
#
|
1566
|
-
#
|
1589
|
+
# `{}`
|
1567
1590
|
#
|
1568
1591
|
# @option params [String] :vpc_endpoint_dns_name
|
1569
1592
|
# Specifies the DNS name for the VPC endpoint that the NFS file share
|
@@ -1897,11 +1920,11 @@ module Aws::StorageGateway
|
|
1897
1920
|
# The following example sets `NotificationPolicy` on with
|
1898
1921
|
# `SettlingTimeInSeconds` set to 60.
|
1899
1922
|
#
|
1900
|
-
#
|
1923
|
+
# `{"Upload": {"SettlingTimeInSeconds": 60}}`
|
1901
1924
|
#
|
1902
1925
|
# The following example sets `NotificationPolicy` off.
|
1903
1926
|
#
|
1904
|
-
#
|
1927
|
+
# `{}`
|
1905
1928
|
#
|
1906
1929
|
# @option params [String] :vpc_endpoint_dns_name
|
1907
1930
|
# Specifies the DNS name for the VPC endpoint that the SMB file share
|
@@ -6961,11 +6984,11 @@ module Aws::StorageGateway
|
|
6961
6984
|
# The following example sets `NotificationPolicy` on with
|
6962
6985
|
# `SettlingTimeInSeconds` set to 60.
|
6963
6986
|
#
|
6964
|
-
#
|
6987
|
+
# `{"Upload": {"SettlingTimeInSeconds": 60}}`
|
6965
6988
|
#
|
6966
6989
|
# The following example sets `NotificationPolicy` off.
|
6967
6990
|
#
|
6968
|
-
#
|
6991
|
+
# `{}`
|
6969
6992
|
#
|
6970
6993
|
# @option params [String] :audit_destination_arn
|
6971
6994
|
# The Amazon Resource Name (ARN) of the storage used for audit logs.
|
@@ -7212,11 +7235,11 @@ module Aws::StorageGateway
|
|
7212
7235
|
# The following example sets `NotificationPolicy` on with
|
7213
7236
|
# `SettlingTimeInSeconds` set to 60.
|
7214
7237
|
#
|
7215
|
-
#
|
7238
|
+
# `{"Upload": {"SettlingTimeInSeconds": 60}}`
|
7216
7239
|
#
|
7217
7240
|
# The following example sets `NotificationPolicy` off.
|
7218
7241
|
#
|
7219
|
-
#
|
7242
|
+
# `{}`
|
7220
7243
|
#
|
7221
7244
|
# @option params [Boolean] :oplocks_enabled
|
7222
7245
|
# Specifies whether opportunistic locking is enabled for the SMB file
|
@@ -7580,7 +7603,7 @@ module Aws::StorageGateway
|
|
7580
7603
|
tracer: tracer
|
7581
7604
|
)
|
7582
7605
|
context[:gem_name] = 'aws-sdk-storagegateway'
|
7583
|
-
context[:gem_version] = '1.
|
7606
|
+
context[:gem_version] = '1.102.0'
|
7584
7607
|
Seahorse::Client::Request.new(handlers, context)
|
7585
7608
|
end
|
7586
7609
|
|
@@ -1261,11 +1261,11 @@ module Aws::StorageGateway
|
|
1261
1261
|
# The following example sets `NotificationPolicy` on with
|
1262
1262
|
# `SettlingTimeInSeconds` set to 60.
|
1263
1263
|
#
|
1264
|
-
#
|
1264
|
+
# `{"Upload": {"SettlingTimeInSeconds": 60}}`
|
1265
1265
|
#
|
1266
1266
|
# The following example sets `NotificationPolicy` off.
|
1267
1267
|
#
|
1268
|
-
#
|
1268
|
+
# `{}`
|
1269
1269
|
# @return [String]
|
1270
1270
|
#
|
1271
1271
|
# @!attribute [rw] vpc_endpoint_dns_name
|
@@ -1596,11 +1596,11 @@ module Aws::StorageGateway
|
|
1596
1596
|
# The following example sets `NotificationPolicy` on with
|
1597
1597
|
# `SettlingTimeInSeconds` set to 60.
|
1598
1598
|
#
|
1599
|
-
#
|
1599
|
+
# `{"Upload": {"SettlingTimeInSeconds": 60}}`
|
1600
1600
|
#
|
1601
1601
|
# The following example sets `NotificationPolicy` off.
|
1602
1602
|
#
|
1603
|
-
#
|
1603
|
+
# `{}`
|
1604
1604
|
# @return [String]
|
1605
1605
|
#
|
1606
1606
|
# @!attribute [rw] vpc_endpoint_dns_name
|
@@ -5175,11 +5175,11 @@ module Aws::StorageGateway
|
|
5175
5175
|
# The following example sets `NotificationPolicy` on with
|
5176
5176
|
# `SettlingTimeInSeconds` set to 60.
|
5177
5177
|
#
|
5178
|
-
#
|
5178
|
+
# `{"Upload": {"SettlingTimeInSeconds": 60}}`
|
5179
5179
|
#
|
5180
5180
|
# The following example sets `NotificationPolicy` off.
|
5181
5181
|
#
|
5182
|
-
#
|
5182
|
+
# `{}`
|
5183
5183
|
# @return [String]
|
5184
5184
|
#
|
5185
5185
|
# @!attribute [rw] vpc_endpoint_dns_name
|
@@ -5813,11 +5813,11 @@ module Aws::StorageGateway
|
|
5813
5813
|
# The following example sets `NotificationPolicy` on with
|
5814
5814
|
# `SettlingTimeInSeconds` set to 60.
|
5815
5815
|
#
|
5816
|
-
#
|
5816
|
+
# `{"Upload": {"SettlingTimeInSeconds": 60}}`
|
5817
5817
|
#
|
5818
5818
|
# The following example sets `NotificationPolicy` off.
|
5819
5819
|
#
|
5820
|
-
#
|
5820
|
+
# `{}`
|
5821
5821
|
# @return [String]
|
5822
5822
|
#
|
5823
5823
|
# @!attribute [rw] vpc_endpoint_dns_name
|
@@ -7163,11 +7163,11 @@ module Aws::StorageGateway
|
|
7163
7163
|
# The following example sets `NotificationPolicy` on with
|
7164
7164
|
# `SettlingTimeInSeconds` set to 60.
|
7165
7165
|
#
|
7166
|
-
#
|
7166
|
+
# `{"Upload": {"SettlingTimeInSeconds": 60}}`
|
7167
7167
|
#
|
7168
7168
|
# The following example sets `NotificationPolicy` off.
|
7169
7169
|
#
|
7170
|
-
#
|
7170
|
+
# `{}`
|
7171
7171
|
# @return [String]
|
7172
7172
|
#
|
7173
7173
|
# @!attribute [rw] audit_destination_arn
|
@@ -7406,11 +7406,11 @@ module Aws::StorageGateway
|
|
7406
7406
|
# The following example sets `NotificationPolicy` on with
|
7407
7407
|
# `SettlingTimeInSeconds` set to 60.
|
7408
7408
|
#
|
7409
|
-
#
|
7409
|
+
# `{"Upload": {"SettlingTimeInSeconds": 60}}`
|
7410
7410
|
#
|
7411
7411
|
# The following example sets `NotificationPolicy` off.
|
7412
7412
|
#
|
7413
|
-
#
|
7413
|
+
# `{}`
|
7414
7414
|
# @return [String]
|
7415
7415
|
#
|
7416
7416
|
# @!attribute [rw] oplocks_enabled
|
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-storagegateway
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.102.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:
|
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.
|
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.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|