aws-sdk-datasync 1.102.0 → 1.103.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.
@@ -10,84 +10,6 @@
10
10
  module Aws::DataSync
11
11
  module Types
12
12
 
13
- # @!attribute [rw] server_configuration
14
- # Specifies the server name and network port required to connect with
15
- # the management interface of your on-premises storage system.
16
- # @return [Types::DiscoveryServerConfiguration]
17
- #
18
- # @!attribute [rw] system_type
19
- # Specifies the type of on-premises storage system that you want
20
- # DataSync Discovery to collect information about.
21
- #
22
- # <note markdown="1"> DataSync Discovery currently supports NetApp Fabric-Attached Storage
23
- # (FAS) and All Flash FAS (AFF) systems running ONTAP 9.7 or later.
24
- #
25
- # </note>
26
- # @return [String]
27
- #
28
- # @!attribute [rw] agent_arns
29
- # Specifies the Amazon Resource Name (ARN) of the DataSync agent that
30
- # connects to and reads from your on-premises storage system's
31
- # management interface. You can only specify one ARN.
32
- # @return [Array<String>]
33
- #
34
- # @!attribute [rw] cloud_watch_log_group_arn
35
- # Specifies the ARN of the Amazon CloudWatch log group for monitoring
36
- # and logging discovery job events.
37
- # @return [String]
38
- #
39
- # @!attribute [rw] tags
40
- # Specifies labels that help you categorize, filter, and search for
41
- # your Amazon Web Services resources. We recommend creating at least a
42
- # name tag for your on-premises storage system.
43
- # @return [Array<Types::TagListEntry>]
44
- #
45
- # @!attribute [rw] name
46
- # Specifies a familiar name for your on-premises storage system.
47
- # @return [String]
48
- #
49
- # @!attribute [rw] client_token
50
- # Specifies a client token to make sure requests with this API
51
- # operation are idempotent. If you don't specify a client token,
52
- # DataSync generates one for you automatically.
53
- #
54
- # **A suitable default value is auto-generated.** You should normally
55
- # not need to pass this option.
56
- # @return [String]
57
- #
58
- # @!attribute [rw] credentials
59
- # Specifies the user name and password for accessing your on-premises
60
- # storage system's management interface.
61
- # @return [Types::Credentials]
62
- #
63
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/AddStorageSystemRequest AWS API Documentation
64
- #
65
- class AddStorageSystemRequest < Struct.new(
66
- :server_configuration,
67
- :system_type,
68
- :agent_arns,
69
- :cloud_watch_log_group_arn,
70
- :tags,
71
- :name,
72
- :client_token,
73
- :credentials)
74
- SENSITIVE = []
75
- include Aws::Structure
76
- end
77
-
78
- # @!attribute [rw] storage_system_arn
79
- # The ARN of the on-premises storage system that you can use with
80
- # DataSync Discovery.
81
- # @return [String]
82
- #
83
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/AddStorageSystemResponse AWS API Documentation
84
- #
85
- class AddStorageSystemResponse < Struct.new(
86
- :storage_system_arn)
87
- SENSITIVE = []
88
- include Aws::Structure
89
- end
90
-
91
13
  # Represents a single entry in a list (or array) of DataSync agents when
92
14
  # you call the [ListAgents][1] operation.
93
15
  #
@@ -181,38 +103,6 @@ module Aws::DataSync
181
103
  #
182
104
  class CancelTaskExecutionResponse < Aws::EmptyStructure; end
183
105
 
184
- # The storage capacity of an on-premises storage system resource (for
185
- # example, a volume).
186
- #
187
- # @!attribute [rw] used
188
- # The amount of space that's being used in a storage system resource.
189
- # @return [Integer]
190
- #
191
- # @!attribute [rw] provisioned
192
- # The total amount of space available in a storage system resource.
193
- # @return [Integer]
194
- #
195
- # @!attribute [rw] logical_used
196
- # The amount of space that's being used in a storage system resource
197
- # without accounting for compression or deduplication.
198
- # @return [Integer]
199
- #
200
- # @!attribute [rw] cluster_cloud_storage_used
201
- # The amount of space in the cluster that's in cloud storage (for
202
- # example, if you're using data tiering).
203
- # @return [Integer]
204
- #
205
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/Capacity AWS API Documentation
206
- #
207
- class Capacity < Struct.new(
208
- :used,
209
- :provisioned,
210
- :logical_used,
211
- :cluster_cloud_storage_used)
212
- SENSITIVE = []
213
- include Aws::Structure
214
- end
215
-
216
106
  # CreateAgentRequest
217
107
  #
218
108
  # @!attribute [rw] activation_key
@@ -830,9 +720,7 @@ module Aws::DataSync
830
720
  # @!attribute [rw] kerberos_keytab
831
721
  # The Kerberos key table (keytab) that contains mappings between the
832
722
  # defined Kerberos principal and the encrypted keys. You can load the
833
- # keytab from a file by providing the file's address. If you're
834
- # using the CLI, it performs base64 encoding for you. Otherwise,
835
- # provide the base64-encoded text.
723
+ # keytab from a file by providing the file's address.
836
724
  #
837
725
  # <note markdown="1"> If `KERBEROS` is specified for `AuthenticationType`, this parameter
838
726
  # is required.
@@ -1303,9 +1191,6 @@ module Aws::DataSync
1303
1191
  # Specifies your Kerberos key table (keytab) file, which includes
1304
1192
  # mappings between your Kerberos principal and encryption keys.
1305
1193
  #
1306
- # The file must be base64 encoded. If you're using the CLI, the
1307
- # encoding is done for you.
1308
- #
1309
1194
  # To avoid task execution errors, make sure that the Kerberos
1310
1195
  # principal that you use to create the keytab file matches exactly
1311
1196
  # what you specify for `KerberosPrincipal`.
@@ -1516,37 +1401,6 @@ module Aws::DataSync
1516
1401
  include Aws::Structure
1517
1402
  end
1518
1403
 
1519
- # The credentials that provide DataSync Discovery read access to your
1520
- # on-premises storage system's management interface.
1521
- #
1522
- # DataSync Discovery stores these credentials in [Secrets Manager][1].
1523
- # For more information, see [Accessing your on-premises storage
1524
- # system][2].
1525
- #
1526
- #
1527
- #
1528
- # [1]: https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html
1529
- # [2]: https://docs.aws.amazon.com/datasync/latest/userguide/discovery-configure-storage.html
1530
- #
1531
- # @!attribute [rw] username
1532
- # Specifies the user name for your storage system's management
1533
- # interface.
1534
- # @return [String]
1535
- #
1536
- # @!attribute [rw] password
1537
- # Specifies the password for your storage system's management
1538
- # interface.
1539
- # @return [String]
1540
- #
1541
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/Credentials AWS API Documentation
1542
- #
1543
- class Credentials < Struct.new(
1544
- :username,
1545
- :password)
1546
- SENSITIVE = [:username, :password]
1547
- include Aws::Structure
1548
- end
1549
-
1550
1404
  # DeleteAgentRequest
1551
1405
  #
1552
1406
  # @!attribute [rw] agent_arn
@@ -1695,62 +1549,6 @@ module Aws::DataSync
1695
1549
  include Aws::Structure
1696
1550
  end
1697
1551
 
1698
- # @!attribute [rw] discovery_job_arn
1699
- # Specifies the Amazon Resource Name (ARN) of the discovery job that
1700
- # you want information about.
1701
- # @return [String]
1702
- #
1703
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeDiscoveryJobRequest AWS API Documentation
1704
- #
1705
- class DescribeDiscoveryJobRequest < Struct.new(
1706
- :discovery_job_arn)
1707
- SENSITIVE = []
1708
- include Aws::Structure
1709
- end
1710
-
1711
- # @!attribute [rw] storage_system_arn
1712
- # The ARN of the on-premises storage system you're running the
1713
- # discovery job on.
1714
- # @return [String]
1715
- #
1716
- # @!attribute [rw] discovery_job_arn
1717
- # The ARN of the discovery job.
1718
- # @return [String]
1719
- #
1720
- # @!attribute [rw] collection_duration_minutes
1721
- # The number of minutes that the discovery job runs.
1722
- # @return [Integer]
1723
- #
1724
- # @!attribute [rw] status
1725
- # Indicates the status of a discovery job. For more information, see
1726
- # [Discovery job statuses][1].
1727
- #
1728
- #
1729
- #
1730
- # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/discovery-job-statuses.html#discovery-job-statuses-table
1731
- # @return [String]
1732
- #
1733
- # @!attribute [rw] job_start_time
1734
- # The time when the discovery job started.
1735
- # @return [Time]
1736
- #
1737
- # @!attribute [rw] job_end_time
1738
- # The time when the discovery job ended.
1739
- # @return [Time]
1740
- #
1741
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeDiscoveryJobResponse AWS API Documentation
1742
- #
1743
- class DescribeDiscoveryJobResponse < Struct.new(
1744
- :storage_system_arn,
1745
- :discovery_job_arn,
1746
- :collection_duration_minutes,
1747
- :status,
1748
- :job_start_time,
1749
- :job_end_time)
1750
- SENSITIVE = []
1751
- include Aws::Structure
1752
- end
1753
-
1754
1552
  # @!attribute [rw] location_arn
1755
1553
  # Specifies the Amazon Resource Name (ARN) of your Azure Blob Storage
1756
1554
  # transfer location.
@@ -2485,239 +2283,6 @@ module Aws::DataSync
2485
2283
  include Aws::Structure
2486
2284
  end
2487
2285
 
2488
- # @!attribute [rw] storage_system_arn
2489
- # Specifies the Amazon Resource Name (ARN) of an on-premises storage
2490
- # system that you're using with DataSync Discovery.
2491
- # @return [String]
2492
- #
2493
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeStorageSystemRequest AWS API Documentation
2494
- #
2495
- class DescribeStorageSystemRequest < Struct.new(
2496
- :storage_system_arn)
2497
- SENSITIVE = []
2498
- include Aws::Structure
2499
- end
2500
-
2501
- # @!attribute [rw] discovery_job_arn
2502
- # Specifies the Amazon Resource Name (ARN) of the discovery job that
2503
- # collects information about your on-premises storage system.
2504
- # @return [String]
2505
- #
2506
- # @!attribute [rw] resource_type
2507
- # Specifies the kind of storage system resource that you want
2508
- # information about.
2509
- # @return [String]
2510
- #
2511
- # @!attribute [rw] resource_id
2512
- # Specifies the universally unique identifier (UUID) of the storage
2513
- # system resource that you want information about.
2514
- # @return [String]
2515
- #
2516
- # @!attribute [rw] start_time
2517
- # Specifies a time within the total duration that the discovery job
2518
- # ran. To see information gathered during a certain time frame, use
2519
- # this parameter with `EndTime`.
2520
- # @return [Time]
2521
- #
2522
- # @!attribute [rw] end_time
2523
- # Specifies a time within the total duration that the discovery job
2524
- # ran. To see information gathered during a certain time frame, use
2525
- # this parameter with `StartTime`.
2526
- # @return [Time]
2527
- #
2528
- # @!attribute [rw] max_results
2529
- # Specifies how many results that you want in the response.
2530
- # @return [Integer]
2531
- #
2532
- # @!attribute [rw] next_token
2533
- # Specifies an opaque string that indicates the position to begin the
2534
- # next list of results in the response.
2535
- # @return [String]
2536
- #
2537
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeStorageSystemResourceMetricsRequest AWS API Documentation
2538
- #
2539
- class DescribeStorageSystemResourceMetricsRequest < Struct.new(
2540
- :discovery_job_arn,
2541
- :resource_type,
2542
- :resource_id,
2543
- :start_time,
2544
- :end_time,
2545
- :max_results,
2546
- :next_token)
2547
- SENSITIVE = []
2548
- include Aws::Structure
2549
- end
2550
-
2551
- # @!attribute [rw] metrics
2552
- # The details that your discovery job collected about your storage
2553
- # system resource.
2554
- # @return [Array<Types::ResourceMetrics>]
2555
- #
2556
- # @!attribute [rw] next_token
2557
- # The opaque string that indicates the position to begin the next list
2558
- # of results in the response.
2559
- # @return [String]
2560
- #
2561
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeStorageSystemResourceMetricsResponse AWS API Documentation
2562
- #
2563
- class DescribeStorageSystemResourceMetricsResponse < Struct.new(
2564
- :metrics,
2565
- :next_token)
2566
- SENSITIVE = []
2567
- include Aws::Structure
2568
- end
2569
-
2570
- # @!attribute [rw] discovery_job_arn
2571
- # Specifies the Amazon Resource Name (ARN) of the discovery job
2572
- # that's collecting data from your on-premises storage system.
2573
- # @return [String]
2574
- #
2575
- # @!attribute [rw] resource_type
2576
- # Specifies what kind of storage system resources that you want
2577
- # information about.
2578
- # @return [String]
2579
- #
2580
- # @!attribute [rw] resource_ids
2581
- # Specifies the universally unique identifiers (UUIDs) of the storage
2582
- # system resources that you want information about. You can't use
2583
- # this parameter in combination with the `Filter` parameter.
2584
- # @return [Array<String>]
2585
- #
2586
- # @!attribute [rw] filter
2587
- # Filters the storage system resources that you want returned. For
2588
- # example, this might be volumes associated with a specific storage
2589
- # virtual machine (SVM).
2590
- # @return [Hash<String,Array<String>>]
2591
- #
2592
- # @!attribute [rw] max_results
2593
- # Specifies the maximum number of storage system resources that you
2594
- # want to list in a response.
2595
- # @return [Integer]
2596
- #
2597
- # @!attribute [rw] next_token
2598
- # Specifies an opaque string that indicates the position to begin the
2599
- # next list of results in the response.
2600
- # @return [String]
2601
- #
2602
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeStorageSystemResourcesRequest AWS API Documentation
2603
- #
2604
- class DescribeStorageSystemResourcesRequest < Struct.new(
2605
- :discovery_job_arn,
2606
- :resource_type,
2607
- :resource_ids,
2608
- :filter,
2609
- :max_results,
2610
- :next_token)
2611
- SENSITIVE = []
2612
- include Aws::Structure
2613
- end
2614
-
2615
- # @!attribute [rw] resource_details
2616
- # The information collected about your storage system's resources. A
2617
- # response can also include Amazon Web Services storage service
2618
- # recommendations.
2619
- #
2620
- # For more information, see [storage resource information][1]
2621
- # collected by and [recommendations][2] provided by DataSync
2622
- # Discovery.
2623
- #
2624
- #
2625
- #
2626
- # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/discovery-understand-findings.html
2627
- # [2]: https://docs.aws.amazon.com/datasync/latest/userguide/discovery-understand-recommendations.html
2628
- # @return [Types::ResourceDetails]
2629
- #
2630
- # @!attribute [rw] next_token
2631
- # The opaque string that indicates the position to begin the next list
2632
- # of results in the response.
2633
- # @return [String]
2634
- #
2635
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeStorageSystemResourcesResponse AWS API Documentation
2636
- #
2637
- class DescribeStorageSystemResourcesResponse < Struct.new(
2638
- :resource_details,
2639
- :next_token)
2640
- SENSITIVE = []
2641
- include Aws::Structure
2642
- end
2643
-
2644
- # @!attribute [rw] storage_system_arn
2645
- # The ARN of the on-premises storage system that the discovery job
2646
- # looked at.
2647
- # @return [String]
2648
- #
2649
- # @!attribute [rw] server_configuration
2650
- # The server name and network port required to connect with your
2651
- # on-premises storage system's management interface.
2652
- # @return [Types::DiscoveryServerConfiguration]
2653
- #
2654
- # @!attribute [rw] system_type
2655
- # The type of on-premises storage system.
2656
- #
2657
- # <note markdown="1"> DataSync Discovery currently only supports NetApp Fabric-Attached
2658
- # Storage (FAS) and All Flash FAS (AFF) systems running ONTAP 9.7 or
2659
- # later.
2660
- #
2661
- # </note>
2662
- # @return [String]
2663
- #
2664
- # @!attribute [rw] agent_arns
2665
- # The ARN of the DataSync agent that connects to and reads from your
2666
- # on-premises storage system.
2667
- # @return [Array<String>]
2668
- #
2669
- # @!attribute [rw] name
2670
- # The name that you gave your on-premises storage system when adding
2671
- # it to DataSync Discovery.
2672
- # @return [String]
2673
- #
2674
- # @!attribute [rw] error_message
2675
- # Describes the connectivity error that the DataSync agent is
2676
- # encountering with your on-premises storage system.
2677
- # @return [String]
2678
- #
2679
- # @!attribute [rw] connectivity_status
2680
- # Indicates whether your DataSync agent can connect to your
2681
- # on-premises storage system.
2682
- # @return [String]
2683
- #
2684
- # @!attribute [rw] cloud_watch_log_group_arn
2685
- # The ARN of the Amazon CloudWatch log group that's used to monitor
2686
- # and log discovery job events.
2687
- # @return [String]
2688
- #
2689
- # @!attribute [rw] creation_time
2690
- # The time when you added the on-premises storage system to DataSync
2691
- # Discovery.
2692
- # @return [Time]
2693
- #
2694
- # @!attribute [rw] secrets_manager_arn
2695
- # The ARN of the secret that stores your on-premises storage system's
2696
- # credentials. DataSync Discovery stores these credentials in [Secrets
2697
- # Manager][1].
2698
- #
2699
- #
2700
- #
2701
- # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/discovery-configure-storage.html#discovery-add-storage
2702
- # @return [String]
2703
- #
2704
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeStorageSystemResponse AWS API Documentation
2705
- #
2706
- class DescribeStorageSystemResponse < Struct.new(
2707
- :storage_system_arn,
2708
- :server_configuration,
2709
- :system_type,
2710
- :agent_arns,
2711
- :name,
2712
- :error_message,
2713
- :connectivity_status,
2714
- :cloud_watch_log_group_arn,
2715
- :creation_time,
2716
- :secrets_manager_arn)
2717
- SENSITIVE = []
2718
- include Aws::Structure
2719
- end
2720
-
2721
2286
  # DescribeTaskExecutionRequest
2722
2287
  #
2723
2288
  # @!attribute [rw] task_execution_arn
@@ -3231,52 +2796,6 @@ module Aws::DataSync
3231
2796
  include Aws::Structure
3232
2797
  end
3233
2798
 
3234
- # The details about a specific DataSync discovery job.
3235
- #
3236
- # @!attribute [rw] discovery_job_arn
3237
- # The Amazon Resource Name (ARN) of a discovery job.
3238
- # @return [String]
3239
- #
3240
- # @!attribute [rw] status
3241
- # The status of a discovery job. For more information, see [Discovery
3242
- # job statuses][1].
3243
- #
3244
- #
3245
- #
3246
- # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/discovery-job-statuses.html#discovery-job-statuses-table
3247
- # @return [String]
3248
- #
3249
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DiscoveryJobListEntry AWS API Documentation
3250
- #
3251
- class DiscoveryJobListEntry < Struct.new(
3252
- :discovery_job_arn,
3253
- :status)
3254
- SENSITIVE = []
3255
- include Aws::Structure
3256
- end
3257
-
3258
- # The network settings that DataSync Discovery uses to connect with your
3259
- # on-premises storage system's management interface.
3260
- #
3261
- # @!attribute [rw] server_hostname
3262
- # The domain name or IP address of your storage system's management
3263
- # interface.
3264
- # @return [String]
3265
- #
3266
- # @!attribute [rw] server_port
3267
- # The network port for accessing the storage system's management
3268
- # interface.
3269
- # @return [Integer]
3270
- #
3271
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DiscoveryServerConfiguration AWS API Documentation
3272
- #
3273
- class DiscoveryServerConfiguration < Struct.new(
3274
- :server_hostname,
3275
- :server_port)
3276
- SENSITIVE = []
3277
- include Aws::Structure
3278
- end
3279
-
3280
2799
  # The subnet and security groups that DataSync uses to connect to one of
3281
2800
  # your Amazon EFS file system's [mount targets][1].
3282
2801
  #
@@ -3517,35 +3036,6 @@ module Aws::DataSync
3517
3036
  include Aws::Structure
3518
3037
  end
3519
3038
 
3520
- # @!attribute [rw] discovery_job_arn
3521
- # Specifies the Amazon Resource Name (ARN) of the discovery job that
3522
- # collects information about your on-premises storage system.
3523
- # @return [String]
3524
- #
3525
- # @!attribute [rw] resource_ids
3526
- # Specifies the universally unique identifiers (UUIDs) of the
3527
- # resources in your storage system that you want recommendations on.
3528
- # @return [Array<String>]
3529
- #
3530
- # @!attribute [rw] resource_type
3531
- # Specifies the type of resource in your storage system that you want
3532
- # recommendations on.
3533
- # @return [String]
3534
- #
3535
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/GenerateRecommendationsRequest AWS API Documentation
3536
- #
3537
- class GenerateRecommendationsRequest < Struct.new(
3538
- :discovery_job_arn,
3539
- :resource_ids,
3540
- :resource_type)
3541
- SENSITIVE = []
3542
- include Aws::Structure
3543
- end
3544
-
3545
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/GenerateRecommendationsResponse AWS API Documentation
3546
- #
3547
- class GenerateRecommendationsResponse < Aws::EmptyStructure; end
3548
-
3549
3039
  # The NameNode of the Hadoop Distributed File System (HDFS). The
3550
3040
  # NameNode manages the file system's namespace. The NameNode performs
3551
3041
  # operations such as opening, closing, and renaming files and
@@ -3572,37 +3062,6 @@ module Aws::DataSync
3572
3062
  include Aws::Structure
3573
3063
  end
3574
3064
 
3575
- # The IOPS peaks for an on-premises storage system resource. Each data
3576
- # point represents the 95th percentile peak value during a 1-hour
3577
- # interval.
3578
- #
3579
- # @!attribute [rw] read
3580
- # Peak IOPS related to read operations.
3581
- # @return [Float]
3582
- #
3583
- # @!attribute [rw] write
3584
- # Peak IOPS related to write operations.
3585
- # @return [Float]
3586
- #
3587
- # @!attribute [rw] other
3588
- # Peak IOPS unrelated to read and write operations.
3589
- # @return [Float]
3590
- #
3591
- # @!attribute [rw] total
3592
- # Peak total IOPS on your on-premises storage system resource.
3593
- # @return [Float]
3594
- #
3595
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/IOPS AWS API Documentation
3596
- #
3597
- class IOPS < Struct.new(
3598
- :read,
3599
- :write,
3600
- :other,
3601
- :total)
3602
- SENSITIVE = []
3603
- include Aws::Structure
3604
- end
3605
-
3606
3065
  # This exception is thrown when an error occurs in the DataSync service.
3607
3066
  #
3608
3067
  # @!attribute [rw] message
@@ -3641,32 +3100,6 @@ module Aws::DataSync
3641
3100
  include Aws::Structure
3642
3101
  end
3643
3102
 
3644
- # The latency peaks for an on-premises storage system resource. Each
3645
- # data point represents the 95th percentile peak value during a 1-hour
3646
- # interval.
3647
- #
3648
- # @!attribute [rw] read
3649
- # Peak latency for read operations.
3650
- # @return [Float]
3651
- #
3652
- # @!attribute [rw] write
3653
- # Peak latency for write operations.
3654
- # @return [Float]
3655
- #
3656
- # @!attribute [rw] other
3657
- # Peak latency for operations unrelated to read and write operations.
3658
- # @return [Float]
3659
- #
3660
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/Latency AWS API Documentation
3661
- #
3662
- class Latency < Struct.new(
3663
- :read,
3664
- :write,
3665
- :other)
3666
- SENSITIVE = []
3667
- include Aws::Structure
3668
- end
3669
-
3670
3103
  # ListAgentsRequest
3671
3104
  #
3672
3105
  # @!attribute [rw] max_results
@@ -3710,49 +3143,6 @@ module Aws::DataSync
3710
3143
  include Aws::Structure
3711
3144
  end
3712
3145
 
3713
- # @!attribute [rw] storage_system_arn
3714
- # Specifies the Amazon Resource Name (ARN) of an on-premises storage
3715
- # system. Use this parameter if you only want to list the discovery
3716
- # jobs that are associated with a specific storage system.
3717
- # @return [String]
3718
- #
3719
- # @!attribute [rw] max_results
3720
- # Specifies how many results you want in the response.
3721
- # @return [Integer]
3722
- #
3723
- # @!attribute [rw] next_token
3724
- # Specifies an opaque string that indicates the position to begin the
3725
- # next list of results in the response.
3726
- # @return [String]
3727
- #
3728
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/ListDiscoveryJobsRequest AWS API Documentation
3729
- #
3730
- class ListDiscoveryJobsRequest < Struct.new(
3731
- :storage_system_arn,
3732
- :max_results,
3733
- :next_token)
3734
- SENSITIVE = []
3735
- include Aws::Structure
3736
- end
3737
-
3738
- # @!attribute [rw] discovery_jobs
3739
- # The discovery jobs that you've run.
3740
- # @return [Array<Types::DiscoveryJobListEntry>]
3741
- #
3742
- # @!attribute [rw] next_token
3743
- # The opaque string that indicates the position to begin the next list
3744
- # of results in the response.
3745
- # @return [String]
3746
- #
3747
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/ListDiscoveryJobsResponse AWS API Documentation
3748
- #
3749
- class ListDiscoveryJobsResponse < Struct.new(
3750
- :discovery_jobs,
3751
- :next_token)
3752
- SENSITIVE = []
3753
- include Aws::Structure
3754
- end
3755
-
3756
3146
  # ListLocationsRequest
3757
3147
  #
3758
3148
  # @!attribute [rw] max_results
@@ -3801,43 +3191,6 @@ module Aws::DataSync
3801
3191
  include Aws::Structure
3802
3192
  end
3803
3193
 
3804
- # @!attribute [rw] max_results
3805
- # Specifies how many results you want in the response.
3806
- # @return [Integer]
3807
- #
3808
- # @!attribute [rw] next_token
3809
- # Specifies an opaque string that indicates the position to begin the
3810
- # next list of results in the response.
3811
- # @return [String]
3812
- #
3813
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/ListStorageSystemsRequest AWS API Documentation
3814
- #
3815
- class ListStorageSystemsRequest < Struct.new(
3816
- :max_results,
3817
- :next_token)
3818
- SENSITIVE = []
3819
- include Aws::Structure
3820
- end
3821
-
3822
- # @!attribute [rw] storage_systems
3823
- # The Amazon Resource Names ARNs) of the on-premises storage systems
3824
- # that you're using with DataSync Discovery.
3825
- # @return [Array<Types::StorageSystemListEntry>]
3826
- #
3827
- # @!attribute [rw] next_token
3828
- # The opaque string that indicates the position to begin the next list
3829
- # of results in the response.
3830
- # @return [String]
3831
- #
3832
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/ListStorageSystemsResponse AWS API Documentation
3833
- #
3834
- class ListStorageSystemsResponse < Struct.new(
3835
- :storage_systems,
3836
- :next_token)
3837
- SENSITIVE = []
3838
- include Aws::Structure
3839
- end
3840
-
3841
3194
  # ListTagsForResourceRequest
3842
3195
  #
3843
3196
  # @!attribute [rw] resource_arn
@@ -4118,354 +3471,6 @@ module Aws::DataSync
4118
3471
  include Aws::Structure
4119
3472
  end
4120
3473
 
4121
- # The performance data that DataSync Discovery collects about an
4122
- # on-premises storage system resource.
4123
- #
4124
- # @!attribute [rw] iops_read
4125
- # Peak IOPS related to read operations.
4126
- # @return [Float]
4127
- #
4128
- # @!attribute [rw] iops_write
4129
- # Peak IOPS related to write operations.
4130
- # @return [Float]
4131
- #
4132
- # @!attribute [rw] iops_other
4133
- # Peak IOPS unrelated to read and write operations.
4134
- # @return [Float]
4135
- #
4136
- # @!attribute [rw] iops_total
4137
- # Peak total IOPS on your on-premises storage system resource.
4138
- # @return [Float]
4139
- #
4140
- # @!attribute [rw] throughput_read
4141
- # Peak throughput related to read operations.
4142
- # @return [Float]
4143
- #
4144
- # @!attribute [rw] throughput_write
4145
- # Peak throughput related to write operations.
4146
- # @return [Float]
4147
- #
4148
- # @!attribute [rw] throughput_other
4149
- # Peak throughput unrelated to read and write operations.
4150
- # @return [Float]
4151
- #
4152
- # @!attribute [rw] throughput_total
4153
- # Peak total throughput on your on-premises storage system resource.
4154
- # @return [Float]
4155
- #
4156
- # @!attribute [rw] latency_read
4157
- # Peak latency for read operations.
4158
- # @return [Float]
4159
- #
4160
- # @!attribute [rw] latency_write
4161
- # Peak latency for write operations.
4162
- # @return [Float]
4163
- #
4164
- # @!attribute [rw] latency_other
4165
- # Peak latency for operations unrelated to read and write operations.
4166
- # @return [Float]
4167
- #
4168
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/MaxP95Performance AWS API Documentation
4169
- #
4170
- class MaxP95Performance < Struct.new(
4171
- :iops_read,
4172
- :iops_write,
4173
- :iops_other,
4174
- :iops_total,
4175
- :throughput_read,
4176
- :throughput_write,
4177
- :throughput_other,
4178
- :throughput_total,
4179
- :latency_read,
4180
- :latency_write,
4181
- :latency_other)
4182
- SENSITIVE = []
4183
- include Aws::Structure
4184
- end
4185
-
4186
- # The information that DataSync Discovery collects about an on-premises
4187
- # storage system cluster.
4188
- #
4189
- # @!attribute [rw] cifs_share_count
4190
- # The number of CIFS shares in the cluster.
4191
- # @return [Integer]
4192
- #
4193
- # @!attribute [rw] nfs_exported_volumes
4194
- # The number of NFS volumes in the cluster.
4195
- # @return [Integer]
4196
- #
4197
- # @!attribute [rw] resource_id
4198
- # The universally unique identifier (UUID) of the cluster.
4199
- # @return [String]
4200
- #
4201
- # @!attribute [rw] cluster_name
4202
- # The name of the cluster.
4203
- # @return [String]
4204
- #
4205
- # @!attribute [rw] max_p95_performance
4206
- # The performance data that DataSync Discovery collects about the
4207
- # cluster.
4208
- # @return [Types::MaxP95Performance]
4209
- #
4210
- # @!attribute [rw] cluster_block_storage_size
4211
- # The total storage space that's available in the cluster.
4212
- # @return [Integer]
4213
- #
4214
- # @!attribute [rw] cluster_block_storage_used
4215
- # The storage space that's being used in a cluster.
4216
- # @return [Integer]
4217
- #
4218
- # @!attribute [rw] cluster_block_storage_logical_used
4219
- # The storage space that's being used in the cluster without
4220
- # accounting for compression or deduplication.
4221
- # @return [Integer]
4222
- #
4223
- # @!attribute [rw] recommendations
4224
- # The Amazon Web Services storage services that DataSync Discovery
4225
- # recommends for the cluster. For more information, see
4226
- # [Recommendations provided by DataSync Discovery][1].
4227
- #
4228
- #
4229
- #
4230
- # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/discovery-understand-recommendations.html
4231
- # @return [Array<Types::Recommendation>]
4232
- #
4233
- # @!attribute [rw] recommendation_status
4234
- # Indicates whether DataSync Discovery recommendations for the cluster
4235
- # are ready to view, incomplete, or can't be determined.
4236
- #
4237
- # For more information, see [Recommendation statuses][1].
4238
- #
4239
- #
4240
- #
4241
- # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/discovery-job-statuses.html#recommendation-statuses-table
4242
- # @return [String]
4243
- #
4244
- # @!attribute [rw] lun_count
4245
- # The number of LUNs (logical unit numbers) in the cluster.
4246
- # @return [Integer]
4247
- #
4248
- # @!attribute [rw] cluster_cloud_storage_used
4249
- # The amount of space in the cluster that's in cloud storage (for
4250
- # example, if you're using data tiering).
4251
- # @return [Integer]
4252
- #
4253
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/NetAppONTAPCluster AWS API Documentation
4254
- #
4255
- class NetAppONTAPCluster < Struct.new(
4256
- :cifs_share_count,
4257
- :nfs_exported_volumes,
4258
- :resource_id,
4259
- :cluster_name,
4260
- :max_p95_performance,
4261
- :cluster_block_storage_size,
4262
- :cluster_block_storage_used,
4263
- :cluster_block_storage_logical_used,
4264
- :recommendations,
4265
- :recommendation_status,
4266
- :lun_count,
4267
- :cluster_cloud_storage_used)
4268
- SENSITIVE = []
4269
- include Aws::Structure
4270
- end
4271
-
4272
- # The information that DataSync Discovery collects about a storage
4273
- # virtual machine (SVM) in your on-premises storage system.
4274
- #
4275
- # @!attribute [rw] cluster_uuid
4276
- # The universally unique identifier (UUID) of the cluster associated
4277
- # with the SVM.
4278
- # @return [String]
4279
- #
4280
- # @!attribute [rw] resource_id
4281
- # The UUID of the SVM.
4282
- # @return [String]
4283
- #
4284
- # @!attribute [rw] svm_name
4285
- # The name of the SVM
4286
- # @return [String]
4287
- #
4288
- # @!attribute [rw] cifs_share_count
4289
- # The number of CIFS shares in the SVM.
4290
- # @return [Integer]
4291
- #
4292
- # @!attribute [rw] enabled_protocols
4293
- # The data transfer protocols (such as NFS) configured for the SVM.
4294
- # @return [Array<String>]
4295
- #
4296
- # @!attribute [rw] total_capacity_used
4297
- # The storage space that's being used in the SVM.
4298
- # @return [Integer]
4299
- #
4300
- # @!attribute [rw] total_capacity_provisioned
4301
- # The total storage space that's available in the SVM.
4302
- # @return [Integer]
4303
- #
4304
- # @!attribute [rw] total_logical_capacity_used
4305
- # The storage space that's being used in the SVM without accounting
4306
- # for compression or deduplication.
4307
- # @return [Integer]
4308
- #
4309
- # @!attribute [rw] max_p95_performance
4310
- # The performance data that DataSync Discovery collects about the SVM.
4311
- # @return [Types::MaxP95Performance]
4312
- #
4313
- # @!attribute [rw] recommendations
4314
- # The Amazon Web Services storage services that DataSync Discovery
4315
- # recommends for the SVM. For more information, see [Recommendations
4316
- # provided by DataSync Discovery][1].
4317
- #
4318
- #
4319
- #
4320
- # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/discovery-understand-recommendations.html
4321
- # @return [Array<Types::Recommendation>]
4322
- #
4323
- # @!attribute [rw] nfs_exported_volumes
4324
- # The number of NFS volumes in the SVM.
4325
- # @return [Integer]
4326
- #
4327
- # @!attribute [rw] recommendation_status
4328
- # Indicates whether DataSync Discovery recommendations for the SVM are
4329
- # ready to view, incomplete, or can't be determined.
4330
- #
4331
- # For more information, see [Recommendation statuses][1].
4332
- #
4333
- #
4334
- #
4335
- # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/discovery-job-statuses.html#recommendation-statuses-table
4336
- # @return [String]
4337
- #
4338
- # @!attribute [rw] total_snapshot_capacity_used
4339
- # The amount of storage in the SVM that's being used for snapshots.
4340
- # @return [Integer]
4341
- #
4342
- # @!attribute [rw] lun_count
4343
- # The number of LUNs (logical unit numbers) in the SVM.
4344
- # @return [Integer]
4345
- #
4346
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/NetAppONTAPSVM AWS API Documentation
4347
- #
4348
- class NetAppONTAPSVM < Struct.new(
4349
- :cluster_uuid,
4350
- :resource_id,
4351
- :svm_name,
4352
- :cifs_share_count,
4353
- :enabled_protocols,
4354
- :total_capacity_used,
4355
- :total_capacity_provisioned,
4356
- :total_logical_capacity_used,
4357
- :max_p95_performance,
4358
- :recommendations,
4359
- :nfs_exported_volumes,
4360
- :recommendation_status,
4361
- :total_snapshot_capacity_used,
4362
- :lun_count)
4363
- SENSITIVE = []
4364
- include Aws::Structure
4365
- end
4366
-
4367
- # The information that DataSync Discovery collects about a volume in
4368
- # your on-premises storage system.
4369
- #
4370
- # @!attribute [rw] volume_name
4371
- # The name of the volume.
4372
- # @return [String]
4373
- #
4374
- # @!attribute [rw] resource_id
4375
- # The universally unique identifier (UUID) of the volume.
4376
- # @return [String]
4377
- #
4378
- # @!attribute [rw] cifs_share_count
4379
- # The number of CIFS shares in the volume.
4380
- # @return [Integer]
4381
- #
4382
- # @!attribute [rw] security_style
4383
- # The volume's security style (such as Unix or NTFS).
4384
- # @return [String]
4385
- #
4386
- # @!attribute [rw] svm_uuid
4387
- # The UUID of the storage virtual machine (SVM) associated with the
4388
- # volume.
4389
- # @return [String]
4390
- #
4391
- # @!attribute [rw] svm_name
4392
- # The name of the SVM associated with the volume.
4393
- # @return [String]
4394
- #
4395
- # @!attribute [rw] capacity_used
4396
- # The storage space that's being used in the volume.
4397
- # @return [Integer]
4398
- #
4399
- # @!attribute [rw] capacity_provisioned
4400
- # The total storage space that's available in the volume.
4401
- # @return [Integer]
4402
- #
4403
- # @!attribute [rw] logical_capacity_used
4404
- # The storage space that's being used in the volume without
4405
- # accounting for compression or deduplication.
4406
- # @return [Integer]
4407
- #
4408
- # @!attribute [rw] nfs_exported
4409
- # The number of NFS volumes in the volume.
4410
- # @return [Boolean]
4411
- #
4412
- # @!attribute [rw] snapshot_capacity_used
4413
- # The amount of storage in the volume that's being used for
4414
- # snapshots.
4415
- # @return [Integer]
4416
- #
4417
- # @!attribute [rw] max_p95_performance
4418
- # The performance data that DataSync Discovery collects about the
4419
- # volume.
4420
- # @return [Types::MaxP95Performance]
4421
- #
4422
- # @!attribute [rw] recommendations
4423
- # The Amazon Web Services storage services that DataSync Discovery
4424
- # recommends for the volume. For more information, see
4425
- # [Recommendations provided by DataSync Discovery][1].
4426
- #
4427
- #
4428
- #
4429
- # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/discovery-understand-recommendations.html
4430
- # @return [Array<Types::Recommendation>]
4431
- #
4432
- # @!attribute [rw] recommendation_status
4433
- # Indicates whether DataSync Discovery recommendations for the volume
4434
- # are ready to view, incomplete, or can't be determined.
4435
- #
4436
- # For more information, see [Recommendation statuses][1].
4437
- #
4438
- #
4439
- #
4440
- # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/discovery-job-statuses.html#recommendation-statuses-table
4441
- # @return [String]
4442
- #
4443
- # @!attribute [rw] lun_count
4444
- # The number of LUNs (logical unit numbers) in the volume.
4445
- # @return [Integer]
4446
- #
4447
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/NetAppONTAPVolume AWS API Documentation
4448
- #
4449
- class NetAppONTAPVolume < Struct.new(
4450
- :volume_name,
4451
- :resource_id,
4452
- :cifs_share_count,
4453
- :security_style,
4454
- :svm_uuid,
4455
- :svm_name,
4456
- :capacity_used,
4457
- :capacity_provisioned,
4458
- :logical_capacity_used,
4459
- :nfs_exported,
4460
- :snapshot_capacity_used,
4461
- :max_p95_performance,
4462
- :recommendations,
4463
- :recommendation_status,
4464
- :lun_count)
4465
- SENSITIVE = []
4466
- include Aws::Structure
4467
- end
4468
-
4469
3474
  # Specifies how DataSync can access a location using the NFS protocol.
4470
3475
  #
4471
3476
  # @!attribute [rw] version
@@ -4881,37 +3886,6 @@ module Aws::DataSync
4881
3886
  include Aws::Structure
4882
3887
  end
4883
3888
 
4884
- # The types of performance data that DataSync Discovery collects about
4885
- # an on-premises storage system resource.
4886
- #
4887
- # @!attribute [rw] iops
4888
- # The IOPS peaks for an on-premises storage system resource. Each data
4889
- # point represents the 95th percentile peak value during a 1-hour
4890
- # interval.
4891
- # @return [Types::IOPS]
4892
- #
4893
- # @!attribute [rw] throughput
4894
- # The throughput peaks for an on-premises storage system resource.
4895
- # Each data point represents the 95th percentile peak value during a
4896
- # 1-hour interval.
4897
- # @return [Types::Throughput]
4898
- #
4899
- # @!attribute [rw] latency
4900
- # The latency peaks for an on-premises storage system resource. Each
4901
- # data point represents the 95th percentile peak value during a 1-hour
4902
- # interval.
4903
- # @return [Types::Latency]
4904
- #
4905
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/P95Metrics AWS API Documentation
4906
- #
4907
- class P95Metrics < Struct.new(
4908
- :iops,
4909
- :throughput,
4910
- :latency)
4911
- SENSITIVE = []
4912
- include Aws::Structure
4913
- end
4914
-
4915
3889
  # The platform-related details about the DataSync agent, such as the
4916
3890
  # version number.
4917
3891
  #
@@ -4995,60 +3969,6 @@ module Aws::DataSync
4995
3969
  include Aws::Structure
4996
3970
  end
4997
3971
 
4998
- # The details about an Amazon Web Services storage service that DataSync
4999
- # Discovery recommends for a resource in your on-premises storage
5000
- # system.
5001
- #
5002
- # For more information, see [Recommendations provided by DataSync
5003
- # Discovery][1].
5004
- #
5005
- #
5006
- #
5007
- # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/discovery-understand-recommendations.html
5008
- #
5009
- # @!attribute [rw] storage_type
5010
- # A recommended Amazon Web Services storage service that you can
5011
- # migrate data to based on information that DataSync Discovery
5012
- # collects about your on-premises storage system.
5013
- # @return [String]
5014
- #
5015
- # @!attribute [rw] storage_configuration
5016
- # Information about how you can set up a recommended Amazon Web
5017
- # Services storage service.
5018
- # @return [Hash<String,String>]
5019
- #
5020
- # @!attribute [rw] estimated_monthly_storage_cost
5021
- # The estimated monthly cost of the recommended Amazon Web Services
5022
- # storage service.
5023
- # @return [String]
5024
- #
5025
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/Recommendation AWS API Documentation
5026
- #
5027
- class Recommendation < Struct.new(
5028
- :storage_type,
5029
- :storage_configuration,
5030
- :estimated_monthly_storage_cost)
5031
- SENSITIVE = []
5032
- include Aws::Structure
5033
- end
5034
-
5035
- # @!attribute [rw] storage_system_arn
5036
- # Specifies the Amazon Resource Name (ARN) of the storage system that
5037
- # you want to permanently remove from DataSync Discovery.
5038
- # @return [String]
5039
- #
5040
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/RemoveStorageSystemRequest AWS API Documentation
5041
- #
5042
- class RemoveStorageSystemRequest < Struct.new(
5043
- :storage_system_arn)
5044
- SENSITIVE = []
5045
- include Aws::Structure
5046
- end
5047
-
5048
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/RemoveStorageSystemResponse AWS API Documentation
5049
- #
5050
- class RemoveStorageSystemResponse < Aws::EmptyStructure; end
5051
-
5052
3972
  # Specifies where DataSync uploads your [task report][1].
5053
3973
  #
5054
3974
  #
@@ -5212,73 +4132,6 @@ module Aws::DataSync
5212
4132
  include Aws::Structure
5213
4133
  end
5214
4134
 
5215
- # Information provided by DataSync Discovery about the resources in your
5216
- # on-premises storage system.
5217
- #
5218
- # @!attribute [rw] net_app_ontapsv_ms
5219
- # The information that DataSync Discovery collects about storage
5220
- # virtual machines (SVMs) in your on-premises storage system.
5221
- # @return [Array<Types::NetAppONTAPSVM>]
5222
- #
5223
- # @!attribute [rw] net_app_ontap_volumes
5224
- # The information that DataSync Discovery collects about volumes in
5225
- # your on-premises storage system.
5226
- # @return [Array<Types::NetAppONTAPVolume>]
5227
- #
5228
- # @!attribute [rw] net_app_ontap_clusters
5229
- # The information that DataSync Discovery collects about the cluster
5230
- # in your on-premises storage system.
5231
- # @return [Array<Types::NetAppONTAPCluster>]
5232
- #
5233
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/ResourceDetails AWS API Documentation
5234
- #
5235
- class ResourceDetails < Struct.new(
5236
- :net_app_ontapsv_ms,
5237
- :net_app_ontap_volumes,
5238
- :net_app_ontap_clusters)
5239
- SENSITIVE = []
5240
- include Aws::Structure
5241
- end
5242
-
5243
- # Information, including performance data and capacity usage, provided
5244
- # by DataSync Discovery about a resource in your on-premises storage
5245
- # system.
5246
- #
5247
- # @!attribute [rw] timestamp
5248
- # The time when DataSync Discovery collected this information from the
5249
- # resource.
5250
- # @return [Time]
5251
- #
5252
- # @!attribute [rw] p95_metrics
5253
- # The types of performance data that DataSync Discovery collects about
5254
- # the on-premises storage system resource.
5255
- # @return [Types::P95Metrics]
5256
- #
5257
- # @!attribute [rw] capacity
5258
- # The storage capacity of the on-premises storage system resource.
5259
- # @return [Types::Capacity]
5260
- #
5261
- # @!attribute [rw] resource_id
5262
- # The universally unique identifier (UUID) of the on-premises storage
5263
- # system resource.
5264
- # @return [String]
5265
- #
5266
- # @!attribute [rw] resource_type
5267
- # The type of on-premises storage system resource.
5268
- # @return [String]
5269
- #
5270
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/ResourceMetrics AWS API Documentation
5271
- #
5272
- class ResourceMetrics < Struct.new(
5273
- :timestamp,
5274
- :p95_metrics,
5275
- :capacity,
5276
- :resource_id,
5277
- :resource_type)
5278
- SENSITIVE = []
5279
- include Aws::Structure
5280
- end
5281
-
5282
4135
  # Specifies the Amazon Resource Name (ARN) of the Identity and Access
5283
4136
  # Management (IAM) role that DataSync uses to access your S3 bucket.
5284
4137
  #
@@ -5417,59 +4270,6 @@ module Aws::DataSync
5417
4270
  include Aws::Structure
5418
4271
  end
5419
4272
 
5420
- # @!attribute [rw] storage_system_arn
5421
- # Specifies the Amazon Resource Name (ARN) of the on-premises storage
5422
- # system that you want to run the discovery job on.
5423
- # @return [String]
5424
- #
5425
- # @!attribute [rw] collection_duration_minutes
5426
- # Specifies in minutes how long you want the discovery job to run.
5427
- #
5428
- # <note markdown="1"> For more accurate recommendations, we recommend a duration of at
5429
- # least 14 days. Longer durations allow time to collect a sufficient
5430
- # number of data points and provide a realistic representation of
5431
- # storage performance and utilization.
5432
- #
5433
- # </note>
5434
- # @return [Integer]
5435
- #
5436
- # @!attribute [rw] client_token
5437
- # Specifies a client token to make sure requests with this API
5438
- # operation are idempotent. If you don't specify a client token,
5439
- # DataSync generates one for you automatically.
5440
- #
5441
- # **A suitable default value is auto-generated.** You should normally
5442
- # not need to pass this option.
5443
- # @return [String]
5444
- #
5445
- # @!attribute [rw] tags
5446
- # Specifies labels that help you categorize, filter, and search for
5447
- # your Amazon Web Services resources.
5448
- # @return [Array<Types::TagListEntry>]
5449
- #
5450
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/StartDiscoveryJobRequest AWS API Documentation
5451
- #
5452
- class StartDiscoveryJobRequest < Struct.new(
5453
- :storage_system_arn,
5454
- :collection_duration_minutes,
5455
- :client_token,
5456
- :tags)
5457
- SENSITIVE = []
5458
- include Aws::Structure
5459
- end
5460
-
5461
- # @!attribute [rw] discovery_job_arn
5462
- # The ARN of the discovery job that you started.
5463
- # @return [String]
5464
- #
5465
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/StartDiscoveryJobResponse AWS API Documentation
5466
- #
5467
- class StartDiscoveryJobResponse < Struct.new(
5468
- :discovery_job_arn)
5469
- SENSITIVE = []
5470
- include Aws::Structure
5471
- end
5472
-
5473
4273
  # StartTaskExecutionRequest
5474
4274
  #
5475
4275
  # @!attribute [rw] task_arn
@@ -5587,45 +4387,6 @@ module Aws::DataSync
5587
4387
  include Aws::Structure
5588
4388
  end
5589
4389
 
5590
- # @!attribute [rw] discovery_job_arn
5591
- # Specifies the Amazon Resource Name (ARN) of the discovery job that
5592
- # you want to stop.
5593
- # @return [String]
5594
- #
5595
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/StopDiscoveryJobRequest AWS API Documentation
5596
- #
5597
- class StopDiscoveryJobRequest < Struct.new(
5598
- :discovery_job_arn)
5599
- SENSITIVE = []
5600
- include Aws::Structure
5601
- end
5602
-
5603
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/StopDiscoveryJobResponse AWS API Documentation
5604
- #
5605
- class StopDiscoveryJobResponse < Aws::EmptyStructure; end
5606
-
5607
- # Information that identifies an on-premises storage system that you're
5608
- # using with DataSync Discovery.
5609
- #
5610
- # @!attribute [rw] storage_system_arn
5611
- # The Amazon Resource Names (ARN) of an on-premises storage system
5612
- # that you added to DataSync Discovery.
5613
- # @return [String]
5614
- #
5615
- # @!attribute [rw] name
5616
- # The name of an on-premises storage system that you added to DataSync
5617
- # Discovery.
5618
- # @return [String]
5619
- #
5620
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/StorageSystemListEntry AWS API Documentation
5621
- #
5622
- class StorageSystemListEntry < Struct.new(
5623
- :storage_system_arn,
5624
- :name)
5625
- SENSITIVE = []
5626
- include Aws::Structure
5627
- end
5628
-
5629
4390
  # A key-value pair representing a single tag that's been applied to an
5630
4391
  # Amazon Web Services resource.
5631
4392
  #
@@ -6169,37 +4930,6 @@ module Aws::DataSync
6169
4930
  include Aws::Structure
6170
4931
  end
6171
4932
 
6172
- # The throughput peaks for an on-premises storage system volume. Each
6173
- # data point represents the 95th percentile peak value during a 1-hour
6174
- # interval.
6175
- #
6176
- # @!attribute [rw] read
6177
- # Peak throughput related to read operations.
6178
- # @return [Float]
6179
- #
6180
- # @!attribute [rw] write
6181
- # Peak throughput related to write operations.
6182
- # @return [Float]
6183
- #
6184
- # @!attribute [rw] other
6185
- # Peak throughput unrelated to read and write operations.
6186
- # @return [Float]
6187
- #
6188
- # @!attribute [rw] total
6189
- # Peak total throughput on your on-premises storage system resource.
6190
- # @return [Float]
6191
- #
6192
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/Throughput AWS API Documentation
6193
- #
6194
- class Throughput < Struct.new(
6195
- :read,
6196
- :write,
6197
- :other,
6198
- :total)
6199
- SENSITIVE = []
6200
- include Aws::Structure
6201
- end
6202
-
6203
4933
  # UntagResourceRequest
6204
4934
  #
6205
4935
  # @!attribute [rw] resource_arn
@@ -6247,30 +4977,6 @@ module Aws::DataSync
6247
4977
  #
6248
4978
  class UpdateAgentResponse < Aws::EmptyStructure; end
6249
4979
 
6250
- # @!attribute [rw] discovery_job_arn
6251
- # Specifies the Amazon Resource Name (ARN) of the discovery job that
6252
- # you want to update.
6253
- # @return [String]
6254
- #
6255
- # @!attribute [rw] collection_duration_minutes
6256
- # Specifies in minutes how long that you want the discovery job to
6257
- # run. (You can't set this parameter to less than the number of
6258
- # minutes that the job has already run for.)
6259
- # @return [Integer]
6260
- #
6261
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/UpdateDiscoveryJobRequest AWS API Documentation
6262
- #
6263
- class UpdateDiscoveryJobRequest < Struct.new(
6264
- :discovery_job_arn,
6265
- :collection_duration_minutes)
6266
- SENSITIVE = []
6267
- include Aws::Structure
6268
- end
6269
-
6270
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/UpdateDiscoveryJobResponse AWS API Documentation
6271
- #
6272
- class UpdateDiscoveryJobResponse < Aws::EmptyStructure; end
6273
-
6274
4980
  # @!attribute [rw] location_arn
6275
4981
  # Specifies the ARN of the Azure Blob Storage transfer location that
6276
4982
  # you're updating.
@@ -6626,9 +5332,7 @@ module Aws::DataSync
6626
5332
  # @!attribute [rw] kerberos_keytab
6627
5333
  # The Kerberos key table (keytab) that contains mappings between the
6628
5334
  # defined Kerberos principal and the encrypted keys. You can load the
6629
- # keytab from a file by providing the file's address. If you use the
6630
- # CLI, it performs base64 encoding for you. Otherwise, provide the
6631
- # base64-encoded text.
5335
+ # keytab from a file by providing the file's address.
6632
5336
  # @return [String]
6633
5337
  #
6634
5338
  # @!attribute [rw] kerberos_krb_5_conf
@@ -6990,9 +5694,6 @@ module Aws::DataSync
6990
5694
  # Specifies your Kerberos key table (keytab) file, which includes
6991
5695
  # mappings between your Kerberos principal and encryption keys.
6992
5696
  #
6993
- # The file must be base64 encoded. If you're using the CLI, the
6994
- # encoding is done for you.
6995
- #
6996
5697
  # To avoid task execution errors, make sure that the Kerberos
6997
5698
  # principal that you use to create the keytab file matches exactly
6998
5699
  # what you specify for `KerberosPrincipal`.
@@ -7030,53 +5731,6 @@ module Aws::DataSync
7030
5731
  #
7031
5732
  class UpdateLocationSmbResponse < Aws::EmptyStructure; end
7032
5733
 
7033
- # @!attribute [rw] storage_system_arn
7034
- # Specifies the ARN of the on-premises storage system that you want
7035
- # reconfigure.
7036
- # @return [String]
7037
- #
7038
- # @!attribute [rw] server_configuration
7039
- # Specifies the server name and network port required to connect with
7040
- # your on-premises storage system's management interface.
7041
- # @return [Types::DiscoveryServerConfiguration]
7042
- #
7043
- # @!attribute [rw] agent_arns
7044
- # Specifies the Amazon Resource Name (ARN) of the DataSync agent that
7045
- # connects to and reads your on-premises storage system. You can only
7046
- # specify one ARN.
7047
- # @return [Array<String>]
7048
- #
7049
- # @!attribute [rw] name
7050
- # Specifies a familiar name for your on-premises storage system.
7051
- # @return [String]
7052
- #
7053
- # @!attribute [rw] cloud_watch_log_group_arn
7054
- # Specifies the ARN of the Amazon CloudWatch log group for monitoring
7055
- # and logging discovery job events.
7056
- # @return [String]
7057
- #
7058
- # @!attribute [rw] credentials
7059
- # Specifies the user name and password for accessing your on-premises
7060
- # storage system's management interface.
7061
- # @return [Types::Credentials]
7062
- #
7063
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/UpdateStorageSystemRequest AWS API Documentation
7064
- #
7065
- class UpdateStorageSystemRequest < Struct.new(
7066
- :storage_system_arn,
7067
- :server_configuration,
7068
- :agent_arns,
7069
- :name,
7070
- :cloud_watch_log_group_arn,
7071
- :credentials)
7072
- SENSITIVE = []
7073
- include Aws::Structure
7074
- end
7075
-
7076
- # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/UpdateStorageSystemResponse AWS API Documentation
7077
- #
7078
- class UpdateStorageSystemResponse < Aws::EmptyStructure; end
7079
-
7080
5734
  # @!attribute [rw] task_execution_arn
7081
5735
  # Specifies the Amazon Resource Name (ARN) of the task execution that
7082
5736
  # you're updating.