aws-sdk-datasync 1.13.0 → 1.14.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
  SHA1:
3
- metadata.gz: 5f458b058ed492547cb3041caac790f25e62d789
4
- data.tar.gz: c3d07f974564e816a86bb1e0f02f53342fd2a695
3
+ metadata.gz: 3093a8008230ae12e526a95ca47d521140dc462f
4
+ data.tar.gz: e82d0523ba9f61dada9edb5f9a2bbdcac9a20620
5
5
  SHA512:
6
- metadata.gz: 84a38886e8083bc81838654be2a5f8f82e5a1e5543149027b290a47b6640358c168a135063479758d52992495603c7c74b8d9034c77f9485444499f43ded1e58
7
- data.tar.gz: 21b9a03ab5eff2cabc208293955b17bc27a4802ea31d9a134fcf42d4968b57c7fe9cae08bc82e7b86668ef8ff2afcc329f615a7644d7510b22a8852570d132f6
6
+ metadata.gz: 114edf2ead13dc62caa65c9a814e28a5aa643825abd5876904e07716fab2405f40d519bf8499093ce299de46a6b0a64af212e86feef38f6c756c7a69607ef309
7
+ data.tar.gz: '0970cba78bd25418e1a4d5c6e571ee6676614192ee25fa34892700778238d582f6f541b5990a3dad6de830e56609df18c2072d1e2395e9c128817f71c8d05e48'
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-datasync/customizations'
42
42
  # @service
43
43
  module Aws::DataSync
44
44
 
45
- GEM_VERSION = '1.13.0'
45
+ GEM_VERSION = '1.14.0'
46
46
 
47
47
  end
@@ -479,7 +479,8 @@ module Aws::DataSync
479
479
  req.send_request(options)
480
480
  end
481
481
 
482
- # Creates an endpoint for a Network File System (NFS) file system.
482
+ # Defines a file system on a Network File System (NFS) server that can
483
+ # be read from or written to
483
484
  #
484
485
  # @option params [required, String] :subdirectory
485
486
  # The subdirectory in the NFS file system that is used to read data from
@@ -643,7 +644,8 @@ module Aws::DataSync
643
644
  req.send_request(options)
644
645
  end
645
646
 
646
- # Creates an endpoint for a Server Message Block (SMB) file system.
647
+ # Defines a file system on an Server Message Block (SMB) server that can
648
+ # be read from or written to
647
649
  #
648
650
  # @option params [required, String] :subdirectory
649
651
  # The subdirectory in the SMB file system that is used to read data from
@@ -814,6 +816,7 @@ module Aws::DataSync
814
816
  # preserve_devices: "NONE", # accepts NONE, PRESERVE
815
817
  # posix_permissions: "NONE", # accepts NONE, BEST_EFFORT, PRESERVE
816
818
  # bytes_per_second: 1,
819
+ # task_queueing: "ENABLED", # accepts ENABLED, DISABLED
817
820
  # },
818
821
  # excludes: [
819
822
  # {
@@ -1147,7 +1150,7 @@ module Aws::DataSync
1147
1150
  # @example Response structure
1148
1151
  #
1149
1152
  # resp.task_arn #=> String
1150
- # resp.status #=> String, one of "AVAILABLE", "CREATING", "RUNNING", "UNAVAILABLE"
1153
+ # resp.status #=> String, one of "AVAILABLE", "CREATING", "QUEUED", "RUNNING", "UNAVAILABLE"
1151
1154
  # resp.name #=> String
1152
1155
  # resp.current_task_execution_arn #=> String
1153
1156
  # resp.source_location_arn #=> String
@@ -1167,6 +1170,7 @@ module Aws::DataSync
1167
1170
  # resp.options.preserve_devices #=> String, one of "NONE", "PRESERVE"
1168
1171
  # resp.options.posix_permissions #=> String, one of "NONE", "BEST_EFFORT", "PRESERVE"
1169
1172
  # resp.options.bytes_per_second #=> Integer
1173
+ # resp.options.task_queueing #=> String, one of "ENABLED", "DISABLED"
1170
1174
  # resp.excludes #=> Array
1171
1175
  # resp.excludes[0].filter_type #=> String, one of "SIMPLE_PATTERN"
1172
1176
  # resp.excludes[0].value #=> String
@@ -1212,7 +1216,7 @@ module Aws::DataSync
1212
1216
  # @example Response structure
1213
1217
  #
1214
1218
  # resp.task_execution_arn #=> String
1215
- # resp.status #=> String, one of "LAUNCHING", "PREPARING", "TRANSFERRING", "VERIFYING", "SUCCESS", "ERROR"
1219
+ # resp.status #=> String, one of "QUEUED", "LAUNCHING", "PREPARING", "TRANSFERRING", "VERIFYING", "SUCCESS", "ERROR"
1216
1220
  # resp.options.verify_mode #=> String, one of "POINT_IN_TIME_CONSISTENT", "ONLY_FILES_TRANSFERRED", "NONE"
1217
1221
  # resp.options.overwrite_mode #=> String, one of "ALWAYS", "NEVER"
1218
1222
  # resp.options.atime #=> String, one of "NONE", "BEST_EFFORT"
@@ -1223,6 +1227,7 @@ module Aws::DataSync
1223
1227
  # resp.options.preserve_devices #=> String, one of "NONE", "PRESERVE"
1224
1228
  # resp.options.posix_permissions #=> String, one of "NONE", "BEST_EFFORT", "PRESERVE"
1225
1229
  # resp.options.bytes_per_second #=> Integer
1230
+ # resp.options.task_queueing #=> String, one of "ENABLED", "DISABLED"
1226
1231
  # resp.excludes #=> Array
1227
1232
  # resp.excludes[0].filter_type #=> String, one of "SIMPLE_PATTERN"
1228
1233
  # resp.excludes[0].value #=> String
@@ -1415,7 +1420,7 @@ module Aws::DataSync
1415
1420
  #
1416
1421
  # resp.task_executions #=> Array
1417
1422
  # resp.task_executions[0].task_execution_arn #=> String
1418
- # resp.task_executions[0].status #=> String, one of "LAUNCHING", "PREPARING", "TRANSFERRING", "VERIFYING", "SUCCESS", "ERROR"
1423
+ # resp.task_executions[0].status #=> String, one of "QUEUED", "LAUNCHING", "PREPARING", "TRANSFERRING", "VERIFYING", "SUCCESS", "ERROR"
1419
1424
  # resp.next_token #=> String
1420
1425
  #
1421
1426
  # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/ListTaskExecutions AWS API Documentation
@@ -1452,7 +1457,7 @@ module Aws::DataSync
1452
1457
  #
1453
1458
  # resp.tasks #=> Array
1454
1459
  # resp.tasks[0].task_arn #=> String
1455
- # resp.tasks[0].status #=> String, one of "AVAILABLE", "CREATING", "RUNNING", "UNAVAILABLE"
1460
+ # resp.tasks[0].status #=> String, one of "AVAILABLE", "CREATING", "QUEUED", "RUNNING", "UNAVAILABLE"
1456
1461
  # resp.tasks[0].name #=> String
1457
1462
  # resp.next_token #=> String
1458
1463
  #
@@ -1515,6 +1520,7 @@ module Aws::DataSync
1515
1520
  # preserve_devices: "NONE", # accepts NONE, PRESERVE
1516
1521
  # posix_permissions: "NONE", # accepts NONE, BEST_EFFORT, PRESERVE
1517
1522
  # bytes_per_second: 1,
1523
+ # task_queueing: "ENABLED", # accepts ENABLED, DISABLED
1518
1524
  # },
1519
1525
  # includes: [
1520
1526
  # {
@@ -1668,6 +1674,7 @@ module Aws::DataSync
1668
1674
  # preserve_devices: "NONE", # accepts NONE, PRESERVE
1669
1675
  # posix_permissions: "NONE", # accepts NONE, BEST_EFFORT, PRESERVE
1670
1676
  # bytes_per_second: 1,
1677
+ # task_queueing: "ENABLED", # accepts ENABLED, DISABLED
1671
1678
  # },
1672
1679
  # excludes: [
1673
1680
  # {
@@ -1701,7 +1708,7 @@ module Aws::DataSync
1701
1708
  params: params,
1702
1709
  config: config)
1703
1710
  context[:gem_name] = 'aws-sdk-datasync'
1704
- context[:gem_version] = '1.13.0'
1711
+ context[:gem_version] = '1.14.0'
1705
1712
  Seahorse::Client::Request.new(handlers, context)
1706
1713
  end
1707
1714
 
@@ -131,6 +131,7 @@ module Aws::DataSync
131
131
  TaskExecutionStatus = Shapes::StringShape.new(name: 'TaskExecutionStatus')
132
132
  TaskList = Shapes::ListShape.new(name: 'TaskList')
133
133
  TaskListEntry = Shapes::StructureShape.new(name: 'TaskListEntry')
134
+ TaskQueueing = Shapes::StringShape.new(name: 'TaskQueueing')
134
135
  TaskStatus = Shapes::StringShape.new(name: 'TaskStatus')
135
136
  Time = Shapes::TimestampShape.new(name: 'Time')
136
137
  Uid = Shapes::StringShape.new(name: 'Uid')
@@ -414,6 +415,7 @@ module Aws::DataSync
414
415
  Options.add_member(:preserve_devices, Shapes::ShapeRef.new(shape: PreserveDevices, location_name: "PreserveDevices"))
415
416
  Options.add_member(:posix_permissions, Shapes::ShapeRef.new(shape: PosixPermissions, location_name: "PosixPermissions"))
416
417
  Options.add_member(:bytes_per_second, Shapes::ShapeRef.new(shape: BytesPerSecond, location_name: "BytesPerSecond"))
418
+ Options.add_member(:task_queueing, Shapes::ShapeRef.new(shape: TaskQueueing, location_name: "TaskQueueing"))
417
419
  Options.struct_class = Types::Options
418
420
 
419
421
  PLSecurityGroupArnList.member = Shapes::ShapeRef.new(shape: Ec2SecurityGroupArn)
@@ -567,6 +567,7 @@ module Aws::DataSync
567
567
  # preserve_devices: "NONE", # accepts NONE, PRESERVE
568
568
  # posix_permissions: "NONE", # accepts NONE, BEST_EFFORT, PRESERVE
569
569
  # bytes_per_second: 1,
570
+ # task_queueing: "ENABLED", # accepts ENABLED, DISABLED
570
571
  # },
571
572
  # excludes: [
572
573
  # {
@@ -1763,6 +1764,7 @@ module Aws::DataSync
1763
1764
  # preserve_devices: "NONE", # accepts NONE, PRESERVE
1764
1765
  # posix_permissions: "NONE", # accepts NONE, BEST_EFFORT, PRESERVE
1765
1766
  # bytes_per_second: 1,
1767
+ # task_queueing: "ENABLED", # accepts ENABLED, DISABLED
1766
1768
  # }
1767
1769
  #
1768
1770
  # @!attribute [rw] verify_mode
@@ -1914,6 +1916,15 @@ module Aws::DataSync
1914
1916
  # `1048576` (`=1024*1024`).
1915
1917
  # @return [Integer]
1916
1918
  #
1919
+ # @!attribute [rw] task_queueing
1920
+ # A value that determines whether tasks should be queued before
1921
+ # executing the tasks. If set to `Enabled`, the tasks will queued. The
1922
+ # default is `Enabled`.
1923
+ #
1924
+ # If you use the same agent to run multiple tasks you can enable the
1925
+ # tasks to run in series. For more information see task-queue.
1926
+ # @return [String]
1927
+ #
1917
1928
  # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/Options AWS API Documentation
1918
1929
  #
1919
1930
  class Options < Struct.new(
@@ -1926,7 +1937,8 @@ module Aws::DataSync
1926
1937
  :preserve_deleted_files,
1927
1938
  :preserve_devices,
1928
1939
  :posix_permissions,
1929
- :bytes_per_second)
1940
+ :bytes_per_second,
1941
+ :task_queueing)
1930
1942
  include Aws::Structure
1931
1943
  end
1932
1944
 
@@ -2038,6 +2050,7 @@ module Aws::DataSync
2038
2050
  # preserve_devices: "NONE", # accepts NONE, PRESERVE
2039
2051
  # posix_permissions: "NONE", # accepts NONE, BEST_EFFORT, PRESERVE
2040
2052
  # bytes_per_second: 1,
2053
+ # task_queueing: "ENABLED", # accepts ENABLED, DISABLED
2041
2054
  # },
2042
2055
  # includes: [
2043
2056
  # {
@@ -2339,6 +2352,7 @@ module Aws::DataSync
2339
2352
  # preserve_devices: "NONE", # accepts NONE, PRESERVE
2340
2353
  # posix_permissions: "NONE", # accepts NONE, BEST_EFFORT, PRESERVE
2341
2354
  # bytes_per_second: 1,
2355
+ # task_queueing: "ENABLED", # accepts ENABLED, DISABLED
2342
2356
  # },
2343
2357
  # excludes: [
2344
2358
  # {
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.13.0
4
+ version: 1.14.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: 2019-09-24 00:00:00.000000000 Z
11
+ date: 2019-10-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core