aws-sdk-transfer 1.123.0 → 1.125.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 +64 -3
- data/lib/aws-sdk-transfer/client_api.rb +1 -0
- data/lib/aws-sdk-transfer/types.rb +61 -8
- data/lib/aws-sdk-transfer.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +1 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8d54a0792f4c135a09b822825e7b83ea75c8b03225072698df84bf9b4af21c78
|
4
|
+
data.tar.gz: 5b88d2ddc6de6f3e520de749784bd9ffc0b5c37a186553dd18f5b7109f007d69
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd4542cd58ee41624667f0e7da14451733d178e4c74998f248ae026c6898c944103274577813a0d94a21eed6e837913bfac331d003998ae42fa936b0ea6e5d2a
|
7
|
+
data.tar.gz: 2479f0f07012458123ea6d72570316b53d5e19ef0bd84529feb6353cf8134a612ed81a438027c5510b21832931a52bf599e1923d9fce84cc2d2d81f2936da229
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.125.0 (2025-09-30)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add support for updating server identity provider type
|
8
|
+
|
9
|
+
1.124.0 (2025-08-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Remove incorrect endpoint tests
|
13
|
+
|
4
14
|
1.123.0 (2025-08-04)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.125.0
|
@@ -1278,7 +1278,11 @@ module Aws::Transfer
|
|
1278
1278
|
#
|
1279
1279
|
# @option params [Types::S3StorageOptions] :s3_storage_options
|
1280
1280
|
# Specifies whether or not performance for your Amazon S3 directories is
|
1281
|
-
# optimized.
|
1281
|
+
# optimized.
|
1282
|
+
#
|
1283
|
+
# * If using the console, this is enabled by default.
|
1284
|
+
#
|
1285
|
+
# * If using the API or CLI, this is disabled by default.
|
1282
1286
|
#
|
1283
1287
|
# By default, home directory mappings have a `TYPE` of `DIRECTORY`. If
|
1284
1288
|
# you enable this option, you would then need to explicitly set the
|
@@ -2288,6 +2292,14 @@ module Aws::Transfer
|
|
2288
2292
|
|
2289
2293
|
# Describes the certificate that's identified by the `CertificateId`.
|
2290
2294
|
#
|
2295
|
+
# <note markdown="1"> Transfer Family automatically publishes a Amazon CloudWatch metric
|
2296
|
+
# called `DaysUntilExpiry` for imported certificates. This metric tracks
|
2297
|
+
# the number of days until the certificate expires based on the
|
2298
|
+
# `InactiveDate`. The metric is available in the `AWS/Transfer`
|
2299
|
+
# namespace and includes the `CertificateId` as a dimension.
|
2300
|
+
#
|
2301
|
+
# </note>
|
2302
|
+
#
|
2291
2303
|
# @option params [required, String] :certificate_id
|
2292
2304
|
# An array of identifiers for the imported certificates. You use this
|
2293
2305
|
# identifier for working with profiles and partner profiles.
|
@@ -2897,11 +2909,33 @@ module Aws::Transfer
|
|
2897
2909
|
# You can import both the certificate and its chain in the `Certificate`
|
2898
2910
|
# parameter.
|
2899
2911
|
#
|
2912
|
+
# After importing a certificate, Transfer Family automatically creates a
|
2913
|
+
# Amazon CloudWatch metric called `DaysUntilExpiry` that tracks the
|
2914
|
+
# number of days until the certificate expires. The metric is based on
|
2915
|
+
# the `InactiveDate` parameter and is published daily in the
|
2916
|
+
# `AWS/Transfer` namespace.
|
2917
|
+
#
|
2918
|
+
# It can take up to a full day after importing a certificate for
|
2919
|
+
# Transfer Family to emit the `DaysUntilExpiry` metric to your account.
|
2920
|
+
#
|
2900
2921
|
# <note markdown="1"> If you use the `Certificate` parameter to upload both the certificate
|
2901
2922
|
# and its chain, don't use the `CertificateChain` parameter.
|
2902
2923
|
#
|
2903
2924
|
# </note>
|
2904
2925
|
#
|
2926
|
+
# **CloudWatch monitoring**
|
2927
|
+
#
|
2928
|
+
# The `DaysUntilExpiry` metric includes the following specifications:
|
2929
|
+
#
|
2930
|
+
# * **Units:** Count (days)
|
2931
|
+
#
|
2932
|
+
# * **Dimensions:** `CertificateId` (always present), `Description` (if
|
2933
|
+
# provided during certificate import)
|
2934
|
+
#
|
2935
|
+
# * **Statistics:** Minimum, Maximum, Average
|
2936
|
+
#
|
2937
|
+
# * **Frequency:** Published daily
|
2938
|
+
#
|
2905
2939
|
# @option params [required, String] :usage
|
2906
2940
|
# Specifies how this certificate is used. It can be used in the
|
2907
2941
|
# following ways:
|
@@ -5167,7 +5201,11 @@ module Aws::Transfer
|
|
5167
5201
|
#
|
5168
5202
|
# @option params [Types::S3StorageOptions] :s3_storage_options
|
5169
5203
|
# Specifies whether or not performance for your Amazon S3 directories is
|
5170
|
-
# optimized.
|
5204
|
+
# optimized.
|
5205
|
+
#
|
5206
|
+
# * If using the console, this is enabled by default.
|
5207
|
+
#
|
5208
|
+
# * If using the API or CLI, this is disabled by default.
|
5171
5209
|
#
|
5172
5210
|
# By default, home directory mappings have a `TYPE` of `DIRECTORY`. If
|
5173
5211
|
# you enable this option, you would then need to explicitly set the
|
@@ -5196,6 +5234,28 @@ module Aws::Transfer
|
|
5196
5234
|
#
|
5197
5235
|
# [1]: https://docs.aws.amazon.com/transfer/latest/APIReference/API_EndpointDetails.html
|
5198
5236
|
#
|
5237
|
+
# @option params [String] :identity_provider_type
|
5238
|
+
# The mode of authentication for a server. The default value is
|
5239
|
+
# `SERVICE_MANAGED`, which allows you to store and access user
|
5240
|
+
# credentials within the Transfer Family service.
|
5241
|
+
#
|
5242
|
+
# Use `AWS_DIRECTORY_SERVICE` to provide access to Active Directory
|
5243
|
+
# groups in Directory Service for Microsoft Active Directory or
|
5244
|
+
# Microsoft Active Directory in your on-premises environment or in
|
5245
|
+
# Amazon Web Services using AD Connector. This option also requires you
|
5246
|
+
# to provide a Directory ID by using the `IdentityProviderDetails`
|
5247
|
+
# parameter.
|
5248
|
+
#
|
5249
|
+
# Use the `API_GATEWAY` value to integrate with an identity provider of
|
5250
|
+
# your choosing. The `API_GATEWAY` setting requires you to provide an
|
5251
|
+
# Amazon API Gateway endpoint URL to call for authentication by using
|
5252
|
+
# the `IdentityProviderDetails` parameter.
|
5253
|
+
#
|
5254
|
+
# Use the `AWS_LAMBDA` value to directly use an Lambda function as your
|
5255
|
+
# identity provider. If you choose this value, you must specify the ARN
|
5256
|
+
# for the Lambda function in the `Function` parameter for the
|
5257
|
+
# `IdentityProviderDetails` data type.
|
5258
|
+
#
|
5199
5259
|
# @return [Types::UpdateServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5200
5260
|
#
|
5201
5261
|
# * {Types::UpdateServerResponse#server_id #server_id} => String
|
@@ -5251,6 +5311,7 @@ module Aws::Transfer
|
|
5251
5311
|
# directory_listing_optimization: "ENABLED", # accepts ENABLED, DISABLED
|
5252
5312
|
# },
|
5253
5313
|
# ip_address_type: "IPV4", # accepts IPV4, DUALSTACK
|
5314
|
+
# identity_provider_type: "SERVICE_MANAGED", # accepts SERVICE_MANAGED, API_GATEWAY, AWS_DIRECTORY_SERVICE, AWS_LAMBDA
|
5254
5315
|
# })
|
5255
5316
|
#
|
5256
5317
|
# @example Response structure
|
@@ -5550,7 +5611,7 @@ module Aws::Transfer
|
|
5550
5611
|
tracer: tracer
|
5551
5612
|
)
|
5552
5613
|
context[:gem_name] = 'aws-sdk-transfer'
|
5553
|
-
context[:gem_version] = '1.
|
5614
|
+
context[:gem_version] = '1.125.0'
|
5554
5615
|
Seahorse::Client::Request.new(handlers, context)
|
5555
5616
|
end
|
5556
5617
|
|
@@ -1443,6 +1443,7 @@ module Aws::Transfer
|
|
1443
1443
|
UpdateServerRequest.add_member(:structured_log_destinations, Shapes::ShapeRef.new(shape: StructuredLogDestinations, location_name: "StructuredLogDestinations"))
|
1444
1444
|
UpdateServerRequest.add_member(:s3_storage_options, Shapes::ShapeRef.new(shape: S3StorageOptions, location_name: "S3StorageOptions"))
|
1445
1445
|
UpdateServerRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "IpAddressType"))
|
1446
|
+
UpdateServerRequest.add_member(:identity_provider_type, Shapes::ShapeRef.new(shape: IdentityProviderType, location_name: "IdentityProviderType"))
|
1446
1447
|
UpdateServerRequest.struct_class = Types::UpdateServerRequest
|
1447
1448
|
|
1448
1449
|
UpdateServerResponse.add_member(:server_id, Shapes::ShapeRef.new(shape: ServerId, required: true, location_name: "ServerId"))
|
@@ -1008,7 +1008,11 @@ module Aws::Transfer
|
|
1008
1008
|
#
|
1009
1009
|
# @!attribute [rw] s3_storage_options
|
1010
1010
|
# Specifies whether or not performance for your Amazon S3 directories
|
1011
|
-
# is optimized.
|
1011
|
+
# is optimized.
|
1012
|
+
#
|
1013
|
+
# * If using the console, this is enabled by default.
|
1014
|
+
#
|
1015
|
+
# * If using the API or CLI, this is disabled by default.
|
1012
1016
|
#
|
1013
1017
|
# By default, home directory mappings have a `TYPE` of `DIRECTORY`. If
|
1014
1018
|
# you enable this option, you would then need to explicitly set the
|
@@ -3103,7 +3107,11 @@ module Aws::Transfer
|
|
3103
3107
|
#
|
3104
3108
|
# @!attribute [rw] s3_storage_options
|
3105
3109
|
# Specifies whether or not performance for your Amazon S3 directories
|
3106
|
-
# is optimized.
|
3110
|
+
# is optimized.
|
3111
|
+
#
|
3112
|
+
# * If using the console, this is enabled by default.
|
3113
|
+
#
|
3114
|
+
# * If using the API or CLI, this is disabled by default.
|
3107
3115
|
#
|
3108
3116
|
# By default, home directory mappings have a `TYPE` of `DIRECTORY`. If
|
3109
3117
|
# you enable this option, you would then need to explicitly set the
|
@@ -3589,7 +3597,15 @@ module Aws::Transfer
|
|
3589
3597
|
# A list of security groups IDs that are available to attach to your
|
3590
3598
|
# server's endpoint.
|
3591
3599
|
#
|
3592
|
-
# <note markdown="1">
|
3600
|
+
# <note markdown="1"> While `SecurityGroupIds` appears in the response syntax for
|
3601
|
+
# consistency with `CreateServer` and `UpdateServer` operations, this
|
3602
|
+
# field is not populated in `DescribeServer` responses. Security
|
3603
|
+
# groups are managed at the VPC endpoint level and can be modified
|
3604
|
+
# outside of the Transfer Family service. To retrieve current security
|
3605
|
+
# group information, use the EC2 `DescribeVpcEndpoints` API with the
|
3606
|
+
# `VpcEndpointId` returned in the response.
|
3607
|
+
#
|
3608
|
+
# This property can only be set when `EndpointType` is set to `VPC`.
|
3593
3609
|
#
|
3594
3610
|
# You can edit the `SecurityGroupIds` property in the
|
3595
3611
|
# [UpdateServer][1] API only if you are changing the `EndpointType`
|
@@ -5642,7 +5658,11 @@ module Aws::Transfer
|
|
5642
5658
|
#
|
5643
5659
|
# @!attribute [rw] directory_listing_optimization
|
5644
5660
|
# Specifies whether or not performance for your Amazon S3 directories
|
5645
|
-
# is optimized.
|
5661
|
+
# is optimized.
|
5662
|
+
#
|
5663
|
+
# * If using the console, this is enabled by default.
|
5664
|
+
#
|
5665
|
+
# * If using the API or CLI, this is disabled by default.
|
5646
5666
|
#
|
5647
5667
|
# By default, home directory mappings have a `TYPE` of `DIRECTORY`. If
|
5648
5668
|
# you enable this option, you would then need to explicitly set the
|
@@ -5801,8 +5821,13 @@ module Aws::Transfer
|
|
5801
5821
|
#
|
5802
5822
|
# @!attribute [rw] max_concurrent_connections
|
5803
5823
|
# Specify the number of concurrent connections that your connector
|
5804
|
-
# creates to the remote server. The default value is `
|
5805
|
-
#
|
5824
|
+
# creates to the remote server. The default value is `1`. The maximum
|
5825
|
+
# values is `5`.
|
5826
|
+
#
|
5827
|
+
# <note markdown="1"> If you are using the Amazon Web Services Management Console, the
|
5828
|
+
# default value is `5`.
|
5829
|
+
#
|
5830
|
+
# </note>
|
5806
5831
|
#
|
5807
5832
|
# This parameter specifies the number of active connections that your
|
5808
5833
|
# connector can establish with the remote server at the same time.
|
@@ -7095,7 +7120,11 @@ module Aws::Transfer
|
|
7095
7120
|
#
|
7096
7121
|
# @!attribute [rw] s3_storage_options
|
7097
7122
|
# Specifies whether or not performance for your Amazon S3 directories
|
7098
|
-
# is optimized.
|
7123
|
+
# is optimized.
|
7124
|
+
#
|
7125
|
+
# * If using the console, this is enabled by default.
|
7126
|
+
#
|
7127
|
+
# * If using the API or CLI, this is disabled by default.
|
7099
7128
|
#
|
7100
7129
|
# By default, home directory mappings have a `TYPE` of `DIRECTORY`. If
|
7101
7130
|
# you enable this option, you would then need to explicitly set the
|
@@ -7128,6 +7157,29 @@ module Aws::Transfer
|
|
7128
7157
|
# [1]: https://docs.aws.amazon.com/transfer/latest/APIReference/API_EndpointDetails.html
|
7129
7158
|
# @return [String]
|
7130
7159
|
#
|
7160
|
+
# @!attribute [rw] identity_provider_type
|
7161
|
+
# The mode of authentication for a server. The default value is
|
7162
|
+
# `SERVICE_MANAGED`, which allows you to store and access user
|
7163
|
+
# credentials within the Transfer Family service.
|
7164
|
+
#
|
7165
|
+
# Use `AWS_DIRECTORY_SERVICE` to provide access to Active Directory
|
7166
|
+
# groups in Directory Service for Microsoft Active Directory or
|
7167
|
+
# Microsoft Active Directory in your on-premises environment or in
|
7168
|
+
# Amazon Web Services using AD Connector. This option also requires
|
7169
|
+
# you to provide a Directory ID by using the `IdentityProviderDetails`
|
7170
|
+
# parameter.
|
7171
|
+
#
|
7172
|
+
# Use the `API_GATEWAY` value to integrate with an identity provider
|
7173
|
+
# of your choosing. The `API_GATEWAY` setting requires you to provide
|
7174
|
+
# an Amazon API Gateway endpoint URL to call for authentication by
|
7175
|
+
# using the `IdentityProviderDetails` parameter.
|
7176
|
+
#
|
7177
|
+
# Use the `AWS_LAMBDA` value to directly use an Lambda function as
|
7178
|
+
# your identity provider. If you choose this value, you must specify
|
7179
|
+
# the ARN for the Lambda function in the `Function` parameter for the
|
7180
|
+
# `IdentityProviderDetails` data type.
|
7181
|
+
# @return [String]
|
7182
|
+
#
|
7131
7183
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/UpdateServerRequest AWS API Documentation
|
7132
7184
|
#
|
7133
7185
|
class UpdateServerRequest < Struct.new(
|
@@ -7146,7 +7198,8 @@ module Aws::Transfer
|
|
7146
7198
|
:workflow_details,
|
7147
7199
|
:structured_log_destinations,
|
7148
7200
|
:s3_storage_options,
|
7149
|
-
:ip_address_type
|
7201
|
+
:ip_address_type,
|
7202
|
+
:identity_provider_type)
|
7150
7203
|
SENSITIVE = [:host_key]
|
7151
7204
|
include Aws::Structure
|
7152
7205
|
end
|
data/lib/aws-sdk-transfer.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -1197,7 +1197,8 @@ module Aws
|
|
1197
1197
|
?s3_storage_options: {
|
1198
1198
|
directory_listing_optimization: ("ENABLED" | "DISABLED")?
|
1199
1199
|
},
|
1200
|
-
?ip_address_type: ("IPV4" | "DUALSTACK")
|
1200
|
+
?ip_address_type: ("IPV4" | "DUALSTACK"),
|
1201
|
+
?identity_provider_type: ("SERVICE_MANAGED" | "API_GATEWAY" | "AWS_DIRECTORY_SERVICE" | "AWS_LAMBDA")
|
1201
1202
|
) -> _UpdateServerResponseSuccess
|
1202
1203
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateServerResponseSuccess
|
1203
1204
|
|
data/sig/types.rbs
CHANGED
@@ -1361,6 +1361,7 @@ module Aws::Transfer
|
|
1361
1361
|
attr_accessor structured_log_destinations: ::Array[::String]
|
1362
1362
|
attr_accessor s3_storage_options: Types::S3StorageOptions
|
1363
1363
|
attr_accessor ip_address_type: ("IPV4" | "DUALSTACK")
|
1364
|
+
attr_accessor identity_provider_type: ("SERVICE_MANAGED" | "API_GATEWAY" | "AWS_DIRECTORY_SERVICE" | "AWS_LAMBDA")
|
1364
1365
|
SENSITIVE: [:host_key]
|
1365
1366
|
end
|
1366
1367
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.125.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.231.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.231.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|