aws-sdk-storagegateway 1.109.0 → 1.111.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: 9d88afa64236b1bb5c98693208fece87275bb5bab19c078493a7107e803055d5
4
- data.tar.gz: 6a30bba756e5313378730cb9bbc6edf52683172aef6c9f5ce2c23e5003ce5600
3
+ metadata.gz: 9c914cacd78fd5d72d9e0cce33c03c4092fa935c281c7fbc185956d52316b616
4
+ data.tar.gz: ce60a20a7174a7b517109cecd40a5f4bbaa8419415292fd06e013ab7f8861c51
5
5
  SHA512:
6
- metadata.gz: 0051e096bf0422a4aa2947f0355dc12f7d692ad9f98230b66c42d27828bcc3e1e9880c5929387bdee8e7ca0ad1aa9932387705b6a9fa2cb8d758f1116698bbcc
7
- data.tar.gz: e983bfc6fd5e7b6c826b39cd7ba531318e6f32c838e7667797fb3c0a51e26682373ca5e0a76fa144f8bd63b123269388956fbf6dce593cc148bd33e223947d3d
6
+ metadata.gz: cadda09bc1caa398ea849dc70ea4003e20c178f4455027f8a5ae6a997377852362ff424c44228f0a0aa9e4ab0cba97c1789684eb97b12f830c242adb59bfaa8d
7
+ data.tar.gz: c2040203ba32cac7cacb2ccf88d3479ea43158e2dcb97aed5f9477fa4a58a692ee4e0926e444e19c595b9d9bbdd2ef1b029c379b56dac099e62916462e876da6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.111.0 (2025-06-25)
5
+ ------------------
6
+
7
+ * 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.
8
+
9
+ 1.110.0 (2025-06-02)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.109.0 (2025-05-12)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.109.0
1
+ 1.111.0
@@ -1069,7 +1069,7 @@ module Aws::StorageGateway
1069
1069
  #
1070
1070
  # @option params [required, String] :network_interface_id
1071
1071
  # The network interface of the gateway on which to expose the iSCSI
1072
- # target. Only IPv4 addresses are accepted. Use
1072
+ # target. Accepts IPv4 and IPv6 addresses. Use
1073
1073
  # DescribeGatewayInformation to get a list of the network interfaces
1074
1074
  # available on a gateway.
1075
1075
  #
@@ -1307,7 +1307,7 @@ module Aws::StorageGateway
1307
1307
  #
1308
1308
  # @option params [required, String] :network_interface_id
1309
1309
  # The network interface of the gateway on which to expose the iSCSI
1310
- # target. Only IPv4 addresses are accepted. Use
1310
+ # target. Accepts IPv4 and IPv6 addresses. Use
1311
1311
  # DescribeGatewayInformation to get a list of the network interfaces
1312
1312
  # available on a gateway.
1313
1313
  #
@@ -1527,7 +1527,8 @@ module Aws::StorageGateway
1527
1527
  #
1528
1528
  # @option params [Array<String>] :client_list
1529
1529
  # The list of clients that are allowed to access the S3 File Gateway.
1530
- # The list must contain either valid IP addresses or valid CIDR blocks.
1530
+ # The list must contain either valid IPv4/IPv6 addresses or valid CIDR
1531
+ # blocks.
1531
1532
  #
1532
1533
  # @option params [String] :squash
1533
1534
  # A value that maps a user to anonymous user.
@@ -1665,7 +1666,7 @@ module Aws::StorageGateway
1665
1666
  # location_arn: "LocationARN", # required
1666
1667
  # default_storage_class: "StorageClass",
1667
1668
  # 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: ["IPV4AddressCIDR"],
1669
+ # client_list: ["Ipv4OrIpv6AddressCIDR"],
1669
1670
  # squash: "Squash",
1670
1671
  # read_only: false,
1671
1672
  # guess_mime_type_enabled: false,
@@ -2309,7 +2310,7 @@ module Aws::StorageGateway
2309
2310
  #
2310
2311
  # @option params [required, String] :network_interface_id
2311
2312
  # The network interface of the gateway on which to expose the iSCSI
2312
- # target. Only IPv4 addresses are accepted. Use
2313
+ # target. Accepts IPv4 and IPv6 addresses. Use
2313
2314
  # DescribeGatewayInformation to get a list of the network interfaces
2314
2315
  # available on a gateway.
2315
2316
  #
@@ -5032,10 +5033,17 @@ module Aws::StorageGateway
5032
5033
  # domain.
5033
5034
  #
5034
5035
  # @option params [Array<String>] :domain_controllers
5035
- # List of IPv4 addresses, NetBIOS names, or host names of your domain
5036
+ # List of IP addresses, NetBIOS names, or host names of your domain
5036
5037
  # server. If you need to specify the port number include it after the
5037
5038
  # colon (“:”). For example, `mydc.mydomain.com:389`.
5038
5039
  #
5040
+ # <note markdown="1"> S3 File Gateway supports IPv6 addresses in addition to IPv4 and other
5041
+ # existing formats.
5042
+ #
5043
+ # FSx File Gateway does not support IPv6.
5044
+ #
5045
+ # </note>
5046
+ #
5039
5047
  # @option params [Integer] :timeout_in_seconds
5040
5048
  # Specifies the time in seconds, in which the `JoinDomain` operation
5041
5049
  # must complete. The default is 20 seconds.
@@ -6458,8 +6466,9 @@ module Aws::StorageGateway
6458
6466
  # The following requirements must be met to successfully generate a
6459
6467
  # cache report:
6460
6468
  #
6461
- # * You must have permissions to list the entire Amazon S3 bucket
6462
- # associated with the specified file share.
6469
+ # * You must have `s3:PutObject` and `s3:AbortMultipartUpload`
6470
+ # permissions for the Amazon S3 bucket where you want to store the
6471
+ # cache report.
6463
6472
  #
6464
6473
  # * No other cache reports can currently be in-progress for the
6465
6474
  # specified file share.
@@ -7274,7 +7283,8 @@ module Aws::StorageGateway
7274
7283
  #
7275
7284
  # @option params [Array<String>] :client_list
7276
7285
  # The list of clients that are allowed to access the S3 File Gateway.
7277
- # The list must contain either valid IP addresses or valid CIDR blocks.
7286
+ # The list must contain either valid IPv4/IPv6 addresses or valid CIDR
7287
+ # blocks.
7278
7288
  #
7279
7289
  # @option params [String] :squash
7280
7290
  # The user mapped to anonymous user.
@@ -7378,7 +7388,7 @@ module Aws::StorageGateway
7378
7388
  # },
7379
7389
  # default_storage_class: "StorageClass",
7380
7390
  # 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: ["IPV4AddressCIDR"],
7391
+ # client_list: ["Ipv4OrIpv6AddressCIDR"],
7382
7392
  # squash: "Squash",
7383
7393
  # read_only: false,
7384
7394
  # guess_mime_type_enabled: false,
@@ -7969,7 +7979,7 @@ module Aws::StorageGateway
7969
7979
  tracer: tracer
7970
7980
  )
7971
7981
  context[:gem_name] = 'aws-sdk-storagegateway'
7972
- context[:gem_version] = '1.109.0'
7982
+ context[:gem_version] = '1.111.0'
7973
7983
  Seahorse::Client::Request.new(handlers, context)
7974
7984
  end
7975
7985
 
@@ -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: IPV4AddressCIDR)
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. Only IPv4 addresses are accepted. Use
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. Only IPv4 addresses are accepted. Use
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 IP addresses or valid CIDR
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. Only IPv4 addresses are accepted. Use
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 IPv4 addresses, NetBIOS names, or host names of your domain
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 IP addresses or valid CIDR
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
- # *Currently not supported*.
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 IP addresses or valid CIDR
7470
+ # The list must contain either valid IPv4/IPv6 addresses or valid CIDR
7460
7471
  # blocks.
7461
7472
  # @return [Array<String>]
7462
7473
  #
@@ -54,7 +54,7 @@ module Aws::StorageGateway
54
54
  autoload :EndpointProvider, 'aws-sdk-storagegateway/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-storagegateway/endpoints'
56
56
 
57
- GEM_VERSION = '1.109.0'
57
+ GEM_VERSION = '1.111.0'
58
58
 
59
59
  end
60
60
 
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.109.0
4
+ version: 1.111.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.216.0
21
+ version: 3.225.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.216.0
31
+ version: 3.225.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement
@@ -83,7 +83,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
83
83
  requirements:
84
84
  - - ">="
85
85
  - !ruby/object:Gem::Version
86
- version: '2.5'
86
+ version: '2.7'
87
87
  required_rubygems_version: !ruby/object:Gem::Requirement
88
88
  requirements:
89
89
  - - ">="