aws-sdk-transfer 1.113.0 → 1.115.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-transfer/client.rb +124 -7
- data/lib/aws-sdk-transfer/client_api.rb +50 -0
- data/lib/aws-sdk-transfer/types.rb +151 -18
- data/lib/aws-sdk-transfer.rb +1 -1
- data/sig/client.rbs +25 -1
- data/sig/types.rbs +25 -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: 8b6da5e79924fa59726ec52b375afd9fd6d932c4b91cceab07c2712663179ca4
|
4
|
+
data.tar.gz: 3667b1f84864d39ebd8ce96cb00c82c2283d94c7405320d1b1aaa3ac441f8871
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a8dddeb8e140aa8caeadf66bff648a5a9021fe8188289e67d4b631bdcceb896cc9bba05d7f922728c7a79f8d0f935867148f93ec62d5bed40ba59496fd0427c2
|
7
|
+
data.tar.gz: 9643860991da92e7de6f3a8d47894ceafc373e3b2f494964f8e167a73f1c42d236f51de26c3ce59bf10badf087faaf450a3d77ce265a2294cf7c71b411bae6bd
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.115.0 (2025-04-07)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This launch enables customers to manage contents of their remote directories, by deleting old files or moving files to archive folders in remote servers once they have been retrieved. Customers will be able to automate the process using event-driven architecture.
|
8
|
+
|
9
|
+
1.114.0 (2025-03-31)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add WebAppEndpointPolicy support for WebApps
|
13
|
+
|
4
14
|
1.113.0 (2025-02-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.115.0
|
@@ -1151,7 +1151,7 @@ module Aws::Transfer
|
|
1151
1151
|
# @option params [String] :logging_role
|
1152
1152
|
# The Amazon Resource Name (ARN) of the Identity and Access Management
|
1153
1153
|
# (IAM) role that allows a server to turn on Amazon CloudWatch logging
|
1154
|
-
# for Amazon S3 or Amazon
|
1154
|
+
# for Amazon S3 or Amazon EFS events. When set, you can view user
|
1155
1155
|
# activity in your CloudWatch logs.
|
1156
1156
|
#
|
1157
1157
|
# @option params [String] :post_authentication_login_banner
|
@@ -1549,11 +1549,25 @@ module Aws::Transfer
|
|
1549
1549
|
# You can provide a structure that contains the details for the identity
|
1550
1550
|
# provider to use with your web app.
|
1551
1551
|
#
|
1552
|
+
# For more details about this parameter, see [Configure your identity
|
1553
|
+
# provider for Transfer Family web apps][1].
|
1554
|
+
#
|
1555
|
+
#
|
1556
|
+
#
|
1557
|
+
# [1]: https://docs.aws.amazon.com/transfer/latest/userguide/webapp-identity-center.html
|
1558
|
+
#
|
1552
1559
|
# @option params [String] :access_endpoint
|
1553
1560
|
# The `AccessEndpoint` is the URL that you provide to your users for
|
1554
1561
|
# them to interact with the Transfer Family web app. You can specify a
|
1555
1562
|
# custom URL or use the default value.
|
1556
1563
|
#
|
1564
|
+
# Before you enter a custom URL for this parameter, follow the steps
|
1565
|
+
# described in [Update your access endpoint with a custom URL][1].
|
1566
|
+
#
|
1567
|
+
#
|
1568
|
+
#
|
1569
|
+
# [1]: https://docs.aws.amazon.com/transfer/latest/userguide/webapp-customize.html
|
1570
|
+
#
|
1557
1571
|
# @option params [Types::WebAppUnits] :web_app_units
|
1558
1572
|
# A union that contains the value for number of concurrent connections
|
1559
1573
|
# or the user sessions on your web app.
|
@@ -1561,6 +1575,13 @@ module Aws::Transfer
|
|
1561
1575
|
# @option params [Array<Types::Tag>] :tags
|
1562
1576
|
# Key-value pairs that can be used to group and search for web apps.
|
1563
1577
|
#
|
1578
|
+
# @option params [String] :web_app_endpoint_policy
|
1579
|
+
# Setting for the type of endpoint policy for the web app. The default
|
1580
|
+
# value is `STANDARD`.
|
1581
|
+
#
|
1582
|
+
# If you are creating the web app in an Amazon Web Services GovCloud
|
1583
|
+
# (US) Region, you can set this parameter to `FIPS`.
|
1584
|
+
#
|
1564
1585
|
# @return [Types::CreateWebAppResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1565
1586
|
#
|
1566
1587
|
# * {Types::CreateWebAppResponse#web_app_id #web_app_id} => String
|
@@ -1584,6 +1605,7 @@ module Aws::Transfer
|
|
1584
1605
|
# value: "TagValue", # required
|
1585
1606
|
# },
|
1586
1607
|
# ],
|
1608
|
+
# web_app_endpoint_policy: "FIPS", # accepts FIPS, STANDARD
|
1587
1609
|
# })
|
1588
1610
|
#
|
1589
1611
|
# @example Response structure
|
@@ -2704,6 +2726,7 @@ module Aws::Transfer
|
|
2704
2726
|
# resp.web_app.tags #=> Array
|
2705
2727
|
# resp.web_app.tags[0].key #=> String
|
2706
2728
|
# resp.web_app.tags[0].value #=> String
|
2729
|
+
# resp.web_app.web_app_endpoint_policy #=> String, one of "FIPS", "STANDARD"
|
2707
2730
|
#
|
2708
2731
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribeWebApp AWS API Documentation
|
2709
2732
|
#
|
@@ -2839,6 +2862,14 @@ module Aws::Transfer
|
|
2839
2862
|
# Imports the signing and encryption certificates that you need to
|
2840
2863
|
# create local (AS2) profiles and partner profiles.
|
2841
2864
|
#
|
2865
|
+
# You can import both the certificate and its chain in the `Certificate`
|
2866
|
+
# parameter.
|
2867
|
+
#
|
2868
|
+
# <note markdown="1"> If you use the `Certificate` parameter to upload both the certificate
|
2869
|
+
# and its chain, don't use the `CertificateChain` parameter.
|
2870
|
+
#
|
2871
|
+
# </note>
|
2872
|
+
#
|
2842
2873
|
# @option params [required, String] :usage
|
2843
2874
|
# Specifies how this certificate is used. It can be used in the
|
2844
2875
|
# following ways:
|
@@ -2857,23 +2888,35 @@ module Aws::Transfer
|
|
2857
2888
|
# * For the SDK, specify the raw content of a certificate file. For
|
2858
2889
|
# example, `` --certificate "`cat encryption-cert.pem`" ``.
|
2859
2890
|
#
|
2891
|
+
# <note markdown="1"> You can provide both the certificate and its chain in this parameter,
|
2892
|
+
# without needing to use the `CertificateChain` parameter. If you use
|
2893
|
+
# this parameter for both the certificate and its chain, do not use the
|
2894
|
+
# `CertificateChain` parameter.
|
2895
|
+
#
|
2896
|
+
# </note>
|
2897
|
+
#
|
2860
2898
|
# @option params [String] :certificate_chain
|
2861
2899
|
# An optional list of certificates that make up the chain for the
|
2862
2900
|
# certificate that's being imported.
|
2863
2901
|
#
|
2864
2902
|
# @option params [String] :private_key
|
2865
|
-
# * For the CLI, provide a file path for a private key in URI format.
|
2866
|
-
# example, `--private-key file://encryption-key.pem`.
|
2867
|
-
# you can provide the raw content of the private key
|
2903
|
+
# * For the CLI, provide a file path for a private key in URI format.
|
2904
|
+
# For example, `--private-key file://encryption-key.pem`.
|
2905
|
+
# Alternatively, you can provide the raw content of the private key
|
2906
|
+
# file.
|
2868
2907
|
#
|
2869
2908
|
# * For the SDK, specify the raw content of a private key file. For
|
2870
2909
|
# example, `` --private-key "`cat encryption-key.pem`" ``
|
2871
2910
|
#
|
2872
2911
|
# @option params [Time,DateTime,Date,Integer,String] :active_date
|
2873
2912
|
# An optional date that specifies when the certificate becomes active.
|
2913
|
+
# If you do not specify a value, `ActiveDate` takes the same value as
|
2914
|
+
# `NotBeforeDate`, which is specified by the CA.
|
2874
2915
|
#
|
2875
2916
|
# @option params [Time,DateTime,Date,Integer,String] :inactive_date
|
2876
2917
|
# An optional date that specifies when the certificate becomes inactive.
|
2918
|
+
# If you do not specify a value, `InactiveDate` takes the same value as
|
2919
|
+
# `NotAfterDate`, which is specified by the CA.
|
2877
2920
|
#
|
2878
2921
|
# @option params [String] :description
|
2879
2922
|
# A short description that helps identify the certificate.
|
@@ -3945,6 +3988,76 @@ module Aws::Transfer
|
|
3945
3988
|
req.send_request(options)
|
3946
3989
|
end
|
3947
3990
|
|
3991
|
+
# Deletes a file or directory on the remote SFTP server.
|
3992
|
+
#
|
3993
|
+
# @option params [required, String] :connector_id
|
3994
|
+
# The unique identifier for the connector.
|
3995
|
+
#
|
3996
|
+
# @option params [required, String] :delete_path
|
3997
|
+
# The absolute path of the file or directory to delete. You can only
|
3998
|
+
# specify one path per call to this operation.
|
3999
|
+
#
|
4000
|
+
# @return [Types::StartRemoteDeleteResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4001
|
+
#
|
4002
|
+
# * {Types::StartRemoteDeleteResponse#delete_id #delete_id} => String
|
4003
|
+
#
|
4004
|
+
# @example Request syntax with placeholder values
|
4005
|
+
#
|
4006
|
+
# resp = client.start_remote_delete({
|
4007
|
+
# connector_id: "ConnectorId", # required
|
4008
|
+
# delete_path: "FilePath", # required
|
4009
|
+
# })
|
4010
|
+
#
|
4011
|
+
# @example Response structure
|
4012
|
+
#
|
4013
|
+
# resp.delete_id #=> String
|
4014
|
+
#
|
4015
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/StartRemoteDelete AWS API Documentation
|
4016
|
+
#
|
4017
|
+
# @overload start_remote_delete(params = {})
|
4018
|
+
# @param [Hash] params ({})
|
4019
|
+
def start_remote_delete(params = {}, options = {})
|
4020
|
+
req = build_request(:start_remote_delete, params)
|
4021
|
+
req.send_request(options)
|
4022
|
+
end
|
4023
|
+
|
4024
|
+
# Moves or renames a file or directory on the remote SFTP server.
|
4025
|
+
#
|
4026
|
+
# @option params [required, String] :connector_id
|
4027
|
+
# The unique identifier for the connector.
|
4028
|
+
#
|
4029
|
+
# @option params [required, String] :source_path
|
4030
|
+
# The absolute path of the file or directory to move or rename. You can
|
4031
|
+
# only specify one path per call to this operation.
|
4032
|
+
#
|
4033
|
+
# @option params [required, String] :target_path
|
4034
|
+
# The absolute path for the target of the move/rename operation.
|
4035
|
+
#
|
4036
|
+
# @return [Types::StartRemoteMoveResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4037
|
+
#
|
4038
|
+
# * {Types::StartRemoteMoveResponse#move_id #move_id} => String
|
4039
|
+
#
|
4040
|
+
# @example Request syntax with placeholder values
|
4041
|
+
#
|
4042
|
+
# resp = client.start_remote_move({
|
4043
|
+
# connector_id: "ConnectorId", # required
|
4044
|
+
# source_path: "FilePath", # required
|
4045
|
+
# target_path: "FilePath", # required
|
4046
|
+
# })
|
4047
|
+
#
|
4048
|
+
# @example Response structure
|
4049
|
+
#
|
4050
|
+
# resp.move_id #=> String
|
4051
|
+
#
|
4052
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/StartRemoteMove AWS API Documentation
|
4053
|
+
#
|
4054
|
+
# @overload start_remote_move(params = {})
|
4055
|
+
# @param [Hash] params ({})
|
4056
|
+
def start_remote_move(params = {}, options = {})
|
4057
|
+
req = build_request(:start_remote_move, params)
|
4058
|
+
req.send_request(options)
|
4059
|
+
end
|
4060
|
+
|
3948
4061
|
# Changes the state of a file transfer protocol-enabled server from
|
3949
4062
|
# `OFFLINE` to `ONLINE`. It has no impact on a server that is already
|
3950
4063
|
# `ONLINE`. An `ONLINE` server can accept and process file transfer
|
@@ -4551,9 +4664,13 @@ module Aws::Transfer
|
|
4551
4664
|
#
|
4552
4665
|
# @option params [Time,DateTime,Date,Integer,String] :active_date
|
4553
4666
|
# An optional date that specifies when the certificate becomes active.
|
4667
|
+
# If you do not specify a value, `ActiveDate` takes the same value as
|
4668
|
+
# `NotBeforeDate`, which is specified by the CA.
|
4554
4669
|
#
|
4555
4670
|
# @option params [Time,DateTime,Date,Integer,String] :inactive_date
|
4556
4671
|
# An optional date that specifies when the certificate becomes inactive.
|
4672
|
+
# If you do not specify a value, `InactiveDate` takes the same value as
|
4673
|
+
# `NotAfterDate`, which is specified by the CA.
|
4557
4674
|
#
|
4558
4675
|
# @option params [String] :description
|
4559
4676
|
# A short description to help identify the certificate.
|
@@ -4912,7 +5029,7 @@ module Aws::Transfer
|
|
4912
5029
|
# @option params [String] :logging_role
|
4913
5030
|
# The Amazon Resource Name (ARN) of the Identity and Access Management
|
4914
5031
|
# (IAM) role that allows a server to turn on Amazon CloudWatch logging
|
4915
|
-
# for Amazon S3 or Amazon
|
5032
|
+
# for Amazon S3 or Amazon EFS events. When set, you can view user
|
4916
5033
|
# activity in your CloudWatch logs.
|
4917
5034
|
#
|
4918
5035
|
# @option params [String] :post_authentication_login_banner
|
@@ -5329,7 +5446,7 @@ module Aws::Transfer
|
|
5329
5446
|
# Specify logo file data string (in base64 encoding).
|
5330
5447
|
#
|
5331
5448
|
# @option params [String, StringIO, File] :favicon_file
|
5332
|
-
# Specify icon file data string (in base64 encoding).
|
5449
|
+
# Specify an icon file data string (in base64 encoding).
|
5333
5450
|
#
|
5334
5451
|
# @return [Types::UpdateWebAppCustomizationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5335
5452
|
#
|
@@ -5375,7 +5492,7 @@ module Aws::Transfer
|
|
5375
5492
|
tracer: tracer
|
5376
5493
|
)
|
5377
5494
|
context[:gem_name] = 'aws-sdk-transfer'
|
5378
|
-
context[:gem_version] = '1.
|
5495
|
+
context[:gem_version] = '1.115.0'
|
5379
5496
|
Seahorse::Client::Request.new(handlers, context)
|
5380
5497
|
end
|
5381
5498
|
|
@@ -71,6 +71,7 @@ module Aws::Transfer
|
|
71
71
|
DeleteCertificateRequest = Shapes::StructureShape.new(name: 'DeleteCertificateRequest')
|
72
72
|
DeleteConnectorRequest = Shapes::StructureShape.new(name: 'DeleteConnectorRequest')
|
73
73
|
DeleteHostKeyRequest = Shapes::StructureShape.new(name: 'DeleteHostKeyRequest')
|
74
|
+
DeleteId = Shapes::StringShape.new(name: 'DeleteId')
|
74
75
|
DeleteProfileRequest = Shapes::StructureShape.new(name: 'DeleteProfileRequest')
|
75
76
|
DeleteServerRequest = Shapes::StructureShape.new(name: 'DeleteServerRequest')
|
76
77
|
DeleteSshPublicKeyRequest = Shapes::StructureShape.new(name: 'DeleteSshPublicKeyRequest')
|
@@ -233,6 +234,7 @@ module Aws::Transfer
|
|
233
234
|
MdnSigningAlg = Shapes::StringShape.new(name: 'MdnSigningAlg')
|
234
235
|
Message = Shapes::StringShape.new(name: 'Message')
|
235
236
|
MessageSubject = Shapes::StringShape.new(name: 'MessageSubject')
|
237
|
+
MoveId = Shapes::StringShape.new(name: 'MoveId')
|
236
238
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
237
239
|
NullableRole = Shapes::StringShape.new(name: 'NullableRole')
|
238
240
|
OnPartialUploadWorkflowDetails = Shapes::ListShape.new(name: 'OnPartialUploadWorkflowDetails')
|
@@ -308,6 +310,10 @@ module Aws::Transfer
|
|
308
310
|
StartDirectoryListingResponse = Shapes::StructureShape.new(name: 'StartDirectoryListingResponse')
|
309
311
|
StartFileTransferRequest = Shapes::StructureShape.new(name: 'StartFileTransferRequest')
|
310
312
|
StartFileTransferResponse = Shapes::StructureShape.new(name: 'StartFileTransferResponse')
|
313
|
+
StartRemoteDeleteRequest = Shapes::StructureShape.new(name: 'StartRemoteDeleteRequest')
|
314
|
+
StartRemoteDeleteResponse = Shapes::StructureShape.new(name: 'StartRemoteDeleteResponse')
|
315
|
+
StartRemoteMoveRequest = Shapes::StructureShape.new(name: 'StartRemoteMoveRequest')
|
316
|
+
StartRemoteMoveResponse = Shapes::StructureShape.new(name: 'StartRemoteMoveResponse')
|
311
317
|
StartServerRequest = Shapes::StructureShape.new(name: 'StartServerRequest')
|
312
318
|
State = Shapes::StringShape.new(name: 'State')
|
313
319
|
Status = Shapes::StringShape.new(name: 'Status')
|
@@ -364,6 +370,7 @@ module Aws::Transfer
|
|
364
370
|
VpcId = Shapes::StringShape.new(name: 'VpcId')
|
365
371
|
WebAppAccessEndpoint = Shapes::StringShape.new(name: 'WebAppAccessEndpoint')
|
366
372
|
WebAppEndpoint = Shapes::StringShape.new(name: 'WebAppEndpoint')
|
373
|
+
WebAppEndpointPolicy = Shapes::StringShape.new(name: 'WebAppEndpointPolicy')
|
367
374
|
WebAppFaviconFile = Shapes::BlobShape.new(name: 'WebAppFaviconFile')
|
368
375
|
WebAppId = Shapes::StringShape.new(name: 'WebAppId')
|
369
376
|
WebAppIdentityProviderDetails = Shapes::UnionShape.new(name: 'WebAppIdentityProviderDetails')
|
@@ -511,6 +518,7 @@ module Aws::Transfer
|
|
511
518
|
CreateWebAppRequest.add_member(:access_endpoint, Shapes::ShapeRef.new(shape: WebAppAccessEndpoint, location_name: "AccessEndpoint"))
|
512
519
|
CreateWebAppRequest.add_member(:web_app_units, Shapes::ShapeRef.new(shape: WebAppUnits, location_name: "WebAppUnits"))
|
513
520
|
CreateWebAppRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
521
|
+
CreateWebAppRequest.add_member(:web_app_endpoint_policy, Shapes::ShapeRef.new(shape: WebAppEndpointPolicy, location_name: "WebAppEndpointPolicy"))
|
514
522
|
CreateWebAppRequest.struct_class = Types::CreateWebAppRequest
|
515
523
|
|
516
524
|
CreateWebAppResponse.add_member(:web_app_id, Shapes::ShapeRef.new(shape: WebAppId, required: true, location_name: "WebAppId"))
|
@@ -815,6 +823,7 @@ module Aws::Transfer
|
|
815
823
|
DescribedWebApp.add_member(:web_app_endpoint, Shapes::ShapeRef.new(shape: WebAppEndpoint, location_name: "WebAppEndpoint"))
|
816
824
|
DescribedWebApp.add_member(:web_app_units, Shapes::ShapeRef.new(shape: WebAppUnits, location_name: "WebAppUnits"))
|
817
825
|
DescribedWebApp.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
826
|
+
DescribedWebApp.add_member(:web_app_endpoint_policy, Shapes::ShapeRef.new(shape: WebAppEndpointPolicy, location_name: "WebAppEndpointPolicy"))
|
818
827
|
DescribedWebApp.struct_class = Types::DescribedWebApp
|
819
828
|
|
820
829
|
DescribedWebAppCustomization.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "Arn"))
|
@@ -1270,6 +1279,21 @@ module Aws::Transfer
|
|
1270
1279
|
StartFileTransferResponse.add_member(:transfer_id, Shapes::ShapeRef.new(shape: TransferId, required: true, location_name: "TransferId"))
|
1271
1280
|
StartFileTransferResponse.struct_class = Types::StartFileTransferResponse
|
1272
1281
|
|
1282
|
+
StartRemoteDeleteRequest.add_member(:connector_id, Shapes::ShapeRef.new(shape: ConnectorId, required: true, location_name: "ConnectorId"))
|
1283
|
+
StartRemoteDeleteRequest.add_member(:delete_path, Shapes::ShapeRef.new(shape: FilePath, required: true, location_name: "DeletePath"))
|
1284
|
+
StartRemoteDeleteRequest.struct_class = Types::StartRemoteDeleteRequest
|
1285
|
+
|
1286
|
+
StartRemoteDeleteResponse.add_member(:delete_id, Shapes::ShapeRef.new(shape: DeleteId, required: true, location_name: "DeleteId"))
|
1287
|
+
StartRemoteDeleteResponse.struct_class = Types::StartRemoteDeleteResponse
|
1288
|
+
|
1289
|
+
StartRemoteMoveRequest.add_member(:connector_id, Shapes::ShapeRef.new(shape: ConnectorId, required: true, location_name: "ConnectorId"))
|
1290
|
+
StartRemoteMoveRequest.add_member(:source_path, Shapes::ShapeRef.new(shape: FilePath, required: true, location_name: "SourcePath"))
|
1291
|
+
StartRemoteMoveRequest.add_member(:target_path, Shapes::ShapeRef.new(shape: FilePath, required: true, location_name: "TargetPath"))
|
1292
|
+
StartRemoteMoveRequest.struct_class = Types::StartRemoteMoveRequest
|
1293
|
+
|
1294
|
+
StartRemoteMoveResponse.add_member(:move_id, Shapes::ShapeRef.new(shape: MoveId, required: true, location_name: "MoveId"))
|
1295
|
+
StartRemoteMoveResponse.struct_class = Types::StartRemoteMoveResponse
|
1296
|
+
|
1273
1297
|
StartServerRequest.add_member(:server_id, Shapes::ShapeRef.new(shape: ServerId, required: true, location_name: "ServerId"))
|
1274
1298
|
StartServerRequest.struct_class = Types::StartServerRequest
|
1275
1299
|
|
@@ -2262,6 +2286,32 @@ module Aws::Transfer
|
|
2262
2286
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
2263
2287
|
end)
|
2264
2288
|
|
2289
|
+
api.add_operation(:start_remote_delete, Seahorse::Model::Operation.new.tap do |o|
|
2290
|
+
o.name = "StartRemoteDelete"
|
2291
|
+
o.http_method = "POST"
|
2292
|
+
o.http_request_uri = "/"
|
2293
|
+
o.input = Shapes::ShapeRef.new(shape: StartRemoteDeleteRequest)
|
2294
|
+
o.output = Shapes::ShapeRef.new(shape: StartRemoteDeleteResponse)
|
2295
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2296
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2297
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2298
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceError)
|
2299
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
2300
|
+
end)
|
2301
|
+
|
2302
|
+
api.add_operation(:start_remote_move, Seahorse::Model::Operation.new.tap do |o|
|
2303
|
+
o.name = "StartRemoteMove"
|
2304
|
+
o.http_method = "POST"
|
2305
|
+
o.http_request_uri = "/"
|
2306
|
+
o.input = Shapes::ShapeRef.new(shape: StartRemoteMoveRequest)
|
2307
|
+
o.output = Shapes::ShapeRef.new(shape: StartRemoteMoveResponse)
|
2308
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2309
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2310
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2311
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceError)
|
2312
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
2313
|
+
end)
|
2314
|
+
|
2265
2315
|
api.add_operation(:start_server, Seahorse::Model::Operation.new.tap do |o|
|
2266
2316
|
o.name = "StartServer"
|
2267
2317
|
o.http_method = "POST"
|
@@ -72,7 +72,7 @@ module Aws::Transfer
|
|
72
72
|
# @return [String]
|
73
73
|
#
|
74
74
|
# @!attribute [rw] mdn_response
|
75
|
-
# Used for outbound requests (from an Transfer Family
|
75
|
+
# Used for outbound requests (from an Transfer Family connector to a
|
76
76
|
# partner AS2 server) to determine whether the partner response for
|
77
77
|
# transfers is synchronous or asynchronous. Specify either of the
|
78
78
|
# following values:
|
@@ -878,7 +878,7 @@ module Aws::Transfer
|
|
878
878
|
# @!attribute [rw] logging_role
|
879
879
|
# The Amazon Resource Name (ARN) of the Identity and Access Management
|
880
880
|
# (IAM) role that allows a server to turn on Amazon CloudWatch logging
|
881
|
-
# for Amazon S3 or Amazon
|
881
|
+
# for Amazon S3 or Amazon EFS events. When set, you can view user
|
882
882
|
# activity in your CloudWatch logs.
|
883
883
|
# @return [String]
|
884
884
|
#
|
@@ -1231,12 +1231,26 @@ module Aws::Transfer
|
|
1231
1231
|
# @!attribute [rw] identity_provider_details
|
1232
1232
|
# You can provide a structure that contains the details for the
|
1233
1233
|
# identity provider to use with your web app.
|
1234
|
+
#
|
1235
|
+
# For more details about this parameter, see [Configure your identity
|
1236
|
+
# provider for Transfer Family web apps][1].
|
1237
|
+
#
|
1238
|
+
#
|
1239
|
+
#
|
1240
|
+
# [1]: https://docs.aws.amazon.com/transfer/latest/userguide/webapp-identity-center.html
|
1234
1241
|
# @return [Types::WebAppIdentityProviderDetails]
|
1235
1242
|
#
|
1236
1243
|
# @!attribute [rw] access_endpoint
|
1237
1244
|
# The `AccessEndpoint` is the URL that you provide to your users for
|
1238
1245
|
# them to interact with the Transfer Family web app. You can specify a
|
1239
1246
|
# custom URL or use the default value.
|
1247
|
+
#
|
1248
|
+
# Before you enter a custom URL for this parameter, follow the steps
|
1249
|
+
# described in [Update your access endpoint with a custom URL][1].
|
1250
|
+
#
|
1251
|
+
#
|
1252
|
+
#
|
1253
|
+
# [1]: https://docs.aws.amazon.com/transfer/latest/userguide/webapp-customize.html
|
1240
1254
|
# @return [String]
|
1241
1255
|
#
|
1242
1256
|
# @!attribute [rw] web_app_units
|
@@ -1248,13 +1262,22 @@ module Aws::Transfer
|
|
1248
1262
|
# Key-value pairs that can be used to group and search for web apps.
|
1249
1263
|
# @return [Array<Types::Tag>]
|
1250
1264
|
#
|
1265
|
+
# @!attribute [rw] web_app_endpoint_policy
|
1266
|
+
# Setting for the type of endpoint policy for the web app. The default
|
1267
|
+
# value is `STANDARD`.
|
1268
|
+
#
|
1269
|
+
# If you are creating the web app in an Amazon Web Services GovCloud
|
1270
|
+
# (US) Region, you can set this parameter to `FIPS`.
|
1271
|
+
# @return [String]
|
1272
|
+
#
|
1251
1273
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/CreateWebAppRequest AWS API Documentation
|
1252
1274
|
#
|
1253
1275
|
class CreateWebAppRequest < Struct.new(
|
1254
1276
|
:identity_provider_details,
|
1255
1277
|
:access_endpoint,
|
1256
1278
|
:web_app_units,
|
1257
|
-
:tags
|
1279
|
+
:tags,
|
1280
|
+
:web_app_endpoint_policy)
|
1258
1281
|
SENSITIVE = []
|
1259
1282
|
include Aws::Structure
|
1260
1283
|
end
|
@@ -2371,8 +2394,17 @@ module Aws::Transfer
|
|
2371
2394
|
# @return [String]
|
2372
2395
|
#
|
2373
2396
|
# @!attribute [rw] status
|
2374
|
-
#
|
2375
|
-
#
|
2397
|
+
# A certificate's status can be either `ACTIVE` or `INACTIVE`.
|
2398
|
+
#
|
2399
|
+
# You can set `ActiveDate` and `InactiveDate` in the
|
2400
|
+
# `UpdateCertificate` call. If you set values for these parameters,
|
2401
|
+
# those values are used to determine whether the certificate has a
|
2402
|
+
# status of `ACTIVE` or `INACTIVE`.
|
2403
|
+
#
|
2404
|
+
# If you don't set values for `ActiveDate` and `InactiveDate`, we use
|
2405
|
+
# the `NotBefore` and `NotAfter` date as specified on the X509
|
2406
|
+
# certificate to determine when a certificate is active and when it is
|
2407
|
+
# inactive.
|
2376
2408
|
# @return [String]
|
2377
2409
|
#
|
2378
2410
|
# @!attribute [rw] certificate
|
@@ -2385,11 +2417,14 @@ module Aws::Transfer
|
|
2385
2417
|
#
|
2386
2418
|
# @!attribute [rw] active_date
|
2387
2419
|
# An optional date that specifies when the certificate becomes active.
|
2420
|
+
# If you do not specify a value, `ActiveDate` takes the same value as
|
2421
|
+
# `NotBeforeDate`, which is specified by the CA.
|
2388
2422
|
# @return [Time]
|
2389
2423
|
#
|
2390
2424
|
# @!attribute [rw] inactive_date
|
2391
2425
|
# An optional date that specifies when the certificate becomes
|
2392
|
-
# inactive.
|
2426
|
+
# inactive. If you do not specify a value, `InactiveDate` takes the
|
2427
|
+
# same value as `NotAfterDate`, which is specified by the CA.
|
2393
2428
|
# @return [Time]
|
2394
2429
|
#
|
2395
2430
|
# @!attribute [rw] serial
|
@@ -2915,7 +2950,7 @@ module Aws::Transfer
|
|
2915
2950
|
# @!attribute [rw] logging_role
|
2916
2951
|
# The Amazon Resource Name (ARN) of the Identity and Access Management
|
2917
2952
|
# (IAM) role that allows a server to turn on Amazon CloudWatch logging
|
2918
|
-
# for Amazon S3 or Amazon
|
2953
|
+
# for Amazon S3 or Amazon EFS events. When set, you can view user
|
2919
2954
|
# activity in your CloudWatch logs.
|
2920
2955
|
# @return [String]
|
2921
2956
|
#
|
@@ -3176,6 +3211,13 @@ module Aws::Transfer
|
|
3176
3211
|
# @!attribute [rw] ssh_public_keys
|
3177
3212
|
# Specifies the public key portion of the Secure Shell (SSH) keys
|
3178
3213
|
# stored for the described user.
|
3214
|
+
#
|
3215
|
+
# <note markdown="1"> To delete the public key body, set its value to zero keys, as shown
|
3216
|
+
# here:
|
3217
|
+
#
|
3218
|
+
# `SshPublicKeys: []`
|
3219
|
+
#
|
3220
|
+
# </note>
|
3179
3221
|
# @return [Array<Types::SshPublicKey>]
|
3180
3222
|
#
|
3181
3223
|
# @!attribute [rw] tags
|
@@ -3244,6 +3286,15 @@ module Aws::Transfer
|
|
3244
3286
|
# Tags are metadata attached to web apps for any purpose.
|
3245
3287
|
# @return [Array<Types::Tag>]
|
3246
3288
|
#
|
3289
|
+
# @!attribute [rw] web_app_endpoint_policy
|
3290
|
+
# Setting for the type of endpoint policy for the web app. The default
|
3291
|
+
# value is `STANDARD`.
|
3292
|
+
#
|
3293
|
+
# If your web app was created in an Amazon Web Services GovCloud (US)
|
3294
|
+
# Region, the value of this parameter can be `FIPS`, which indicates
|
3295
|
+
# the web app endpoint is FIPS-compliant.
|
3296
|
+
# @return [String]
|
3297
|
+
#
|
3247
3298
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribedWebApp AWS API Documentation
|
3248
3299
|
#
|
3249
3300
|
class DescribedWebApp < Struct.new(
|
@@ -3253,7 +3304,8 @@ module Aws::Transfer
|
|
3253
3304
|
:access_endpoint,
|
3254
3305
|
:web_app_endpoint,
|
3255
3306
|
:web_app_units,
|
3256
|
-
:tags
|
3307
|
+
:tags,
|
3308
|
+
:web_app_endpoint_policy)
|
3257
3309
|
SENSITIVE = []
|
3258
3310
|
include Aws::Structure
|
3259
3311
|
end
|
@@ -3279,7 +3331,7 @@ module Aws::Transfer
|
|
3279
3331
|
# @return [String]
|
3280
3332
|
#
|
3281
3333
|
# @!attribute [rw] favicon_file
|
3282
|
-
# Returns
|
3334
|
+
# Returns an icon file data string (in base64 encoding).
|
3283
3335
|
# @return [String]
|
3284
3336
|
#
|
3285
3337
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribedWebAppCustomization AWS API Documentation
|
@@ -3775,6 +3827,13 @@ module Aws::Transfer
|
|
3775
3827
|
#
|
3776
3828
|
# * For the SDK, specify the raw content of a certificate file. For
|
3777
3829
|
# example, `` --certificate "`cat encryption-cert.pem`" ``.
|
3830
|
+
#
|
3831
|
+
# <note markdown="1"> You can provide both the certificate and its chain in this
|
3832
|
+
# parameter, without needing to use the `CertificateChain` parameter.
|
3833
|
+
# If you use this parameter for both the certificate and its chain, do
|
3834
|
+
# not use the `CertificateChain` parameter.
|
3835
|
+
#
|
3836
|
+
# </note>
|
3778
3837
|
# @return [String]
|
3779
3838
|
#
|
3780
3839
|
# @!attribute [rw] certificate_chain
|
@@ -3783,8 +3842,8 @@ module Aws::Transfer
|
|
3783
3842
|
# @return [String]
|
3784
3843
|
#
|
3785
3844
|
# @!attribute [rw] private_key
|
3786
|
-
# * For the CLI, provide a file path for a private key in URI
|
3787
|
-
#
|
3845
|
+
# * For the CLI, provide a file path for a private key in URI format.
|
3846
|
+
# For example, `--private-key file://encryption-key.pem`.
|
3788
3847
|
# Alternatively, you can provide the raw content of the private key
|
3789
3848
|
# file.
|
3790
3849
|
#
|
@@ -3794,11 +3853,14 @@ module Aws::Transfer
|
|
3794
3853
|
#
|
3795
3854
|
# @!attribute [rw] active_date
|
3796
3855
|
# An optional date that specifies when the certificate becomes active.
|
3856
|
+
# If you do not specify a value, `ActiveDate` takes the same value as
|
3857
|
+
# `NotBeforeDate`, which is specified by the CA.
|
3797
3858
|
# @return [Time]
|
3798
3859
|
#
|
3799
3860
|
# @!attribute [rw] inactive_date
|
3800
3861
|
# An optional date that specifies when the certificate becomes
|
3801
|
-
# inactive.
|
3862
|
+
# inactive. If you do not specify a value, `InactiveDate` takes the
|
3863
|
+
# same value as `NotAfterDate`, which is specified by the CA.
|
3802
3864
|
# @return [Time]
|
3803
3865
|
#
|
3804
3866
|
# @!attribute [rw] description
|
@@ -4822,11 +4884,14 @@ module Aws::Transfer
|
|
4822
4884
|
#
|
4823
4885
|
# @!attribute [rw] active_date
|
4824
4886
|
# An optional date that specifies when the certificate becomes active.
|
4887
|
+
# If you do not specify a value, `ActiveDate` takes the same value as
|
4888
|
+
# `NotBeforeDate`, which is specified by the CA.
|
4825
4889
|
# @return [Time]
|
4826
4890
|
#
|
4827
4891
|
# @!attribute [rw] inactive_date
|
4828
4892
|
# An optional date that specifies when the certificate becomes
|
4829
|
-
# inactive.
|
4893
|
+
# inactive. If you do not specify a value, `InactiveDate` takes the
|
4894
|
+
# same value as `NotAfterDate`, which is specified by the CA.
|
4830
4895
|
# @return [Time]
|
4831
4896
|
#
|
4832
4897
|
# @!attribute [rw] type
|
@@ -5052,7 +5117,7 @@ module Aws::Transfer
|
|
5052
5117
|
# @!attribute [rw] logging_role
|
5053
5118
|
# The Amazon Resource Name (ARN) of the Identity and Access Management
|
5054
5119
|
# (IAM) role that allows a server to turn on Amazon CloudWatch logging
|
5055
|
-
# for Amazon S3 or Amazon
|
5120
|
+
# for Amazon S3 or Amazon EFS events. When set, you can view user
|
5056
5121
|
# activity in your CloudWatch logs.
|
5057
5122
|
# @return [String]
|
5058
5123
|
#
|
@@ -5237,7 +5302,7 @@ module Aws::Transfer
|
|
5237
5302
|
# @!attribute [rw] logging_role
|
5238
5303
|
# The Amazon Resource Name (ARN) of the Identity and Access Management
|
5239
5304
|
# (IAM) role that allows a server to turn on Amazon CloudWatch logging
|
5240
|
-
# for Amazon S3 or Amazon
|
5305
|
+
# for Amazon S3 or Amazon EFS events. When set, you can view user
|
5241
5306
|
# activity in your CloudWatch logs.
|
5242
5307
|
# @return [String]
|
5243
5308
|
#
|
@@ -5823,6 +5888,71 @@ module Aws::Transfer
|
|
5823
5888
|
include Aws::Structure
|
5824
5889
|
end
|
5825
5890
|
|
5891
|
+
# @!attribute [rw] connector_id
|
5892
|
+
# The unique identifier for the connector.
|
5893
|
+
# @return [String]
|
5894
|
+
#
|
5895
|
+
# @!attribute [rw] delete_path
|
5896
|
+
# The absolute path of the file or directory to delete. You can only
|
5897
|
+
# specify one path per call to this operation.
|
5898
|
+
# @return [String]
|
5899
|
+
#
|
5900
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/StartRemoteDeleteRequest AWS API Documentation
|
5901
|
+
#
|
5902
|
+
class StartRemoteDeleteRequest < Struct.new(
|
5903
|
+
:connector_id,
|
5904
|
+
:delete_path)
|
5905
|
+
SENSITIVE = []
|
5906
|
+
include Aws::Structure
|
5907
|
+
end
|
5908
|
+
|
5909
|
+
# @!attribute [rw] delete_id
|
5910
|
+
# Returns a unique identifier for the delete operation.
|
5911
|
+
# @return [String]
|
5912
|
+
#
|
5913
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/StartRemoteDeleteResponse AWS API Documentation
|
5914
|
+
#
|
5915
|
+
class StartRemoteDeleteResponse < Struct.new(
|
5916
|
+
:delete_id)
|
5917
|
+
SENSITIVE = []
|
5918
|
+
include Aws::Structure
|
5919
|
+
end
|
5920
|
+
|
5921
|
+
# @!attribute [rw] connector_id
|
5922
|
+
# The unique identifier for the connector.
|
5923
|
+
# @return [String]
|
5924
|
+
#
|
5925
|
+
# @!attribute [rw] source_path
|
5926
|
+
# The absolute path of the file or directory to move or rename. You
|
5927
|
+
# can only specify one path per call to this operation.
|
5928
|
+
# @return [String]
|
5929
|
+
#
|
5930
|
+
# @!attribute [rw] target_path
|
5931
|
+
# The absolute path for the target of the move/rename operation.
|
5932
|
+
# @return [String]
|
5933
|
+
#
|
5934
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/StartRemoteMoveRequest AWS API Documentation
|
5935
|
+
#
|
5936
|
+
class StartRemoteMoveRequest < Struct.new(
|
5937
|
+
:connector_id,
|
5938
|
+
:source_path,
|
5939
|
+
:target_path)
|
5940
|
+
SENSITIVE = []
|
5941
|
+
include Aws::Structure
|
5942
|
+
end
|
5943
|
+
|
5944
|
+
# @!attribute [rw] move_id
|
5945
|
+
# Returns a unique identifier for the move/rename operation.
|
5946
|
+
# @return [String]
|
5947
|
+
#
|
5948
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/StartRemoteMoveResponse AWS API Documentation
|
5949
|
+
#
|
5950
|
+
class StartRemoteMoveResponse < Struct.new(
|
5951
|
+
:move_id)
|
5952
|
+
SENSITIVE = []
|
5953
|
+
include Aws::Structure
|
5954
|
+
end
|
5955
|
+
|
5826
5956
|
# @!attribute [rw] server_id
|
5827
5957
|
# A system-assigned unique identifier for a server that you start.
|
5828
5958
|
# @return [String]
|
@@ -6405,11 +6535,14 @@ module Aws::Transfer
|
|
6405
6535
|
#
|
6406
6536
|
# @!attribute [rw] active_date
|
6407
6537
|
# An optional date that specifies when the certificate becomes active.
|
6538
|
+
# If you do not specify a value, `ActiveDate` takes the same value as
|
6539
|
+
# `NotBeforeDate`, which is specified by the CA.
|
6408
6540
|
# @return [Time]
|
6409
6541
|
#
|
6410
6542
|
# @!attribute [rw] inactive_date
|
6411
6543
|
# An optional date that specifies when the certificate becomes
|
6412
|
-
# inactive.
|
6544
|
+
# inactive. If you do not specify a value, `InactiveDate` takes the
|
6545
|
+
# same value as `NotAfterDate`, which is specified by the CA.
|
6413
6546
|
# @return [Time]
|
6414
6547
|
#
|
6415
6548
|
# @!attribute [rw] description
|
@@ -6756,7 +6889,7 @@ module Aws::Transfer
|
|
6756
6889
|
# @!attribute [rw] logging_role
|
6757
6890
|
# The Amazon Resource Name (ARN) of the Identity and Access Management
|
6758
6891
|
# (IAM) role that allows a server to turn on Amazon CloudWatch logging
|
6759
|
-
# for Amazon S3 or Amazon
|
6892
|
+
# for Amazon S3 or Amazon EFS events. When set, you can view user
|
6760
6893
|
# activity in your CloudWatch logs.
|
6761
6894
|
# @return [String]
|
6762
6895
|
#
|
@@ -7080,7 +7213,7 @@ module Aws::Transfer
|
|
7080
7213
|
# @return [String]
|
7081
7214
|
#
|
7082
7215
|
# @!attribute [rw] favicon_file
|
7083
|
-
# Specify icon file data string (in base64 encoding).
|
7216
|
+
# Specify an icon file data string (in base64 encoding).
|
7084
7217
|
# @return [String]
|
7085
7218
|
#
|
7086
7219
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/UpdateWebAppCustomizationRequest AWS API Documentation
|
data/lib/aws-sdk-transfer.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -309,7 +309,8 @@ module Aws
|
|
309
309
|
key: ::String,
|
310
310
|
value: ::String
|
311
311
|
},
|
312
|
-
]
|
312
|
+
],
|
313
|
+
?web_app_endpoint_policy: ("FIPS" | "STANDARD")
|
313
314
|
) -> _CreateWebAppResponseSuccess
|
314
315
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWebAppResponseSuccess
|
315
316
|
|
@@ -934,6 +935,29 @@ module Aws
|
|
934
935
|
) -> _StartFileTransferResponseSuccess
|
935
936
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartFileTransferResponseSuccess
|
936
937
|
|
938
|
+
interface _StartRemoteDeleteResponseSuccess
|
939
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartRemoteDeleteResponse]
|
940
|
+
def delete_id: () -> ::String
|
941
|
+
end
|
942
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Transfer/Client.html#start_remote_delete-instance_method
|
943
|
+
def start_remote_delete: (
|
944
|
+
connector_id: ::String,
|
945
|
+
delete_path: ::String
|
946
|
+
) -> _StartRemoteDeleteResponseSuccess
|
947
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartRemoteDeleteResponseSuccess
|
948
|
+
|
949
|
+
interface _StartRemoteMoveResponseSuccess
|
950
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartRemoteMoveResponse]
|
951
|
+
def move_id: () -> ::String
|
952
|
+
end
|
953
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Transfer/Client.html#start_remote_move-instance_method
|
954
|
+
def start_remote_move: (
|
955
|
+
connector_id: ::String,
|
956
|
+
source_path: ::String,
|
957
|
+
target_path: ::String
|
958
|
+
) -> _StartRemoteMoveResponseSuccess
|
959
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartRemoteMoveResponseSuccess
|
960
|
+
|
937
961
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Transfer/Client.html#start_server-instance_method
|
938
962
|
def start_server: (
|
939
963
|
server_id: ::String
|
data/sig/types.rbs
CHANGED
@@ -166,6 +166,7 @@ module Aws::Transfer
|
|
166
166
|
attr_accessor access_endpoint: ::String
|
167
167
|
attr_accessor web_app_units: Types::WebAppUnits
|
168
168
|
attr_accessor tags: ::Array[Types::Tag]
|
169
|
+
attr_accessor web_app_endpoint_policy: ("FIPS" | "STANDARD")
|
169
170
|
SENSITIVE: []
|
170
171
|
end
|
171
172
|
|
@@ -584,6 +585,7 @@ module Aws::Transfer
|
|
584
585
|
attr_accessor web_app_endpoint: ::String
|
585
586
|
attr_accessor web_app_units: Types::WebAppUnits
|
586
587
|
attr_accessor tags: ::Array[Types::Tag]
|
588
|
+
attr_accessor web_app_endpoint_policy: ("FIPS" | "STANDARD")
|
587
589
|
SENSITIVE: []
|
588
590
|
end
|
589
591
|
|
@@ -1150,6 +1152,29 @@ module Aws::Transfer
|
|
1150
1152
|
SENSITIVE: []
|
1151
1153
|
end
|
1152
1154
|
|
1155
|
+
class StartRemoteDeleteRequest
|
1156
|
+
attr_accessor connector_id: ::String
|
1157
|
+
attr_accessor delete_path: ::String
|
1158
|
+
SENSITIVE: []
|
1159
|
+
end
|
1160
|
+
|
1161
|
+
class StartRemoteDeleteResponse
|
1162
|
+
attr_accessor delete_id: ::String
|
1163
|
+
SENSITIVE: []
|
1164
|
+
end
|
1165
|
+
|
1166
|
+
class StartRemoteMoveRequest
|
1167
|
+
attr_accessor connector_id: ::String
|
1168
|
+
attr_accessor source_path: ::String
|
1169
|
+
attr_accessor target_path: ::String
|
1170
|
+
SENSITIVE: []
|
1171
|
+
end
|
1172
|
+
|
1173
|
+
class StartRemoteMoveResponse
|
1174
|
+
attr_accessor move_id: ::String
|
1175
|
+
SENSITIVE: []
|
1176
|
+
end
|
1177
|
+
|
1153
1178
|
class StartServerRequest
|
1154
1179
|
attr_accessor server_id: ::String
|
1155
1180
|
SENSITIVE: []
|
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.
|
4
|
+
version: 1.115.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: 2025-
|
11
|
+
date: 2025-04-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|