aws-sdk-transfer 1.42.0 → 1.43.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: f0cd88a91706f8d56bf43476729ec7e9272216dab4ac4716a30fd625a67e321c
4
- data.tar.gz: 12c08dcdb5be7441a16d1be7395b75613847c59fe04ba60c715a3a83150da328
3
+ metadata.gz: 24bc91950ddc4c3f800194aa45fef433ed6c4a86e4a1b3710ad8c19a6c0d449f
4
+ data.tar.gz: 789d5a5a296c65e84678445df9f277f4b5658a04ca42f9d99b672a25dbb4f5af
5
5
  SHA512:
6
- metadata.gz: 488d6460f375f5e0a2ee105146abdeaf5a7e8a09fb221d12fb894c0b911e195d87fd37f4efd1e3e45e41ae78cf6c24ab4f8d275c97da4512ff28a612d887a099
7
- data.tar.gz: bb076db498ed59a7602d31944972095afb2054aa663c7fa141587d27b8117b2b46b8c324ae045af16dceac5cefcd8b676a646cf63c5a6798ff0601bd9fab0435
6
+ metadata.gz: d2bd0f9449cbe31ca1bab476113d8a434acd9bedb961b23b02faf69325386869a64339d5ae4fefad5a10208aecb8f8378407f846cded7c205260e805c40e939a
7
+ data.tar.gz: 3a7bec93d5e183c16d4773bad20e19169c2c8bf7c0159303235b1cab92bff9e70123a8efadca7b8da0c84d61a981940598622c7df72ebc5ecacf418b05d3846b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.43.0 (2021-11-15)
5
+ ------------------
6
+
7
+ * Feature - AWS Transfer Family now supports integrating a custom identity provider using AWS Lambda
8
+
4
9
  1.42.0 (2021-11-04)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.42.0
1
+ 1.43.0
@@ -641,6 +641,11 @@ module Aws::Transfer
641
641
  # API Gateway endpoint URL to call for authentication using the
642
642
  # `IdentityProviderDetails` parameter.
643
643
  #
644
+ # Use the `LAMBDA` value to directly use a Lambda function as your
645
+ # identity provider. If you choose this value, you must specify the ARN
646
+ # for the lambda function in the `Function` parameter for the
647
+ # `IdentityProviderDetails` data type.
648
+ #
644
649
  # @option params [String] :logging_role
645
650
  # Specifies the Amazon Resource Name (ARN) of the Amazon Web Services
646
651
  # Identity and Access Management (IAM) role that allows a server to turn
@@ -710,8 +715,9 @@ module Aws::Transfer
710
715
  # url: "Url",
711
716
  # invocation_role: "Role",
712
717
  # directory_id: "DirectoryId",
718
+ # function: "Function",
713
719
  # },
714
- # identity_provider_type: "SERVICE_MANAGED", # accepts SERVICE_MANAGED, API_GATEWAY, AWS_DIRECTORY_SERVICE
720
+ # identity_provider_type: "SERVICE_MANAGED", # accepts SERVICE_MANAGED, API_GATEWAY, AWS_DIRECTORY_SERVICE, AWS_LAMBDA
715
721
  # logging_role: "Role",
716
722
  # protocols: ["SFTP"], # accepts SFTP, FTP, FTPS
717
723
  # security_policy_name: "SecurityPolicyName",
@@ -1431,7 +1437,8 @@ module Aws::Transfer
1431
1437
  # resp.server.identity_provider_details.url #=> String
1432
1438
  # resp.server.identity_provider_details.invocation_role #=> String
1433
1439
  # resp.server.identity_provider_details.directory_id #=> String
1434
- # resp.server.identity_provider_type #=> String, one of "SERVICE_MANAGED", "API_GATEWAY", "AWS_DIRECTORY_SERVICE"
1440
+ # resp.server.identity_provider_details.function #=> String
1441
+ # resp.server.identity_provider_type #=> String, one of "SERVICE_MANAGED", "API_GATEWAY", "AWS_DIRECTORY_SERVICE", "AWS_LAMBDA"
1435
1442
  # resp.server.logging_role #=> String
1436
1443
  # resp.server.protocols #=> Array
1437
1444
  # resp.server.protocols[0] #=> String, one of "SFTP", "FTP", "FTPS"
@@ -1822,7 +1829,7 @@ module Aws::Transfer
1822
1829
  # resp.servers #=> Array
1823
1830
  # resp.servers[0].arn #=> String
1824
1831
  # resp.servers[0].domain #=> String, one of "S3", "EFS"
1825
- # resp.servers[0].identity_provider_type #=> String, one of "SERVICE_MANAGED", "API_GATEWAY", "AWS_DIRECTORY_SERVICE"
1832
+ # resp.servers[0].identity_provider_type #=> String, one of "SERVICE_MANAGED", "API_GATEWAY", "AWS_DIRECTORY_SERVICE", "AWS_LAMBDA"
1826
1833
  # resp.servers[0].endpoint_type #=> String, one of "PUBLIC", "VPC", "VPC_ENDPOINT"
1827
1834
  # resp.servers[0].logging_role #=> String
1828
1835
  # resp.servers[0].server_id #=> String
@@ -2593,6 +2600,7 @@ module Aws::Transfer
2593
2600
  # url: "Url",
2594
2601
  # invocation_role: "Role",
2595
2602
  # directory_id: "DirectoryId",
2603
+ # function: "Function",
2596
2604
  # },
2597
2605
  # logging_role: "NullableRole",
2598
2606
  # protocols: ["SFTP"], # accepts SFTP, FTP, FTPS
@@ -2789,7 +2797,7 @@ module Aws::Transfer
2789
2797
  params: params,
2790
2798
  config: config)
2791
2799
  context[:gem_name] = 'aws-sdk-transfer'
2792
- context[:gem_version] = '1.42.0'
2800
+ context[:gem_version] = '1.43.0'
2793
2801
  Seahorse::Client::Request.new(handlers, context)
2794
2802
  end
2795
2803
 
@@ -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.42.0'
51
+ GEM_VERSION = '1.43.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.42.0
4
+ version: 1.43.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-04 00:00:00.000000000 Z
11
+ date: 2021-11-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core