aws-sdk-storagegateway 1.110.0 → 1.112.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 +39 -19
- data/lib/aws-sdk-storagegateway/client_api.rb +2 -2
- data/lib/aws-sdk-storagegateway/types.rb +19 -8
- data/lib/aws-sdk-storagegateway.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 000bdda2eed0d1b37a681e86f38ed9c78765f3f730f05d8ded3b9b698f62e355
|
4
|
+
data.tar.gz: a081c9ff7caf0d9747f4e5ebfbb19a710dfc13e73c5c9579b9b6b0fbbf3324fc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 38aa06b889b24715d9b1a592656ff17ac88220d1073e916c115bd58fbe497d348d4f64440e1b0b491bd9e9f306935f3fab8698069cd78b182900e242bdfce232
|
7
|
+
data.tar.gz: 1a2101fa202f3c0ae4ee9a0201a90a2dea6faa07c49f5d6f7b5d9e471f7f22d466f9de944fb60336c22a666043692796c822d098477d2ef9e22dbe6c9e92a9f7
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.112.0 (2025-07-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.111.0 (2025-06-25)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds IPv6 support to the Storage Gateway APIs. APIs that previously only accept or return IPv4 address will now accept or return both IPv4 and IPv6 addresses.
|
13
|
+
|
4
14
|
1.110.0 (2025-06-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.112.0
|
@@ -95,7 +95,7 @@ module Aws::StorageGateway
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::StorageGateway
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::StorageGateway
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::StorageGateway
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -374,7 +384,7 @@ module Aws::StorageGateway
|
|
374
384
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
375
385
|
#
|
376
386
|
# @option options [Aws::TokenProvider] :token_provider
|
377
|
-
#
|
387
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
378
388
|
# following classes:
|
379
389
|
#
|
380
390
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -1069,7 +1079,7 @@ module Aws::StorageGateway
|
|
1069
1079
|
#
|
1070
1080
|
# @option params [required, String] :network_interface_id
|
1071
1081
|
# The network interface of the gateway on which to expose the iSCSI
|
1072
|
-
# target.
|
1082
|
+
# target. Accepts IPv4 and IPv6 addresses. Use
|
1073
1083
|
# DescribeGatewayInformation to get a list of the network interfaces
|
1074
1084
|
# available on a gateway.
|
1075
1085
|
#
|
@@ -1307,7 +1317,7 @@ module Aws::StorageGateway
|
|
1307
1317
|
#
|
1308
1318
|
# @option params [required, String] :network_interface_id
|
1309
1319
|
# The network interface of the gateway on which to expose the iSCSI
|
1310
|
-
# target.
|
1320
|
+
# target. Accepts IPv4 and IPv6 addresses. Use
|
1311
1321
|
# DescribeGatewayInformation to get a list of the network interfaces
|
1312
1322
|
# available on a gateway.
|
1313
1323
|
#
|
@@ -1527,7 +1537,8 @@ module Aws::StorageGateway
|
|
1527
1537
|
#
|
1528
1538
|
# @option params [Array<String>] :client_list
|
1529
1539
|
# The list of clients that are allowed to access the S3 File Gateway.
|
1530
|
-
# The list must contain either valid
|
1540
|
+
# The list must contain either valid IPv4/IPv6 addresses or valid CIDR
|
1541
|
+
# blocks.
|
1531
1542
|
#
|
1532
1543
|
# @option params [String] :squash
|
1533
1544
|
# A value that maps a user to anonymous user.
|
@@ -1665,7 +1676,7 @@ module Aws::StorageGateway
|
|
1665
1676
|
# location_arn: "LocationARN", # required
|
1666
1677
|
# default_storage_class: "StorageClass",
|
1667
1678
|
# object_acl: "private", # accepts private, public-read, public-read-write, authenticated-read, bucket-owner-read, bucket-owner-full-control, aws-exec-read
|
1668
|
-
# client_list: ["
|
1679
|
+
# client_list: ["Ipv4OrIpv6AddressCIDR"],
|
1669
1680
|
# squash: "Squash",
|
1670
1681
|
# read_only: false,
|
1671
1682
|
# guess_mime_type_enabled: false,
|
@@ -2309,7 +2320,7 @@ module Aws::StorageGateway
|
|
2309
2320
|
#
|
2310
2321
|
# @option params [required, String] :network_interface_id
|
2311
2322
|
# The network interface of the gateway on which to expose the iSCSI
|
2312
|
-
# target.
|
2323
|
+
# target. Accepts IPv4 and IPv6 addresses. Use
|
2313
2324
|
# DescribeGatewayInformation to get a list of the network interfaces
|
2314
2325
|
# available on a gateway.
|
2315
2326
|
#
|
@@ -5032,10 +5043,17 @@ module Aws::StorageGateway
|
|
5032
5043
|
# domain.
|
5033
5044
|
#
|
5034
5045
|
# @option params [Array<String>] :domain_controllers
|
5035
|
-
# List of
|
5046
|
+
# List of IP addresses, NetBIOS names, or host names of your domain
|
5036
5047
|
# server. If you need to specify the port number include it after the
|
5037
5048
|
# colon (“:”). For example, `mydc.mydomain.com:389`.
|
5038
5049
|
#
|
5050
|
+
# <note markdown="1"> S3 File Gateway supports IPv6 addresses in addition to IPv4 and other
|
5051
|
+
# existing formats.
|
5052
|
+
#
|
5053
|
+
# FSx File Gateway does not support IPv6.
|
5054
|
+
#
|
5055
|
+
# </note>
|
5056
|
+
#
|
5039
5057
|
# @option params [Integer] :timeout_in_seconds
|
5040
5058
|
# Specifies the time in seconds, in which the `JoinDomain` operation
|
5041
5059
|
# must complete. The default is 20 seconds.
|
@@ -6458,8 +6476,9 @@ module Aws::StorageGateway
|
|
6458
6476
|
# The following requirements must be met to successfully generate a
|
6459
6477
|
# cache report:
|
6460
6478
|
#
|
6461
|
-
# * You must have
|
6462
|
-
#
|
6479
|
+
# * You must have `s3:PutObject` and `s3:AbortMultipartUpload`
|
6480
|
+
# permissions for the Amazon S3 bucket where you want to store the
|
6481
|
+
# cache report.
|
6463
6482
|
#
|
6464
6483
|
# * No other cache reports can currently be in-progress for the
|
6465
6484
|
# specified file share.
|
@@ -7274,7 +7293,8 @@ module Aws::StorageGateway
|
|
7274
7293
|
#
|
7275
7294
|
# @option params [Array<String>] :client_list
|
7276
7295
|
# The list of clients that are allowed to access the S3 File Gateway.
|
7277
|
-
# The list must contain either valid
|
7296
|
+
# The list must contain either valid IPv4/IPv6 addresses or valid CIDR
|
7297
|
+
# blocks.
|
7278
7298
|
#
|
7279
7299
|
# @option params [String] :squash
|
7280
7300
|
# The user mapped to anonymous user.
|
@@ -7378,7 +7398,7 @@ module Aws::StorageGateway
|
|
7378
7398
|
# },
|
7379
7399
|
# default_storage_class: "StorageClass",
|
7380
7400
|
# object_acl: "private", # accepts private, public-read, public-read-write, authenticated-read, bucket-owner-read, bucket-owner-full-control, aws-exec-read
|
7381
|
-
# client_list: ["
|
7401
|
+
# client_list: ["Ipv4OrIpv6AddressCIDR"],
|
7382
7402
|
# squash: "Squash",
|
7383
7403
|
# read_only: false,
|
7384
7404
|
# guess_mime_type_enabled: false,
|
@@ -7969,7 +7989,7 @@ module Aws::StorageGateway
|
|
7969
7989
|
tracer: tracer
|
7970
7990
|
)
|
7971
7991
|
context[:gem_name] = 'aws-sdk-storagegateway'
|
7972
|
-
context[:gem_version] = '1.
|
7992
|
+
context[:gem_version] = '1.112.0'
|
7973
7993
|
Seahorse::Client::Request.new(handlers, context)
|
7974
7994
|
end
|
7975
7995
|
|
@@ -228,12 +228,12 @@ module Aws::StorageGateway
|
|
228
228
|
Hosts = Shapes::ListShape.new(name: 'Hosts')
|
229
229
|
HourOfDay = Shapes::IntegerShape.new(name: 'HourOfDay')
|
230
230
|
IPV4Address = Shapes::StringShape.new(name: 'IPV4Address')
|
231
|
-
IPV4AddressCIDR = Shapes::StringShape.new(name: 'IPV4AddressCIDR')
|
232
231
|
Initiator = Shapes::StringShape.new(name: 'Initiator')
|
233
232
|
Initiators = Shapes::ListShape.new(name: 'Initiators')
|
234
233
|
InternalServerError = Shapes::StructureShape.new(name: 'InternalServerError')
|
235
234
|
InvalidGatewayRequestException = Shapes::StructureShape.new(name: 'InvalidGatewayRequestException')
|
236
235
|
IpAddressList = Shapes::ListShape.new(name: 'IpAddressList')
|
236
|
+
Ipv4OrIpv6AddressCIDR = Shapes::StringShape.new(name: 'Ipv4OrIpv6AddressCIDR')
|
237
237
|
IqnName = Shapes::StringShape.new(name: 'IqnName')
|
238
238
|
JoinDomainInput = Shapes::StructureShape.new(name: 'JoinDomainInput')
|
239
239
|
JoinDomainOutput = Shapes::StructureShape.new(name: 'JoinDomainOutput')
|
@@ -1071,7 +1071,7 @@ module Aws::StorageGateway
|
|
1071
1071
|
|
1072
1072
|
FileShareARNList.member = Shapes::ShapeRef.new(shape: FileShareARN)
|
1073
1073
|
|
1074
|
-
FileShareClientList.member = Shapes::ShapeRef.new(shape:
|
1074
|
+
FileShareClientList.member = Shapes::ShapeRef.new(shape: Ipv4OrIpv6AddressCIDR)
|
1075
1075
|
|
1076
1076
|
FileShareInfo.add_member(:file_share_type, Shapes::ShapeRef.new(shape: FileShareType, location_name: "FileShareType"))
|
1077
1077
|
FileShareInfo.add_member(:file_share_arn, Shapes::ShapeRef.new(shape: FileShareARN, location_name: "FileShareARN"))
|
@@ -470,7 +470,7 @@ module Aws::StorageGateway
|
|
470
470
|
#
|
471
471
|
# @!attribute [rw] network_interface_id
|
472
472
|
# The network interface of the gateway on which to expose the iSCSI
|
473
|
-
# target.
|
473
|
+
# target. Accepts IPv4 and IPv6 addresses. Use
|
474
474
|
# DescribeGatewayInformation to get a list of the network interfaces
|
475
475
|
# available on a gateway.
|
476
476
|
#
|
@@ -1113,7 +1113,7 @@ module Aws::StorageGateway
|
|
1113
1113
|
#
|
1114
1114
|
# @!attribute [rw] network_interface_id
|
1115
1115
|
# The network interface of the gateway on which to expose the iSCSI
|
1116
|
-
# target.
|
1116
|
+
# target. Accepts IPv4 and IPv6 addresses. Use
|
1117
1117
|
# DescribeGatewayInformation to get a list of the network interfaces
|
1118
1118
|
# available on a gateway.
|
1119
1119
|
#
|
@@ -1304,7 +1304,7 @@ module Aws::StorageGateway
|
|
1304
1304
|
#
|
1305
1305
|
# @!attribute [rw] client_list
|
1306
1306
|
# The list of clients that are allowed to access the S3 File Gateway.
|
1307
|
-
# The list must contain either valid
|
1307
|
+
# The list must contain either valid IPv4/IPv6 addresses or valid CIDR
|
1308
1308
|
# blocks.
|
1309
1309
|
# @return [Array<String>]
|
1310
1310
|
#
|
@@ -2011,7 +2011,7 @@ module Aws::StorageGateway
|
|
2011
2011
|
#
|
2012
2012
|
# @!attribute [rw] network_interface_id
|
2013
2013
|
# The network interface of the gateway on which to expose the iSCSI
|
2014
|
-
# target.
|
2014
|
+
# target. Accepts IPv4 and IPv6 addresses. Use
|
2015
2015
|
# DescribeGatewayInformation to get a list of the network interfaces
|
2016
2016
|
# available on a gateway.
|
2017
2017
|
#
|
@@ -4563,9 +4563,16 @@ module Aws::StorageGateway
|
|
4563
4563
|
# @return [String]
|
4564
4564
|
#
|
4565
4565
|
# @!attribute [rw] domain_controllers
|
4566
|
-
# List of
|
4566
|
+
# List of IP addresses, NetBIOS names, or host names of your domain
|
4567
4567
|
# server. If you need to specify the port number include it after the
|
4568
4568
|
# colon (“:”). For example, `mydc.mydomain.com:389`.
|
4569
|
+
#
|
4570
|
+
# <note markdown="1"> S3 File Gateway supports IPv6 addresses in addition to IPv4 and
|
4571
|
+
# other existing formats.
|
4572
|
+
#
|
4573
|
+
# FSx File Gateway does not support IPv6.
|
4574
|
+
#
|
4575
|
+
# </note>
|
4569
4576
|
# @return [Array<String>]
|
4570
4577
|
#
|
4571
4578
|
# @!attribute [rw] timeout_in_seconds
|
@@ -5379,7 +5386,7 @@ module Aws::StorageGateway
|
|
5379
5386
|
#
|
5380
5387
|
# @!attribute [rw] client_list
|
5381
5388
|
# The list of clients that are allowed to access the S3 File Gateway.
|
5382
|
-
# The list must contain either valid
|
5389
|
+
# The list must contain either valid IPv4/IPv6 addresses or valid CIDR
|
5383
5390
|
# blocks.
|
5384
5391
|
# @return [Array<String>]
|
5385
5392
|
#
|
@@ -5549,7 +5556,11 @@ module Aws::StorageGateway
|
|
5549
5556
|
#
|
5550
5557
|
# @!attribute [rw] ipv_6_address
|
5551
5558
|
# The Internet Protocol version 6 (IPv6) address of the interface.
|
5552
|
-
#
|
5559
|
+
#
|
5560
|
+
# <note markdown="1"> This element returns IPv6 addresses for all gateway types except FSx
|
5561
|
+
# File Gateway.
|
5562
|
+
#
|
5563
|
+
# </note>
|
5553
5564
|
# @return [String]
|
5554
5565
|
#
|
5555
5566
|
# @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/NetworkInterface AWS API Documentation
|
@@ -7456,7 +7467,7 @@ module Aws::StorageGateway
|
|
7456
7467
|
#
|
7457
7468
|
# @!attribute [rw] client_list
|
7458
7469
|
# The list of clients that are allowed to access the S3 File Gateway.
|
7459
|
-
# The list must contain either valid
|
7470
|
+
# The list must contain either valid IPv4/IPv6 addresses or valid CIDR
|
7460
7471
|
# blocks.
|
7461
7472
|
# @return [Array<String>]
|
7462
7473
|
#
|
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.112.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.227.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|