aws-sdk-outposts 1.35.0 → 1.37.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-outposts/client.rb +96 -202
- data/lib/aws-sdk-outposts/client_api.rb +7 -0
- data/lib/aws-sdk-outposts/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-outposts/endpoint_provider.rb +111 -0
- data/lib/aws-sdk-outposts/endpoints.rb +379 -0
- data/lib/aws-sdk-outposts/plugins/endpoints.rb +120 -0
- data/lib/aws-sdk-outposts/types.rb +67 -179
- data/lib/aws-sdk-outposts.rb +5 -1
- metadata +8 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e06817826d0be069cfd0167944502033e7b6aa7d3c60401dc56467514e576556
|
4
|
+
data.tar.gz: 307056d88ab5ed02c8b7f23a9e77b0c7ca30b7ce641022e06cfe6bf3d6a2f8ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a355c1ca6151cb93448350a04e7d9cc25b8c5935df89754efe17bd16768c5c0b419eb5d58145c7104c923a83dd25f517b455bb7188984a3d84a7a563add1c77
|
7
|
+
data.tar.gz: 537d3423e8c8d1861db5fe26b700433dc28908e52d8deea6b804c3e62dfc100f113e4b2d044cb115a8b9a38984d503bb6b463981384186364ced069ecfa5a391
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.37.0 (2022-10-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.36.0 (2022-10-05)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds the Asset state information to the ListAssets response. The ListAssets request supports filtering on Asset state.
|
13
|
+
|
4
14
|
1.35.0 (2022-07-14)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.37.0
|
@@ -30,7 +30,7 @@ require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
30
30
|
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
31
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
33
|
-
require 'aws-sdk-core/plugins/
|
33
|
+
require 'aws-sdk-core/plugins/sign.rb'
|
34
34
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
35
35
|
|
36
36
|
Aws::Plugins::GlobalConfiguration.add_identifier(:outposts)
|
@@ -79,8 +79,9 @@ module Aws::Outposts
|
|
79
79
|
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
80
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
81
|
add_plugin(Aws::Plugins::RecursionDetection)
|
82
|
-
add_plugin(Aws::Plugins::
|
82
|
+
add_plugin(Aws::Plugins::Sign)
|
83
83
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
84
|
+
add_plugin(Aws::Outposts::Plugins::Endpoints)
|
84
85
|
|
85
86
|
# @overload initialize(options)
|
86
87
|
# @param [Hash] options
|
@@ -287,6 +288,19 @@ module Aws::Outposts
|
|
287
288
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
288
289
|
# requests are made, and retries are disabled.
|
289
290
|
#
|
291
|
+
# @option options [Aws::TokenProvider] :token_provider
|
292
|
+
# A Bearer Token Provider. This can be an instance of any one of the
|
293
|
+
# following classes:
|
294
|
+
#
|
295
|
+
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
296
|
+
# tokens.
|
297
|
+
#
|
298
|
+
# * `Aws::SSOTokenProvider` - Used for loading tokens from AWS SSO using an
|
299
|
+
# access token generated from `aws login`.
|
300
|
+
#
|
301
|
+
# When `:token_provider` is not configured directly, the `Aws::TokenProviderChain`
|
302
|
+
# will be used to search for tokens configured for your profile in shared configuration files.
|
303
|
+
#
|
290
304
|
# @option options [Boolean] :use_dualstack_endpoint
|
291
305
|
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
292
306
|
# will be used if available.
|
@@ -300,6 +314,9 @@ module Aws::Outposts
|
|
300
314
|
# When `true`, request parameters are validated before
|
301
315
|
# sending the request.
|
302
316
|
#
|
317
|
+
# @option options [Aws::Outposts::EndpointProvider] :endpoint_provider
|
318
|
+
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::Outposts::EndpointParameters`
|
319
|
+
#
|
303
320
|
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
304
321
|
# requests through. Formatted like 'http://proxy.com:123'.
|
305
322
|
#
|
@@ -351,10 +368,10 @@ module Aws::Outposts
|
|
351
368
|
|
352
369
|
# @!group API Operations
|
353
370
|
|
354
|
-
# Cancels
|
371
|
+
# Cancels the specified order for an Outpost.
|
355
372
|
#
|
356
373
|
# @option params [required, String] :order_id
|
357
|
-
# The ID of the order
|
374
|
+
# The ID of the order.
|
358
375
|
#
|
359
376
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
360
377
|
#
|
@@ -382,10 +399,10 @@ module Aws::Outposts
|
|
382
399
|
# The line items that make up the order.
|
383
400
|
#
|
384
401
|
# @option params [required, String] :payment_option
|
385
|
-
# The payment option
|
402
|
+
# The payment option.
|
386
403
|
#
|
387
404
|
# @option params [String] :payment_term
|
388
|
-
# The payment terms
|
405
|
+
# The payment terms.
|
389
406
|
#
|
390
407
|
# @return [Types::CreateOrderOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
391
408
|
#
|
@@ -402,7 +419,7 @@ module Aws::Outposts
|
|
402
419
|
# },
|
403
420
|
# ],
|
404
421
|
# payment_option: "ALL_UPFRONT", # required, accepts ALL_UPFRONT, NO_UPFRONT, PARTIAL_UPFRONT
|
405
|
-
# payment_term: "THREE_YEARS", # accepts THREE_YEARS
|
422
|
+
# payment_term: "THREE_YEARS", # accepts THREE_YEARS, ONE_YEAR
|
406
423
|
# })
|
407
424
|
#
|
408
425
|
# @example Response structure
|
@@ -436,7 +453,7 @@ module Aws::Outposts
|
|
436
453
|
|
437
454
|
# Creates an Outpost.
|
438
455
|
#
|
439
|
-
# You can specify
|
456
|
+
# You can specify either an Availability one or an AZ ID.
|
440
457
|
#
|
441
458
|
# @option params [required, String] :name
|
442
459
|
# The name of the Outpost.
|
@@ -447,14 +464,6 @@ module Aws::Outposts
|
|
447
464
|
# @option params [required, String] :site_id
|
448
465
|
# The ID or the Amazon Resource Name (ARN) of the site.
|
449
466
|
#
|
450
|
-
# <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon Resource
|
451
|
-
# Name (ARN) or an ID for Outposts and sites throughout the Outposts
|
452
|
-
# Query API. To address backwards compatibility, the parameter names
|
453
|
-
# `OutpostID` or `SiteID` remain in use. Despite the parameter name, you
|
454
|
-
# can make the request with an ARN.
|
455
|
-
#
|
456
|
-
# </note>
|
457
|
-
#
|
458
467
|
# @option params [String] :availability_zone
|
459
468
|
# The Availability Zone.
|
460
469
|
#
|
@@ -629,19 +638,11 @@ module Aws::Outposts
|
|
629
638
|
req.send_request(options)
|
630
639
|
end
|
631
640
|
|
632
|
-
# Deletes the Outpost.
|
641
|
+
# Deletes the specified Outpost.
|
633
642
|
#
|
634
643
|
# @option params [required, String] :outpost_id
|
635
644
|
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
636
645
|
#
|
637
|
-
# <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon Resource
|
638
|
-
# Name (ARN) or an ID for Outposts and sites throughout the Outposts
|
639
|
-
# Query API. To address backwards compatibility, the parameter names
|
640
|
-
# `OutpostID` or `SiteID` remain in use. Despite the parameter name, you
|
641
|
-
# can make the request with an ARN.
|
642
|
-
#
|
643
|
-
# </note>
|
644
|
-
#
|
645
646
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
646
647
|
#
|
647
648
|
# @example Request syntax with placeholder values
|
@@ -659,19 +660,11 @@ module Aws::Outposts
|
|
659
660
|
req.send_request(options)
|
660
661
|
end
|
661
662
|
|
662
|
-
# Deletes the site.
|
663
|
+
# Deletes the specified site.
|
663
664
|
#
|
664
665
|
# @option params [required, String] :site_id
|
665
666
|
# The ID or the Amazon Resource Name (ARN) of the site.
|
666
667
|
#
|
667
|
-
# <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon Resource
|
668
|
-
# Name (ARN) or an ID for Outposts and sites throughout the Outposts
|
669
|
-
# Query API. To address backwards compatibility, the parameter names
|
670
|
-
# `OutpostID` or `SiteID` remain in use. Despite the parameter name, you
|
671
|
-
# can make the request with an ARN.
|
672
|
-
#
|
673
|
-
# </note>
|
674
|
-
#
|
675
668
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
676
669
|
#
|
677
670
|
# @example Request syntax with placeholder values
|
@@ -689,7 +682,7 @@ module Aws::Outposts
|
|
689
682
|
req.send_request(options)
|
690
683
|
end
|
691
684
|
|
692
|
-
# Gets information about
|
685
|
+
# Gets information about the specified catalog item.
|
693
686
|
#
|
694
687
|
# @option params [required, String] :catalog_item_id
|
695
688
|
# The ID of the catalog item.
|
@@ -732,7 +725,7 @@ module Aws::Outposts
|
|
732
725
|
#
|
733
726
|
# </note>
|
734
727
|
#
|
735
|
-
# Gets information about
|
728
|
+
# Gets information about the specified connection.
|
736
729
|
#
|
737
730
|
# Use CloudTrail to monitor this action or Amazon Web Services managed
|
738
731
|
# policy for Amazon Web Services Outposts to secure it. For more
|
@@ -747,7 +740,7 @@ module Aws::Outposts
|
|
747
740
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/logging-using-cloudtrail.html
|
748
741
|
#
|
749
742
|
# @option params [required, String] :connection_id
|
750
|
-
# The ID of the connection
|
743
|
+
# The ID of the connection.
|
751
744
|
#
|
752
745
|
# @return [Types::GetConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
753
746
|
#
|
@@ -780,7 +773,7 @@ module Aws::Outposts
|
|
780
773
|
req.send_request(options)
|
781
774
|
end
|
782
775
|
|
783
|
-
# Gets
|
776
|
+
# Gets information about the specified order.
|
784
777
|
#
|
785
778
|
# @option params [required, String] :order_id
|
786
779
|
# The ID of the order.
|
@@ -829,14 +822,6 @@ module Aws::Outposts
|
|
829
822
|
# @option params [required, String] :outpost_id
|
830
823
|
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
831
824
|
#
|
832
|
-
# <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon Resource
|
833
|
-
# Name (ARN) or an ID for Outposts and sites throughout the Outposts
|
834
|
-
# Query API. To address backwards compatibility, the parameter names
|
835
|
-
# `OutpostID` or `SiteID` remain in use. Despite the parameter name, you
|
836
|
-
# can make the request with an ARN.
|
837
|
-
#
|
838
|
-
# </note>
|
839
|
-
#
|
840
825
|
# @return [Types::GetOutpostOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
841
826
|
#
|
842
827
|
# * {Types::GetOutpostOutput#outpost #outpost} => Types::Outpost
|
@@ -877,14 +862,6 @@ module Aws::Outposts
|
|
877
862
|
# @option params [required, String] :outpost_id
|
878
863
|
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
879
864
|
#
|
880
|
-
# <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon Resource
|
881
|
-
# Name (ARN) or an ID for Outposts and sites throughout the Outposts
|
882
|
-
# Query API. To address backwards compatibility, the parameter names
|
883
|
-
# `OutpostID` or `SiteID` remain in use. Despite the parameter name, you
|
884
|
-
# can make the request with an ARN.
|
885
|
-
#
|
886
|
-
# </note>
|
887
|
-
#
|
888
865
|
# @option params [String] :next_token
|
889
866
|
# The pagination token.
|
890
867
|
#
|
@@ -930,14 +907,6 @@ module Aws::Outposts
|
|
930
907
|
# @option params [required, String] :site_id
|
931
908
|
# The ID or the Amazon Resource Name (ARN) of the site.
|
932
909
|
#
|
933
|
-
# <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon Resource
|
934
|
-
# Name (ARN) or an ID for Outposts and sites throughout the Outposts
|
935
|
-
# Query API. To address backwards compatibility, the parameter names
|
936
|
-
# `OutpostID` or `SiteID` remain in use. Despite the parameter name, you
|
937
|
-
# can make the request with an ARN.
|
938
|
-
#
|
939
|
-
# </note>
|
940
|
-
#
|
941
910
|
# @return [Types::GetSiteOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
942
911
|
#
|
943
912
|
# * {Types::GetSiteOutput#site #site} => Types::Site
|
@@ -980,19 +949,11 @@ module Aws::Outposts
|
|
980
949
|
req.send_request(options)
|
981
950
|
end
|
982
951
|
|
983
|
-
# Gets the site address.
|
952
|
+
# Gets the site address of the specified site.
|
984
953
|
#
|
985
954
|
# @option params [required, String] :site_id
|
986
955
|
# The ID or the Amazon Resource Name (ARN) of the site.
|
987
956
|
#
|
988
|
-
# <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon Resource
|
989
|
-
# Name (ARN) or an ID for Outposts and sites throughout the Outposts
|
990
|
-
# Query API. To address backwards compatibility, the parameter names
|
991
|
-
# `OutpostID` or `SiteID` remain in use. Despite the parameter name, you
|
992
|
-
# can make the request with an ARN.
|
993
|
-
#
|
994
|
-
# </note>
|
995
|
-
#
|
996
957
|
# @option params [required, String] :address_type
|
997
958
|
# The type of the address you request.
|
998
959
|
#
|
@@ -1034,20 +995,19 @@ module Aws::Outposts
|
|
1034
995
|
req.send_request(options)
|
1035
996
|
end
|
1036
997
|
|
1037
|
-
# Lists the hardware assets
|
1038
|
-
#
|
1039
|
-
#
|
1040
|
-
#
|
998
|
+
# Lists the hardware assets for the specified Outpost.
|
999
|
+
#
|
1000
|
+
# Use filters to return specific results. If you specify multiple
|
1001
|
+
# filters, the results include only the resources that match all of the
|
1002
|
+
# specified filters. For a filter where you can specify multiple values,
|
1003
|
+
# the results include items that match any of the values that you
|
1004
|
+
# specify for the filter.
|
1041
1005
|
#
|
1042
1006
|
# @option params [required, String] :outpost_identifier
|
1043
1007
|
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
1044
1008
|
#
|
1045
1009
|
# @option params [Array<String>] :host_id_filter
|
1046
|
-
#
|
1047
|
-
#
|
1048
|
-
# Filter values are case sensitive. If you specify multiple values for a
|
1049
|
-
# filter, the values are joined with an `OR`, and the request returns
|
1050
|
-
# all results that match any of the specified values.
|
1010
|
+
# Filters the results by the host ID of a Dedicated Host.
|
1051
1011
|
#
|
1052
1012
|
# @option params [Integer] :max_results
|
1053
1013
|
# The maximum page size.
|
@@ -1055,6 +1015,9 @@ module Aws::Outposts
|
|
1055
1015
|
# @option params [String] :next_token
|
1056
1016
|
# The pagination token.
|
1057
1017
|
#
|
1018
|
+
# @option params [Array<String>] :status_filter
|
1019
|
+
# Filters the results by state.
|
1020
|
+
#
|
1058
1021
|
# @return [Types::ListAssetsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1059
1022
|
#
|
1060
1023
|
# * {Types::ListAssetsOutput#assets #assets} => Array<Types::AssetInfo>
|
@@ -1069,6 +1032,7 @@ module Aws::Outposts
|
|
1069
1032
|
# host_id_filter: ["HostId"],
|
1070
1033
|
# max_results: 1,
|
1071
1034
|
# next_token: "Token",
|
1035
|
+
# status_filter: ["ACTIVE"], # accepts ACTIVE, RETIRING
|
1072
1036
|
# })
|
1073
1037
|
#
|
1074
1038
|
# @example Response structure
|
@@ -1078,6 +1042,7 @@ module Aws::Outposts
|
|
1078
1042
|
# resp.assets[0].rack_id #=> String
|
1079
1043
|
# resp.assets[0].asset_type #=> String, one of "COMPUTE"
|
1080
1044
|
# resp.assets[0].compute_attributes.host_id #=> String
|
1045
|
+
# resp.assets[0].compute_attributes.state #=> String, one of "ACTIVE", "ISOLATED", "RETIRING"
|
1081
1046
|
# resp.assets[0].asset_location.rack_elevation #=> Float
|
1082
1047
|
# resp.next_token #=> String
|
1083
1048
|
#
|
@@ -1090,13 +1055,13 @@ module Aws::Outposts
|
|
1090
1055
|
req.send_request(options)
|
1091
1056
|
end
|
1092
1057
|
|
1093
|
-
# Lists the items in the catalog.
|
1094
|
-
# a more specific list of results. Use filters to match an item class,
|
1095
|
-
# storage option, or EC2 family.
|
1058
|
+
# Lists the items in the catalog.
|
1096
1059
|
#
|
1097
|
-
#
|
1098
|
-
#
|
1099
|
-
# filters.
|
1060
|
+
# Use filters to return specific results. If you specify multiple
|
1061
|
+
# filters, the results include only the resources that match all of the
|
1062
|
+
# specified filters. For a filter where you can specify multiple values,
|
1063
|
+
# the results include items that match any of the values that you
|
1064
|
+
# specify for the filter.
|
1100
1065
|
#
|
1101
1066
|
# @option params [String] :next_token
|
1102
1067
|
# The pagination token.
|
@@ -1105,25 +1070,13 @@ module Aws::Outposts
|
|
1105
1070
|
# The maximum page size.
|
1106
1071
|
#
|
1107
1072
|
# @option params [Array<String>] :item_class_filter
|
1108
|
-
#
|
1109
|
-
#
|
1110
|
-
# Filter values are case sensitive. If you specify multiple values for a
|
1111
|
-
# filter, the values are joined with an `OR`, and the request returns
|
1112
|
-
# all results that match any of the specified values.
|
1073
|
+
# Filters the results by item class.
|
1113
1074
|
#
|
1114
1075
|
# @option params [Array<String>] :supported_storage_filter
|
1115
|
-
#
|
1116
|
-
#
|
1117
|
-
# Filter values are case sensitive. If you specify multiple values for a
|
1118
|
-
# filter, the values are joined with an `OR`, and the request returns
|
1119
|
-
# all results that match any of the specified values.
|
1076
|
+
# Filters the results by storage option.
|
1120
1077
|
#
|
1121
1078
|
# @option params [Array<String>] :ec2_family_filter
|
1122
|
-
#
|
1123
|
-
#
|
1124
|
-
# Filter values are case sensitive. If you specify multiple values for a
|
1125
|
-
# filter, the values are joined with an `OR`, and the request returns
|
1126
|
-
# all results that match any of the specified values.
|
1079
|
+
# Filters the results by EC2 family (for example, M5).
|
1127
1080
|
#
|
1128
1081
|
# @return [Types::ListCatalogItemsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1129
1082
|
#
|
@@ -1168,9 +1121,7 @@ module Aws::Outposts
|
|
1168
1121
|
req.send_request(options)
|
1169
1122
|
end
|
1170
1123
|
|
1171
|
-
# Lists the Outpost orders for your Amazon Web Services account.
|
1172
|
-
# filter your request by Outpost to return a more specific list of
|
1173
|
-
# results.
|
1124
|
+
# Lists the Outpost orders for your Amazon Web Services account.
|
1174
1125
|
#
|
1175
1126
|
# @option params [String] :outpost_identifier_filter
|
1176
1127
|
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
@@ -1218,14 +1169,13 @@ module Aws::Outposts
|
|
1218
1169
|
req.send_request(options)
|
1219
1170
|
end
|
1220
1171
|
|
1221
|
-
# Lists the Outposts for your Amazon Web Services account.
|
1222
|
-
# to your request to return a more specific list of results. Use filters
|
1223
|
-
# to match an Outpost lifecycle status, Availability Zone
|
1224
|
-
# (`us-east-1a`), and AZ ID (`use1-az1`).
|
1172
|
+
# Lists the Outposts for your Amazon Web Services account.
|
1225
1173
|
#
|
1226
|
-
#
|
1227
|
-
#
|
1228
|
-
# filters.
|
1174
|
+
# Use filters to return specific results. If you specify multiple
|
1175
|
+
# filters, the results include only the resources that match all of the
|
1176
|
+
# specified filters. For a filter where you can specify multiple values,
|
1177
|
+
# the results include items that match any of the values that you
|
1178
|
+
# specify for the filter.
|
1229
1179
|
#
|
1230
1180
|
# @option params [String] :next_token
|
1231
1181
|
# The pagination token.
|
@@ -1234,25 +1184,13 @@ module Aws::Outposts
|
|
1234
1184
|
# The maximum page size.
|
1235
1185
|
#
|
1236
1186
|
# @option params [Array<String>] :life_cycle_status_filter
|
1237
|
-
#
|
1238
|
-
#
|
1239
|
-
# Filter values are case sensitive. If you specify multiple values for a
|
1240
|
-
# filter, the values are joined with an `OR`, and the request returns
|
1241
|
-
# all results that match any of the specified values.
|
1187
|
+
# Filters the results by the lifecycle status.
|
1242
1188
|
#
|
1243
1189
|
# @option params [Array<String>] :availability_zone_filter
|
1244
|
-
#
|
1245
|
-
#
|
1246
|
-
# Filter values are case sensitive. If you specify multiple values for a
|
1247
|
-
# filter, the values are joined with an `OR`, and the request returns
|
1248
|
-
# all results that match any of the specified values.
|
1190
|
+
# Filters the results by Availability Zone (for example, `us-east-1a`).
|
1249
1191
|
#
|
1250
1192
|
# @option params [Array<String>] :availability_zone_id_filter
|
1251
|
-
#
|
1252
|
-
#
|
1253
|
-
# Filter values are case sensitive. If you specify multiple values for a
|
1254
|
-
# filter, the values are joined with an `OR`, and the request returns
|
1255
|
-
# all results that match any of the specified values.
|
1193
|
+
# Filters the results by AZ ID (for example, `use1-az1`).
|
1256
1194
|
#
|
1257
1195
|
# @return [Types::ListOutpostsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1258
1196
|
#
|
@@ -1298,14 +1236,14 @@ module Aws::Outposts
|
|
1298
1236
|
req.send_request(options)
|
1299
1237
|
end
|
1300
1238
|
|
1301
|
-
# Lists the Outpost sites for your Amazon Web Services account.
|
1302
|
-
#
|
1303
|
-
# list of results. Use filters to match site city, country code, or
|
1304
|
-
# state/region of the operating address.
|
1239
|
+
# Lists the Outpost sites for your Amazon Web Services account. Use
|
1240
|
+
# filters to return specific results.
|
1305
1241
|
#
|
1306
|
-
#
|
1307
|
-
#
|
1308
|
-
# filters.
|
1242
|
+
# Use filters to return specific results. If you specify multiple
|
1243
|
+
# filters, the results include only the resources that match all of the
|
1244
|
+
# specified filters. For a filter where you can specify multiple values,
|
1245
|
+
# the results include items that match any of the values that you
|
1246
|
+
# specify for the filter.
|
1309
1247
|
#
|
1310
1248
|
# @option params [String] :next_token
|
1311
1249
|
# The pagination token.
|
@@ -1314,25 +1252,13 @@ module Aws::Outposts
|
|
1314
1252
|
# The maximum page size.
|
1315
1253
|
#
|
1316
1254
|
# @option params [Array<String>] :operating_address_country_code_filter
|
1317
|
-
#
|
1318
|
-
#
|
1319
|
-
# Filter values are case sensitive. If you specify multiple values for a
|
1320
|
-
# filter, the values are joined with an `OR`, and the request returns
|
1321
|
-
# all results that match any of the specified values.
|
1255
|
+
# Filters the results by country code.
|
1322
1256
|
#
|
1323
1257
|
# @option params [Array<String>] :operating_address_state_or_region_filter
|
1324
|
-
#
|
1325
|
-
#
|
1326
|
-
# Filter values are case sensitive. If you specify multiple values for a
|
1327
|
-
# filter, the values are joined with an `OR`, and the request returns
|
1328
|
-
# all results that match any of the specified values.
|
1258
|
+
# Filters the results by state or region.
|
1329
1259
|
#
|
1330
1260
|
# @option params [Array<String>] :operating_address_city_filter
|
1331
|
-
#
|
1332
|
-
#
|
1333
|
-
# Filter values are case sensitive. If you specify multiple values for a
|
1334
|
-
# filter, the values are joined with an `OR`, and the request returns
|
1335
|
-
# all results that match any of the specified values.
|
1261
|
+
# Filters the results by city.
|
1336
1262
|
#
|
1337
1263
|
# @return [Types::ListSitesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1338
1264
|
#
|
@@ -1531,14 +1457,6 @@ module Aws::Outposts
|
|
1531
1457
|
# @option params [required, String] :outpost_id
|
1532
1458
|
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
1533
1459
|
#
|
1534
|
-
# <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon Resource
|
1535
|
-
# Name (ARN) or an ID for Outposts and sites throughout the Outposts
|
1536
|
-
# Query API. To address backwards compatibility, the parameter names
|
1537
|
-
# `OutpostID` or `SiteID` remain in use. Despite the parameter name, you
|
1538
|
-
# can make the request with an ARN.
|
1539
|
-
#
|
1540
|
-
# </note>
|
1541
|
-
#
|
1542
1460
|
# @option params [String] :name
|
1543
1461
|
# The name of the Outpost.
|
1544
1462
|
#
|
@@ -1586,19 +1504,11 @@ module Aws::Outposts
|
|
1586
1504
|
req.send_request(options)
|
1587
1505
|
end
|
1588
1506
|
|
1589
|
-
# Updates the site.
|
1507
|
+
# Updates the specified site.
|
1590
1508
|
#
|
1591
1509
|
# @option params [required, String] :site_id
|
1592
1510
|
# The ID or the Amazon Resource Name (ARN) of the site.
|
1593
1511
|
#
|
1594
|
-
# <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon Resource
|
1595
|
-
# Name (ARN) or an ID for Outposts and sites throughout the Outposts
|
1596
|
-
# Query API. To address backwards compatibility, the parameter names
|
1597
|
-
# `OutpostID` or `SiteID` remain in use. Despite the parameter name, you
|
1598
|
-
# can make the request with an ARN.
|
1599
|
-
#
|
1600
|
-
# </note>
|
1601
|
-
#
|
1602
1512
|
# @option params [String] :name
|
1603
1513
|
# The name of the site.
|
1604
1514
|
#
|
@@ -1653,10 +1563,10 @@ module Aws::Outposts
|
|
1653
1563
|
req.send_request(options)
|
1654
1564
|
end
|
1655
1565
|
|
1656
|
-
# Updates the site
|
1566
|
+
# Updates the address of the specified site.
|
1657
1567
|
#
|
1658
|
-
#
|
1659
|
-
# for the order to complete or cancel the order.
|
1568
|
+
# You can't update a site address if there is an order in progress. You
|
1569
|
+
# must wait for the order to complete or cancel the order.
|
1660
1570
|
#
|
1661
1571
|
# You can update the operating address before you place an order at the
|
1662
1572
|
# site, or after all Outposts that belong to the site have been
|
@@ -1665,14 +1575,6 @@ module Aws::Outposts
|
|
1665
1575
|
# @option params [required, String] :site_id
|
1666
1576
|
# The ID or the Amazon Resource Name (ARN) of the site.
|
1667
1577
|
#
|
1668
|
-
# <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon Resource
|
1669
|
-
# Name (ARN) or an ID for Outposts and sites throughout the Outposts
|
1670
|
-
# Query API. To address backwards compatibility, the parameter names
|
1671
|
-
# `OutpostID` or `SiteID` remain in use. Despite the parameter name, you
|
1672
|
-
# can make the request with an ARN.
|
1673
|
-
#
|
1674
|
-
# </note>
|
1675
|
-
#
|
1676
1578
|
# @option params [required, String] :address_type
|
1677
1579
|
# The type of the address.
|
1678
1580
|
#
|
@@ -1743,28 +1645,20 @@ module Aws::Outposts
|
|
1743
1645
|
# @option params [required, String] :site_id
|
1744
1646
|
# The ID or the Amazon Resource Name (ARN) of the site.
|
1745
1647
|
#
|
1746
|
-
# <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon Resource
|
1747
|
-
# Name (ARN) or an ID for Outposts and sites throughout the Outposts
|
1748
|
-
# Query API. To address backwards compatibility, the parameter names
|
1749
|
-
# `OutpostID` or `SiteID` remain in use. Despite the parameter name, you
|
1750
|
-
# can make the request with an ARN.
|
1751
|
-
#
|
1752
|
-
# </note>
|
1753
|
-
#
|
1754
1648
|
# @option params [String] :power_draw_kva
|
1755
|
-
#
|
1756
|
-
#
|
1649
|
+
# The power draw, in kVA, available at the hardware placement position
|
1650
|
+
# for the rack.
|
1757
1651
|
#
|
1758
1652
|
# @option params [String] :power_phase
|
1759
|
-
#
|
1653
|
+
# The power option that you can provide for hardware.
|
1760
1654
|
#
|
1761
1655
|
# * Single-phase AC feed: 200 V to 277 V, 50 Hz or 60 Hz
|
1762
1656
|
#
|
1763
1657
|
# * Three-phase AC feed: 346 V to 480 V, 50 Hz or 60 Hz
|
1764
1658
|
#
|
1765
1659
|
# @option params [String] :power_connector
|
1766
|
-
#
|
1767
|
-
#
|
1660
|
+
# The power connector that Amazon Web Services should plan to provide
|
1661
|
+
# for connections to the hardware. Note the correlation between
|
1768
1662
|
# `PowerPhase` and `PowerConnector`.
|
1769
1663
|
#
|
1770
1664
|
# * Single-phase AC feed
|
@@ -1780,11 +1674,11 @@ module Aws::Outposts
|
|
1780
1674
|
# * **AH532P6W (red)** – 3P+N+E, 6hr; 32A; three phase
|
1781
1675
|
#
|
1782
1676
|
# @option params [String] :power_feed_drop
|
1783
|
-
#
|
1677
|
+
# Indicates whether the power feed comes above or below the rack.
|
1784
1678
|
#
|
1785
1679
|
# @option params [String] :uplink_gbps
|
1786
|
-
#
|
1787
|
-
#
|
1680
|
+
# The uplink speed the rack should support for the connection to the
|
1681
|
+
# Region.
|
1788
1682
|
#
|
1789
1683
|
# @option params [String] :uplink_count
|
1790
1684
|
# Racks come with two Outpost network devices. Depending on the
|
@@ -1801,15 +1695,15 @@ module Aws::Outposts
|
|
1801
1695
|
# * 40 and 100 Gbps- Uplinks available: 1, 2, 4
|
1802
1696
|
#
|
1803
1697
|
# @option params [String] :fiber_optic_cable_type
|
1804
|
-
#
|
1805
|
-
#
|
1698
|
+
# The type of fiber that you will use to attach the Outpost to your
|
1699
|
+
# network.
|
1806
1700
|
#
|
1807
1701
|
# @option params [String] :optical_standard
|
1808
|
-
#
|
1809
|
-
#
|
1810
|
-
#
|
1811
|
-
#
|
1812
|
-
#
|
1702
|
+
# The type of optical standard that you will use to attach the Outpost
|
1703
|
+
# to your network. This field is dependent on uplink speed, fiber type,
|
1704
|
+
# and distance to the upstream device. For more information about
|
1705
|
+
# networking requirements for racks, see [Network][1] in the Amazon Web
|
1706
|
+
# Services Outposts User Guide.
|
1813
1707
|
#
|
1814
1708
|
# * `OPTIC_10GBASE_SR`\: 10GBASE-SR
|
1815
1709
|
#
|
@@ -1842,8 +1736,8 @@ module Aws::Outposts
|
|
1842
1736
|
# [1]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#facility-networking
|
1843
1737
|
#
|
1844
1738
|
# @option params [String] :maximum_supported_weight_lbs
|
1845
|
-
#
|
1846
|
-
#
|
1739
|
+
# The maximum rack weight that this site can support. `NO_LIMIT` is over
|
1740
|
+
# 2000lbs.
|
1847
1741
|
#
|
1848
1742
|
# @return [Types::UpdateSiteRackPhysicalPropertiesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1849
1743
|
#
|
@@ -1909,7 +1803,7 @@ module Aws::Outposts
|
|
1909
1803
|
params: params,
|
1910
1804
|
config: config)
|
1911
1805
|
context[:gem_name] = 'aws-sdk-outposts'
|
1912
|
-
context[:gem_version] = '1.
|
1806
|
+
context[:gem_version] = '1.37.0'
|
1913
1807
|
Seahorse::Client::Request.new(handlers, context)
|
1914
1808
|
end
|
1915
1809
|
|