aws-sdk-transfer 1.44.0 → 1.45.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: a9092616bcc2f1c9404f43d37dd0da1a60bf5c5a8ad0112f079cd4f2a6dd3992
4
- data.tar.gz: a2bd26099b318288d99097d559427a3e7388f0f8e5de84e94b8e0c438c8a6908
3
+ metadata.gz: 43a8b8de941ff8a2bed7e21846dd7b90b97aaab8cce216b1b6a3475fc50acfc8
4
+ data.tar.gz: 86f053e182959dcdc3a5a8e175ba4dd591d13fff26dd6769462f5da245ebb054
5
5
  SHA512:
6
- metadata.gz: d8165fe3d600aa055df8689c262449cbadc7951c802285472fb8c5676d89e78a0f0795d7e16aff909b40b46602f9cad70b9e1495253a7c9e91ae342776cce914
7
- data.tar.gz: 9dd8541225bfae130ae8f3909842c0466b0b7d0b21ce5ba5500acb383e61e132b028feff8ab7294e9a3a8a50225d8c003fa06535b5e57476a830e1b8f2caeb3d
6
+ metadata.gz: '019deb826fbbfc19e65b42d0df221756650d5ec051ffb37daa8895d95b132333e6d2f500634a47c26807967bcb33274bd7976c18a92af7124ae8f7f4fce65056'
7
+ data.tar.gz: ebcb798a63f5e8a97004af6534fe27042f8dae8dd97056df7a56ddc036668b9ec14a148b405b5a673790c5a510f20fab774735132441b37faef647ddb1a08210
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.45.0 (2021-12-21)
5
+ ------------------
6
+
7
+ * Feature - Property for Transfer Family used with the FTPS protocol. TLS Session Resumption provides a mechanism to resume or share a negotiated secret key between the control and data connection for an FTPS session.
8
+
4
9
  1.44.0 (2021-11-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.44.0
1
+ 1.45.0
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
30
31
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
32
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
32
33
 
@@ -73,6 +74,7 @@ module Aws::Transfer
73
74
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
75
  add_plugin(Aws::Plugins::TransferEncoding)
75
76
  add_plugin(Aws::Plugins::HttpChecksum)
77
+ add_plugin(Aws::Plugins::DefaultsMode)
76
78
  add_plugin(Aws::Plugins::SignatureV4)
77
79
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
78
80
 
@@ -175,6 +177,10 @@ module Aws::Transfer
175
177
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
176
178
  # a clock skew correction and retry requests with skewed client clocks.
177
179
  #
180
+ # @option options [String] :defaults_mode ("legacy")
181
+ # See {Aws::DefaultsModeConfiguration} for a list of the
182
+ # accepted modes and the configuration defaults that are included.
183
+ #
178
184
  # @option options [Boolean] :disable_host_prefix_injection (false)
179
185
  # Set to true to disable SDK automatically adding host prefix
180
186
  # to default service endpoint when available.
@@ -307,7 +313,7 @@ module Aws::Transfer
307
313
  # seconds to wait when opening a HTTP session before raising a
308
314
  # `Timeout::Error`.
309
315
  #
310
- # @option options [Integer] :http_read_timeout (60) The default
316
+ # @option options [Float] :http_read_timeout (60) The default
311
317
  # number of seconds to wait for response data. This value can
312
318
  # safely be set per-request on the session.
313
319
  #
@@ -323,6 +329,9 @@ module Aws::Transfer
323
329
  # disables this behaviour. This value can safely be set per
324
330
  # request on the session.
325
331
  #
332
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
333
+ # in seconds.
334
+ #
326
335
  # @option options [Boolean] :http_wire_trace (false) When `true`,
327
336
  # HTTP debug output will be sent to the `:logger`.
328
337
  #
@@ -643,7 +652,7 @@ module Aws::Transfer
643
652
  # API Gateway endpoint URL to call for authentication using the
644
653
  # `IdentityProviderDetails` parameter.
645
654
  #
646
- # Use the `LAMBDA` value to directly use a Lambda function as your
655
+ # Use the `AWS_LAMBDA` value to directly use a Lambda function as your
647
656
  # identity provider. If you choose this value, you must specify the ARN
648
657
  # for the lambda function in the `Function` parameter for the
649
658
  # `IdentityProviderDetails` data type.
@@ -684,6 +693,17 @@ module Aws::Transfer
684
693
  #
685
694
  # </note>
686
695
  #
696
+ # @option params [Types::ProtocolDetails] :protocol_details
697
+ # The protocol settings that are configured for your server.
698
+ #
699
+ # Use the `PassiveIp` parameter to indicate passive mode (for FTP and
700
+ # FTPS protocols). Enter a single dotted-quad IPv4 address, such as the
701
+ # external IP address of a firewall, router, or load balancer.
702
+ #
703
+ # Use the `TlsSessionResumptionMode` parameter to determine whether or
704
+ # not your Transfer server resumes recent, negotiated sessions through a
705
+ # unique session ID.
706
+ #
687
707
  # @option params [String] :security_policy_name
688
708
  # Specifies the name of the security policy that is attached to the
689
709
  # server.
@@ -722,6 +742,10 @@ module Aws::Transfer
722
742
  # identity_provider_type: "SERVICE_MANAGED", # accepts SERVICE_MANAGED, API_GATEWAY, AWS_DIRECTORY_SERVICE, AWS_LAMBDA
723
743
  # logging_role: "Role",
724
744
  # protocols: ["SFTP"], # accepts SFTP, FTP, FTPS
745
+ # protocol_details: {
746
+ # passive_ip: "PassiveIp",
747
+ # tls_session_resumption_mode: "DISABLED", # accepts DISABLED, ENABLED, ENFORCED
748
+ # },
725
749
  # security_policy_name: "SecurityPolicyName",
726
750
  # tags: [
727
751
  # {
@@ -863,6 +887,11 @@ module Aws::Transfer
863
887
  # The public portion of the Secure Shell (SSH) key used to authenticate
864
888
  # the user to the server.
865
889
  #
890
+ # <note markdown="1"> Currently, Transfer Family does not accept elliptical curve keys (keys
891
+ # beginning with `ecdsa`).
892
+ #
893
+ # </note>
894
+ #
866
895
  # @option params [Array<Types::Tag>] :tags
867
896
  # Key-value pairs that can be used to group and search for users. Tags
868
897
  # are metadata attached to users for any purpose.
@@ -1425,6 +1454,7 @@ module Aws::Transfer
1425
1454
  # resp.server.arn #=> String
1426
1455
  # resp.server.certificate #=> String
1427
1456
  # resp.server.protocol_details.passive_ip #=> String
1457
+ # resp.server.protocol_details.tls_session_resumption_mode #=> String, one of "DISABLED", "ENABLED", "ENFORCED"
1428
1458
  # resp.server.domain #=> String, one of "S3", "EFS"
1429
1459
  # resp.server.endpoint_details.address_allocation_ids #=> Array
1430
1460
  # resp.server.endpoint_details.address_allocation_ids[0] #=> String
@@ -2476,6 +2506,10 @@ module Aws::Transfer
2476
2506
  # FTPS protocols). Enter a single dotted-quad IPv4 address, such as the
2477
2507
  # external IP address of a firewall, router, or load balancer.
2478
2508
  #
2509
+ # Use the `TlsSessionResumptionMode` parameter to determine whether or
2510
+ # not your Transfer server resumes recent, negotiated sessions through a
2511
+ # unique session ID.
2512
+ #
2479
2513
  # @option params [Types::EndpointDetails] :endpoint_details
2480
2514
  # The virtual private cloud (VPC) endpoint settings that are configured
2481
2515
  # for your server. When you host your endpoint within your VPC, you can
@@ -2588,6 +2622,7 @@ module Aws::Transfer
2588
2622
  # certificate: "Certificate",
2589
2623
  # protocol_details: {
2590
2624
  # passive_ip: "PassiveIp",
2625
+ # tls_session_resumption_mode: "DISABLED", # accepts DISABLED, ENABLED, ENFORCED
2591
2626
  # },
2592
2627
  # endpoint_details: {
2593
2628
  # address_allocation_ids: ["AddressAllocationId"],
@@ -2799,7 +2834,7 @@ module Aws::Transfer
2799
2834
  params: params,
2800
2835
  config: config)
2801
2836
  context[:gem_name] = 'aws-sdk-transfer'
2802
- context[:gem_version] = '1.44.0'
2837
+ context[:gem_version] = '1.45.0'
2803
2838
  Seahorse::Client::Request.new(handlers, context)
2804
2839
  end
2805
2840
 
@@ -186,6 +186,7 @@ module Aws::Transfer
186
186
  TestIdentityProviderRequest = Shapes::StructureShape.new(name: 'TestIdentityProviderRequest')
187
187
  TestIdentityProviderResponse = Shapes::StructureShape.new(name: 'TestIdentityProviderResponse')
188
188
  ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
189
+ TlsSessionResumptionMode = Shapes::StringShape.new(name: 'TlsSessionResumptionMode')
189
190
  UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
190
191
  UpdateAccessRequest = Shapes::StructureShape.new(name: 'UpdateAccessRequest')
191
192
  UpdateAccessResponse = Shapes::StructureShape.new(name: 'UpdateAccessResponse')
@@ -245,6 +246,7 @@ module Aws::Transfer
245
246
  CreateServerRequest.add_member(:identity_provider_type, Shapes::ShapeRef.new(shape: IdentityProviderType, location_name: "IdentityProviderType"))
246
247
  CreateServerRequest.add_member(:logging_role, Shapes::ShapeRef.new(shape: Role, location_name: "LoggingRole"))
247
248
  CreateServerRequest.add_member(:protocols, Shapes::ShapeRef.new(shape: Protocols, location_name: "Protocols"))
249
+ CreateServerRequest.add_member(:protocol_details, Shapes::ShapeRef.new(shape: ProtocolDetails, location_name: "ProtocolDetails"))
248
250
  CreateServerRequest.add_member(:security_policy_name, Shapes::ShapeRef.new(shape: SecurityPolicyName, location_name: "SecurityPolicyName"))
249
251
  CreateServerRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
250
252
  CreateServerRequest.add_member(:workflow_details, Shapes::ShapeRef.new(shape: WorkflowDetails, location_name: "WorkflowDetails"))
@@ -599,6 +601,7 @@ module Aws::Transfer
599
601
  PosixProfile.struct_class = Types::PosixProfile
600
602
 
601
603
  ProtocolDetails.add_member(:passive_ip, Shapes::ShapeRef.new(shape: PassiveIp, location_name: "PassiveIp"))
604
+ ProtocolDetails.add_member(:tls_session_resumption_mode, Shapes::ShapeRef.new(shape: TlsSessionResumptionMode, location_name: "TlsSessionResumptionMode"))
602
605
  ProtocolDetails.struct_class = Types::ProtocolDetails
603
606
 
604
607
  Protocols.member = Shapes::ShapeRef.new(shape: Protocol)
@@ -290,6 +290,10 @@ module Aws::Transfer
290
290
  # identity_provider_type: "SERVICE_MANAGED", # accepts SERVICE_MANAGED, API_GATEWAY, AWS_DIRECTORY_SERVICE, AWS_LAMBDA
291
291
  # logging_role: "Role",
292
292
  # protocols: ["SFTP"], # accepts SFTP, FTP, FTPS
293
+ # protocol_details: {
294
+ # passive_ip: "PassiveIp",
295
+ # tls_session_resumption_mode: "DISABLED", # accepts DISABLED, ENABLED, ENFORCED
296
+ # },
293
297
  # security_policy_name: "SecurityPolicyName",
294
298
  # tags: [
295
299
  # {
@@ -439,7 +443,7 @@ module Aws::Transfer
439
443
  # an API Gateway endpoint URL to call for authentication using the
440
444
  # `IdentityProviderDetails` parameter.
441
445
  #
442
- # Use the `LAMBDA` value to directly use a Lambda function as your
446
+ # Use the `AWS_LAMBDA` value to directly use a Lambda function as your
443
447
  # identity provider. If you choose this value, you must specify the
444
448
  # ARN for the lambda function in the `Function` parameter for the
445
449
  # `IdentityProviderDetails` data type.
@@ -484,6 +488,18 @@ module Aws::Transfer
484
488
  # </note>
485
489
  # @return [Array<String>]
486
490
  #
491
+ # @!attribute [rw] protocol_details
492
+ # The protocol settings that are configured for your server.
493
+ #
494
+ # Use the `PassiveIp` parameter to indicate passive mode (for FTP and
495
+ # FTPS protocols). Enter a single dotted-quad IPv4 address, such as
496
+ # the external IP address of a firewall, router, or load balancer.
497
+ #
498
+ # Use the `TlsSessionResumptionMode` parameter to determine whether or
499
+ # not your Transfer server resumes recent, negotiated sessions through
500
+ # a unique session ID.
501
+ # @return [Types::ProtocolDetails]
502
+ #
487
503
  # @!attribute [rw] security_policy_name
488
504
  # Specifies the name of the security policy that is attached to the
489
505
  # server.
@@ -510,6 +526,7 @@ module Aws::Transfer
510
526
  :identity_provider_type,
511
527
  :logging_role,
512
528
  :protocols,
529
+ :protocol_details,
513
530
  :security_policy_name,
514
531
  :tags,
515
532
  :workflow_details)
@@ -669,6 +686,11 @@ module Aws::Transfer
669
686
  # @!attribute [rw] ssh_public_key_body
670
687
  # The public portion of the Secure Shell (SSH) key used to
671
688
  # authenticate the user to the server.
689
+ #
690
+ # <note markdown="1"> Currently, Transfer Family does not accept elliptical curve keys
691
+ # (keys beginning with `ecdsa`).
692
+ #
693
+ # </note>
672
694
  # @return [String]
673
695
  #
674
696
  # @!attribute [rw] tags
@@ -1590,7 +1612,7 @@ module Aws::Transfer
1590
1612
  # an API Gateway endpoint URL to call for authentication using the
1591
1613
  # `IdentityProviderDetails` parameter.
1592
1614
  #
1593
- # Use the `LAMBDA` value to directly use a Lambda function as your
1615
+ # Use the `AWS_LAMBDA` value to directly use a Lambda function as your
1594
1616
  # identity provider. If you choose this value, you must specify the
1595
1617
  # ARN for the lambda function in the `Function` parameter for the
1596
1618
  # `IdentityProviderDetails` data type.
@@ -2120,8 +2142,8 @@ module Aws::Transfer
2120
2142
  # @return [String]
2121
2143
  #
2122
2144
  # @!attribute [rw] directory_id
2123
- # The identifier of the Amazon Web ServicesDirectory Service directory
2124
- # that you want to stop sharing.
2145
+ # The identifier of the Amazon Web Services Directory Service
2146
+ # directory that you want to stop sharing.
2125
2147
  # @return [String]
2126
2148
  #
2127
2149
  # @!attribute [rw] function
@@ -2816,7 +2838,7 @@ module Aws::Transfer
2816
2838
  # an API Gateway endpoint URL to call for authentication using the
2817
2839
  # `IdentityProviderDetails` parameter.
2818
2840
  #
2819
- # Use the `LAMBDA` value to directly use a Lambda function as your
2841
+ # Use the `AWS_LAMBDA` value to directly use a Lambda function as your
2820
2842
  # identity provider. If you choose this value, you must specify the
2821
2843
  # ARN for the lambda function in the `Function` parameter for the
2822
2844
  # `IdentityProviderDetails` data type.
@@ -3031,15 +3053,12 @@ module Aws::Transfer
3031
3053
 
3032
3054
  # The protocol settings that are configured for your server.
3033
3055
  #
3034
- # <note markdown="1"> This type is only valid in the `UpdateServer` API.
3035
- #
3036
- # </note>
3037
- #
3038
3056
  # @note When making an API call, you may pass ProtocolDetails
3039
3057
  # data as a hash:
3040
3058
  #
3041
3059
  # {
3042
3060
  # passive_ip: "PassiveIp",
3061
+ # tls_session_resumption_mode: "DISABLED", # accepts DISABLED, ENABLED, ENFORCED
3043
3062
  # }
3044
3063
  #
3045
3064
  # @!attribute [rw] passive_ip
@@ -3065,10 +3084,44 @@ module Aws::Transfer
3065
3084
  # [1]: http://aws.amazon.com/blogs/storage/configuring-your-ftps-server-behind-a-firewall-or-nat-with-aws-transfer-family/
3066
3085
  # @return [String]
3067
3086
  #
3087
+ # @!attribute [rw] tls_session_resumption_mode
3088
+ # A property used with Transfer servers that use the FTPS protocol.
3089
+ # TLS Session Resumption provides a mechanism to resume or share a
3090
+ # negotiated secret key between the control and data connection for an
3091
+ # FTPS session. `TlsSessionResumptionMode` determines whether or not
3092
+ # the server resumes recent, negotiated sessions through a unique
3093
+ # session ID. This property is available during `CreateServer` and
3094
+ # `UpdateServer` calls. If a `TlsSessionResumptionMode` value is not
3095
+ # specified during CreateServer, it is set to `ENFORCED` by default.
3096
+ #
3097
+ # * `DISABLED`\: the server does not process TLS session resumption
3098
+ # client requests and creates a new TLS session for each request.
3099
+ #
3100
+ # * `ENABLED`\: the server processes and accepts clients that are
3101
+ # performing TLS session resumption. The server doesn't reject
3102
+ # client data connections that do not perform the TLS session
3103
+ # resumption client processing.
3104
+ #
3105
+ # * `ENFORCED`\: the server processes and accepts clients that are
3106
+ # performing TLS session resumption. The server rejects client data
3107
+ # connections that do not perform the TLS session resumption client
3108
+ # processing. Before you set the value to `ENFORCED`, test your
3109
+ # clients.
3110
+ #
3111
+ # <note markdown="1"> Not all FTPS clients perform TLS session resumption. So, if you
3112
+ # choose to enforce TLS session resumption, you prevent any
3113
+ # connections from FTPS clients that don't perform the protocol
3114
+ # negotiation. To determine whether or not you can use the
3115
+ # `ENFORCED` value, you need to test your clients.
3116
+ #
3117
+ # </note>
3118
+ # @return [String]
3119
+ #
3068
3120
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/ProtocolDetails AWS API Documentation
3069
3121
  #
3070
3122
  class ProtocolDetails < Struct.new(
3071
- :passive_ip)
3123
+ :passive_ip,
3124
+ :tls_session_resumption_mode)
3072
3125
  SENSITIVE = []
3073
3126
  include Aws::Structure
3074
3127
  end
@@ -3776,6 +3829,7 @@ module Aws::Transfer
3776
3829
  # certificate: "Certificate",
3777
3830
  # protocol_details: {
3778
3831
  # passive_ip: "PassiveIp",
3832
+ # tls_session_resumption_mode: "DISABLED", # accepts DISABLED, ENABLED, ENFORCED
3779
3833
  # },
3780
3834
  # endpoint_details: {
3781
3835
  # address_allocation_ids: ["AddressAllocationId"],
@@ -3854,6 +3908,10 @@ module Aws::Transfer
3854
3908
  # Use the `PassiveIp` parameter to indicate passive mode (for FTP and
3855
3909
  # FTPS protocols). Enter a single dotted-quad IPv4 address, such as
3856
3910
  # the external IP address of a firewall, router, or load balancer.
3911
+ #
3912
+ # Use the `TlsSessionResumptionMode` parameter to determine whether or
3913
+ # not your Transfer server resumes recent, negotiated sessions through
3914
+ # a unique session ID.
3857
3915
  # @return [Types::ProtocolDetails]
3858
3916
  #
3859
3917
  # @!attribute [rw] endpoint_details
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-transfer/customizations'
48
48
  # @!group service
49
49
  module Aws::Transfer
50
50
 
51
- GEM_VERSION = '1.44.0'
51
+ GEM_VERSION = '1.45.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-transfer
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.44.0
4
+ version: 1.45.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: 2021-11-30 00:00:00.000000000 Z
11
+ date: 2021-12-21 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.122.0
22
+ version: 3.125.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.122.0
32
+ version: 3.125.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement