aws-sdk-outposts 1.23.0 → 1.24.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-outposts/client.rb +747 -9
- data/lib/aws-sdk-outposts/client_api.rb +381 -2
- data/lib/aws-sdk-outposts/types.rb +1035 -37
- data/lib/aws-sdk-outposts.rb +2 -2
- metadata +2 -2
@@ -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
|
@@ -163,6 +312,121 @@ module Aws::Outposts
|
|
163
312
|
include Aws::Structure
|
164
313
|
end
|
165
314
|
|
315
|
+
# @note When making an API call, you may pass CreateSiteInput
|
316
|
+
# data as a hash:
|
317
|
+
#
|
318
|
+
# {
|
319
|
+
# name: "SiteName", # required
|
320
|
+
# description: "SiteDescription",
|
321
|
+
# notes: "SiteNotes",
|
322
|
+
# tags: {
|
323
|
+
# "TagKey" => "TagValue",
|
324
|
+
# },
|
325
|
+
# operating_address: {
|
326
|
+
# contact_name: "ContactName",
|
327
|
+
# contact_phone_number: "ContactPhoneNumber",
|
328
|
+
# address_line_1: "AddressLine1", # required
|
329
|
+
# address_line_2: "AddressLine2",
|
330
|
+
# address_line_3: "AddressLine3",
|
331
|
+
# city: "City", # required
|
332
|
+
# state_or_region: "StateOrRegion", # required
|
333
|
+
# district_or_county: "DistrictOrCounty",
|
334
|
+
# postal_code: "PostalCode", # required
|
335
|
+
# country_code: "CountryCode", # required
|
336
|
+
# municipality: "Municipality",
|
337
|
+
# },
|
338
|
+
# shipping_address: {
|
339
|
+
# contact_name: "ContactName",
|
340
|
+
# contact_phone_number: "ContactPhoneNumber",
|
341
|
+
# address_line_1: "AddressLine1", # required
|
342
|
+
# address_line_2: "AddressLine2",
|
343
|
+
# address_line_3: "AddressLine3",
|
344
|
+
# city: "City", # required
|
345
|
+
# state_or_region: "StateOrRegion", # required
|
346
|
+
# district_or_county: "DistrictOrCounty",
|
347
|
+
# postal_code: "PostalCode", # required
|
348
|
+
# country_code: "CountryCode", # required
|
349
|
+
# municipality: "Municipality",
|
350
|
+
# },
|
351
|
+
# rack_physical_properties: {
|
352
|
+
# power_draw_kva: "POWER_5_KVA", # accepts POWER_5_KVA, POWER_10_KVA, POWER_15_KVA
|
353
|
+
# power_phase: "SINGLE_PHASE", # accepts SINGLE_PHASE, THREE_PHASE
|
354
|
+
# power_connector: "L6_30P", # accepts L6_30P, IEC309, AH530P7W, AH532P6W
|
355
|
+
# power_feed_drop: "ABOVE_RACK", # accepts ABOVE_RACK, BELOW_RACK
|
356
|
+
# uplink_gbps: "UPLINK_1G", # accepts UPLINK_1G, UPLINK_10G, UPLINK_40G, UPLINK_100G
|
357
|
+
# 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
|
358
|
+
# fiber_optic_cable_type: "SINGLE_MODE", # accepts SINGLE_MODE, MULTI_MODE
|
359
|
+
# 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
|
360
|
+
# maximum_supported_weight_lbs: "NO_LIMIT", # accepts NO_LIMIT, MAX_1400_LBS, MAX_1600_LBS, MAX_1800_LBS, MAX_2000_LBS
|
361
|
+
# },
|
362
|
+
# }
|
363
|
+
#
|
364
|
+
# @!attribute [rw] name
|
365
|
+
# The name of the site.
|
366
|
+
# @return [String]
|
367
|
+
#
|
368
|
+
# @!attribute [rw] description
|
369
|
+
# The description of the site.
|
370
|
+
# @return [String]
|
371
|
+
#
|
372
|
+
# @!attribute [rw] notes
|
373
|
+
# Additional information that you provide about site access
|
374
|
+
# requirements, electrician scheduling, personal protective equipment,
|
375
|
+
# or regulation of equipment materials that could affect your
|
376
|
+
# installation process.
|
377
|
+
# @return [String]
|
378
|
+
#
|
379
|
+
# @!attribute [rw] tags
|
380
|
+
# The tags to apply to a site.
|
381
|
+
# @return [Hash<String,String>]
|
382
|
+
#
|
383
|
+
# @!attribute [rw] operating_address
|
384
|
+
# The location to install and power on the hardware. This address
|
385
|
+
# might be different from the shipping address.
|
386
|
+
# @return [Types::Address]
|
387
|
+
#
|
388
|
+
# @!attribute [rw] shipping_address
|
389
|
+
# The location to ship the hardware. This address might be different
|
390
|
+
# from the operating address.
|
391
|
+
# @return [Types::Address]
|
392
|
+
#
|
393
|
+
# @!attribute [rw] rack_physical_properties
|
394
|
+
# Information about the physical and logistical details for the rack
|
395
|
+
# at this site. For more information about hardware requirements for
|
396
|
+
# racks, see [Network readiness checklist][1] in the Amazon Web
|
397
|
+
# Services Outposts User Guide.
|
398
|
+
#
|
399
|
+
#
|
400
|
+
#
|
401
|
+
# [1]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#checklist
|
402
|
+
# @return [Types::RackPhysicalProperties]
|
403
|
+
#
|
404
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateSiteInput AWS API Documentation
|
405
|
+
#
|
406
|
+
class CreateSiteInput < Struct.new(
|
407
|
+
:name,
|
408
|
+
:description,
|
409
|
+
:notes,
|
410
|
+
:tags,
|
411
|
+
:operating_address,
|
412
|
+
:shipping_address,
|
413
|
+
:rack_physical_properties)
|
414
|
+
SENSITIVE = []
|
415
|
+
include Aws::Structure
|
416
|
+
end
|
417
|
+
|
418
|
+
# @!attribute [rw] site
|
419
|
+
# Information about a site.
|
420
|
+
# @return [Types::Site]
|
421
|
+
#
|
422
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateSiteOutput AWS API Documentation
|
423
|
+
#
|
424
|
+
class CreateSiteOutput < Struct.new(
|
425
|
+
:site)
|
426
|
+
SENSITIVE = []
|
427
|
+
include Aws::Structure
|
428
|
+
end
|
429
|
+
|
166
430
|
# @note When making an API call, you may pass DeleteOutpostInput
|
167
431
|
# data as a hash:
|
168
432
|
#
|
@@ -209,6 +473,92 @@ module Aws::Outposts
|
|
209
473
|
#
|
210
474
|
class DeleteSiteOutput < Aws::EmptyStructure; end
|
211
475
|
|
476
|
+
# Information about EC2 capacity.
|
477
|
+
#
|
478
|
+
# @!attribute [rw] family
|
479
|
+
# The family of the EC2 capacity.
|
480
|
+
# @return [String]
|
481
|
+
#
|
482
|
+
# @!attribute [rw] max_size
|
483
|
+
# The maximum size of the EC2 capacity.
|
484
|
+
# @return [String]
|
485
|
+
#
|
486
|
+
# @!attribute [rw] quantity
|
487
|
+
# The quantity of the EC2 capacity.
|
488
|
+
# @return [String]
|
489
|
+
#
|
490
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/EC2Capacity AWS API Documentation
|
491
|
+
#
|
492
|
+
class EC2Capacity < Struct.new(
|
493
|
+
:family,
|
494
|
+
:max_size,
|
495
|
+
:quantity)
|
496
|
+
SENSITIVE = []
|
497
|
+
include Aws::Structure
|
498
|
+
end
|
499
|
+
|
500
|
+
# @note When making an API call, you may pass GetCatalogItemInput
|
501
|
+
# data as a hash:
|
502
|
+
#
|
503
|
+
# {
|
504
|
+
# catalog_item_id: "SkuCode", # required
|
505
|
+
# }
|
506
|
+
#
|
507
|
+
# @!attribute [rw] catalog_item_id
|
508
|
+
# The ID of the catalog item.
|
509
|
+
# @return [String]
|
510
|
+
#
|
511
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetCatalogItemInput AWS API Documentation
|
512
|
+
#
|
513
|
+
class GetCatalogItemInput < Struct.new(
|
514
|
+
:catalog_item_id)
|
515
|
+
SENSITIVE = []
|
516
|
+
include Aws::Structure
|
517
|
+
end
|
518
|
+
|
519
|
+
# @!attribute [rw] catalog_item
|
520
|
+
# Information about this catalog item.
|
521
|
+
# @return [Types::CatalogItem]
|
522
|
+
#
|
523
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetCatalogItemOutput AWS API Documentation
|
524
|
+
#
|
525
|
+
class GetCatalogItemOutput < Struct.new(
|
526
|
+
:catalog_item)
|
527
|
+
SENSITIVE = []
|
528
|
+
include Aws::Structure
|
529
|
+
end
|
530
|
+
|
531
|
+
# @note When making an API call, you may pass GetOrderInput
|
532
|
+
# data as a hash:
|
533
|
+
#
|
534
|
+
# {
|
535
|
+
# order_id: "OrderId", # required
|
536
|
+
# }
|
537
|
+
#
|
538
|
+
# @!attribute [rw] order_id
|
539
|
+
# The ID of the order.
|
540
|
+
# @return [String]
|
541
|
+
#
|
542
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetOrderInput AWS API Documentation
|
543
|
+
#
|
544
|
+
class GetOrderInput < Struct.new(
|
545
|
+
:order_id)
|
546
|
+
SENSITIVE = []
|
547
|
+
include Aws::Structure
|
548
|
+
end
|
549
|
+
|
550
|
+
# @!attribute [rw] order
|
551
|
+
# Information about an order.
|
552
|
+
# @return [Types::Order]
|
553
|
+
#
|
554
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetOrderOutput AWS API Documentation
|
555
|
+
#
|
556
|
+
class GetOrderOutput < Struct.new(
|
557
|
+
:order)
|
558
|
+
SENSITIVE = []
|
559
|
+
include Aws::Structure
|
560
|
+
end
|
561
|
+
|
212
562
|
# @note When making an API call, you may pass GetOutpostInput
|
213
563
|
# data as a hash:
|
214
564
|
#
|
@@ -298,6 +648,84 @@ module Aws::Outposts
|
|
298
648
|
include Aws::Structure
|
299
649
|
end
|
300
650
|
|
651
|
+
# @note When making an API call, you may pass GetSiteAddressInput
|
652
|
+
# data as a hash:
|
653
|
+
#
|
654
|
+
# {
|
655
|
+
# site_id: "SiteId", # required
|
656
|
+
# address_type: "SHIPPING_ADDRESS", # required, accepts SHIPPING_ADDRESS, OPERATING_ADDRESS
|
657
|
+
# }
|
658
|
+
#
|
659
|
+
# @!attribute [rw] site_id
|
660
|
+
# The ID of the site.
|
661
|
+
# @return [String]
|
662
|
+
#
|
663
|
+
# @!attribute [rw] address_type
|
664
|
+
# The type of the address you request.
|
665
|
+
# @return [String]
|
666
|
+
#
|
667
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetSiteAddressInput AWS API Documentation
|
668
|
+
#
|
669
|
+
class GetSiteAddressInput < Struct.new(
|
670
|
+
:site_id,
|
671
|
+
:address_type)
|
672
|
+
SENSITIVE = []
|
673
|
+
include Aws::Structure
|
674
|
+
end
|
675
|
+
|
676
|
+
# @!attribute [rw] site_id
|
677
|
+
# The ID of the site.
|
678
|
+
# @return [String]
|
679
|
+
#
|
680
|
+
# @!attribute [rw] address_type
|
681
|
+
# The type of the address you receive.
|
682
|
+
# @return [String]
|
683
|
+
#
|
684
|
+
# @!attribute [rw] address
|
685
|
+
# Information about the address.
|
686
|
+
# @return [Types::Address]
|
687
|
+
#
|
688
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetSiteAddressOutput AWS API Documentation
|
689
|
+
#
|
690
|
+
class GetSiteAddressOutput < Struct.new(
|
691
|
+
:site_id,
|
692
|
+
:address_type,
|
693
|
+
:address)
|
694
|
+
SENSITIVE = []
|
695
|
+
include Aws::Structure
|
696
|
+
end
|
697
|
+
|
698
|
+
# @note When making an API call, you may pass GetSiteInput
|
699
|
+
# data as a hash:
|
700
|
+
#
|
701
|
+
# {
|
702
|
+
# site_id: "SiteId", # required
|
703
|
+
# }
|
704
|
+
#
|
705
|
+
# @!attribute [rw] site_id
|
706
|
+
# The ID of the site.
|
707
|
+
# @return [String]
|
708
|
+
#
|
709
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetSiteInput AWS API Documentation
|
710
|
+
#
|
711
|
+
class GetSiteInput < Struct.new(
|
712
|
+
:site_id)
|
713
|
+
SENSITIVE = []
|
714
|
+
include Aws::Structure
|
715
|
+
end
|
716
|
+
|
717
|
+
# @!attribute [rw] site
|
718
|
+
# Information about a site.
|
719
|
+
# @return [Types::Site]
|
720
|
+
#
|
721
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetSiteOutput AWS API Documentation
|
722
|
+
#
|
723
|
+
class GetSiteOutput < Struct.new(
|
724
|
+
:site)
|
725
|
+
SENSITIVE = []
|
726
|
+
include Aws::Structure
|
727
|
+
end
|
728
|
+
|
301
729
|
# Information about an instance type.
|
302
730
|
#
|
303
731
|
# @!attribute [rw] instance_type
|
@@ -381,15 +809,15 @@ module Aws::Outposts
|
|
381
809
|
include Aws::Structure
|
382
810
|
end
|
383
811
|
|
384
|
-
# @note When making an API call, you may pass
|
812
|
+
# @note When making an API call, you may pass ListCatalogItemsInput
|
385
813
|
# data as a hash:
|
386
814
|
#
|
387
815
|
# {
|
388
816
|
# next_token: "Token",
|
389
817
|
# max_results: 1,
|
390
|
-
#
|
391
|
-
#
|
392
|
-
#
|
818
|
+
# item_class_filter: ["RACK"], # accepts RACK, SERVER
|
819
|
+
# supported_storage_filter: ["EBS"], # accepts EBS, S3
|
820
|
+
# ec2_family_filter: ["Family"],
|
393
821
|
# }
|
394
822
|
#
|
395
823
|
# @!attribute [rw] next_token
|
@@ -400,67 +828,72 @@ module Aws::Outposts
|
|
400
828
|
# The maximum page size.
|
401
829
|
# @return [Integer]
|
402
830
|
#
|
403
|
-
# @!attribute [rw]
|
404
|
-
# A filter for the
|
831
|
+
# @!attribute [rw] item_class_filter
|
832
|
+
# A filter for the class of items in the catalog.
|
405
833
|
#
|
406
834
|
# Filter values are case sensitive. If you specify multiple values for
|
407
835
|
# a filter, the values are joined with an `OR`, and the request
|
408
836
|
# returns all results that match any of the specified values.
|
409
837
|
# @return [Array<String>]
|
410
838
|
#
|
411
|
-
# @!attribute [rw]
|
412
|
-
# A filter for the
|
839
|
+
# @!attribute [rw] supported_storage_filter
|
840
|
+
# A filter for the storage options of items in the catalog.
|
413
841
|
#
|
414
842
|
# Filter values are case sensitive. If you specify multiple values for
|
415
843
|
# a filter, the values are joined with an `OR`, and the request
|
416
844
|
# returns all results that match any of the specified values.
|
417
845
|
# @return [Array<String>]
|
418
846
|
#
|
419
|
-
# @!attribute [rw]
|
420
|
-
# A filter for
|
847
|
+
# @!attribute [rw] ec2_family_filter
|
848
|
+
# A filter for EC2 family options for items in the catalog.
|
421
849
|
#
|
422
850
|
# Filter values are case sensitive. If you specify multiple values for
|
423
851
|
# a filter, the values are joined with an `OR`, and the request
|
424
852
|
# returns all results that match any of the specified values.
|
425
853
|
# @return [Array<String>]
|
426
854
|
#
|
427
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/
|
855
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListCatalogItemsInput AWS API Documentation
|
428
856
|
#
|
429
|
-
class
|
857
|
+
class ListCatalogItemsInput < Struct.new(
|
430
858
|
:next_token,
|
431
859
|
:max_results,
|
432
|
-
:
|
433
|
-
:
|
434
|
-
:
|
860
|
+
:item_class_filter,
|
861
|
+
:supported_storage_filter,
|
862
|
+
:ec2_family_filter)
|
435
863
|
SENSITIVE = []
|
436
864
|
include Aws::Structure
|
437
865
|
end
|
438
866
|
|
439
|
-
# @!attribute [rw]
|
440
|
-
# Information about the
|
441
|
-
# @return [Array<Types::
|
867
|
+
# @!attribute [rw] catalog_items
|
868
|
+
# Information about the catalog items.
|
869
|
+
# @return [Array<Types::CatalogItem>]
|
442
870
|
#
|
443
871
|
# @!attribute [rw] next_token
|
444
872
|
# The pagination token.
|
445
873
|
# @return [String]
|
446
874
|
#
|
447
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/
|
875
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListCatalogItemsOutput AWS API Documentation
|
448
876
|
#
|
449
|
-
class
|
450
|
-
:
|
877
|
+
class ListCatalogItemsOutput < Struct.new(
|
878
|
+
:catalog_items,
|
451
879
|
:next_token)
|
452
880
|
SENSITIVE = []
|
453
881
|
include Aws::Structure
|
454
882
|
end
|
455
883
|
|
456
|
-
# @note When making an API call, you may pass
|
884
|
+
# @note When making an API call, you may pass ListOrdersInput
|
457
885
|
# data as a hash:
|
458
886
|
#
|
459
887
|
# {
|
888
|
+
# outpost_identifier_filter: "OutpostIdentifier",
|
460
889
|
# next_token: "Token",
|
461
890
|
# max_results: 1,
|
462
891
|
# }
|
463
892
|
#
|
893
|
+
# @!attribute [rw] outpost_identifier_filter
|
894
|
+
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
895
|
+
# @return [String]
|
896
|
+
#
|
464
897
|
# @!attribute [rw] next_token
|
465
898
|
# The pagination token.
|
466
899
|
# @return [String]
|
@@ -469,37 +902,152 @@ module Aws::Outposts
|
|
469
902
|
# The maximum page size.
|
470
903
|
# @return [Integer]
|
471
904
|
#
|
472
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/
|
905
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListOrdersInput AWS API Documentation
|
473
906
|
#
|
474
|
-
class
|
907
|
+
class ListOrdersInput < Struct.new(
|
908
|
+
:outpost_identifier_filter,
|
475
909
|
:next_token,
|
476
910
|
:max_results)
|
477
911
|
SENSITIVE = []
|
478
912
|
include Aws::Structure
|
479
913
|
end
|
480
914
|
|
481
|
-
# @!attribute [rw]
|
482
|
-
# Information about the
|
483
|
-
# @return [Array<Types::
|
915
|
+
# @!attribute [rw] orders
|
916
|
+
# Information about the orders.
|
917
|
+
# @return [Array<Types::OrderSummary>]
|
484
918
|
#
|
485
919
|
# @!attribute [rw] next_token
|
486
920
|
# The pagination token.
|
487
921
|
# @return [String]
|
488
922
|
#
|
489
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/
|
923
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListOrdersOutput AWS API Documentation
|
490
924
|
#
|
491
|
-
class
|
492
|
-
:
|
925
|
+
class ListOrdersOutput < Struct.new(
|
926
|
+
:orders,
|
493
927
|
:next_token)
|
494
928
|
SENSITIVE = []
|
495
929
|
include Aws::Structure
|
496
930
|
end
|
497
931
|
|
498
|
-
# @note When making an API call, you may pass
|
932
|
+
# @note When making an API call, you may pass ListOutpostsInput
|
499
933
|
# data as a hash:
|
500
934
|
#
|
501
935
|
# {
|
502
|
-
#
|
936
|
+
# next_token: "Token",
|
937
|
+
# max_results: 1,
|
938
|
+
# life_cycle_status_filter: ["LifeCycleStatus"],
|
939
|
+
# availability_zone_filter: ["AvailabilityZone"],
|
940
|
+
# availability_zone_id_filter: ["AvailabilityZoneId"],
|
941
|
+
# }
|
942
|
+
#
|
943
|
+
# @!attribute [rw] next_token
|
944
|
+
# The pagination token.
|
945
|
+
# @return [String]
|
946
|
+
#
|
947
|
+
# @!attribute [rw] max_results
|
948
|
+
# The maximum page size.
|
949
|
+
# @return [Integer]
|
950
|
+
#
|
951
|
+
# @!attribute [rw] life_cycle_status_filter
|
952
|
+
# A filter for the lifecycle status of the Outpost.
|
953
|
+
#
|
954
|
+
# Filter values are case sensitive. If you specify multiple values for
|
955
|
+
# a filter, the values are joined with an `OR`, and the request
|
956
|
+
# returns all results that match any of the specified values.
|
957
|
+
# @return [Array<String>]
|
958
|
+
#
|
959
|
+
# @!attribute [rw] availability_zone_filter
|
960
|
+
# A filter for the Availability Zone (`us-east-1a`) of the Outpost.
|
961
|
+
#
|
962
|
+
# Filter values are case sensitive. If you specify multiple values for
|
963
|
+
# a filter, the values are joined with an `OR`, and the request
|
964
|
+
# returns all results that match any of the specified values.
|
965
|
+
# @return [Array<String>]
|
966
|
+
#
|
967
|
+
# @!attribute [rw] availability_zone_id_filter
|
968
|
+
# A filter for the AZ IDs (`use1-az1`) of the Outpost.
|
969
|
+
#
|
970
|
+
# Filter values are case sensitive. If you specify multiple values for
|
971
|
+
# a filter, the values are joined with an `OR`, and the request
|
972
|
+
# returns all results that match any of the specified values.
|
973
|
+
# @return [Array<String>]
|
974
|
+
#
|
975
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListOutpostsInput AWS API Documentation
|
976
|
+
#
|
977
|
+
class ListOutpostsInput < Struct.new(
|
978
|
+
:next_token,
|
979
|
+
:max_results,
|
980
|
+
:life_cycle_status_filter,
|
981
|
+
:availability_zone_filter,
|
982
|
+
:availability_zone_id_filter)
|
983
|
+
SENSITIVE = []
|
984
|
+
include Aws::Structure
|
985
|
+
end
|
986
|
+
|
987
|
+
# @!attribute [rw] outposts
|
988
|
+
# Information about the Outposts.
|
989
|
+
# @return [Array<Types::Outpost>]
|
990
|
+
#
|
991
|
+
# @!attribute [rw] next_token
|
992
|
+
# The pagination token.
|
993
|
+
# @return [String]
|
994
|
+
#
|
995
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListOutpostsOutput AWS API Documentation
|
996
|
+
#
|
997
|
+
class ListOutpostsOutput < Struct.new(
|
998
|
+
:outposts,
|
999
|
+
:next_token)
|
1000
|
+
SENSITIVE = []
|
1001
|
+
include Aws::Structure
|
1002
|
+
end
|
1003
|
+
|
1004
|
+
# @note When making an API call, you may pass ListSitesInput
|
1005
|
+
# data as a hash:
|
1006
|
+
#
|
1007
|
+
# {
|
1008
|
+
# next_token: "Token",
|
1009
|
+
# max_results: 1,
|
1010
|
+
# }
|
1011
|
+
#
|
1012
|
+
# @!attribute [rw] next_token
|
1013
|
+
# The pagination token.
|
1014
|
+
# @return [String]
|
1015
|
+
#
|
1016
|
+
# @!attribute [rw] max_results
|
1017
|
+
# The maximum page size.
|
1018
|
+
# @return [Integer]
|
1019
|
+
#
|
1020
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListSitesInput AWS API Documentation
|
1021
|
+
#
|
1022
|
+
class ListSitesInput < Struct.new(
|
1023
|
+
:next_token,
|
1024
|
+
:max_results)
|
1025
|
+
SENSITIVE = []
|
1026
|
+
include Aws::Structure
|
1027
|
+
end
|
1028
|
+
|
1029
|
+
# @!attribute [rw] sites
|
1030
|
+
# Information about the sites.
|
1031
|
+
# @return [Array<Types::Site>]
|
1032
|
+
#
|
1033
|
+
# @!attribute [rw] next_token
|
1034
|
+
# The pagination token.
|
1035
|
+
# @return [String]
|
1036
|
+
#
|
1037
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListSitesOutput AWS API Documentation
|
1038
|
+
#
|
1039
|
+
class ListSitesOutput < Struct.new(
|
1040
|
+
:sites,
|
1041
|
+
:next_token)
|
1042
|
+
SENSITIVE = []
|
1043
|
+
include Aws::Structure
|
1044
|
+
end
|
1045
|
+
|
1046
|
+
# @note When making an API call, you may pass ListTagsForResourceRequest
|
1047
|
+
# data as a hash:
|
1048
|
+
#
|
1049
|
+
# {
|
1050
|
+
# resource_arn: "Arn", # required
|
503
1051
|
# }
|
504
1052
|
#
|
505
1053
|
# @!attribute [rw] resource_arn
|
@@ -542,7 +1090,7 @@ module Aws::Outposts
|
|
542
1090
|
# Information about an order.
|
543
1091
|
#
|
544
1092
|
# @!attribute [rw] outpost_id
|
545
|
-
# The ID of the Outpost.
|
1093
|
+
# The ID of the Outpost in the order.
|
546
1094
|
# @return [String]
|
547
1095
|
#
|
548
1096
|
# @!attribute [rw] order_id
|
@@ -550,7 +1098,23 @@ module Aws::Outposts
|
|
550
1098
|
# @return [String]
|
551
1099
|
#
|
552
1100
|
# @!attribute [rw] status
|
553
|
-
# The status of the order
|
1101
|
+
# The status of the order.
|
1102
|
+
#
|
1103
|
+
# * `PREPARING` - Order is received and being prepared.
|
1104
|
+
#
|
1105
|
+
# * `IN_PROGRESS` - Order is either being built, shipped, or
|
1106
|
+
# installed. To get more details, see the `LineItem` status.
|
1107
|
+
#
|
1108
|
+
# * `COMPLETED` - Order is complete.
|
1109
|
+
#
|
1110
|
+
# * `CANCELLED` - Order is cancelled.
|
1111
|
+
#
|
1112
|
+
# * `ERROR` - Customer should contact support.
|
1113
|
+
#
|
1114
|
+
# <note markdown="1"> The following status are deprecated: `RECEIVED`, `PENDING`,
|
1115
|
+
# `PROCESSING`, `INSTALLING`, and `FULFILLED`.
|
1116
|
+
#
|
1117
|
+
# </note>
|
554
1118
|
# @return [String]
|
555
1119
|
#
|
556
1120
|
# @!attribute [rw] line_items
|
@@ -583,6 +1147,66 @@ module Aws::Outposts
|
|
583
1147
|
include Aws::Structure
|
584
1148
|
end
|
585
1149
|
|
1150
|
+
# A summary of line items in your order.
|
1151
|
+
#
|
1152
|
+
# @!attribute [rw] outpost_id
|
1153
|
+
# The ID of the Outpost.
|
1154
|
+
# @return [String]
|
1155
|
+
#
|
1156
|
+
# @!attribute [rw] order_id
|
1157
|
+
# The ID of the order.
|
1158
|
+
# @return [String]
|
1159
|
+
#
|
1160
|
+
# @!attribute [rw] order_type
|
1161
|
+
# The type of order.
|
1162
|
+
# @return [String]
|
1163
|
+
#
|
1164
|
+
# @!attribute [rw] status
|
1165
|
+
# The status of the order.
|
1166
|
+
#
|
1167
|
+
# * `PREPARING` - Order is received and is being prepared.
|
1168
|
+
#
|
1169
|
+
# * `IN_PROGRESS` - Order is either being built, shipped, or
|
1170
|
+
# installed. For more information, see the `LineItem` status.
|
1171
|
+
#
|
1172
|
+
# * `COMPLETED` - Order is complete.
|
1173
|
+
#
|
1174
|
+
# * `CANCELLED` - Order is cancelled.
|
1175
|
+
#
|
1176
|
+
# * `ERROR` - Customer should contact support.
|
1177
|
+
#
|
1178
|
+
# <note markdown="1"> The following statuses are deprecated: `RECEIVED`, `PENDING`,
|
1179
|
+
# `PROCESSING`, `INSTALLING`, and `FULFILLED`.
|
1180
|
+
#
|
1181
|
+
# </note>
|
1182
|
+
# @return [String]
|
1183
|
+
#
|
1184
|
+
# @!attribute [rw] line_item_counts_by_status
|
1185
|
+
# The status of all line items in the order.
|
1186
|
+
# @return [Hash<String,Integer>]
|
1187
|
+
#
|
1188
|
+
# @!attribute [rw] order_submission_date
|
1189
|
+
# Submission date for the order.
|
1190
|
+
# @return [Time]
|
1191
|
+
#
|
1192
|
+
# @!attribute [rw] order_fulfilled_date
|
1193
|
+
# Fulfilment date for the order.
|
1194
|
+
# @return [Time]
|
1195
|
+
#
|
1196
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/OrderSummary AWS API Documentation
|
1197
|
+
#
|
1198
|
+
class OrderSummary < Struct.new(
|
1199
|
+
:outpost_id,
|
1200
|
+
:order_id,
|
1201
|
+
:order_type,
|
1202
|
+
:status,
|
1203
|
+
:line_item_counts_by_status,
|
1204
|
+
:order_submission_date,
|
1205
|
+
:order_fulfilled_date)
|
1206
|
+
SENSITIVE = []
|
1207
|
+
include Aws::Structure
|
1208
|
+
end
|
1209
|
+
|
586
1210
|
# Information about an Outpost.
|
587
1211
|
#
|
588
1212
|
# @!attribute [rw] outpost_id
|
@@ -590,7 +1214,7 @@ module Aws::Outposts
|
|
590
1214
|
# @return [String]
|
591
1215
|
#
|
592
1216
|
# @!attribute [rw] owner_id
|
593
|
-
# The
|
1217
|
+
# The Amazon Web Services account ID of the Outpost owner.
|
594
1218
|
# @return [String]
|
595
1219
|
#
|
596
1220
|
# @!attribute [rw] outpost_arn
|
@@ -647,6 +1271,92 @@ module Aws::Outposts
|
|
647
1271
|
include Aws::Structure
|
648
1272
|
end
|
649
1273
|
|
1274
|
+
# Information about the physical and logistical details for racks at
|
1275
|
+
# sites. For more information about hardware requirements for racks, see
|
1276
|
+
# [Network readiness checklist][1] in the Amazon Web Services Outposts
|
1277
|
+
# User Guide.
|
1278
|
+
#
|
1279
|
+
#
|
1280
|
+
#
|
1281
|
+
# [1]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#checklist
|
1282
|
+
#
|
1283
|
+
# @note When making an API call, you may pass RackPhysicalProperties
|
1284
|
+
# data as a hash:
|
1285
|
+
#
|
1286
|
+
# {
|
1287
|
+
# power_draw_kva: "POWER_5_KVA", # accepts POWER_5_KVA, POWER_10_KVA, POWER_15_KVA
|
1288
|
+
# power_phase: "SINGLE_PHASE", # accepts SINGLE_PHASE, THREE_PHASE
|
1289
|
+
# power_connector: "L6_30P", # accepts L6_30P, IEC309, AH530P7W, AH532P6W
|
1290
|
+
# power_feed_drop: "ABOVE_RACK", # accepts ABOVE_RACK, BELOW_RACK
|
1291
|
+
# uplink_gbps: "UPLINK_1G", # accepts UPLINK_1G, UPLINK_10G, UPLINK_40G, UPLINK_100G
|
1292
|
+
# 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
|
1293
|
+
# fiber_optic_cable_type: "SINGLE_MODE", # accepts SINGLE_MODE, MULTI_MODE
|
1294
|
+
# 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
|
1295
|
+
# maximum_supported_weight_lbs: "NO_LIMIT", # accepts NO_LIMIT, MAX_1400_LBS, MAX_1600_LBS, MAX_1800_LBS, MAX_2000_LBS
|
1296
|
+
# }
|
1297
|
+
#
|
1298
|
+
# @!attribute [rw] power_draw_kva
|
1299
|
+
# The power draw available at the hardware placement position for the
|
1300
|
+
# rack.
|
1301
|
+
# @return [String]
|
1302
|
+
#
|
1303
|
+
# @!attribute [rw] power_phase
|
1304
|
+
# The power option that you can provide for hardware.
|
1305
|
+
# @return [String]
|
1306
|
+
#
|
1307
|
+
# @!attribute [rw] power_connector
|
1308
|
+
# The power connector for the hardware.
|
1309
|
+
# @return [String]
|
1310
|
+
#
|
1311
|
+
# @!attribute [rw] power_feed_drop
|
1312
|
+
# The position of the power feed.
|
1313
|
+
# @return [String]
|
1314
|
+
#
|
1315
|
+
# @!attribute [rw] uplink_gbps
|
1316
|
+
# The uplink speed the rack supports for the connection to the Region.
|
1317
|
+
# @return [String]
|
1318
|
+
#
|
1319
|
+
# @!attribute [rw] uplink_count
|
1320
|
+
# The number of uplinks each Outpost network device.
|
1321
|
+
# @return [String]
|
1322
|
+
#
|
1323
|
+
# @!attribute [rw] fiber_optic_cable_type
|
1324
|
+
# The type of fiber used to attach the Outpost to the network.
|
1325
|
+
# @return [String]
|
1326
|
+
#
|
1327
|
+
# @!attribute [rw] optical_standard
|
1328
|
+
# The type of optical standard used to attach the Outpost to the
|
1329
|
+
# network. This field is dependent on uplink speed, fiber type, and
|
1330
|
+
# distance to the upstream device. For more information about
|
1331
|
+
# networking requirements for racks, see [Network][1] in the Amazon
|
1332
|
+
# Web Services Outposts User Guide.
|
1333
|
+
#
|
1334
|
+
#
|
1335
|
+
#
|
1336
|
+
# [1]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#facility-networking
|
1337
|
+
# @return [String]
|
1338
|
+
#
|
1339
|
+
# @!attribute [rw] maximum_supported_weight_lbs
|
1340
|
+
# The maximum rack weight that this site can support. `NO_LIMIT` is
|
1341
|
+
# over 2000 lbs (907 kg).
|
1342
|
+
# @return [String]
|
1343
|
+
#
|
1344
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/RackPhysicalProperties AWS API Documentation
|
1345
|
+
#
|
1346
|
+
class RackPhysicalProperties < Struct.new(
|
1347
|
+
:power_draw_kva,
|
1348
|
+
:power_phase,
|
1349
|
+
:power_connector,
|
1350
|
+
:power_feed_drop,
|
1351
|
+
:uplink_gbps,
|
1352
|
+
:uplink_count,
|
1353
|
+
:fiber_optic_cable_type,
|
1354
|
+
:optical_standard,
|
1355
|
+
:maximum_supported_weight_lbs)
|
1356
|
+
SENSITIVE = []
|
1357
|
+
include Aws::Structure
|
1358
|
+
end
|
1359
|
+
|
650
1360
|
# You have exceeded a service quota.
|
651
1361
|
#
|
652
1362
|
# @!attribute [rw] message
|
@@ -667,7 +1377,7 @@ module Aws::Outposts
|
|
667
1377
|
# @return [String]
|
668
1378
|
#
|
669
1379
|
# @!attribute [rw] account_id
|
670
|
-
# The ID of the
|
1380
|
+
# The ID of the Amazon Web Services account.
|
671
1381
|
# @return [String]
|
672
1382
|
#
|
673
1383
|
# @!attribute [rw] name
|
@@ -686,6 +1396,28 @@ module Aws::Outposts
|
|
686
1396
|
# The Amazon Resource Name (ARN) of the site.
|
687
1397
|
# @return [String]
|
688
1398
|
#
|
1399
|
+
# @!attribute [rw] notes
|
1400
|
+
# Notes about a site.
|
1401
|
+
# @return [String]
|
1402
|
+
#
|
1403
|
+
# @!attribute [rw] operating_address_country_code
|
1404
|
+
# The ISO-3166 two-letter country code where the hardware is installed
|
1405
|
+
# and powered on.
|
1406
|
+
# @return [String]
|
1407
|
+
#
|
1408
|
+
# @!attribute [rw] operating_address_state_or_region
|
1409
|
+
# State or region where the hardware is installed and powered on.
|
1410
|
+
# @return [String]
|
1411
|
+
#
|
1412
|
+
# @!attribute [rw] operating_address_city
|
1413
|
+
# City where the hardware is installed and powered on.
|
1414
|
+
# @return [String]
|
1415
|
+
#
|
1416
|
+
# @!attribute [rw] rack_physical_properties
|
1417
|
+
# Information about the physical and logistical details for a rack at
|
1418
|
+
# the site.
|
1419
|
+
# @return [Types::RackPhysicalProperties]
|
1420
|
+
#
|
689
1421
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/Site AWS API Documentation
|
690
1422
|
#
|
691
1423
|
class Site < Struct.new(
|
@@ -694,7 +1426,12 @@ module Aws::Outposts
|
|
694
1426
|
:name,
|
695
1427
|
:description,
|
696
1428
|
:tags,
|
697
|
-
:site_arn
|
1429
|
+
:site_arn,
|
1430
|
+
:notes,
|
1431
|
+
:operating_address_country_code,
|
1432
|
+
:operating_address_state_or_region,
|
1433
|
+
:operating_address_city,
|
1434
|
+
:rack_physical_properties)
|
698
1435
|
SENSITIVE = []
|
699
1436
|
include Aws::Structure
|
700
1437
|
end
|
@@ -759,6 +1496,267 @@ module Aws::Outposts
|
|
759
1496
|
#
|
760
1497
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
761
1498
|
|
1499
|
+
# @note When making an API call, you may pass UpdateSiteAddressInput
|
1500
|
+
# data as a hash:
|
1501
|
+
#
|
1502
|
+
# {
|
1503
|
+
# site_id: "SiteId", # required
|
1504
|
+
# address_type: "SHIPPING_ADDRESS", # required, accepts SHIPPING_ADDRESS, OPERATING_ADDRESS
|
1505
|
+
# address: { # required
|
1506
|
+
# contact_name: "ContactName",
|
1507
|
+
# contact_phone_number: "ContactPhoneNumber",
|
1508
|
+
# address_line_1: "AddressLine1", # required
|
1509
|
+
# address_line_2: "AddressLine2",
|
1510
|
+
# address_line_3: "AddressLine3",
|
1511
|
+
# city: "City", # required
|
1512
|
+
# state_or_region: "StateOrRegion", # required
|
1513
|
+
# district_or_county: "DistrictOrCounty",
|
1514
|
+
# postal_code: "PostalCode", # required
|
1515
|
+
# country_code: "CountryCode", # required
|
1516
|
+
# municipality: "Municipality",
|
1517
|
+
# },
|
1518
|
+
# }
|
1519
|
+
#
|
1520
|
+
# @!attribute [rw] site_id
|
1521
|
+
# The ID of the site.
|
1522
|
+
# @return [String]
|
1523
|
+
#
|
1524
|
+
# @!attribute [rw] address_type
|
1525
|
+
# The type of the address.
|
1526
|
+
# @return [String]
|
1527
|
+
#
|
1528
|
+
# @!attribute [rw] address
|
1529
|
+
# The address for the site.
|
1530
|
+
# @return [Types::Address]
|
1531
|
+
#
|
1532
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateSiteAddressInput AWS API Documentation
|
1533
|
+
#
|
1534
|
+
class UpdateSiteAddressInput < Struct.new(
|
1535
|
+
:site_id,
|
1536
|
+
:address_type,
|
1537
|
+
:address)
|
1538
|
+
SENSITIVE = []
|
1539
|
+
include Aws::Structure
|
1540
|
+
end
|
1541
|
+
|
1542
|
+
# @!attribute [rw] address_type
|
1543
|
+
# The type of the address.
|
1544
|
+
# @return [String]
|
1545
|
+
#
|
1546
|
+
# @!attribute [rw] address
|
1547
|
+
# Information about an address.
|
1548
|
+
# @return [Types::Address]
|
1549
|
+
#
|
1550
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateSiteAddressOutput AWS API Documentation
|
1551
|
+
#
|
1552
|
+
class UpdateSiteAddressOutput < Struct.new(
|
1553
|
+
:address_type,
|
1554
|
+
:address)
|
1555
|
+
SENSITIVE = []
|
1556
|
+
include Aws::Structure
|
1557
|
+
end
|
1558
|
+
|
1559
|
+
# @note When making an API call, you may pass UpdateSiteInput
|
1560
|
+
# data as a hash:
|
1561
|
+
#
|
1562
|
+
# {
|
1563
|
+
# site_id: "SiteId", # required
|
1564
|
+
# name: "SiteName",
|
1565
|
+
# description: "SiteDescription",
|
1566
|
+
# notes: "SiteNotes",
|
1567
|
+
# }
|
1568
|
+
#
|
1569
|
+
# @!attribute [rw] site_id
|
1570
|
+
# The ID of the site.
|
1571
|
+
# @return [String]
|
1572
|
+
#
|
1573
|
+
# @!attribute [rw] name
|
1574
|
+
# The name of the site.
|
1575
|
+
# @return [String]
|
1576
|
+
#
|
1577
|
+
# @!attribute [rw] description
|
1578
|
+
# The description of the site.
|
1579
|
+
# @return [String]
|
1580
|
+
#
|
1581
|
+
# @!attribute [rw] notes
|
1582
|
+
# Notes about a site.
|
1583
|
+
# @return [String]
|
1584
|
+
#
|
1585
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateSiteInput AWS API Documentation
|
1586
|
+
#
|
1587
|
+
class UpdateSiteInput < Struct.new(
|
1588
|
+
:site_id,
|
1589
|
+
:name,
|
1590
|
+
:description,
|
1591
|
+
:notes)
|
1592
|
+
SENSITIVE = []
|
1593
|
+
include Aws::Structure
|
1594
|
+
end
|
1595
|
+
|
1596
|
+
# @!attribute [rw] site
|
1597
|
+
# Information about a site.
|
1598
|
+
# @return [Types::Site]
|
1599
|
+
#
|
1600
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateSiteOutput AWS API Documentation
|
1601
|
+
#
|
1602
|
+
class UpdateSiteOutput < Struct.new(
|
1603
|
+
:site)
|
1604
|
+
SENSITIVE = []
|
1605
|
+
include Aws::Structure
|
1606
|
+
end
|
1607
|
+
|
1608
|
+
# @note When making an API call, you may pass UpdateSiteRackPhysicalPropertiesInput
|
1609
|
+
# data as a hash:
|
1610
|
+
#
|
1611
|
+
# {
|
1612
|
+
# site_id: "SiteId", # required
|
1613
|
+
# power_draw_kva: "POWER_5_KVA", # accepts POWER_5_KVA, POWER_10_KVA, POWER_15_KVA
|
1614
|
+
# power_phase: "SINGLE_PHASE", # accepts SINGLE_PHASE, THREE_PHASE
|
1615
|
+
# power_connector: "L6_30P", # accepts L6_30P, IEC309, AH530P7W, AH532P6W
|
1616
|
+
# power_feed_drop: "ABOVE_RACK", # accepts ABOVE_RACK, BELOW_RACK
|
1617
|
+
# uplink_gbps: "UPLINK_1G", # accepts UPLINK_1G, UPLINK_10G, UPLINK_40G, UPLINK_100G
|
1618
|
+
# 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
|
1619
|
+
# fiber_optic_cable_type: "SINGLE_MODE", # accepts SINGLE_MODE, MULTI_MODE
|
1620
|
+
# 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
|
1621
|
+
# maximum_supported_weight_lbs: "NO_LIMIT", # accepts NO_LIMIT, MAX_1400_LBS, MAX_1600_LBS, MAX_1800_LBS, MAX_2000_LBS
|
1622
|
+
# }
|
1623
|
+
#
|
1624
|
+
# @!attribute [rw] site_id
|
1625
|
+
# The ID of the site.
|
1626
|
+
# @return [String]
|
1627
|
+
#
|
1628
|
+
# @!attribute [rw] power_draw_kva
|
1629
|
+
# Specify in kVA the power draw available at the hardware placement
|
1630
|
+
# position for the rack.
|
1631
|
+
# @return [String]
|
1632
|
+
#
|
1633
|
+
# @!attribute [rw] power_phase
|
1634
|
+
# Specify the power option that you can provide for hardware.
|
1635
|
+
#
|
1636
|
+
# * Single-phase AC feed: 200 V to 277 V, 50 Hz or 60 Hz
|
1637
|
+
#
|
1638
|
+
# * Three-phase AC feed: 346 V to 480 V, 50 Hz or 60 Hz
|
1639
|
+
# @return [String]
|
1640
|
+
#
|
1641
|
+
# @!attribute [rw] power_connector
|
1642
|
+
# Specify the power connector that Amazon Web Services should plan to
|
1643
|
+
# provide for connections to the hardware. Note the correlation
|
1644
|
+
# between `PowerPhase` and `PowerConnector`.
|
1645
|
+
#
|
1646
|
+
# * Single-phase AC feed
|
1647
|
+
#
|
1648
|
+
# * **L6-30P** – (common in US); 30A; single phase
|
1649
|
+
#
|
1650
|
+
# * **IEC309 (blue)** – P+N+E, 6hr; 32 A; single phase
|
1651
|
+
#
|
1652
|
+
# * Three-phase AC feed
|
1653
|
+
#
|
1654
|
+
# * **AH530P7W (red)** – 3P+N+E, 7hr; 30A; three phase
|
1655
|
+
#
|
1656
|
+
# * **AH532P6W (red)** – 3P+N+E, 6hr; 32A; three phase
|
1657
|
+
# @return [String]
|
1658
|
+
#
|
1659
|
+
# @!attribute [rw] power_feed_drop
|
1660
|
+
# Specify whether the power feed comes above or below the rack.
|
1661
|
+
# @return [String]
|
1662
|
+
#
|
1663
|
+
# @!attribute [rw] uplink_gbps
|
1664
|
+
# Specify the uplink speed the rack should support for the connection
|
1665
|
+
# to the Region.
|
1666
|
+
# @return [String]
|
1667
|
+
#
|
1668
|
+
# @!attribute [rw] uplink_count
|
1669
|
+
# Racks come with two Outpost network devices. Depending on the
|
1670
|
+
# supported uplink speed at the site, the Outpost network devices
|
1671
|
+
# provide a variable number of uplinks. Specify the number of uplinks
|
1672
|
+
# for each Outpost network device that you intend to use to connect
|
1673
|
+
# the rack to your network. Note the correlation between `UplinkGbps`
|
1674
|
+
# and `UplinkCount`.
|
1675
|
+
#
|
1676
|
+
# * 1Gbps - Uplinks available: 1, 2, 4, 6, 8
|
1677
|
+
#
|
1678
|
+
# * 10Gbps - Uplinks available: 1, 2, 4, 8, 12, 16
|
1679
|
+
#
|
1680
|
+
# * 40 and 100 Gbps- Uplinks available: 1, 2, 4
|
1681
|
+
# @return [String]
|
1682
|
+
#
|
1683
|
+
# @!attribute [rw] fiber_optic_cable_type
|
1684
|
+
# Specify the type of fiber that you will use to attach the Outpost to
|
1685
|
+
# your network.
|
1686
|
+
# @return [String]
|
1687
|
+
#
|
1688
|
+
# @!attribute [rw] optical_standard
|
1689
|
+
# Specify the type of optical standard that you will use to attach the
|
1690
|
+
# Outpost to your network. This field is dependent on uplink speed,
|
1691
|
+
# fiber type, and distance to the upstream device. For more
|
1692
|
+
# information about networking requirements for racks, see
|
1693
|
+
# [Network][1] in the Amazon Web Services Outposts User Guide.
|
1694
|
+
#
|
1695
|
+
# * `OPTIC_10GBASE_SR`\: 10GBASE-SR
|
1696
|
+
#
|
1697
|
+
# * `OPTIC_10GBASE_IR`\: 10GBASE-IR
|
1698
|
+
#
|
1699
|
+
# * `OPTIC_10GBASE_LR`\: 10GBASE-LR
|
1700
|
+
#
|
1701
|
+
# * `OPTIC_40GBASE_SR`\: 40GBASE-SR
|
1702
|
+
#
|
1703
|
+
# * `OPTIC_40GBASE_ESR`\: 40GBASE-ESR
|
1704
|
+
#
|
1705
|
+
# * `OPTIC_40GBASE_IR4_LR4L`\: 40GBASE-IR (LR4L)
|
1706
|
+
#
|
1707
|
+
# * `OPTIC_40GBASE_LR4`\: 40GBASE-LR4
|
1708
|
+
#
|
1709
|
+
# * `OPTIC_100GBASE_SR4`\: 100GBASE-SR4
|
1710
|
+
#
|
1711
|
+
# * `OPTIC_100GBASE_CWDM4`\: 100GBASE-CWDM4
|
1712
|
+
#
|
1713
|
+
# * `OPTIC_100GBASE_LR4`\: 100GBASE-LR4
|
1714
|
+
#
|
1715
|
+
# * `OPTIC_100G_PSM4_MSA`\: 100G PSM4 MSA
|
1716
|
+
#
|
1717
|
+
# * `OPTIC_1000BASE_LX`\: 1000Base-LX
|
1718
|
+
#
|
1719
|
+
# * `OPTIC_1000BASE_SX`\: 1000Base-SX
|
1720
|
+
#
|
1721
|
+
#
|
1722
|
+
#
|
1723
|
+
# [1]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#facility-networking
|
1724
|
+
# @return [String]
|
1725
|
+
#
|
1726
|
+
# @!attribute [rw] maximum_supported_weight_lbs
|
1727
|
+
# Specify the maximum rack weight that this site can support.
|
1728
|
+
# `NO_LIMIT` is over 2000lbs.
|
1729
|
+
# @return [String]
|
1730
|
+
#
|
1731
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateSiteRackPhysicalPropertiesInput AWS API Documentation
|
1732
|
+
#
|
1733
|
+
class UpdateSiteRackPhysicalPropertiesInput < Struct.new(
|
1734
|
+
:site_id,
|
1735
|
+
:power_draw_kva,
|
1736
|
+
:power_phase,
|
1737
|
+
:power_connector,
|
1738
|
+
:power_feed_drop,
|
1739
|
+
:uplink_gbps,
|
1740
|
+
:uplink_count,
|
1741
|
+
:fiber_optic_cable_type,
|
1742
|
+
:optical_standard,
|
1743
|
+
:maximum_supported_weight_lbs)
|
1744
|
+
SENSITIVE = []
|
1745
|
+
include Aws::Structure
|
1746
|
+
end
|
1747
|
+
|
1748
|
+
# @!attribute [rw] site
|
1749
|
+
# Information about a site.
|
1750
|
+
# @return [Types::Site]
|
1751
|
+
#
|
1752
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateSiteRackPhysicalPropertiesOutput AWS API Documentation
|
1753
|
+
#
|
1754
|
+
class UpdateSiteRackPhysicalPropertiesOutput < Struct.new(
|
1755
|
+
:site)
|
1756
|
+
SENSITIVE = []
|
1757
|
+
include Aws::Structure
|
1758
|
+
end
|
1759
|
+
|
762
1760
|
# A parameter is not valid.
|
763
1761
|
#
|
764
1762
|
# @!attribute [rw] message
|