aws-sdk-transfer 1.40.0 → 1.44.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: 387bbc0ef25c3fe22904b55e221ac1d0b20c0fdb5064bdcb2c40cd46541b4f41
4
- data.tar.gz: c3fb41e08336b47861b7185a81b5944be1e11c6e9651f20a3d6162bf8c93da07
3
+ metadata.gz: a9092616bcc2f1c9404f43d37dd0da1a60bf5c5a8ad0112f079cd4f2a6dd3992
4
+ data.tar.gz: a2bd26099b318288d99097d559427a3e7388f0f8e5de84e94b8e0c438c8a6908
5
5
  SHA512:
6
- metadata.gz: 9154a4ac1338170226a1158426ad139aefa615d8eb2f59f5938b6ffaa4a9426f0336fa0f31fcf3d40c998788b376ea186885444bc0cd514468202f42a5e4f62e
7
- data.tar.gz: b24382434840df52f8d7bc54908dcaef07ca58992c45cd90f9eebec8488f6dc9049233459972843ab13debe9d42cfa4454075347c41a80bb2371e0ada2f79aab
6
+ metadata.gz: d8165fe3d600aa055df8689c262449cbadc7951c802285472fb8c5676d89e78a0f0795d7e16aff909b40b46602f9cad70b9e1495253a7c9e91ae342776cce914
7
+ data.tar.gz: 9dd8541225bfae130ae8f3909842c0466b0b7d0b21ce5ba5500acb383e61e132b028feff8ab7294e9a3a8a50225d8c003fa06535b5e57476a830e1b8f2caeb3d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.44.0 (2021-11-30)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.43.0 (2021-11-15)
10
+ ------------------
11
+
12
+ * Feature - AWS Transfer Family now supports integrating a custom identity provider using AWS Lambda
13
+
14
+ 1.42.0 (2021-11-04)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.41.0 (2021-10-18)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.40.0 (2021-09-28)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.40.0
1
+ 1.44.0
@@ -119,7 +119,9 @@ module Aws::Transfer
119
119
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
120
  # are very aggressive. Construct and pass an instance of
121
121
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
122
+ # enable retries and extended timeouts. Instance profile credential
123
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
124
+ # to true.
123
125
  #
124
126
  # @option options [required, String] :region
125
127
  # The AWS region to connect to. The configured `:region` is
@@ -285,6 +287,15 @@ module Aws::Transfer
285
287
  # ** Please note ** When response stubbing is enabled, no HTTP
286
288
  # requests are made, and retries are disabled.
287
289
  #
290
+ # @option options [Boolean] :use_dualstack_endpoint
291
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
292
+ # will be used if available.
293
+ #
294
+ # @option options [Boolean] :use_fips_endpoint
295
+ # When set to `true`, fips compatible endpoints will be used if available.
296
+ # When a `fips` region is used, the region is normalized and this config
297
+ # is set to `true`.
298
+ #
288
299
  # @option options [Boolean] :validate_params (true)
289
300
  # When `true`, request parameters are validated before
290
301
  # sending the request.
@@ -632,6 +643,11 @@ module Aws::Transfer
632
643
  # API Gateway endpoint URL to call for authentication using the
633
644
  # `IdentityProviderDetails` parameter.
634
645
  #
646
+ # Use the `LAMBDA` value to directly use a Lambda function as your
647
+ # identity provider. If you choose this value, you must specify the ARN
648
+ # for the lambda function in the `Function` parameter for the
649
+ # `IdentityProviderDetails` data type.
650
+ #
635
651
  # @option params [String] :logging_role
636
652
  # Specifies the Amazon Resource Name (ARN) of the Amazon Web Services
637
653
  # Identity and Access Management (IAM) role that allows a server to turn
@@ -701,8 +717,9 @@ module Aws::Transfer
701
717
  # url: "Url",
702
718
  # invocation_role: "Role",
703
719
  # directory_id: "DirectoryId",
720
+ # function: "Function",
704
721
  # },
705
- # identity_provider_type: "SERVICE_MANAGED", # accepts SERVICE_MANAGED, API_GATEWAY, AWS_DIRECTORY_SERVICE
722
+ # identity_provider_type: "SERVICE_MANAGED", # accepts SERVICE_MANAGED, API_GATEWAY, AWS_DIRECTORY_SERVICE, AWS_LAMBDA
706
723
  # logging_role: "Role",
707
724
  # protocols: ["SFTP"], # accepts SFTP, FTP, FTPS
708
725
  # security_policy_name: "SecurityPolicyName",
@@ -1422,7 +1439,8 @@ module Aws::Transfer
1422
1439
  # resp.server.identity_provider_details.url #=> String
1423
1440
  # resp.server.identity_provider_details.invocation_role #=> String
1424
1441
  # resp.server.identity_provider_details.directory_id #=> String
1425
- # resp.server.identity_provider_type #=> String, one of "SERVICE_MANAGED", "API_GATEWAY", "AWS_DIRECTORY_SERVICE"
1442
+ # resp.server.identity_provider_details.function #=> String
1443
+ # resp.server.identity_provider_type #=> String, one of "SERVICE_MANAGED", "API_GATEWAY", "AWS_DIRECTORY_SERVICE", "AWS_LAMBDA"
1426
1444
  # resp.server.logging_role #=> String
1427
1445
  # resp.server.protocols #=> Array
1428
1446
  # resp.server.protocols[0] #=> String, one of "SFTP", "FTP", "FTPS"
@@ -1813,7 +1831,7 @@ module Aws::Transfer
1813
1831
  # resp.servers #=> Array
1814
1832
  # resp.servers[0].arn #=> String
1815
1833
  # resp.servers[0].domain #=> String, one of "S3", "EFS"
1816
- # resp.servers[0].identity_provider_type #=> String, one of "SERVICE_MANAGED", "API_GATEWAY", "AWS_DIRECTORY_SERVICE"
1834
+ # resp.servers[0].identity_provider_type #=> String, one of "SERVICE_MANAGED", "API_GATEWAY", "AWS_DIRECTORY_SERVICE", "AWS_LAMBDA"
1817
1835
  # resp.servers[0].endpoint_type #=> String, one of "PUBLIC", "VPC", "VPC_ENDPOINT"
1818
1836
  # resp.servers[0].logging_role #=> String
1819
1837
  # resp.servers[0].server_id #=> String
@@ -2584,6 +2602,7 @@ module Aws::Transfer
2584
2602
  # url: "Url",
2585
2603
  # invocation_role: "Role",
2586
2604
  # directory_id: "DirectoryId",
2605
+ # function: "Function",
2587
2606
  # },
2588
2607
  # logging_role: "NullableRole",
2589
2608
  # protocols: ["SFTP"], # accepts SFTP, FTP, FTPS
@@ -2780,7 +2799,7 @@ module Aws::Transfer
2780
2799
  params: params,
2781
2800
  config: config)
2782
2801
  context[:gem_name] = 'aws-sdk-transfer'
2783
- context[:gem_version] = '1.40.0'
2802
+ context[:gem_version] = '1.44.0'
2784
2803
  Seahorse::Client::Request.new(handlers, context)
2785
2804
  end
2786
2805
 
@@ -76,6 +76,7 @@ module Aws::Transfer
76
76
  ExternalId = Shapes::StringShape.new(name: 'ExternalId')
77
77
  FileLocation = Shapes::StructureShape.new(name: 'FileLocation')
78
78
  Fips = Shapes::BooleanShape.new(name: 'Fips')
79
+ Function = Shapes::StringShape.new(name: 'Function')
79
80
  HomeDirectory = Shapes::StringShape.new(name: 'HomeDirectory')
80
81
  HomeDirectoryMapEntry = Shapes::StructureShape.new(name: 'HomeDirectoryMapEntry')
81
82
  HomeDirectoryMappings = Shapes::ListShape.new(name: 'HomeDirectoryMappings')
@@ -451,6 +452,7 @@ module Aws::Transfer
451
452
  IdentityProviderDetails.add_member(:url, Shapes::ShapeRef.new(shape: Url, location_name: "Url"))
452
453
  IdentityProviderDetails.add_member(:invocation_role, Shapes::ShapeRef.new(shape: Role, location_name: "InvocationRole"))
453
454
  IdentityProviderDetails.add_member(:directory_id, Shapes::ShapeRef.new(shape: DirectoryId, location_name: "DirectoryId"))
455
+ IdentityProviderDetails.add_member(:function, Shapes::ShapeRef.new(shape: Function, location_name: "Function"))
454
456
  IdentityProviderDetails.struct_class = Types::IdentityProviderDetails
455
457
 
456
458
  ImportSshPublicKeyRequest.add_member(:server_id, Shapes::ShapeRef.new(shape: ServerId, required: true, location_name: "ServerId"))
@@ -285,8 +285,9 @@ module Aws::Transfer
285
285
  # url: "Url",
286
286
  # invocation_role: "Role",
287
287
  # directory_id: "DirectoryId",
288
+ # function: "Function",
288
289
  # },
289
- # identity_provider_type: "SERVICE_MANAGED", # accepts SERVICE_MANAGED, API_GATEWAY, AWS_DIRECTORY_SERVICE
290
+ # identity_provider_type: "SERVICE_MANAGED", # accepts SERVICE_MANAGED, API_GATEWAY, AWS_DIRECTORY_SERVICE, AWS_LAMBDA
290
291
  # logging_role: "Role",
291
292
  # protocols: ["SFTP"], # accepts SFTP, FTP, FTPS
292
293
  # security_policy_name: "SecurityPolicyName",
@@ -437,6 +438,11 @@ module Aws::Transfer
437
438
  # of your choosing. The `API_GATEWAY` setting requires you to provide
438
439
  # an API Gateway endpoint URL to call for authentication using the
439
440
  # `IdentityProviderDetails` parameter.
441
+ #
442
+ # Use the `LAMBDA` value to directly use a Lambda function as your
443
+ # identity provider. If you choose this value, you must specify the
444
+ # ARN for the lambda function in the `Function` parameter for the
445
+ # `IdentityProviderDetails` data type.
440
446
  # @return [String]
441
447
  #
442
448
  # @!attribute [rw] logging_role
@@ -1583,6 +1589,11 @@ module Aws::Transfer
1583
1589
  # of your choosing. The `API_GATEWAY` setting requires you to provide
1584
1590
  # an API Gateway endpoint URL to call for authentication using the
1585
1591
  # `IdentityProviderDetails` parameter.
1592
+ #
1593
+ # Use the `LAMBDA` value to directly use a Lambda function as your
1594
+ # identity provider. If you choose this value, you must specify the
1595
+ # ARN for the lambda function in the `Function` parameter for the
1596
+ # `IdentityProviderDetails` data type.
1586
1597
  # @return [String]
1587
1598
  #
1588
1599
  # @!attribute [rw] logging_role
@@ -2095,6 +2106,7 @@ module Aws::Transfer
2095
2106
  # url: "Url",
2096
2107
  # invocation_role: "Role",
2097
2108
  # directory_id: "DirectoryId",
2109
+ # function: "Function",
2098
2110
  # }
2099
2111
  #
2100
2112
  # @!attribute [rw] url
@@ -2112,12 +2124,17 @@ module Aws::Transfer
2112
2124
  # that you want to stop sharing.
2113
2125
  # @return [String]
2114
2126
  #
2127
+ # @!attribute [rw] function
2128
+ # The ARN for a lambda function to use for the Identity provider.
2129
+ # @return [String]
2130
+ #
2115
2131
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/IdentityProviderDetails AWS API Documentation
2116
2132
  #
2117
2133
  class IdentityProviderDetails < Struct.new(
2118
2134
  :url,
2119
2135
  :invocation_role,
2120
- :directory_id)
2136
+ :directory_id,
2137
+ :function)
2121
2138
  SENSITIVE = []
2122
2139
  include Aws::Structure
2123
2140
  end
@@ -2798,6 +2815,11 @@ module Aws::Transfer
2798
2815
  # of your choosing. The `API_GATEWAY` setting requires you to provide
2799
2816
  # an API Gateway endpoint URL to call for authentication using the
2800
2817
  # `IdentityProviderDetails` parameter.
2818
+ #
2819
+ # Use the `LAMBDA` value to directly use a Lambda function as your
2820
+ # identity provider. If you choose this value, you must specify the
2821
+ # ARN for the lambda function in the `Function` parameter for the
2822
+ # `IdentityProviderDetails` data type.
2801
2823
  # @return [String]
2802
2824
  #
2803
2825
  # @!attribute [rw] endpoint_type
@@ -3768,6 +3790,7 @@ module Aws::Transfer
3768
3790
  # url: "Url",
3769
3791
  # invocation_role: "Role",
3770
3792
  # directory_id: "DirectoryId",
3793
+ # function: "Function",
3771
3794
  # },
3772
3795
  # logging_role: "NullableRole",
3773
3796
  # protocols: ["SFTP"], # accepts SFTP, FTP, FTPS
@@ -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.40.0'
51
+ GEM_VERSION = '1.44.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.40.0
4
+ version: 1.44.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-09-28 00:00:00.000000000 Z
11
+ date: 2021-11-30 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.120.0
22
+ version: 3.122.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.120.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement