aws-sdk-datasync 1.38.0 → 1.42.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eb5c25d1228fa0790ae09ac652b7cbfbdcef6aba610d445d1200ac231471d5a5
4
- data.tar.gz: 55c3d40cfab9c1ddc57fc4e9070ffdb866b47c23dbf71ac146cb095454ee7231
3
+ metadata.gz: f5cfe421338b70b1f5d74caf55bb85772730b9bbf2d64907f8c4fd7252857800
4
+ data.tar.gz: 8ca46bcfd91fc149db30cb769527492fdb9a762b0363f2e28559df327fe9a772
5
5
  SHA512:
6
- metadata.gz: 02e1cef44c1da23a59e32f7dac2f47eaa0914948f1835f90904a0c4268e80be00b44cb781fb20a4c92b1df120c0dd6f9b9e0cd96b00227177a48fc288e0c656a
7
- data.tar.gz: 5102e87aac922d94729fef1cd6191cb9b46795d830a2c58329c4484f945f9401891f99ee6d8ebf31e306e90b2453620898cac87a7a47ca50def5ac094b1169b4
6
+ metadata.gz: 4658ac567a0104673d7baa827ce3bdfcf4a774cbb97af499832e8adf9d93741370cbe7e38640eda0675e670f5805f0b0226b21d2cb8b6fff26e45037f97d7b9f
7
+ data.tar.gz: 97400e53ab9a9f00b11e14c29e919bd44756da324270b6a3cc387a3ee9f909516d0daab533e1ab3222a1093a7e0dddd02a3665ebf91c8edf55549893a3d4a39e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.42.0 (2021-12-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.41.0 (2021-12-20)
10
+ ------------------
11
+
12
+ * Feature - AWS DataSync now supports FSx Lustre Locations.
13
+
14
+ 1.40.0 (2021-11-30)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.39.0 (2021-11-04)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.38.0 (2021-11-03)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.38.0
1
+ 1.42.0
@@ -27,6 +27,7 @@ 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'
30
31
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
32
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
32
33
 
@@ -73,6 +74,7 @@ module Aws::DataSync
73
74
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
75
  add_plugin(Aws::Plugins::TransferEncoding)
75
76
  add_plugin(Aws::Plugins::HttpChecksum)
77
+ add_plugin(Aws::Plugins::DefaultsMode)
76
78
  add_plugin(Aws::Plugins::SignatureV4)
77
79
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
78
80
 
@@ -119,7 +121,9 @@ module Aws::DataSync
119
121
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
122
  # are very aggressive. Construct and pass an instance of
121
123
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
124
+ # enable retries and extended timeouts. Instance profile credential
125
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
126
+ # to true.
123
127
  #
124
128
  # @option options [required, String] :region
125
129
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +177,10 @@ module Aws::DataSync
173
177
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
178
  # a clock skew correction and retry requests with skewed client clocks.
175
179
  #
180
+ # @option options [String] :defaults_mode ("legacy")
181
+ # See {Aws::DefaultsModeConfiguration} for a list of the
182
+ # accepted modes and the configuration defaults that are included.
183
+ #
176
184
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
185
  # Set to true to disable SDK automatically adding host prefix
178
186
  # to default service endpoint when available.
@@ -285,6 +293,15 @@ module Aws::DataSync
285
293
  # ** Please note ** When response stubbing is enabled, no HTTP
286
294
  # requests are made, and retries are disabled.
287
295
  #
296
+ # @option options [Boolean] :use_dualstack_endpoint
297
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
298
+ # will be used if available.
299
+ #
300
+ # @option options [Boolean] :use_fips_endpoint
301
+ # When set to `true`, fips compatible endpoints will be used if available.
302
+ # When a `fips` region is used, the region is normalized and this config
303
+ # is set to `true`.
304
+ #
288
305
  # @option options [Boolean] :validate_params (true)
289
306
  # When `true`, request parameters are validated before
290
307
  # sending the request.
@@ -296,7 +313,7 @@ module Aws::DataSync
296
313
  # seconds to wait when opening a HTTP session before raising a
297
314
  # `Timeout::Error`.
298
315
  #
299
- # @option options [Integer] :http_read_timeout (60) The default
316
+ # @option options [Float] :http_read_timeout (60) The default
300
317
  # number of seconds to wait for response data. This value can
301
318
  # safely be set per-request on the session.
302
319
  #
@@ -312,6 +329,9 @@ module Aws::DataSync
312
329
  # disables this behaviour. This value can safely be set per
313
330
  # request on the session.
314
331
  #
332
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
333
+ # in seconds.
334
+ #
315
335
  # @option options [Boolean] :http_wire_trace (false) When `true`,
316
336
  # HTTP debug output will be sent to the `:logger`.
317
337
  #
@@ -563,22 +583,73 @@ module Aws::DataSync
563
583
  req.send_request(options)
564
584
  end
565
585
 
586
+ # Creates an endpoint for an Amazon FSx for Lustre file system.
587
+ #
588
+ # @option params [required, String] :fsx_filesystem_arn
589
+ # The Amazon Resource Name (ARN) for the FSx for Lustre file system.
590
+ #
591
+ # @option params [required, Array<String>] :security_group_arns
592
+ # The Amazon Resource Names (ARNs) of the security groups that are used
593
+ # to configure the FSx for Lustre file system.
594
+ #
595
+ # @option params [String] :subdirectory
596
+ # A subdirectory in the location's path. This subdirectory in the FSx
597
+ # for Lustre file system is used to read data from the FSx for Lustre
598
+ # source location or write data to the FSx for Lustre destination.
599
+ #
600
+ # @option params [Array<Types::TagListEntry>] :tags
601
+ # The key-value pair that represents a tag that you want to add to the
602
+ # resource. The value can be an empty string. This value helps you
603
+ # manage, filter, and search for your resources. We recommend that you
604
+ # create a name tag for your location.
605
+ #
606
+ # @return [Types::CreateLocationFsxLustreResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
607
+ #
608
+ # * {Types::CreateLocationFsxLustreResponse#location_arn #location_arn} => String
609
+ #
610
+ # @example Request syntax with placeholder values
611
+ #
612
+ # resp = client.create_location_fsx_lustre({
613
+ # fsx_filesystem_arn: "FsxFilesystemArn", # required
614
+ # security_group_arns: ["Ec2SecurityGroupArn"], # required
615
+ # subdirectory: "FsxLustreSubdirectory",
616
+ # tags: [
617
+ # {
618
+ # key: "TagKey", # required
619
+ # value: "TagValue",
620
+ # },
621
+ # ],
622
+ # })
623
+ #
624
+ # @example Response structure
625
+ #
626
+ # resp.location_arn #=> String
627
+ #
628
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/CreateLocationFsxLustre AWS API Documentation
629
+ #
630
+ # @overload create_location_fsx_lustre(params = {})
631
+ # @param [Hash] params ({})
632
+ def create_location_fsx_lustre(params = {}, options = {})
633
+ req = build_request(:create_location_fsx_lustre, params)
634
+ req.send_request(options)
635
+ end
636
+
566
637
  # Creates an endpoint for an Amazon FSx for Windows File Server file
567
638
  # system.
568
639
  #
569
640
  # @option params [String] :subdirectory
570
- # A subdirectory in the locations path. This subdirectory in the Amazon
571
- # FSx for Windows File Server file system is used to read data from the
572
- # Amazon FSx for Windows File Server source location or write data to
573
- # the FSx for Windows File Server destination.
641
+ # A subdirectory in the location's path. This subdirectory in the
642
+ # Amazon FSx for Windows File Server file system is used to read data
643
+ # from the Amazon FSx for Windows File Server source location or write
644
+ # data to the FSx for Windows File Server destination.
574
645
  #
575
646
  # @option params [required, String] :fsx_filesystem_arn
576
647
  # The Amazon Resource Name (ARN) for the FSx for Windows File Server
577
648
  # file system.
578
649
  #
579
650
  # @option params [required, Array<String>] :security_group_arns
580
- # The Amazon Resource Names (ARNs) of the security groups that are to
581
- # use to configure the FSx for Windows File Server file system.
651
+ # The Amazon Resource Names (ARNs) of the security groups that are used
652
+ # to configure the FSx for Windows File Server file system.
582
653
  #
583
654
  # @option params [Array<Types::TagListEntry>] :tags
584
655
  # The key-value pair that represents a tag that you want to add to the
@@ -1462,6 +1533,43 @@ module Aws::DataSync
1462
1533
  req.send_request(options)
1463
1534
  end
1464
1535
 
1536
+ # Returns metadata, such as the path information about an Amazon FSx for
1537
+ # Lustre location.
1538
+ #
1539
+ # @option params [required, String] :location_arn
1540
+ # The Amazon Resource Name (ARN) of the FSx for Lustre location to
1541
+ # describe.
1542
+ #
1543
+ # @return [Types::DescribeLocationFsxLustreResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1544
+ #
1545
+ # * {Types::DescribeLocationFsxLustreResponse#location_arn #location_arn} => String
1546
+ # * {Types::DescribeLocationFsxLustreResponse#location_uri #location_uri} => String
1547
+ # * {Types::DescribeLocationFsxLustreResponse#security_group_arns #security_group_arns} => Array&lt;String&gt;
1548
+ # * {Types::DescribeLocationFsxLustreResponse#creation_time #creation_time} => Time
1549
+ #
1550
+ # @example Request syntax with placeholder values
1551
+ #
1552
+ # resp = client.describe_location_fsx_lustre({
1553
+ # location_arn: "LocationArn", # required
1554
+ # })
1555
+ #
1556
+ # @example Response structure
1557
+ #
1558
+ # resp.location_arn #=> String
1559
+ # resp.location_uri #=> String
1560
+ # resp.security_group_arns #=> Array
1561
+ # resp.security_group_arns[0] #=> String
1562
+ # resp.creation_time #=> Time
1563
+ #
1564
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeLocationFsxLustre AWS API Documentation
1565
+ #
1566
+ # @overload describe_location_fsx_lustre(params = {})
1567
+ # @param [Hash] params ({})
1568
+ def describe_location_fsx_lustre(params = {}, options = {})
1569
+ req = build_request(:describe_location_fsx_lustre, params)
1570
+ req.send_request(options)
1571
+ end
1572
+
1465
1573
  # Returns metadata, such as the path information about an Amazon FSx for
1466
1574
  # Windows File Server location.
1467
1575
  #
@@ -2804,7 +2912,7 @@ module Aws::DataSync
2804
2912
  params: params,
2805
2913
  config: config)
2806
2914
  context[:gem_name] = 'aws-sdk-datasync'
2807
- context[:gem_version] = '1.38.0'
2915
+ context[:gem_version] = '1.42.0'
2808
2916
  Seahorse::Client::Request.new(handlers, context)
2809
2917
  end
2810
2918
 
@@ -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 locations path. This subdirectory in the
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 to
310
- # use to configure the FSx for Windows File Server file system.
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 URLs of a location. `LocationUri` returns an
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
  #
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-datasync/customizations'
48
48
  # @!group service
49
49
  module Aws::DataSync
50
50
 
51
- GEM_VERSION = '1.38.0'
51
+ GEM_VERSION = '1.42.0'
52
52
 
53
53
  end
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.38.0
4
+ version: 1.42.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-03 00:00:00.000000000 Z
11
+ date: 2021-12-21 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.121.2
22
+ version: 3.125.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.121.2
32
+ version: 3.125.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement