aws-sdk-outposts 1.23.0 → 1.27.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-outposts/client.rb +824 -16
- data/lib/aws-sdk-outposts/client_api.rb +408 -2
- data/lib/aws-sdk-outposts/types.rb +1093 -35
- data/lib/aws-sdk-outposts.rb +2 -2
- metadata +4 -4
@@ -23,6 +23,155 @@ module Aws::Outposts
|
|
23
23
|
include Aws::Structure
|
24
24
|
end
|
25
25
|
|
26
|
+
# Information about an address.
|
27
|
+
#
|
28
|
+
# @note When making an API call, you may pass Address
|
29
|
+
# data as a hash:
|
30
|
+
#
|
31
|
+
# {
|
32
|
+
# contact_name: "ContactName",
|
33
|
+
# contact_phone_number: "ContactPhoneNumber",
|
34
|
+
# address_line_1: "AddressLine1", # required
|
35
|
+
# address_line_2: "AddressLine2",
|
36
|
+
# address_line_3: "AddressLine3",
|
37
|
+
# city: "City", # required
|
38
|
+
# state_or_region: "StateOrRegion", # required
|
39
|
+
# district_or_county: "DistrictOrCounty",
|
40
|
+
# postal_code: "PostalCode", # required
|
41
|
+
# country_code: "CountryCode", # required
|
42
|
+
# municipality: "Municipality",
|
43
|
+
# }
|
44
|
+
#
|
45
|
+
# @!attribute [rw] contact_name
|
46
|
+
# The name of the contact.
|
47
|
+
# @return [String]
|
48
|
+
#
|
49
|
+
# @!attribute [rw] contact_phone_number
|
50
|
+
# The phone number of the contact.
|
51
|
+
# @return [String]
|
52
|
+
#
|
53
|
+
# @!attribute [rw] address_line_1
|
54
|
+
# The first line of the address.
|
55
|
+
# @return [String]
|
56
|
+
#
|
57
|
+
# @!attribute [rw] address_line_2
|
58
|
+
# The second line of the address.
|
59
|
+
# @return [String]
|
60
|
+
#
|
61
|
+
# @!attribute [rw] address_line_3
|
62
|
+
# The third line of the address.
|
63
|
+
# @return [String]
|
64
|
+
#
|
65
|
+
# @!attribute [rw] city
|
66
|
+
# The city for the address.
|
67
|
+
# @return [String]
|
68
|
+
#
|
69
|
+
# @!attribute [rw] state_or_region
|
70
|
+
# The state for the address.
|
71
|
+
# @return [String]
|
72
|
+
#
|
73
|
+
# @!attribute [rw] district_or_county
|
74
|
+
# The district or county for the address.
|
75
|
+
# @return [String]
|
76
|
+
#
|
77
|
+
# @!attribute [rw] postal_code
|
78
|
+
# The postal code for the address.
|
79
|
+
# @return [String]
|
80
|
+
#
|
81
|
+
# @!attribute [rw] country_code
|
82
|
+
# The ISO-3166 two-letter country code for the address.
|
83
|
+
# @return [String]
|
84
|
+
#
|
85
|
+
# @!attribute [rw] municipality
|
86
|
+
# The municipality for the address.
|
87
|
+
# @return [String]
|
88
|
+
#
|
89
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/Address AWS API Documentation
|
90
|
+
#
|
91
|
+
class Address < Struct.new(
|
92
|
+
:contact_name,
|
93
|
+
:contact_phone_number,
|
94
|
+
:address_line_1,
|
95
|
+
:address_line_2,
|
96
|
+
:address_line_3,
|
97
|
+
:city,
|
98
|
+
:state_or_region,
|
99
|
+
:district_or_county,
|
100
|
+
:postal_code,
|
101
|
+
:country_code,
|
102
|
+
:municipality)
|
103
|
+
SENSITIVE = []
|
104
|
+
include Aws::Structure
|
105
|
+
end
|
106
|
+
|
107
|
+
# @note When making an API call, you may pass CancelOrderInput
|
108
|
+
# data as a hash:
|
109
|
+
#
|
110
|
+
# {
|
111
|
+
# order_id: "OrderId", # required
|
112
|
+
# }
|
113
|
+
#
|
114
|
+
# @!attribute [rw] order_id
|
115
|
+
# The ID of the order to cancel.
|
116
|
+
# @return [String]
|
117
|
+
#
|
118
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CancelOrderInput AWS API Documentation
|
119
|
+
#
|
120
|
+
class CancelOrderInput < Struct.new(
|
121
|
+
:order_id)
|
122
|
+
SENSITIVE = []
|
123
|
+
include Aws::Structure
|
124
|
+
end
|
125
|
+
|
126
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CancelOrderOutput AWS API Documentation
|
127
|
+
#
|
128
|
+
class CancelOrderOutput < Aws::EmptyStructure; end
|
129
|
+
|
130
|
+
# Information about a catalog item.
|
131
|
+
#
|
132
|
+
# @!attribute [rw] catalog_item_id
|
133
|
+
# The ID of the catalog item.
|
134
|
+
# @return [String]
|
135
|
+
#
|
136
|
+
# @!attribute [rw] item_status
|
137
|
+
# The status of a catalog item.
|
138
|
+
# @return [String]
|
139
|
+
#
|
140
|
+
# @!attribute [rw] ec2_capacities
|
141
|
+
# Information about the EC2 capacity of an item.
|
142
|
+
# @return [Array<Types::EC2Capacity>]
|
143
|
+
#
|
144
|
+
# @!attribute [rw] power_kva
|
145
|
+
# Information about the power draw of an item.
|
146
|
+
# @return [Float]
|
147
|
+
#
|
148
|
+
# @!attribute [rw] weight_lbs
|
149
|
+
# The weight of the item in pounds.
|
150
|
+
# @return [Integer]
|
151
|
+
#
|
152
|
+
# @!attribute [rw] supported_uplink_gbps
|
153
|
+
# The uplink speed this catalog item requires for the connection to
|
154
|
+
# the Region.
|
155
|
+
# @return [Array<Integer>]
|
156
|
+
#
|
157
|
+
# @!attribute [rw] supported_storage
|
158
|
+
# The supported storage options for the catalog item.
|
159
|
+
# @return [Array<String>]
|
160
|
+
#
|
161
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CatalogItem AWS API Documentation
|
162
|
+
#
|
163
|
+
class CatalogItem < Struct.new(
|
164
|
+
:catalog_item_id,
|
165
|
+
:item_status,
|
166
|
+
:ec2_capacities,
|
167
|
+
:power_kva,
|
168
|
+
:weight_lbs,
|
169
|
+
:supported_uplink_gbps,
|
170
|
+
:supported_storage)
|
171
|
+
SENSITIVE = []
|
172
|
+
include Aws::Structure
|
173
|
+
end
|
174
|
+
|
26
175
|
# Updating or deleting this resource can cause an inconsistent state.
|
27
176
|
#
|
28
177
|
# @!attribute [rw] message
|
@@ -112,6 +261,7 @@ module Aws::Outposts
|
|
112
261
|
# tags: {
|
113
262
|
# "TagKey" => "TagValue",
|
114
263
|
# },
|
264
|
+
# supported_hardware_type: "RACK", # accepts RACK, SERVER
|
115
265
|
# }
|
116
266
|
#
|
117
267
|
# @!attribute [rw] name
|
@@ -123,7 +273,7 @@ module Aws::Outposts
|
|
123
273
|
# @return [String]
|
124
274
|
#
|
125
275
|
# @!attribute [rw] site_id
|
126
|
-
# The ID of the site.
|
276
|
+
# The ID or the Amazon Resource Name (ARN) of the site.
|
127
277
|
# @return [String]
|
128
278
|
#
|
129
279
|
# @!attribute [rw] availability_zone
|
@@ -138,6 +288,10 @@ module Aws::Outposts
|
|
138
288
|
# The tags to apply to the Outpost.
|
139
289
|
# @return [Hash<String,String>]
|
140
290
|
#
|
291
|
+
# @!attribute [rw] supported_hardware_type
|
292
|
+
# The type of hardware for this Outpost.
|
293
|
+
# @return [String]
|
294
|
+
#
|
141
295
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateOutpostInput AWS API Documentation
|
142
296
|
#
|
143
297
|
class CreateOutpostInput < Struct.new(
|
@@ -146,7 +300,8 @@ module Aws::Outposts
|
|
146
300
|
:site_id,
|
147
301
|
:availability_zone,
|
148
302
|
:availability_zone_id,
|
149
|
-
:tags
|
303
|
+
:tags,
|
304
|
+
:supported_hardware_type)
|
150
305
|
SENSITIVE = []
|
151
306
|
include Aws::Structure
|
152
307
|
end
|
@@ -163,6 +318,121 @@ module Aws::Outposts
|
|
163
318
|
include Aws::Structure
|
164
319
|
end
|
165
320
|
|
321
|
+
# @note When making an API call, you may pass CreateSiteInput
|
322
|
+
# data as a hash:
|
323
|
+
#
|
324
|
+
# {
|
325
|
+
# name: "SiteName", # required
|
326
|
+
# description: "SiteDescription",
|
327
|
+
# notes: "SiteNotes",
|
328
|
+
# tags: {
|
329
|
+
# "TagKey" => "TagValue",
|
330
|
+
# },
|
331
|
+
# operating_address: {
|
332
|
+
# contact_name: "ContactName",
|
333
|
+
# contact_phone_number: "ContactPhoneNumber",
|
334
|
+
# address_line_1: "AddressLine1", # required
|
335
|
+
# address_line_2: "AddressLine2",
|
336
|
+
# address_line_3: "AddressLine3",
|
337
|
+
# city: "City", # required
|
338
|
+
# state_or_region: "StateOrRegion", # required
|
339
|
+
# district_or_county: "DistrictOrCounty",
|
340
|
+
# postal_code: "PostalCode", # required
|
341
|
+
# country_code: "CountryCode", # required
|
342
|
+
# municipality: "Municipality",
|
343
|
+
# },
|
344
|
+
# shipping_address: {
|
345
|
+
# contact_name: "ContactName",
|
346
|
+
# contact_phone_number: "ContactPhoneNumber",
|
347
|
+
# address_line_1: "AddressLine1", # required
|
348
|
+
# address_line_2: "AddressLine2",
|
349
|
+
# address_line_3: "AddressLine3",
|
350
|
+
# city: "City", # required
|
351
|
+
# state_or_region: "StateOrRegion", # required
|
352
|
+
# district_or_county: "DistrictOrCounty",
|
353
|
+
# postal_code: "PostalCode", # required
|
354
|
+
# country_code: "CountryCode", # required
|
355
|
+
# municipality: "Municipality",
|
356
|
+
# },
|
357
|
+
# rack_physical_properties: {
|
358
|
+
# power_draw_kva: "POWER_5_KVA", # accepts POWER_5_KVA, POWER_10_KVA, POWER_15_KVA
|
359
|
+
# power_phase: "SINGLE_PHASE", # accepts SINGLE_PHASE, THREE_PHASE
|
360
|
+
# power_connector: "L6_30P", # accepts L6_30P, IEC309, AH530P7W, AH532P6W
|
361
|
+
# power_feed_drop: "ABOVE_RACK", # accepts ABOVE_RACK, BELOW_RACK
|
362
|
+
# uplink_gbps: "UPLINK_1G", # accepts UPLINK_1G, UPLINK_10G, UPLINK_40G, UPLINK_100G
|
363
|
+
# uplink_count: "UPLINK_COUNT_1", # accepts UPLINK_COUNT_1, UPLINK_COUNT_2, UPLINK_COUNT_3, UPLINK_COUNT_4, UPLINK_COUNT_5, UPLINK_COUNT_6, UPLINK_COUNT_7, UPLINK_COUNT_8, UPLINK_COUNT_12, UPLINK_COUNT_16
|
364
|
+
# fiber_optic_cable_type: "SINGLE_MODE", # accepts SINGLE_MODE, MULTI_MODE
|
365
|
+
# optical_standard: "OPTIC_10GBASE_SR", # accepts OPTIC_10GBASE_SR, OPTIC_10GBASE_IR, OPTIC_10GBASE_LR, OPTIC_40GBASE_SR, OPTIC_40GBASE_ESR, OPTIC_40GBASE_IR4_LR4L, OPTIC_40GBASE_LR4, OPTIC_100GBASE_SR4, OPTIC_100GBASE_CWDM4, OPTIC_100GBASE_LR4, OPTIC_100G_PSM4_MSA, OPTIC_1000BASE_LX, OPTIC_1000BASE_SX
|
366
|
+
# maximum_supported_weight_lbs: "NO_LIMIT", # accepts NO_LIMIT, MAX_1400_LBS, MAX_1600_LBS, MAX_1800_LBS, MAX_2000_LBS
|
367
|
+
# },
|
368
|
+
# }
|
369
|
+
#
|
370
|
+
# @!attribute [rw] name
|
371
|
+
# The name of the site.
|
372
|
+
# @return [String]
|
373
|
+
#
|
374
|
+
# @!attribute [rw] description
|
375
|
+
# The description of the site.
|
376
|
+
# @return [String]
|
377
|
+
#
|
378
|
+
# @!attribute [rw] notes
|
379
|
+
# Additional information that you provide about site access
|
380
|
+
# requirements, electrician scheduling, personal protective equipment,
|
381
|
+
# or regulation of equipment materials that could affect your
|
382
|
+
# installation process.
|
383
|
+
# @return [String]
|
384
|
+
#
|
385
|
+
# @!attribute [rw] tags
|
386
|
+
# The tags to apply to a site.
|
387
|
+
# @return [Hash<String,String>]
|
388
|
+
#
|
389
|
+
# @!attribute [rw] operating_address
|
390
|
+
# The location to install and power on the hardware. This address
|
391
|
+
# might be different from the shipping address.
|
392
|
+
# @return [Types::Address]
|
393
|
+
#
|
394
|
+
# @!attribute [rw] shipping_address
|
395
|
+
# The location to ship the hardware. This address might be different
|
396
|
+
# from the operating address.
|
397
|
+
# @return [Types::Address]
|
398
|
+
#
|
399
|
+
# @!attribute [rw] rack_physical_properties
|
400
|
+
# Information about the physical and logistical details for the rack
|
401
|
+
# at this site. For more information about hardware requirements for
|
402
|
+
# racks, see [Network readiness checklist][1] in the Amazon Web
|
403
|
+
# Services Outposts User Guide.
|
404
|
+
#
|
405
|
+
#
|
406
|
+
#
|
407
|
+
# [1]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#checklist
|
408
|
+
# @return [Types::RackPhysicalProperties]
|
409
|
+
#
|
410
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateSiteInput AWS API Documentation
|
411
|
+
#
|
412
|
+
class CreateSiteInput < Struct.new(
|
413
|
+
:name,
|
414
|
+
:description,
|
415
|
+
:notes,
|
416
|
+
:tags,
|
417
|
+
:operating_address,
|
418
|
+
:shipping_address,
|
419
|
+
:rack_physical_properties)
|
420
|
+
SENSITIVE = []
|
421
|
+
include Aws::Structure
|
422
|
+
end
|
423
|
+
|
424
|
+
# @!attribute [rw] site
|
425
|
+
# Information about a site.
|
426
|
+
# @return [Types::Site]
|
427
|
+
#
|
428
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateSiteOutput AWS API Documentation
|
429
|
+
#
|
430
|
+
class CreateSiteOutput < Struct.new(
|
431
|
+
:site)
|
432
|
+
SENSITIVE = []
|
433
|
+
include Aws::Structure
|
434
|
+
end
|
435
|
+
|
166
436
|
# @note When making an API call, you may pass DeleteOutpostInput
|
167
437
|
# data as a hash:
|
168
438
|
#
|
@@ -171,7 +441,7 @@ module Aws::Outposts
|
|
171
441
|
# }
|
172
442
|
#
|
173
443
|
# @!attribute [rw] outpost_id
|
174
|
-
# The ID of the Outpost.
|
444
|
+
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
175
445
|
# @return [String]
|
176
446
|
#
|
177
447
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/DeleteOutpostInput AWS API Documentation
|
@@ -194,7 +464,7 @@ module Aws::Outposts
|
|
194
464
|
# }
|
195
465
|
#
|
196
466
|
# @!attribute [rw] site_id
|
197
|
-
# The ID of the site.
|
467
|
+
# The ID or the Amazon Resource Name (ARN) of the site.
|
198
468
|
# @return [String]
|
199
469
|
#
|
200
470
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/DeleteSiteInput AWS API Documentation
|
@@ -209,6 +479,92 @@ module Aws::Outposts
|
|
209
479
|
#
|
210
480
|
class DeleteSiteOutput < Aws::EmptyStructure; end
|
211
481
|
|
482
|
+
# Information about EC2 capacity.
|
483
|
+
#
|
484
|
+
# @!attribute [rw] family
|
485
|
+
# The family of the EC2 capacity.
|
486
|
+
# @return [String]
|
487
|
+
#
|
488
|
+
# @!attribute [rw] max_size
|
489
|
+
# The maximum size of the EC2 capacity.
|
490
|
+
# @return [String]
|
491
|
+
#
|
492
|
+
# @!attribute [rw] quantity
|
493
|
+
# The quantity of the EC2 capacity.
|
494
|
+
# @return [String]
|
495
|
+
#
|
496
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/EC2Capacity AWS API Documentation
|
497
|
+
#
|
498
|
+
class EC2Capacity < Struct.new(
|
499
|
+
:family,
|
500
|
+
:max_size,
|
501
|
+
:quantity)
|
502
|
+
SENSITIVE = []
|
503
|
+
include Aws::Structure
|
504
|
+
end
|
505
|
+
|
506
|
+
# @note When making an API call, you may pass GetCatalogItemInput
|
507
|
+
# data as a hash:
|
508
|
+
#
|
509
|
+
# {
|
510
|
+
# catalog_item_id: "SkuCode", # required
|
511
|
+
# }
|
512
|
+
#
|
513
|
+
# @!attribute [rw] catalog_item_id
|
514
|
+
# The ID of the catalog item.
|
515
|
+
# @return [String]
|
516
|
+
#
|
517
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetCatalogItemInput AWS API Documentation
|
518
|
+
#
|
519
|
+
class GetCatalogItemInput < Struct.new(
|
520
|
+
:catalog_item_id)
|
521
|
+
SENSITIVE = []
|
522
|
+
include Aws::Structure
|
523
|
+
end
|
524
|
+
|
525
|
+
# @!attribute [rw] catalog_item
|
526
|
+
# Information about this catalog item.
|
527
|
+
# @return [Types::CatalogItem]
|
528
|
+
#
|
529
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetCatalogItemOutput AWS API Documentation
|
530
|
+
#
|
531
|
+
class GetCatalogItemOutput < Struct.new(
|
532
|
+
:catalog_item)
|
533
|
+
SENSITIVE = []
|
534
|
+
include Aws::Structure
|
535
|
+
end
|
536
|
+
|
537
|
+
# @note When making an API call, you may pass GetOrderInput
|
538
|
+
# data as a hash:
|
539
|
+
#
|
540
|
+
# {
|
541
|
+
# order_id: "OrderId", # required
|
542
|
+
# }
|
543
|
+
#
|
544
|
+
# @!attribute [rw] order_id
|
545
|
+
# The ID of the order.
|
546
|
+
# @return [String]
|
547
|
+
#
|
548
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetOrderInput AWS API Documentation
|
549
|
+
#
|
550
|
+
class GetOrderInput < Struct.new(
|
551
|
+
:order_id)
|
552
|
+
SENSITIVE = []
|
553
|
+
include Aws::Structure
|
554
|
+
end
|
555
|
+
|
556
|
+
# @!attribute [rw] order
|
557
|
+
# Information about an order.
|
558
|
+
# @return [Types::Order]
|
559
|
+
#
|
560
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetOrderOutput AWS API Documentation
|
561
|
+
#
|
562
|
+
class GetOrderOutput < Struct.new(
|
563
|
+
:order)
|
564
|
+
SENSITIVE = []
|
565
|
+
include Aws::Structure
|
566
|
+
end
|
567
|
+
|
212
568
|
# @note When making an API call, you may pass GetOutpostInput
|
213
569
|
# data as a hash:
|
214
570
|
#
|
@@ -217,7 +573,7 @@ module Aws::Outposts
|
|
217
573
|
# }
|
218
574
|
#
|
219
575
|
# @!attribute [rw] outpost_id
|
220
|
-
# The ID of the Outpost.
|
576
|
+
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
221
577
|
# @return [String]
|
222
578
|
#
|
223
579
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetOutpostInput AWS API Documentation
|
@@ -238,7 +594,7 @@ module Aws::Outposts
|
|
238
594
|
# }
|
239
595
|
#
|
240
596
|
# @!attribute [rw] outpost_id
|
241
|
-
# The ID of the Outpost.
|
597
|
+
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
242
598
|
# @return [String]
|
243
599
|
#
|
244
600
|
# @!attribute [rw] next_token
|
@@ -298,6 +654,84 @@ module Aws::Outposts
|
|
298
654
|
include Aws::Structure
|
299
655
|
end
|
300
656
|
|
657
|
+
# @note When making an API call, you may pass GetSiteAddressInput
|
658
|
+
# data as a hash:
|
659
|
+
#
|
660
|
+
# {
|
661
|
+
# site_id: "SiteId", # required
|
662
|
+
# address_type: "SHIPPING_ADDRESS", # required, accepts SHIPPING_ADDRESS, OPERATING_ADDRESS
|
663
|
+
# }
|
664
|
+
#
|
665
|
+
# @!attribute [rw] site_id
|
666
|
+
# The ID or the Amazon Resource Name (ARN) of the site.
|
667
|
+
# @return [String]
|
668
|
+
#
|
669
|
+
# @!attribute [rw] address_type
|
670
|
+
# The type of the address you request.
|
671
|
+
# @return [String]
|
672
|
+
#
|
673
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetSiteAddressInput AWS API Documentation
|
674
|
+
#
|
675
|
+
class GetSiteAddressInput < Struct.new(
|
676
|
+
:site_id,
|
677
|
+
:address_type)
|
678
|
+
SENSITIVE = []
|
679
|
+
include Aws::Structure
|
680
|
+
end
|
681
|
+
|
682
|
+
# @!attribute [rw] site_id
|
683
|
+
# The ID of the site.
|
684
|
+
# @return [String]
|
685
|
+
#
|
686
|
+
# @!attribute [rw] address_type
|
687
|
+
# The type of the address you receive.
|
688
|
+
# @return [String]
|
689
|
+
#
|
690
|
+
# @!attribute [rw] address
|
691
|
+
# Information about the address.
|
692
|
+
# @return [Types::Address]
|
693
|
+
#
|
694
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetSiteAddressOutput AWS API Documentation
|
695
|
+
#
|
696
|
+
class GetSiteAddressOutput < Struct.new(
|
697
|
+
:site_id,
|
698
|
+
:address_type,
|
699
|
+
:address)
|
700
|
+
SENSITIVE = []
|
701
|
+
include Aws::Structure
|
702
|
+
end
|
703
|
+
|
704
|
+
# @note When making an API call, you may pass GetSiteInput
|
705
|
+
# data as a hash:
|
706
|
+
#
|
707
|
+
# {
|
708
|
+
# site_id: "SiteId", # required
|
709
|
+
# }
|
710
|
+
#
|
711
|
+
# @!attribute [rw] site_id
|
712
|
+
# The ID or the Amazon Resource Name (ARN) of the site.
|
713
|
+
# @return [String]
|
714
|
+
#
|
715
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetSiteInput AWS API Documentation
|
716
|
+
#
|
717
|
+
class GetSiteInput < Struct.new(
|
718
|
+
:site_id)
|
719
|
+
SENSITIVE = []
|
720
|
+
include Aws::Structure
|
721
|
+
end
|
722
|
+
|
723
|
+
# @!attribute [rw] site
|
724
|
+
# Information about a site.
|
725
|
+
# @return [Types::Site]
|
726
|
+
#
|
727
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetSiteOutput AWS API Documentation
|
728
|
+
#
|
729
|
+
class GetSiteOutput < Struct.new(
|
730
|
+
:site)
|
731
|
+
SENSITIVE = []
|
732
|
+
include Aws::Structure
|
733
|
+
end
|
734
|
+
|
301
735
|
# Information about an instance type.
|
302
736
|
#
|
303
737
|
# @!attribute [rw] instance_type
|
@@ -381,15 +815,15 @@ module Aws::Outposts
|
|
381
815
|
include Aws::Structure
|
382
816
|
end
|
383
817
|
|
384
|
-
# @note When making an API call, you may pass
|
818
|
+
# @note When making an API call, you may pass ListCatalogItemsInput
|
385
819
|
# data as a hash:
|
386
820
|
#
|
387
821
|
# {
|
388
822
|
# next_token: "Token",
|
389
823
|
# max_results: 1,
|
390
|
-
#
|
391
|
-
#
|
392
|
-
#
|
824
|
+
# item_class_filter: ["RACK"], # accepts RACK, SERVER
|
825
|
+
# supported_storage_filter: ["EBS"], # accepts EBS, S3
|
826
|
+
# ec2_family_filter: ["Family"],
|
393
827
|
# }
|
394
828
|
#
|
395
829
|
# @!attribute [rw] next_token
|
@@ -400,67 +834,72 @@ module Aws::Outposts
|
|
400
834
|
# The maximum page size.
|
401
835
|
# @return [Integer]
|
402
836
|
#
|
403
|
-
# @!attribute [rw]
|
404
|
-
# A filter for the
|
837
|
+
# @!attribute [rw] item_class_filter
|
838
|
+
# A filter for the class of items in the catalog.
|
405
839
|
#
|
406
840
|
# Filter values are case sensitive. If you specify multiple values for
|
407
841
|
# a filter, the values are joined with an `OR`, and the request
|
408
842
|
# returns all results that match any of the specified values.
|
409
843
|
# @return [Array<String>]
|
410
844
|
#
|
411
|
-
# @!attribute [rw]
|
412
|
-
# A filter for the
|
845
|
+
# @!attribute [rw] supported_storage_filter
|
846
|
+
# A filter for the storage options of items in the catalog.
|
413
847
|
#
|
414
848
|
# Filter values are case sensitive. If you specify multiple values for
|
415
849
|
# a filter, the values are joined with an `OR`, and the request
|
416
850
|
# returns all results that match any of the specified values.
|
417
851
|
# @return [Array<String>]
|
418
852
|
#
|
419
|
-
# @!attribute [rw]
|
420
|
-
# A filter for
|
853
|
+
# @!attribute [rw] ec2_family_filter
|
854
|
+
# A filter for EC2 family options for items in the catalog.
|
421
855
|
#
|
422
856
|
# Filter values are case sensitive. If you specify multiple values for
|
423
857
|
# a filter, the values are joined with an `OR`, and the request
|
424
858
|
# returns all results that match any of the specified values.
|
425
859
|
# @return [Array<String>]
|
426
860
|
#
|
427
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/
|
861
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListCatalogItemsInput AWS API Documentation
|
428
862
|
#
|
429
|
-
class
|
863
|
+
class ListCatalogItemsInput < Struct.new(
|
430
864
|
:next_token,
|
431
865
|
:max_results,
|
432
|
-
:
|
433
|
-
:
|
434
|
-
:
|
866
|
+
:item_class_filter,
|
867
|
+
:supported_storage_filter,
|
868
|
+
:ec2_family_filter)
|
435
869
|
SENSITIVE = []
|
436
870
|
include Aws::Structure
|
437
871
|
end
|
438
872
|
|
439
|
-
# @!attribute [rw]
|
440
|
-
# Information about the
|
441
|
-
# @return [Array<Types::
|
873
|
+
# @!attribute [rw] catalog_items
|
874
|
+
# Information about the catalog items.
|
875
|
+
# @return [Array<Types::CatalogItem>]
|
442
876
|
#
|
443
877
|
# @!attribute [rw] next_token
|
444
878
|
# The pagination token.
|
445
879
|
# @return [String]
|
446
880
|
#
|
447
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/
|
881
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListCatalogItemsOutput AWS API Documentation
|
448
882
|
#
|
449
|
-
class
|
450
|
-
:
|
883
|
+
class ListCatalogItemsOutput < Struct.new(
|
884
|
+
:catalog_items,
|
451
885
|
:next_token)
|
452
886
|
SENSITIVE = []
|
453
887
|
include Aws::Structure
|
454
888
|
end
|
455
889
|
|
456
|
-
# @note When making an API call, you may pass
|
890
|
+
# @note When making an API call, you may pass ListOrdersInput
|
457
891
|
# data as a hash:
|
458
892
|
#
|
459
893
|
# {
|
894
|
+
# outpost_identifier_filter: "OutpostIdentifier",
|
460
895
|
# next_token: "Token",
|
461
896
|
# max_results: 1,
|
462
897
|
# }
|
463
898
|
#
|
899
|
+
# @!attribute [rw] outpost_identifier_filter
|
900
|
+
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
901
|
+
# @return [String]
|
902
|
+
#
|
464
903
|
# @!attribute [rw] next_token
|
465
904
|
# The pagination token.
|
466
905
|
# @return [String]
|
@@ -469,7 +908,122 @@ module Aws::Outposts
|
|
469
908
|
# The maximum page size.
|
470
909
|
# @return [Integer]
|
471
910
|
#
|
472
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/
|
911
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListOrdersInput AWS API Documentation
|
912
|
+
#
|
913
|
+
class ListOrdersInput < Struct.new(
|
914
|
+
:outpost_identifier_filter,
|
915
|
+
:next_token,
|
916
|
+
:max_results)
|
917
|
+
SENSITIVE = []
|
918
|
+
include Aws::Structure
|
919
|
+
end
|
920
|
+
|
921
|
+
# @!attribute [rw] orders
|
922
|
+
# Information about the orders.
|
923
|
+
# @return [Array<Types::OrderSummary>]
|
924
|
+
#
|
925
|
+
# @!attribute [rw] next_token
|
926
|
+
# The pagination token.
|
927
|
+
# @return [String]
|
928
|
+
#
|
929
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListOrdersOutput AWS API Documentation
|
930
|
+
#
|
931
|
+
class ListOrdersOutput < Struct.new(
|
932
|
+
:orders,
|
933
|
+
:next_token)
|
934
|
+
SENSITIVE = []
|
935
|
+
include Aws::Structure
|
936
|
+
end
|
937
|
+
|
938
|
+
# @note When making an API call, you may pass ListOutpostsInput
|
939
|
+
# data as a hash:
|
940
|
+
#
|
941
|
+
# {
|
942
|
+
# next_token: "Token",
|
943
|
+
# max_results: 1,
|
944
|
+
# life_cycle_status_filter: ["LifeCycleStatus"],
|
945
|
+
# availability_zone_filter: ["AvailabilityZone"],
|
946
|
+
# availability_zone_id_filter: ["AvailabilityZoneId"],
|
947
|
+
# }
|
948
|
+
#
|
949
|
+
# @!attribute [rw] next_token
|
950
|
+
# The pagination token.
|
951
|
+
# @return [String]
|
952
|
+
#
|
953
|
+
# @!attribute [rw] max_results
|
954
|
+
# The maximum page size.
|
955
|
+
# @return [Integer]
|
956
|
+
#
|
957
|
+
# @!attribute [rw] life_cycle_status_filter
|
958
|
+
# A filter for the lifecycle status of the Outpost.
|
959
|
+
#
|
960
|
+
# Filter values are case sensitive. If you specify multiple values for
|
961
|
+
# a filter, the values are joined with an `OR`, and the request
|
962
|
+
# returns all results that match any of the specified values.
|
963
|
+
# @return [Array<String>]
|
964
|
+
#
|
965
|
+
# @!attribute [rw] availability_zone_filter
|
966
|
+
# A filter for the Availability Zone (`us-east-1a`) of the Outpost.
|
967
|
+
#
|
968
|
+
# Filter values are case sensitive. If you specify multiple values for
|
969
|
+
# a filter, the values are joined with an `OR`, and the request
|
970
|
+
# returns all results that match any of the specified values.
|
971
|
+
# @return [Array<String>]
|
972
|
+
#
|
973
|
+
# @!attribute [rw] availability_zone_id_filter
|
974
|
+
# A filter for the AZ IDs (`use1-az1`) of the Outpost.
|
975
|
+
#
|
976
|
+
# Filter values are case sensitive. If you specify multiple values for
|
977
|
+
# a filter, the values are joined with an `OR`, and the request
|
978
|
+
# returns all results that match any of the specified values.
|
979
|
+
# @return [Array<String>]
|
980
|
+
#
|
981
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListOutpostsInput AWS API Documentation
|
982
|
+
#
|
983
|
+
class ListOutpostsInput < Struct.new(
|
984
|
+
:next_token,
|
985
|
+
:max_results,
|
986
|
+
:life_cycle_status_filter,
|
987
|
+
:availability_zone_filter,
|
988
|
+
:availability_zone_id_filter)
|
989
|
+
SENSITIVE = []
|
990
|
+
include Aws::Structure
|
991
|
+
end
|
992
|
+
|
993
|
+
# @!attribute [rw] outposts
|
994
|
+
# Information about the Outposts.
|
995
|
+
# @return [Array<Types::Outpost>]
|
996
|
+
#
|
997
|
+
# @!attribute [rw] next_token
|
998
|
+
# The pagination token.
|
999
|
+
# @return [String]
|
1000
|
+
#
|
1001
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListOutpostsOutput AWS API Documentation
|
1002
|
+
#
|
1003
|
+
class ListOutpostsOutput < Struct.new(
|
1004
|
+
:outposts,
|
1005
|
+
:next_token)
|
1006
|
+
SENSITIVE = []
|
1007
|
+
include Aws::Structure
|
1008
|
+
end
|
1009
|
+
|
1010
|
+
# @note When making an API call, you may pass ListSitesInput
|
1011
|
+
# data as a hash:
|
1012
|
+
#
|
1013
|
+
# {
|
1014
|
+
# next_token: "Token",
|
1015
|
+
# max_results: 1,
|
1016
|
+
# }
|
1017
|
+
#
|
1018
|
+
# @!attribute [rw] next_token
|
1019
|
+
# The pagination token.
|
1020
|
+
# @return [String]
|
1021
|
+
#
|
1022
|
+
# @!attribute [rw] max_results
|
1023
|
+
# The maximum page size.
|
1024
|
+
# @return [Integer]
|
1025
|
+
#
|
1026
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListSitesInput AWS API Documentation
|
473
1027
|
#
|
474
1028
|
class ListSitesInput < Struct.new(
|
475
1029
|
:next_token,
|
@@ -542,7 +1096,7 @@ module Aws::Outposts
|
|
542
1096
|
# Information about an order.
|
543
1097
|
#
|
544
1098
|
# @!attribute [rw] outpost_id
|
545
|
-
# The ID of the Outpost.
|
1099
|
+
# The ID of the Outpost in the order.
|
546
1100
|
# @return [String]
|
547
1101
|
#
|
548
1102
|
# @!attribute [rw] order_id
|
@@ -550,7 +1104,23 @@ module Aws::Outposts
|
|
550
1104
|
# @return [String]
|
551
1105
|
#
|
552
1106
|
# @!attribute [rw] status
|
553
|
-
# The status of the order
|
1107
|
+
# The status of the order.
|
1108
|
+
#
|
1109
|
+
# * `PREPARING` - Order is received and being prepared.
|
1110
|
+
#
|
1111
|
+
# * `IN_PROGRESS` - Order is either being built, shipped, or
|
1112
|
+
# installed. To get more details, see the `LineItem` status.
|
1113
|
+
#
|
1114
|
+
# * `COMPLETED` - Order is complete.
|
1115
|
+
#
|
1116
|
+
# * `CANCELLED` - Order is cancelled.
|
1117
|
+
#
|
1118
|
+
# * `ERROR` - Customer should contact support.
|
1119
|
+
#
|
1120
|
+
# <note markdown="1"> The following status are deprecated: `RECEIVED`, `PENDING`,
|
1121
|
+
# `PROCESSING`, `INSTALLING`, and `FULFILLED`.
|
1122
|
+
#
|
1123
|
+
# </note>
|
554
1124
|
# @return [String]
|
555
1125
|
#
|
556
1126
|
# @!attribute [rw] line_items
|
@@ -583,6 +1153,66 @@ module Aws::Outposts
|
|
583
1153
|
include Aws::Structure
|
584
1154
|
end
|
585
1155
|
|
1156
|
+
# A summary of line items in your order.
|
1157
|
+
#
|
1158
|
+
# @!attribute [rw] outpost_id
|
1159
|
+
# The ID of the Outpost.
|
1160
|
+
# @return [String]
|
1161
|
+
#
|
1162
|
+
# @!attribute [rw] order_id
|
1163
|
+
# The ID of the order.
|
1164
|
+
# @return [String]
|
1165
|
+
#
|
1166
|
+
# @!attribute [rw] order_type
|
1167
|
+
# The type of order.
|
1168
|
+
# @return [String]
|
1169
|
+
#
|
1170
|
+
# @!attribute [rw] status
|
1171
|
+
# The status of the order.
|
1172
|
+
#
|
1173
|
+
# * `PREPARING` - Order is received and is being prepared.
|
1174
|
+
#
|
1175
|
+
# * `IN_PROGRESS` - Order is either being built, shipped, or
|
1176
|
+
# installed. For more information, see the `LineItem` status.
|
1177
|
+
#
|
1178
|
+
# * `COMPLETED` - Order is complete.
|
1179
|
+
#
|
1180
|
+
# * `CANCELLED` - Order is cancelled.
|
1181
|
+
#
|
1182
|
+
# * `ERROR` - Customer should contact support.
|
1183
|
+
#
|
1184
|
+
# <note markdown="1"> The following statuses are deprecated: `RECEIVED`, `PENDING`,
|
1185
|
+
# `PROCESSING`, `INSTALLING`, and `FULFILLED`.
|
1186
|
+
#
|
1187
|
+
# </note>
|
1188
|
+
# @return [String]
|
1189
|
+
#
|
1190
|
+
# @!attribute [rw] line_item_counts_by_status
|
1191
|
+
# The status of all line items in the order.
|
1192
|
+
# @return [Hash<String,Integer>]
|
1193
|
+
#
|
1194
|
+
# @!attribute [rw] order_submission_date
|
1195
|
+
# Submission date for the order.
|
1196
|
+
# @return [Time]
|
1197
|
+
#
|
1198
|
+
# @!attribute [rw] order_fulfilled_date
|
1199
|
+
# Fulfilment date for the order.
|
1200
|
+
# @return [Time]
|
1201
|
+
#
|
1202
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/OrderSummary AWS API Documentation
|
1203
|
+
#
|
1204
|
+
class OrderSummary < Struct.new(
|
1205
|
+
:outpost_id,
|
1206
|
+
:order_id,
|
1207
|
+
:order_type,
|
1208
|
+
:status,
|
1209
|
+
:line_item_counts_by_status,
|
1210
|
+
:order_submission_date,
|
1211
|
+
:order_fulfilled_date)
|
1212
|
+
SENSITIVE = []
|
1213
|
+
include Aws::Structure
|
1214
|
+
end
|
1215
|
+
|
586
1216
|
# Information about an Outpost.
|
587
1217
|
#
|
588
1218
|
# @!attribute [rw] outpost_id
|
@@ -590,7 +1220,7 @@ module Aws::Outposts
|
|
590
1220
|
# @return [String]
|
591
1221
|
#
|
592
1222
|
# @!attribute [rw] owner_id
|
593
|
-
# The
|
1223
|
+
# The Amazon Web Services account ID of the Outpost owner.
|
594
1224
|
# @return [String]
|
595
1225
|
#
|
596
1226
|
# @!attribute [rw] outpost_arn
|
@@ -629,6 +1259,10 @@ module Aws::Outposts
|
|
629
1259
|
# The Amazon Resource Name (ARN) of the site.
|
630
1260
|
# @return [String]
|
631
1261
|
#
|
1262
|
+
# @!attribute [rw] supported_hardware_type
|
1263
|
+
# The hardware type.
|
1264
|
+
# @return [String]
|
1265
|
+
#
|
632
1266
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/Outpost AWS API Documentation
|
633
1267
|
#
|
634
1268
|
class Outpost < Struct.new(
|
@@ -642,7 +1276,94 @@ module Aws::Outposts
|
|
642
1276
|
:availability_zone,
|
643
1277
|
:availability_zone_id,
|
644
1278
|
:tags,
|
645
|
-
:site_arn
|
1279
|
+
:site_arn,
|
1280
|
+
:supported_hardware_type)
|
1281
|
+
SENSITIVE = []
|
1282
|
+
include Aws::Structure
|
1283
|
+
end
|
1284
|
+
|
1285
|
+
# Information about the physical and logistical details for racks at
|
1286
|
+
# sites. For more information about hardware requirements for racks, see
|
1287
|
+
# [Network readiness checklist][1] in the Amazon Web Services Outposts
|
1288
|
+
# User Guide.
|
1289
|
+
#
|
1290
|
+
#
|
1291
|
+
#
|
1292
|
+
# [1]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#checklist
|
1293
|
+
#
|
1294
|
+
# @note When making an API call, you may pass RackPhysicalProperties
|
1295
|
+
# data as a hash:
|
1296
|
+
#
|
1297
|
+
# {
|
1298
|
+
# power_draw_kva: "POWER_5_KVA", # accepts POWER_5_KVA, POWER_10_KVA, POWER_15_KVA
|
1299
|
+
# power_phase: "SINGLE_PHASE", # accepts SINGLE_PHASE, THREE_PHASE
|
1300
|
+
# power_connector: "L6_30P", # accepts L6_30P, IEC309, AH530P7W, AH532P6W
|
1301
|
+
# power_feed_drop: "ABOVE_RACK", # accepts ABOVE_RACK, BELOW_RACK
|
1302
|
+
# uplink_gbps: "UPLINK_1G", # accepts UPLINK_1G, UPLINK_10G, UPLINK_40G, UPLINK_100G
|
1303
|
+
# uplink_count: "UPLINK_COUNT_1", # accepts UPLINK_COUNT_1, UPLINK_COUNT_2, UPLINK_COUNT_3, UPLINK_COUNT_4, UPLINK_COUNT_5, UPLINK_COUNT_6, UPLINK_COUNT_7, UPLINK_COUNT_8, UPLINK_COUNT_12, UPLINK_COUNT_16
|
1304
|
+
# fiber_optic_cable_type: "SINGLE_MODE", # accepts SINGLE_MODE, MULTI_MODE
|
1305
|
+
# optical_standard: "OPTIC_10GBASE_SR", # accepts OPTIC_10GBASE_SR, OPTIC_10GBASE_IR, OPTIC_10GBASE_LR, OPTIC_40GBASE_SR, OPTIC_40GBASE_ESR, OPTIC_40GBASE_IR4_LR4L, OPTIC_40GBASE_LR4, OPTIC_100GBASE_SR4, OPTIC_100GBASE_CWDM4, OPTIC_100GBASE_LR4, OPTIC_100G_PSM4_MSA, OPTIC_1000BASE_LX, OPTIC_1000BASE_SX
|
1306
|
+
# maximum_supported_weight_lbs: "NO_LIMIT", # accepts NO_LIMIT, MAX_1400_LBS, MAX_1600_LBS, MAX_1800_LBS, MAX_2000_LBS
|
1307
|
+
# }
|
1308
|
+
#
|
1309
|
+
# @!attribute [rw] power_draw_kva
|
1310
|
+
# The power draw available at the hardware placement position for the
|
1311
|
+
# rack.
|
1312
|
+
# @return [String]
|
1313
|
+
#
|
1314
|
+
# @!attribute [rw] power_phase
|
1315
|
+
# The power option that you can provide for hardware.
|
1316
|
+
# @return [String]
|
1317
|
+
#
|
1318
|
+
# @!attribute [rw] power_connector
|
1319
|
+
# The power connector for the hardware.
|
1320
|
+
# @return [String]
|
1321
|
+
#
|
1322
|
+
# @!attribute [rw] power_feed_drop
|
1323
|
+
# The position of the power feed.
|
1324
|
+
# @return [String]
|
1325
|
+
#
|
1326
|
+
# @!attribute [rw] uplink_gbps
|
1327
|
+
# The uplink speed the rack supports for the connection to the Region.
|
1328
|
+
# @return [String]
|
1329
|
+
#
|
1330
|
+
# @!attribute [rw] uplink_count
|
1331
|
+
# The number of uplinks each Outpost network device.
|
1332
|
+
# @return [String]
|
1333
|
+
#
|
1334
|
+
# @!attribute [rw] fiber_optic_cable_type
|
1335
|
+
# The type of fiber used to attach the Outpost to the network.
|
1336
|
+
# @return [String]
|
1337
|
+
#
|
1338
|
+
# @!attribute [rw] optical_standard
|
1339
|
+
# The type of optical standard used to attach the Outpost to the
|
1340
|
+
# network. This field is dependent on uplink speed, fiber type, and
|
1341
|
+
# distance to the upstream device. For more information about
|
1342
|
+
# networking requirements for racks, see [Network][1] in the Amazon
|
1343
|
+
# Web Services Outposts User Guide.
|
1344
|
+
#
|
1345
|
+
#
|
1346
|
+
#
|
1347
|
+
# [1]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#facility-networking
|
1348
|
+
# @return [String]
|
1349
|
+
#
|
1350
|
+
# @!attribute [rw] maximum_supported_weight_lbs
|
1351
|
+
# The maximum rack weight that this site can support. `NO_LIMIT` is
|
1352
|
+
# over 2000 lbs (907 kg).
|
1353
|
+
# @return [String]
|
1354
|
+
#
|
1355
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/RackPhysicalProperties AWS API Documentation
|
1356
|
+
#
|
1357
|
+
class RackPhysicalProperties < Struct.new(
|
1358
|
+
:power_draw_kva,
|
1359
|
+
:power_phase,
|
1360
|
+
:power_connector,
|
1361
|
+
:power_feed_drop,
|
1362
|
+
:uplink_gbps,
|
1363
|
+
:uplink_count,
|
1364
|
+
:fiber_optic_cable_type,
|
1365
|
+
:optical_standard,
|
1366
|
+
:maximum_supported_weight_lbs)
|
646
1367
|
SENSITIVE = []
|
647
1368
|
include Aws::Structure
|
648
1369
|
end
|
@@ -667,7 +1388,7 @@ module Aws::Outposts
|
|
667
1388
|
# @return [String]
|
668
1389
|
#
|
669
1390
|
# @!attribute [rw] account_id
|
670
|
-
# The ID of the
|
1391
|
+
# The ID of the Amazon Web Services account.
|
671
1392
|
# @return [String]
|
672
1393
|
#
|
673
1394
|
# @!attribute [rw] name
|
@@ -686,6 +1407,28 @@ module Aws::Outposts
|
|
686
1407
|
# The Amazon Resource Name (ARN) of the site.
|
687
1408
|
# @return [String]
|
688
1409
|
#
|
1410
|
+
# @!attribute [rw] notes
|
1411
|
+
# Notes about a site.
|
1412
|
+
# @return [String]
|
1413
|
+
#
|
1414
|
+
# @!attribute [rw] operating_address_country_code
|
1415
|
+
# The ISO-3166 two-letter country code where the hardware is installed
|
1416
|
+
# and powered on.
|
1417
|
+
# @return [String]
|
1418
|
+
#
|
1419
|
+
# @!attribute [rw] operating_address_state_or_region
|
1420
|
+
# State or region where the hardware is installed and powered on.
|
1421
|
+
# @return [String]
|
1422
|
+
#
|
1423
|
+
# @!attribute [rw] operating_address_city
|
1424
|
+
# City where the hardware is installed and powered on.
|
1425
|
+
# @return [String]
|
1426
|
+
#
|
1427
|
+
# @!attribute [rw] rack_physical_properties
|
1428
|
+
# Information about the physical and logistical details for a rack at
|
1429
|
+
# the site.
|
1430
|
+
# @return [Types::RackPhysicalProperties]
|
1431
|
+
#
|
689
1432
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/Site AWS API Documentation
|
690
1433
|
#
|
691
1434
|
class Site < Struct.new(
|
@@ -694,7 +1437,12 @@ module Aws::Outposts
|
|
694
1437
|
:name,
|
695
1438
|
:description,
|
696
1439
|
:tags,
|
697
|
-
:site_arn
|
1440
|
+
:site_arn,
|
1441
|
+
:notes,
|
1442
|
+
:operating_address_country_code,
|
1443
|
+
:operating_address_state_or_region,
|
1444
|
+
:operating_address_city,
|
1445
|
+
:rack_physical_properties)
|
698
1446
|
SENSITIVE = []
|
699
1447
|
include Aws::Structure
|
700
1448
|
end
|
@@ -759,6 +1507,316 @@ module Aws::Outposts
|
|
759
1507
|
#
|
760
1508
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
761
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
|
+
|
1559
|
+
# @note When making an API call, you may pass UpdateSiteAddressInput
|
1560
|
+
# data as a hash:
|
1561
|
+
#
|
1562
|
+
# {
|
1563
|
+
# site_id: "SiteId", # required
|
1564
|
+
# address_type: "SHIPPING_ADDRESS", # required, accepts SHIPPING_ADDRESS, OPERATING_ADDRESS
|
1565
|
+
# address: { # required
|
1566
|
+
# contact_name: "ContactName",
|
1567
|
+
# contact_phone_number: "ContactPhoneNumber",
|
1568
|
+
# address_line_1: "AddressLine1", # required
|
1569
|
+
# address_line_2: "AddressLine2",
|
1570
|
+
# address_line_3: "AddressLine3",
|
1571
|
+
# city: "City", # required
|
1572
|
+
# state_or_region: "StateOrRegion", # required
|
1573
|
+
# district_or_county: "DistrictOrCounty",
|
1574
|
+
# postal_code: "PostalCode", # required
|
1575
|
+
# country_code: "CountryCode", # required
|
1576
|
+
# municipality: "Municipality",
|
1577
|
+
# },
|
1578
|
+
# }
|
1579
|
+
#
|
1580
|
+
# @!attribute [rw] site_id
|
1581
|
+
# The ID or the Amazon Resource Name (ARN) of the site.
|
1582
|
+
# @return [String]
|
1583
|
+
#
|
1584
|
+
# @!attribute [rw] address_type
|
1585
|
+
# The type of the address.
|
1586
|
+
# @return [String]
|
1587
|
+
#
|
1588
|
+
# @!attribute [rw] address
|
1589
|
+
# The address for the site.
|
1590
|
+
# @return [Types::Address]
|
1591
|
+
#
|
1592
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateSiteAddressInput AWS API Documentation
|
1593
|
+
#
|
1594
|
+
class UpdateSiteAddressInput < Struct.new(
|
1595
|
+
:site_id,
|
1596
|
+
:address_type,
|
1597
|
+
:address)
|
1598
|
+
SENSITIVE = []
|
1599
|
+
include Aws::Structure
|
1600
|
+
end
|
1601
|
+
|
1602
|
+
# @!attribute [rw] address_type
|
1603
|
+
# The type of the address.
|
1604
|
+
# @return [String]
|
1605
|
+
#
|
1606
|
+
# @!attribute [rw] address
|
1607
|
+
# Information about an address.
|
1608
|
+
# @return [Types::Address]
|
1609
|
+
#
|
1610
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateSiteAddressOutput AWS API Documentation
|
1611
|
+
#
|
1612
|
+
class UpdateSiteAddressOutput < Struct.new(
|
1613
|
+
:address_type,
|
1614
|
+
:address)
|
1615
|
+
SENSITIVE = []
|
1616
|
+
include Aws::Structure
|
1617
|
+
end
|
1618
|
+
|
1619
|
+
# @note When making an API call, you may pass UpdateSiteInput
|
1620
|
+
# data as a hash:
|
1621
|
+
#
|
1622
|
+
# {
|
1623
|
+
# site_id: "SiteId", # required
|
1624
|
+
# name: "SiteName",
|
1625
|
+
# description: "SiteDescription",
|
1626
|
+
# notes: "SiteNotes",
|
1627
|
+
# }
|
1628
|
+
#
|
1629
|
+
# @!attribute [rw] site_id
|
1630
|
+
# The ID or the Amazon Resource Name (ARN) of the site.
|
1631
|
+
# @return [String]
|
1632
|
+
#
|
1633
|
+
# @!attribute [rw] name
|
1634
|
+
# The name of the site.
|
1635
|
+
# @return [String]
|
1636
|
+
#
|
1637
|
+
# @!attribute [rw] description
|
1638
|
+
# The description of the site.
|
1639
|
+
# @return [String]
|
1640
|
+
#
|
1641
|
+
# @!attribute [rw] notes
|
1642
|
+
# Notes about a site.
|
1643
|
+
# @return [String]
|
1644
|
+
#
|
1645
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateSiteInput AWS API Documentation
|
1646
|
+
#
|
1647
|
+
class UpdateSiteInput < Struct.new(
|
1648
|
+
:site_id,
|
1649
|
+
:name,
|
1650
|
+
:description,
|
1651
|
+
:notes)
|
1652
|
+
SENSITIVE = []
|
1653
|
+
include Aws::Structure
|
1654
|
+
end
|
1655
|
+
|
1656
|
+
# @!attribute [rw] site
|
1657
|
+
# Information about a site.
|
1658
|
+
# @return [Types::Site]
|
1659
|
+
#
|
1660
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateSiteOutput AWS API Documentation
|
1661
|
+
#
|
1662
|
+
class UpdateSiteOutput < Struct.new(
|
1663
|
+
:site)
|
1664
|
+
SENSITIVE = []
|
1665
|
+
include Aws::Structure
|
1666
|
+
end
|
1667
|
+
|
1668
|
+
# @note When making an API call, you may pass UpdateSiteRackPhysicalPropertiesInput
|
1669
|
+
# data as a hash:
|
1670
|
+
#
|
1671
|
+
# {
|
1672
|
+
# site_id: "SiteId", # required
|
1673
|
+
# power_draw_kva: "POWER_5_KVA", # accepts POWER_5_KVA, POWER_10_KVA, POWER_15_KVA
|
1674
|
+
# power_phase: "SINGLE_PHASE", # accepts SINGLE_PHASE, THREE_PHASE
|
1675
|
+
# power_connector: "L6_30P", # accepts L6_30P, IEC309, AH530P7W, AH532P6W
|
1676
|
+
# power_feed_drop: "ABOVE_RACK", # accepts ABOVE_RACK, BELOW_RACK
|
1677
|
+
# uplink_gbps: "UPLINK_1G", # accepts UPLINK_1G, UPLINK_10G, UPLINK_40G, UPLINK_100G
|
1678
|
+
# uplink_count: "UPLINK_COUNT_1", # accepts UPLINK_COUNT_1, UPLINK_COUNT_2, UPLINK_COUNT_3, UPLINK_COUNT_4, UPLINK_COUNT_5, UPLINK_COUNT_6, UPLINK_COUNT_7, UPLINK_COUNT_8, UPLINK_COUNT_12, UPLINK_COUNT_16
|
1679
|
+
# fiber_optic_cable_type: "SINGLE_MODE", # accepts SINGLE_MODE, MULTI_MODE
|
1680
|
+
# optical_standard: "OPTIC_10GBASE_SR", # accepts OPTIC_10GBASE_SR, OPTIC_10GBASE_IR, OPTIC_10GBASE_LR, OPTIC_40GBASE_SR, OPTIC_40GBASE_ESR, OPTIC_40GBASE_IR4_LR4L, OPTIC_40GBASE_LR4, OPTIC_100GBASE_SR4, OPTIC_100GBASE_CWDM4, OPTIC_100GBASE_LR4, OPTIC_100G_PSM4_MSA, OPTIC_1000BASE_LX, OPTIC_1000BASE_SX
|
1681
|
+
# maximum_supported_weight_lbs: "NO_LIMIT", # accepts NO_LIMIT, MAX_1400_LBS, MAX_1600_LBS, MAX_1800_LBS, MAX_2000_LBS
|
1682
|
+
# }
|
1683
|
+
#
|
1684
|
+
# @!attribute [rw] site_id
|
1685
|
+
# The ID or the Amazon Resource Name (ARN) of the site.
|
1686
|
+
# @return [String]
|
1687
|
+
#
|
1688
|
+
# @!attribute [rw] power_draw_kva
|
1689
|
+
# Specify in kVA the power draw available at the hardware placement
|
1690
|
+
# position for the rack.
|
1691
|
+
# @return [String]
|
1692
|
+
#
|
1693
|
+
# @!attribute [rw] power_phase
|
1694
|
+
# Specify the power option that you can provide for hardware.
|
1695
|
+
#
|
1696
|
+
# * Single-phase AC feed: 200 V to 277 V, 50 Hz or 60 Hz
|
1697
|
+
#
|
1698
|
+
# * Three-phase AC feed: 346 V to 480 V, 50 Hz or 60 Hz
|
1699
|
+
# @return [String]
|
1700
|
+
#
|
1701
|
+
# @!attribute [rw] power_connector
|
1702
|
+
# Specify the power connector that Amazon Web Services should plan to
|
1703
|
+
# provide for connections to the hardware. Note the correlation
|
1704
|
+
# between `PowerPhase` and `PowerConnector`.
|
1705
|
+
#
|
1706
|
+
# * Single-phase AC feed
|
1707
|
+
#
|
1708
|
+
# * **L6-30P** – (common in US); 30A; single phase
|
1709
|
+
#
|
1710
|
+
# * **IEC309 (blue)** – P+N+E, 6hr; 32 A; single phase
|
1711
|
+
#
|
1712
|
+
# * Three-phase AC feed
|
1713
|
+
#
|
1714
|
+
# * **AH530P7W (red)** – 3P+N+E, 7hr; 30A; three phase
|
1715
|
+
#
|
1716
|
+
# * **AH532P6W (red)** – 3P+N+E, 6hr; 32A; three phase
|
1717
|
+
# @return [String]
|
1718
|
+
#
|
1719
|
+
# @!attribute [rw] power_feed_drop
|
1720
|
+
# Specify whether the power feed comes above or below the rack.
|
1721
|
+
# @return [String]
|
1722
|
+
#
|
1723
|
+
# @!attribute [rw] uplink_gbps
|
1724
|
+
# Specify the uplink speed the rack should support for the connection
|
1725
|
+
# to the Region.
|
1726
|
+
# @return [String]
|
1727
|
+
#
|
1728
|
+
# @!attribute [rw] uplink_count
|
1729
|
+
# Racks come with two Outpost network devices. Depending on the
|
1730
|
+
# supported uplink speed at the site, the Outpost network devices
|
1731
|
+
# provide a variable number of uplinks. Specify the number of uplinks
|
1732
|
+
# for each Outpost network device that you intend to use to connect
|
1733
|
+
# the rack to your network. Note the correlation between `UplinkGbps`
|
1734
|
+
# and `UplinkCount`.
|
1735
|
+
#
|
1736
|
+
# * 1Gbps - Uplinks available: 1, 2, 4, 6, 8
|
1737
|
+
#
|
1738
|
+
# * 10Gbps - Uplinks available: 1, 2, 4, 8, 12, 16
|
1739
|
+
#
|
1740
|
+
# * 40 and 100 Gbps- Uplinks available: 1, 2, 4
|
1741
|
+
# @return [String]
|
1742
|
+
#
|
1743
|
+
# @!attribute [rw] fiber_optic_cable_type
|
1744
|
+
# Specify the type of fiber that you will use to attach the Outpost to
|
1745
|
+
# your network.
|
1746
|
+
# @return [String]
|
1747
|
+
#
|
1748
|
+
# @!attribute [rw] optical_standard
|
1749
|
+
# Specify the type of optical standard that you will use to attach the
|
1750
|
+
# Outpost to your network. This field is dependent on uplink speed,
|
1751
|
+
# fiber type, and distance to the upstream device. For more
|
1752
|
+
# information about networking requirements for racks, see
|
1753
|
+
# [Network][1] in the Amazon Web Services Outposts User Guide.
|
1754
|
+
#
|
1755
|
+
# * `OPTIC_10GBASE_SR`\: 10GBASE-SR
|
1756
|
+
#
|
1757
|
+
# * `OPTIC_10GBASE_IR`\: 10GBASE-IR
|
1758
|
+
#
|
1759
|
+
# * `OPTIC_10GBASE_LR`\: 10GBASE-LR
|
1760
|
+
#
|
1761
|
+
# * `OPTIC_40GBASE_SR`\: 40GBASE-SR
|
1762
|
+
#
|
1763
|
+
# * `OPTIC_40GBASE_ESR`\: 40GBASE-ESR
|
1764
|
+
#
|
1765
|
+
# * `OPTIC_40GBASE_IR4_LR4L`\: 40GBASE-IR (LR4L)
|
1766
|
+
#
|
1767
|
+
# * `OPTIC_40GBASE_LR4`\: 40GBASE-LR4
|
1768
|
+
#
|
1769
|
+
# * `OPTIC_100GBASE_SR4`\: 100GBASE-SR4
|
1770
|
+
#
|
1771
|
+
# * `OPTIC_100GBASE_CWDM4`\: 100GBASE-CWDM4
|
1772
|
+
#
|
1773
|
+
# * `OPTIC_100GBASE_LR4`\: 100GBASE-LR4
|
1774
|
+
#
|
1775
|
+
# * `OPTIC_100G_PSM4_MSA`\: 100G PSM4 MSA
|
1776
|
+
#
|
1777
|
+
# * `OPTIC_1000BASE_LX`\: 1000Base-LX
|
1778
|
+
#
|
1779
|
+
# * `OPTIC_1000BASE_SX`\: 1000Base-SX
|
1780
|
+
#
|
1781
|
+
#
|
1782
|
+
#
|
1783
|
+
# [1]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#facility-networking
|
1784
|
+
# @return [String]
|
1785
|
+
#
|
1786
|
+
# @!attribute [rw] maximum_supported_weight_lbs
|
1787
|
+
# Specify the maximum rack weight that this site can support.
|
1788
|
+
# `NO_LIMIT` is over 2000lbs.
|
1789
|
+
# @return [String]
|
1790
|
+
#
|
1791
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateSiteRackPhysicalPropertiesInput AWS API Documentation
|
1792
|
+
#
|
1793
|
+
class UpdateSiteRackPhysicalPropertiesInput < Struct.new(
|
1794
|
+
:site_id,
|
1795
|
+
:power_draw_kva,
|
1796
|
+
:power_phase,
|
1797
|
+
:power_connector,
|
1798
|
+
:power_feed_drop,
|
1799
|
+
:uplink_gbps,
|
1800
|
+
:uplink_count,
|
1801
|
+
:fiber_optic_cable_type,
|
1802
|
+
:optical_standard,
|
1803
|
+
:maximum_supported_weight_lbs)
|
1804
|
+
SENSITIVE = []
|
1805
|
+
include Aws::Structure
|
1806
|
+
end
|
1807
|
+
|
1808
|
+
# @!attribute [rw] site
|
1809
|
+
# Information about a site.
|
1810
|
+
# @return [Types::Site]
|
1811
|
+
#
|
1812
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateSiteRackPhysicalPropertiesOutput AWS API Documentation
|
1813
|
+
#
|
1814
|
+
class UpdateSiteRackPhysicalPropertiesOutput < Struct.new(
|
1815
|
+
:site)
|
1816
|
+
SENSITIVE = []
|
1817
|
+
include Aws::Structure
|
1818
|
+
end
|
1819
|
+
|
762
1820
|
# A parameter is not valid.
|
763
1821
|
#
|
764
1822
|
# @!attribute [rw] message
|