aws-sdk-datasync 1.40.0 → 1.41.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datasync/client.rb +95 -7
- 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 +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e5ba18e98b8f96b62f4279d3f4da8f6741b32866b3ff9c5f635e2ce49b1633c6
|
4
|
+
data.tar.gz: 315f1653749f803e8745878297b00686caa16faa1fac6bc6b2c616d5e29d98b6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ba35b4a3c6b25bb7bb4cd8e8049ec6e2632a6841f1ed5a7004d4e606e1ffb9770890bdc926c40c480103a87bcba7ceb2bd2ee4c77b6e53502812e7a93a0c0d32
|
7
|
+
data.tar.gz: dd39e3b04791998f7f54df28353f9f79110f82b06bc742390dfabaca7225104eee6adcf6d6df3238ae2f8be16eddb73f60ecc5870f313c981c61eee83af3e0c9
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.41.0
|
@@ -574,22 +574,73 @@ module Aws::DataSync
|
|
574
574
|
req.send_request(options)
|
575
575
|
end
|
576
576
|
|
577
|
+
# Creates an endpoint for an Amazon FSx for Lustre file system.
|
578
|
+
#
|
579
|
+
# @option params [required, String] :fsx_filesystem_arn
|
580
|
+
# The Amazon Resource Name (ARN) for the FSx for Lustre file system.
|
581
|
+
#
|
582
|
+
# @option params [required, Array<String>] :security_group_arns
|
583
|
+
# The Amazon Resource Names (ARNs) of the security groups that are used
|
584
|
+
# to configure the FSx for Lustre file system.
|
585
|
+
#
|
586
|
+
# @option params [String] :subdirectory
|
587
|
+
# A subdirectory in the location's path. This subdirectory in the FSx
|
588
|
+
# for Lustre file system is used to read data from the FSx for Lustre
|
589
|
+
# source location or write data to the FSx for Lustre destination.
|
590
|
+
#
|
591
|
+
# @option params [Array<Types::TagListEntry>] :tags
|
592
|
+
# The key-value pair that represents a tag that you want to add to the
|
593
|
+
# resource. The value can be an empty string. This value helps you
|
594
|
+
# manage, filter, and search for your resources. We recommend that you
|
595
|
+
# create a name tag for your location.
|
596
|
+
#
|
597
|
+
# @return [Types::CreateLocationFsxLustreResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
598
|
+
#
|
599
|
+
# * {Types::CreateLocationFsxLustreResponse#location_arn #location_arn} => String
|
600
|
+
#
|
601
|
+
# @example Request syntax with placeholder values
|
602
|
+
#
|
603
|
+
# resp = client.create_location_fsx_lustre({
|
604
|
+
# fsx_filesystem_arn: "FsxFilesystemArn", # required
|
605
|
+
# security_group_arns: ["Ec2SecurityGroupArn"], # required
|
606
|
+
# subdirectory: "FsxLustreSubdirectory",
|
607
|
+
# tags: [
|
608
|
+
# {
|
609
|
+
# key: "TagKey", # required
|
610
|
+
# value: "TagValue",
|
611
|
+
# },
|
612
|
+
# ],
|
613
|
+
# })
|
614
|
+
#
|
615
|
+
# @example Response structure
|
616
|
+
#
|
617
|
+
# resp.location_arn #=> String
|
618
|
+
#
|
619
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/CreateLocationFsxLustre AWS API Documentation
|
620
|
+
#
|
621
|
+
# @overload create_location_fsx_lustre(params = {})
|
622
|
+
# @param [Hash] params ({})
|
623
|
+
def create_location_fsx_lustre(params = {}, options = {})
|
624
|
+
req = build_request(:create_location_fsx_lustre, params)
|
625
|
+
req.send_request(options)
|
626
|
+
end
|
627
|
+
|
577
628
|
# Creates an endpoint for an Amazon FSx for Windows File Server file
|
578
629
|
# system.
|
579
630
|
#
|
580
631
|
# @option params [String] :subdirectory
|
581
|
-
# A subdirectory in the location
|
582
|
-
# FSx for Windows File Server file system is used to read data
|
583
|
-
# Amazon FSx for Windows File Server source location or write
|
584
|
-
# the FSx for Windows File Server destination.
|
632
|
+
# A subdirectory in the location's path. This subdirectory in the
|
633
|
+
# Amazon FSx for Windows File Server file system is used to read data
|
634
|
+
# from the Amazon FSx for Windows File Server source location or write
|
635
|
+
# data to the FSx for Windows File Server destination.
|
585
636
|
#
|
586
637
|
# @option params [required, String] :fsx_filesystem_arn
|
587
638
|
# The Amazon Resource Name (ARN) for the FSx for Windows File Server
|
588
639
|
# file system.
|
589
640
|
#
|
590
641
|
# @option params [required, Array<String>] :security_group_arns
|
591
|
-
# The Amazon Resource Names (ARNs) of the security groups that are
|
592
|
-
#
|
642
|
+
# The Amazon Resource Names (ARNs) of the security groups that are used
|
643
|
+
# to configure the FSx for Windows File Server file system.
|
593
644
|
#
|
594
645
|
# @option params [Array<Types::TagListEntry>] :tags
|
595
646
|
# The key-value pair that represents a tag that you want to add to the
|
@@ -1473,6 +1524,43 @@ module Aws::DataSync
|
|
1473
1524
|
req.send_request(options)
|
1474
1525
|
end
|
1475
1526
|
|
1527
|
+
# Returns metadata, such as the path information about an Amazon FSx for
|
1528
|
+
# Lustre location.
|
1529
|
+
#
|
1530
|
+
# @option params [required, String] :location_arn
|
1531
|
+
# The Amazon Resource Name (ARN) of the FSx for Lustre location to
|
1532
|
+
# describe.
|
1533
|
+
#
|
1534
|
+
# @return [Types::DescribeLocationFsxLustreResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1535
|
+
#
|
1536
|
+
# * {Types::DescribeLocationFsxLustreResponse#location_arn #location_arn} => String
|
1537
|
+
# * {Types::DescribeLocationFsxLustreResponse#location_uri #location_uri} => String
|
1538
|
+
# * {Types::DescribeLocationFsxLustreResponse#security_group_arns #security_group_arns} => Array<String>
|
1539
|
+
# * {Types::DescribeLocationFsxLustreResponse#creation_time #creation_time} => Time
|
1540
|
+
#
|
1541
|
+
# @example Request syntax with placeholder values
|
1542
|
+
#
|
1543
|
+
# resp = client.describe_location_fsx_lustre({
|
1544
|
+
# location_arn: "LocationArn", # required
|
1545
|
+
# })
|
1546
|
+
#
|
1547
|
+
# @example Response structure
|
1548
|
+
#
|
1549
|
+
# resp.location_arn #=> String
|
1550
|
+
# resp.location_uri #=> String
|
1551
|
+
# resp.security_group_arns #=> Array
|
1552
|
+
# resp.security_group_arns[0] #=> String
|
1553
|
+
# resp.creation_time #=> Time
|
1554
|
+
#
|
1555
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeLocationFsxLustre AWS API Documentation
|
1556
|
+
#
|
1557
|
+
# @overload describe_location_fsx_lustre(params = {})
|
1558
|
+
# @param [Hash] params ({})
|
1559
|
+
def describe_location_fsx_lustre(params = {}, options = {})
|
1560
|
+
req = build_request(:describe_location_fsx_lustre, params)
|
1561
|
+
req.send_request(options)
|
1562
|
+
end
|
1563
|
+
|
1476
1564
|
# Returns metadata, such as the path information about an Amazon FSx for
|
1477
1565
|
# Windows File Server location.
|
1478
1566
|
#
|
@@ -2815,7 +2903,7 @@ module Aws::DataSync
|
|
2815
2903
|
params: params,
|
2816
2904
|
config: config)
|
2817
2905
|
context[:gem_name] = 'aws-sdk-datasync'
|
2818
|
-
context[:gem_version] = '1.
|
2906
|
+
context[:gem_version] = '1.41.0'
|
2819
2907
|
Seahorse::Client::Request.new(handlers, context)
|
2820
2908
|
end
|
2821
2909
|
|
@@ -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.41.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: 2021-
|
11
|
+
date: 2021-12-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|