aws-sdk-datasync 1.61.0 → 1.62.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: 70a6714aec321802b502b3139dae0ee25c9f6db443aa539e22dcfc18c706dc59
4
- data.tar.gz: d14386c560846a3c10f52e12f08665352daa9df8b9d456d75d6904a69494e6f3
3
+ metadata.gz: 2525b1c92f9450b2389e6645c2cf6a2b426ea80e7402030d50ec654e3fa7c4e2
4
+ data.tar.gz: 8c8faecaea79dd3bc0ee77b678b193f883b14a5aacfa30ec0eba5efe4c5bc18e
5
5
  SHA512:
6
- metadata.gz: c666bfb2cca97adfbdcce9078121044bec243e16ae7ca2f288e728d6a6f99b56cdb2cb09acb37da0bff9f3164d111c9b0273b1904e729be8053ce8b57ebfafce
7
- data.tar.gz: 53c8a639d4974c9c5a4fa67c1cd185731e5c05c1714bcaef8c8d90ea4bc04d26c5b3e43755a47a19ff6ac90d6a751454207f27a1122ff3f50d6d7eb55247c179
6
+ metadata.gz: 44daad11551833e2603913ada412011881d23d8861a5baa754502bf337213adc8ba61fb18658f5154f7dffb3e1325f303765c5b1cd8ef7a0e1899ab8dcedebc3
7
+ data.tar.gz: 4350a27bb42870c81bb53c7197bb8cda92652c986a7c599b394f900337d90fceea524d6bc048f3e4fc9ba6e42edfd2d4565b62ff38674b5f31d964e911aa3f1a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.62.0 (2023-07-13)
5
+ ------------------
6
+
7
+ * Feature - Added LunCount to the response object of DescribeStorageSystemResourcesResponse, LunCount represents the number of LUNs on a storage system resource.
8
+
4
9
  1.61.0 (2023-07-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.61.0
1
+ 1.62.0
@@ -516,87 +516,70 @@ module Aws::DataSync
516
516
  req.send_request(options)
517
517
  end
518
518
 
519
- # Activates an DataSync agent that you have deployed in your storage
520
- # environment. The activation process associates your agent with your
521
- # account. In the activation process, you specify information such as
522
- # the Amazon Web Services Region that you want to activate the agent in.
523
- # You activate the agent in the Amazon Web Services Region where your
524
- # target locations (in Amazon S3 or Amazon EFS) reside. Your tasks are
525
- # created in this Amazon Web Services Region.
526
- #
527
- # You can activate the agent in a VPC (virtual private cloud) or provide
528
- # the agent access to a VPC endpoint so you can run tasks without going
529
- # over the public internet.
530
- #
531
- # You can use an agent for more than one location. If a task uses
532
- # multiple agents, all of them need to have status AVAILABLE for the
533
- # task to run. If you use multiple agents for a source location, the
534
- # status of all the agents must be AVAILABLE for the task to run.
535
- #
536
- # Agents are automatically updated by Amazon Web Services on a regular
537
- # basis, using a mechanism that ensures minimal interruption to your
538
- # tasks.
519
+ # Activates an DataSync agent that you've deployed in your storage
520
+ # environment. The activation process associates the agent with your
521
+ # Amazon Web Services account.
522
+ #
523
+ # If you haven't deployed an agent yet, see the following topics to
524
+ # learn more:
525
+ #
526
+ # * [Agent requirements][1]
527
+ #
528
+ # * [Create an agent][2]
529
+ #
530
+ # <note markdown="1"> If you're transferring between Amazon Web Services storage services,
531
+ # you don't need a DataSync agent.
532
+ #
533
+ # </note>
534
+ #
535
+ #
536
+ #
537
+ # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/agent-requirements.html
538
+ # [2]: https://docs.aws.amazon.com/datasync/latest/userguide/configure-agent.html
539
539
  #
540
540
  # @option params [required, String] :activation_key
541
- # Your agent activation key. You can get the activation key either by
542
- # sending an HTTP GET request with redirects that enable you to get the
543
- # agent IP address (port 80). Alternatively, you can get it from the
544
- # DataSync console.
541
+ # Specifies your DataSync agent's activation key. If you don't have an
542
+ # activation key, see [Activate your agent][1].
543
+ #
545
544
  #
546
- # The redirect URL returned in the response provides you the activation
547
- # key for your agent in the query string parameter `activationKey`. It
548
- # might also include other activation-related parameters; however, these
549
- # are merely defaults. The arguments you pass to this API call determine
550
- # the actual configuration of your agent.
551
545
  #
552
- # For more information, see Activating an Agent in the *DataSync User
553
- # Guide.*
546
+ # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/activate-agent.html
554
547
  #
555
548
  # @option params [String] :agent_name
556
- # The name you configured for your agent. This value is a text reference
557
- # that is used to identify the agent in the console.
549
+ # Specifies a name for your agent. You can see this name in the DataSync
550
+ # console.
558
551
  #
559
552
  # @option params [Array<Types::TagListEntry>] :tags
560
- # The key-value pair that represents the tag that you want to associate
561
- # with the agent. The value can be an empty string. This value helps you
562
- # manage, filter, and search for your agents.
563
- #
564
- # <note markdown="1"> Valid characters for key and value are letters, spaces, and numbers
565
- # representable in UTF-8 format, and the following special characters: +
566
- # - = . \_ : / @.
567
- #
568
- # </note>
553
+ # Specifies labels that help you categorize, filter, and search for your
554
+ # Amazon Web Services resources. We recommend creating at least one tag
555
+ # for your agent.
569
556
  #
570
557
  # @option params [String] :vpc_endpoint_id
571
- # The ID of the VPC (virtual private cloud) endpoint that the agent has
572
- # access to. This is the client-side VPC endpoint, also called a
573
- # PrivateLink. If you don't have a PrivateLink VPC endpoint, see
574
- # [Creating a VPC Endpoint Service Configuration][1] in the Amazon VPC
575
- # User Guide.
558
+ # Specifies the ID of the VPC endpoint that you want your agent to
559
+ # connect to. For example, a VPC endpoint ID looks like
560
+ # `vpce-01234d5aff67890e1`.
576
561
  #
577
- # VPC endpoint ID looks like this: `vpce-01234d5aff67890e1`.
562
+ # The VPC endpoint you use must include the DataSync service name (for
563
+ # example, `com.amazonaws.us-east-2.datasync`).
578
564
  #
565
+ # @option params [Array<String>] :subnet_arns
566
+ # Specifies the ARN of the subnet where you want to run your DataSync
567
+ # task when using a VPC endpoint. This is the subnet where DataSync
568
+ # creates and manages the [network interfaces][1] for your transfer.
579
569
  #
580
570
  #
581
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/endpoint-service.html#create-endpoint-service
582
571
  #
583
- # @option params [Array<String>] :subnet_arns
584
- # The Amazon Resource Names (ARNs) of the subnets in which DataSync will
585
- # create elastic network interfaces for each data transfer task. The
586
- # agent that runs a task must be private. When you start a task that is
587
- # associated with an agent created in a VPC, or one that has access to
588
- # an IP address in a VPC, then the task is also private. In this case,
589
- # DataSync creates four network interfaces for each task in your subnet.
590
- # For a data transfer to work, the agent must be able to route to all
591
- # these four network interfaces.
572
+ # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/datasync-network.html#required-network-interfaces
592
573
  #
593
574
  # @option params [Array<String>] :security_group_arns
594
- # The ARNs of the security groups used to protect your data transfer
595
- # task subnets. See [SecurityGroupArns][1].
575
+ # Specifies the Amazon Resource Name (ARN) of the security group that
576
+ # protects your task's [network interfaces][1] when [using a virtual
577
+ # private cloud (VPC) endpoint][2].
596
578
  #
597
579
  #
598
580
  #
599
- # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/API_Ec2Config.html#DataSync-Type-Ec2Config-SecurityGroupArns
581
+ # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/datasync-network.html#required-network-interfaces
582
+ # [2]: https://docs.aws.amazon.com/datasync/latest/userguide/choose-service-endpoint.html#choose-service-endpoint-vpc
600
583
  #
601
584
  # @return [Types::CreateAgentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
602
585
  #
@@ -981,12 +964,15 @@ module Aws::DataSync
981
964
  # tag for your location.
982
965
  #
983
966
  # @option params [required, String] :user
984
- # Specifies the user who has the permissions to access files and folders
985
- # in the file system.
967
+ # Specifies the user who has the permissions to access files, folders,
968
+ # and metadata in your file system.
969
+ #
970
+ # For information about choosing a user with sufficient permissions, see
971
+ # [Required permissions][1].
972
+ #
973
+ #
986
974
  #
987
- # For information about choosing a user name that ensures sufficient
988
- # permissions to files, folders, and metadata, see
989
- # [user](create-fsx-location.html#FSxWuser).
975
+ # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-fsx-location.html#create-fsx-windows-location-permissions
990
976
  #
991
977
  # @option params [String] :domain
992
978
  # Specifies the name of the Windows domain that the FSx for Windows File
@@ -1321,11 +1307,20 @@ module Aws::DataSync
1321
1307
  # your resources. We recommend creating a name tag for your location.
1322
1308
  #
1323
1309
  # @option params [String, StringIO, File] :server_certificate
1324
- # Specifies a certificate to authenticate with an object storage system
1325
- # that uses a private or self-signed certificate authority (CA). You
1326
- # must specify a Base64-encoded `.pem` file (for example,
1327
- # `file:///home/user/.ssh/storage_sys_certificate.pem`). The certificate
1328
- # can be up to 32768 bytes (before Base64 encoding).
1310
+ # Specifies a file with the certificates that are used to sign the
1311
+ # object storage server's certificate (for example,
1312
+ # `file:///home/user/.ssh/storage_sys_certificate.pem`). The file you
1313
+ # specify must include the following:
1314
+ #
1315
+ # * The certificate of the signing certificate authority (CA)
1316
+ #
1317
+ # * Any intermediate certificates
1318
+ #
1319
+ # * base64 encoding
1320
+ #
1321
+ # * A `.pem` extension
1322
+ #
1323
+ # The file can be up to 32768 bytes (before base64 encoding).
1329
1324
  #
1330
1325
  # To use this parameter, configure `ServerProtocol` to `HTTPS`.
1331
1326
  #
@@ -2537,6 +2532,7 @@ module Aws::DataSync
2537
2532
  # resp.resource_details.net_app_ontapsv_ms[0].nfs_exported_volumes #=> Integer
2538
2533
  # resp.resource_details.net_app_ontapsv_ms[0].recommendation_status #=> String, one of "NONE", "IN_PROGRESS", "COMPLETED", "FAILED"
2539
2534
  # resp.resource_details.net_app_ontapsv_ms[0].total_snapshot_capacity_used #=> Integer
2535
+ # resp.resource_details.net_app_ontapsv_ms[0].lun_count #=> Integer
2540
2536
  # resp.resource_details.net_app_ontap_volumes #=> Array
2541
2537
  # resp.resource_details.net_app_ontap_volumes[0].volume_name #=> String
2542
2538
  # resp.resource_details.net_app_ontap_volumes[0].resource_id #=> String
@@ -2566,6 +2562,7 @@ module Aws::DataSync
2566
2562
  # resp.resource_details.net_app_ontap_volumes[0].recommendations[0].storage_configuration["PtolemyString"] #=> String
2567
2563
  # resp.resource_details.net_app_ontap_volumes[0].recommendations[0].estimated_monthly_storage_cost #=> String
2568
2564
  # resp.resource_details.net_app_ontap_volumes[0].recommendation_status #=> String, one of "NONE", "IN_PROGRESS", "COMPLETED", "FAILED"
2565
+ # resp.resource_details.net_app_ontap_volumes[0].lun_count #=> Integer
2569
2566
  # resp.resource_details.net_app_ontap_clusters #=> Array
2570
2567
  # resp.resource_details.net_app_ontap_clusters[0].cifs_share_count #=> Integer
2571
2568
  # resp.resource_details.net_app_ontap_clusters[0].nfs_exported_volumes #=> Integer
@@ -2591,6 +2588,7 @@ module Aws::DataSync
2591
2588
  # resp.resource_details.net_app_ontap_clusters[0].recommendations[0].storage_configuration["PtolemyString"] #=> String
2592
2589
  # resp.resource_details.net_app_ontap_clusters[0].recommendations[0].estimated_monthly_storage_cost #=> String
2593
2590
  # resp.resource_details.net_app_ontap_clusters[0].recommendation_status #=> String, one of "NONE", "IN_PROGRESS", "COMPLETED", "FAILED"
2591
+ # resp.resource_details.net_app_ontap_clusters[0].lun_count #=> Integer
2594
2592
  # resp.next_token #=> String
2595
2593
  #
2596
2594
  # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeStorageSystemResources AWS API Documentation
@@ -4055,7 +4053,7 @@ module Aws::DataSync
4055
4053
  params: params,
4056
4054
  config: config)
4057
4055
  context[:gem_name] = 'aws-sdk-datasync'
4058
- context[:gem_version] = '1.61.0'
4056
+ context[:gem_version] = '1.62.0'
4059
4057
  Seahorse::Client::Request.new(handlers, context)
4060
4058
  end
4061
4059
 
@@ -908,6 +908,7 @@ module Aws::DataSync
908
908
  NetAppONTAPCluster.add_member(:cluster_block_storage_logical_used, Shapes::ShapeRef.new(shape: NonNegativeLong, location_name: "ClusterBlockStorageLogicalUsed"))
909
909
  NetAppONTAPCluster.add_member(:recommendations, Shapes::ShapeRef.new(shape: Recommendations, location_name: "Recommendations"))
910
910
  NetAppONTAPCluster.add_member(:recommendation_status, Shapes::ShapeRef.new(shape: RecommendationStatus, location_name: "RecommendationStatus"))
911
+ NetAppONTAPCluster.add_member(:lun_count, Shapes::ShapeRef.new(shape: NonNegativeLong, location_name: "LunCount"))
911
912
  NetAppONTAPCluster.struct_class = Types::NetAppONTAPCluster
912
913
 
913
914
  NetAppONTAPClusters.member = Shapes::ShapeRef.new(shape: NetAppONTAPCluster)
@@ -925,6 +926,7 @@ module Aws::DataSync
925
926
  NetAppONTAPSVM.add_member(:nfs_exported_volumes, Shapes::ShapeRef.new(shape: NonNegativeLong, location_name: "NfsExportedVolumes"))
926
927
  NetAppONTAPSVM.add_member(:recommendation_status, Shapes::ShapeRef.new(shape: RecommendationStatus, location_name: "RecommendationStatus"))
927
928
  NetAppONTAPSVM.add_member(:total_snapshot_capacity_used, Shapes::ShapeRef.new(shape: NonNegativeLong, location_name: "TotalSnapshotCapacityUsed"))
929
+ NetAppONTAPSVM.add_member(:lun_count, Shapes::ShapeRef.new(shape: NonNegativeLong, location_name: "LunCount"))
928
930
  NetAppONTAPSVM.struct_class = Types::NetAppONTAPSVM
929
931
 
930
932
  NetAppONTAPSVMs.member = Shapes::ShapeRef.new(shape: NetAppONTAPSVM)
@@ -943,6 +945,7 @@ module Aws::DataSync
943
945
  NetAppONTAPVolume.add_member(:max_p95_performance, Shapes::ShapeRef.new(shape: MaxP95Performance, location_name: "MaxP95Performance"))
944
946
  NetAppONTAPVolume.add_member(:recommendations, Shapes::ShapeRef.new(shape: Recommendations, location_name: "Recommendations"))
945
947
  NetAppONTAPVolume.add_member(:recommendation_status, Shapes::ShapeRef.new(shape: RecommendationStatus, location_name: "RecommendationStatus"))
948
+ NetAppONTAPVolume.add_member(:lun_count, Shapes::ShapeRef.new(shape: NonNegativeLong, location_name: "LunCount"))
946
949
  NetAppONTAPVolume.struct_class = Types::NetAppONTAPVolume
947
950
 
948
951
  NetAppONTAPVolumes.member = Shapes::ShapeRef.new(shape: NetAppONTAPVolume)
@@ -169,71 +169,53 @@ module Aws::DataSync
169
169
  # CreateAgentRequest
170
170
  #
171
171
  # @!attribute [rw] activation_key
172
- # Your agent activation key. You can get the activation key either by
173
- # sending an HTTP GET request with redirects that enable you to get
174
- # the agent IP address (port 80). Alternatively, you can get it from
175
- # the DataSync console.
172
+ # Specifies your DataSync agent's activation key. If you don't have
173
+ # an activation key, see [Activate your agent][1].
176
174
  #
177
- # The redirect URL returned in the response provides you the
178
- # activation key for your agent in the query string parameter
179
- # `activationKey`. It might also include other activation-related
180
- # parameters; however, these are merely defaults. The arguments you
181
- # pass to this API call determine the actual configuration of your
182
- # agent.
183
175
  #
184
- # For more information, see Activating an Agent in the *DataSync User
185
- # Guide.*
176
+ #
177
+ # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/activate-agent.html
186
178
  # @return [String]
187
179
  #
188
180
  # @!attribute [rw] agent_name
189
- # The name you configured for your agent. This value is a text
190
- # reference that is used to identify the agent in the console.
181
+ # Specifies a name for your agent. You can see this name in the
182
+ # DataSync console.
191
183
  # @return [String]
192
184
  #
193
185
  # @!attribute [rw] tags
194
- # The key-value pair that represents the tag that you want to
195
- # associate with the agent. The value can be an empty string. This
196
- # value helps you manage, filter, and search for your agents.
197
- #
198
- # <note markdown="1"> Valid characters for key and value are letters, spaces, and numbers
199
- # representable in UTF-8 format, and the following special characters:
200
- # + - = . \_ : / @.
201
- #
202
- # </note>
186
+ # Specifies labels that help you categorize, filter, and search for
187
+ # your Amazon Web Services resources. We recommend creating at least
188
+ # one tag for your agent.
203
189
  # @return [Array<Types::TagListEntry>]
204
190
  #
205
191
  # @!attribute [rw] vpc_endpoint_id
206
- # The ID of the VPC (virtual private cloud) endpoint that the agent
207
- # has access to. This is the client-side VPC endpoint, also called a
208
- # PrivateLink. If you don't have a PrivateLink VPC endpoint, see
209
- # [Creating a VPC Endpoint Service Configuration][1] in the Amazon VPC
210
- # User Guide.
192
+ # Specifies the ID of the VPC endpoint that you want your agent to
193
+ # connect to. For example, a VPC endpoint ID looks like
194
+ # `vpce-01234d5aff67890e1`.
211
195
  #
212
- # VPC endpoint ID looks like this: `vpce-01234d5aff67890e1`.
196
+ # The VPC endpoint you use must include the DataSync service name (for
197
+ # example, `com.amazonaws.us-east-2.datasync`).
198
+ # @return [String]
213
199
  #
200
+ # @!attribute [rw] subnet_arns
201
+ # Specifies the ARN of the subnet where you want to run your DataSync
202
+ # task when using a VPC endpoint. This is the subnet where DataSync
203
+ # creates and manages the [network interfaces][1] for your transfer.
214
204
  #
215
205
  #
216
- # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/endpoint-service.html#create-endpoint-service
217
- # @return [String]
218
206
  #
219
- # @!attribute [rw] subnet_arns
220
- # The Amazon Resource Names (ARNs) of the subnets in which DataSync
221
- # will create elastic network interfaces for each data transfer task.
222
- # The agent that runs a task must be private. When you start a task
223
- # that is associated with an agent created in a VPC, or one that has
224
- # access to an IP address in a VPC, then the task is also private. In
225
- # this case, DataSync creates four network interfaces for each task in
226
- # your subnet. For a data transfer to work, the agent must be able to
227
- # route to all these four network interfaces.
207
+ # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/datasync-network.html#required-network-interfaces
228
208
  # @return [Array<String>]
229
209
  #
230
210
  # @!attribute [rw] security_group_arns
231
- # The ARNs of the security groups used to protect your data transfer
232
- # task subnets. See [SecurityGroupArns][1].
211
+ # Specifies the Amazon Resource Name (ARN) of the security group that
212
+ # protects your task's [network interfaces][1] when [using a virtual
213
+ # private cloud (VPC) endpoint][2].
233
214
  #
234
215
  #
235
216
  #
236
- # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/API_Ec2Config.html#DataSync-Type-Ec2Config-SecurityGroupArns
217
+ # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/datasync-network.html#required-network-interfaces
218
+ # [2]: https://docs.aws.amazon.com/datasync/latest/userguide/choose-service-endpoint.html#choose-service-endpoint-vpc
237
219
  # @return [Array<String>]
238
220
  #
239
221
  # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/CreateAgentRequest AWS API Documentation
@@ -252,9 +234,13 @@ module Aws::DataSync
252
234
  # CreateAgentResponse
253
235
  #
254
236
  # @!attribute [rw] agent_arn
255
- # The Amazon Resource Name (ARN) of the agent. Use the `ListAgents`
256
- # operation to return a list of agents for your account and Amazon Web
257
- # Services Region.
237
+ # The ARN of the agent that you just activated. Use the
238
+ # [ListAgents][1] operation to return a list of agents in your Amazon
239
+ # Web Services account and Amazon Web Services Region.
240
+ #
241
+ #
242
+ #
243
+ # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/API_ListAgents.html
258
244
  # @return [String]
259
245
  #
260
246
  # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/CreateAgentResponse AWS API Documentation
@@ -551,12 +537,15 @@ module Aws::DataSync
551
537
  # @return [Array<Types::TagListEntry>]
552
538
  #
553
539
  # @!attribute [rw] user
554
- # Specifies the user who has the permissions to access files and
555
- # folders in the file system.
540
+ # Specifies the user who has the permissions to access files, folders,
541
+ # and metadata in your file system.
556
542
  #
557
- # For information about choosing a user name that ensures sufficient
558
- # permissions to files, folders, and metadata, see
559
- # [user](create-fsx-location.html#FSxWuser).
543
+ # For information about choosing a user with sufficient permissions,
544
+ # see [Required permissions][1].
545
+ #
546
+ #
547
+ #
548
+ # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-fsx-location.html#create-fsx-windows-location-permissions
560
549
  # @return [String]
561
550
  #
562
551
  # @!attribute [rw] domain
@@ -883,11 +872,20 @@ module Aws::DataSync
883
872
  # @return [Array<Types::TagListEntry>]
884
873
  #
885
874
  # @!attribute [rw] server_certificate
886
- # Specifies a certificate to authenticate with an object storage
887
- # system that uses a private or self-signed certificate authority
888
- # (CA). You must specify a Base64-encoded `.pem` file (for example,
889
- # `file:///home/user/.ssh/storage_sys_certificate.pem`). The
890
- # certificate can be up to 32768 bytes (before Base64 encoding).
875
+ # Specifies a file with the certificates that are used to sign the
876
+ # object storage server's certificate (for example,
877
+ # `file:///home/user/.ssh/storage_sys_certificate.pem`). The file you
878
+ # specify must include the following:
879
+ #
880
+ # * The certificate of the signing certificate authority (CA)
881
+ #
882
+ # * Any intermediate certificates
883
+ #
884
+ # * base64 encoding
885
+ #
886
+ # * A `.pem` extension
887
+ #
888
+ # The file can be up to 32768 bytes (before base64 encoding).
891
889
  #
892
890
  # To use this parameter, configure `ServerProtocol` to `HTTPS`.
893
891
  # @return [String]
@@ -3456,6 +3454,10 @@ module Aws::DataSync
3456
3454
  # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/discovery-job-statuses.html#recommendation-statuses-table
3457
3455
  # @return [String]
3458
3456
  #
3457
+ # @!attribute [rw] lun_count
3458
+ # The number of LUNs (logical unit numbers) in the cluster.
3459
+ # @return [Integer]
3460
+ #
3459
3461
  # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/NetAppONTAPCluster AWS API Documentation
3460
3462
  #
3461
3463
  class NetAppONTAPCluster < Struct.new(
@@ -3468,7 +3470,8 @@ module Aws::DataSync
3468
3470
  :cluster_block_storage_used,
3469
3471
  :cluster_block_storage_logical_used,
3470
3472
  :recommendations,
3471
- :recommendation_status)
3473
+ :recommendation_status,
3474
+ :lun_count)
3472
3475
  SENSITIVE = []
3473
3476
  include Aws::Structure
3474
3477
  end
@@ -3543,6 +3546,10 @@ module Aws::DataSync
3543
3546
  # The amount of storage in the SVM that's being used for snapshots.
3544
3547
  # @return [Integer]
3545
3548
  #
3549
+ # @!attribute [rw] lun_count
3550
+ # The number of LUNs (logical unit numbers) in the SVM.
3551
+ # @return [Integer]
3552
+ #
3546
3553
  # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/NetAppONTAPSVM AWS API Documentation
3547
3554
  #
3548
3555
  class NetAppONTAPSVM < Struct.new(
@@ -3558,7 +3565,8 @@ module Aws::DataSync
3558
3565
  :recommendations,
3559
3566
  :nfs_exported_volumes,
3560
3567
  :recommendation_status,
3561
- :total_snapshot_capacity_used)
3568
+ :total_snapshot_capacity_used,
3569
+ :lun_count)
3562
3570
  SENSITIVE = []
3563
3571
  include Aws::Structure
3564
3572
  end
@@ -3639,6 +3647,10 @@ module Aws::DataSync
3639
3647
  # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/discovery-job-statuses.html#recommendation-statuses-table
3640
3648
  # @return [String]
3641
3649
  #
3650
+ # @!attribute [rw] lun_count
3651
+ # The number of LUNs (logical unit numbers) in the volume.
3652
+ # @return [Integer]
3653
+ #
3642
3654
  # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/NetAppONTAPVolume AWS API Documentation
3643
3655
  #
3644
3656
  class NetAppONTAPVolume < Struct.new(
@@ -3655,7 +3667,8 @@ module Aws::DataSync
3655
3667
  :snapshot_capacity_used,
3656
3668
  :max_p95_performance,
3657
3669
  :recommendations,
3658
- :recommendation_status)
3670
+ :recommendation_status,
3671
+ :lun_count)
3659
3672
  SENSITIVE = []
3660
3673
  include Aws::Structure
3661
3674
  end
@@ -3926,16 +3939,13 @@ module Aws::DataSync
3926
3939
  # @return [Integer]
3927
3940
  #
3928
3941
  # @!attribute [rw] task_queueing
3929
- # Specifies whether tasks should be queued before executing the tasks.
3930
- # The default is `ENABLED`, which means the tasks will be queued.
3931
- #
3932
- # If you use the same agent to run multiple tasks, you can enable the
3933
- # tasks to run in series. For more information, see [Queueing task
3934
- # executions][1].
3942
+ # Specifies whether your transfer tasks should be put into a queue
3943
+ # during certain scenarios when [running multiple tasks][1]. This is
3944
+ # `ENABLED` by default.
3935
3945
  #
3936
3946
  #
3937
3947
  #
3938
- # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/run-task.html#queue-task-execution
3948
+ # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/run-task.html#running-multiple-tasks
3939
3949
  # @return [String]
3940
3950
  #
3941
3951
  # @!attribute [rw] log_level
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-datasync/customizations'
52
52
  # @!group service
53
53
  module Aws::DataSync
54
54
 
55
- GEM_VERSION = '1.61.0'
55
+ GEM_VERSION = '1.62.0'
56
56
 
57
57
  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.61.0
4
+ version: 1.62.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: 2023-07-11 00:00:00.000000000 Z
11
+ date: 2023-07-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core