aws-sdk-outposts 1.20.0 → 1.24.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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
@@ -46,6 +195,60 @@ module Aws::Outposts
46
195
  include Aws::Structure
47
196
  end
48
197
 
198
+ # @note When making an API call, you may pass CreateOrderInput
199
+ # data as a hash:
200
+ #
201
+ # {
202
+ # outpost_identifier: "OutpostIdentifier", # required
203
+ # line_items: [ # required
204
+ # {
205
+ # catalog_item_id: "SkuCode",
206
+ # quantity: 1,
207
+ # },
208
+ # ],
209
+ # payment_option: "ALL_UPFRONT", # required, accepts ALL_UPFRONT, NO_UPFRONT, PARTIAL_UPFRONT
210
+ # payment_term: "THREE_YEARS", # accepts THREE_YEARS
211
+ # }
212
+ #
213
+ # @!attribute [rw] outpost_identifier
214
+ # The ID or the Amazon Resource Name (ARN) of the Outpost.
215
+ # @return [String]
216
+ #
217
+ # @!attribute [rw] line_items
218
+ # The line items that make up the order.
219
+ # @return [Array<Types::LineItemRequest>]
220
+ #
221
+ # @!attribute [rw] payment_option
222
+ # The payment option for the order.
223
+ # @return [String]
224
+ #
225
+ # @!attribute [rw] payment_term
226
+ # The payment terms for the order.
227
+ # @return [String]
228
+ #
229
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateOrderInput AWS API Documentation
230
+ #
231
+ class CreateOrderInput < Struct.new(
232
+ :outpost_identifier,
233
+ :line_items,
234
+ :payment_option,
235
+ :payment_term)
236
+ SENSITIVE = []
237
+ include Aws::Structure
238
+ end
239
+
240
+ # @!attribute [rw] order
241
+ # Information about this order.
242
+ # @return [Types::Order]
243
+ #
244
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateOrderOutput AWS API Documentation
245
+ #
246
+ class CreateOrderOutput < Struct.new(
247
+ :order)
248
+ SENSITIVE = []
249
+ include Aws::Structure
250
+ end
251
+
49
252
  # @note When making an API call, you may pass CreateOutpostInput
50
253
  # data as a hash:
51
254
  #
@@ -109,6 +312,121 @@ module Aws::Outposts
109
312
  include Aws::Structure
110
313
  end
111
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
+
112
430
  # @note When making an API call, you may pass DeleteOutpostInput
113
431
  # data as a hash:
114
432
  #
@@ -155,6 +473,92 @@ module Aws::Outposts
155
473
  #
156
474
  class DeleteSiteOutput < Aws::EmptyStructure; end
157
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
+
158
562
  # @note When making an API call, you may pass GetOutpostInput
159
563
  # data as a hash:
160
564
  #
@@ -244,29 +648,283 @@ module Aws::Outposts
244
648
  include Aws::Structure
245
649
  end
246
650
 
247
- # Information about an instance type.
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
+
729
+ # Information about an instance type.
730
+ #
731
+ # @!attribute [rw] instance_type
732
+ # The instance type.
733
+ # @return [String]
734
+ #
735
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/InstanceTypeItem AWS API Documentation
736
+ #
737
+ class InstanceTypeItem < Struct.new(
738
+ :instance_type)
739
+ SENSITIVE = []
740
+ include Aws::Structure
741
+ end
742
+
743
+ # An internal error has occurred.
744
+ #
745
+ # @!attribute [rw] message
746
+ # @return [String]
747
+ #
748
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/InternalServerException AWS API Documentation
749
+ #
750
+ class InternalServerException < Struct.new(
751
+ :message)
752
+ SENSITIVE = []
753
+ include Aws::Structure
754
+ end
755
+
756
+ # Information about a line item.
757
+ #
758
+ # @!attribute [rw] catalog_item_id
759
+ # The ID of the catalog item.
760
+ # @return [String]
761
+ #
762
+ # @!attribute [rw] line_item_id
763
+ # The ID of the line item.
764
+ # @return [String]
765
+ #
766
+ # @!attribute [rw] quantity
767
+ # The quantity of the line item.
768
+ # @return [Integer]
769
+ #
770
+ # @!attribute [rw] status
771
+ # The status of the line item.
772
+ # @return [String]
773
+ #
774
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/LineItem AWS API Documentation
775
+ #
776
+ class LineItem < Struct.new(
777
+ :catalog_item_id,
778
+ :line_item_id,
779
+ :quantity,
780
+ :status)
781
+ SENSITIVE = []
782
+ include Aws::Structure
783
+ end
784
+
785
+ # Information about a line item request.
786
+ #
787
+ # @note When making an API call, you may pass LineItemRequest
788
+ # data as a hash:
789
+ #
790
+ # {
791
+ # catalog_item_id: "SkuCode",
792
+ # quantity: 1,
793
+ # }
794
+ #
795
+ # @!attribute [rw] catalog_item_id
796
+ # The ID of the catalog item.
797
+ # @return [String]
798
+ #
799
+ # @!attribute [rw] quantity
800
+ # The quantity of a line item request.
801
+ # @return [Integer]
802
+ #
803
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/LineItemRequest AWS API Documentation
804
+ #
805
+ class LineItemRequest < Struct.new(
806
+ :catalog_item_id,
807
+ :quantity)
808
+ SENSITIVE = []
809
+ include Aws::Structure
810
+ end
811
+
812
+ # @note When making an API call, you may pass ListCatalogItemsInput
813
+ # data as a hash:
814
+ #
815
+ # {
816
+ # next_token: "Token",
817
+ # max_results: 1,
818
+ # item_class_filter: ["RACK"], # accepts RACK, SERVER
819
+ # supported_storage_filter: ["EBS"], # accepts EBS, S3
820
+ # ec2_family_filter: ["Family"],
821
+ # }
822
+ #
823
+ # @!attribute [rw] next_token
824
+ # The pagination token.
825
+ # @return [String]
826
+ #
827
+ # @!attribute [rw] max_results
828
+ # The maximum page size.
829
+ # @return [Integer]
830
+ #
831
+ # @!attribute [rw] item_class_filter
832
+ # A filter for the class of items in the catalog.
833
+ #
834
+ # Filter values are case sensitive. If you specify multiple values for
835
+ # a filter, the values are joined with an `OR`, and the request
836
+ # returns all results that match any of the specified values.
837
+ # @return [Array<String>]
838
+ #
839
+ # @!attribute [rw] supported_storage_filter
840
+ # A filter for the storage options of items in the catalog.
841
+ #
842
+ # Filter values are case sensitive. If you specify multiple values for
843
+ # a filter, the values are joined with an `OR`, and the request
844
+ # returns all results that match any of the specified values.
845
+ # @return [Array<String>]
846
+ #
847
+ # @!attribute [rw] ec2_family_filter
848
+ # A filter for EC2 family options for items in the catalog.
849
+ #
850
+ # Filter values are case sensitive. If you specify multiple values for
851
+ # a filter, the values are joined with an `OR`, and the request
852
+ # returns all results that match any of the specified values.
853
+ # @return [Array<String>]
854
+ #
855
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListCatalogItemsInput AWS API Documentation
856
+ #
857
+ class ListCatalogItemsInput < Struct.new(
858
+ :next_token,
859
+ :max_results,
860
+ :item_class_filter,
861
+ :supported_storage_filter,
862
+ :ec2_family_filter)
863
+ SENSITIVE = []
864
+ include Aws::Structure
865
+ end
866
+
867
+ # @!attribute [rw] catalog_items
868
+ # Information about the catalog items.
869
+ # @return [Array<Types::CatalogItem>]
870
+ #
871
+ # @!attribute [rw] next_token
872
+ # The pagination token.
873
+ # @return [String]
874
+ #
875
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListCatalogItemsOutput AWS API Documentation
876
+ #
877
+ class ListCatalogItemsOutput < Struct.new(
878
+ :catalog_items,
879
+ :next_token)
880
+ SENSITIVE = []
881
+ include Aws::Structure
882
+ end
883
+
884
+ # @note When making an API call, you may pass ListOrdersInput
885
+ # data as a hash:
248
886
  #
249
- # @!attribute [rw] instance_type
250
- # The instance type.
887
+ # {
888
+ # outpost_identifier_filter: "OutpostIdentifier",
889
+ # next_token: "Token",
890
+ # max_results: 1,
891
+ # }
892
+ #
893
+ # @!attribute [rw] outpost_identifier_filter
894
+ # The ID or the Amazon Resource Name (ARN) of the Outpost.
251
895
  # @return [String]
252
896
  #
253
- # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/InstanceTypeItem AWS API Documentation
897
+ # @!attribute [rw] next_token
898
+ # The pagination token.
899
+ # @return [String]
254
900
  #
255
- class InstanceTypeItem < Struct.new(
256
- :instance_type)
901
+ # @!attribute [rw] max_results
902
+ # The maximum page size.
903
+ # @return [Integer]
904
+ #
905
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListOrdersInput AWS API Documentation
906
+ #
907
+ class ListOrdersInput < Struct.new(
908
+ :outpost_identifier_filter,
909
+ :next_token,
910
+ :max_results)
257
911
  SENSITIVE = []
258
912
  include Aws::Structure
259
913
  end
260
914
 
261
- # An internal error has occurred.
915
+ # @!attribute [rw] orders
916
+ # Information about the orders.
917
+ # @return [Array<Types::OrderSummary>]
262
918
  #
263
- # @!attribute [rw] message
919
+ # @!attribute [rw] next_token
920
+ # The pagination token.
264
921
  # @return [String]
265
922
  #
266
- # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/InternalServerException AWS API Documentation
923
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListOrdersOutput AWS API Documentation
267
924
  #
268
- class InternalServerException < Struct.new(
269
- :message)
925
+ class ListOrdersOutput < Struct.new(
926
+ :orders,
927
+ :next_token)
270
928
  SENSITIVE = []
271
929
  include Aws::Structure
272
930
  end
@@ -299,7 +957,7 @@ module Aws::Outposts
299
957
  # @return [Array<String>]
300
958
  #
301
959
  # @!attribute [rw] availability_zone_filter
302
- # A filter for the Availibility Zone (`us-east-1a`) of the Outpost.
960
+ # A filter for the Availability Zone (`us-east-1a`) of the Outpost.
303
961
  #
304
962
  # Filter values are case sensitive. If you specify multiple values for
305
963
  # a filter, the values are joined with an `OR`, and the request
@@ -429,6 +1087,126 @@ module Aws::Outposts
429
1087
  include Aws::Structure
430
1088
  end
431
1089
 
1090
+ # Information about an order.
1091
+ #
1092
+ # @!attribute [rw] outpost_id
1093
+ # The ID of the Outpost in the order.
1094
+ # @return [String]
1095
+ #
1096
+ # @!attribute [rw] order_id
1097
+ # The ID of the order.
1098
+ # @return [String]
1099
+ #
1100
+ # @!attribute [rw] status
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>
1118
+ # @return [String]
1119
+ #
1120
+ # @!attribute [rw] line_items
1121
+ # The line items for the order
1122
+ # @return [Array<Types::LineItem>]
1123
+ #
1124
+ # @!attribute [rw] payment_option
1125
+ # The payment option for the order.
1126
+ # @return [String]
1127
+ #
1128
+ # @!attribute [rw] order_submission_date
1129
+ # The submission date for the order.
1130
+ # @return [Time]
1131
+ #
1132
+ # @!attribute [rw] order_fulfilled_date
1133
+ # The fulfillment date of the order.
1134
+ # @return [Time]
1135
+ #
1136
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/Order AWS API Documentation
1137
+ #
1138
+ class Order < Struct.new(
1139
+ :outpost_id,
1140
+ :order_id,
1141
+ :status,
1142
+ :line_items,
1143
+ :payment_option,
1144
+ :order_submission_date,
1145
+ :order_fulfilled_date)
1146
+ SENSITIVE = []
1147
+ include Aws::Structure
1148
+ end
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
+
432
1210
  # Information about an Outpost.
433
1211
  #
434
1212
  # @!attribute [rw] outpost_id
@@ -436,7 +1214,7 @@ module Aws::Outposts
436
1214
  # @return [String]
437
1215
  #
438
1216
  # @!attribute [rw] owner_id
439
- # The AWS account ID of the Outpost owner.
1217
+ # The Amazon Web Services account ID of the Outpost owner.
440
1218
  # @return [String]
441
1219
  #
442
1220
  # @!attribute [rw] outpost_arn
@@ -493,6 +1271,92 @@ module Aws::Outposts
493
1271
  include Aws::Structure
494
1272
  end
495
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
+
496
1360
  # You have exceeded a service quota.
497
1361
  #
498
1362
  # @!attribute [rw] message
@@ -513,7 +1377,7 @@ module Aws::Outposts
513
1377
  # @return [String]
514
1378
  #
515
1379
  # @!attribute [rw] account_id
516
- # The ID of the AWS account.
1380
+ # The ID of the Amazon Web Services account.
517
1381
  # @return [String]
518
1382
  #
519
1383
  # @!attribute [rw] name
@@ -532,6 +1396,28 @@ module Aws::Outposts
532
1396
  # The Amazon Resource Name (ARN) of the site.
533
1397
  # @return [String]
534
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
+ #
535
1421
  # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/Site AWS API Documentation
536
1422
  #
537
1423
  class Site < Struct.new(
@@ -540,7 +1426,12 @@ module Aws::Outposts
540
1426
  :name,
541
1427
  :description,
542
1428
  :tags,
543
- :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)
544
1435
  SENSITIVE = []
545
1436
  include Aws::Structure
546
1437
  end
@@ -605,6 +1496,267 @@ module Aws::Outposts
605
1496
  #
606
1497
  class UntagResourceResponse < Aws::EmptyStructure; end
607
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
+
608
1760
  # A parameter is not valid.
609
1761
  #
610
1762
  # @!attribute [rw] message