aws-sdk-outposts 1.29.0 → 1.32.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-outposts/client.rb +188 -12
- data/lib/aws-sdk-outposts/client_api.rb +69 -0
- data/lib/aws-sdk-outposts/types.rb +228 -1
- data/lib/aws-sdk-outposts.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: 20a9e788e1f01305bd1765a2df326a9af54697b09b798618980b0baeeea0efcb
         | 
| 4 | 
            +
              data.tar.gz: 9ffca8ebc41cb5d413e5345f64f2cb15798c4c6e1f12965e89c5af2b8d1d48db
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 879baa19cf1120a872147941986035b77fd349c982ec3a705674f116b21850f9e077684a7acacae9b0b68411985fdf1800a7390355b85525be4360e8e09992ab
         | 
| 7 | 
            +
              data.tar.gz: e80f7717bc38732f66152d4febed8fb9aee63ca007427920273b97efb6f5b04ad583e0db7e0efd3cffb2371671a0e407e8c842b9d8dfed0875f859a307aac0f8
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -1,6 +1,21 @@ | |
| 1 1 | 
             
            Unreleased Changes
         | 
| 2 2 | 
             
            ------------------
         | 
| 3 3 |  | 
| 4 | 
            +
            1.32.0 (2022-05-12)
         | 
| 5 | 
            +
            ------------------
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            * Feature - Documentation updates for AWS Outposts.
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            1.31.0 (2022-05-02)
         | 
| 10 | 
            +
            ------------------
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            * Feature - This release adds a new API called ListAssets to the Outposts SDK, which lists the hardware assets in an Outpost.
         | 
| 13 | 
            +
             | 
| 14 | 
            +
            1.30.0 (2022-03-11)
         | 
| 15 | 
            +
            ------------------
         | 
| 16 | 
            +
             | 
| 17 | 
            +
            * Feature - This release adds address filters for listSites
         | 
| 18 | 
            +
             | 
| 4 19 | 
             
            1.29.0 (2022-02-24)
         | 
| 5 20 | 
             
            ------------------
         | 
| 6 21 |  | 
    
        data/VERSION
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
            1. | 
| 1 | 
            +
            1.32.0
         | 
| @@ -441,6 +441,14 @@ module Aws::Outposts | |
| 441 441 | 
             
                # @option params [required, String] :site_id
         | 
| 442 442 | 
             
                #   The ID or the Amazon Resource Name (ARN) of the site.
         | 
| 443 443 | 
             
                #
         | 
| 444 | 
            +
                #   <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon Resource
         | 
| 445 | 
            +
                #   Name (ARN) or an ID for Outposts and sites throughout the Outposts
         | 
| 446 | 
            +
                #   Query API. To address backwards compatibility, the parameter names
         | 
| 447 | 
            +
                #   `OutpostID` or `SiteID` remain in use. Despite the parameter name, you
         | 
| 448 | 
            +
                #   can make the request with an ARN.
         | 
| 449 | 
            +
                #
         | 
| 450 | 
            +
                #    </note>
         | 
| 451 | 
            +
                #
         | 
| 444 452 | 
             
                # @option params [String] :availability_zone
         | 
| 445 453 | 
             
                #   The Availability Zone.
         | 
| 446 454 | 
             
                #
         | 
| @@ -620,6 +628,14 @@ module Aws::Outposts | |
| 620 628 | 
             
                # @option params [required, String] :outpost_id
         | 
| 621 629 | 
             
                #   The ID or the Amazon Resource Name (ARN) of the Outpost.
         | 
| 622 630 | 
             
                #
         | 
| 631 | 
            +
                #   <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon Resource
         | 
| 632 | 
            +
                #   Name (ARN) or an ID for Outposts and sites throughout the Outposts
         | 
| 633 | 
            +
                #   Query API. To address backwards compatibility, the parameter names
         | 
| 634 | 
            +
                #   `OutpostID` or `SiteID` remain in use. Despite the parameter name, you
         | 
| 635 | 
            +
                #   can make the request with an ARN.
         | 
| 636 | 
            +
                #
         | 
| 637 | 
            +
                #    </note>
         | 
| 638 | 
            +
                #
         | 
| 623 639 | 
             
                # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
         | 
| 624 640 | 
             
                #
         | 
| 625 641 | 
             
                # @example Request syntax with placeholder values
         | 
| @@ -642,6 +658,14 @@ module Aws::Outposts | |
| 642 658 | 
             
                # @option params [required, String] :site_id
         | 
| 643 659 | 
             
                #   The ID or the Amazon Resource Name (ARN) of the site.
         | 
| 644 660 | 
             
                #
         | 
| 661 | 
            +
                #   <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon Resource
         | 
| 662 | 
            +
                #   Name (ARN) or an ID for Outposts and sites throughout the Outposts
         | 
| 663 | 
            +
                #   Query API. To address backwards compatibility, the parameter names
         | 
| 664 | 
            +
                #   `OutpostID` or `SiteID` remain in use. Despite the parameter name, you
         | 
| 665 | 
            +
                #   can make the request with an ARN.
         | 
| 666 | 
            +
                #
         | 
| 667 | 
            +
                #    </note>
         | 
| 668 | 
            +
                #
         | 
| 645 669 | 
             
                # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
         | 
| 646 670 | 
             
                #
         | 
| 647 671 | 
             
                # @example Request syntax with placeholder values
         | 
| @@ -741,6 +765,14 @@ module Aws::Outposts | |
| 741 765 | 
             
                # @option params [required, String] :outpost_id
         | 
| 742 766 | 
             
                #   The ID or the Amazon Resource Name (ARN) of the Outpost.
         | 
| 743 767 | 
             
                #
         | 
| 768 | 
            +
                #   <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon Resource
         | 
| 769 | 
            +
                #   Name (ARN) or an ID for Outposts and sites throughout the Outposts
         | 
| 770 | 
            +
                #   Query API. To address backwards compatibility, the parameter names
         | 
| 771 | 
            +
                #   `OutpostID` or `SiteID` remain in use. Despite the parameter name, you
         | 
| 772 | 
            +
                #   can make the request with an ARN.
         | 
| 773 | 
            +
                #
         | 
| 774 | 
            +
                #    </note>
         | 
| 775 | 
            +
                #
         | 
| 744 776 | 
             
                # @return [Types::GetOutpostOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         | 
| 745 777 | 
             
                #
         | 
| 746 778 | 
             
                #   * {Types::GetOutpostOutput#outpost #outpost} => Types::Outpost
         | 
| @@ -776,11 +808,19 @@ module Aws::Outposts | |
| 776 808 | 
             
                  req.send_request(options)
         | 
| 777 809 | 
             
                end
         | 
| 778 810 |  | 
| 779 | 
            -
                #  | 
| 811 | 
            +
                # Gets the instance types for the specified Outpost.
         | 
| 780 812 | 
             
                #
         | 
| 781 813 | 
             
                # @option params [required, String] :outpost_id
         | 
| 782 814 | 
             
                #   The ID or the Amazon Resource Name (ARN) of the Outpost.
         | 
| 783 815 | 
             
                #
         | 
| 816 | 
            +
                #   <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon Resource
         | 
| 817 | 
            +
                #   Name (ARN) or an ID for Outposts and sites throughout the Outposts
         | 
| 818 | 
            +
                #   Query API. To address backwards compatibility, the parameter names
         | 
| 819 | 
            +
                #   `OutpostID` or `SiteID` remain in use. Despite the parameter name, you
         | 
| 820 | 
            +
                #   can make the request with an ARN.
         | 
| 821 | 
            +
                #
         | 
| 822 | 
            +
                #    </note>
         | 
| 823 | 
            +
                #
         | 
| 784 824 | 
             
                # @option params [String] :next_token
         | 
| 785 825 | 
             
                #   The pagination token.
         | 
| 786 826 | 
             
                #
         | 
| @@ -794,6 +834,8 @@ module Aws::Outposts | |
| 794 834 | 
             
                #   * {Types::GetOutpostInstanceTypesOutput#outpost_id #outpost_id} => String
         | 
| 795 835 | 
             
                #   * {Types::GetOutpostInstanceTypesOutput#outpost_arn #outpost_arn} => String
         | 
| 796 836 | 
             
                #
         | 
| 837 | 
            +
                # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
         | 
| 838 | 
            +
                #
         | 
| 797 839 | 
             
                # @example Request syntax with placeholder values
         | 
| 798 840 | 
             
                #
         | 
| 799 841 | 
             
                #   resp = client.get_outpost_instance_types({
         | 
| @@ -824,6 +866,14 @@ module Aws::Outposts | |
| 824 866 | 
             
                # @option params [required, String] :site_id
         | 
| 825 867 | 
             
                #   The ID or the Amazon Resource Name (ARN) of the site.
         | 
| 826 868 | 
             
                #
         | 
| 869 | 
            +
                #   <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon Resource
         | 
| 870 | 
            +
                #   Name (ARN) or an ID for Outposts and sites throughout the Outposts
         | 
| 871 | 
            +
                #   Query API. To address backwards compatibility, the parameter names
         | 
| 872 | 
            +
                #   `OutpostID` or `SiteID` remain in use. Despite the parameter name, you
         | 
| 873 | 
            +
                #   can make the request with an ARN.
         | 
| 874 | 
            +
                #
         | 
| 875 | 
            +
                #    </note>
         | 
| 876 | 
            +
                #
         | 
| 827 877 | 
             
                # @return [Types::GetSiteOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         | 
| 828 878 | 
             
                #
         | 
| 829 879 | 
             
                #   * {Types::GetSiteOutput#site #site} => Types::Site
         | 
| @@ -871,6 +921,14 @@ module Aws::Outposts | |
| 871 921 | 
             
                # @option params [required, String] :site_id
         | 
| 872 922 | 
             
                #   The ID or the Amazon Resource Name (ARN) of the site.
         | 
| 873 923 | 
             
                #
         | 
| 924 | 
            +
                #   <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon Resource
         | 
| 925 | 
            +
                #   Name (ARN) or an ID for Outposts and sites throughout the Outposts
         | 
| 926 | 
            +
                #   Query API. To address backwards compatibility, the parameter names
         | 
| 927 | 
            +
                #   `OutpostID` or `SiteID` remain in use. Despite the parameter name, you
         | 
| 928 | 
            +
                #   can make the request with an ARN.
         | 
| 929 | 
            +
                #
         | 
| 930 | 
            +
                #    </note>
         | 
| 931 | 
            +
                #
         | 
| 874 932 | 
             
                # @option params [required, String] :address_type
         | 
| 875 933 | 
             
                #   The type of the address you request.
         | 
| 876 934 | 
             
                #
         | 
| @@ -912,9 +970,64 @@ module Aws::Outposts | |
| 912 970 | 
             
                  req.send_request(options)
         | 
| 913 971 | 
             
                end
         | 
| 914 972 |  | 
| 915 | 
            -
                #  | 
| 916 | 
            -
                #  | 
| 917 | 
            -
                #  | 
| 973 | 
            +
                # Lists the hardware assets in an Outpost. If you are using Dedicated
         | 
| 974 | 
            +
                # Hosts on Amazon Web Services Outposts, you can filter your request by
         | 
| 975 | 
            +
                # host ID to return a list of hardware assets that allocate resources
         | 
| 976 | 
            +
                # for Dedicated Hosts.
         | 
| 977 | 
            +
                #
         | 
| 978 | 
            +
                # @option params [required, String] :outpost_identifier
         | 
| 979 | 
            +
                #   The ID or the Amazon Resource Name (ARN) of the Outpost.
         | 
| 980 | 
            +
                #
         | 
| 981 | 
            +
                # @option params [Array<String>] :host_id_filter
         | 
| 982 | 
            +
                #   A filter for the host ID of Dedicated Hosts on the Outpost.
         | 
| 983 | 
            +
                #
         | 
| 984 | 
            +
                #   Filter values are case sensitive. If you specify multiple values for a
         | 
| 985 | 
            +
                #   filter, the values are joined with an `OR`, and the request returns
         | 
| 986 | 
            +
                #   all results that match any of the specified values.
         | 
| 987 | 
            +
                #
         | 
| 988 | 
            +
                # @option params [Integer] :max_results
         | 
| 989 | 
            +
                #   The maximum page size.
         | 
| 990 | 
            +
                #
         | 
| 991 | 
            +
                # @option params [String] :next_token
         | 
| 992 | 
            +
                #   The pagination token.
         | 
| 993 | 
            +
                #
         | 
| 994 | 
            +
                # @return [Types::ListAssetsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         | 
| 995 | 
            +
                #
         | 
| 996 | 
            +
                #   * {Types::ListAssetsOutput#assets #assets} => Array<Types::AssetInfo>
         | 
| 997 | 
            +
                #   * {Types::ListAssetsOutput#next_token #next_token} => String
         | 
| 998 | 
            +
                #
         | 
| 999 | 
            +
                # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
         | 
| 1000 | 
            +
                #
         | 
| 1001 | 
            +
                # @example Request syntax with placeholder values
         | 
| 1002 | 
            +
                #
         | 
| 1003 | 
            +
                #   resp = client.list_assets({
         | 
| 1004 | 
            +
                #     outpost_identifier: "OutpostIdentifier", # required
         | 
| 1005 | 
            +
                #     host_id_filter: ["HostId"],
         | 
| 1006 | 
            +
                #     max_results: 1,
         | 
| 1007 | 
            +
                #     next_token: "Token",
         | 
| 1008 | 
            +
                #   })
         | 
| 1009 | 
            +
                #
         | 
| 1010 | 
            +
                # @example Response structure
         | 
| 1011 | 
            +
                #
         | 
| 1012 | 
            +
                #   resp.assets #=> Array
         | 
| 1013 | 
            +
                #   resp.assets[0].asset_id #=> String
         | 
| 1014 | 
            +
                #   resp.assets[0].rack_id #=> String
         | 
| 1015 | 
            +
                #   resp.assets[0].asset_type #=> String, one of "COMPUTE"
         | 
| 1016 | 
            +
                #   resp.assets[0].compute_attributes.host_id #=> String
         | 
| 1017 | 
            +
                #   resp.next_token #=> String
         | 
| 1018 | 
            +
                #
         | 
| 1019 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListAssets AWS API Documentation
         | 
| 1020 | 
            +
                #
         | 
| 1021 | 
            +
                # @overload list_assets(params = {})
         | 
| 1022 | 
            +
                # @param [Hash] params ({})
         | 
| 1023 | 
            +
                def list_assets(params = {}, options = {})
         | 
| 1024 | 
            +
                  req = build_request(:list_assets, params)
         | 
| 1025 | 
            +
                  req.send_request(options)
         | 
| 1026 | 
            +
                end
         | 
| 1027 | 
            +
             | 
| 1028 | 
            +
                # Lists the items in the catalog. Add filters to your request to return
         | 
| 1029 | 
            +
                # a more specific list of results. Use filters to match an item class,
         | 
| 1030 | 
            +
                # storage option, or EC2 family.
         | 
| 918 1031 | 
             
                #
         | 
| 919 1032 | 
             
                # If you specify multiple filters, the filters are joined with an `AND`,
         | 
| 920 1033 | 
             
                # and the request returns only results that match all of the specified
         | 
| @@ -990,9 +1103,9 @@ module Aws::Outposts | |
| 990 1103 | 
             
                  req.send_request(options)
         | 
| 991 1104 | 
             
                end
         | 
| 992 1105 |  | 
| 993 | 
            -
                #  | 
| 994 | 
            -
                #  | 
| 995 | 
            -
                #  | 
| 1106 | 
            +
                # Lists the Outpost orders for your Amazon Web Services account. You can
         | 
| 1107 | 
            +
                # filter your request by Outpost to return a more specific list of
         | 
| 1108 | 
            +
                # results.
         | 
| 996 1109 | 
             
                #
         | 
| 997 1110 | 
             
                # @option params [String] :outpost_identifier_filter
         | 
| 998 1111 | 
             
                #   The ID or the Amazon Resource Name (ARN) of the Outpost.
         | 
| @@ -1040,9 +1153,9 @@ module Aws::Outposts | |
| 1040 1153 | 
             
                  req.send_request(options)
         | 
| 1041 1154 | 
             
                end
         | 
| 1042 1155 |  | 
| 1043 | 
            -
                #  | 
| 1044 | 
            -
                #  | 
| 1045 | 
            -
                #  | 
| 1156 | 
            +
                # Lists the Outposts for your Amazon Web Services account. Add filters
         | 
| 1157 | 
            +
                # to your request to return a more specific list of results. Use filters
         | 
| 1158 | 
            +
                # to match an Outpost lifecycle status, Availability Zone
         | 
| 1046 1159 | 
             
                # (`us-east-1a`), and AZ ID (`use1-az1`).
         | 
| 1047 1160 | 
             
                #
         | 
| 1048 1161 | 
             
                # If you specify multiple filters, the filters are joined with an `AND`,
         | 
| @@ -1120,7 +1233,14 @@ module Aws::Outposts | |
| 1120 1233 | 
             
                  req.send_request(options)
         | 
| 1121 1234 | 
             
                end
         | 
| 1122 1235 |  | 
| 1123 | 
            -
                # Lists the sites for your Amazon Web Services account.
         | 
| 1236 | 
            +
                # Lists the Outpost sites for your Amazon Web Services account. Add
         | 
| 1237 | 
            +
                # operating address filters to your request to return a more specific
         | 
| 1238 | 
            +
                # list of results. Use filters to match site city, country code, or
         | 
| 1239 | 
            +
                # state/region of the operating address.
         | 
| 1240 | 
            +
                #
         | 
| 1241 | 
            +
                # If you specify multiple filters, the filters are joined with an `AND`,
         | 
| 1242 | 
            +
                # and the request returns only results that match all of the specified
         | 
| 1243 | 
            +
                # filters.
         | 
| 1124 1244 | 
             
                #
         | 
| 1125 1245 | 
             
                # @option params [String] :next_token
         | 
| 1126 1246 | 
             
                #   The pagination token.
         | 
| @@ -1128,6 +1248,27 @@ module Aws::Outposts | |
| 1128 1248 | 
             
                # @option params [Integer] :max_results
         | 
| 1129 1249 | 
             
                #   The maximum page size.
         | 
| 1130 1250 | 
             
                #
         | 
| 1251 | 
            +
                # @option params [Array<String>] :operating_address_country_code_filter
         | 
| 1252 | 
            +
                #   A filter for the country code of the Outpost site.
         | 
| 1253 | 
            +
                #
         | 
| 1254 | 
            +
                #   Filter values are case sensitive. If you specify multiple values for a
         | 
| 1255 | 
            +
                #   filter, the values are joined with an `OR`, and the request returns
         | 
| 1256 | 
            +
                #   all results that match any of the specified values.
         | 
| 1257 | 
            +
                #
         | 
| 1258 | 
            +
                # @option params [Array<String>] :operating_address_state_or_region_filter
         | 
| 1259 | 
            +
                #   A filter for the state/region of the Outpost site.
         | 
| 1260 | 
            +
                #
         | 
| 1261 | 
            +
                #   Filter values are case sensitive. If you specify multiple values for a
         | 
| 1262 | 
            +
                #   filter, the values are joined with an `OR`, and the request returns
         | 
| 1263 | 
            +
                #   all results that match any of the specified values.
         | 
| 1264 | 
            +
                #
         | 
| 1265 | 
            +
                # @option params [Array<String>] :operating_address_city_filter
         | 
| 1266 | 
            +
                #   A filter for the city of the Outpost site.
         | 
| 1267 | 
            +
                #
         | 
| 1268 | 
            +
                #   Filter values are case sensitive. If you specify multiple values for a
         | 
| 1269 | 
            +
                #   filter, the values are joined with an `OR`, and the request returns
         | 
| 1270 | 
            +
                #   all results that match any of the specified values.
         | 
| 1271 | 
            +
                #
         | 
| 1131 1272 | 
             
                # @return [Types::ListSitesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         | 
| 1132 1273 | 
             
                #
         | 
| 1133 1274 | 
             
                #   * {Types::ListSitesOutput#sites #sites} => Array<Types::Site>
         | 
| @@ -1140,6 +1281,9 @@ module Aws::Outposts | |
| 1140 1281 | 
             
                #   resp = client.list_sites({
         | 
| 1141 1282 | 
             
                #     next_token: "Token",
         | 
| 1142 1283 | 
             
                #     max_results: 1,
         | 
| 1284 | 
            +
                #     operating_address_country_code_filter: ["CountryCode"],
         | 
| 1285 | 
            +
                #     operating_address_state_or_region_filter: ["StateOrRegion"],
         | 
| 1286 | 
            +
                #     operating_address_city_filter: ["City"],
         | 
| 1143 1287 | 
             
                #   })
         | 
| 1144 1288 | 
             
                #
         | 
| 1145 1289 | 
             
                # @example Response structure
         | 
| @@ -1264,6 +1408,14 @@ module Aws::Outposts | |
| 1264 1408 | 
             
                # @option params [required, String] :outpost_id
         | 
| 1265 1409 | 
             
                #   The ID or the Amazon Resource Name (ARN) of the Outpost.
         | 
| 1266 1410 | 
             
                #
         | 
| 1411 | 
            +
                #   <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon Resource
         | 
| 1412 | 
            +
                #   Name (ARN) or an ID for Outposts and sites throughout the Outposts
         | 
| 1413 | 
            +
                #   Query API. To address backwards compatibility, the parameter names
         | 
| 1414 | 
            +
                #   `OutpostID` or `SiteID` remain in use. Despite the parameter name, you
         | 
| 1415 | 
            +
                #   can make the request with an ARN.
         | 
| 1416 | 
            +
                #
         | 
| 1417 | 
            +
                #    </note>
         | 
| 1418 | 
            +
                #
         | 
| 1267 1419 | 
             
                # @option params [String] :name
         | 
| 1268 1420 | 
             
                #   The name of the Outpost.
         | 
| 1269 1421 | 
             
                #
         | 
| @@ -1316,6 +1468,14 @@ module Aws::Outposts | |
| 1316 1468 | 
             
                # @option params [required, String] :site_id
         | 
| 1317 1469 | 
             
                #   The ID or the Amazon Resource Name (ARN) of the site.
         | 
| 1318 1470 | 
             
                #
         | 
| 1471 | 
            +
                #   <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon Resource
         | 
| 1472 | 
            +
                #   Name (ARN) or an ID for Outposts and sites throughout the Outposts
         | 
| 1473 | 
            +
                #   Query API. To address backwards compatibility, the parameter names
         | 
| 1474 | 
            +
                #   `OutpostID` or `SiteID` remain in use. Despite the parameter name, you
         | 
| 1475 | 
            +
                #   can make the request with an ARN.
         | 
| 1476 | 
            +
                #
         | 
| 1477 | 
            +
                #    </note>
         | 
| 1478 | 
            +
                #
         | 
| 1319 1479 | 
             
                # @option params [String] :name
         | 
| 1320 1480 | 
             
                #   The name of the site.
         | 
| 1321 1481 | 
             
                #
         | 
| @@ -1382,6 +1542,14 @@ module Aws::Outposts | |
| 1382 1542 | 
             
                # @option params [required, String] :site_id
         | 
| 1383 1543 | 
             
                #   The ID or the Amazon Resource Name (ARN) of the site.
         | 
| 1384 1544 | 
             
                #
         | 
| 1545 | 
            +
                #   <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon Resource
         | 
| 1546 | 
            +
                #   Name (ARN) or an ID for Outposts and sites throughout the Outposts
         | 
| 1547 | 
            +
                #   Query API. To address backwards compatibility, the parameter names
         | 
| 1548 | 
            +
                #   `OutpostID` or `SiteID` remain in use. Despite the parameter name, you
         | 
| 1549 | 
            +
                #   can make the request with an ARN.
         | 
| 1550 | 
            +
                #
         | 
| 1551 | 
            +
                #    </note>
         | 
| 1552 | 
            +
                #
         | 
| 1385 1553 | 
             
                # @option params [required, String] :address_type
         | 
| 1386 1554 | 
             
                #   The type of the address.
         | 
| 1387 1555 | 
             
                #
         | 
| @@ -1452,6 +1620,14 @@ module Aws::Outposts | |
| 1452 1620 | 
             
                # @option params [required, String] :site_id
         | 
| 1453 1621 | 
             
                #   The ID or the Amazon Resource Name (ARN) of the site.
         | 
| 1454 1622 | 
             
                #
         | 
| 1623 | 
            +
                #   <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon Resource
         | 
| 1624 | 
            +
                #   Name (ARN) or an ID for Outposts and sites throughout the Outposts
         | 
| 1625 | 
            +
                #   Query API. To address backwards compatibility, the parameter names
         | 
| 1626 | 
            +
                #   `OutpostID` or `SiteID` remain in use. Despite the parameter name, you
         | 
| 1627 | 
            +
                #   can make the request with an ARN.
         | 
| 1628 | 
            +
                #
         | 
| 1629 | 
            +
                #    </note>
         | 
| 1630 | 
            +
                #
         | 
| 1455 1631 | 
             
                # @option params [String] :power_draw_kva
         | 
| 1456 1632 | 
             
                #   Specify in kVA the power draw available at the hardware placement
         | 
| 1457 1633 | 
             
                #   position for the rack.
         | 
| @@ -1610,7 +1786,7 @@ module Aws::Outposts | |
| 1610 1786 | 
             
                    params: params,
         | 
| 1611 1787 | 
             
                    config: config)
         | 
| 1612 1788 | 
             
                  context[:gem_name] = 'aws-sdk-outposts'
         | 
| 1613 | 
            -
                  context[:gem_version] = '1. | 
| 1789 | 
            +
                  context[:gem_version] = '1.32.0'
         | 
| 1614 1790 | 
             
                  Seahorse::Client::Request.new(handlers, context)
         | 
| 1615 1791 | 
             
                end
         | 
| 1616 1792 |  | 
| @@ -21,6 +21,10 @@ module Aws::Outposts | |
| 21 21 | 
             
                AddressLine3 = Shapes::StringShape.new(name: 'AddressLine3')
         | 
| 22 22 | 
             
                AddressType = Shapes::StringShape.new(name: 'AddressType')
         | 
| 23 23 | 
             
                Arn = Shapes::StringShape.new(name: 'Arn')
         | 
| 24 | 
            +
                AssetId = Shapes::StringShape.new(name: 'AssetId')
         | 
| 25 | 
            +
                AssetInfo = Shapes::StructureShape.new(name: 'AssetInfo')
         | 
| 26 | 
            +
                AssetListDefinition = Shapes::ListShape.new(name: 'AssetListDefinition')
         | 
| 27 | 
            +
                AssetType = Shapes::StringShape.new(name: 'AssetType')
         | 
| 24 28 | 
             
                AvailabilityZone = Shapes::StringShape.new(name: 'AvailabilityZone')
         | 
| 25 29 | 
             
                AvailabilityZoneId = Shapes::StringShape.new(name: 'AvailabilityZoneId')
         | 
| 26 30 | 
             
                AvailabilityZoneIdList = Shapes::ListShape.new(name: 'AvailabilityZoneIdList')
         | 
| @@ -35,10 +39,13 @@ module Aws::Outposts | |
| 35 39 | 
             
                CatalogItemStatus = Shapes::StringShape.new(name: 'CatalogItemStatus')
         | 
| 36 40 | 
             
                CatalogItemWeightLbs = Shapes::IntegerShape.new(name: 'CatalogItemWeightLbs')
         | 
| 37 41 | 
             
                City = Shapes::StringShape.new(name: 'City')
         | 
| 42 | 
            +
                CityList = Shapes::ListShape.new(name: 'CityList')
         | 
| 43 | 
            +
                ComputeAttributes = Shapes::StructureShape.new(name: 'ComputeAttributes')
         | 
| 38 44 | 
             
                ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
         | 
| 39 45 | 
             
                ContactName = Shapes::StringShape.new(name: 'ContactName')
         | 
| 40 46 | 
             
                ContactPhoneNumber = Shapes::StringShape.new(name: 'ContactPhoneNumber')
         | 
| 41 47 | 
             
                CountryCode = Shapes::StringShape.new(name: 'CountryCode')
         | 
| 48 | 
            +
                CountryCodeList = Shapes::ListShape.new(name: 'CountryCodeList')
         | 
| 42 49 | 
             
                CreateOrderInput = Shapes::StructureShape.new(name: 'CreateOrderInput')
         | 
| 43 50 | 
             
                CreateOrderOutput = Shapes::StructureShape.new(name: 'CreateOrderOutput')
         | 
| 44 51 | 
             
                CreateOutpostInput = Shapes::StructureShape.new(name: 'CreateOutpostInput')
         | 
| @@ -68,6 +75,8 @@ module Aws::Outposts | |
| 68 75 | 
             
                GetSiteAddressOutput = Shapes::StructureShape.new(name: 'GetSiteAddressOutput')
         | 
| 69 76 | 
             
                GetSiteInput = Shapes::StructureShape.new(name: 'GetSiteInput')
         | 
| 70 77 | 
             
                GetSiteOutput = Shapes::StructureShape.new(name: 'GetSiteOutput')
         | 
| 78 | 
            +
                HostId = Shapes::StringShape.new(name: 'HostId')
         | 
| 79 | 
            +
                HostIdList = Shapes::ListShape.new(name: 'HostIdList')
         | 
| 71 80 | 
             
                ISO8601Timestamp = Shapes::TimestampShape.new(name: 'ISO8601Timestamp')
         | 
| 72 81 | 
             
                InstanceType = Shapes::StringShape.new(name: 'InstanceType')
         | 
| 73 82 | 
             
                InstanceTypeItem = Shapes::StructureShape.new(name: 'InstanceTypeItem')
         | 
| @@ -83,6 +92,8 @@ module Aws::Outposts | |
| 83 92 | 
             
                LineItemRequestListDefinition = Shapes::ListShape.new(name: 'LineItemRequestListDefinition')
         | 
| 84 93 | 
             
                LineItemStatus = Shapes::StringShape.new(name: 'LineItemStatus')
         | 
| 85 94 | 
             
                LineItemStatusCounts = Shapes::MapShape.new(name: 'LineItemStatusCounts')
         | 
| 95 | 
            +
                ListAssetsInput = Shapes::StructureShape.new(name: 'ListAssetsInput')
         | 
| 96 | 
            +
                ListAssetsOutput = Shapes::StructureShape.new(name: 'ListAssetsOutput')
         | 
| 86 97 | 
             
                ListCatalogItemsInput = Shapes::StructureShape.new(name: 'ListCatalogItemsInput')
         | 
| 87 98 | 
             
                ListCatalogItemsOutput = Shapes::StructureShape.new(name: 'ListCatalogItemsOutput')
         | 
| 88 99 | 
             
                ListOrdersInput = Shapes::StructureShape.new(name: 'ListOrdersInput')
         | 
| @@ -121,6 +132,7 @@ module Aws::Outposts | |
| 121 132 | 
             
                PowerFeedDrop = Shapes::StringShape.new(name: 'PowerFeedDrop')
         | 
| 122 133 | 
             
                PowerPhase = Shapes::StringShape.new(name: 'PowerPhase')
         | 
| 123 134 | 
             
                Quantity = Shapes::StringShape.new(name: 'Quantity')
         | 
| 135 | 
            +
                RackId = Shapes::StringShape.new(name: 'RackId')
         | 
| 124 136 | 
             
                RackPhysicalProperties = Shapes::StructureShape.new(name: 'RackPhysicalProperties')
         | 
| 125 137 | 
             
                ResourceType = Shapes::StringShape.new(name: 'ResourceType')
         | 
| 126 138 | 
             
                ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
         | 
| @@ -132,6 +144,7 @@ module Aws::Outposts | |
| 132 144 | 
             
                SiteNotes = Shapes::StringShape.new(name: 'SiteNotes')
         | 
| 133 145 | 
             
                SkuCode = Shapes::StringShape.new(name: 'SkuCode')
         | 
| 134 146 | 
             
                StateOrRegion = Shapes::StringShape.new(name: 'StateOrRegion')
         | 
| 147 | 
            +
                StateOrRegionList = Shapes::ListShape.new(name: 'StateOrRegionList')
         | 
| 135 148 | 
             
                String = Shapes::StringShape.new(name: 'String')
         | 
| 136 149 | 
             
                SupportedHardwareType = Shapes::StringShape.new(name: 'SupportedHardwareType')
         | 
| 137 150 | 
             
                SupportedStorageEnum = Shapes::StringShape.new(name: 'SupportedStorageEnum')
         | 
| @@ -177,6 +190,14 @@ module Aws::Outposts | |
| 177 190 | 
             
                Address.add_member(:municipality, Shapes::ShapeRef.new(shape: Municipality, location_name: "Municipality"))
         | 
| 178 191 | 
             
                Address.struct_class = Types::Address
         | 
| 179 192 |  | 
| 193 | 
            +
                AssetInfo.add_member(:asset_id, Shapes::ShapeRef.new(shape: AssetId, location_name: "AssetId"))
         | 
| 194 | 
            +
                AssetInfo.add_member(:rack_id, Shapes::ShapeRef.new(shape: RackId, location_name: "RackId"))
         | 
| 195 | 
            +
                AssetInfo.add_member(:asset_type, Shapes::ShapeRef.new(shape: AssetType, location_name: "AssetType"))
         | 
| 196 | 
            +
                AssetInfo.add_member(:compute_attributes, Shapes::ShapeRef.new(shape: ComputeAttributes, location_name: "ComputeAttributes"))
         | 
| 197 | 
            +
                AssetInfo.struct_class = Types::AssetInfo
         | 
| 198 | 
            +
             | 
| 199 | 
            +
                AssetListDefinition.member = Shapes::ShapeRef.new(shape: AssetInfo)
         | 
| 200 | 
            +
             | 
| 180 201 | 
             
                AvailabilityZoneIdList.member = Shapes::ShapeRef.new(shape: AvailabilityZoneId)
         | 
| 181 202 |  | 
| 182 203 | 
             
                AvailabilityZoneList.member = Shapes::ShapeRef.new(shape: AvailabilityZone)
         | 
| @@ -199,11 +220,18 @@ module Aws::Outposts | |
| 199 220 |  | 
| 200 221 | 
             
                CatalogItemListDefinition.member = Shapes::ShapeRef.new(shape: CatalogItem)
         | 
| 201 222 |  | 
| 223 | 
            +
                CityList.member = Shapes::ShapeRef.new(shape: City)
         | 
| 224 | 
            +
             | 
| 225 | 
            +
                ComputeAttributes.add_member(:host_id, Shapes::ShapeRef.new(shape: HostId, location_name: "HostId"))
         | 
| 226 | 
            +
                ComputeAttributes.struct_class = Types::ComputeAttributes
         | 
| 227 | 
            +
             | 
| 202 228 | 
             
                ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
         | 
| 203 229 | 
             
                ConflictException.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, location_name: "ResourceId"))
         | 
| 204 230 | 
             
                ConflictException.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, location_name: "ResourceType"))
         | 
| 205 231 | 
             
                ConflictException.struct_class = Types::ConflictException
         | 
| 206 232 |  | 
| 233 | 
            +
                CountryCodeList.member = Shapes::ShapeRef.new(shape: CountryCode)
         | 
| 234 | 
            +
             | 
| 207 235 | 
             
                CreateOrderInput.add_member(:outpost_identifier, Shapes::ShapeRef.new(shape: OutpostIdentifier, required: true, location_name: "OutpostIdentifier"))
         | 
| 208 236 | 
             
                CreateOrderInput.add_member(:line_items, Shapes::ShapeRef.new(shape: LineItemRequestListDefinition, required: true, location_name: "LineItems"))
         | 
| 209 237 | 
             
                CreateOrderInput.add_member(:payment_option, Shapes::ShapeRef.new(shape: PaymentOption, required: true, location_name: "PaymentOption"))
         | 
| @@ -300,6 +328,8 @@ module Aws::Outposts | |
| 300 328 | 
             
                GetSiteOutput.add_member(:site, Shapes::ShapeRef.new(shape: Site, location_name: "Site"))
         | 
| 301 329 | 
             
                GetSiteOutput.struct_class = Types::GetSiteOutput
         | 
| 302 330 |  | 
| 331 | 
            +
                HostIdList.member = Shapes::ShapeRef.new(shape: HostId)
         | 
| 332 | 
            +
             | 
| 303 333 | 
             
                InstanceTypeItem.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, location_name: "InstanceType"))
         | 
| 304 334 | 
             
                InstanceTypeItem.struct_class = Types::InstanceTypeItem
         | 
| 305 335 |  | 
| @@ -327,6 +357,16 @@ module Aws::Outposts | |
| 327 357 | 
             
                LineItemStatusCounts.key = Shapes::ShapeRef.new(shape: LineItemStatus)
         | 
| 328 358 | 
             
                LineItemStatusCounts.value = Shapes::ShapeRef.new(shape: LineItemQuantity)
         | 
| 329 359 |  | 
| 360 | 
            +
                ListAssetsInput.add_member(:outpost_identifier, Shapes::ShapeRef.new(shape: OutpostIdentifier, required: true, location: "uri", location_name: "OutpostId"))
         | 
| 361 | 
            +
                ListAssetsInput.add_member(:host_id_filter, Shapes::ShapeRef.new(shape: HostIdList, location: "querystring", location_name: "HostIdFilter"))
         | 
| 362 | 
            +
                ListAssetsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults1000, location: "querystring", location_name: "MaxResults"))
         | 
| 363 | 
            +
                ListAssetsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location: "querystring", location_name: "NextToken"))
         | 
| 364 | 
            +
                ListAssetsInput.struct_class = Types::ListAssetsInput
         | 
| 365 | 
            +
             | 
| 366 | 
            +
                ListAssetsOutput.add_member(:assets, Shapes::ShapeRef.new(shape: AssetListDefinition, location_name: "Assets"))
         | 
| 367 | 
            +
                ListAssetsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
         | 
| 368 | 
            +
                ListAssetsOutput.struct_class = Types::ListAssetsOutput
         | 
| 369 | 
            +
             | 
| 330 370 | 
             
                ListCatalogItemsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location: "querystring", location_name: "NextToken"))
         | 
| 331 371 | 
             
                ListCatalogItemsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults1000, location: "querystring", location_name: "MaxResults"))
         | 
| 332 372 | 
             
                ListCatalogItemsInput.add_member(:item_class_filter, Shapes::ShapeRef.new(shape: CatalogItemClassList, location: "querystring", location_name: "ItemClassFilter"))
         | 
| @@ -360,6 +400,9 @@ module Aws::Outposts | |
| 360 400 |  | 
| 361 401 | 
             
                ListSitesInput.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location: "querystring", location_name: "NextToken"))
         | 
| 362 402 | 
             
                ListSitesInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults1000, location: "querystring", location_name: "MaxResults"))
         | 
| 403 | 
            +
                ListSitesInput.add_member(:operating_address_country_code_filter, Shapes::ShapeRef.new(shape: CountryCodeList, location: "querystring", location_name: "OperatingAddressCountryCodeFilter"))
         | 
| 404 | 
            +
                ListSitesInput.add_member(:operating_address_state_or_region_filter, Shapes::ShapeRef.new(shape: StateOrRegionList, location: "querystring", location_name: "OperatingAddressStateOrRegionFilter"))
         | 
| 405 | 
            +
                ListSitesInput.add_member(:operating_address_city_filter, Shapes::ShapeRef.new(shape: CityList, location: "querystring", location_name: "OperatingAddressCityFilter"))
         | 
| 363 406 | 
             
                ListSitesInput.struct_class = Types::ListSitesInput
         | 
| 364 407 |  | 
| 365 408 | 
             
                ListSitesOutput.add_member(:sites, Shapes::ShapeRef.new(shape: siteListDefinition, location_name: "Sites"))
         | 
| @@ -436,6 +479,8 @@ module Aws::Outposts | |
| 436 479 | 
             
                Site.add_member(:rack_physical_properties, Shapes::ShapeRef.new(shape: RackPhysicalProperties, location_name: "RackPhysicalProperties"))
         | 
| 437 480 | 
             
                Site.struct_class = Types::Site
         | 
| 438 481 |  | 
| 482 | 
            +
                StateOrRegionList.member = Shapes::ShapeRef.new(shape: StateOrRegion)
         | 
| 483 | 
            +
             | 
| 439 484 | 
             
                SupportedStorageList.member = Shapes::ShapeRef.new(shape: SupportedStorageEnum)
         | 
| 440 485 |  | 
| 441 486 | 
             
                SupportedUplinkGbpsListDefinition.member = Shapes::ShapeRef.new(shape: SupportedUplinkGbps)
         | 
| @@ -649,6 +694,12 @@ module Aws::Outposts | |
| 649 694 | 
             
                    o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
         | 
| 650 695 | 
             
                    o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
         | 
| 651 696 | 
             
                    o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
         | 
| 697 | 
            +
                    o[:pager] = Aws::Pager.new(
         | 
| 698 | 
            +
                      limit_key: "max_results",
         | 
| 699 | 
            +
                      tokens: {
         | 
| 700 | 
            +
                        "next_token" => "next_token"
         | 
| 701 | 
            +
                      }
         | 
| 702 | 
            +
                    )
         | 
| 652 703 | 
             
                  end)
         | 
| 653 704 |  | 
| 654 705 | 
             
                  api.add_operation(:get_site, Seahorse::Model::Operation.new.tap do |o|
         | 
| @@ -675,6 +726,24 @@ module Aws::Outposts | |
| 675 726 | 
             
                    o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
         | 
| 676 727 | 
             
                  end)
         | 
| 677 728 |  | 
| 729 | 
            +
                  api.add_operation(:list_assets, Seahorse::Model::Operation.new.tap do |o|
         | 
| 730 | 
            +
                    o.name = "ListAssets"
         | 
| 731 | 
            +
                    o.http_method = "GET"
         | 
| 732 | 
            +
                    o.http_request_uri = "/outposts/{OutpostId}/assets"
         | 
| 733 | 
            +
                    o.input = Shapes::ShapeRef.new(shape: ListAssetsInput)
         | 
| 734 | 
            +
                    o.output = Shapes::ShapeRef.new(shape: ListAssetsOutput)
         | 
| 735 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: ValidationException)
         | 
| 736 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
         | 
| 737 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
         | 
| 738 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
         | 
| 739 | 
            +
                    o[:pager] = Aws::Pager.new(
         | 
| 740 | 
            +
                      limit_key: "max_results",
         | 
| 741 | 
            +
                      tokens: {
         | 
| 742 | 
            +
                        "next_token" => "next_token"
         | 
| 743 | 
            +
                      }
         | 
| 744 | 
            +
                    )
         | 
| 745 | 
            +
                  end)
         | 
| 746 | 
            +
             | 
| 678 747 | 
             
                  api.add_operation(:list_catalog_items, Seahorse::Model::Operation.new.tap do |o|
         | 
| 679 748 | 
             
                    o.name = "ListCatalogItems"
         | 
| 680 749 | 
             
                    o.http_method = "GET"
         | 
| @@ -104,6 +104,35 @@ module Aws::Outposts | |
| 104 104 | 
             
                  include Aws::Structure
         | 
| 105 105 | 
             
                end
         | 
| 106 106 |  | 
| 107 | 
            +
                # Information about hardware assets.
         | 
| 108 | 
            +
                #
         | 
| 109 | 
            +
                # @!attribute [rw] asset_id
         | 
| 110 | 
            +
                #   The ID of the asset.
         | 
| 111 | 
            +
                #   @return [String]
         | 
| 112 | 
            +
                #
         | 
| 113 | 
            +
                # @!attribute [rw] rack_id
         | 
| 114 | 
            +
                #   The rack ID of the asset.
         | 
| 115 | 
            +
                #   @return [String]
         | 
| 116 | 
            +
                #
         | 
| 117 | 
            +
                # @!attribute [rw] asset_type
         | 
| 118 | 
            +
                #   The type of the asset.
         | 
| 119 | 
            +
                #   @return [String]
         | 
| 120 | 
            +
                #
         | 
| 121 | 
            +
                # @!attribute [rw] compute_attributes
         | 
| 122 | 
            +
                #   Information about compute hardware assets.
         | 
| 123 | 
            +
                #   @return [Types::ComputeAttributes]
         | 
| 124 | 
            +
                #
         | 
| 125 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/AssetInfo AWS API Documentation
         | 
| 126 | 
            +
                #
         | 
| 127 | 
            +
                class AssetInfo < Struct.new(
         | 
| 128 | 
            +
                  :asset_id,
         | 
| 129 | 
            +
                  :rack_id,
         | 
| 130 | 
            +
                  :asset_type,
         | 
| 131 | 
            +
                  :compute_attributes)
         | 
| 132 | 
            +
                  SENSITIVE = []
         | 
| 133 | 
            +
                  include Aws::Structure
         | 
| 134 | 
            +
                end
         | 
| 135 | 
            +
             | 
| 107 136 | 
             
                # @note When making an API call, you may pass CancelOrderInput
         | 
| 108 137 | 
             
                #   data as a hash:
         | 
| 109 138 | 
             
                #
         | 
| @@ -172,6 +201,20 @@ module Aws::Outposts | |
| 172 201 | 
             
                  include Aws::Structure
         | 
| 173 202 | 
             
                end
         | 
| 174 203 |  | 
| 204 | 
            +
                # Information about compute hardware assets.
         | 
| 205 | 
            +
                #
         | 
| 206 | 
            +
                # @!attribute [rw] host_id
         | 
| 207 | 
            +
                #   The host ID of any Dedicated Hosts on the asset.
         | 
| 208 | 
            +
                #   @return [String]
         | 
| 209 | 
            +
                #
         | 
| 210 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ComputeAttributes AWS API Documentation
         | 
| 211 | 
            +
                #
         | 
| 212 | 
            +
                class ComputeAttributes < Struct.new(
         | 
| 213 | 
            +
                  :host_id)
         | 
| 214 | 
            +
                  SENSITIVE = []
         | 
| 215 | 
            +
                  include Aws::Structure
         | 
| 216 | 
            +
                end
         | 
| 217 | 
            +
             | 
| 175 218 | 
             
                # Updating or deleting this resource can cause an inconsistent state.
         | 
| 176 219 | 
             
                #
         | 
| 177 220 | 
             
                # @!attribute [rw] message
         | 
| @@ -274,6 +317,14 @@ module Aws::Outposts | |
| 274 317 | 
             
                #
         | 
| 275 318 | 
             
                # @!attribute [rw] site_id
         | 
| 276 319 | 
             
                #   The ID or the Amazon Resource Name (ARN) of the site.
         | 
| 320 | 
            +
                #
         | 
| 321 | 
            +
                #   <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon
         | 
| 322 | 
            +
                #   Resource Name (ARN) or an ID for Outposts and sites throughout the
         | 
| 323 | 
            +
                #   Outposts Query API. To address backwards compatibility, the
         | 
| 324 | 
            +
                #   parameter names `OutpostID` or `SiteID` remain in use. Despite the
         | 
| 325 | 
            +
                #   parameter name, you can make the request with an ARN.
         | 
| 326 | 
            +
                #
         | 
| 327 | 
            +
                #    </note>
         | 
| 277 328 | 
             
                #   @return [String]
         | 
| 278 329 | 
             
                #
         | 
| 279 330 | 
             
                # @!attribute [rw] availability_zone
         | 
| @@ -442,6 +493,14 @@ module Aws::Outposts | |
| 442 493 | 
             
                #
         | 
| 443 494 | 
             
                # @!attribute [rw] outpost_id
         | 
| 444 495 | 
             
                #   The ID or the Amazon Resource Name (ARN) of the Outpost.
         | 
| 496 | 
            +
                #
         | 
| 497 | 
            +
                #   <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon
         | 
| 498 | 
            +
                #   Resource Name (ARN) or an ID for Outposts and sites throughout the
         | 
| 499 | 
            +
                #   Outposts Query API. To address backwards compatibility, the
         | 
| 500 | 
            +
                #   parameter names `OutpostID` or `SiteID` remain in use. Despite the
         | 
| 501 | 
            +
                #   parameter name, you can make the request with an ARN.
         | 
| 502 | 
            +
                #
         | 
| 503 | 
            +
                #    </note>
         | 
| 445 504 | 
             
                #   @return [String]
         | 
| 446 505 | 
             
                #
         | 
| 447 506 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/DeleteOutpostInput AWS API Documentation
         | 
| @@ -465,6 +524,14 @@ module Aws::Outposts | |
| 465 524 | 
             
                #
         | 
| 466 525 | 
             
                # @!attribute [rw] site_id
         | 
| 467 526 | 
             
                #   The ID or the Amazon Resource Name (ARN) of the site.
         | 
| 527 | 
            +
                #
         | 
| 528 | 
            +
                #   <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon
         | 
| 529 | 
            +
                #   Resource Name (ARN) or an ID for Outposts and sites throughout the
         | 
| 530 | 
            +
                #   Outposts Query API. To address backwards compatibility, the
         | 
| 531 | 
            +
                #   parameter names `OutpostID` or `SiteID` remain in use. Despite the
         | 
| 532 | 
            +
                #   parameter name, you can make the request with an ARN.
         | 
| 533 | 
            +
                #
         | 
| 534 | 
            +
                #    </note>
         | 
| 468 535 | 
             
                #   @return [String]
         | 
| 469 536 | 
             
                #
         | 
| 470 537 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/DeleteSiteInput AWS API Documentation
         | 
| @@ -574,6 +641,14 @@ module Aws::Outposts | |
| 574 641 | 
             
                #
         | 
| 575 642 | 
             
                # @!attribute [rw] outpost_id
         | 
| 576 643 | 
             
                #   The ID or the Amazon Resource Name (ARN) of the Outpost.
         | 
| 644 | 
            +
                #
         | 
| 645 | 
            +
                #   <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon
         | 
| 646 | 
            +
                #   Resource Name (ARN) or an ID for Outposts and sites throughout the
         | 
| 647 | 
            +
                #   Outposts Query API. To address backwards compatibility, the
         | 
| 648 | 
            +
                #   parameter names `OutpostID` or `SiteID` remain in use. Despite the
         | 
| 649 | 
            +
                #   parameter name, you can make the request with an ARN.
         | 
| 650 | 
            +
                #
         | 
| 651 | 
            +
                #    </note>
         | 
| 577 652 | 
             
                #   @return [String]
         | 
| 578 653 | 
             
                #
         | 
| 579 654 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetOutpostInput AWS API Documentation
         | 
| @@ -595,6 +670,14 @@ module Aws::Outposts | |
| 595 670 | 
             
                #
         | 
| 596 671 | 
             
                # @!attribute [rw] outpost_id
         | 
| 597 672 | 
             
                #   The ID or the Amazon Resource Name (ARN) of the Outpost.
         | 
| 673 | 
            +
                #
         | 
| 674 | 
            +
                #   <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon
         | 
| 675 | 
            +
                #   Resource Name (ARN) or an ID for Outposts and sites throughout the
         | 
| 676 | 
            +
                #   Outposts Query API. To address backwards compatibility, the
         | 
| 677 | 
            +
                #   parameter names `OutpostID` or `SiteID` remain in use. Despite the
         | 
| 678 | 
            +
                #   parameter name, you can make the request with an ARN.
         | 
| 679 | 
            +
                #
         | 
| 680 | 
            +
                #    </note>
         | 
| 598 681 | 
             
                #   @return [String]
         | 
| 599 682 | 
             
                #
         | 
| 600 683 | 
             
                # @!attribute [rw] next_token
         | 
| @@ -625,6 +708,14 @@ module Aws::Outposts | |
| 625 708 | 
             
                #
         | 
| 626 709 | 
             
                # @!attribute [rw] outpost_id
         | 
| 627 710 | 
             
                #   The ID of the Outpost.
         | 
| 711 | 
            +
                #
         | 
| 712 | 
            +
                #   <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon
         | 
| 713 | 
            +
                #   Resource Name (ARN) or an ID for Outposts and sites throughout the
         | 
| 714 | 
            +
                #   Outposts Query API. To address backwards compatibility, the
         | 
| 715 | 
            +
                #   parameter names `OutpostID` or `SiteID` remain in use. Despite the
         | 
| 716 | 
            +
                #   parameter name, you can make the request with an ARN.
         | 
| 717 | 
            +
                #
         | 
| 718 | 
            +
                #    </note>
         | 
| 628 719 | 
             
                #   @return [String]
         | 
| 629 720 | 
             
                #
         | 
| 630 721 | 
             
                # @!attribute [rw] outpost_arn
         | 
| @@ -664,6 +755,14 @@ module Aws::Outposts | |
| 664 755 | 
             
                #
         | 
| 665 756 | 
             
                # @!attribute [rw] site_id
         | 
| 666 757 | 
             
                #   The ID or the Amazon Resource Name (ARN) of the site.
         | 
| 758 | 
            +
                #
         | 
| 759 | 
            +
                #   <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon
         | 
| 760 | 
            +
                #   Resource Name (ARN) or an ID for Outposts and sites throughout the
         | 
| 761 | 
            +
                #   Outposts Query API. To address backwards compatibility, the
         | 
| 762 | 
            +
                #   parameter names `OutpostID` or `SiteID` remain in use. Despite the
         | 
| 763 | 
            +
                #   parameter name, you can make the request with an ARN.
         | 
| 764 | 
            +
                #
         | 
| 765 | 
            +
                #    </note>
         | 
| 667 766 | 
             
                #   @return [String]
         | 
| 668 767 | 
             
                #
         | 
| 669 768 | 
             
                # @!attribute [rw] address_type
         | 
| @@ -710,6 +809,14 @@ module Aws::Outposts | |
| 710 809 | 
             
                #
         | 
| 711 810 | 
             
                # @!attribute [rw] site_id
         | 
| 712 811 | 
             
                #   The ID or the Amazon Resource Name (ARN) of the site.
         | 
| 812 | 
            +
                #
         | 
| 813 | 
            +
                #   <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon
         | 
| 814 | 
            +
                #   Resource Name (ARN) or an ID for Outposts and sites throughout the
         | 
| 815 | 
            +
                #   Outposts Query API. To address backwards compatibility, the
         | 
| 816 | 
            +
                #   parameter names `OutpostID` or `SiteID` remain in use. Despite the
         | 
| 817 | 
            +
                #   parameter name, you can make the request with an ARN.
         | 
| 818 | 
            +
                #
         | 
| 819 | 
            +
                #    </note>
         | 
| 713 820 | 
             
                #   @return [String]
         | 
| 714 821 | 
             
                #
         | 
| 715 822 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetSiteInput AWS API Documentation
         | 
| @@ -815,6 +922,64 @@ module Aws::Outposts | |
| 815 922 | 
             
                  include Aws::Structure
         | 
| 816 923 | 
             
                end
         | 
| 817 924 |  | 
| 925 | 
            +
                # @note When making an API call, you may pass ListAssetsInput
         | 
| 926 | 
            +
                #   data as a hash:
         | 
| 927 | 
            +
                #
         | 
| 928 | 
            +
                #       {
         | 
| 929 | 
            +
                #         outpost_identifier: "OutpostIdentifier", # required
         | 
| 930 | 
            +
                #         host_id_filter: ["HostId"],
         | 
| 931 | 
            +
                #         max_results: 1,
         | 
| 932 | 
            +
                #         next_token: "Token",
         | 
| 933 | 
            +
                #       }
         | 
| 934 | 
            +
                #
         | 
| 935 | 
            +
                # @!attribute [rw] outpost_identifier
         | 
| 936 | 
            +
                #   The ID or the Amazon Resource Name (ARN) of the Outpost.
         | 
| 937 | 
            +
                #   @return [String]
         | 
| 938 | 
            +
                #
         | 
| 939 | 
            +
                # @!attribute [rw] host_id_filter
         | 
| 940 | 
            +
                #   A filter for the host ID of Dedicated Hosts on the Outpost.
         | 
| 941 | 
            +
                #
         | 
| 942 | 
            +
                #   Filter values are case sensitive. If you specify multiple values for
         | 
| 943 | 
            +
                #   a filter, the values are joined with an `OR`, and the request
         | 
| 944 | 
            +
                #   returns all results that match any of the specified values.
         | 
| 945 | 
            +
                #   @return [Array<String>]
         | 
| 946 | 
            +
                #
         | 
| 947 | 
            +
                # @!attribute [rw] max_results
         | 
| 948 | 
            +
                #   The maximum page size.
         | 
| 949 | 
            +
                #   @return [Integer]
         | 
| 950 | 
            +
                #
         | 
| 951 | 
            +
                # @!attribute [rw] next_token
         | 
| 952 | 
            +
                #   The pagination token.
         | 
| 953 | 
            +
                #   @return [String]
         | 
| 954 | 
            +
                #
         | 
| 955 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListAssetsInput AWS API Documentation
         | 
| 956 | 
            +
                #
         | 
| 957 | 
            +
                class ListAssetsInput < Struct.new(
         | 
| 958 | 
            +
                  :outpost_identifier,
         | 
| 959 | 
            +
                  :host_id_filter,
         | 
| 960 | 
            +
                  :max_results,
         | 
| 961 | 
            +
                  :next_token)
         | 
| 962 | 
            +
                  SENSITIVE = []
         | 
| 963 | 
            +
                  include Aws::Structure
         | 
| 964 | 
            +
                end
         | 
| 965 | 
            +
             | 
| 966 | 
            +
                # @!attribute [rw] assets
         | 
| 967 | 
            +
                #   Information about hardware assets.
         | 
| 968 | 
            +
                #   @return [Array<Types::AssetInfo>]
         | 
| 969 | 
            +
                #
         | 
| 970 | 
            +
                # @!attribute [rw] next_token
         | 
| 971 | 
            +
                #   The pagination token.
         | 
| 972 | 
            +
                #   @return [String]
         | 
| 973 | 
            +
                #
         | 
| 974 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListAssetsOutput AWS API Documentation
         | 
| 975 | 
            +
                #
         | 
| 976 | 
            +
                class ListAssetsOutput < Struct.new(
         | 
| 977 | 
            +
                  :assets,
         | 
| 978 | 
            +
                  :next_token)
         | 
| 979 | 
            +
                  SENSITIVE = []
         | 
| 980 | 
            +
                  include Aws::Structure
         | 
| 981 | 
            +
                end
         | 
| 982 | 
            +
             | 
| 818 983 | 
             
                # @note When making an API call, you may pass ListCatalogItemsInput
         | 
| 819 984 | 
             
                #   data as a hash:
         | 
| 820 985 | 
             
                #
         | 
| @@ -1013,6 +1178,9 @@ module Aws::Outposts | |
| 1013 1178 | 
             
                #       {
         | 
| 1014 1179 | 
             
                #         next_token: "Token",
         | 
| 1015 1180 | 
             
                #         max_results: 1,
         | 
| 1181 | 
            +
                #         operating_address_country_code_filter: ["CountryCode"],
         | 
| 1182 | 
            +
                #         operating_address_state_or_region_filter: ["StateOrRegion"],
         | 
| 1183 | 
            +
                #         operating_address_city_filter: ["City"],
         | 
| 1016 1184 | 
             
                #       }
         | 
| 1017 1185 | 
             
                #
         | 
| 1018 1186 | 
             
                # @!attribute [rw] next_token
         | 
| @@ -1023,11 +1191,38 @@ module Aws::Outposts | |
| 1023 1191 | 
             
                #   The maximum page size.
         | 
| 1024 1192 | 
             
                #   @return [Integer]
         | 
| 1025 1193 | 
             
                #
         | 
| 1194 | 
            +
                # @!attribute [rw] operating_address_country_code_filter
         | 
| 1195 | 
            +
                #   A filter for the country code of the Outpost site.
         | 
| 1196 | 
            +
                #
         | 
| 1197 | 
            +
                #   Filter values are case sensitive. If you specify multiple values for
         | 
| 1198 | 
            +
                #   a filter, the values are joined with an `OR`, and the request
         | 
| 1199 | 
            +
                #   returns all results that match any of the specified values.
         | 
| 1200 | 
            +
                #   @return [Array<String>]
         | 
| 1201 | 
            +
                #
         | 
| 1202 | 
            +
                # @!attribute [rw] operating_address_state_or_region_filter
         | 
| 1203 | 
            +
                #   A filter for the state/region of the Outpost site.
         | 
| 1204 | 
            +
                #
         | 
| 1205 | 
            +
                #   Filter values are case sensitive. If you specify multiple values for
         | 
| 1206 | 
            +
                #   a filter, the values are joined with an `OR`, and the request
         | 
| 1207 | 
            +
                #   returns all results that match any of the specified values.
         | 
| 1208 | 
            +
                #   @return [Array<String>]
         | 
| 1209 | 
            +
                #
         | 
| 1210 | 
            +
                # @!attribute [rw] operating_address_city_filter
         | 
| 1211 | 
            +
                #   A filter for the city of the Outpost site.
         | 
| 1212 | 
            +
                #
         | 
| 1213 | 
            +
                #   Filter values are case sensitive. If you specify multiple values for
         | 
| 1214 | 
            +
                #   a filter, the values are joined with an `OR`, and the request
         | 
| 1215 | 
            +
                #   returns all results that match any of the specified values.
         | 
| 1216 | 
            +
                #   @return [Array<String>]
         | 
| 1217 | 
            +
                #
         | 
| 1026 1218 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListSitesInput AWS API Documentation
         | 
| 1027 1219 | 
             
                #
         | 
| 1028 1220 | 
             
                class ListSitesInput < Struct.new(
         | 
| 1029 1221 | 
             
                  :next_token,
         | 
| 1030 | 
            -
                  :max_results | 
| 1222 | 
            +
                  :max_results,
         | 
| 1223 | 
            +
                  :operating_address_country_code_filter,
         | 
| 1224 | 
            +
                  :operating_address_state_or_region_filter,
         | 
| 1225 | 
            +
                  :operating_address_city_filter)
         | 
| 1031 1226 | 
             
                  SENSITIVE = []
         | 
| 1032 1227 | 
             
                  include Aws::Structure
         | 
| 1033 1228 | 
             
                end
         | 
| @@ -1519,6 +1714,14 @@ module Aws::Outposts | |
| 1519 1714 | 
             
                #
         | 
| 1520 1715 | 
             
                # @!attribute [rw] outpost_id
         | 
| 1521 1716 | 
             
                #   The ID or the Amazon Resource Name (ARN) of the Outpost.
         | 
| 1717 | 
            +
                #
         | 
| 1718 | 
            +
                #   <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon
         | 
| 1719 | 
            +
                #   Resource Name (ARN) or an ID for Outposts and sites throughout the
         | 
| 1720 | 
            +
                #   Outposts Query API. To address backwards compatibility, the
         | 
| 1721 | 
            +
                #   parameter names `OutpostID` or `SiteID` remain in use. Despite the
         | 
| 1722 | 
            +
                #   parameter name, you can make the request with an ARN.
         | 
| 1723 | 
            +
                #
         | 
| 1724 | 
            +
                #    </note>
         | 
| 1522 1725 | 
             
                #   @return [String]
         | 
| 1523 1726 | 
             
                #
         | 
| 1524 1727 | 
             
                # @!attribute [rw] name
         | 
| @@ -1579,6 +1782,14 @@ module Aws::Outposts | |
| 1579 1782 | 
             
                #
         | 
| 1580 1783 | 
             
                # @!attribute [rw] site_id
         | 
| 1581 1784 | 
             
                #   The ID or the Amazon Resource Name (ARN) of the site.
         | 
| 1785 | 
            +
                #
         | 
| 1786 | 
            +
                #   <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon
         | 
| 1787 | 
            +
                #   Resource Name (ARN) or an ID for Outposts and sites throughout the
         | 
| 1788 | 
            +
                #   Outposts Query API. To address backwards compatibility, the
         | 
| 1789 | 
            +
                #   parameter names `OutpostID` or `SiteID` remain in use. Despite the
         | 
| 1790 | 
            +
                #   parameter name, you can make the request with an ARN.
         | 
| 1791 | 
            +
                #
         | 
| 1792 | 
            +
                #    </note>
         | 
| 1582 1793 | 
             
                #   @return [String]
         | 
| 1583 1794 | 
             
                #
         | 
| 1584 1795 | 
             
                # @!attribute [rw] address_type
         | 
| @@ -1628,6 +1839,14 @@ module Aws::Outposts | |
| 1628 1839 | 
             
                #
         | 
| 1629 1840 | 
             
                # @!attribute [rw] site_id
         | 
| 1630 1841 | 
             
                #   The ID or the Amazon Resource Name (ARN) of the site.
         | 
| 1842 | 
            +
                #
         | 
| 1843 | 
            +
                #   <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon
         | 
| 1844 | 
            +
                #   Resource Name (ARN) or an ID for Outposts and sites throughout the
         | 
| 1845 | 
            +
                #   Outposts Query API. To address backwards compatibility, the
         | 
| 1846 | 
            +
                #   parameter names `OutpostID` or `SiteID` remain in use. Despite the
         | 
| 1847 | 
            +
                #   parameter name, you can make the request with an ARN.
         | 
| 1848 | 
            +
                #
         | 
| 1849 | 
            +
                #    </note>
         | 
| 1631 1850 | 
             
                #   @return [String]
         | 
| 1632 1851 | 
             
                #
         | 
| 1633 1852 | 
             
                # @!attribute [rw] name
         | 
| @@ -1683,6 +1902,14 @@ module Aws::Outposts | |
| 1683 1902 | 
             
                #
         | 
| 1684 1903 | 
             
                # @!attribute [rw] site_id
         | 
| 1685 1904 | 
             
                #   The ID or the Amazon Resource Name (ARN) of the site.
         | 
| 1905 | 
            +
                #
         | 
| 1906 | 
            +
                #   <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon
         | 
| 1907 | 
            +
                #   Resource Name (ARN) or an ID for Outposts and sites throughout the
         | 
| 1908 | 
            +
                #   Outposts Query API. To address backwards compatibility, the
         | 
| 1909 | 
            +
                #   parameter names `OutpostID` or `SiteID` remain in use. Despite the
         | 
| 1910 | 
            +
                #   parameter name, you can make the request with an ARN.
         | 
| 1911 | 
            +
                #
         | 
| 1912 | 
            +
                #    </note>
         | 
| 1686 1913 | 
             
                #   @return [String]
         | 
| 1687 1914 | 
             
                #
         | 
| 1688 1915 | 
             
                # @!attribute [rw] power_draw_kva
         | 
    
        data/lib/aws-sdk-outposts.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: aws-sdk-outposts
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 1. | 
| 4 | 
            +
              version: 1.32.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-05-12 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: aws-sdk-core
         |