aws-sdk-outposts 1.35.0 → 1.37.0
Sign up to get free protection for your applications and to get access to all the features.
- 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
@@ -0,0 +1,120 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
|
11
|
+
module Aws::Outposts
|
12
|
+
module Plugins
|
13
|
+
class Endpoints < Seahorse::Client::Plugin
|
14
|
+
option(
|
15
|
+
:endpoint_provider,
|
16
|
+
doc_type: 'Aws::Outposts::EndpointProvider',
|
17
|
+
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
|
+
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
|
+
'where `parameters` is a Struct similar to '\
|
20
|
+
'`Aws::Outposts::EndpointParameters`'
|
21
|
+
) do |cfg|
|
22
|
+
Aws::Outposts::EndpointProvider.new
|
23
|
+
end
|
24
|
+
|
25
|
+
# @api private
|
26
|
+
class Handler < Seahorse::Client::Handler
|
27
|
+
def call(context)
|
28
|
+
# If endpoint was discovered, do not resolve or apply the endpoint.
|
29
|
+
unless context[:discovered_endpoint]
|
30
|
+
params = parameters_for_operation(context)
|
31
|
+
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
|
+
|
33
|
+
context.http_request.endpoint = endpoint.url
|
34
|
+
apply_endpoint_headers(context, endpoint.headers)
|
35
|
+
end
|
36
|
+
|
37
|
+
context[:endpoint_params] = params
|
38
|
+
context[:auth_scheme] =
|
39
|
+
Aws::Endpoints.resolve_auth_scheme(context, endpoint)
|
40
|
+
|
41
|
+
@handler.call(context)
|
42
|
+
end
|
43
|
+
|
44
|
+
private
|
45
|
+
|
46
|
+
def apply_endpoint_headers(context, headers)
|
47
|
+
headers.each do |key, values|
|
48
|
+
value = values
|
49
|
+
.compact
|
50
|
+
.map { |s| Seahorse::Util.escape_header_list_string(s.to_s) }
|
51
|
+
.join(',')
|
52
|
+
|
53
|
+
context.http_request.headers[key] = value
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
def parameters_for_operation(context)
|
58
|
+
case context.operation_name
|
59
|
+
when :cancel_order
|
60
|
+
Aws::Outposts::Endpoints::CancelOrder.build(context)
|
61
|
+
when :create_order
|
62
|
+
Aws::Outposts::Endpoints::CreateOrder.build(context)
|
63
|
+
when :create_outpost
|
64
|
+
Aws::Outposts::Endpoints::CreateOutpost.build(context)
|
65
|
+
when :create_site
|
66
|
+
Aws::Outposts::Endpoints::CreateSite.build(context)
|
67
|
+
when :delete_outpost
|
68
|
+
Aws::Outposts::Endpoints::DeleteOutpost.build(context)
|
69
|
+
when :delete_site
|
70
|
+
Aws::Outposts::Endpoints::DeleteSite.build(context)
|
71
|
+
when :get_catalog_item
|
72
|
+
Aws::Outposts::Endpoints::GetCatalogItem.build(context)
|
73
|
+
when :get_connection
|
74
|
+
Aws::Outposts::Endpoints::GetConnection.build(context)
|
75
|
+
when :get_order
|
76
|
+
Aws::Outposts::Endpoints::GetOrder.build(context)
|
77
|
+
when :get_outpost
|
78
|
+
Aws::Outposts::Endpoints::GetOutpost.build(context)
|
79
|
+
when :get_outpost_instance_types
|
80
|
+
Aws::Outposts::Endpoints::GetOutpostInstanceTypes.build(context)
|
81
|
+
when :get_site
|
82
|
+
Aws::Outposts::Endpoints::GetSite.build(context)
|
83
|
+
when :get_site_address
|
84
|
+
Aws::Outposts::Endpoints::GetSiteAddress.build(context)
|
85
|
+
when :list_assets
|
86
|
+
Aws::Outposts::Endpoints::ListAssets.build(context)
|
87
|
+
when :list_catalog_items
|
88
|
+
Aws::Outposts::Endpoints::ListCatalogItems.build(context)
|
89
|
+
when :list_orders
|
90
|
+
Aws::Outposts::Endpoints::ListOrders.build(context)
|
91
|
+
when :list_outposts
|
92
|
+
Aws::Outposts::Endpoints::ListOutposts.build(context)
|
93
|
+
when :list_sites
|
94
|
+
Aws::Outposts::Endpoints::ListSites.build(context)
|
95
|
+
when :list_tags_for_resource
|
96
|
+
Aws::Outposts::Endpoints::ListTagsForResource.build(context)
|
97
|
+
when :start_connection
|
98
|
+
Aws::Outposts::Endpoints::StartConnection.build(context)
|
99
|
+
when :tag_resource
|
100
|
+
Aws::Outposts::Endpoints::TagResource.build(context)
|
101
|
+
when :untag_resource
|
102
|
+
Aws::Outposts::Endpoints::UntagResource.build(context)
|
103
|
+
when :update_outpost
|
104
|
+
Aws::Outposts::Endpoints::UpdateOutpost.build(context)
|
105
|
+
when :update_site
|
106
|
+
Aws::Outposts::Endpoints::UpdateSite.build(context)
|
107
|
+
when :update_site_address
|
108
|
+
Aws::Outposts::Endpoints::UpdateSiteAddress.build(context)
|
109
|
+
when :update_site_rack_physical_properties
|
110
|
+
Aws::Outposts::Endpoints::UpdateSiteRackPhysicalProperties.build(context)
|
111
|
+
end
|
112
|
+
end
|
113
|
+
end
|
114
|
+
|
115
|
+
def add_handlers(handlers, _config)
|
116
|
+
handlers.add(Handler, step: :build, priority: 75)
|
117
|
+
end
|
118
|
+
end
|
119
|
+
end
|
120
|
+
end
|
@@ -160,7 +160,7 @@ module Aws::Outposts
|
|
160
160
|
# }
|
161
161
|
#
|
162
162
|
# @!attribute [rw] order_id
|
163
|
-
# The ID of the order
|
163
|
+
# The ID of the order.
|
164
164
|
# @return [String]
|
165
165
|
#
|
166
166
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CancelOrderInput AWS API Documentation
|
@@ -223,13 +223,30 @@ module Aws::Outposts
|
|
223
223
|
# Information about compute hardware assets.
|
224
224
|
#
|
225
225
|
# @!attribute [rw] host_id
|
226
|
-
# The host ID of
|
226
|
+
# The host ID of the Dedicated Host on the asset.
|
227
|
+
# @return [String]
|
228
|
+
#
|
229
|
+
# @!attribute [rw] state
|
230
|
+
# The state.
|
231
|
+
#
|
232
|
+
# * ACTIVE - The asset is available and can provide capacity for new
|
233
|
+
# compute resources.
|
234
|
+
#
|
235
|
+
# * ISOLATED - The asset is undergoing maintenance and can't provide
|
236
|
+
# capacity for new compute resources. Existing compute resources on
|
237
|
+
# the asset are not affected.
|
238
|
+
#
|
239
|
+
# * RETIRING - The underlying hardware for the asset is degraded.
|
240
|
+
# Capacity for new compute resources is reduced. Amazon Web Services
|
241
|
+
# sends notifications for resources that must be stopped before the
|
242
|
+
# asset can be replaced.
|
227
243
|
# @return [String]
|
228
244
|
#
|
229
245
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ComputeAttributes AWS API Documentation
|
230
246
|
#
|
231
247
|
class ComputeAttributes < Struct.new(
|
232
|
-
:host_id
|
248
|
+
:host_id,
|
249
|
+
:state)
|
233
250
|
SENSITIVE = []
|
234
251
|
include Aws::Structure
|
235
252
|
end
|
@@ -308,7 +325,7 @@ module Aws::Outposts
|
|
308
325
|
# },
|
309
326
|
# ],
|
310
327
|
# payment_option: "ALL_UPFRONT", # required, accepts ALL_UPFRONT, NO_UPFRONT, PARTIAL_UPFRONT
|
311
|
-
# payment_term: "THREE_YEARS", # accepts THREE_YEARS
|
328
|
+
# payment_term: "THREE_YEARS", # accepts THREE_YEARS, ONE_YEAR
|
312
329
|
# }
|
313
330
|
#
|
314
331
|
# @!attribute [rw] outpost_identifier
|
@@ -320,11 +337,11 @@ module Aws::Outposts
|
|
320
337
|
# @return [Array<Types::LineItemRequest>]
|
321
338
|
#
|
322
339
|
# @!attribute [rw] payment_option
|
323
|
-
# The payment option
|
340
|
+
# The payment option.
|
324
341
|
# @return [String]
|
325
342
|
#
|
326
343
|
# @!attribute [rw] payment_term
|
327
|
-
# The payment terms
|
344
|
+
# The payment terms.
|
328
345
|
# @return [String]
|
329
346
|
#
|
330
347
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateOrderInput AWS API Documentation
|
@@ -375,14 +392,6 @@ module Aws::Outposts
|
|
375
392
|
#
|
376
393
|
# @!attribute [rw] site_id
|
377
394
|
# The ID or the Amazon Resource Name (ARN) of the site.
|
378
|
-
#
|
379
|
-
# <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon
|
380
|
-
# Resource Name (ARN) or an ID for Outposts and sites throughout the
|
381
|
-
# Outposts Query API. To address backwards compatibility, the
|
382
|
-
# parameter names `OutpostID` or `SiteID` remain in use. Despite the
|
383
|
-
# parameter name, you can make the request with an ARN.
|
384
|
-
#
|
385
|
-
# </note>
|
386
395
|
# @return [String]
|
387
396
|
#
|
388
397
|
# @!attribute [rw] availability_zone
|
@@ -551,14 +560,6 @@ module Aws::Outposts
|
|
551
560
|
#
|
552
561
|
# @!attribute [rw] outpost_id
|
553
562
|
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
554
|
-
#
|
555
|
-
# <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon
|
556
|
-
# Resource Name (ARN) or an ID for Outposts and sites throughout the
|
557
|
-
# Outposts Query API. To address backwards compatibility, the
|
558
|
-
# parameter names `OutpostID` or `SiteID` remain in use. Despite the
|
559
|
-
# parameter name, you can make the request with an ARN.
|
560
|
-
#
|
561
|
-
# </note>
|
562
563
|
# @return [String]
|
563
564
|
#
|
564
565
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/DeleteOutpostInput AWS API Documentation
|
@@ -582,14 +583,6 @@ module Aws::Outposts
|
|
582
583
|
#
|
583
584
|
# @!attribute [rw] site_id
|
584
585
|
# The ID or the Amazon Resource Name (ARN) of the site.
|
585
|
-
#
|
586
|
-
# <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon
|
587
|
-
# Resource Name (ARN) or an ID for Outposts and sites throughout the
|
588
|
-
# Outposts Query API. To address backwards compatibility, the
|
589
|
-
# parameter names `OutpostID` or `SiteID` remain in use. Despite the
|
590
|
-
# parameter name, you can make the request with an ARN.
|
591
|
-
#
|
592
|
-
# </note>
|
593
586
|
# @return [String]
|
594
587
|
#
|
595
588
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/DeleteSiteInput AWS API Documentation
|
@@ -667,7 +660,7 @@ module Aws::Outposts
|
|
667
660
|
# }
|
668
661
|
#
|
669
662
|
# @!attribute [rw] connection_id
|
670
|
-
# The ID of the connection
|
663
|
+
# The ID of the connection.
|
671
664
|
# @return [String]
|
672
665
|
#
|
673
666
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetConnectionRequest AWS API Documentation
|
@@ -679,11 +672,11 @@ module Aws::Outposts
|
|
679
672
|
end
|
680
673
|
|
681
674
|
# @!attribute [rw] connection_id
|
682
|
-
# The ID of the connection
|
675
|
+
# The ID of the connection.
|
683
676
|
# @return [String]
|
684
677
|
#
|
685
678
|
# @!attribute [rw] connection_details
|
686
|
-
# Information about
|
679
|
+
# Information about the connection.
|
687
680
|
# @return [Types::ConnectionDetails]
|
688
681
|
#
|
689
682
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetConnectionResponse AWS API Documentation
|
@@ -735,14 +728,6 @@ module Aws::Outposts
|
|
735
728
|
#
|
736
729
|
# @!attribute [rw] outpost_id
|
737
730
|
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
738
|
-
#
|
739
|
-
# <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon
|
740
|
-
# Resource Name (ARN) or an ID for Outposts and sites throughout the
|
741
|
-
# Outposts Query API. To address backwards compatibility, the
|
742
|
-
# parameter names `OutpostID` or `SiteID` remain in use. Despite the
|
743
|
-
# parameter name, you can make the request with an ARN.
|
744
|
-
#
|
745
|
-
# </note>
|
746
731
|
# @return [String]
|
747
732
|
#
|
748
733
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetOutpostInput AWS API Documentation
|
@@ -764,14 +749,6 @@ module Aws::Outposts
|
|
764
749
|
#
|
765
750
|
# @!attribute [rw] outpost_id
|
766
751
|
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
767
|
-
#
|
768
|
-
# <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon
|
769
|
-
# Resource Name (ARN) or an ID for Outposts and sites throughout the
|
770
|
-
# Outposts Query API. To address backwards compatibility, the
|
771
|
-
# parameter names `OutpostID` or `SiteID` remain in use. Despite the
|
772
|
-
# parameter name, you can make the request with an ARN.
|
773
|
-
#
|
774
|
-
# </note>
|
775
752
|
# @return [String]
|
776
753
|
#
|
777
754
|
# @!attribute [rw] next_token
|
@@ -802,14 +779,6 @@ module Aws::Outposts
|
|
802
779
|
#
|
803
780
|
# @!attribute [rw] outpost_id
|
804
781
|
# The ID of the Outpost.
|
805
|
-
#
|
806
|
-
# <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon
|
807
|
-
# Resource Name (ARN) or an ID for Outposts and sites throughout the
|
808
|
-
# Outposts Query API. To address backwards compatibility, the
|
809
|
-
# parameter names `OutpostID` or `SiteID` remain in use. Despite the
|
810
|
-
# parameter name, you can make the request with an ARN.
|
811
|
-
#
|
812
|
-
# </note>
|
813
782
|
# @return [String]
|
814
783
|
#
|
815
784
|
# @!attribute [rw] outpost_arn
|
@@ -849,14 +818,6 @@ module Aws::Outposts
|
|
849
818
|
#
|
850
819
|
# @!attribute [rw] site_id
|
851
820
|
# The ID or the Amazon Resource Name (ARN) of the site.
|
852
|
-
#
|
853
|
-
# <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon
|
854
|
-
# Resource Name (ARN) or an ID for Outposts and sites throughout the
|
855
|
-
# Outposts Query API. To address backwards compatibility, the
|
856
|
-
# parameter names `OutpostID` or `SiteID` remain in use. Despite the
|
857
|
-
# parameter name, you can make the request with an ARN.
|
858
|
-
#
|
859
|
-
# </note>
|
860
821
|
# @return [String]
|
861
822
|
#
|
862
823
|
# @!attribute [rw] address_type
|
@@ -903,14 +864,6 @@ module Aws::Outposts
|
|
903
864
|
#
|
904
865
|
# @!attribute [rw] site_id
|
905
866
|
# The ID or the Amazon Resource Name (ARN) of the site.
|
906
|
-
#
|
907
|
-
# <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon
|
908
|
-
# Resource Name (ARN) or an ID for Outposts and sites throughout the
|
909
|
-
# Outposts Query API. To address backwards compatibility, the
|
910
|
-
# parameter names `OutpostID` or `SiteID` remain in use. Despite the
|
911
|
-
# parameter name, you can make the request with an ARN.
|
912
|
-
#
|
913
|
-
# </note>
|
914
867
|
# @return [String]
|
915
868
|
#
|
916
869
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetSiteInput AWS API Documentation
|
@@ -1006,7 +959,7 @@ module Aws::Outposts
|
|
1006
959
|
# @return [String]
|
1007
960
|
#
|
1008
961
|
# @!attribute [rw] mac_address_list
|
1009
|
-
# MAC addresses of the asset.
|
962
|
+
# The MAC addresses of the asset.
|
1010
963
|
# @return [Array<String>]
|
1011
964
|
#
|
1012
965
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/LineItemAssetInformation AWS API Documentation
|
@@ -1053,6 +1006,7 @@ module Aws::Outposts
|
|
1053
1006
|
# host_id_filter: ["HostId"],
|
1054
1007
|
# max_results: 1,
|
1055
1008
|
# next_token: "Token",
|
1009
|
+
# status_filter: ["ACTIVE"], # accepts ACTIVE, RETIRING
|
1056
1010
|
# }
|
1057
1011
|
#
|
1058
1012
|
# @!attribute [rw] outpost_identifier
|
@@ -1060,11 +1014,7 @@ module Aws::Outposts
|
|
1060
1014
|
# @return [String]
|
1061
1015
|
#
|
1062
1016
|
# @!attribute [rw] host_id_filter
|
1063
|
-
#
|
1064
|
-
#
|
1065
|
-
# Filter values are case sensitive. If you specify multiple values for
|
1066
|
-
# a filter, the values are joined with an `OR`, and the request
|
1067
|
-
# returns all results that match any of the specified values.
|
1017
|
+
# Filters the results by the host ID of a Dedicated Host.
|
1068
1018
|
# @return [Array<String>]
|
1069
1019
|
#
|
1070
1020
|
# @!attribute [rw] max_results
|
@@ -1075,19 +1025,24 @@ module Aws::Outposts
|
|
1075
1025
|
# The pagination token.
|
1076
1026
|
# @return [String]
|
1077
1027
|
#
|
1028
|
+
# @!attribute [rw] status_filter
|
1029
|
+
# Filters the results by state.
|
1030
|
+
# @return [Array<String>]
|
1031
|
+
#
|
1078
1032
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListAssetsInput AWS API Documentation
|
1079
1033
|
#
|
1080
1034
|
class ListAssetsInput < Struct.new(
|
1081
1035
|
:outpost_identifier,
|
1082
1036
|
:host_id_filter,
|
1083
1037
|
:max_results,
|
1084
|
-
:next_token
|
1038
|
+
:next_token,
|
1039
|
+
:status_filter)
|
1085
1040
|
SENSITIVE = []
|
1086
1041
|
include Aws::Structure
|
1087
1042
|
end
|
1088
1043
|
|
1089
1044
|
# @!attribute [rw] assets
|
1090
|
-
# Information about hardware assets.
|
1045
|
+
# Information about the hardware assets.
|
1091
1046
|
# @return [Array<Types::AssetInfo>]
|
1092
1047
|
#
|
1093
1048
|
# @!attribute [rw] next_token
|
@@ -1123,27 +1078,15 @@ module Aws::Outposts
|
|
1123
1078
|
# @return [Integer]
|
1124
1079
|
#
|
1125
1080
|
# @!attribute [rw] item_class_filter
|
1126
|
-
#
|
1127
|
-
#
|
1128
|
-
# Filter values are case sensitive. If you specify multiple values for
|
1129
|
-
# a filter, the values are joined with an `OR`, and the request
|
1130
|
-
# returns all results that match any of the specified values.
|
1081
|
+
# Filters the results by item class.
|
1131
1082
|
# @return [Array<String>]
|
1132
1083
|
#
|
1133
1084
|
# @!attribute [rw] supported_storage_filter
|
1134
|
-
#
|
1135
|
-
#
|
1136
|
-
# Filter values are case sensitive. If you specify multiple values for
|
1137
|
-
# a filter, the values are joined with an `OR`, and the request
|
1138
|
-
# returns all results that match any of the specified values.
|
1085
|
+
# Filters the results by storage option.
|
1139
1086
|
# @return [Array<String>]
|
1140
1087
|
#
|
1141
1088
|
# @!attribute [rw] ec2_family_filter
|
1142
|
-
#
|
1143
|
-
#
|
1144
|
-
# Filter values are case sensitive. If you specify multiple values for
|
1145
|
-
# a filter, the values are joined with an `OR`, and the request
|
1146
|
-
# returns all results that match any of the specified values.
|
1089
|
+
# Filters the results by EC2 family (for example, M5).
|
1147
1090
|
# @return [Array<String>]
|
1148
1091
|
#
|
1149
1092
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListCatalogItemsInput AWS API Documentation
|
@@ -1243,27 +1186,16 @@ module Aws::Outposts
|
|
1243
1186
|
# @return [Integer]
|
1244
1187
|
#
|
1245
1188
|
# @!attribute [rw] life_cycle_status_filter
|
1246
|
-
#
|
1247
|
-
#
|
1248
|
-
# Filter values are case sensitive. If you specify multiple values for
|
1249
|
-
# a filter, the values are joined with an `OR`, and the request
|
1250
|
-
# returns all results that match any of the specified values.
|
1189
|
+
# Filters the results by the lifecycle status.
|
1251
1190
|
# @return [Array<String>]
|
1252
1191
|
#
|
1253
1192
|
# @!attribute [rw] availability_zone_filter
|
1254
|
-
#
|
1255
|
-
#
|
1256
|
-
# Filter values are case sensitive. If you specify multiple values for
|
1257
|
-
# a filter, the values are joined with an `OR`, and the request
|
1258
|
-
# returns all results that match any of the specified values.
|
1193
|
+
# Filters the results by Availability Zone (for example,
|
1194
|
+
# `us-east-1a`).
|
1259
1195
|
# @return [Array<String>]
|
1260
1196
|
#
|
1261
1197
|
# @!attribute [rw] availability_zone_id_filter
|
1262
|
-
#
|
1263
|
-
#
|
1264
|
-
# Filter values are case sensitive. If you specify multiple values for
|
1265
|
-
# a filter, the values are joined with an `OR`, and the request
|
1266
|
-
# returns all results that match any of the specified values.
|
1198
|
+
# Filters the results by AZ ID (for example, `use1-az1`).
|
1267
1199
|
# @return [Array<String>]
|
1268
1200
|
#
|
1269
1201
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListOutpostsInput AWS API Documentation
|
@@ -1315,27 +1247,15 @@ module Aws::Outposts
|
|
1315
1247
|
# @return [Integer]
|
1316
1248
|
#
|
1317
1249
|
# @!attribute [rw] operating_address_country_code_filter
|
1318
|
-
#
|
1319
|
-
#
|
1320
|
-
# Filter values are case sensitive. If you specify multiple values for
|
1321
|
-
# a filter, the values are joined with an `OR`, and the request
|
1322
|
-
# returns all results that match any of the specified values.
|
1250
|
+
# Filters the results by country code.
|
1323
1251
|
# @return [Array<String>]
|
1324
1252
|
#
|
1325
1253
|
# @!attribute [rw] operating_address_state_or_region_filter
|
1326
|
-
#
|
1327
|
-
#
|
1328
|
-
# Filter values are case sensitive. If you specify multiple values for
|
1329
|
-
# a filter, the values are joined with an `OR`, and the request
|
1330
|
-
# returns all results that match any of the specified values.
|
1254
|
+
# Filters the results by state or region.
|
1331
1255
|
# @return [Array<String>]
|
1332
1256
|
#
|
1333
1257
|
# @!attribute [rw] operating_address_city_filter
|
1334
|
-
#
|
1335
|
-
#
|
1336
|
-
# Filter values are case sensitive. If you specify multiple values for
|
1337
|
-
# a filter, the values are joined with an `OR`, and the request
|
1338
|
-
# returns all results that match any of the specified values.
|
1258
|
+
# Filters the results by city.
|
1339
1259
|
# @return [Array<String>]
|
1340
1260
|
#
|
1341
1261
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListSitesInput AWS API Documentation
|
@@ -1427,7 +1347,7 @@ module Aws::Outposts
|
|
1427
1347
|
# * `PREPARING` - Order is received and being prepared.
|
1428
1348
|
#
|
1429
1349
|
# * `IN_PROGRESS` - Order is either being built, shipped, or
|
1430
|
-
# installed. To get more details, see the
|
1350
|
+
# installed. To get more details, see the line item status.
|
1431
1351
|
#
|
1432
1352
|
# * `COMPLETED` - Order is complete.
|
1433
1353
|
#
|
@@ -1510,11 +1430,11 @@ module Aws::Outposts
|
|
1510
1430
|
# @return [Hash<String,Integer>]
|
1511
1431
|
#
|
1512
1432
|
# @!attribute [rw] order_submission_date
|
1513
|
-
#
|
1433
|
+
# The submission date for the order.
|
1514
1434
|
# @return [Time]
|
1515
1435
|
#
|
1516
1436
|
# @!attribute [rw] order_fulfilled_date
|
1517
|
-
#
|
1437
|
+
# The fulfilment date for the order.
|
1518
1438
|
# @return [Time]
|
1519
1439
|
#
|
1520
1440
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/OrderSummary AWS API Documentation
|
@@ -1910,14 +1830,6 @@ module Aws::Outposts
|
|
1910
1830
|
#
|
1911
1831
|
# @!attribute [rw] outpost_id
|
1912
1832
|
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
1913
|
-
#
|
1914
|
-
# <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon
|
1915
|
-
# Resource Name (ARN) or an ID for Outposts and sites throughout the
|
1916
|
-
# Outposts Query API. To address backwards compatibility, the
|
1917
|
-
# parameter names `OutpostID` or `SiteID` remain in use. Despite the
|
1918
|
-
# parameter name, you can make the request with an ARN.
|
1919
|
-
#
|
1920
|
-
# </note>
|
1921
1833
|
# @return [String]
|
1922
1834
|
#
|
1923
1835
|
# @!attribute [rw] name
|
@@ -1978,14 +1890,6 @@ module Aws::Outposts
|
|
1978
1890
|
#
|
1979
1891
|
# @!attribute [rw] site_id
|
1980
1892
|
# The ID or the Amazon Resource Name (ARN) of the site.
|
1981
|
-
#
|
1982
|
-
# <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon
|
1983
|
-
# Resource Name (ARN) or an ID for Outposts and sites throughout the
|
1984
|
-
# Outposts Query API. To address backwards compatibility, the
|
1985
|
-
# parameter names `OutpostID` or `SiteID` remain in use. Despite the
|
1986
|
-
# parameter name, you can make the request with an ARN.
|
1987
|
-
#
|
1988
|
-
# </note>
|
1989
1893
|
# @return [String]
|
1990
1894
|
#
|
1991
1895
|
# @!attribute [rw] address_type
|
@@ -2035,14 +1939,6 @@ module Aws::Outposts
|
|
2035
1939
|
#
|
2036
1940
|
# @!attribute [rw] site_id
|
2037
1941
|
# The ID or the Amazon Resource Name (ARN) of the site.
|
2038
|
-
#
|
2039
|
-
# <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon
|
2040
|
-
# Resource Name (ARN) or an ID for Outposts and sites throughout the
|
2041
|
-
# Outposts Query API. To address backwards compatibility, the
|
2042
|
-
# parameter names `OutpostID` or `SiteID` remain in use. Despite the
|
2043
|
-
# parameter name, you can make the request with an ARN.
|
2044
|
-
#
|
2045
|
-
# </note>
|
2046
1942
|
# @return [String]
|
2047
1943
|
#
|
2048
1944
|
# @!attribute [rw] name
|
@@ -2098,23 +1994,15 @@ module Aws::Outposts
|
|
2098
1994
|
#
|
2099
1995
|
# @!attribute [rw] site_id
|
2100
1996
|
# The ID or the Amazon Resource Name (ARN) of the site.
|
2101
|
-
#
|
2102
|
-
# <note markdown="1"> In requests, Amazon Web Services Outposts accepts the Amazon
|
2103
|
-
# Resource Name (ARN) or an ID for Outposts and sites throughout the
|
2104
|
-
# Outposts Query API. To address backwards compatibility, the
|
2105
|
-
# parameter names `OutpostID` or `SiteID` remain in use. Despite the
|
2106
|
-
# parameter name, you can make the request with an ARN.
|
2107
|
-
#
|
2108
|
-
# </note>
|
2109
1997
|
# @return [String]
|
2110
1998
|
#
|
2111
1999
|
# @!attribute [rw] power_draw_kva
|
2112
|
-
#
|
2113
|
-
#
|
2000
|
+
# The power draw, in kVA, available at the hardware placement position
|
2001
|
+
# for the rack.
|
2114
2002
|
# @return [String]
|
2115
2003
|
#
|
2116
2004
|
# @!attribute [rw] power_phase
|
2117
|
-
#
|
2005
|
+
# The power option that you can provide for hardware.
|
2118
2006
|
#
|
2119
2007
|
# * Single-phase AC feed: 200 V to 277 V, 50 Hz or 60 Hz
|
2120
2008
|
#
|
@@ -2122,9 +2010,9 @@ module Aws::Outposts
|
|
2122
2010
|
# @return [String]
|
2123
2011
|
#
|
2124
2012
|
# @!attribute [rw] power_connector
|
2125
|
-
#
|
2126
|
-
#
|
2127
|
-
#
|
2013
|
+
# The power connector that Amazon Web Services should plan to provide
|
2014
|
+
# for connections to the hardware. Note the correlation between
|
2015
|
+
# `PowerPhase` and `PowerConnector`.
|
2128
2016
|
#
|
2129
2017
|
# * Single-phase AC feed
|
2130
2018
|
#
|
@@ -2140,12 +2028,12 @@ module Aws::Outposts
|
|
2140
2028
|
# @return [String]
|
2141
2029
|
#
|
2142
2030
|
# @!attribute [rw] power_feed_drop
|
2143
|
-
#
|
2031
|
+
# Indicates whether the power feed comes above or below the rack.
|
2144
2032
|
# @return [String]
|
2145
2033
|
#
|
2146
2034
|
# @!attribute [rw] uplink_gbps
|
2147
|
-
#
|
2148
|
-
#
|
2035
|
+
# The uplink speed the rack should support for the connection to the
|
2036
|
+
# Region.
|
2149
2037
|
# @return [String]
|
2150
2038
|
#
|
2151
2039
|
# @!attribute [rw] uplink_count
|
@@ -2164,16 +2052,16 @@ module Aws::Outposts
|
|
2164
2052
|
# @return [String]
|
2165
2053
|
#
|
2166
2054
|
# @!attribute [rw] fiber_optic_cable_type
|
2167
|
-
#
|
2168
|
-
#
|
2055
|
+
# The type of fiber that you will use to attach the Outpost to your
|
2056
|
+
# network.
|
2169
2057
|
# @return [String]
|
2170
2058
|
#
|
2171
2059
|
# @!attribute [rw] optical_standard
|
2172
|
-
#
|
2173
|
-
#
|
2174
|
-
#
|
2175
|
-
#
|
2176
|
-
#
|
2060
|
+
# The type of optical standard that you will use to attach the Outpost
|
2061
|
+
# to your network. This field is dependent on uplink speed, fiber
|
2062
|
+
# type, and distance to the upstream device. For more information
|
2063
|
+
# about networking requirements for racks, see [Network][1] in the
|
2064
|
+
# Amazon Web Services Outposts User Guide.
|
2177
2065
|
#
|
2178
2066
|
# * `OPTIC_10GBASE_SR`\: 10GBASE-SR
|
2179
2067
|
#
|
@@ -2207,8 +2095,8 @@ module Aws::Outposts
|
|
2207
2095
|
# @return [String]
|
2208
2096
|
#
|
2209
2097
|
# @!attribute [rw] maximum_supported_weight_lbs
|
2210
|
-
#
|
2211
|
-
#
|
2098
|
+
# The maximum rack weight that this site can support. `NO_LIMIT` is
|
2099
|
+
# over 2000lbs.
|
2212
2100
|
# @return [String]
|
2213
2101
|
#
|
2214
2102
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateSiteRackPhysicalPropertiesInput AWS API Documentation
|
data/lib/aws-sdk-outposts.rb
CHANGED
@@ -13,9 +13,13 @@ require 'aws-sigv4'
|
|
13
13
|
|
14
14
|
require_relative 'aws-sdk-outposts/types'
|
15
15
|
require_relative 'aws-sdk-outposts/client_api'
|
16
|
+
require_relative 'aws-sdk-outposts/plugins/endpoints.rb'
|
16
17
|
require_relative 'aws-sdk-outposts/client'
|
17
18
|
require_relative 'aws-sdk-outposts/errors'
|
18
19
|
require_relative 'aws-sdk-outposts/resource'
|
20
|
+
require_relative 'aws-sdk-outposts/endpoint_parameters'
|
21
|
+
require_relative 'aws-sdk-outposts/endpoint_provider'
|
22
|
+
require_relative 'aws-sdk-outposts/endpoints'
|
19
23
|
require_relative 'aws-sdk-outposts/customizations'
|
20
24
|
|
21
25
|
# This module provides support for AWS Outposts. This module is available in the
|
@@ -48,6 +52,6 @@ require_relative 'aws-sdk-outposts/customizations'
|
|
48
52
|
# @!group service
|
49
53
|
module Aws::Outposts
|
50
54
|
|
51
|
-
GEM_VERSION = '1.
|
55
|
+
GEM_VERSION = '1.37.0'
|
52
56
|
|
53
57
|
end
|