aws-sdk-transfer 1.70.0 → 1.72.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 +43 -1
- data/lib/aws-sdk-transfer/client_api.rb +6 -0
- data/lib/aws-sdk-transfer/types.rb +66 -3
- data/lib/aws-sdk-transfer.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4080eb6a00ef35fc2aa1dc7db352244f69a2eeae8c15b5e7ed2b7da48c3768fe
|
4
|
+
data.tar.gz: 33894db7d6aff37c29cc5781dca7fe21aa0fd45d1862efaaf6fafd734deca106
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f3c8729c79fe754d5f64f60d836f0e848d241271a27192b0613b505c1a2253304dfa0521de5101494ba7d3b251aac5cf5c7b32cf4583a549a4cdd2b628109962
|
7
|
+
data.tar.gz: 1c78711cf02e3effeb20e62867027358f97eb7485fbf7e05315b24adebfded9d910bd34eb05517b97be83aaaef63f78f544f67dabbd688eedd764880d164c647
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.72.0 (2023-06-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.71.0 (2023-06-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds a new parameter StructuredLogDestinations to CreateServer, UpdateServer APIs.
|
13
|
+
|
4
14
|
1.70.0 (2023-06-15)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.72.0
|
@@ -1026,6 +1026,25 @@ module Aws::Transfer
|
|
1026
1026
|
# upload occurs when the server session disconnects while the file is
|
1027
1027
|
# still being uploaded.
|
1028
1028
|
#
|
1029
|
+
# @option params [Array<String>] :structured_log_destinations
|
1030
|
+
# Specifies the log groups to which your server logs are sent.
|
1031
|
+
#
|
1032
|
+
# To specify a log group, you must provide the ARN for an existing log
|
1033
|
+
# group. In this case, the format of the log group is as follows:
|
1034
|
+
#
|
1035
|
+
# `arn:aws:logs:region-name:amazon-account-id:log-group:log-group-name:*`
|
1036
|
+
#
|
1037
|
+
# For example,
|
1038
|
+
# `arn:aws:logs:us-east-1:111122223333:log-group:mytestgroup:*`
|
1039
|
+
#
|
1040
|
+
# If you have previously specified a log group for a server, you can
|
1041
|
+
# clear it, and in effect turn off structured logging, by providing an
|
1042
|
+
# empty value for this parameter in an `update-server` call. For
|
1043
|
+
# example:
|
1044
|
+
#
|
1045
|
+
# `update-server --server-id s-1234567890abcdef0
|
1046
|
+
# --structured-log-destinations`
|
1047
|
+
#
|
1029
1048
|
# @return [Types::CreateServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1030
1049
|
#
|
1031
1050
|
# * {Types::CreateServerResponse#server_id #server_id} => String
|
@@ -1083,6 +1102,7 @@ module Aws::Transfer
|
|
1083
1102
|
# },
|
1084
1103
|
# ],
|
1085
1104
|
# },
|
1105
|
+
# structured_log_destinations: ["Arn"],
|
1086
1106
|
# })
|
1087
1107
|
#
|
1088
1108
|
# @example Response structure
|
@@ -2198,6 +2218,8 @@ module Aws::Transfer
|
|
2198
2218
|
# resp.server.workflow_details.on_partial_upload #=> Array
|
2199
2219
|
# resp.server.workflow_details.on_partial_upload[0].workflow_id #=> String
|
2200
2220
|
# resp.server.workflow_details.on_partial_upload[0].execution_role #=> String
|
2221
|
+
# resp.server.structured_log_destinations #=> Array
|
2222
|
+
# resp.server.structured_log_destinations[0] #=> String
|
2201
2223
|
#
|
2202
2224
|
#
|
2203
2225
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -4114,6 +4136,25 @@ module Aws::Transfer
|
|
4114
4136
|
# `aws transfer update-server --server-id s-01234567890abcdef
|
4115
4137
|
# --workflow-details '\{"OnUpload":[]\}'`
|
4116
4138
|
#
|
4139
|
+
# @option params [Array<String>] :structured_log_destinations
|
4140
|
+
# Specifies the log groups to which your server logs are sent.
|
4141
|
+
#
|
4142
|
+
# To specify a log group, you must provide the ARN for an existing log
|
4143
|
+
# group. In this case, the format of the log group is as follows:
|
4144
|
+
#
|
4145
|
+
# `arn:aws:logs:region-name:amazon-account-id:log-group:log-group-name:*`
|
4146
|
+
#
|
4147
|
+
# For example,
|
4148
|
+
# `arn:aws:logs:us-east-1:111122223333:log-group:mytestgroup:*`
|
4149
|
+
#
|
4150
|
+
# If you have previously specified a log group for a server, you can
|
4151
|
+
# clear it, and in effect turn off structured logging, by providing an
|
4152
|
+
# empty value for this parameter in an `update-server` call. For
|
4153
|
+
# example:
|
4154
|
+
#
|
4155
|
+
# `update-server --server-id s-1234567890abcdef0
|
4156
|
+
# --structured-log-destinations`
|
4157
|
+
#
|
4117
4158
|
# @return [Types::UpdateServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4118
4159
|
#
|
4119
4160
|
# * {Types::UpdateServerResponse#server_id #server_id} => String
|
@@ -4164,6 +4205,7 @@ module Aws::Transfer
|
|
4164
4205
|
# },
|
4165
4206
|
# ],
|
4166
4207
|
# },
|
4208
|
+
# structured_log_destinations: ["Arn"],
|
4167
4209
|
# })
|
4168
4210
|
#
|
4169
4211
|
# @example Response structure
|
@@ -4337,7 +4379,7 @@ module Aws::Transfer
|
|
4337
4379
|
params: params,
|
4338
4380
|
config: config)
|
4339
4381
|
context[:gem_name] = 'aws-sdk-transfer'
|
4340
|
-
context[:gem_version] = '1.
|
4382
|
+
context[:gem_version] = '1.72.0'
|
4341
4383
|
Seahorse::Client::Request.new(handlers, context)
|
4342
4384
|
end
|
4343
4385
|
|
@@ -265,6 +265,7 @@ module Aws::Transfer
|
|
265
265
|
StatusCode = Shapes::IntegerShape.new(name: 'StatusCode')
|
266
266
|
StepResultOutputsJson = Shapes::StringShape.new(name: 'StepResultOutputsJson')
|
267
267
|
StopServerRequest = Shapes::StructureShape.new(name: 'StopServerRequest')
|
268
|
+
StructuredLogDestinations = Shapes::ListShape.new(name: 'StructuredLogDestinations')
|
268
269
|
SubnetId = Shapes::StringShape.new(name: 'SubnetId')
|
269
270
|
SubnetIds = Shapes::ListShape.new(name: 'SubnetIds')
|
270
271
|
Tag = Shapes::StructureShape.new(name: 'Tag')
|
@@ -401,6 +402,7 @@ module Aws::Transfer
|
|
401
402
|
CreateServerRequest.add_member(:security_policy_name, Shapes::ShapeRef.new(shape: SecurityPolicyName, location_name: "SecurityPolicyName"))
|
402
403
|
CreateServerRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
403
404
|
CreateServerRequest.add_member(:workflow_details, Shapes::ShapeRef.new(shape: WorkflowDetails, location_name: "WorkflowDetails"))
|
405
|
+
CreateServerRequest.add_member(:structured_log_destinations, Shapes::ShapeRef.new(shape: StructuredLogDestinations, location_name: "StructuredLogDestinations"))
|
404
406
|
CreateServerRequest.struct_class = Types::CreateServerRequest
|
405
407
|
|
406
408
|
CreateServerResponse.add_member(:server_id, Shapes::ShapeRef.new(shape: ServerId, required: true, location_name: "ServerId"))
|
@@ -658,6 +660,7 @@ module Aws::Transfer
|
|
658
660
|
DescribedServer.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
659
661
|
DescribedServer.add_member(:user_count, Shapes::ShapeRef.new(shape: UserCount, location_name: "UserCount"))
|
660
662
|
DescribedServer.add_member(:workflow_details, Shapes::ShapeRef.new(shape: WorkflowDetails, location_name: "WorkflowDetails"))
|
663
|
+
DescribedServer.add_member(:structured_log_destinations, Shapes::ShapeRef.new(shape: StructuredLogDestinations, location_name: "StructuredLogDestinations"))
|
661
664
|
DescribedServer.struct_class = Types::DescribedServer
|
662
665
|
|
663
666
|
DescribedUser.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "Arn"))
|
@@ -1061,6 +1064,8 @@ module Aws::Transfer
|
|
1061
1064
|
StopServerRequest.add_member(:server_id, Shapes::ShapeRef.new(shape: ServerId, required: true, location_name: "ServerId"))
|
1062
1065
|
StopServerRequest.struct_class = Types::StopServerRequest
|
1063
1066
|
|
1067
|
+
StructuredLogDestinations.member = Shapes::ShapeRef.new(shape: Arn)
|
1068
|
+
|
1064
1069
|
SubnetIds.member = Shapes::ShapeRef.new(shape: SubnetId)
|
1065
1070
|
|
1066
1071
|
Tag.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, required: true, location_name: "Key"))
|
@@ -1175,6 +1180,7 @@ module Aws::Transfer
|
|
1175
1180
|
UpdateServerRequest.add_member(:security_policy_name, Shapes::ShapeRef.new(shape: SecurityPolicyName, location_name: "SecurityPolicyName"))
|
1176
1181
|
UpdateServerRequest.add_member(:server_id, Shapes::ShapeRef.new(shape: ServerId, required: true, location_name: "ServerId"))
|
1177
1182
|
UpdateServerRequest.add_member(:workflow_details, Shapes::ShapeRef.new(shape: WorkflowDetails, location_name: "WorkflowDetails"))
|
1183
|
+
UpdateServerRequest.add_member(:structured_log_destinations, Shapes::ShapeRef.new(shape: StructuredLogDestinations, location_name: "StructuredLogDestinations"))
|
1178
1184
|
UpdateServerRequest.struct_class = Types::UpdateServerRequest
|
1179
1185
|
|
1180
1186
|
UpdateServerResponse.add_member(:server_id, Shapes::ShapeRef.new(shape: ServerId, required: true, location_name: "ServerId"))
|
@@ -789,6 +789,26 @@ module Aws::Transfer
|
|
789
789
|
# file is still being uploaded.
|
790
790
|
# @return [Types::WorkflowDetails]
|
791
791
|
#
|
792
|
+
# @!attribute [rw] structured_log_destinations
|
793
|
+
# Specifies the log groups to which your server logs are sent.
|
794
|
+
#
|
795
|
+
# To specify a log group, you must provide the ARN for an existing log
|
796
|
+
# group. In this case, the format of the log group is as follows:
|
797
|
+
#
|
798
|
+
# `arn:aws:logs:region-name:amazon-account-id:log-group:log-group-name:*`
|
799
|
+
#
|
800
|
+
# For example,
|
801
|
+
# `arn:aws:logs:us-east-1:111122223333:log-group:mytestgroup:*`
|
802
|
+
#
|
803
|
+
# If you have previously specified a log group for a server, you can
|
804
|
+
# clear it, and in effect turn off structured logging, by providing an
|
805
|
+
# empty value for this parameter in an `update-server` call. For
|
806
|
+
# example:
|
807
|
+
#
|
808
|
+
# `update-server --server-id s-1234567890abcdef0
|
809
|
+
# --structured-log-destinations`
|
810
|
+
# @return [Array<String>]
|
811
|
+
#
|
792
812
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/CreateServerRequest AWS API Documentation
|
793
813
|
#
|
794
814
|
class CreateServerRequest < Struct.new(
|
@@ -806,7 +826,8 @@ module Aws::Transfer
|
|
806
826
|
:protocol_details,
|
807
827
|
:security_policy_name,
|
808
828
|
:tags,
|
809
|
-
:workflow_details
|
829
|
+
:workflow_details,
|
830
|
+
:structured_log_destinations)
|
810
831
|
SENSITIVE = [:host_key]
|
811
832
|
include Aws::Structure
|
812
833
|
end
|
@@ -2440,6 +2461,26 @@ module Aws::Transfer
|
|
2440
2461
|
# file is still being uploaded.
|
2441
2462
|
# @return [Types::WorkflowDetails]
|
2442
2463
|
#
|
2464
|
+
# @!attribute [rw] structured_log_destinations
|
2465
|
+
# Specifies the log groups to which your server logs are sent.
|
2466
|
+
#
|
2467
|
+
# To specify a log group, you must provide the ARN for an existing log
|
2468
|
+
# group. In this case, the format of the log group is as follows:
|
2469
|
+
#
|
2470
|
+
# `arn:aws:logs:region-name:amazon-account-id:log-group:log-group-name:*`
|
2471
|
+
#
|
2472
|
+
# For example,
|
2473
|
+
# `arn:aws:logs:us-east-1:111122223333:log-group:mytestgroup:*`
|
2474
|
+
#
|
2475
|
+
# If you have previously specified a log group for a server, you can
|
2476
|
+
# clear it, and in effect turn off structured logging, by providing an
|
2477
|
+
# empty value for this parameter in an `update-server` call. For
|
2478
|
+
# example:
|
2479
|
+
#
|
2480
|
+
# `update-server --server-id s-1234567890abcdef0
|
2481
|
+
# --structured-log-destinations`
|
2482
|
+
# @return [Array<String>]
|
2483
|
+
#
|
2443
2484
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribedServer AWS API Documentation
|
2444
2485
|
#
|
2445
2486
|
class DescribedServer < Struct.new(
|
@@ -2461,7 +2502,8 @@ module Aws::Transfer
|
|
2461
2502
|
:state,
|
2462
2503
|
:tags,
|
2463
2504
|
:user_count,
|
2464
|
-
:workflow_details
|
2505
|
+
:workflow_details,
|
2506
|
+
:structured_log_destinations)
|
2465
2507
|
SENSITIVE = []
|
2466
2508
|
include Aws::Structure
|
2467
2509
|
end
|
@@ -5520,6 +5562,26 @@ module Aws::Transfer
|
|
5520
5562
|
# --workflow-details '\{"OnUpload":[]\}'`
|
5521
5563
|
# @return [Types::WorkflowDetails]
|
5522
5564
|
#
|
5565
|
+
# @!attribute [rw] structured_log_destinations
|
5566
|
+
# Specifies the log groups to which your server logs are sent.
|
5567
|
+
#
|
5568
|
+
# To specify a log group, you must provide the ARN for an existing log
|
5569
|
+
# group. In this case, the format of the log group is as follows:
|
5570
|
+
#
|
5571
|
+
# `arn:aws:logs:region-name:amazon-account-id:log-group:log-group-name:*`
|
5572
|
+
#
|
5573
|
+
# For example,
|
5574
|
+
# `arn:aws:logs:us-east-1:111122223333:log-group:mytestgroup:*`
|
5575
|
+
#
|
5576
|
+
# If you have previously specified a log group for a server, you can
|
5577
|
+
# clear it, and in effect turn off structured logging, by providing an
|
5578
|
+
# empty value for this parameter in an `update-server` call. For
|
5579
|
+
# example:
|
5580
|
+
#
|
5581
|
+
# `update-server --server-id s-1234567890abcdef0
|
5582
|
+
# --structured-log-destinations`
|
5583
|
+
# @return [Array<String>]
|
5584
|
+
#
|
5523
5585
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/UpdateServerRequest AWS API Documentation
|
5524
5586
|
#
|
5525
5587
|
class UpdateServerRequest < Struct.new(
|
@@ -5535,7 +5597,8 @@ module Aws::Transfer
|
|
5535
5597
|
:protocols,
|
5536
5598
|
:security_policy_name,
|
5537
5599
|
:server_id,
|
5538
|
-
:workflow_details
|
5600
|
+
:workflow_details,
|
5601
|
+
:structured_log_destinations)
|
5539
5602
|
SENSITIVE = [:host_key]
|
5540
5603
|
include Aws::Structure
|
5541
5604
|
end
|
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.72.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: 2023-06-
|
11
|
+
date: 2023-06-28 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.176.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.176.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|