aws-sdk-outposts 1.24.0 → 1.28.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-outposts/client.rb +85 -13
- data/lib/aws-sdk-outposts/client_api.rb +27 -0
- data/lib/aws-sdk-outposts/types.rb +72 -12
- data/lib/aws-sdk-outposts.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 798a97cfb0b217085cdec8103d6e987d660e983fca8b8f2b52d44dedac656e1e
|
4
|
+
data.tar.gz: 5ba76ebd7c1e73898aa06f450de96cc1eb51c04085f52f52a7e5cab8c0d1d706
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd0b8511327fea18785c61c71e440759455708f567ed68c7cd64dbf51470d7dc034154e886698edf8fce61ccac4f378b97c9d8a70385f175a5660d84d154bf0f
|
7
|
+
data.tar.gz: 755fb5110a52dff4a2da5391b6ecb8eaf32eb24dd429c1fa2f21e43d917e41e856f807a96c55badaf6322f8201f7d838439418459cf88800c0b24e9831d96bf2
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.28.0 (2022-02-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.27.0 (2021-12-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.26.0 (2021-12-08)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - This release adds the UpdateOutpost API.
|
18
|
+
|
19
|
+
1.25.0 (2021-11-30)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - This release adds the SupportedHardwareType parameter to CreateOutpost.
|
23
|
+
|
4
24
|
1.24.0 (2021-11-26)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.28.0
|
@@ -27,6 +27,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
31
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
30
32
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
33
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
32
34
|
|
@@ -73,6 +75,8 @@ module Aws::Outposts
|
|
73
75
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
76
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
77
|
add_plugin(Aws::Plugins::HttpChecksum)
|
78
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
79
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
76
80
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
81
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
78
82
|
|
@@ -119,7 +123,9 @@ module Aws::Outposts
|
|
119
123
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
124
|
# are very aggressive. Construct and pass an instance of
|
121
125
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
126
|
+
# enable retries and extended timeouts. Instance profile credential
|
127
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
128
|
+
# to true.
|
123
129
|
#
|
124
130
|
# @option options [required, String] :region
|
125
131
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +179,10 @@ module Aws::Outposts
|
|
173
179
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
180
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
181
|
#
|
182
|
+
# @option options [String] :defaults_mode ("legacy")
|
183
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
184
|
+
# accepted modes and the configuration defaults that are included.
|
185
|
+
#
|
176
186
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
187
|
# Set to true to disable SDK automatically adding host prefix
|
178
188
|
# to default service endpoint when available.
|
@@ -295,7 +305,7 @@ module Aws::Outposts
|
|
295
305
|
# seconds to wait when opening a HTTP session before raising a
|
296
306
|
# `Timeout::Error`.
|
297
307
|
#
|
298
|
-
# @option options [
|
308
|
+
# @option options [Float] :http_read_timeout (60) The default
|
299
309
|
# number of seconds to wait for response data. This value can
|
300
310
|
# safely be set per-request on the session.
|
301
311
|
#
|
@@ -311,6 +321,9 @@ module Aws::Outposts
|
|
311
321
|
# disables this behaviour. This value can safely be set per
|
312
322
|
# request on the session.
|
313
323
|
#
|
324
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
325
|
+
# in seconds.
|
326
|
+
#
|
314
327
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
315
328
|
# HTTP debug output will be sent to the `:logger`.
|
316
329
|
#
|
@@ -424,7 +437,7 @@ module Aws::Outposts
|
|
424
437
|
# The description of the Outpost.
|
425
438
|
#
|
426
439
|
# @option params [required, String] :site_id
|
427
|
-
# The ID of the site.
|
440
|
+
# The ID or the Amazon Resource Name (ARN) of the site.
|
428
441
|
#
|
429
442
|
# @option params [String] :availability_zone
|
430
443
|
# The Availability Zone.
|
@@ -435,6 +448,9 @@ module Aws::Outposts
|
|
435
448
|
# @option params [Hash<String,String>] :tags
|
436
449
|
# The tags to apply to the Outpost.
|
437
450
|
#
|
451
|
+
# @option params [String] :supported_hardware_type
|
452
|
+
# The type of hardware for this Outpost.
|
453
|
+
#
|
438
454
|
# @return [Types::CreateOutpostOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
439
455
|
#
|
440
456
|
# * {Types::CreateOutpostOutput#outpost #outpost} => Types::Outpost
|
@@ -450,6 +466,7 @@ module Aws::Outposts
|
|
450
466
|
# tags: {
|
451
467
|
# "TagKey" => "TagValue",
|
452
468
|
# },
|
469
|
+
# supported_hardware_type: "RACK", # accepts RACK, SERVER
|
453
470
|
# })
|
454
471
|
#
|
455
472
|
# @example Response structure
|
@@ -466,6 +483,7 @@ module Aws::Outposts
|
|
466
483
|
# resp.outpost.tags #=> Hash
|
467
484
|
# resp.outpost.tags["TagKey"] #=> String
|
468
485
|
# resp.outpost.site_arn #=> String
|
486
|
+
# resp.outpost.supported_hardware_type #=> String, one of "RACK", "SERVER"
|
469
487
|
#
|
470
488
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateOutpost AWS API Documentation
|
471
489
|
#
|
@@ -598,7 +616,7 @@ module Aws::Outposts
|
|
598
616
|
# Deletes the Outpost.
|
599
617
|
#
|
600
618
|
# @option params [required, String] :outpost_id
|
601
|
-
# The ID of the Outpost.
|
619
|
+
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
602
620
|
#
|
603
621
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
604
622
|
#
|
@@ -620,7 +638,7 @@ module Aws::Outposts
|
|
620
638
|
# Deletes the site.
|
621
639
|
#
|
622
640
|
# @option params [required, String] :site_id
|
623
|
-
# The ID of the site.
|
641
|
+
# The ID or the Amazon Resource Name (ARN) of the site.
|
624
642
|
#
|
625
643
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
626
644
|
#
|
@@ -719,7 +737,7 @@ module Aws::Outposts
|
|
719
737
|
# Gets information about the specified Outpost.
|
720
738
|
#
|
721
739
|
# @option params [required, String] :outpost_id
|
722
|
-
# The ID of the Outpost.
|
740
|
+
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
723
741
|
#
|
724
742
|
# @return [Types::GetOutpostOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
725
743
|
#
|
@@ -745,6 +763,7 @@ module Aws::Outposts
|
|
745
763
|
# resp.outpost.tags #=> Hash
|
746
764
|
# resp.outpost.tags["TagKey"] #=> String
|
747
765
|
# resp.outpost.site_arn #=> String
|
766
|
+
# resp.outpost.supported_hardware_type #=> String, one of "RACK", "SERVER"
|
748
767
|
#
|
749
768
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetOutpost AWS API Documentation
|
750
769
|
#
|
@@ -758,7 +777,7 @@ module Aws::Outposts
|
|
758
777
|
# Lists the instance types for the specified Outpost.
|
759
778
|
#
|
760
779
|
# @option params [required, String] :outpost_id
|
761
|
-
# The ID of the Outpost.
|
780
|
+
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
762
781
|
#
|
763
782
|
# @option params [String] :next_token
|
764
783
|
# The pagination token.
|
@@ -801,7 +820,7 @@ module Aws::Outposts
|
|
801
820
|
# Gets information about the specified Outpost site.
|
802
821
|
#
|
803
822
|
# @option params [required, String] :site_id
|
804
|
-
# The ID of the site.
|
823
|
+
# The ID or the Amazon Resource Name (ARN) of the site.
|
805
824
|
#
|
806
825
|
# @return [Types::GetSiteOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
807
826
|
#
|
@@ -848,7 +867,7 @@ module Aws::Outposts
|
|
848
867
|
# Gets the site address.
|
849
868
|
#
|
850
869
|
# @option params [required, String] :site_id
|
851
|
-
# The ID of the site.
|
870
|
+
# The ID or the Amazon Resource Name (ARN) of the site.
|
852
871
|
#
|
853
872
|
# @option params [required, String] :address_type
|
854
873
|
# The type of the address you request.
|
@@ -1087,6 +1106,7 @@ module Aws::Outposts
|
|
1087
1106
|
# resp.outposts[0].tags #=> Hash
|
1088
1107
|
# resp.outposts[0].tags["TagKey"] #=> String
|
1089
1108
|
# resp.outposts[0].site_arn #=> String
|
1109
|
+
# resp.outposts[0].supported_hardware_type #=> String, one of "RACK", "SERVER"
|
1090
1110
|
# resp.next_token #=> String
|
1091
1111
|
#
|
1092
1112
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListOutposts AWS API Documentation
|
@@ -1237,10 +1257,62 @@ module Aws::Outposts
|
|
1237
1257
|
req.send_request(options)
|
1238
1258
|
end
|
1239
1259
|
|
1260
|
+
# Updates an Outpost.
|
1261
|
+
#
|
1262
|
+
# @option params [required, String] :outpost_id
|
1263
|
+
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
1264
|
+
#
|
1265
|
+
# @option params [String] :name
|
1266
|
+
# The name of the Outpost.
|
1267
|
+
#
|
1268
|
+
# @option params [String] :description
|
1269
|
+
# The description of the Outpost.
|
1270
|
+
#
|
1271
|
+
# @option params [String] :supported_hardware_type
|
1272
|
+
# The type of hardware for this Outpost.
|
1273
|
+
#
|
1274
|
+
# @return [Types::UpdateOutpostOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1275
|
+
#
|
1276
|
+
# * {Types::UpdateOutpostOutput#outpost #outpost} => Types::Outpost
|
1277
|
+
#
|
1278
|
+
# @example Request syntax with placeholder values
|
1279
|
+
#
|
1280
|
+
# resp = client.update_outpost({
|
1281
|
+
# outpost_id: "OutpostId", # required
|
1282
|
+
# name: "OutpostName",
|
1283
|
+
# description: "OutpostDescription",
|
1284
|
+
# supported_hardware_type: "RACK", # accepts RACK, SERVER
|
1285
|
+
# })
|
1286
|
+
#
|
1287
|
+
# @example Response structure
|
1288
|
+
#
|
1289
|
+
# resp.outpost.outpost_id #=> String
|
1290
|
+
# resp.outpost.owner_id #=> String
|
1291
|
+
# resp.outpost.outpost_arn #=> String
|
1292
|
+
# resp.outpost.site_id #=> String
|
1293
|
+
# resp.outpost.name #=> String
|
1294
|
+
# resp.outpost.description #=> String
|
1295
|
+
# resp.outpost.life_cycle_status #=> String
|
1296
|
+
# resp.outpost.availability_zone #=> String
|
1297
|
+
# resp.outpost.availability_zone_id #=> String
|
1298
|
+
# resp.outpost.tags #=> Hash
|
1299
|
+
# resp.outpost.tags["TagKey"] #=> String
|
1300
|
+
# resp.outpost.site_arn #=> String
|
1301
|
+
# resp.outpost.supported_hardware_type #=> String, one of "RACK", "SERVER"
|
1302
|
+
#
|
1303
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateOutpost AWS API Documentation
|
1304
|
+
#
|
1305
|
+
# @overload update_outpost(params = {})
|
1306
|
+
# @param [Hash] params ({})
|
1307
|
+
def update_outpost(params = {}, options = {})
|
1308
|
+
req = build_request(:update_outpost, params)
|
1309
|
+
req.send_request(options)
|
1310
|
+
end
|
1311
|
+
|
1240
1312
|
# Updates the site.
|
1241
1313
|
#
|
1242
1314
|
# @option params [required, String] :site_id
|
1243
|
-
# The ID of the site.
|
1315
|
+
# The ID or the Amazon Resource Name (ARN) of the site.
|
1244
1316
|
#
|
1245
1317
|
# @option params [String] :name
|
1246
1318
|
# The name of the site.
|
@@ -1306,7 +1378,7 @@ module Aws::Outposts
|
|
1306
1378
|
# deactivated.
|
1307
1379
|
#
|
1308
1380
|
# @option params [required, String] :site_id
|
1309
|
-
# The ID of the site.
|
1381
|
+
# The ID or the Amazon Resource Name (ARN) of the site.
|
1310
1382
|
#
|
1311
1383
|
# @option params [required, String] :address_type
|
1312
1384
|
# The type of the address.
|
@@ -1376,7 +1448,7 @@ module Aws::Outposts
|
|
1376
1448
|
# [1]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#checklist
|
1377
1449
|
#
|
1378
1450
|
# @option params [required, String] :site_id
|
1379
|
-
# The ID of the site.
|
1451
|
+
# The ID or the Amazon Resource Name (ARN) of the site.
|
1380
1452
|
#
|
1381
1453
|
# @option params [String] :power_draw_kva
|
1382
1454
|
# Specify in kVA the power draw available at the hardware placement
|
@@ -1536,7 +1608,7 @@ module Aws::Outposts
|
|
1536
1608
|
params: params,
|
1537
1609
|
config: config)
|
1538
1610
|
context[:gem_name] = 'aws-sdk-outposts'
|
1539
|
-
context[:gem_version] = '1.
|
1611
|
+
context[:gem_version] = '1.28.0'
|
1540
1612
|
Seahorse::Client::Request.new(handlers, context)
|
1541
1613
|
end
|
1542
1614
|
|
@@ -133,6 +133,7 @@ module Aws::Outposts
|
|
133
133
|
SkuCode = Shapes::StringShape.new(name: 'SkuCode')
|
134
134
|
StateOrRegion = Shapes::StringShape.new(name: 'StateOrRegion')
|
135
135
|
String = Shapes::StringShape.new(name: 'String')
|
136
|
+
SupportedHardwareType = Shapes::StringShape.new(name: 'SupportedHardwareType')
|
136
137
|
SupportedStorageEnum = Shapes::StringShape.new(name: 'SupportedStorageEnum')
|
137
138
|
SupportedStorageList = Shapes::ListShape.new(name: 'SupportedStorageList')
|
138
139
|
SupportedUplinkGbps = Shapes::IntegerShape.new(name: 'SupportedUplinkGbps')
|
@@ -146,6 +147,8 @@ module Aws::Outposts
|
|
146
147
|
Token = Shapes::StringShape.new(name: 'Token')
|
147
148
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
148
149
|
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
150
|
+
UpdateOutpostInput = Shapes::StructureShape.new(name: 'UpdateOutpostInput')
|
151
|
+
UpdateOutpostOutput = Shapes::StructureShape.new(name: 'UpdateOutpostOutput')
|
149
152
|
UpdateSiteAddressInput = Shapes::StructureShape.new(name: 'UpdateSiteAddressInput')
|
150
153
|
UpdateSiteAddressOutput = Shapes::StructureShape.new(name: 'UpdateSiteAddressOutput')
|
151
154
|
UpdateSiteInput = Shapes::StructureShape.new(name: 'UpdateSiteInput')
|
@@ -216,6 +219,7 @@ module Aws::Outposts
|
|
216
219
|
CreateOutpostInput.add_member(:availability_zone, Shapes::ShapeRef.new(shape: AvailabilityZone, location_name: "AvailabilityZone"))
|
217
220
|
CreateOutpostInput.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: AvailabilityZoneId, location_name: "AvailabilityZoneId"))
|
218
221
|
CreateOutpostInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
222
|
+
CreateOutpostInput.add_member(:supported_hardware_type, Shapes::ShapeRef.new(shape: SupportedHardwareType, location_name: "SupportedHardwareType"))
|
219
223
|
CreateOutpostInput.struct_class = Types::CreateOutpostInput
|
220
224
|
|
221
225
|
CreateOutpostOutput.add_member(:outpost, Shapes::ShapeRef.new(shape: Outpost, location_name: "Outpost"))
|
@@ -402,6 +406,7 @@ module Aws::Outposts
|
|
402
406
|
Outpost.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: AvailabilityZoneId, location_name: "AvailabilityZoneId"))
|
403
407
|
Outpost.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
404
408
|
Outpost.add_member(:site_arn, Shapes::ShapeRef.new(shape: SiteArn, location_name: "SiteArn"))
|
409
|
+
Outpost.add_member(:supported_hardware_type, Shapes::ShapeRef.new(shape: SupportedHardwareType, location_name: "SupportedHardwareType"))
|
405
410
|
Outpost.struct_class = Types::Outpost
|
406
411
|
|
407
412
|
RackPhysicalProperties.add_member(:power_draw_kva, Shapes::ShapeRef.new(shape: PowerDrawKva, location_name: "PowerDrawKva"))
|
@@ -452,6 +457,15 @@ module Aws::Outposts
|
|
452
457
|
|
453
458
|
UntagResourceResponse.struct_class = Types::UntagResourceResponse
|
454
459
|
|
460
|
+
UpdateOutpostInput.add_member(:outpost_id, Shapes::ShapeRef.new(shape: OutpostId, required: true, location: "uri", location_name: "OutpostId"))
|
461
|
+
UpdateOutpostInput.add_member(:name, Shapes::ShapeRef.new(shape: OutpostName, location_name: "Name"))
|
462
|
+
UpdateOutpostInput.add_member(:description, Shapes::ShapeRef.new(shape: OutpostDescription, location_name: "Description"))
|
463
|
+
UpdateOutpostInput.add_member(:supported_hardware_type, Shapes::ShapeRef.new(shape: SupportedHardwareType, location_name: "SupportedHardwareType"))
|
464
|
+
UpdateOutpostInput.struct_class = Types::UpdateOutpostInput
|
465
|
+
|
466
|
+
UpdateOutpostOutput.add_member(:outpost, Shapes::ShapeRef.new(shape: Outpost, location_name: "Outpost"))
|
467
|
+
UpdateOutpostOutput.struct_class = Types::UpdateOutpostOutput
|
468
|
+
|
455
469
|
UpdateSiteAddressInput.add_member(:site_id, Shapes::ShapeRef.new(shape: SiteId, required: true, location: "uri", location_name: "SiteId"))
|
456
470
|
UpdateSiteAddressInput.add_member(:address_type, Shapes::ShapeRef.new(shape: AddressType, required: true, location_name: "AddressType"))
|
457
471
|
UpdateSiteAddressInput.add_member(:address, Shapes::ShapeRef.new(shape: Address, required: true, location_name: "Address"))
|
@@ -763,6 +777,19 @@ module Aws::Outposts
|
|
763
777
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
764
778
|
end)
|
765
779
|
|
780
|
+
api.add_operation(:update_outpost, Seahorse::Model::Operation.new.tap do |o|
|
781
|
+
o.name = "UpdateOutpost"
|
782
|
+
o.http_method = "PATCH"
|
783
|
+
o.http_request_uri = "/outposts/{OutpostId}"
|
784
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateOutpostInput)
|
785
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateOutpostOutput)
|
786
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
787
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
788
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
789
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
790
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
791
|
+
end)
|
792
|
+
|
766
793
|
api.add_operation(:update_site, Seahorse::Model::Operation.new.tap do |o|
|
767
794
|
o.name = "UpdateSite"
|
768
795
|
o.http_method = "PATCH"
|
@@ -261,6 +261,7 @@ module Aws::Outposts
|
|
261
261
|
# tags: {
|
262
262
|
# "TagKey" => "TagValue",
|
263
263
|
# },
|
264
|
+
# supported_hardware_type: "RACK", # accepts RACK, SERVER
|
264
265
|
# }
|
265
266
|
#
|
266
267
|
# @!attribute [rw] name
|
@@ -272,7 +273,7 @@ module Aws::Outposts
|
|
272
273
|
# @return [String]
|
273
274
|
#
|
274
275
|
# @!attribute [rw] site_id
|
275
|
-
# The ID of the site.
|
276
|
+
# The ID or the Amazon Resource Name (ARN) of the site.
|
276
277
|
# @return [String]
|
277
278
|
#
|
278
279
|
# @!attribute [rw] availability_zone
|
@@ -287,6 +288,10 @@ module Aws::Outposts
|
|
287
288
|
# The tags to apply to the Outpost.
|
288
289
|
# @return [Hash<String,String>]
|
289
290
|
#
|
291
|
+
# @!attribute [rw] supported_hardware_type
|
292
|
+
# The type of hardware for this Outpost.
|
293
|
+
# @return [String]
|
294
|
+
#
|
290
295
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateOutpostInput AWS API Documentation
|
291
296
|
#
|
292
297
|
class CreateOutpostInput < Struct.new(
|
@@ -295,7 +300,8 @@ module Aws::Outposts
|
|
295
300
|
:site_id,
|
296
301
|
:availability_zone,
|
297
302
|
:availability_zone_id,
|
298
|
-
:tags
|
303
|
+
:tags,
|
304
|
+
:supported_hardware_type)
|
299
305
|
SENSITIVE = []
|
300
306
|
include Aws::Structure
|
301
307
|
end
|
@@ -435,7 +441,7 @@ module Aws::Outposts
|
|
435
441
|
# }
|
436
442
|
#
|
437
443
|
# @!attribute [rw] outpost_id
|
438
|
-
# The ID of the Outpost.
|
444
|
+
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
439
445
|
# @return [String]
|
440
446
|
#
|
441
447
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/DeleteOutpostInput AWS API Documentation
|
@@ -458,7 +464,7 @@ module Aws::Outposts
|
|
458
464
|
# }
|
459
465
|
#
|
460
466
|
# @!attribute [rw] site_id
|
461
|
-
# The ID of the site.
|
467
|
+
# The ID or the Amazon Resource Name (ARN) of the site.
|
462
468
|
# @return [String]
|
463
469
|
#
|
464
470
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/DeleteSiteInput AWS API Documentation
|
@@ -567,7 +573,7 @@ module Aws::Outposts
|
|
567
573
|
# }
|
568
574
|
#
|
569
575
|
# @!attribute [rw] outpost_id
|
570
|
-
# The ID of the Outpost.
|
576
|
+
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
571
577
|
# @return [String]
|
572
578
|
#
|
573
579
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetOutpostInput AWS API Documentation
|
@@ -588,7 +594,7 @@ module Aws::Outposts
|
|
588
594
|
# }
|
589
595
|
#
|
590
596
|
# @!attribute [rw] outpost_id
|
591
|
-
# The ID of the Outpost.
|
597
|
+
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
592
598
|
# @return [String]
|
593
599
|
#
|
594
600
|
# @!attribute [rw] next_token
|
@@ -657,7 +663,7 @@ module Aws::Outposts
|
|
657
663
|
# }
|
658
664
|
#
|
659
665
|
# @!attribute [rw] site_id
|
660
|
-
# The ID of the site.
|
666
|
+
# The ID or the Amazon Resource Name (ARN) of the site.
|
661
667
|
# @return [String]
|
662
668
|
#
|
663
669
|
# @!attribute [rw] address_type
|
@@ -703,7 +709,7 @@ module Aws::Outposts
|
|
703
709
|
# }
|
704
710
|
#
|
705
711
|
# @!attribute [rw] site_id
|
706
|
-
# The ID of the site.
|
712
|
+
# The ID or the Amazon Resource Name (ARN) of the site.
|
707
713
|
# @return [String]
|
708
714
|
#
|
709
715
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetSiteInput AWS API Documentation
|
@@ -1253,6 +1259,10 @@ module Aws::Outposts
|
|
1253
1259
|
# The Amazon Resource Name (ARN) of the site.
|
1254
1260
|
# @return [String]
|
1255
1261
|
#
|
1262
|
+
# @!attribute [rw] supported_hardware_type
|
1263
|
+
# The hardware type.
|
1264
|
+
# @return [String]
|
1265
|
+
#
|
1256
1266
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/Outpost AWS API Documentation
|
1257
1267
|
#
|
1258
1268
|
class Outpost < Struct.new(
|
@@ -1266,7 +1276,8 @@ module Aws::Outposts
|
|
1266
1276
|
:availability_zone,
|
1267
1277
|
:availability_zone_id,
|
1268
1278
|
:tags,
|
1269
|
-
:site_arn
|
1279
|
+
:site_arn,
|
1280
|
+
:supported_hardware_type)
|
1270
1281
|
SENSITIVE = []
|
1271
1282
|
include Aws::Structure
|
1272
1283
|
end
|
@@ -1496,6 +1507,55 @@ module Aws::Outposts
|
|
1496
1507
|
#
|
1497
1508
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
1498
1509
|
|
1510
|
+
# @note When making an API call, you may pass UpdateOutpostInput
|
1511
|
+
# data as a hash:
|
1512
|
+
#
|
1513
|
+
# {
|
1514
|
+
# outpost_id: "OutpostId", # required
|
1515
|
+
# name: "OutpostName",
|
1516
|
+
# description: "OutpostDescription",
|
1517
|
+
# supported_hardware_type: "RACK", # accepts RACK, SERVER
|
1518
|
+
# }
|
1519
|
+
#
|
1520
|
+
# @!attribute [rw] outpost_id
|
1521
|
+
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
1522
|
+
# @return [String]
|
1523
|
+
#
|
1524
|
+
# @!attribute [rw] name
|
1525
|
+
# The name of the Outpost.
|
1526
|
+
# @return [String]
|
1527
|
+
#
|
1528
|
+
# @!attribute [rw] description
|
1529
|
+
# The description of the Outpost.
|
1530
|
+
# @return [String]
|
1531
|
+
#
|
1532
|
+
# @!attribute [rw] supported_hardware_type
|
1533
|
+
# The type of hardware for this Outpost.
|
1534
|
+
# @return [String]
|
1535
|
+
#
|
1536
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateOutpostInput AWS API Documentation
|
1537
|
+
#
|
1538
|
+
class UpdateOutpostInput < Struct.new(
|
1539
|
+
:outpost_id,
|
1540
|
+
:name,
|
1541
|
+
:description,
|
1542
|
+
:supported_hardware_type)
|
1543
|
+
SENSITIVE = []
|
1544
|
+
include Aws::Structure
|
1545
|
+
end
|
1546
|
+
|
1547
|
+
# @!attribute [rw] outpost
|
1548
|
+
# Information about an Outpost.
|
1549
|
+
# @return [Types::Outpost]
|
1550
|
+
#
|
1551
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateOutpostOutput AWS API Documentation
|
1552
|
+
#
|
1553
|
+
class UpdateOutpostOutput < Struct.new(
|
1554
|
+
:outpost)
|
1555
|
+
SENSITIVE = []
|
1556
|
+
include Aws::Structure
|
1557
|
+
end
|
1558
|
+
|
1499
1559
|
# @note When making an API call, you may pass UpdateSiteAddressInput
|
1500
1560
|
# data as a hash:
|
1501
1561
|
#
|
@@ -1518,7 +1578,7 @@ module Aws::Outposts
|
|
1518
1578
|
# }
|
1519
1579
|
#
|
1520
1580
|
# @!attribute [rw] site_id
|
1521
|
-
# The ID of the site.
|
1581
|
+
# The ID or the Amazon Resource Name (ARN) of the site.
|
1522
1582
|
# @return [String]
|
1523
1583
|
#
|
1524
1584
|
# @!attribute [rw] address_type
|
@@ -1567,7 +1627,7 @@ module Aws::Outposts
|
|
1567
1627
|
# }
|
1568
1628
|
#
|
1569
1629
|
# @!attribute [rw] site_id
|
1570
|
-
# The ID of the site.
|
1630
|
+
# The ID or the Amazon Resource Name (ARN) of the site.
|
1571
1631
|
# @return [String]
|
1572
1632
|
#
|
1573
1633
|
# @!attribute [rw] name
|
@@ -1622,7 +1682,7 @@ module Aws::Outposts
|
|
1622
1682
|
# }
|
1623
1683
|
#
|
1624
1684
|
# @!attribute [rw] site_id
|
1625
|
-
# The ID of the site.
|
1685
|
+
# The ID or the Amazon Resource Name (ARN) of the site.
|
1626
1686
|
# @return [String]
|
1627
1687
|
#
|
1628
1688
|
# @!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.28.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:
|
11
|
+
date: 2022-02-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.126.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.126.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|