aws-sdk-transfer 1.51.0 → 1.52.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-transfer/client.rb +7 -1
- data/lib/aws-sdk-transfer/types.rb +12 -0
- data/lib/aws-sdk-transfer.rb +1 -1
- 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: 0fa6cb0551a45bbf8181b24aa16b6906bc2d484a634c99d9235ed568a41e3052
|
|
4
|
+
data.tar.gz: d8fae405f7cf074190e0d51c130e07d256b28cb68c92756f298b997ee7122f1c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3a512a5e6444bf200dc5c516c33794af3458fb60441fa380306dc2ff00710783fe586afbb2ec6f510c98f99c1c5e51b3d2481469fade079e99d1be417ff43c05
|
|
7
|
+
data.tar.gz: d2583c98b553bd682528e547431bf8e3c8c0899ec70b7f23532363a32b90255e6e39ae2fb0c41788c5f4e07087ee274582fa76510dc2adedf9d19f7060c52233
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.52.0 (2022-03-23)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Documentation updates for AWS Transfer Family to describe how to remove an associated workflow from a server.
|
|
8
|
+
|
|
4
9
|
1.51.0 (2022-03-10)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.52.0
|
|
@@ -2647,6 +2647,12 @@ module Aws::Transfer
|
|
|
2647
2647
|
# Specifies the workflow ID for the workflow to assign and the execution
|
|
2648
2648
|
# role used for executing the workflow.
|
|
2649
2649
|
#
|
|
2650
|
+
# To remove an associated workflow from a server, you can provide an
|
|
2651
|
+
# empty `OnUpload` object, as in the following example.
|
|
2652
|
+
#
|
|
2653
|
+
# `aws transfer update-server --server-id s-01234567890abcdef
|
|
2654
|
+
# --workflow-details '\{"OnUpload":[]\}'`
|
|
2655
|
+
#
|
|
2650
2656
|
# @return [Types::UpdateServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2651
2657
|
#
|
|
2652
2658
|
# * {Types::UpdateServerResponse#server_id #server_id} => String
|
|
@@ -2860,7 +2866,7 @@ module Aws::Transfer
|
|
|
2860
2866
|
params: params,
|
|
2861
2867
|
config: config)
|
|
2862
2868
|
context[:gem_name] = 'aws-sdk-transfer'
|
|
2863
|
-
context[:gem_version] = '1.
|
|
2869
|
+
context[:gem_version] = '1.52.0'
|
|
2864
2870
|
Seahorse::Client::Request.new(handlers, context)
|
|
2865
2871
|
end
|
|
2866
2872
|
|
|
@@ -4153,6 +4153,12 @@ module Aws::Transfer
|
|
|
4153
4153
|
# @!attribute [rw] workflow_details
|
|
4154
4154
|
# Specifies the workflow ID for the workflow to assign and the
|
|
4155
4155
|
# execution role used for executing the workflow.
|
|
4156
|
+
#
|
|
4157
|
+
# To remove an associated workflow from a server, you can provide an
|
|
4158
|
+
# empty `OnUpload` object, as in the following example.
|
|
4159
|
+
#
|
|
4160
|
+
# `aws transfer update-server --server-id s-01234567890abcdef
|
|
4161
|
+
# --workflow-details '\{"OnUpload":[]\}'`
|
|
4156
4162
|
# @return [Types::WorkflowDetails]
|
|
4157
4163
|
#
|
|
4158
4164
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/UpdateServerRequest AWS API Documentation
|
|
@@ -4430,6 +4436,12 @@ module Aws::Transfer
|
|
|
4430
4436
|
# @!attribute [rw] on_upload
|
|
4431
4437
|
# A trigger that starts a workflow: the workflow begins to execute
|
|
4432
4438
|
# after a file is uploaded.
|
|
4439
|
+
#
|
|
4440
|
+
# To remove an associated workflow from a server, you can provide an
|
|
4441
|
+
# empty `OnUpload` object, as in the following example.
|
|
4442
|
+
#
|
|
4443
|
+
# `aws transfer update-server --server-id s-01234567890abcdef
|
|
4444
|
+
# --workflow-details '\{"OnUpload":[]\}'`
|
|
4433
4445
|
# @return [Array<Types::WorkflowDetail>]
|
|
4434
4446
|
#
|
|
4435
4447
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/WorkflowDetails AWS API Documentation
|
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.52.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: 2022-03-
|
|
11
|
+
date: 2022-03-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|