aws-sdk-transfer 1.105.0 → 1.107.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 +27 -27
- data/lib/aws-sdk-transfer/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-transfer/endpoints.rb +2 -669
- data/lib/aws-sdk-transfer/plugins/endpoints.rb +1 -128
- data/lib/aws-sdk-transfer/types.rb +53 -53
- data/lib/aws-sdk-transfer.rb +1 -1
- metadata +4 -4
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
27
27
|
class Handler < Seahorse::Client::Handler
|
28
28
|
def call(context)
|
29
29
|
unless context[:discovered_endpoint]
|
30
|
-
params = parameters_for_operation(context)
|
30
|
+
params = Aws::Transfer::Endpoints.parameters_for_operation(context)
|
31
31
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
32
|
|
33
33
|
context.http_request.endpoint = endpoint.url
|
@@ -67,133 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
67
67
|
context.http_request.headers[key] = value
|
68
68
|
end
|
69
69
|
end
|
70
|
-
|
71
|
-
def parameters_for_operation(context)
|
72
|
-
case context.operation_name
|
73
|
-
when :create_access
|
74
|
-
Aws::Transfer::Endpoints::CreateAccess.build(context)
|
75
|
-
when :create_agreement
|
76
|
-
Aws::Transfer::Endpoints::CreateAgreement.build(context)
|
77
|
-
when :create_connector
|
78
|
-
Aws::Transfer::Endpoints::CreateConnector.build(context)
|
79
|
-
when :create_profile
|
80
|
-
Aws::Transfer::Endpoints::CreateProfile.build(context)
|
81
|
-
when :create_server
|
82
|
-
Aws::Transfer::Endpoints::CreateServer.build(context)
|
83
|
-
when :create_user
|
84
|
-
Aws::Transfer::Endpoints::CreateUser.build(context)
|
85
|
-
when :create_workflow
|
86
|
-
Aws::Transfer::Endpoints::CreateWorkflow.build(context)
|
87
|
-
when :delete_access
|
88
|
-
Aws::Transfer::Endpoints::DeleteAccess.build(context)
|
89
|
-
when :delete_agreement
|
90
|
-
Aws::Transfer::Endpoints::DeleteAgreement.build(context)
|
91
|
-
when :delete_certificate
|
92
|
-
Aws::Transfer::Endpoints::DeleteCertificate.build(context)
|
93
|
-
when :delete_connector
|
94
|
-
Aws::Transfer::Endpoints::DeleteConnector.build(context)
|
95
|
-
when :delete_host_key
|
96
|
-
Aws::Transfer::Endpoints::DeleteHostKey.build(context)
|
97
|
-
when :delete_profile
|
98
|
-
Aws::Transfer::Endpoints::DeleteProfile.build(context)
|
99
|
-
when :delete_server
|
100
|
-
Aws::Transfer::Endpoints::DeleteServer.build(context)
|
101
|
-
when :delete_ssh_public_key
|
102
|
-
Aws::Transfer::Endpoints::DeleteSshPublicKey.build(context)
|
103
|
-
when :delete_user
|
104
|
-
Aws::Transfer::Endpoints::DeleteUser.build(context)
|
105
|
-
when :delete_workflow
|
106
|
-
Aws::Transfer::Endpoints::DeleteWorkflow.build(context)
|
107
|
-
when :describe_access
|
108
|
-
Aws::Transfer::Endpoints::DescribeAccess.build(context)
|
109
|
-
when :describe_agreement
|
110
|
-
Aws::Transfer::Endpoints::DescribeAgreement.build(context)
|
111
|
-
when :describe_certificate
|
112
|
-
Aws::Transfer::Endpoints::DescribeCertificate.build(context)
|
113
|
-
when :describe_connector
|
114
|
-
Aws::Transfer::Endpoints::DescribeConnector.build(context)
|
115
|
-
when :describe_execution
|
116
|
-
Aws::Transfer::Endpoints::DescribeExecution.build(context)
|
117
|
-
when :describe_host_key
|
118
|
-
Aws::Transfer::Endpoints::DescribeHostKey.build(context)
|
119
|
-
when :describe_profile
|
120
|
-
Aws::Transfer::Endpoints::DescribeProfile.build(context)
|
121
|
-
when :describe_security_policy
|
122
|
-
Aws::Transfer::Endpoints::DescribeSecurityPolicy.build(context)
|
123
|
-
when :describe_server
|
124
|
-
Aws::Transfer::Endpoints::DescribeServer.build(context)
|
125
|
-
when :describe_user
|
126
|
-
Aws::Transfer::Endpoints::DescribeUser.build(context)
|
127
|
-
when :describe_workflow
|
128
|
-
Aws::Transfer::Endpoints::DescribeWorkflow.build(context)
|
129
|
-
when :import_certificate
|
130
|
-
Aws::Transfer::Endpoints::ImportCertificate.build(context)
|
131
|
-
when :import_host_key
|
132
|
-
Aws::Transfer::Endpoints::ImportHostKey.build(context)
|
133
|
-
when :import_ssh_public_key
|
134
|
-
Aws::Transfer::Endpoints::ImportSshPublicKey.build(context)
|
135
|
-
when :list_accesses
|
136
|
-
Aws::Transfer::Endpoints::ListAccesses.build(context)
|
137
|
-
when :list_agreements
|
138
|
-
Aws::Transfer::Endpoints::ListAgreements.build(context)
|
139
|
-
when :list_certificates
|
140
|
-
Aws::Transfer::Endpoints::ListCertificates.build(context)
|
141
|
-
when :list_connectors
|
142
|
-
Aws::Transfer::Endpoints::ListConnectors.build(context)
|
143
|
-
when :list_executions
|
144
|
-
Aws::Transfer::Endpoints::ListExecutions.build(context)
|
145
|
-
when :list_file_transfer_results
|
146
|
-
Aws::Transfer::Endpoints::ListFileTransferResults.build(context)
|
147
|
-
when :list_host_keys
|
148
|
-
Aws::Transfer::Endpoints::ListHostKeys.build(context)
|
149
|
-
when :list_profiles
|
150
|
-
Aws::Transfer::Endpoints::ListProfiles.build(context)
|
151
|
-
when :list_security_policies
|
152
|
-
Aws::Transfer::Endpoints::ListSecurityPolicies.build(context)
|
153
|
-
when :list_servers
|
154
|
-
Aws::Transfer::Endpoints::ListServers.build(context)
|
155
|
-
when :list_tags_for_resource
|
156
|
-
Aws::Transfer::Endpoints::ListTagsForResource.build(context)
|
157
|
-
when :list_users
|
158
|
-
Aws::Transfer::Endpoints::ListUsers.build(context)
|
159
|
-
when :list_workflows
|
160
|
-
Aws::Transfer::Endpoints::ListWorkflows.build(context)
|
161
|
-
when :send_workflow_step_state
|
162
|
-
Aws::Transfer::Endpoints::SendWorkflowStepState.build(context)
|
163
|
-
when :start_directory_listing
|
164
|
-
Aws::Transfer::Endpoints::StartDirectoryListing.build(context)
|
165
|
-
when :start_file_transfer
|
166
|
-
Aws::Transfer::Endpoints::StartFileTransfer.build(context)
|
167
|
-
when :start_server
|
168
|
-
Aws::Transfer::Endpoints::StartServer.build(context)
|
169
|
-
when :stop_server
|
170
|
-
Aws::Transfer::Endpoints::StopServer.build(context)
|
171
|
-
when :tag_resource
|
172
|
-
Aws::Transfer::Endpoints::TagResource.build(context)
|
173
|
-
when :test_connection
|
174
|
-
Aws::Transfer::Endpoints::TestConnection.build(context)
|
175
|
-
when :test_identity_provider
|
176
|
-
Aws::Transfer::Endpoints::TestIdentityProvider.build(context)
|
177
|
-
when :untag_resource
|
178
|
-
Aws::Transfer::Endpoints::UntagResource.build(context)
|
179
|
-
when :update_access
|
180
|
-
Aws::Transfer::Endpoints::UpdateAccess.build(context)
|
181
|
-
when :update_agreement
|
182
|
-
Aws::Transfer::Endpoints::UpdateAgreement.build(context)
|
183
|
-
when :update_certificate
|
184
|
-
Aws::Transfer::Endpoints::UpdateCertificate.build(context)
|
185
|
-
when :update_connector
|
186
|
-
Aws::Transfer::Endpoints::UpdateConnector.build(context)
|
187
|
-
when :update_host_key
|
188
|
-
Aws::Transfer::Endpoints::UpdateHostKey.build(context)
|
189
|
-
when :update_profile
|
190
|
-
Aws::Transfer::Endpoints::UpdateProfile.build(context)
|
191
|
-
when :update_server
|
192
|
-
Aws::Transfer::Endpoints::UpdateServer.build(context)
|
193
|
-
when :update_user
|
194
|
-
Aws::Transfer::Endpoints::UpdateUser.build(context)
|
195
|
-
end
|
196
|
-
end
|
197
70
|
end
|
198
71
|
|
199
72
|
def add_handlers(handlers, _config)
|
@@ -94,7 +94,7 @@ module Aws::Transfer
|
|
94
94
|
# If the connector should use Basic authentication, the secret needs
|
95
95
|
# to be in the following format:
|
96
96
|
#
|
97
|
-
#
|
97
|
+
# `{ "Username": "user-name", "Password": "user-password" }`
|
98
98
|
#
|
99
99
|
# Replace `user-name` and `user-password` with the credentials for the
|
100
100
|
# actual user that is being authenticated.
|
@@ -191,16 +191,16 @@ module Aws::Transfer
|
|
191
191
|
#
|
192
192
|
# @!attribute [rw] destination_file_location
|
193
193
|
# Specifies the location for the file being copied. Use
|
194
|
-
#
|
195
|
-
#
|
194
|
+
# `${Transfer:UserName}` or `${Transfer:UploadDate}` in this field to
|
195
|
+
# parametrize the destination prefix by username or uploaded date.
|
196
196
|
#
|
197
197
|
# * Set the value of `DestinationFileLocation` to
|
198
|
-
#
|
198
|
+
# `${Transfer:UserName}` to copy uploaded files to an Amazon S3
|
199
199
|
# bucket that is prefixed with the name of the Transfer Family user
|
200
200
|
# that uploaded the file.
|
201
201
|
#
|
202
202
|
# * Set the value of `DestinationFileLocation` to
|
203
|
-
#
|
203
|
+
# `${Transfer:UploadDate}` to copy uploaded files to an Amazon S3
|
204
204
|
# bucket that is prefixed with the date of the upload.
|
205
205
|
#
|
206
206
|
# <note markdown="1"> The system resolves `UploadDate` to a date format of *YYYY-MM-DD*,
|
@@ -228,12 +228,12 @@ module Aws::Transfer
|
|
228
228
|
# the output from the previous step, or the originally uploaded file
|
229
229
|
# for the workflow.
|
230
230
|
#
|
231
|
-
# * To use the previous file as the input, enter
|
231
|
+
# * To use the previous file as the input, enter `${previous.file}`.
|
232
232
|
# In this case, this workflow step uses the output file from the
|
233
233
|
# previous workflow step as input. This is the default value.
|
234
234
|
#
|
235
235
|
# * To use the originally uploaded file location as input for this
|
236
|
-
# step, enter
|
236
|
+
# step, enter `${original.file}`.
|
237
237
|
# @return [String]
|
238
238
|
#
|
239
239
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/CopyStepDetails AWS API Documentation
|
@@ -290,8 +290,8 @@ module Aws::Transfer
|
|
290
290
|
#
|
291
291
|
# The following is an `Entry` and `Target` pair example.
|
292
292
|
#
|
293
|
-
# `[
|
294
|
-
# "/bucket_name/home/mydirectory"
|
293
|
+
# `[ { "Entry": "/directory1", "Target":
|
294
|
+
# "/bucket_name/home/mydirectory" } ]`
|
295
295
|
#
|
296
296
|
# In most cases, you can use this value instead of the session policy
|
297
297
|
# to lock down your user to the designated home directory
|
@@ -300,7 +300,7 @@ module Aws::Transfer
|
|
300
300
|
#
|
301
301
|
# The following is an `Entry` and `Target` pair example for `chroot`.
|
302
302
|
#
|
303
|
-
# `[
|
303
|
+
# `[ { "Entry": "/", "Target": "/bucket_name/home/mydirectory" } ]`
|
304
304
|
# @return [Array<Types::HomeDirectoryMapEntry>]
|
305
305
|
#
|
306
306
|
# @!attribute [rw] policy
|
@@ -308,8 +308,8 @@ module Aws::Transfer
|
|
308
308
|
# and Access Management (IAM) role across multiple users. This policy
|
309
309
|
# scopes down a user's access to portions of their Amazon S3 bucket.
|
310
310
|
# Variables that you can use inside this policy include
|
311
|
-
#
|
312
|
-
#
|
311
|
+
# `${Transfer:UserName}`, `${Transfer:HomeDirectory}`, and
|
312
|
+
# `${Transfer:HomeBucket}`.
|
313
313
|
#
|
314
314
|
# <note markdown="1"> This policy applies only when the domain of `ServerId` is Amazon S3.
|
315
315
|
# Amazon EFS does not use session policies.
|
@@ -364,7 +364,7 @@ module Aws::Transfer
|
|
364
364
|
# you can view the SID values by running the following command using
|
365
365
|
# Windows PowerShell.
|
366
366
|
#
|
367
|
-
# `Get-ADGroup -Filter
|
367
|
+
# `Get-ADGroup -Filter {samAccountName -like "YourGroupName*"}
|
368
368
|
# -Properties * | Select SamAccountName,ObjectSid`
|
369
369
|
#
|
370
370
|
# In that command, replace *YourGroupName* with the name of your
|
@@ -1039,8 +1039,8 @@ module Aws::Transfer
|
|
1039
1039
|
#
|
1040
1040
|
# The following is an `Entry` and `Target` pair example.
|
1041
1041
|
#
|
1042
|
-
# `[
|
1043
|
-
# "/bucket_name/home/mydirectory"
|
1042
|
+
# `[ { "Entry": "/directory1", "Target":
|
1043
|
+
# "/bucket_name/home/mydirectory" } ]`
|
1044
1044
|
#
|
1045
1045
|
# In most cases, you can use this value instead of the session policy
|
1046
1046
|
# to lock your user down to the designated home directory
|
@@ -1050,7 +1050,7 @@ module Aws::Transfer
|
|
1050
1050
|
#
|
1051
1051
|
# The following is an `Entry` and `Target` pair example for `chroot`.
|
1052
1052
|
#
|
1053
|
-
# `[
|
1053
|
+
# `[ { "Entry": "/", "Target": "/bucket_name/home/mydirectory" } ]`
|
1054
1054
|
# @return [Array<Types::HomeDirectoryMapEntry>]
|
1055
1055
|
#
|
1056
1056
|
# @!attribute [rw] policy
|
@@ -1058,8 +1058,8 @@ module Aws::Transfer
|
|
1058
1058
|
# and Access Management (IAM) role across multiple users. This policy
|
1059
1059
|
# scopes down a user's access to portions of their Amazon S3 bucket.
|
1060
1060
|
# Variables that you can use inside this policy include
|
1061
|
-
#
|
1062
|
-
#
|
1061
|
+
# `${Transfer:UserName}`, `${Transfer:HomeDirectory}`, and
|
1062
|
+
# `${Transfer:HomeBucket}`.
|
1063
1063
|
#
|
1064
1064
|
# <note markdown="1"> This policy applies only when the domain of `ServerId` is Amazon S3.
|
1065
1065
|
# Amazon EFS does not use session policies.
|
@@ -1262,12 +1262,12 @@ module Aws::Transfer
|
|
1262
1262
|
# the output from the previous step, or the originally uploaded file
|
1263
1263
|
# for the workflow.
|
1264
1264
|
#
|
1265
|
-
# * To use the previous file as the input, enter
|
1265
|
+
# * To use the previous file as the input, enter `${previous.file}`.
|
1266
1266
|
# In this case, this workflow step uses the output file from the
|
1267
1267
|
# previous workflow step as input. This is the default value.
|
1268
1268
|
#
|
1269
1269
|
# * To use the originally uploaded file location as input for this
|
1270
|
-
# step, enter
|
1270
|
+
# step, enter `${original.file}`.
|
1271
1271
|
# @return [String]
|
1272
1272
|
#
|
1273
1273
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/CustomStepDetails AWS API Documentation
|
@@ -1296,12 +1296,12 @@ module Aws::Transfer
|
|
1296
1296
|
# the output from the previous step, or the originally uploaded file
|
1297
1297
|
# for the workflow.
|
1298
1298
|
#
|
1299
|
-
# * To use the previous file as the input, enter
|
1299
|
+
# * To use the previous file as the input, enter `${previous.file}`.
|
1300
1300
|
# In this case, this workflow step uses the output file from the
|
1301
1301
|
# previous workflow step as input. This is the default value.
|
1302
1302
|
#
|
1303
1303
|
# * To use the originally uploaded file location as input for this
|
1304
|
-
# step, enter
|
1304
|
+
# step, enter `${original.file}`.
|
1305
1305
|
# @return [String]
|
1306
1306
|
#
|
1307
1307
|
# @!attribute [rw] overwrite_existing
|
@@ -1320,17 +1320,17 @@ module Aws::Transfer
|
|
1320
1320
|
#
|
1321
1321
|
# @!attribute [rw] destination_file_location
|
1322
1322
|
# Specifies the location for the file being decrypted. Use
|
1323
|
-
#
|
1324
|
-
#
|
1323
|
+
# `${Transfer:UserName}` or `${Transfer:UploadDate}` in this field to
|
1324
|
+
# parametrize the destination prefix by username or uploaded date.
|
1325
1325
|
#
|
1326
1326
|
# * Set the value of `DestinationFileLocation` to
|
1327
|
-
#
|
1327
|
+
# `${Transfer:UserName}` to decrypt uploaded files to an Amazon S3
|
1328
1328
|
# bucket that is prefixed with the name of the Transfer Family user
|
1329
1329
|
# that uploaded the file.
|
1330
1330
|
#
|
1331
1331
|
# * Set the value of `DestinationFileLocation` to
|
1332
|
-
#
|
1333
|
-
#
|
1332
|
+
# `${Transfer:UploadDate}` to decrypt uploaded files to an Amazon S3
|
1333
|
+
# bucket that is prefixed with the date of the upload.
|
1334
1334
|
#
|
1335
1335
|
# <note markdown="1"> The system resolves `UploadDate` to a date format of *YYYY-MM-DD*,
|
1336
1336
|
# based on the date the file is uploaded in UTC.
|
@@ -1363,7 +1363,7 @@ module Aws::Transfer
|
|
1363
1363
|
# you can view the SID values by running the following command using
|
1364
1364
|
# Windows PowerShell.
|
1365
1365
|
#
|
1366
|
-
# `Get-ADGroup -Filter
|
1366
|
+
# `Get-ADGroup -Filter {samAccountName -like "YourGroupName*"}
|
1367
1367
|
# -Properties * | Select SamAccountName,ObjectSid`
|
1368
1368
|
#
|
1369
1369
|
# In that command, replace *YourGroupName* with the name of your
|
@@ -1504,12 +1504,12 @@ module Aws::Transfer
|
|
1504
1504
|
# the output from the previous step, or the originally uploaded file
|
1505
1505
|
# for the workflow.
|
1506
1506
|
#
|
1507
|
-
# * To use the previous file as the input, enter
|
1507
|
+
# * To use the previous file as the input, enter `${previous.file}`.
|
1508
1508
|
# In this case, this workflow step uses the output file from the
|
1509
1509
|
# previous workflow step as input. This is the default value.
|
1510
1510
|
#
|
1511
1511
|
# * To use the originally uploaded file location as input for this
|
1512
|
-
# step, enter
|
1512
|
+
# step, enter `${original.file}`.
|
1513
1513
|
# @return [String]
|
1514
1514
|
#
|
1515
1515
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DeleteStepDetails AWS API Documentation
|
@@ -1565,7 +1565,7 @@ module Aws::Transfer
|
|
1565
1565
|
# you can view the SID values by running the following command using
|
1566
1566
|
# Windows PowerShell.
|
1567
1567
|
#
|
1568
|
-
# `Get-ADGroup -Filter
|
1568
|
+
# `Get-ADGroup -Filter {samAccountName -like "YourGroupName*"}
|
1569
1569
|
# -Properties * | Select SamAccountName,ObjectSid`
|
1570
1570
|
#
|
1571
1571
|
# In that command, replace *YourGroupName* with the name of your
|
@@ -1940,8 +1940,8 @@ module Aws::Transfer
|
|
1940
1940
|
# and Access Management (IAM) role across multiple users. This policy
|
1941
1941
|
# scopes down a user's access to portions of their Amazon S3 bucket.
|
1942
1942
|
# Variables that you can use inside this policy include
|
1943
|
-
#
|
1944
|
-
#
|
1943
|
+
# `${Transfer:UserName}`, `${Transfer:HomeDirectory}`, and
|
1944
|
+
# `${Transfer:HomeBucket}`.
|
1945
1945
|
# @return [String]
|
1946
1946
|
#
|
1947
1947
|
# @!attribute [rw] posix_profile
|
@@ -1972,7 +1972,7 @@ module Aws::Transfer
|
|
1972
1972
|
# you can view the SID values by running the following command using
|
1973
1973
|
# Windows PowerShell.
|
1974
1974
|
#
|
1975
|
-
# `Get-ADGroup -Filter
|
1975
|
+
# `Get-ADGroup -Filter {samAccountName -like "YourGroupName*"}
|
1976
1976
|
# -Properties * | Select SamAccountName,ObjectSid`
|
1977
1977
|
#
|
1978
1978
|
# In that command, replace *YourGroupName* with the name of your
|
@@ -2866,8 +2866,8 @@ module Aws::Transfer
|
|
2866
2866
|
# and Access Management (IAM) role across multiple users. This policy
|
2867
2867
|
# scopes down a user's access to portions of their Amazon S3 bucket.
|
2868
2868
|
# Variables that you can use inside this policy include
|
2869
|
-
#
|
2870
|
-
#
|
2869
|
+
# `${Transfer:UserName}`, `${Transfer:HomeDirectory}`, and
|
2870
|
+
# `${Transfer:HomeBucket}`.
|
2871
2871
|
# @return [String]
|
2872
2872
|
#
|
2873
2873
|
# @!attribute [rw] posix_profile
|
@@ -3254,7 +3254,7 @@ module Aws::Transfer
|
|
3254
3254
|
#
|
3255
3255
|
# The following is an `Entry` and `Target` pair example for `chroot`.
|
3256
3256
|
#
|
3257
|
-
# `[
|
3257
|
+
# `[ { "Entry": "/", "Target": "/bucket_name/home/mydirectory" } ]`
|
3258
3258
|
#
|
3259
3259
|
# @!attribute [rw] entry
|
3260
3260
|
# Represents an entry for `HomeDirectoryMappings`.
|
@@ -4269,7 +4269,7 @@ module Aws::Transfer
|
|
4269
4269
|
# you can view the SID values by running the following command using
|
4270
4270
|
# Windows PowerShell.
|
4271
4271
|
#
|
4272
|
-
# `Get-ADGroup -Filter
|
4272
|
+
# `Get-ADGroup -Filter {samAccountName -like "YourGroupName*"}
|
4273
4273
|
# -Properties * | Select SamAccountName,ObjectSid`
|
4274
4274
|
#
|
4275
4275
|
# In that command, replace *YourGroupName* with the name of your
|
@@ -5424,12 +5424,12 @@ module Aws::Transfer
|
|
5424
5424
|
# the output from the previous step, or the originally uploaded file
|
5425
5425
|
# for the workflow.
|
5426
5426
|
#
|
5427
|
-
# * To use the previous file as the input, enter
|
5427
|
+
# * To use the previous file as the input, enter `${previous.file}`.
|
5428
5428
|
# In this case, this workflow step uses the output file from the
|
5429
5429
|
# previous workflow step as input. This is the default value.
|
5430
5430
|
#
|
5431
5431
|
# * To use the originally uploaded file location as input for this
|
5432
|
-
# step, enter
|
5432
|
+
# step, enter `${original.file}`.
|
5433
5433
|
# @return [String]
|
5434
5434
|
#
|
5435
5435
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/TagStepDetails AWS API Documentation
|
@@ -5645,8 +5645,8 @@ module Aws::Transfer
|
|
5645
5645
|
#
|
5646
5646
|
# The following is an `Entry` and `Target` pair example.
|
5647
5647
|
#
|
5648
|
-
# `[
|
5649
|
-
# "/bucket_name/home/mydirectory"
|
5648
|
+
# `[ { "Entry": "/directory1", "Target":
|
5649
|
+
# "/bucket_name/home/mydirectory" } ]`
|
5650
5650
|
#
|
5651
5651
|
# In most cases, you can use this value instead of the session policy
|
5652
5652
|
# to lock down your user to the designated home directory
|
@@ -5655,7 +5655,7 @@ module Aws::Transfer
|
|
5655
5655
|
#
|
5656
5656
|
# The following is an `Entry` and `Target` pair example for `chroot`.
|
5657
5657
|
#
|
5658
|
-
# `[
|
5658
|
+
# `[ { "Entry": "/", "Target": "/bucket_name/home/mydirectory" } ]`
|
5659
5659
|
# @return [Array<Types::HomeDirectoryMapEntry>]
|
5660
5660
|
#
|
5661
5661
|
# @!attribute [rw] policy
|
@@ -5663,8 +5663,8 @@ module Aws::Transfer
|
|
5663
5663
|
# and Access Management (IAM) role across multiple users. This policy
|
5664
5664
|
# scopes down a user's access to portions of their Amazon S3 bucket.
|
5665
5665
|
# Variables that you can use inside this policy include
|
5666
|
-
#
|
5667
|
-
#
|
5666
|
+
# `${Transfer:UserName}`, `${Transfer:HomeDirectory}`, and
|
5667
|
+
# `${Transfer:HomeBucket}`.
|
5668
5668
|
#
|
5669
5669
|
# <note markdown="1"> This policy applies only when the domain of `ServerId` is Amazon S3.
|
5670
5670
|
# Amazon EFS does not use session policies.
|
@@ -5719,7 +5719,7 @@ module Aws::Transfer
|
|
5719
5719
|
# you can view the SID values by running the following command using
|
5720
5720
|
# Windows PowerShell.
|
5721
5721
|
#
|
5722
|
-
# `Get-ADGroup -Filter
|
5722
|
+
# `Get-ADGroup -Filter {samAccountName -like "YourGroupName*"}
|
5723
5723
|
# -Properties * | Select SamAccountName,ObjectSid`
|
5724
5724
|
#
|
5725
5725
|
# In that command, replace *YourGroupName* with the name of your
|
@@ -6309,7 +6309,7 @@ module Aws::Transfer
|
|
6309
6309
|
# empty `OnUpload` object, as in the following example.
|
6310
6310
|
#
|
6311
6311
|
# `aws transfer update-server --server-id s-01234567890abcdef
|
6312
|
-
# --workflow-details '
|
6312
|
+
# --workflow-details '{"OnUpload":[]}'`
|
6313
6313
|
# @return [Types::WorkflowDetails]
|
6314
6314
|
#
|
6315
6315
|
# @!attribute [rw] structured_log_destinations
|
@@ -6420,8 +6420,8 @@ module Aws::Transfer
|
|
6420
6420
|
#
|
6421
6421
|
# The following is an `Entry` and `Target` pair example.
|
6422
6422
|
#
|
6423
|
-
# `[
|
6424
|
-
# "/bucket_name/home/mydirectory"
|
6423
|
+
# `[ { "Entry": "/directory1", "Target":
|
6424
|
+
# "/bucket_name/home/mydirectory" } ]`
|
6425
6425
|
#
|
6426
6426
|
# In most cases, you can use this value instead of the session policy
|
6427
6427
|
# to lock down your user to the designated home directory
|
@@ -6430,7 +6430,7 @@ module Aws::Transfer
|
|
6430
6430
|
#
|
6431
6431
|
# The following is an `Entry` and `Target` pair example for `chroot`.
|
6432
6432
|
#
|
6433
|
-
# `[
|
6433
|
+
# `[ { "Entry": "/", "Target": "/bucket_name/home/mydirectory" } ]`
|
6434
6434
|
# @return [Array<Types::HomeDirectoryMapEntry>]
|
6435
6435
|
#
|
6436
6436
|
# @!attribute [rw] policy
|
@@ -6438,8 +6438,8 @@ module Aws::Transfer
|
|
6438
6438
|
# and Access Management (IAM) role across multiple users. This policy
|
6439
6439
|
# scopes down a user's access to portions of their Amazon S3 bucket.
|
6440
6440
|
# Variables that you can use inside this policy include
|
6441
|
-
#
|
6442
|
-
#
|
6441
|
+
# `${Transfer:UserName}`, `${Transfer:HomeDirectory}`, and
|
6442
|
+
# `${Transfer:HomeBucket}`.
|
6443
6443
|
#
|
6444
6444
|
# <note markdown="1"> This policy applies only when the domain of `ServerId` is Amazon S3.
|
6445
6445
|
# Amazon EFS does not use session policies.
|
@@ -6600,7 +6600,7 @@ module Aws::Transfer
|
|
6600
6600
|
# empty `OnUpload` object, as in the following example.
|
6601
6601
|
#
|
6602
6602
|
# `aws transfer update-server --server-id s-01234567890abcdef
|
6603
|
-
# --workflow-details '
|
6603
|
+
# --workflow-details '{"OnUpload":[]}'`
|
6604
6604
|
#
|
6605
6605
|
# <note markdown="1"> `OnUpload` can contain a maximum of one `WorkflowDetail` object.
|
6606
6606
|
#
|
data/lib/aws-sdk-transfer.rb
CHANGED
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.107.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: 2024-
|
11
|
+
date: 2024-11-06 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.
|
22
|
+
version: 3.210.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.
|
32
|
+
version: 3.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|