aws-sdk-transfer 1.86.0 → 1.88.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 47383b8f17402d1f1a23f041bc3dce56001c3a37ac7a7de3a03e2dcedaab2713
4
- data.tar.gz: f6e1437596ac2a251a29a9d18b8d946f8c964c07d50bcd3c5a3a95f1399040ac
3
+ metadata.gz: dd44a4b53e27bf567a03377b6a58f62f29ded41ff6d6bdf1f3a1a4805a2cf16c
4
+ data.tar.gz: 97729ca4b80de16e8f7a8e4654f6ad71f14d965d11d7767e0283ac1cf919ce46
5
5
  SHA512:
6
- metadata.gz: 4390ab6084f328dec9b56d159178da858ca83323916186be02881c807a08e706540f8e1ffb1c81a5b84f15b7cb60c4c4c54f0322d91523292a25e79d0b8b7f0c
7
- data.tar.gz: 721a5e911cb12846b72cff0595e59b1ddcd15062b147379f49d5a3f91d15b151078aed29a7d085b26edd50403ce881ce08e5bf8cee76e377a0e5983c8fb6f0e5
6
+ metadata.gz: c9462b63e6130a34bf92b6f7471b279a2ae9b0086c02ebef0ed39c4a3582f4baab0785394a44f92a04c71ec851ab0c84fe8e7ba648132d1dc0d7fb0a2988abde
7
+ data.tar.gz: 926bfa3897a7c39f19bc01bc12994eb067b95919b505fd04b148c4e5a31ff36a79732d1baf9b973c765b9a9e53b81f5ae7f630a3cf6c4eab6e91d77067763e3d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.88.0 (2024-01-26)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.87.0 (2024-01-12)
10
+ ------------------
11
+
12
+ * Feature - AWS Transfer Family now supports static IP addresses for SFTP & AS2 connectors and for async MDNs on AS2 servers.
13
+
4
14
  1.86.0 (2023-11-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.86.0
1
+ 1.88.0
@@ -2067,6 +2067,8 @@ module Aws::Transfer
2067
2067
  # resp.connector.sftp_config.user_secret_id #=> String
2068
2068
  # resp.connector.sftp_config.trusted_host_keys #=> Array
2069
2069
  # resp.connector.sftp_config.trusted_host_keys[0] #=> String
2070
+ # resp.connector.service_managed_egress_ip_addresses #=> Array
2071
+ # resp.connector.service_managed_egress_ip_addresses[0] #=> String
2070
2072
  #
2071
2073
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribeConnector AWS API Documentation
2072
2074
  #
@@ -2338,6 +2340,8 @@ module Aws::Transfer
2338
2340
  # resp.server.structured_log_destinations #=> Array
2339
2341
  # resp.server.structured_log_destinations[0] #=> String
2340
2342
  # resp.server.s3_storage_options.directory_listing_optimization #=> String, one of "ENABLED", "DISABLED"
2343
+ # resp.server.as_2_service_managed_egress_ip_addresses #=> Array
2344
+ # resp.server.as_2_service_managed_egress_ip_addresses[0] #=> String
2341
2345
  #
2342
2346
  #
2343
2347
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -4661,7 +4665,7 @@ module Aws::Transfer
4661
4665
  params: params,
4662
4666
  config: config)
4663
4667
  context[:gem_name] = 'aws-sdk-transfer'
4664
- context[:gem_version] = '1.86.0'
4668
+ context[:gem_version] = '1.88.0'
4665
4669
  Seahorse::Client::Request.new(handlers, context)
4666
4670
  end
4667
4671
 
@@ -250,6 +250,8 @@ module Aws::Transfer
250
250
  SendWorkflowStepStateResponse = Shapes::StructureShape.new(name: 'SendWorkflowStepStateResponse')
251
251
  ServerId = Shapes::StringShape.new(name: 'ServerId')
252
252
  ServiceErrorMessage = Shapes::StringShape.new(name: 'ServiceErrorMessage')
253
+ ServiceManagedEgressIpAddress = Shapes::StringShape.new(name: 'ServiceManagedEgressIpAddress')
254
+ ServiceManagedEgressIpAddresses = Shapes::ListShape.new(name: 'ServiceManagedEgressIpAddresses')
253
255
  ServiceMetadata = Shapes::StructureShape.new(name: 'ServiceMetadata')
254
256
  ServiceUnavailableException = Shapes::StructureShape.new(name: 'ServiceUnavailableException')
255
257
  SessionId = Shapes::StringShape.new(name: 'SessionId')
@@ -619,6 +621,7 @@ module Aws::Transfer
619
621
  DescribedConnector.add_member(:logging_role, Shapes::ShapeRef.new(shape: Role, location_name: "LoggingRole"))
620
622
  DescribedConnector.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
621
623
  DescribedConnector.add_member(:sftp_config, Shapes::ShapeRef.new(shape: SftpConnectorConfig, location_name: "SftpConfig"))
624
+ DescribedConnector.add_member(:service_managed_egress_ip_addresses, Shapes::ShapeRef.new(shape: ServiceManagedEgressIpAddresses, location_name: "ServiceManagedEgressIpAddresses"))
622
625
  DescribedConnector.struct_class = Types::DescribedConnector
623
626
 
624
627
  DescribedExecution.add_member(:execution_id, Shapes::ShapeRef.new(shape: ExecutionId, location_name: "ExecutionId"))
@@ -677,6 +680,7 @@ module Aws::Transfer
677
680
  DescribedServer.add_member(:workflow_details, Shapes::ShapeRef.new(shape: WorkflowDetails, location_name: "WorkflowDetails"))
678
681
  DescribedServer.add_member(:structured_log_destinations, Shapes::ShapeRef.new(shape: StructuredLogDestinations, location_name: "StructuredLogDestinations"))
679
682
  DescribedServer.add_member(:s3_storage_options, Shapes::ShapeRef.new(shape: S3StorageOptions, location_name: "S3StorageOptions"))
683
+ DescribedServer.add_member(:as_2_service_managed_egress_ip_addresses, Shapes::ShapeRef.new(shape: ServiceManagedEgressIpAddresses, location_name: "As2ServiceManagedEgressIpAddresses"))
680
684
  DescribedServer.struct_class = Types::DescribedServer
681
685
 
682
686
  DescribedUser.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "Arn"))
@@ -1058,6 +1062,8 @@ module Aws::Transfer
1058
1062
 
1059
1063
  SendWorkflowStepStateResponse.struct_class = Types::SendWorkflowStepStateResponse
1060
1064
 
1065
+ ServiceManagedEgressIpAddresses.member = Shapes::ShapeRef.new(shape: ServiceManagedEgressIpAddress)
1066
+
1061
1067
  ServiceMetadata.add_member(:user_details, Shapes::ShapeRef.new(shape: UserDetails, required: true, location_name: "UserDetails"))
1062
1068
  ServiceMetadata.struct_class = Types::ServiceMetadata
1063
1069
 
@@ -14,6 +14,7 @@ module Aws::Transfer
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::Transfer::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
@@ -2210,6 +2210,11 @@ module Aws::Transfer
2210
2210
  # object.
2211
2211
  # @return [Types::SftpConnectorConfig]
2212
2212
  #
2213
+ # @!attribute [rw] service_managed_egress_ip_addresses
2214
+ # The list of egress IP addresses of this connector. These IP
2215
+ # addresses are assigned automatically when you create the connector.
2216
+ # @return [Array<String>]
2217
+ #
2213
2218
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribedConnector AWS API Documentation
2214
2219
  #
2215
2220
  class DescribedConnector < Struct.new(
@@ -2220,7 +2225,8 @@ module Aws::Transfer
2220
2225
  :access_role,
2221
2226
  :logging_role,
2222
2227
  :tags,
2223
- :sftp_config)
2228
+ :sftp_config,
2229
+ :service_managed_egress_ip_addresses)
2224
2230
  SENSITIVE = []
2225
2231
  include Aws::Structure
2226
2232
  end
@@ -2677,6 +2683,16 @@ module Aws::Transfer
2677
2683
  # have a file target.
2678
2684
  # @return [Types::S3StorageOptions]
2679
2685
  #
2686
+ # @!attribute [rw] as_2_service_managed_egress_ip_addresses
2687
+ # The list of egress IP addresses of this server. These IP addresses
2688
+ # are only relevant for servers that use the AS2 protocol. They are
2689
+ # used for sending asynchronous MDNs.
2690
+ #
2691
+ # These IP addresses are assigned automatically when you create an AS2
2692
+ # server. Additionally, if you update an existing server and add the
2693
+ # AS2 protocol, static IP addresses are assigned as well.
2694
+ # @return [Array<String>]
2695
+ #
2680
2696
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribedServer AWS API Documentation
2681
2697
  #
2682
2698
  class DescribedServer < Struct.new(
@@ -2700,7 +2716,8 @@ module Aws::Transfer
2700
2716
  :user_count,
2701
2717
  :workflow_details,
2702
2718
  :structured_log_destinations,
2703
- :s3_storage_options)
2719
+ :s3_storage_options,
2720
+ :as_2_service_managed_egress_ip_addresses)
2704
2721
  SENSITIVE = []
2705
2722
  include Aws::Structure
2706
2723
  end
@@ -3164,7 +3181,7 @@ module Aws::Transfer
3164
3181
  #
3165
3182
  # @!attribute [rw] directory_id
3166
3183
  # The identifier of the Directory Service directory that you want to
3167
- # stop sharing.
3184
+ # use as your identity provider.
3168
3185
  # @return [String]
3169
3186
  #
3170
3187
  # @!attribute [rw] function
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-transfer/customizations'
53
53
  # @!group service
54
54
  module Aws::Transfer
55
55
 
56
- GEM_VERSION = '1.86.0'
56
+ GEM_VERSION = '1.88.0'
57
57
 
58
58
  end