aws-sdk-datasync 1.46.0 → 1.47.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-datasync/client.rb +47 -34
- data/lib/aws-sdk-datasync/client_api.rb +8 -0
- data/lib/aws-sdk-datasync/types.rb +89 -53
- data/lib/aws-sdk-datasync.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: f4b4666d779f79d3e61f739a78e58ce6c2f99dd4896bca06a5c8974f27687418
|
4
|
+
data.tar.gz: 9bef7aa7fb8dfbc06c9ed60e1866017981cfe83749133ce08f2ce3ba393d8d9f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 14263ad0d6e96e6ff3cc74963fdb1716d5956bf6c0fd85a93b57e02da0da9cd3cd3b76e87f0ed91850100ee7bb1532ec54c09e4180f8ade5254c10b0c8e3a0dc
|
7
|
+
data.tar.gz: 2cafbcf534a3933d757cebb5d39b78a5679f91df0f7baac2aec6e9c88e744f6452268b77835cdfa655de193c3ab7f7afe5e6a212c8b7116e7e4cfb9201444eed
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.47.0 (2022-05-27)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - AWS DataSync now supports TLS encryption in transit, file system policies and access points for EFS locations.
|
8
|
+
|
4
9
|
1.46.0 (2022-05-05)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.47.0
|
@@ -508,50 +508,53 @@ module Aws::DataSync
|
|
508
508
|
req.send_request(options)
|
509
509
|
end
|
510
510
|
|
511
|
-
# Creates an endpoint for an Amazon EFS file system
|
511
|
+
# Creates an endpoint for an Amazon EFS file system that DataSync can
|
512
|
+
# access for a transfer. For more information, see [Creating a location
|
513
|
+
# for Amazon EFS][1].
|
514
|
+
#
|
515
|
+
#
|
516
|
+
#
|
517
|
+
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-efs-location.html
|
512
518
|
#
|
513
519
|
# @option params [String] :subdirectory
|
514
|
-
#
|
515
|
-
#
|
516
|
-
#
|
517
|
-
#
|
520
|
+
# Specifies a mount path for your Amazon EFS file system. This is where
|
521
|
+
# DataSync reads or writes data (depending on if this is a source or
|
522
|
+
# destination location). By default, DataSync uses the root directory,
|
523
|
+
# but you can also include subdirectories.
|
518
524
|
#
|
519
|
-
# <note markdown="1">
|
520
|
-
# `/path/to/folder
|
525
|
+
# <note markdown="1"> You must specify a value with forward slashes (for example,
|
526
|
+
# `/path/to/folder`).
|
521
527
|
#
|
522
528
|
# </note>
|
523
529
|
#
|
524
530
|
# @option params [required, String] :efs_filesystem_arn
|
525
|
-
#
|
531
|
+
# Specifies the ARN for the Amazon EFS file system.
|
526
532
|
#
|
527
533
|
# @option params [required, Types::Ec2Config] :ec2_config
|
528
|
-
#
|
529
|
-
#
|
530
|
-
# with the security group on the mount target in the subnet specified.
|
534
|
+
# Specifies the subnet and security groups DataSync uses to access your
|
535
|
+
# Amazon EFS file system.
|
531
536
|
#
|
532
|
-
#
|
533
|
-
#
|
534
|
-
#
|
537
|
+
# @option params [Array<Types::TagListEntry>] :tags
|
538
|
+
# Specifies the key-value pair that represents a tag that you want to
|
539
|
+
# add to the resource. The value can be an empty string. This value
|
540
|
+
# helps you manage, filter, and search for your resources. We recommend
|
541
|
+
# that you create a name tag for your location.
|
535
542
|
#
|
536
|
-
#
|
537
|
-
#
|
538
|
-
#
|
539
|
-
# connections either by IP address (CIDR range) or security group.
|
543
|
+
# @option params [String] :access_point_arn
|
544
|
+
# Specifies the Amazon Resource Name (ARN) of the access point that
|
545
|
+
# DataSync uses to access the Amazon EFS file system.
|
540
546
|
#
|
541
|
-
#
|
542
|
-
#
|
543
|
-
#
|
544
|
-
# either by IP address (CIDR range) or security group.
|
547
|
+
# @option params [String] :file_system_access_role_arn
|
548
|
+
# Specifies an Identity and Access Management (IAM) role that DataSync
|
549
|
+
# assumes when mounting the Amazon EFS file system.
|
545
550
|
#
|
546
|
-
#
|
547
|
-
#
|
548
|
-
#
|
551
|
+
# @option params [String] :in_transit_encryption
|
552
|
+
# Specifies whether you want DataSync to use TLS encryption when
|
553
|
+
# transferring data to or from your Amazon EFS file system.
|
549
554
|
#
|
550
|
-
#
|
551
|
-
#
|
552
|
-
#
|
553
|
-
# manage, filter, and search for your resources. We recommend that you
|
554
|
-
# create a name tag for your location.
|
555
|
+
# If you specify an access point using `AccessPointArn` or an IAM role
|
556
|
+
# using `FileSystemAccessRoleArn`, you must set this parameter to
|
557
|
+
# `TLS1_2`.
|
555
558
|
#
|
556
559
|
# @return [Types::CreateLocationEfsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
557
560
|
#
|
@@ -572,6 +575,9 @@ module Aws::DataSync
|
|
572
575
|
# value: "TagValue",
|
573
576
|
# },
|
574
577
|
# ],
|
578
|
+
# access_point_arn: "EfsAccessPointArn",
|
579
|
+
# file_system_access_role_arn: "IamRoleArn",
|
580
|
+
# in_transit_encryption: "NONE", # accepts NONE, TLS1_2
|
575
581
|
# })
|
576
582
|
#
|
577
583
|
# @example Response structure
|
@@ -1562,11 +1568,12 @@ module Aws::DataSync
|
|
1562
1568
|
req.send_request(options)
|
1563
1569
|
end
|
1564
1570
|
|
1565
|
-
# Returns metadata
|
1566
|
-
#
|
1571
|
+
# Returns metadata about your DataSync location for an Amazon EFS file
|
1572
|
+
# system.
|
1567
1573
|
#
|
1568
1574
|
# @option params [required, String] :location_arn
|
1569
|
-
# The Amazon Resource Name (ARN) of the EFS
|
1575
|
+
# The Amazon Resource Name (ARN) of the Amazon EFS file system location
|
1576
|
+
# that you want information about.
|
1570
1577
|
#
|
1571
1578
|
# @return [Types::DescribeLocationEfsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1572
1579
|
#
|
@@ -1574,6 +1581,9 @@ module Aws::DataSync
|
|
1574
1581
|
# * {Types::DescribeLocationEfsResponse#location_uri #location_uri} => String
|
1575
1582
|
# * {Types::DescribeLocationEfsResponse#ec2_config #ec2_config} => Types::Ec2Config
|
1576
1583
|
# * {Types::DescribeLocationEfsResponse#creation_time #creation_time} => Time
|
1584
|
+
# * {Types::DescribeLocationEfsResponse#access_point_arn #access_point_arn} => String
|
1585
|
+
# * {Types::DescribeLocationEfsResponse#file_system_access_role_arn #file_system_access_role_arn} => String
|
1586
|
+
# * {Types::DescribeLocationEfsResponse#in_transit_encryption #in_transit_encryption} => String
|
1577
1587
|
#
|
1578
1588
|
# @example Request syntax with placeholder values
|
1579
1589
|
#
|
@@ -1589,6 +1599,9 @@ module Aws::DataSync
|
|
1589
1599
|
# resp.ec2_config.security_group_arns #=> Array
|
1590
1600
|
# resp.ec2_config.security_group_arns[0] #=> String
|
1591
1601
|
# resp.creation_time #=> Time
|
1602
|
+
# resp.access_point_arn #=> String
|
1603
|
+
# resp.file_system_access_role_arn #=> String
|
1604
|
+
# resp.in_transit_encryption #=> String, one of "NONE", "TLS1_2"
|
1592
1605
|
#
|
1593
1606
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeLocationEfs AWS API Documentation
|
1594
1607
|
#
|
@@ -3022,7 +3035,7 @@ module Aws::DataSync
|
|
3022
3035
|
params: params,
|
3023
3036
|
config: config)
|
3024
3037
|
context[:gem_name] = 'aws-sdk-datasync'
|
3025
|
-
context[:gem_version] = '1.
|
3038
|
+
context[:gem_version] = '1.47.0'
|
3026
3039
|
Seahorse::Client::Request.new(handlers, context)
|
3027
3040
|
end
|
3028
3041
|
|
@@ -81,7 +81,9 @@ module Aws::DataSync
|
|
81
81
|
Ec2SecurityGroupArn = Shapes::StringShape.new(name: 'Ec2SecurityGroupArn')
|
82
82
|
Ec2SecurityGroupArnList = Shapes::ListShape.new(name: 'Ec2SecurityGroupArnList')
|
83
83
|
Ec2SubnetArn = Shapes::StringShape.new(name: 'Ec2SubnetArn')
|
84
|
+
EfsAccessPointArn = Shapes::StringShape.new(name: 'EfsAccessPointArn')
|
84
85
|
EfsFilesystemArn = Shapes::StringShape.new(name: 'EfsFilesystemArn')
|
86
|
+
EfsInTransitEncryption = Shapes::StringShape.new(name: 'EfsInTransitEncryption')
|
85
87
|
EfsSubdirectory = Shapes::StringShape.new(name: 'EfsSubdirectory')
|
86
88
|
Endpoint = Shapes::StringShape.new(name: 'Endpoint')
|
87
89
|
EndpointType = Shapes::StringShape.new(name: 'EndpointType')
|
@@ -252,6 +254,9 @@ module Aws::DataSync
|
|
252
254
|
CreateLocationEfsRequest.add_member(:efs_filesystem_arn, Shapes::ShapeRef.new(shape: EfsFilesystemArn, required: true, location_name: "EfsFilesystemArn"))
|
253
255
|
CreateLocationEfsRequest.add_member(:ec2_config, Shapes::ShapeRef.new(shape: Ec2Config, required: true, location_name: "Ec2Config"))
|
254
256
|
CreateLocationEfsRequest.add_member(:tags, Shapes::ShapeRef.new(shape: InputTagList, location_name: "Tags"))
|
257
|
+
CreateLocationEfsRequest.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: EfsAccessPointArn, location_name: "AccessPointArn"))
|
258
|
+
CreateLocationEfsRequest.add_member(:file_system_access_role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, location_name: "FileSystemAccessRoleArn"))
|
259
|
+
CreateLocationEfsRequest.add_member(:in_transit_encryption, Shapes::ShapeRef.new(shape: EfsInTransitEncryption, location_name: "InTransitEncryption"))
|
255
260
|
CreateLocationEfsRequest.struct_class = Types::CreateLocationEfsRequest
|
256
261
|
|
257
262
|
CreateLocationEfsResponse.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, location_name: "LocationArn"))
|
@@ -402,6 +407,9 @@ module Aws::DataSync
|
|
402
407
|
DescribeLocationEfsResponse.add_member(:location_uri, Shapes::ShapeRef.new(shape: LocationUri, location_name: "LocationUri"))
|
403
408
|
DescribeLocationEfsResponse.add_member(:ec2_config, Shapes::ShapeRef.new(shape: Ec2Config, location_name: "Ec2Config"))
|
404
409
|
DescribeLocationEfsResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Time, location_name: "CreationTime"))
|
410
|
+
DescribeLocationEfsResponse.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: EfsAccessPointArn, location_name: "AccessPointArn"))
|
411
|
+
DescribeLocationEfsResponse.add_member(:file_system_access_role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, location_name: "FileSystemAccessRoleArn"))
|
412
|
+
DescribeLocationEfsResponse.add_member(:in_transit_encryption, Shapes::ShapeRef.new(shape: EfsInTransitEncryption, location_name: "InTransitEncryption"))
|
405
413
|
DescribeLocationEfsResponse.struct_class = Types::DescribeLocationEfsResponse
|
406
414
|
|
407
415
|
DescribeLocationFsxLustreRequest.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, required: true, location_name: "LocationArn"))
|
@@ -199,63 +199,68 @@ module Aws::DataSync
|
|
199
199
|
# value: "TagValue",
|
200
200
|
# },
|
201
201
|
# ],
|
202
|
+
# access_point_arn: "EfsAccessPointArn",
|
203
|
+
# file_system_access_role_arn: "IamRoleArn",
|
204
|
+
# in_transit_encryption: "NONE", # accepts NONE, TLS1_2
|
202
205
|
# }
|
203
206
|
#
|
204
207
|
# @!attribute [rw] subdirectory
|
205
|
-
#
|
206
|
-
#
|
207
|
-
#
|
208
|
-
#
|
208
|
+
# Specifies a mount path for your Amazon EFS file system. This is
|
209
|
+
# where DataSync reads or writes data (depending on if this is a
|
210
|
+
# source or destination location). By default, DataSync uses the root
|
211
|
+
# directory, but you can also include subdirectories.
|
209
212
|
#
|
210
|
-
# <note markdown="1">
|
211
|
-
# `/path/to/folder
|
213
|
+
# <note markdown="1"> You must specify a value with forward slashes (for example,
|
214
|
+
# `/path/to/folder`).
|
212
215
|
#
|
213
216
|
# </note>
|
214
217
|
# @return [String]
|
215
218
|
#
|
216
219
|
# @!attribute [rw] efs_filesystem_arn
|
217
|
-
#
|
220
|
+
# Specifies the ARN for the Amazon EFS file system.
|
218
221
|
# @return [String]
|
219
222
|
#
|
220
223
|
# @!attribute [rw] ec2_config
|
221
|
-
#
|
222
|
-
#
|
223
|
-
# with the security group on the mount target in the subnet specified.
|
224
|
-
#
|
225
|
-
# The exact relationship between security group M (of the mount
|
226
|
-
# target) and security group S (which you provide for DataSync to use
|
227
|
-
# at this stage) is as follows:
|
228
|
-
#
|
229
|
-
# * Security group M (which you associate with the mount target) must
|
230
|
-
# allow inbound access for the Transmission Control Protocol (TCP)
|
231
|
-
# on the NFS port (2049) from security group S. You can enable
|
232
|
-
# inbound connections either by IP address (CIDR range) or security
|
233
|
-
# group.
|
234
|
-
#
|
235
|
-
# * Security group S (provided to DataSync to access EFS) should have
|
236
|
-
# a rule that enables outbound connections to the NFS port on one of
|
237
|
-
# the file system’s mount targets. You can enable outbound
|
238
|
-
# connections either by IP address (CIDR range) or security group.
|
239
|
-
#
|
240
|
-
# For information about security groups and mount targets, see
|
241
|
-
# Security Groups for Amazon EC2 Instances and Mount Targets in the
|
242
|
-
# *Amazon EFS User Guide.*
|
224
|
+
# Specifies the subnet and security groups DataSync uses to access
|
225
|
+
# your Amazon EFS file system.
|
243
226
|
# @return [Types::Ec2Config]
|
244
227
|
#
|
245
228
|
# @!attribute [rw] tags
|
246
|
-
#
|
247
|
-
# resource. The value can be an empty string. This value
|
248
|
-
# manage, filter, and search for your resources. We
|
249
|
-
# create a name tag for your location.
|
229
|
+
# Specifies the key-value pair that represents a tag that you want to
|
230
|
+
# add to the resource. The value can be an empty string. This value
|
231
|
+
# helps you manage, filter, and search for your resources. We
|
232
|
+
# recommend that you create a name tag for your location.
|
250
233
|
# @return [Array<Types::TagListEntry>]
|
251
234
|
#
|
235
|
+
# @!attribute [rw] access_point_arn
|
236
|
+
# Specifies the Amazon Resource Name (ARN) of the access point that
|
237
|
+
# DataSync uses to access the Amazon EFS file system.
|
238
|
+
# @return [String]
|
239
|
+
#
|
240
|
+
# @!attribute [rw] file_system_access_role_arn
|
241
|
+
# Specifies an Identity and Access Management (IAM) role that DataSync
|
242
|
+
# assumes when mounting the Amazon EFS file system.
|
243
|
+
# @return [String]
|
244
|
+
#
|
245
|
+
# @!attribute [rw] in_transit_encryption
|
246
|
+
# Specifies whether you want DataSync to use TLS encryption when
|
247
|
+
# transferring data to or from your Amazon EFS file system.
|
248
|
+
#
|
249
|
+
# If you specify an access point using `AccessPointArn` or an IAM role
|
250
|
+
# using `FileSystemAccessRoleArn`, you must set this parameter to
|
251
|
+
# `TLS1_2`.
|
252
|
+
# @return [String]
|
253
|
+
#
|
252
254
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/CreateLocationEfsRequest AWS API Documentation
|
253
255
|
#
|
254
256
|
class CreateLocationEfsRequest < Struct.new(
|
255
257
|
:subdirectory,
|
256
258
|
:efs_filesystem_arn,
|
257
259
|
:ec2_config,
|
258
|
-
:tags
|
260
|
+
:tags,
|
261
|
+
:access_point_arn,
|
262
|
+
:file_system_access_role_arn,
|
263
|
+
:in_transit_encryption)
|
259
264
|
SENSITIVE = []
|
260
265
|
include Aws::Structure
|
261
266
|
end
|
@@ -264,7 +269,7 @@ module Aws::DataSync
|
|
264
269
|
#
|
265
270
|
# @!attribute [rw] location_arn
|
266
271
|
# The Amazon Resource Name (ARN) of the Amazon EFS file system
|
267
|
-
# location that
|
272
|
+
# location that you create.
|
268
273
|
# @return [String]
|
269
274
|
#
|
270
275
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/CreateLocationEfsResponse AWS API Documentation
|
@@ -1424,7 +1429,8 @@ module Aws::DataSync
|
|
1424
1429
|
# }
|
1425
1430
|
#
|
1426
1431
|
# @!attribute [rw] location_arn
|
1427
|
-
# The Amazon Resource Name (ARN) of the EFS
|
1432
|
+
# The Amazon Resource Name (ARN) of the Amazon EFS file system
|
1433
|
+
# location that you want information about.
|
1428
1434
|
# @return [String]
|
1429
1435
|
#
|
1430
1436
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeLocationEfsRequest AWS API Documentation
|
@@ -1438,32 +1444,47 @@ module Aws::DataSync
|
|
1438
1444
|
# DescribeLocationEfsResponse
|
1439
1445
|
#
|
1440
1446
|
# @!attribute [rw] location_arn
|
1441
|
-
# The
|
1442
|
-
# described.
|
1447
|
+
# The ARN of the Amazon EFS file system location.
|
1443
1448
|
# @return [String]
|
1444
1449
|
#
|
1445
1450
|
# @!attribute [rw] location_uri
|
1446
|
-
# The URL of the EFS
|
1451
|
+
# The URL of the Amazon EFS file system location.
|
1447
1452
|
# @return [String]
|
1448
1453
|
#
|
1449
1454
|
# @!attribute [rw] ec2_config
|
1450
|
-
# The subnet that DataSync uses to access
|
1451
|
-
#
|
1452
|
-
# security group that you provide needs to be able to communicate with
|
1453
|
-
# the security group on the mount target in the subnet specified.
|
1455
|
+
# The subnet and security groups that DataSync uses to access your
|
1456
|
+
# Amazon EFS file system.
|
1454
1457
|
# @return [Types::Ec2Config]
|
1455
1458
|
#
|
1456
1459
|
# @!attribute [rw] creation_time
|
1457
|
-
# The time that the
|
1460
|
+
# The time that the location was created.
|
1458
1461
|
# @return [Time]
|
1459
1462
|
#
|
1463
|
+
# @!attribute [rw] access_point_arn
|
1464
|
+
# The ARN of the access point that DataSync uses to access the Amazon
|
1465
|
+
# EFS file system.
|
1466
|
+
# @return [String]
|
1467
|
+
#
|
1468
|
+
# @!attribute [rw] file_system_access_role_arn
|
1469
|
+
# The Identity and Access Management (IAM) role that DataSync assumes
|
1470
|
+
# when mounting the Amazon EFS file system.
|
1471
|
+
# @return [String]
|
1472
|
+
#
|
1473
|
+
# @!attribute [rw] in_transit_encryption
|
1474
|
+
# Whether DataSync uses TLS encryption when transferring data to or
|
1475
|
+
# from your Amazon EFS file system.
|
1476
|
+
# @return [String]
|
1477
|
+
#
|
1460
1478
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeLocationEfsResponse AWS API Documentation
|
1461
1479
|
#
|
1462
1480
|
class DescribeLocationEfsResponse < Struct.new(
|
1463
1481
|
:location_arn,
|
1464
1482
|
:location_uri,
|
1465
1483
|
:ec2_config,
|
1466
|
-
:creation_time
|
1484
|
+
:creation_time,
|
1485
|
+
:access_point_arn,
|
1486
|
+
:file_system_access_role_arn,
|
1487
|
+
:in_transit_encryption)
|
1467
1488
|
SENSITIVE = []
|
1468
1489
|
include Aws::Structure
|
1469
1490
|
end
|
@@ -2298,10 +2319,8 @@ module Aws::DataSync
|
|
2298
2319
|
include Aws::Structure
|
2299
2320
|
end
|
2300
2321
|
|
2301
|
-
# The subnet that DataSync uses to access
|
2302
|
-
#
|
2303
|
-
# security group that you provide needs to be able to communicate with
|
2304
|
-
# the security group on the mount target in the subnet specified.
|
2322
|
+
# The subnet and security groups that DataSync uses to access your
|
2323
|
+
# Amazon EFS file system.
|
2305
2324
|
#
|
2306
2325
|
# @note When making an API call, you may pass Ec2Config
|
2307
2326
|
# data as a hash:
|
@@ -2312,13 +2331,30 @@ module Aws::DataSync
|
|
2312
2331
|
# }
|
2313
2332
|
#
|
2314
2333
|
# @!attribute [rw] subnet_arn
|
2315
|
-
#
|
2316
|
-
#
|
2334
|
+
# Specifies the ARN of a subnet where DataSync creates the [network
|
2335
|
+
# interfaces][1] for managing traffic during your transfer.
|
2336
|
+
#
|
2337
|
+
# The subnet must be located:
|
2338
|
+
#
|
2339
|
+
# * In the same virtual private cloud (VPC) as the Amazon EFS file
|
2340
|
+
# system.
|
2341
|
+
#
|
2342
|
+
# * In the same Availability Zone as at least one mount target for the
|
2343
|
+
# Amazon EFS file system.
|
2344
|
+
#
|
2345
|
+
# <note markdown="1"> You don't need to specify a subnet that includes a file system
|
2346
|
+
# mount target.
|
2347
|
+
#
|
2348
|
+
# </note>
|
2349
|
+
#
|
2350
|
+
#
|
2351
|
+
#
|
2352
|
+
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/datasync-network.html#required-network-interfaces
|
2317
2353
|
# @return [String]
|
2318
2354
|
#
|
2319
2355
|
# @!attribute [rw] security_group_arns
|
2320
|
-
#
|
2321
|
-
#
|
2356
|
+
# Specifies the Amazon Resource Names (ARNs) of the security groups
|
2357
|
+
# associated with an Amazon EFS file system's mount target.
|
2322
2358
|
# @return [Array<String>]
|
2323
2359
|
#
|
2324
2360
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/Ec2Config AWS API Documentation
|
data/lib/aws-sdk-datasync.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-datasync
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.47.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-05-
|
11
|
+
date: 2022-05-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|