aws-sdk-transfer 1.107.0 → 1.109.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-transfer/client.rb +379 -10
- data/lib/aws-sdk-transfer/client_api.rb +269 -0
- data/lib/aws-sdk-transfer/types.rb +634 -16
- data/lib/aws-sdk-transfer.rb +1 -1
- data/sig/client.rbs +111 -4
- data/sig/types.rbs +178 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ba44624d87f5ff63ccf597bc03442db29712bfd3a6ca4368a8d1f38563e74d42
|
4
|
+
data.tar.gz: 746ab633d1e7f69528ff33cc7a3944f21958a585bec03a2322a10d891c006165
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24d2196b7c333903f9f0d9166ceb5ea8e739ba3e05ac98f8461f2211139d1d5ba973b29e8a837f7225186bd09b4525c567ed4a9496943266016add68fb65929e
|
7
|
+
data.tar.gz: 6656808f9fb52e53798a49bb6e4b44e74ed4e0de420826a7c1c485f504856d850859710e02ce7021d7dc5db4edf8453ac5a3b092417c71ec9a20981491f965d1
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.109.0 (2024-12-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added AS2 agreement configurations to control filename preservation and message signing enforcement. Added AS2 connector configuration to preserve content type from S3 objects.
|
8
|
+
|
9
|
+
1.108.0 (2024-12-02)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - AWS Transfer Family now offers Web apps that enables simple and secure access to data stored in Amazon S3.
|
13
|
+
|
4
14
|
1.107.0 (2024-11-06)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.109.0
|
@@ -694,6 +694,31 @@ module Aws::Transfer
|
|
694
694
|
# @option params [Array<Types::Tag>] :tags
|
695
695
|
# Key-value pairs that can be used to group and search for agreements.
|
696
696
|
#
|
697
|
+
# @option params [String] :preserve_filename
|
698
|
+
# Determines whether or not Transfer Family appends a unique string of
|
699
|
+
# characters to the end of the AS2 message payload filename when saving
|
700
|
+
# it.
|
701
|
+
#
|
702
|
+
# * `ENABLED`: the filename provided by your trading parter is preserved
|
703
|
+
# when the file is saved.
|
704
|
+
#
|
705
|
+
# * `DISABLED` (default value): when Transfer Family saves the file, the
|
706
|
+
# filename is adjusted, as described in [File names and locations][1].
|
707
|
+
#
|
708
|
+
#
|
709
|
+
#
|
710
|
+
# [1]: https://docs.aws.amazon.com/transfer/latest/userguide/send-as2-messages.html#file-names-as2
|
711
|
+
#
|
712
|
+
# @option params [String] :enforce_message_signing
|
713
|
+
# Determines whether or not unsigned messages from your trading partners
|
714
|
+
# will be accepted.
|
715
|
+
#
|
716
|
+
# * `ENABLED`: Transfer Family rejects unsigned messages from your
|
717
|
+
# trading partner.
|
718
|
+
#
|
719
|
+
# * `DISABLED` (default value): Transfer Family accepts unsigned
|
720
|
+
# messages from your trading partner.
|
721
|
+
#
|
697
722
|
# @return [Types::CreateAgreementResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
698
723
|
#
|
699
724
|
# * {Types::CreateAgreementResponse#agreement_id #agreement_id} => String
|
@@ -714,6 +739,8 @@ module Aws::Transfer
|
|
714
739
|
# value: "TagValue", # required
|
715
740
|
# },
|
716
741
|
# ],
|
742
|
+
# preserve_filename: "ENABLED", # accepts ENABLED, DISABLED
|
743
|
+
# enforce_message_signing: "ENABLED", # accepts ENABLED, DISABLED
|
717
744
|
# })
|
718
745
|
#
|
719
746
|
# @example Response structure
|
@@ -821,6 +848,7 @@ module Aws::Transfer
|
|
821
848
|
# mdn_signing_algorithm: "SHA256", # accepts SHA256, SHA384, SHA512, SHA1, NONE, DEFAULT
|
822
849
|
# mdn_response: "SYNC", # accepts SYNC, NONE
|
823
850
|
# basic_auth_secret_id: "As2ConnectorSecretId",
|
851
|
+
# preserve_content_type: "ENABLED", # accepts ENABLED, DISABLED
|
824
852
|
# },
|
825
853
|
# access_role: "Role", # required
|
826
854
|
# logging_role: "Role",
|
@@ -1045,7 +1073,8 @@ module Aws::Transfer
|
|
1045
1073
|
# `API_GATEWAY`. Accepts an array containing all of the information
|
1046
1074
|
# required to use a directory in `AWS_DIRECTORY_SERVICE` or invoke a
|
1047
1075
|
# customer-supplied authentication API, including the API Gateway URL.
|
1048
|
-
#
|
1076
|
+
# Cannot be specified when `IdentityProviderType` is set to
|
1077
|
+
# `SERVICE_MANAGED`.
|
1049
1078
|
#
|
1050
1079
|
# @option params [String] :identity_provider_type
|
1051
1080
|
# The mode of authentication for a server. The default value is
|
@@ -1463,6 +1492,63 @@ module Aws::Transfer
|
|
1463
1492
|
req.send_request(options)
|
1464
1493
|
end
|
1465
1494
|
|
1495
|
+
# Creates a web app based on specified parameters, and returns the ID
|
1496
|
+
# for the new web app.
|
1497
|
+
#
|
1498
|
+
# @option params [required, Types::WebAppIdentityProviderDetails] :identity_provider_details
|
1499
|
+
# You can provide a structure that contains the details for the identity
|
1500
|
+
# provider to use with your web app.
|
1501
|
+
#
|
1502
|
+
# @option params [String] :access_endpoint
|
1503
|
+
# The `AccessEndpoint` is the URL that you provide to your users for
|
1504
|
+
# them to interact with the Transfer Family web app. You can specify a
|
1505
|
+
# custom URL or use the default value.
|
1506
|
+
#
|
1507
|
+
# @option params [Types::WebAppUnits] :web_app_units
|
1508
|
+
# A union that contains the value for number of concurrent connections
|
1509
|
+
# or the user sessions on your web app.
|
1510
|
+
#
|
1511
|
+
# @option params [Array<Types::Tag>] :tags
|
1512
|
+
# Key-value pairs that can be used to group and search for web apps.
|
1513
|
+
#
|
1514
|
+
# @return [Types::CreateWebAppResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1515
|
+
#
|
1516
|
+
# * {Types::CreateWebAppResponse#web_app_id #web_app_id} => String
|
1517
|
+
#
|
1518
|
+
# @example Request syntax with placeholder values
|
1519
|
+
#
|
1520
|
+
# resp = client.create_web_app({
|
1521
|
+
# identity_provider_details: { # required
|
1522
|
+
# identity_center_config: {
|
1523
|
+
# instance_arn: "IdentityCenterInstanceArn",
|
1524
|
+
# role: "Role",
|
1525
|
+
# },
|
1526
|
+
# },
|
1527
|
+
# access_endpoint: "WebAppAccessEndpoint",
|
1528
|
+
# web_app_units: {
|
1529
|
+
# provisioned: 1,
|
1530
|
+
# },
|
1531
|
+
# tags: [
|
1532
|
+
# {
|
1533
|
+
# key: "TagKey", # required
|
1534
|
+
# value: "TagValue", # required
|
1535
|
+
# },
|
1536
|
+
# ],
|
1537
|
+
# })
|
1538
|
+
#
|
1539
|
+
# @example Response structure
|
1540
|
+
#
|
1541
|
+
# resp.web_app_id #=> String
|
1542
|
+
#
|
1543
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/CreateWebApp AWS API Documentation
|
1544
|
+
#
|
1545
|
+
# @overload create_web_app(params = {})
|
1546
|
+
# @param [Hash] params ({})
|
1547
|
+
def create_web_app(params = {}, options = {})
|
1548
|
+
req = build_request(:create_web_app, params)
|
1549
|
+
req.send_request(options)
|
1550
|
+
end
|
1551
|
+
|
1466
1552
|
# Allows you to create a workflow with specified steps and step details
|
1467
1553
|
# the workflow invokes after file transfer completes. After creating a
|
1468
1554
|
# workflow, you can associate the workflow created with any transfer
|
@@ -1911,6 +1997,52 @@ module Aws::Transfer
|
|
1911
1997
|
req.send_request(options)
|
1912
1998
|
end
|
1913
1999
|
|
2000
|
+
# Deletes the specified web app.
|
2001
|
+
#
|
2002
|
+
# @option params [required, String] :web_app_id
|
2003
|
+
# Provide the unique identifier for the web app that you are deleting.
|
2004
|
+
#
|
2005
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2006
|
+
#
|
2007
|
+
# @example Request syntax with placeholder values
|
2008
|
+
#
|
2009
|
+
# resp = client.delete_web_app({
|
2010
|
+
# web_app_id: "WebAppId", # required
|
2011
|
+
# })
|
2012
|
+
#
|
2013
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DeleteWebApp AWS API Documentation
|
2014
|
+
#
|
2015
|
+
# @overload delete_web_app(params = {})
|
2016
|
+
# @param [Hash] params ({})
|
2017
|
+
def delete_web_app(params = {}, options = {})
|
2018
|
+
req = build_request(:delete_web_app, params)
|
2019
|
+
req.send_request(options)
|
2020
|
+
end
|
2021
|
+
|
2022
|
+
# Deletes the `WebAppCustomization` object that corresponds to the web
|
2023
|
+
# app ID specified.
|
2024
|
+
#
|
2025
|
+
# @option params [required, String] :web_app_id
|
2026
|
+
# Provide the unique identifier for the web app that contains the
|
2027
|
+
# customizations that you are deleting.
|
2028
|
+
#
|
2029
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2030
|
+
#
|
2031
|
+
# @example Request syntax with placeholder values
|
2032
|
+
#
|
2033
|
+
# resp = client.delete_web_app_customization({
|
2034
|
+
# web_app_id: "WebAppId", # required
|
2035
|
+
# })
|
2036
|
+
#
|
2037
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DeleteWebAppCustomization AWS API Documentation
|
2038
|
+
#
|
2039
|
+
# @overload delete_web_app_customization(params = {})
|
2040
|
+
# @param [Hash] params ({})
|
2041
|
+
def delete_web_app_customization(params = {}, options = {})
|
2042
|
+
req = build_request(:delete_web_app_customization, params)
|
2043
|
+
req.send_request(options)
|
2044
|
+
end
|
2045
|
+
|
1914
2046
|
# Deletes the specified workflow.
|
1915
2047
|
#
|
1916
2048
|
# @option params [required, String] :workflow_id
|
@@ -2035,6 +2167,8 @@ module Aws::Transfer
|
|
2035
2167
|
# resp.agreement.tags #=> Array
|
2036
2168
|
# resp.agreement.tags[0].key #=> String
|
2037
2169
|
# resp.agreement.tags[0].value #=> String
|
2170
|
+
# resp.agreement.preserve_filename #=> String, one of "ENABLED", "DISABLED"
|
2171
|
+
# resp.agreement.enforce_message_signing #=> String, one of "ENABLED", "DISABLED"
|
2038
2172
|
#
|
2039
2173
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribeAgreement AWS API Documentation
|
2040
2174
|
#
|
@@ -2118,6 +2252,7 @@ module Aws::Transfer
|
|
2118
2252
|
# resp.connector.as_2_config.mdn_signing_algorithm #=> String, one of "SHA256", "SHA384", "SHA512", "SHA1", "NONE", "DEFAULT"
|
2119
2253
|
# resp.connector.as_2_config.mdn_response #=> String, one of "SYNC", "NONE"
|
2120
2254
|
# resp.connector.as_2_config.basic_auth_secret_id #=> String
|
2255
|
+
# resp.connector.as_2_config.preserve_content_type #=> String, one of "ENABLED", "DISABLED"
|
2121
2256
|
# resp.connector.access_role #=> String
|
2122
2257
|
# resp.connector.logging_role #=> String
|
2123
2258
|
# resp.connector.tags #=> Array
|
@@ -2486,6 +2621,77 @@ module Aws::Transfer
|
|
2486
2621
|
req.send_request(options)
|
2487
2622
|
end
|
2488
2623
|
|
2624
|
+
# Describes the web app that's identified by `WebAppId`.
|
2625
|
+
#
|
2626
|
+
# @option params [required, String] :web_app_id
|
2627
|
+
# Provide the unique identifier for the web app.
|
2628
|
+
#
|
2629
|
+
# @return [Types::DescribeWebAppResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2630
|
+
#
|
2631
|
+
# * {Types::DescribeWebAppResponse#web_app #web_app} => Types::DescribedWebApp
|
2632
|
+
#
|
2633
|
+
# @example Request syntax with placeholder values
|
2634
|
+
#
|
2635
|
+
# resp = client.describe_web_app({
|
2636
|
+
# web_app_id: "WebAppId", # required
|
2637
|
+
# })
|
2638
|
+
#
|
2639
|
+
# @example Response structure
|
2640
|
+
#
|
2641
|
+
# resp.web_app.arn #=> String
|
2642
|
+
# resp.web_app.web_app_id #=> String
|
2643
|
+
# resp.web_app.described_identity_provider_details.identity_center_config.application_arn #=> String
|
2644
|
+
# resp.web_app.described_identity_provider_details.identity_center_config.instance_arn #=> String
|
2645
|
+
# resp.web_app.described_identity_provider_details.identity_center_config.role #=> String
|
2646
|
+
# resp.web_app.access_endpoint #=> String
|
2647
|
+
# resp.web_app.web_app_endpoint #=> String
|
2648
|
+
# resp.web_app.web_app_units.provisioned #=> Integer
|
2649
|
+
# resp.web_app.tags #=> Array
|
2650
|
+
# resp.web_app.tags[0].key #=> String
|
2651
|
+
# resp.web_app.tags[0].value #=> String
|
2652
|
+
#
|
2653
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribeWebApp AWS API Documentation
|
2654
|
+
#
|
2655
|
+
# @overload describe_web_app(params = {})
|
2656
|
+
# @param [Hash] params ({})
|
2657
|
+
def describe_web_app(params = {}, options = {})
|
2658
|
+
req = build_request(:describe_web_app, params)
|
2659
|
+
req.send_request(options)
|
2660
|
+
end
|
2661
|
+
|
2662
|
+
# Describes the web app customization object that's identified by
|
2663
|
+
# `WebAppId`.
|
2664
|
+
#
|
2665
|
+
# @option params [required, String] :web_app_id
|
2666
|
+
# Provide the unique identifier for the web app.
|
2667
|
+
#
|
2668
|
+
# @return [Types::DescribeWebAppCustomizationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2669
|
+
#
|
2670
|
+
# * {Types::DescribeWebAppCustomizationResponse#web_app_customization #web_app_customization} => Types::DescribedWebAppCustomization
|
2671
|
+
#
|
2672
|
+
# @example Request syntax with placeholder values
|
2673
|
+
#
|
2674
|
+
# resp = client.describe_web_app_customization({
|
2675
|
+
# web_app_id: "WebAppId", # required
|
2676
|
+
# })
|
2677
|
+
#
|
2678
|
+
# @example Response structure
|
2679
|
+
#
|
2680
|
+
# resp.web_app_customization.arn #=> String
|
2681
|
+
# resp.web_app_customization.web_app_id #=> String
|
2682
|
+
# resp.web_app_customization.title #=> String
|
2683
|
+
# resp.web_app_customization.logo_file #=> String
|
2684
|
+
# resp.web_app_customization.favicon_file #=> String
|
2685
|
+
#
|
2686
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribeWebAppCustomization AWS API Documentation
|
2687
|
+
#
|
2688
|
+
# @overload describe_web_app_customization(params = {})
|
2689
|
+
# @param [Hash] params ({})
|
2690
|
+
def describe_web_app_customization(params = {}, options = {})
|
2691
|
+
req = build_request(:describe_web_app_customization, params)
|
2692
|
+
req.send_request(options)
|
2693
|
+
end
|
2694
|
+
|
2489
2695
|
# Describes the specified workflow.
|
2490
2696
|
#
|
2491
2697
|
# @option params [required, String] :workflow_id
|
@@ -2757,7 +2963,7 @@ module Aws::Transfer
|
|
2757
2963
|
# Lists the details for all the accesses you have on your server.
|
2758
2964
|
#
|
2759
2965
|
# @option params [Integer] :max_results
|
2760
|
-
#
|
2966
|
+
# The maximum number of items to return.
|
2761
2967
|
#
|
2762
2968
|
# @option params [String] :next_token
|
2763
2969
|
# When you can get additional results from the `ListAccesses` call, a
|
@@ -2812,7 +3018,7 @@ module Aws::Transfer
|
|
2812
3018
|
# left off.
|
2813
3019
|
#
|
2814
3020
|
# @option params [Integer] :max_results
|
2815
|
-
# The maximum number of
|
3021
|
+
# The maximum number of items to return.
|
2816
3022
|
#
|
2817
3023
|
# @option params [String] :next_token
|
2818
3024
|
# When you can get additional results from the `ListAgreements` call, a
|
@@ -2867,7 +3073,7 @@ module Aws::Transfer
|
|
2867
3073
|
# you left off.
|
2868
3074
|
#
|
2869
3075
|
# @option params [Integer] :max_results
|
2870
|
-
# The maximum number of
|
3076
|
+
# The maximum number of items to return.
|
2871
3077
|
#
|
2872
3078
|
# @option params [String] :next_token
|
2873
3079
|
# When you can get additional results from the `ListCertificates` call,
|
@@ -2914,7 +3120,7 @@ module Aws::Transfer
|
|
2914
3120
|
# Lists the connectors for the specified Region.
|
2915
3121
|
#
|
2916
3122
|
# @option params [Integer] :max_results
|
2917
|
-
# The maximum number of
|
3123
|
+
# The maximum number of items to return.
|
2918
3124
|
#
|
2919
3125
|
# @option params [String] :next_token
|
2920
3126
|
# When you can get additional results from the `ListConnectors` call, a
|
@@ -2961,7 +3167,7 @@ module Aws::Transfer
|
|
2961
3167
|
# </note>
|
2962
3168
|
#
|
2963
3169
|
# @option params [Integer] :max_results
|
2964
|
-
#
|
3170
|
+
# The maximum number of items to return.
|
2965
3171
|
#
|
2966
3172
|
# @option params [String] :next_token
|
2967
3173
|
# `ListExecutions` returns the `NextToken` parameter in the output. You
|
@@ -3101,7 +3307,7 @@ module Aws::Transfer
|
|
3101
3307
|
# `ServerId` parameter.
|
3102
3308
|
#
|
3103
3309
|
# @option params [Integer] :max_results
|
3104
|
-
# The maximum number of
|
3310
|
+
# The maximum number of items to return.
|
3105
3311
|
#
|
3106
3312
|
# @option params [String] :next_token
|
3107
3313
|
# When there are additional results that were not returned, a
|
@@ -3154,7 +3360,7 @@ module Aws::Transfer
|
|
3154
3360
|
# from where you left off.
|
3155
3361
|
#
|
3156
3362
|
# @option params [Integer] :max_results
|
3157
|
-
# The maximum number of
|
3363
|
+
# The maximum number of items to return.
|
3158
3364
|
#
|
3159
3365
|
# @option params [String] :next_token
|
3160
3366
|
# When there are additional results that were not returned, a
|
@@ -3402,11 +3608,54 @@ module Aws::Transfer
|
|
3402
3608
|
req.send_request(options)
|
3403
3609
|
end
|
3404
3610
|
|
3611
|
+
# Lists all web apps associated with your Amazon Web Services account
|
3612
|
+
# for your current region.
|
3613
|
+
#
|
3614
|
+
# @option params [Integer] :max_results
|
3615
|
+
# The maximum number of items to return.
|
3616
|
+
#
|
3617
|
+
# @option params [String] :next_token
|
3618
|
+
# Returns the `NextToken` parameter in the output. You can then pass the
|
3619
|
+
# `NextToken` parameter in a subsequent command to continue listing
|
3620
|
+
# additional web apps.
|
3621
|
+
#
|
3622
|
+
# @return [Types::ListWebAppsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3623
|
+
#
|
3624
|
+
# * {Types::ListWebAppsResponse#next_token #next_token} => String
|
3625
|
+
# * {Types::ListWebAppsResponse#web_apps #web_apps} => Array<Types::ListedWebApp>
|
3626
|
+
#
|
3627
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3628
|
+
#
|
3629
|
+
# @example Request syntax with placeholder values
|
3630
|
+
#
|
3631
|
+
# resp = client.list_web_apps({
|
3632
|
+
# max_results: 1,
|
3633
|
+
# next_token: "NextToken",
|
3634
|
+
# })
|
3635
|
+
#
|
3636
|
+
# @example Response structure
|
3637
|
+
#
|
3638
|
+
# resp.next_token #=> String
|
3639
|
+
# resp.web_apps #=> Array
|
3640
|
+
# resp.web_apps[0].arn #=> String
|
3641
|
+
# resp.web_apps[0].web_app_id #=> String
|
3642
|
+
# resp.web_apps[0].access_endpoint #=> String
|
3643
|
+
# resp.web_apps[0].web_app_endpoint #=> String
|
3644
|
+
#
|
3645
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/ListWebApps AWS API Documentation
|
3646
|
+
#
|
3647
|
+
# @overload list_web_apps(params = {})
|
3648
|
+
# @param [Hash] params ({})
|
3649
|
+
def list_web_apps(params = {}, options = {})
|
3650
|
+
req = build_request(:list_web_apps, params)
|
3651
|
+
req.send_request(options)
|
3652
|
+
end
|
3653
|
+
|
3405
3654
|
# Lists all workflows associated with your Amazon Web Services account
|
3406
3655
|
# for your current region.
|
3407
3656
|
#
|
3408
3657
|
# @option params [Integer] :max_results
|
3409
|
-
#
|
3658
|
+
# The maximum number of items to return.
|
3410
3659
|
#
|
3411
3660
|
# @option params [String] :next_token
|
3412
3661
|
# `ListWorkflows` returns the `NextToken` parameter in the output. You
|
@@ -4151,6 +4400,31 @@ module Aws::Transfer
|
|
4151
4400
|
# provides `secretsmanager:GetSecretValue` permission to Secrets
|
4152
4401
|
# Manager.
|
4153
4402
|
#
|
4403
|
+
# @option params [String] :preserve_filename
|
4404
|
+
# Determines whether or not Transfer Family appends a unique string of
|
4405
|
+
# characters to the end of the AS2 message payload filename when saving
|
4406
|
+
# it.
|
4407
|
+
#
|
4408
|
+
# * `ENABLED`: the filename provided by your trading parter is preserved
|
4409
|
+
# when the file is saved.
|
4410
|
+
#
|
4411
|
+
# * `DISABLED` (default value): when Transfer Family saves the file, the
|
4412
|
+
# filename is adjusted, as described in [File names and locations][1].
|
4413
|
+
#
|
4414
|
+
#
|
4415
|
+
#
|
4416
|
+
# [1]: https://docs.aws.amazon.com/transfer/latest/userguide/send-as2-messages.html#file-names-as2
|
4417
|
+
#
|
4418
|
+
# @option params [String] :enforce_message_signing
|
4419
|
+
# Determines whether or not unsigned messages from your trading partners
|
4420
|
+
# will be accepted.
|
4421
|
+
#
|
4422
|
+
# * `ENABLED`: Transfer Family rejects unsigned messages from your
|
4423
|
+
# trading partner.
|
4424
|
+
#
|
4425
|
+
# * `DISABLED` (default value): Transfer Family accepts unsigned
|
4426
|
+
# messages from your trading partner.
|
4427
|
+
#
|
4154
4428
|
# @return [Types::UpdateAgreementResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4155
4429
|
#
|
4156
4430
|
# * {Types::UpdateAgreementResponse#agreement_id #agreement_id} => String
|
@@ -4166,6 +4440,8 @@ module Aws::Transfer
|
|
4166
4440
|
# partner_profile_id: "ProfileId",
|
4167
4441
|
# base_directory: "HomeDirectory",
|
4168
4442
|
# access_role: "Role",
|
4443
|
+
# preserve_filename: "ENABLED", # accepts ENABLED, DISABLED
|
4444
|
+
# enforce_message_signing: "ENABLED", # accepts ENABLED, DISABLED
|
4169
4445
|
# })
|
4170
4446
|
#
|
4171
4447
|
# @example Response structure
|
@@ -4299,6 +4575,7 @@ module Aws::Transfer
|
|
4299
4575
|
# mdn_signing_algorithm: "SHA256", # accepts SHA256, SHA384, SHA512, SHA1, NONE, DEFAULT
|
4300
4576
|
# mdn_response: "SYNC", # accepts SYNC, NONE
|
4301
4577
|
# basic_auth_secret_id: "As2ConnectorSecretId",
|
4578
|
+
# preserve_content_type: "ENABLED", # accepts ENABLED, DISABLED
|
4302
4579
|
# },
|
4303
4580
|
# access_role: "Role",
|
4304
4581
|
# logging_role: "Role",
|
@@ -4901,6 +5178,98 @@ module Aws::Transfer
|
|
4901
5178
|
req.send_request(options)
|
4902
5179
|
end
|
4903
5180
|
|
5181
|
+
# Assigns new properties to a web app. You can modify the access point,
|
5182
|
+
# identity provider details, and the web app units.
|
5183
|
+
#
|
5184
|
+
# @option params [required, String] :web_app_id
|
5185
|
+
# Provide the identifier of the web app that you are updating.
|
5186
|
+
#
|
5187
|
+
# @option params [Types::UpdateWebAppIdentityProviderDetails] :identity_provider_details
|
5188
|
+
# Provide updated identity provider values in a
|
5189
|
+
# `WebAppIdentityProviderDetails` object.
|
5190
|
+
#
|
5191
|
+
# @option params [String] :access_endpoint
|
5192
|
+
# The `AccessEndpoint` is the URL that you provide to your users for
|
5193
|
+
# them to interact with the Transfer Family web app. You can specify a
|
5194
|
+
# custom URL or use the default value.
|
5195
|
+
#
|
5196
|
+
# @option params [Types::WebAppUnits] :web_app_units
|
5197
|
+
# A union that contains the value for number of concurrent connections
|
5198
|
+
# or the user sessions on your web app.
|
5199
|
+
#
|
5200
|
+
# @return [Types::UpdateWebAppResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5201
|
+
#
|
5202
|
+
# * {Types::UpdateWebAppResponse#web_app_id #web_app_id} => String
|
5203
|
+
#
|
5204
|
+
# @example Request syntax with placeholder values
|
5205
|
+
#
|
5206
|
+
# resp = client.update_web_app({
|
5207
|
+
# web_app_id: "WebAppId", # required
|
5208
|
+
# identity_provider_details: {
|
5209
|
+
# identity_center_config: {
|
5210
|
+
# role: "Role",
|
5211
|
+
# },
|
5212
|
+
# },
|
5213
|
+
# access_endpoint: "WebAppAccessEndpoint",
|
5214
|
+
# web_app_units: {
|
5215
|
+
# provisioned: 1,
|
5216
|
+
# },
|
5217
|
+
# })
|
5218
|
+
#
|
5219
|
+
# @example Response structure
|
5220
|
+
#
|
5221
|
+
# resp.web_app_id #=> String
|
5222
|
+
#
|
5223
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/UpdateWebApp AWS API Documentation
|
5224
|
+
#
|
5225
|
+
# @overload update_web_app(params = {})
|
5226
|
+
# @param [Hash] params ({})
|
5227
|
+
def update_web_app(params = {}, options = {})
|
5228
|
+
req = build_request(:update_web_app, params)
|
5229
|
+
req.send_request(options)
|
5230
|
+
end
|
5231
|
+
|
5232
|
+
# Assigns new customization properties to a web app. You can modify the
|
5233
|
+
# icon file, logo file, and title.
|
5234
|
+
#
|
5235
|
+
# @option params [required, String] :web_app_id
|
5236
|
+
# Provide the identifier of the web app that you are updating.
|
5237
|
+
#
|
5238
|
+
# @option params [String] :title
|
5239
|
+
# Provide an updated title.
|
5240
|
+
#
|
5241
|
+
# @option params [String, StringIO, File] :logo_file
|
5242
|
+
# Specify logo file data string (in base64 encoding).
|
5243
|
+
#
|
5244
|
+
# @option params [String, StringIO, File] :favicon_file
|
5245
|
+
# Specify icon file data string (in base64 encoding).
|
5246
|
+
#
|
5247
|
+
# @return [Types::UpdateWebAppCustomizationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5248
|
+
#
|
5249
|
+
# * {Types::UpdateWebAppCustomizationResponse#web_app_id #web_app_id} => String
|
5250
|
+
#
|
5251
|
+
# @example Request syntax with placeholder values
|
5252
|
+
#
|
5253
|
+
# resp = client.update_web_app_customization({
|
5254
|
+
# web_app_id: "WebAppId", # required
|
5255
|
+
# title: "WebAppTitle",
|
5256
|
+
# logo_file: "data",
|
5257
|
+
# favicon_file: "data",
|
5258
|
+
# })
|
5259
|
+
#
|
5260
|
+
# @example Response structure
|
5261
|
+
#
|
5262
|
+
# resp.web_app_id #=> String
|
5263
|
+
#
|
5264
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/UpdateWebAppCustomization AWS API Documentation
|
5265
|
+
#
|
5266
|
+
# @overload update_web_app_customization(params = {})
|
5267
|
+
# @param [Hash] params ({})
|
5268
|
+
def update_web_app_customization(params = {}, options = {})
|
5269
|
+
req = build_request(:update_web_app_customization, params)
|
5270
|
+
req.send_request(options)
|
5271
|
+
end
|
5272
|
+
|
4904
5273
|
# @!endgroup
|
4905
5274
|
|
4906
5275
|
# @param params ({})
|
@@ -4919,7 +5288,7 @@ module Aws::Transfer
|
|
4919
5288
|
tracer: tracer
|
4920
5289
|
)
|
4921
5290
|
context[:gem_name] = 'aws-sdk-transfer'
|
4922
|
-
context[:gem_version] = '1.
|
5291
|
+
context[:gem_version] = '1.109.0'
|
4923
5292
|
Seahorse::Client::Request.new(handlers, context)
|
4924
5293
|
end
|
4925
5294
|
|