aws-sdk-datasync 1.39.0 → 1.43.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datasync/client.rb +110 -9
- data/lib/aws-sdk-datasync/client_api.rb +43 -0
- data/lib/aws-sdk-datasync/types.rb +114 -4
- data/lib/aws-sdk-datasync.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: 1203c9149cf18aa6aac0af620dcc07ec5bec357e7548b730cd1e88eab2e483d2
|
4
|
+
data.tar.gz: f96134d6066b5e748df6b093da323e10ddd4f891a72cac34b70a266d8ea9975d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9de28654279faac927fc5299b404a945c0246d93ad8d607fc000efc768d4068844301abcb0d6b70d6684b3f256a50769dbac3cc871af40ad59a0bc3bf4b96303
|
7
|
+
data.tar.gz: c02b931389e273f8887ff63ec78c25ab10563024288930cc49215460ffef018d9f2775d2268b2e9d9fb53b7dc6a9a1012e1fe0e719e99820e97d1c3c60586593
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.43.0 (2022-02-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.42.0 (2021-12-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.41.0 (2021-12-20)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - AWS DataSync now supports FSx Lustre Locations.
|
18
|
+
|
19
|
+
1.40.0 (2021-11-30)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.39.0 (2021-11-04)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.43.0
|
@@ -27,6 +27,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
31
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
30
32
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
33
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
32
34
|
|
@@ -73,6 +75,8 @@ module Aws::DataSync
|
|
73
75
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
76
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
77
|
add_plugin(Aws::Plugins::HttpChecksum)
|
78
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
79
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
76
80
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
81
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
78
82
|
|
@@ -119,7 +123,9 @@ module Aws::DataSync
|
|
119
123
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
124
|
# are very aggressive. Construct and pass an instance of
|
121
125
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
126
|
+
# enable retries and extended timeouts. Instance profile credential
|
127
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
128
|
+
# to true.
|
123
129
|
#
|
124
130
|
# @option options [required, String] :region
|
125
131
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +179,10 @@ module Aws::DataSync
|
|
173
179
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
180
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
181
|
#
|
182
|
+
# @option options [String] :defaults_mode ("legacy")
|
183
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
184
|
+
# accepted modes and the configuration defaults that are included.
|
185
|
+
#
|
176
186
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
187
|
# Set to true to disable SDK automatically adding host prefix
|
178
188
|
# to default service endpoint when available.
|
@@ -305,7 +315,7 @@ module Aws::DataSync
|
|
305
315
|
# seconds to wait when opening a HTTP session before raising a
|
306
316
|
# `Timeout::Error`.
|
307
317
|
#
|
308
|
-
# @option options [
|
318
|
+
# @option options [Float] :http_read_timeout (60) The default
|
309
319
|
# number of seconds to wait for response data. This value can
|
310
320
|
# safely be set per-request on the session.
|
311
321
|
#
|
@@ -321,6 +331,9 @@ module Aws::DataSync
|
|
321
331
|
# disables this behaviour. This value can safely be set per
|
322
332
|
# request on the session.
|
323
333
|
#
|
334
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
335
|
+
# in seconds.
|
336
|
+
#
|
324
337
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
325
338
|
# HTTP debug output will be sent to the `:logger`.
|
326
339
|
#
|
@@ -572,22 +585,73 @@ module Aws::DataSync
|
|
572
585
|
req.send_request(options)
|
573
586
|
end
|
574
587
|
|
588
|
+
# Creates an endpoint for an Amazon FSx for Lustre file system.
|
589
|
+
#
|
590
|
+
# @option params [required, String] :fsx_filesystem_arn
|
591
|
+
# The Amazon Resource Name (ARN) for the FSx for Lustre file system.
|
592
|
+
#
|
593
|
+
# @option params [required, Array<String>] :security_group_arns
|
594
|
+
# The Amazon Resource Names (ARNs) of the security groups that are used
|
595
|
+
# to configure the FSx for Lustre file system.
|
596
|
+
#
|
597
|
+
# @option params [String] :subdirectory
|
598
|
+
# A subdirectory in the location's path. This subdirectory in the FSx
|
599
|
+
# for Lustre file system is used to read data from the FSx for Lustre
|
600
|
+
# source location or write data to the FSx for Lustre destination.
|
601
|
+
#
|
602
|
+
# @option params [Array<Types::TagListEntry>] :tags
|
603
|
+
# The key-value pair that represents a tag that you want to add to the
|
604
|
+
# resource. The value can be an empty string. This value helps you
|
605
|
+
# manage, filter, and search for your resources. We recommend that you
|
606
|
+
# create a name tag for your location.
|
607
|
+
#
|
608
|
+
# @return [Types::CreateLocationFsxLustreResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
609
|
+
#
|
610
|
+
# * {Types::CreateLocationFsxLustreResponse#location_arn #location_arn} => String
|
611
|
+
#
|
612
|
+
# @example Request syntax with placeholder values
|
613
|
+
#
|
614
|
+
# resp = client.create_location_fsx_lustre({
|
615
|
+
# fsx_filesystem_arn: "FsxFilesystemArn", # required
|
616
|
+
# security_group_arns: ["Ec2SecurityGroupArn"], # required
|
617
|
+
# subdirectory: "FsxLustreSubdirectory",
|
618
|
+
# tags: [
|
619
|
+
# {
|
620
|
+
# key: "TagKey", # required
|
621
|
+
# value: "TagValue",
|
622
|
+
# },
|
623
|
+
# ],
|
624
|
+
# })
|
625
|
+
#
|
626
|
+
# @example Response structure
|
627
|
+
#
|
628
|
+
# resp.location_arn #=> String
|
629
|
+
#
|
630
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/CreateLocationFsxLustre AWS API Documentation
|
631
|
+
#
|
632
|
+
# @overload create_location_fsx_lustre(params = {})
|
633
|
+
# @param [Hash] params ({})
|
634
|
+
def create_location_fsx_lustre(params = {}, options = {})
|
635
|
+
req = build_request(:create_location_fsx_lustre, params)
|
636
|
+
req.send_request(options)
|
637
|
+
end
|
638
|
+
|
575
639
|
# Creates an endpoint for an Amazon FSx for Windows File Server file
|
576
640
|
# system.
|
577
641
|
#
|
578
642
|
# @option params [String] :subdirectory
|
579
|
-
# A subdirectory in the location
|
580
|
-
# FSx for Windows File Server file system is used to read data
|
581
|
-
# Amazon FSx for Windows File Server source location or write
|
582
|
-
# the FSx for Windows File Server destination.
|
643
|
+
# A subdirectory in the location's path. This subdirectory in the
|
644
|
+
# Amazon FSx for Windows File Server file system is used to read data
|
645
|
+
# from the Amazon FSx for Windows File Server source location or write
|
646
|
+
# data to the FSx for Windows File Server destination.
|
583
647
|
#
|
584
648
|
# @option params [required, String] :fsx_filesystem_arn
|
585
649
|
# The Amazon Resource Name (ARN) for the FSx for Windows File Server
|
586
650
|
# file system.
|
587
651
|
#
|
588
652
|
# @option params [required, Array<String>] :security_group_arns
|
589
|
-
# The Amazon Resource Names (ARNs) of the security groups that are
|
590
|
-
#
|
653
|
+
# The Amazon Resource Names (ARNs) of the security groups that are used
|
654
|
+
# to configure the FSx for Windows File Server file system.
|
591
655
|
#
|
592
656
|
# @option params [Array<Types::TagListEntry>] :tags
|
593
657
|
# The key-value pair that represents a tag that you want to add to the
|
@@ -1471,6 +1535,43 @@ module Aws::DataSync
|
|
1471
1535
|
req.send_request(options)
|
1472
1536
|
end
|
1473
1537
|
|
1538
|
+
# Returns metadata, such as the path information about an Amazon FSx for
|
1539
|
+
# Lustre location.
|
1540
|
+
#
|
1541
|
+
# @option params [required, String] :location_arn
|
1542
|
+
# The Amazon Resource Name (ARN) of the FSx for Lustre location to
|
1543
|
+
# describe.
|
1544
|
+
#
|
1545
|
+
# @return [Types::DescribeLocationFsxLustreResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1546
|
+
#
|
1547
|
+
# * {Types::DescribeLocationFsxLustreResponse#location_arn #location_arn} => String
|
1548
|
+
# * {Types::DescribeLocationFsxLustreResponse#location_uri #location_uri} => String
|
1549
|
+
# * {Types::DescribeLocationFsxLustreResponse#security_group_arns #security_group_arns} => Array<String>
|
1550
|
+
# * {Types::DescribeLocationFsxLustreResponse#creation_time #creation_time} => Time
|
1551
|
+
#
|
1552
|
+
# @example Request syntax with placeholder values
|
1553
|
+
#
|
1554
|
+
# resp = client.describe_location_fsx_lustre({
|
1555
|
+
# location_arn: "LocationArn", # required
|
1556
|
+
# })
|
1557
|
+
#
|
1558
|
+
# @example Response structure
|
1559
|
+
#
|
1560
|
+
# resp.location_arn #=> String
|
1561
|
+
# resp.location_uri #=> String
|
1562
|
+
# resp.security_group_arns #=> Array
|
1563
|
+
# resp.security_group_arns[0] #=> String
|
1564
|
+
# resp.creation_time #=> Time
|
1565
|
+
#
|
1566
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeLocationFsxLustre AWS API Documentation
|
1567
|
+
#
|
1568
|
+
# @overload describe_location_fsx_lustre(params = {})
|
1569
|
+
# @param [Hash] params ({})
|
1570
|
+
def describe_location_fsx_lustre(params = {}, options = {})
|
1571
|
+
req = build_request(:describe_location_fsx_lustre, params)
|
1572
|
+
req.send_request(options)
|
1573
|
+
end
|
1574
|
+
|
1474
1575
|
# Returns metadata, such as the path information about an Amazon FSx for
|
1475
1576
|
# Windows File Server location.
|
1476
1577
|
#
|
@@ -2813,7 +2914,7 @@ module Aws::DataSync
|
|
2813
2914
|
params: params,
|
2814
2915
|
config: config)
|
2815
2916
|
context[:gem_name] = 'aws-sdk-datasync'
|
2816
|
-
context[:gem_version] = '1.
|
2917
|
+
context[:gem_version] = '1.43.0'
|
2817
2918
|
Seahorse::Client::Request.new(handlers, context)
|
2818
2919
|
end
|
2819
2920
|
|
@@ -27,6 +27,8 @@ module Aws::DataSync
|
|
27
27
|
CreateAgentResponse = Shapes::StructureShape.new(name: 'CreateAgentResponse')
|
28
28
|
CreateLocationEfsRequest = Shapes::StructureShape.new(name: 'CreateLocationEfsRequest')
|
29
29
|
CreateLocationEfsResponse = Shapes::StructureShape.new(name: 'CreateLocationEfsResponse')
|
30
|
+
CreateLocationFsxLustreRequest = Shapes::StructureShape.new(name: 'CreateLocationFsxLustreRequest')
|
31
|
+
CreateLocationFsxLustreResponse = Shapes::StructureShape.new(name: 'CreateLocationFsxLustreResponse')
|
30
32
|
CreateLocationFsxWindowsRequest = Shapes::StructureShape.new(name: 'CreateLocationFsxWindowsRequest')
|
31
33
|
CreateLocationFsxWindowsResponse = Shapes::StructureShape.new(name: 'CreateLocationFsxWindowsResponse')
|
32
34
|
CreateLocationHdfsRequest = Shapes::StructureShape.new(name: 'CreateLocationHdfsRequest')
|
@@ -51,6 +53,8 @@ module Aws::DataSync
|
|
51
53
|
DescribeAgentResponse = Shapes::StructureShape.new(name: 'DescribeAgentResponse')
|
52
54
|
DescribeLocationEfsRequest = Shapes::StructureShape.new(name: 'DescribeLocationEfsRequest')
|
53
55
|
DescribeLocationEfsResponse = Shapes::StructureShape.new(name: 'DescribeLocationEfsResponse')
|
56
|
+
DescribeLocationFsxLustreRequest = Shapes::StructureShape.new(name: 'DescribeLocationFsxLustreRequest')
|
57
|
+
DescribeLocationFsxLustreResponse = Shapes::StructureShape.new(name: 'DescribeLocationFsxLustreResponse')
|
54
58
|
DescribeLocationFsxWindowsRequest = Shapes::StructureShape.new(name: 'DescribeLocationFsxWindowsRequest')
|
55
59
|
DescribeLocationFsxWindowsResponse = Shapes::StructureShape.new(name: 'DescribeLocationFsxWindowsResponse')
|
56
60
|
DescribeLocationHdfsRequest = Shapes::StructureShape.new(name: 'DescribeLocationHdfsRequest')
|
@@ -84,6 +88,7 @@ module Aws::DataSync
|
|
84
88
|
FilterValue = Shapes::StringShape.new(name: 'FilterValue')
|
85
89
|
FilterValues = Shapes::ListShape.new(name: 'FilterValues')
|
86
90
|
FsxFilesystemArn = Shapes::StringShape.new(name: 'FsxFilesystemArn')
|
91
|
+
FsxLustreSubdirectory = Shapes::StringShape.new(name: 'FsxLustreSubdirectory')
|
87
92
|
FsxWindowsSubdirectory = Shapes::StringShape.new(name: 'FsxWindowsSubdirectory')
|
88
93
|
Gid = Shapes::StringShape.new(name: 'Gid')
|
89
94
|
HdfsAuthenticationType = Shapes::StringShape.new(name: 'HdfsAuthenticationType')
|
@@ -244,6 +249,15 @@ module Aws::DataSync
|
|
244
249
|
CreateLocationEfsResponse.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, location_name: "LocationArn"))
|
245
250
|
CreateLocationEfsResponse.struct_class = Types::CreateLocationEfsResponse
|
246
251
|
|
252
|
+
CreateLocationFsxLustreRequest.add_member(:fsx_filesystem_arn, Shapes::ShapeRef.new(shape: FsxFilesystemArn, required: true, location_name: "FsxFilesystemArn"))
|
253
|
+
CreateLocationFsxLustreRequest.add_member(:security_group_arns, Shapes::ShapeRef.new(shape: Ec2SecurityGroupArnList, required: true, location_name: "SecurityGroupArns"))
|
254
|
+
CreateLocationFsxLustreRequest.add_member(:subdirectory, Shapes::ShapeRef.new(shape: FsxLustreSubdirectory, location_name: "Subdirectory"))
|
255
|
+
CreateLocationFsxLustreRequest.add_member(:tags, Shapes::ShapeRef.new(shape: InputTagList, location_name: "Tags"))
|
256
|
+
CreateLocationFsxLustreRequest.struct_class = Types::CreateLocationFsxLustreRequest
|
257
|
+
|
258
|
+
CreateLocationFsxLustreResponse.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, location_name: "LocationArn"))
|
259
|
+
CreateLocationFsxLustreResponse.struct_class = Types::CreateLocationFsxLustreResponse
|
260
|
+
|
247
261
|
CreateLocationFsxWindowsRequest.add_member(:subdirectory, Shapes::ShapeRef.new(shape: FsxWindowsSubdirectory, location_name: "Subdirectory"))
|
248
262
|
CreateLocationFsxWindowsRequest.add_member(:fsx_filesystem_arn, Shapes::ShapeRef.new(shape: FsxFilesystemArn, required: true, location_name: "FsxFilesystemArn"))
|
249
263
|
CreateLocationFsxWindowsRequest.add_member(:security_group_arns, Shapes::ShapeRef.new(shape: Ec2SecurityGroupArnList, required: true, location_name: "SecurityGroupArns"))
|
@@ -372,6 +386,15 @@ module Aws::DataSync
|
|
372
386
|
DescribeLocationEfsResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Time, location_name: "CreationTime"))
|
373
387
|
DescribeLocationEfsResponse.struct_class = Types::DescribeLocationEfsResponse
|
374
388
|
|
389
|
+
DescribeLocationFsxLustreRequest.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, required: true, location_name: "LocationArn"))
|
390
|
+
DescribeLocationFsxLustreRequest.struct_class = Types::DescribeLocationFsxLustreRequest
|
391
|
+
|
392
|
+
DescribeLocationFsxLustreResponse.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, location_name: "LocationArn"))
|
393
|
+
DescribeLocationFsxLustreResponse.add_member(:location_uri, Shapes::ShapeRef.new(shape: LocationUri, location_name: "LocationUri"))
|
394
|
+
DescribeLocationFsxLustreResponse.add_member(:security_group_arns, Shapes::ShapeRef.new(shape: Ec2SecurityGroupArnList, location_name: "SecurityGroupArns"))
|
395
|
+
DescribeLocationFsxLustreResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Time, location_name: "CreationTime"))
|
396
|
+
DescribeLocationFsxLustreResponse.struct_class = Types::DescribeLocationFsxLustreResponse
|
397
|
+
|
375
398
|
DescribeLocationFsxWindowsRequest.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, required: true, location_name: "LocationArn"))
|
376
399
|
DescribeLocationFsxWindowsRequest.struct_class = Types::DescribeLocationFsxWindowsRequest
|
377
400
|
|
@@ -799,6 +822,16 @@ module Aws::DataSync
|
|
799
822
|
o.errors << Shapes::ShapeRef.new(shape: InternalException)
|
800
823
|
end)
|
801
824
|
|
825
|
+
api.add_operation(:create_location_fsx_lustre, Seahorse::Model::Operation.new.tap do |o|
|
826
|
+
o.name = "CreateLocationFsxLustre"
|
827
|
+
o.http_method = "POST"
|
828
|
+
o.http_request_uri = "/"
|
829
|
+
o.input = Shapes::ShapeRef.new(shape: CreateLocationFsxLustreRequest)
|
830
|
+
o.output = Shapes::ShapeRef.new(shape: CreateLocationFsxLustreResponse)
|
831
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
832
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalException)
|
833
|
+
end)
|
834
|
+
|
802
835
|
api.add_operation(:create_location_fsx_windows, Seahorse::Model::Operation.new.tap do |o|
|
803
836
|
o.name = "CreateLocationFsxWindows"
|
804
837
|
o.http_method = "POST"
|
@@ -919,6 +952,16 @@ module Aws::DataSync
|
|
919
952
|
o.errors << Shapes::ShapeRef.new(shape: InternalException)
|
920
953
|
end)
|
921
954
|
|
955
|
+
api.add_operation(:describe_location_fsx_lustre, Seahorse::Model::Operation.new.tap do |o|
|
956
|
+
o.name = "DescribeLocationFsxLustre"
|
957
|
+
o.http_method = "POST"
|
958
|
+
o.http_request_uri = "/"
|
959
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeLocationFsxLustreRequest)
|
960
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeLocationFsxLustreResponse)
|
961
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
962
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalException)
|
963
|
+
end)
|
964
|
+
|
922
965
|
api.add_operation(:describe_location_fsx_windows, Seahorse::Model::Operation.new.tap do |o|
|
923
966
|
o.name = "DescribeLocationFsxWindows"
|
924
967
|
o.http_method = "POST"
|
@@ -275,6 +275,67 @@ module Aws::DataSync
|
|
275
275
|
include Aws::Structure
|
276
276
|
end
|
277
277
|
|
278
|
+
# @note When making an API call, you may pass CreateLocationFsxLustreRequest
|
279
|
+
# data as a hash:
|
280
|
+
#
|
281
|
+
# {
|
282
|
+
# fsx_filesystem_arn: "FsxFilesystemArn", # required
|
283
|
+
# security_group_arns: ["Ec2SecurityGroupArn"], # required
|
284
|
+
# subdirectory: "FsxLustreSubdirectory",
|
285
|
+
# tags: [
|
286
|
+
# {
|
287
|
+
# key: "TagKey", # required
|
288
|
+
# value: "TagValue",
|
289
|
+
# },
|
290
|
+
# ],
|
291
|
+
# }
|
292
|
+
#
|
293
|
+
# @!attribute [rw] fsx_filesystem_arn
|
294
|
+
# The Amazon Resource Name (ARN) for the FSx for Lustre file system.
|
295
|
+
# @return [String]
|
296
|
+
#
|
297
|
+
# @!attribute [rw] security_group_arns
|
298
|
+
# The Amazon Resource Names (ARNs) of the security groups that are
|
299
|
+
# used to configure the FSx for Lustre file system.
|
300
|
+
# @return [Array<String>]
|
301
|
+
#
|
302
|
+
# @!attribute [rw] subdirectory
|
303
|
+
# A subdirectory in the location's path. This subdirectory in the FSx
|
304
|
+
# for Lustre file system is used to read data from the FSx for Lustre
|
305
|
+
# source location or write data to the FSx for Lustre destination.
|
306
|
+
# @return [String]
|
307
|
+
#
|
308
|
+
# @!attribute [rw] tags
|
309
|
+
# The key-value pair that represents a tag that you want to add to the
|
310
|
+
# resource. The value can be an empty string. This value helps you
|
311
|
+
# manage, filter, and search for your resources. We recommend that you
|
312
|
+
# create a name tag for your location.
|
313
|
+
# @return [Array<Types::TagListEntry>]
|
314
|
+
#
|
315
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/CreateLocationFsxLustreRequest AWS API Documentation
|
316
|
+
#
|
317
|
+
class CreateLocationFsxLustreRequest < Struct.new(
|
318
|
+
:fsx_filesystem_arn,
|
319
|
+
:security_group_arns,
|
320
|
+
:subdirectory,
|
321
|
+
:tags)
|
322
|
+
SENSITIVE = []
|
323
|
+
include Aws::Structure
|
324
|
+
end
|
325
|
+
|
326
|
+
# @!attribute [rw] location_arn
|
327
|
+
# The Amazon Resource Name (ARN) of the FSx for Lustre file system
|
328
|
+
# location that's created.
|
329
|
+
# @return [String]
|
330
|
+
#
|
331
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/CreateLocationFsxLustreResponse AWS API Documentation
|
332
|
+
#
|
333
|
+
class CreateLocationFsxLustreResponse < Struct.new(
|
334
|
+
:location_arn)
|
335
|
+
SENSITIVE = []
|
336
|
+
include Aws::Structure
|
337
|
+
end
|
338
|
+
|
278
339
|
# @note When making an API call, you may pass CreateLocationFsxWindowsRequest
|
279
340
|
# data as a hash:
|
280
341
|
#
|
@@ -294,7 +355,7 @@ module Aws::DataSync
|
|
294
355
|
# }
|
295
356
|
#
|
296
357
|
# @!attribute [rw] subdirectory
|
297
|
-
# A subdirectory in the location
|
358
|
+
# A subdirectory in the location's path. This subdirectory in the
|
298
359
|
# Amazon FSx for Windows File Server file system is used to read data
|
299
360
|
# from the Amazon FSx for Windows File Server source location or write
|
300
361
|
# data to the FSx for Windows File Server destination.
|
@@ -306,8 +367,8 @@ module Aws::DataSync
|
|
306
367
|
# @return [String]
|
307
368
|
#
|
308
369
|
# @!attribute [rw] security_group_arns
|
309
|
-
# The Amazon Resource Names (ARNs) of the security groups that are
|
310
|
-
#
|
370
|
+
# The Amazon Resource Names (ARNs) of the security groups that are
|
371
|
+
# used to configure the FSx for Windows File Server file system.
|
311
372
|
# @return [Array<String>]
|
312
373
|
#
|
313
374
|
# @!attribute [rw] tags
|
@@ -1334,6 +1395,55 @@ module Aws::DataSync
|
|
1334
1395
|
include Aws::Structure
|
1335
1396
|
end
|
1336
1397
|
|
1398
|
+
# @note When making an API call, you may pass DescribeLocationFsxLustreRequest
|
1399
|
+
# data as a hash:
|
1400
|
+
#
|
1401
|
+
# {
|
1402
|
+
# location_arn: "LocationArn", # required
|
1403
|
+
# }
|
1404
|
+
#
|
1405
|
+
# @!attribute [rw] location_arn
|
1406
|
+
# The Amazon Resource Name (ARN) of the FSx for Lustre location to
|
1407
|
+
# describe.
|
1408
|
+
# @return [String]
|
1409
|
+
#
|
1410
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeLocationFsxLustreRequest AWS API Documentation
|
1411
|
+
#
|
1412
|
+
class DescribeLocationFsxLustreRequest < Struct.new(
|
1413
|
+
:location_arn)
|
1414
|
+
SENSITIVE = []
|
1415
|
+
include Aws::Structure
|
1416
|
+
end
|
1417
|
+
|
1418
|
+
# @!attribute [rw] location_arn
|
1419
|
+
# The Amazon Resource Name (ARN) of the FSx for Lustre location that
|
1420
|
+
# was described.
|
1421
|
+
# @return [String]
|
1422
|
+
#
|
1423
|
+
# @!attribute [rw] location_uri
|
1424
|
+
# The URI of the FSx for Lustre location that was described.
|
1425
|
+
# @return [String]
|
1426
|
+
#
|
1427
|
+
# @!attribute [rw] security_group_arns
|
1428
|
+
# The Amazon Resource Names (ARNs) of the security groups that are
|
1429
|
+
# configured for the FSx for Lustre file system.
|
1430
|
+
# @return [Array<String>]
|
1431
|
+
#
|
1432
|
+
# @!attribute [rw] creation_time
|
1433
|
+
# The time that the FSx for Lustre location was created.
|
1434
|
+
# @return [Time]
|
1435
|
+
#
|
1436
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeLocationFsxLustreResponse AWS API Documentation
|
1437
|
+
#
|
1438
|
+
class DescribeLocationFsxLustreResponse < Struct.new(
|
1439
|
+
:location_arn,
|
1440
|
+
:location_uri,
|
1441
|
+
:security_group_arns,
|
1442
|
+
:creation_time)
|
1443
|
+
SENSITIVE = []
|
1444
|
+
include Aws::Structure
|
1445
|
+
end
|
1446
|
+
|
1337
1447
|
# @note When making an API call, you may pass DescribeLocationFsxWindowsRequest
|
1338
1448
|
# data as a hash:
|
1339
1449
|
#
|
@@ -2535,7 +2645,7 @@ module Aws::DataSync
|
|
2535
2645
|
# @return [String]
|
2536
2646
|
#
|
2537
2647
|
# @!attribute [rw] location_uri
|
2538
|
-
# Represents a list of
|
2648
|
+
# Represents a list of URIs of a location. `LocationUri` returns an
|
2539
2649
|
# array that contains a list of locations when the [ListLocations][1]
|
2540
2650
|
# operation is called.
|
2541
2651
|
#
|
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.43.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:
|
11
|
+
date: 2022-02-03 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.126.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.126.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|