aws-sdk-datasync 1.48.0 → 1.49.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datasync/client.rb +49 -45
- data/lib/aws-sdk-datasync/types.rb +85 -43
- data/lib/aws-sdk-datasync.rb +1 -1
- metadata +2 -2
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: b982cb9b2c148223fc8280b38de78c603c532efab22fe1364f05edd5f06fac6e
         | 
| 4 | 
            +
              data.tar.gz: 3b9bd532bb4675bd78e528a514a6e521fbc7ebaa3faa7c2f948ef5f430dafcfe
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 20246f3af604dd27eb182fc450d54b47daa43568a43fbcbe78c685d2fa43ff1735af4043028cba5d56b0483b65c353dbcb1f0223e1d6709c489ea11edc96927f
         | 
| 7 | 
            +
              data.tar.gz: 5d0e1a59e970026acdc89bc6ea7bc3175a7c6475f88041f4f3f27c315a919918f719e821f681f4e349dae78cf02f004f3716da582d291e3892cf5134bf5435a5
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -1,6 +1,11 @@ | |
| 1 1 | 
             
            Unreleased Changes
         | 
| 2 2 | 
             
            ------------------
         | 
| 3 3 |  | 
| 4 | 
            +
            1.49.0 (2022-07-15)
         | 
| 5 | 
            +
            ------------------
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            * Feature - Documentation updates for AWS DataSync regarding configuring Amazon FSx for ONTAP location security groups and SMB user permissions.
         | 
| 8 | 
            +
             | 
| 4 9 | 
             
            1.48.0 (2022-06-28)
         | 
| 5 10 | 
             
            ------------------
         | 
| 6 11 |  | 
    
        data/VERSION
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
            1. | 
| 1 | 
            +
            1.49.0
         | 
| @@ -658,17 +658,18 @@ module Aws::DataSync | |
| 658 658 | 
             
                #   Amazon FSx file system.
         | 
| 659 659 | 
             
                #
         | 
| 660 660 | 
             
                # @option params [required, Array<String>] :security_group_arns
         | 
| 661 | 
            -
                #   Specifies the security groups that  | 
| 662 | 
            -
                #    | 
| 663 | 
            -
                #   outbound traffic on the following ports (depending on the protocol
         | 
| 664 | 
            -
                #   that you're using):
         | 
| 661 | 
            +
                #   Specifies the Amazon EC2 security groups that provide access to your
         | 
| 662 | 
            +
                #   file system's preferred subnet.
         | 
| 665 663 | 
             
                #
         | 
| 666 | 
            -
                #    | 
| 664 | 
            +
                #   The security groups must allow outbound traffic on the following ports
         | 
| 665 | 
            +
                #   (depending on the protocol you use):
         | 
| 666 | 
            +
                #
         | 
| 667 | 
            +
                #   * **Network File System (NFS)**\: TCP ports 111, 635, and 2049
         | 
| 667 668 | 
             
                #
         | 
| 668 669 | 
             
                #   * **Server Message Block (SMB)**\: TCP port 445
         | 
| 669 670 | 
             
                #
         | 
| 670 671 | 
             
                #   Your file system's security groups must also allow inbound traffic on
         | 
| 671 | 
            -
                #   the same  | 
| 672 | 
            +
                #   the same ports.
         | 
| 672 673 | 
             
                #
         | 
| 673 674 | 
             
                # @option params [required, String] :storage_virtual_machine_arn
         | 
| 674 675 | 
             
                #   Specifies the ARN of the storage virtual machine (SVM) on your file
         | 
| @@ -812,40 +813,49 @@ module Aws::DataSync | |
| 812 813 | 
             
                # system.
         | 
| 813 814 | 
             
                #
         | 
| 814 815 | 
             
                # @option params [String] :subdirectory
         | 
| 815 | 
            -
                #    | 
| 816 | 
            -
                #    | 
| 817 | 
            -
                #    | 
| 818 | 
            -
                #   data to the FSx for Windows File Server destination.
         | 
| 816 | 
            +
                #   Specifies a mount path for your file system using forward slashes.
         | 
| 817 | 
            +
                #   This is where DataSync reads or writes data (depending on if this is a
         | 
| 818 | 
            +
                #   source or destination location).
         | 
| 819 819 | 
             
                #
         | 
| 820 820 | 
             
                # @option params [required, String] :fsx_filesystem_arn
         | 
| 821 | 
            -
                #    | 
| 822 | 
            -
                #   file system.
         | 
| 821 | 
            +
                #   Specifies the Amazon Resource Name (ARN) for the FSx for Windows File
         | 
| 822 | 
            +
                #   Server file system.
         | 
| 823 823 | 
             
                #
         | 
| 824 824 | 
             
                # @option params [required, Array<String>] :security_group_arns
         | 
| 825 | 
            -
                #    | 
| 826 | 
            -
                #    | 
| 825 | 
            +
                #   Specifies the ARNs of the security groups that provide access to your
         | 
| 826 | 
            +
                #   file system's preferred subnet.
         | 
| 827 | 
            +
                #
         | 
| 828 | 
            +
                #   <note markdown="1"> If you choose a security group that doesn't allow connections from
         | 
| 829 | 
            +
                #   within itself, do one of the following:
         | 
| 830 | 
            +
                #
         | 
| 831 | 
            +
                #    * Configure the security group to allow it to communicate within
         | 
| 832 | 
            +
                #     itself.
         | 
| 833 | 
            +
                #
         | 
| 834 | 
            +
                #   * Choose a different security group that can communicate with the
         | 
| 835 | 
            +
                #     mount target's security group.
         | 
| 836 | 
            +
                #
         | 
| 837 | 
            +
                #    </note>
         | 
| 827 838 | 
             
                #
         | 
| 828 839 | 
             
                # @option params [Array<Types::TagListEntry>] :tags
         | 
| 829 | 
            -
                #    | 
| 830 | 
            -
                #    | 
| 831 | 
            -
                #    | 
| 832 | 
            -
                #   create a name tag for your location.
         | 
| 840 | 
            +
                #   Specifies labels that help you categorize, filter, and search for your
         | 
| 841 | 
            +
                #   Amazon Web Services resources. We recommend creating at least a name
         | 
| 842 | 
            +
                #   tag for your location.
         | 
| 833 843 | 
             
                #
         | 
| 834 844 | 
             
                # @option params [required, String] :user
         | 
| 835 | 
            -
                #    | 
| 836 | 
            -
                #    | 
| 845 | 
            +
                #   Specifies the user who has the permissions to access files and folders
         | 
| 846 | 
            +
                #   in the file system.
         | 
| 837 847 | 
             
                #
         | 
| 838 848 | 
             
                #   For information about choosing a user name that ensures sufficient
         | 
| 839 849 | 
             
                #   permissions to files, folders, and metadata, see
         | 
| 840 850 | 
             
                #   [user](create-fsx-location.html#FSxWuser).
         | 
| 841 851 | 
             
                #
         | 
| 842 852 | 
             
                # @option params [String] :domain
         | 
| 843 | 
            -
                #    | 
| 844 | 
            -
                #   belongs to.
         | 
| 853 | 
            +
                #   Specifies the name of the Windows domain that the FSx for Windows File
         | 
| 854 | 
            +
                #   Server belongs to.
         | 
| 845 855 | 
             
                #
         | 
| 846 856 | 
             
                # @option params [required, String] :password
         | 
| 847 | 
            -
                #    | 
| 848 | 
            -
                #   folders in the  | 
| 857 | 
            +
                #   Specifies the password of the user who has the permissions to access
         | 
| 858 | 
            +
                #   files and folders in the file system.
         | 
| 849 859 | 
             
                #
         | 
| 850 860 | 
             
                # @return [Types::CreateLocationFsxWindowsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         | 
| 851 861 | 
             
                #
         | 
| @@ -1399,33 +1409,27 @@ module Aws::DataSync | |
| 1399 1409 | 
             
                  req.send_request(options)
         | 
| 1400 1410 | 
             
                end
         | 
| 1401 1411 |  | 
| 1402 | 
            -
                #  | 
| 1412 | 
            +
                # Configures a task, which defines where and how DataSync transfers your
         | 
| 1413 | 
            +
                # data.
         | 
| 1403 1414 | 
             
                #
         | 
| 1404 | 
            -
                # A task includes a source location  | 
| 1405 | 
            -
                #  | 
| 1406 | 
            -
                #  | 
| 1407 | 
            -
                # The configuration specifies options such as task scheduling, bandwidth
         | 
| 1408 | 
            -
                # limits, etc. A task is the complete definition of a data transfer.
         | 
| 1415 | 
            +
                # A task includes a source location, a destination location, and the
         | 
| 1416 | 
            +
                # preferences for how and when you want to transfer your data (such as
         | 
| 1417 | 
            +
                # bandwidth limits, scheduling, among other options).
         | 
| 1409 1418 | 
             
                #
         | 
| 1410 1419 | 
             
                # When you create a task that transfers data between Amazon Web Services
         | 
| 1411 | 
            -
                # services in different Amazon Web Services Regions, one of  | 
| 1412 | 
            -
                # locations  | 
| 1413 | 
            -
                # | 
| 1414 | 
            -
                #  | 
| 1420 | 
            +
                # services in different Amazon Web Services Regions, one of your
         | 
| 1421 | 
            +
                # locations must reside in the Region where you're using DataSync.
         | 
| 1422 | 
            +
                #
         | 
| 1423 | 
            +
                # For more information, see the following topics:
         | 
| 1415 1424 | 
             
                #
         | 
| 1416 | 
            -
                #  | 
| 1417 | 
            -
                # except for China, or between Amazon Web Services GovCloud (US)
         | 
| 1418 | 
            -
                # Regions.
         | 
| 1425 | 
            +
                # * [Working with DataSync locations][1]
         | 
| 1419 1426 | 
             
                #
         | 
| 1420 | 
            -
                #  | 
| 1421 | 
            -
                # Services Regions, you pay for data transfer between Regions. This is
         | 
| 1422 | 
            -
                # billed as data transfer OUT from your source Region to your
         | 
| 1423 | 
            -
                # destination Region. For more information, see [Data Transfer
         | 
| 1424 | 
            -
                # pricing][1].
         | 
| 1427 | 
            +
                # * [Configure DataSync task settings][2]
         | 
| 1425 1428 | 
             
                #
         | 
| 1426 1429 | 
             
                #
         | 
| 1427 1430 | 
             
                #
         | 
| 1428 | 
            -
                # [1]:  | 
| 1431 | 
            +
                # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/working-with-locations.html
         | 
| 1432 | 
            +
                # [2]: https://docs.aws.amazon.com/datasync/latest/userguide/create-task.html
         | 
| 1429 1433 | 
             
                #
         | 
| 1430 1434 | 
             
                # @option params [required, String] :source_location_arn
         | 
| 1431 1435 | 
             
                #   The Amazon Resource Name (ARN) of the source location for the task.
         | 
| @@ -2446,7 +2450,7 @@ module Aws::DataSync | |
| 2446 2450 | 
             
                  req.send_request(options)
         | 
| 2447 2451 | 
             
                end
         | 
| 2448 2452 |  | 
| 2449 | 
            -
                # Returns a list of  | 
| 2453 | 
            +
                # Returns a list of the DataSync tasks you created.
         | 
| 2450 2454 | 
             
                #
         | 
| 2451 2455 | 
             
                # @option params [Integer] :max_results
         | 
| 2452 2456 | 
             
                #   The maximum number of tasks to return.
         | 
| @@ -3177,7 +3181,7 @@ module Aws::DataSync | |
| 3177 3181 | 
             
                    params: params,
         | 
| 3178 3182 | 
             
                    config: config)
         | 
| 3179 3183 | 
             
                  context[:gem_name] = 'aws-sdk-datasync'
         | 
| 3180 | 
            -
                  context[:gem_version] = '1. | 
| 3184 | 
            +
                  context[:gem_version] = '1.49.0'
         | 
| 3181 3185 | 
             
                  Seahorse::Client::Request.new(handlers, context)
         | 
| 3182 3186 | 
             
                end
         | 
| 3183 3187 |  | 
| @@ -378,17 +378,18 @@ module Aws::DataSync | |
| 378 378 | 
             
                #   @return [Types::FsxProtocol]
         | 
| 379 379 | 
             
                #
         | 
| 380 380 | 
             
                # @!attribute [rw] security_group_arns
         | 
| 381 | 
            -
                #   Specifies the security groups that  | 
| 382 | 
            -
                #    | 
| 383 | 
            -
                #   allow outbound traffic on the following ports (depending on the
         | 
| 384 | 
            -
                #   protocol that you're using):
         | 
| 381 | 
            +
                #   Specifies the Amazon EC2 security groups that provide access to your
         | 
| 382 | 
            +
                #   file system's preferred subnet.
         | 
| 385 383 | 
             
                #
         | 
| 386 | 
            -
                #    | 
| 384 | 
            +
                #   The security groups must allow outbound traffic on the following
         | 
| 385 | 
            +
                #   ports (depending on the protocol you use):
         | 
| 386 | 
            +
                #
         | 
| 387 | 
            +
                #   * **Network File System (NFS)**\: TCP ports 111, 635, and 2049
         | 
| 387 388 | 
             
                #
         | 
| 388 389 | 
             
                #   * **Server Message Block (SMB)**\: TCP port 445
         | 
| 389 390 | 
             
                #
         | 
| 390 391 | 
             
                #   Your file system's security groups must also allow inbound traffic
         | 
| 391 | 
            -
                #   on the same  | 
| 392 | 
            +
                #   on the same ports.
         | 
| 392 393 | 
             
                #   @return [Array<String>]
         | 
| 393 394 | 
             
                #
         | 
| 394 395 | 
             
                # @!attribute [rw] storage_virtual_machine_arn
         | 
| @@ -542,32 +543,41 @@ module Aws::DataSync | |
| 542 543 | 
             
                #       }
         | 
| 543 544 | 
             
                #
         | 
| 544 545 | 
             
                # @!attribute [rw] subdirectory
         | 
| 545 | 
            -
                #    | 
| 546 | 
            -
                #    | 
| 547 | 
            -
                #    | 
| 548 | 
            -
                #   data to the FSx for Windows File Server destination.
         | 
| 546 | 
            +
                #   Specifies a mount path for your file system using forward slashes.
         | 
| 547 | 
            +
                #   This is where DataSync reads or writes data (depending on if this is
         | 
| 548 | 
            +
                #   a source or destination location).
         | 
| 549 549 | 
             
                #   @return [String]
         | 
| 550 550 | 
             
                #
         | 
| 551 551 | 
             
                # @!attribute [rw] fsx_filesystem_arn
         | 
| 552 | 
            -
                #    | 
| 553 | 
            -
                #   file system.
         | 
| 552 | 
            +
                #   Specifies the Amazon Resource Name (ARN) for the FSx for Windows
         | 
| 553 | 
            +
                #   File Server file system.
         | 
| 554 554 | 
             
                #   @return [String]
         | 
| 555 555 | 
             
                #
         | 
| 556 556 | 
             
                # @!attribute [rw] security_group_arns
         | 
| 557 | 
            -
                #    | 
| 558 | 
            -
                #    | 
| 557 | 
            +
                #   Specifies the ARNs of the security groups that provide access to
         | 
| 558 | 
            +
                #   your file system's preferred subnet.
         | 
| 559 | 
            +
                #
         | 
| 560 | 
            +
                #   <note markdown="1"> If you choose a security group that doesn't allow connections from
         | 
| 561 | 
            +
                #   within itself, do one of the following:
         | 
| 562 | 
            +
                #
         | 
| 563 | 
            +
                #    * Configure the security group to allow it to communicate within
         | 
| 564 | 
            +
                #     itself.
         | 
| 565 | 
            +
                #
         | 
| 566 | 
            +
                #   * Choose a different security group that can communicate with the
         | 
| 567 | 
            +
                #     mount target's security group.
         | 
| 568 | 
            +
                #
         | 
| 569 | 
            +
                #    </note>
         | 
| 559 570 | 
             
                #   @return [Array<String>]
         | 
| 560 571 | 
             
                #
         | 
| 561 572 | 
             
                # @!attribute [rw] tags
         | 
| 562 | 
            -
                #    | 
| 563 | 
            -
                #    | 
| 564 | 
            -
                #    | 
| 565 | 
            -
                #   create a name tag for your location.
         | 
| 573 | 
            +
                #   Specifies labels that help you categorize, filter, and search for
         | 
| 574 | 
            +
                #   your Amazon Web Services resources. We recommend creating at least a
         | 
| 575 | 
            +
                #   name tag for your location.
         | 
| 566 576 | 
             
                #   @return [Array<Types::TagListEntry>]
         | 
| 567 577 | 
             
                #
         | 
| 568 578 | 
             
                # @!attribute [rw] user
         | 
| 569 | 
            -
                #    | 
| 570 | 
            -
                #    | 
| 579 | 
            +
                #   Specifies the user who has the permissions to access files and
         | 
| 580 | 
            +
                #   folders in the file system.
         | 
| 571 581 | 
             
                #
         | 
| 572 582 | 
             
                #   For information about choosing a user name that ensures sufficient
         | 
| 573 583 | 
             
                #   permissions to files, folders, and metadata, see
         | 
| @@ -575,13 +585,13 @@ module Aws::DataSync | |
| 575 585 | 
             
                #   @return [String]
         | 
| 576 586 | 
             
                #
         | 
| 577 587 | 
             
                # @!attribute [rw] domain
         | 
| 578 | 
            -
                #    | 
| 579 | 
            -
                #   belongs to.
         | 
| 588 | 
            +
                #   Specifies the name of the Windows domain that the FSx for Windows
         | 
| 589 | 
            +
                #   File Server belongs to.
         | 
| 580 590 | 
             
                #   @return [String]
         | 
| 581 591 | 
             
                #
         | 
| 582 592 | 
             
                # @!attribute [rw] password
         | 
| 583 | 
            -
                #    | 
| 584 | 
            -
                #   folders in the  | 
| 593 | 
            +
                #   Specifies the password of the user who has the permissions to access
         | 
| 594 | 
            +
                #   files and folders in the file system.
         | 
| 585 595 | 
             
                #   @return [String]
         | 
| 586 596 | 
             
                #
         | 
| 587 597 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/CreateLocationFsxWindowsRequest AWS API Documentation
         | 
| @@ -599,8 +609,8 @@ module Aws::DataSync | |
| 599 609 | 
             
                end
         | 
| 600 610 |  | 
| 601 611 | 
             
                # @!attribute [rw] location_arn
         | 
| 602 | 
            -
                #   The  | 
| 603 | 
            -
                #    | 
| 612 | 
            +
                #   The ARN of the FSx for Windows File Server file system location you
         | 
| 613 | 
            +
                #   created.
         | 
| 604 614 | 
             
                #   @return [String]
         | 
| 605 615 | 
             
                #
         | 
| 606 616 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/CreateLocationFsxWindowsResponse AWS API Documentation
         | 
| @@ -2660,7 +2670,37 @@ module Aws::DataSync | |
| 2660 2670 | 
             
                #   @return [String]
         | 
| 2661 2671 | 
             
                #
         | 
| 2662 2672 | 
             
                # @!attribute [rw] user
         | 
| 2663 | 
            -
                #   Specifies a user  | 
| 2673 | 
            +
                #   Specifies a user name that can mount the location and access the
         | 
| 2674 | 
            +
                #   files, folders, and metadata that you need in the SVM.
         | 
| 2675 | 
            +
                #
         | 
| 2676 | 
            +
                #   If you provide a user in your Active Directory, note the following:
         | 
| 2677 | 
            +
                #
         | 
| 2678 | 
            +
                #   * If you're using Directory Service for Microsoft Active Directory,
         | 
| 2679 | 
            +
                #     the user must be a member of the Amazon Web Services Delegated FSx
         | 
| 2680 | 
            +
                #     Administrators group.
         | 
| 2681 | 
            +
                #
         | 
| 2682 | 
            +
                #   * If you're using a self-managed Active Directory, the user must be
         | 
| 2683 | 
            +
                #     a member of either the Domain Admins group or a custom group that
         | 
| 2684 | 
            +
                #     you specified for file system administration when you created your
         | 
| 2685 | 
            +
                #     file system.
         | 
| 2686 | 
            +
                #
         | 
| 2687 | 
            +
                #   Make sure that the user has the permissions it needs to copy the
         | 
| 2688 | 
            +
                #   data you want:
         | 
| 2689 | 
            +
                #
         | 
| 2690 | 
            +
                #   * `SE_TCB_NAME`\: Required to set object ownership and file
         | 
| 2691 | 
            +
                #     metadata. With this privilege, you also can copy NTFS
         | 
| 2692 | 
            +
                #     discretionary access lists (DACLs).
         | 
| 2693 | 
            +
                #
         | 
| 2694 | 
            +
                #   * `SE_SECURITY_NAME`\: May be needed to copy NTFS system access
         | 
| 2695 | 
            +
                #     control lists (SACLs). This operation specifically requires the
         | 
| 2696 | 
            +
                #     Windows privilege, which is granted to members of the Domain
         | 
| 2697 | 
            +
                #     Admins group. If you configure your task to copy SACLs, make sure
         | 
| 2698 | 
            +
                #     that the user has the required privileges. For information about
         | 
| 2699 | 
            +
                #     copying SACLs, see [Ownership and permissions-related options][1].
         | 
| 2700 | 
            +
                #
         | 
| 2701 | 
            +
                #
         | 
| 2702 | 
            +
                #
         | 
| 2703 | 
            +
                #   [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-task.html#configure-ownership-and-permissions
         | 
| 2664 2704 | 
             
                #   @return [String]
         | 
| 2665 2705 | 
             
                #
         | 
| 2666 2706 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/FsxProtocolSmb AWS API Documentation
         | 
| @@ -3029,10 +3069,16 @@ module Aws::DataSync | |
| 3029 3069 | 
             
                  include Aws::Structure
         | 
| 3030 3070 | 
             
                end
         | 
| 3031 3071 |  | 
| 3032 | 
            -
                #  | 
| 3033 | 
            -
                #  | 
| 3034 | 
            -
                #  | 
| 3035 | 
            -
                # S3 | 
| 3072 | 
            +
                # Narrow down the list of resources returned by `ListLocations`. For
         | 
| 3073 | 
            +
                # example, to see all your Amazon S3 locations, create a filter using
         | 
| 3074 | 
            +
                # `"Name": "LocationType"`, `"Operator": "Equals"`, and `"Values":
         | 
| 3075 | 
            +
                # "S3"`.
         | 
| 3076 | 
            +
                #
         | 
| 3077 | 
            +
                # For more information, see [filtering resources][1].
         | 
| 3078 | 
            +
                #
         | 
| 3079 | 
            +
                #
         | 
| 3080 | 
            +
                #
         | 
| 3081 | 
            +
                # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/query-resources.html
         | 
| 3036 3082 | 
             
                #
         | 
| 3037 3083 | 
             
                # @note When making an API call, you may pass LocationFilter
         | 
| 3038 3084 | 
             
                #   data as a hash:
         | 
| @@ -3056,12 +3102,7 @@ module Aws::DataSync | |
| 3056 3102 | 
             
                #
         | 
| 3057 3103 | 
             
                # @!attribute [rw] operator
         | 
| 3058 3104 | 
             
                #   The operator that is used to compare filter values (for example,
         | 
| 3059 | 
            -
                #   `Equals` or `Contains`). | 
| 3060 | 
            -
                #   [API filters for ListTasks and ListLocations][1].
         | 
| 3061 | 
            -
                #
         | 
| 3062 | 
            -
                #
         | 
| 3063 | 
            -
                #
         | 
| 3064 | 
            -
                #   [1]: https://docs.aws.amazon.com/datasync/latest/userguide/query-resources.html
         | 
| 3105 | 
            +
                #   `Equals` or `Contains`).
         | 
| 3065 3106 | 
             
                #   @return [String]
         | 
| 3066 3107 | 
             
                #
         | 
| 3067 3108 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/LocationFilter AWS API Documentation
         | 
| @@ -3929,6 +3970,12 @@ module Aws::DataSync | |
| 3929 3970 | 
             
                # location, you can use `ListTasks` with filter name `LocationId` and
         | 
| 3930 3971 | 
             
                # `Operator Equals` with the ARN for the location.
         | 
| 3931 3972 | 
             
                #
         | 
| 3973 | 
            +
                # For more information, see [filtering DataSync resources][1].
         | 
| 3974 | 
            +
                #
         | 
| 3975 | 
            +
                #
         | 
| 3976 | 
            +
                #
         | 
| 3977 | 
            +
                # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/query-resources.html
         | 
| 3978 | 
            +
                #
         | 
| 3932 3979 | 
             
                # @note When making an API call, you may pass TaskFilter
         | 
| 3933 3980 | 
             
                #   data as a hash:
         | 
| 3934 3981 | 
             
                #
         | 
| @@ -3951,12 +3998,7 @@ module Aws::DataSync | |
| 3951 3998 | 
             
                #
         | 
| 3952 3999 | 
             
                # @!attribute [rw] operator
         | 
| 3953 4000 | 
             
                #   The operator that is used to compare filter values (for example,
         | 
| 3954 | 
            -
                #   `Equals` or `Contains`). | 
| 3955 | 
            -
                #   [API filters for ListTasks and ListLocations][1].
         | 
| 3956 | 
            -
                #
         | 
| 3957 | 
            -
                #
         | 
| 3958 | 
            -
                #
         | 
| 3959 | 
            -
                #   [1]: https://docs.aws.amazon.com/datasync/latest/userguide/query-resources.html
         | 
| 4001 | 
            +
                #   `Equals` or `Contains`).
         | 
| 3960 4002 | 
             
                #   @return [String]
         | 
| 3961 4003 | 
             
                #
         | 
| 3962 4004 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/TaskFilter AWS API Documentation
         | 
    
        data/lib/aws-sdk-datasync.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: aws-sdk-datasync
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 1. | 
| 4 | 
            +
              version: 1.49.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: 2022- | 
| 11 | 
            +
            date: 2022-07-15 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: aws-sdk-core
         |