aws-sdk-datasync 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8dfc561df6a242351e3c8d286191ec140de15dff6f272f2c2ebff4fe8d4fc020
4
- data.tar.gz: 6962f8d02de7f71eb681b3d27a2deed19e53771f50043c35c8f4870751eb4bf7
3
+ metadata.gz: 2359b88d840084d4641e69e5b32f175b35558bfa689d23e897643192d22db18e
4
+ data.tar.gz: 6cf442b6cb8bcb218c1629f7ac00dfee8ad3c67b1289af233b1949773496fec2
5
5
  SHA512:
6
- metadata.gz: e1a2d0a6516462da41deacb241866feeb2bc46fea336c3a0296cbed1446658965a2628a47e524ac03d339da1908b55ba8acc68c3905c5d42663fcf5e87ef9a1e
7
- data.tar.gz: bc68541ae62e404c9f530f5eab7c77ae9575e56c7e0350c1ab189d123752cf812971545f054db1a0cb30198586aa44f7514a04e2966a2c015cde1b8db51fecaf
6
+ metadata.gz: 56b8867cad0830aac78a1b797a0db93661fddb7881a3e0d7c762768c7da6b2880874390c28f352d6e8c7b2b8a36f1e843d08718218673be7e953c41a5c9fe34f
7
+ data.tar.gz: 06d785a1c297f4240fc10f236e55927087606dc60bf3e5ff68a918568dcdc8ac2b64e464c9877f1e9775b983f40e84aeae4ec0148487e2735c1eb4517fcf1adf
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.112.0 (2025-10-17)
5
+ ------------------
6
+
7
+ * Feature - Update endpoint ruleset parameters casing
8
+
9
+ 1.111.0 (2025-09-30)
10
+ ------------------
11
+
12
+ * Feature - Added support for FIPS VPC endpoints in FIPS-enabled AWS Regions.
13
+
4
14
  1.110.0 (2025-08-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.110.0
1
+ 1.112.0
@@ -2266,7 +2266,7 @@ module Aws::DataSync
2266
2266
  # resp.status #=> String, one of "ONLINE", "OFFLINE"
2267
2267
  # resp.last_connection_time #=> Time
2268
2268
  # resp.creation_time #=> Time
2269
- # resp.endpoint_type #=> String, one of "PUBLIC", "PRIVATE_LINK", "FIPS"
2269
+ # resp.endpoint_type #=> String, one of "PUBLIC", "PRIVATE_LINK", "FIPS", "FIPS_PRIVATE_LINK"
2270
2270
  # resp.private_link_config.vpc_endpoint_id #=> String
2271
2271
  # resp.private_link_config.private_link_endpoint #=> String
2272
2272
  # resp.private_link_config.subnet_arns #=> Array
@@ -4812,7 +4812,7 @@ module Aws::DataSync
4812
4812
  tracer: tracer
4813
4813
  )
4814
4814
  context[:gem_name] = 'aws-sdk-datasync'
4815
- context[:gem_version] = '1.110.0'
4815
+ context[:gem_version] = '1.112.0'
4816
4816
  Seahorse::Client::Request.new(handlers, context)
4817
4817
  end
4818
4818
 
@@ -13,22 +13,22 @@ module Aws::DataSync
13
13
  # @!attribute region
14
14
  # The AWS region used to dispatch the request.
15
15
  #
16
- # @return [String]
16
+ # @return [string]
17
17
  #
18
18
  # @!attribute use_dual_stack
19
19
  # When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
20
20
  #
21
- # @return [Boolean]
21
+ # @return [boolean]
22
22
  #
23
23
  # @!attribute use_fips
24
24
  # When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
25
25
  #
26
- # @return [Boolean]
26
+ # @return [boolean]
27
27
  #
28
28
  # @!attribute endpoint
29
29
  # Override the endpoint used to send this request
30
30
  #
31
- # @return [String]
31
+ # @return [string]
32
32
  #
33
33
  EndpointParameters = Struct.new(
34
34
  :region,
@@ -54,7 +54,7 @@ module Aws::DataSync
54
54
  autoload :EndpointProvider, 'aws-sdk-datasync/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-datasync/endpoints'
56
56
 
57
- GEM_VERSION = '1.110.0'
57
+ GEM_VERSION = '1.112.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -535,7 +535,7 @@ module Aws
535
535
  def status: () -> ("ONLINE" | "OFFLINE")
536
536
  def last_connection_time: () -> ::Time
537
537
  def creation_time: () -> ::Time
538
- def endpoint_type: () -> ("PUBLIC" | "PRIVATE_LINK" | "FIPS")
538
+ def endpoint_type: () -> ("PUBLIC" | "PRIVATE_LINK" | "FIPS" | "FIPS_PRIVATE_LINK")
539
539
  def private_link_config: () -> Types::PrivateLinkConfig
540
540
  def platform: () -> Types::Platform
541
541
  end
data/sig/types.rbs CHANGED
@@ -298,7 +298,7 @@ module Aws::DataSync
298
298
  attr_accessor status: ("ONLINE" | "OFFLINE")
299
299
  attr_accessor last_connection_time: ::Time
300
300
  attr_accessor creation_time: ::Time
301
- attr_accessor endpoint_type: ("PUBLIC" | "PRIVATE_LINK" | "FIPS")
301
+ attr_accessor endpoint_type: ("PUBLIC" | "PRIVATE_LINK" | "FIPS" | "FIPS_PRIVATE_LINK")
302
302
  attr_accessor private_link_config: Types::PrivateLinkConfig
303
303
  attr_accessor platform: Types::Platform
304
304
  SENSITIVE: []
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-datasync
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.110.0
4
+ version: 1.112.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services