aws-sdk-outposts 1.22.0 → 1.26.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -119,7 +119,9 @@ module Aws::Outposts
119
119
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
120
  # are very aggressive. Construct and pass an instance of
121
121
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
122
+ # enable retries and extended timeouts. Instance profile credential
123
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
124
+ # to true.
123
125
  #
124
126
  # @option options [required, String] :region
125
127
  # The AWS region to connect to. The configured `:region` is
@@ -275,6 +277,15 @@ module Aws::Outposts
275
277
  # ** Please note ** When response stubbing is enabled, no HTTP
276
278
  # requests are made, and retries are disabled.
277
279
  #
280
+ # @option options [Boolean] :use_dualstack_endpoint
281
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
282
+ # will be used if available.
283
+ #
284
+ # @option options [Boolean] :use_fips_endpoint
285
+ # When set to `true`, fips compatible endpoints will be used if available.
286
+ # When a `fips` region is used, the region is normalized and this config
287
+ # is set to `true`.
288
+ #
278
289
  # @option options [Boolean] :validate_params (true)
279
290
  # When `true`, request parameters are validated before
280
291
  # sending the request.
@@ -327,6 +338,28 @@ module Aws::Outposts
327
338
 
328
339
  # @!group API Operations
329
340
 
341
+ # Cancels an order for an Outpost.
342
+ #
343
+ # @option params [required, String] :order_id
344
+ # The ID of the order to cancel.
345
+ #
346
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
347
+ #
348
+ # @example Request syntax with placeholder values
349
+ #
350
+ # resp = client.cancel_order({
351
+ # order_id: "OrderId", # required
352
+ # })
353
+ #
354
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CancelOrder AWS API Documentation
355
+ #
356
+ # @overload cancel_order(params = {})
357
+ # @param [Hash] params ({})
358
+ def cancel_order(params = {}, options = {})
359
+ req = build_request(:cancel_order, params)
360
+ req.send_request(options)
361
+ end
362
+
330
363
  # Creates an order for an Outpost.
331
364
  #
332
365
  # @option params [required, String] :outpost_identifier
@@ -363,12 +396,12 @@ module Aws::Outposts
363
396
  #
364
397
  # resp.order.outpost_id #=> String
365
398
  # resp.order.order_id #=> String
366
- # resp.order.status #=> String, one of "RECEIVED", "PENDING", "PROCESSING", "INSTALLING", "FULFILLED", "CANCELLED"
399
+ # resp.order.status #=> String, one of "RECEIVED", "PENDING", "PROCESSING", "INSTALLING", "FULFILLED", "CANCELLED", "PREPARING", "IN_PROGRESS", "COMPLETED", "ERROR"
367
400
  # resp.order.line_items #=> Array
368
401
  # resp.order.line_items[0].catalog_item_id #=> String
369
402
  # resp.order.line_items[0].line_item_id #=> String
370
403
  # resp.order.line_items[0].quantity #=> Integer
371
- # resp.order.line_items[0].status #=> String
404
+ # resp.order.line_items[0].status #=> String, one of "PREPARING", "BUILDING", "SHIPPED", "DELIVERED", "INSTALLING", "INSTALLED", "ERROR", "CANCELLED"
372
405
  # resp.order.payment_option #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
373
406
  # resp.order.order_submission_date #=> Time
374
407
  # resp.order.order_fulfilled_date #=> Time
@@ -393,7 +426,7 @@ module Aws::Outposts
393
426
  # The description of the Outpost.
394
427
  #
395
428
  # @option params [required, String] :site_id
396
- # The ID of the site.
429
+ # The ID or the Amazon Resource Name (ARN) of the site.
397
430
  #
398
431
  # @option params [String] :availability_zone
399
432
  # The Availability Zone.
@@ -404,6 +437,9 @@ module Aws::Outposts
404
437
  # @option params [Hash<String,String>] :tags
405
438
  # The tags to apply to the Outpost.
406
439
  #
440
+ # @option params [String] :supported_hardware_type
441
+ # The type of hardware for this Outpost.
442
+ #
407
443
  # @return [Types::CreateOutpostOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
408
444
  #
409
445
  # * {Types::CreateOutpostOutput#outpost #outpost} => Types::Outpost
@@ -419,6 +455,7 @@ module Aws::Outposts
419
455
  # tags: {
420
456
  # "TagKey" => "TagValue",
421
457
  # },
458
+ # supported_hardware_type: "RACK", # accepts RACK, SERVER
422
459
  # })
423
460
  #
424
461
  # @example Response structure
@@ -435,6 +472,7 @@ module Aws::Outposts
435
472
  # resp.outpost.tags #=> Hash
436
473
  # resp.outpost.tags["TagKey"] #=> String
437
474
  # resp.outpost.site_arn #=> String
475
+ # resp.outpost.supported_hardware_type #=> String, one of "RACK", "SERVER"
438
476
  #
439
477
  # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateOutpost AWS API Documentation
440
478
  #
@@ -445,10 +483,129 @@ module Aws::Outposts
445
483
  req.send_request(options)
446
484
  end
447
485
 
486
+ # Creates a site for an Outpost.
487
+ #
488
+ # @option params [required, String] :name
489
+ # The name of the site.
490
+ #
491
+ # @option params [String] :description
492
+ # The description of the site.
493
+ #
494
+ # @option params [String] :notes
495
+ # Additional information that you provide about site access
496
+ # requirements, electrician scheduling, personal protective equipment,
497
+ # or regulation of equipment materials that could affect your
498
+ # installation process.
499
+ #
500
+ # @option params [Hash<String,String>] :tags
501
+ # The tags to apply to a site.
502
+ #
503
+ # @option params [Types::Address] :operating_address
504
+ # The location to install and power on the hardware. This address might
505
+ # be different from the shipping address.
506
+ #
507
+ # @option params [Types::Address] :shipping_address
508
+ # The location to ship the hardware. This address might be different
509
+ # from the operating address.
510
+ #
511
+ # @option params [Types::RackPhysicalProperties] :rack_physical_properties
512
+ # Information about the physical and logistical details for the rack at
513
+ # this site. For more information about hardware requirements for racks,
514
+ # see [Network readiness checklist][1] in the Amazon Web Services
515
+ # Outposts User Guide.
516
+ #
517
+ #
518
+ #
519
+ # [1]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#checklist
520
+ #
521
+ # @return [Types::CreateSiteOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
522
+ #
523
+ # * {Types::CreateSiteOutput#site #site} => Types::Site
524
+ #
525
+ # @example Request syntax with placeholder values
526
+ #
527
+ # resp = client.create_site({
528
+ # name: "SiteName", # required
529
+ # description: "SiteDescription",
530
+ # notes: "SiteNotes",
531
+ # tags: {
532
+ # "TagKey" => "TagValue",
533
+ # },
534
+ # operating_address: {
535
+ # contact_name: "ContactName",
536
+ # contact_phone_number: "ContactPhoneNumber",
537
+ # address_line_1: "AddressLine1", # required
538
+ # address_line_2: "AddressLine2",
539
+ # address_line_3: "AddressLine3",
540
+ # city: "City", # required
541
+ # state_or_region: "StateOrRegion", # required
542
+ # district_or_county: "DistrictOrCounty",
543
+ # postal_code: "PostalCode", # required
544
+ # country_code: "CountryCode", # required
545
+ # municipality: "Municipality",
546
+ # },
547
+ # shipping_address: {
548
+ # contact_name: "ContactName",
549
+ # contact_phone_number: "ContactPhoneNumber",
550
+ # address_line_1: "AddressLine1", # required
551
+ # address_line_2: "AddressLine2",
552
+ # address_line_3: "AddressLine3",
553
+ # city: "City", # required
554
+ # state_or_region: "StateOrRegion", # required
555
+ # district_or_county: "DistrictOrCounty",
556
+ # postal_code: "PostalCode", # required
557
+ # country_code: "CountryCode", # required
558
+ # municipality: "Municipality",
559
+ # },
560
+ # rack_physical_properties: {
561
+ # power_draw_kva: "POWER_5_KVA", # accepts POWER_5_KVA, POWER_10_KVA, POWER_15_KVA
562
+ # power_phase: "SINGLE_PHASE", # accepts SINGLE_PHASE, THREE_PHASE
563
+ # power_connector: "L6_30P", # accepts L6_30P, IEC309, AH530P7W, AH532P6W
564
+ # power_feed_drop: "ABOVE_RACK", # accepts ABOVE_RACK, BELOW_RACK
565
+ # uplink_gbps: "UPLINK_1G", # accepts UPLINK_1G, UPLINK_10G, UPLINK_40G, UPLINK_100G
566
+ # 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
567
+ # fiber_optic_cable_type: "SINGLE_MODE", # accepts SINGLE_MODE, MULTI_MODE
568
+ # 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
569
+ # maximum_supported_weight_lbs: "NO_LIMIT", # accepts NO_LIMIT, MAX_1400_LBS, MAX_1600_LBS, MAX_1800_LBS, MAX_2000_LBS
570
+ # },
571
+ # })
572
+ #
573
+ # @example Response structure
574
+ #
575
+ # resp.site.site_id #=> String
576
+ # resp.site.account_id #=> String
577
+ # resp.site.name #=> String
578
+ # resp.site.description #=> String
579
+ # resp.site.tags #=> Hash
580
+ # resp.site.tags["TagKey"] #=> String
581
+ # resp.site.site_arn #=> String
582
+ # resp.site.notes #=> String
583
+ # resp.site.operating_address_country_code #=> String
584
+ # resp.site.operating_address_state_or_region #=> String
585
+ # resp.site.operating_address_city #=> String
586
+ # resp.site.rack_physical_properties.power_draw_kva #=> String, one of "POWER_5_KVA", "POWER_10_KVA", "POWER_15_KVA"
587
+ # resp.site.rack_physical_properties.power_phase #=> String, one of "SINGLE_PHASE", "THREE_PHASE"
588
+ # resp.site.rack_physical_properties.power_connector #=> String, one of "L6_30P", "IEC309", "AH530P7W", "AH532P6W"
589
+ # resp.site.rack_physical_properties.power_feed_drop #=> String, one of "ABOVE_RACK", "BELOW_RACK"
590
+ # resp.site.rack_physical_properties.uplink_gbps #=> String, one of "UPLINK_1G", "UPLINK_10G", "UPLINK_40G", "UPLINK_100G"
591
+ # resp.site.rack_physical_properties.uplink_count #=> String, one of "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"
592
+ # resp.site.rack_physical_properties.fiber_optic_cable_type #=> String, one of "SINGLE_MODE", "MULTI_MODE"
593
+ # resp.site.rack_physical_properties.optical_standard #=> String, one of "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"
594
+ # resp.site.rack_physical_properties.maximum_supported_weight_lbs #=> String, one of "NO_LIMIT", "MAX_1400_LBS", "MAX_1600_LBS", "MAX_1800_LBS", "MAX_2000_LBS"
595
+ #
596
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateSite AWS API Documentation
597
+ #
598
+ # @overload create_site(params = {})
599
+ # @param [Hash] params ({})
600
+ def create_site(params = {}, options = {})
601
+ req = build_request(:create_site, params)
602
+ req.send_request(options)
603
+ end
604
+
448
605
  # Deletes the Outpost.
449
606
  #
450
607
  # @option params [required, String] :outpost_id
451
- # The ID of the Outpost.
608
+ # The ID or the Amazon Resource Name (ARN) of the Outpost.
452
609
  #
453
610
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
454
611
  #
@@ -470,7 +627,7 @@ module Aws::Outposts
470
627
  # Deletes the site.
471
628
  #
472
629
  # @option params [required, String] :site_id
473
- # The ID of the site.
630
+ # The ID or the Amazon Resource Name (ARN) of the site.
474
631
  #
475
632
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
476
633
  #
@@ -489,10 +646,87 @@ module Aws::Outposts
489
646
  req.send_request(options)
490
647
  end
491
648
 
649
+ # Gets information about a catalog item.
650
+ #
651
+ # @option params [required, String] :catalog_item_id
652
+ # The ID of the catalog item.
653
+ #
654
+ # @return [Types::GetCatalogItemOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
655
+ #
656
+ # * {Types::GetCatalogItemOutput#catalog_item #catalog_item} => Types::CatalogItem
657
+ #
658
+ # @example Request syntax with placeholder values
659
+ #
660
+ # resp = client.get_catalog_item({
661
+ # catalog_item_id: "SkuCode", # required
662
+ # })
663
+ #
664
+ # @example Response structure
665
+ #
666
+ # resp.catalog_item.catalog_item_id #=> String
667
+ # resp.catalog_item.item_status #=> String, one of "AVAILABLE", "DISCONTINUED"
668
+ # resp.catalog_item.ec2_capacities #=> Array
669
+ # resp.catalog_item.ec2_capacities[0].family #=> String
670
+ # resp.catalog_item.ec2_capacities[0].max_size #=> String
671
+ # resp.catalog_item.ec2_capacities[0].quantity #=> String
672
+ # resp.catalog_item.power_kva #=> Float
673
+ # resp.catalog_item.weight_lbs #=> Integer
674
+ # resp.catalog_item.supported_uplink_gbps #=> Array
675
+ # resp.catalog_item.supported_uplink_gbps[0] #=> Integer
676
+ # resp.catalog_item.supported_storage #=> Array
677
+ # resp.catalog_item.supported_storage[0] #=> String, one of "EBS", "S3"
678
+ #
679
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetCatalogItem AWS API Documentation
680
+ #
681
+ # @overload get_catalog_item(params = {})
682
+ # @param [Hash] params ({})
683
+ def get_catalog_item(params = {}, options = {})
684
+ req = build_request(:get_catalog_item, params)
685
+ req.send_request(options)
686
+ end
687
+
688
+ # Gets an order.
689
+ #
690
+ # @option params [required, String] :order_id
691
+ # The ID of the order.
692
+ #
693
+ # @return [Types::GetOrderOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
694
+ #
695
+ # * {Types::GetOrderOutput#order #order} => Types::Order
696
+ #
697
+ # @example Request syntax with placeholder values
698
+ #
699
+ # resp = client.get_order({
700
+ # order_id: "OrderId", # required
701
+ # })
702
+ #
703
+ # @example Response structure
704
+ #
705
+ # resp.order.outpost_id #=> String
706
+ # resp.order.order_id #=> String
707
+ # resp.order.status #=> String, one of "RECEIVED", "PENDING", "PROCESSING", "INSTALLING", "FULFILLED", "CANCELLED", "PREPARING", "IN_PROGRESS", "COMPLETED", "ERROR"
708
+ # resp.order.line_items #=> Array
709
+ # resp.order.line_items[0].catalog_item_id #=> String
710
+ # resp.order.line_items[0].line_item_id #=> String
711
+ # resp.order.line_items[0].quantity #=> Integer
712
+ # resp.order.line_items[0].status #=> String, one of "PREPARING", "BUILDING", "SHIPPED", "DELIVERED", "INSTALLING", "INSTALLED", "ERROR", "CANCELLED"
713
+ # resp.order.payment_option #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
714
+ # resp.order.order_submission_date #=> Time
715
+ # resp.order.order_fulfilled_date #=> Time
716
+ #
717
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetOrder AWS API Documentation
718
+ #
719
+ # @overload get_order(params = {})
720
+ # @param [Hash] params ({})
721
+ def get_order(params = {}, options = {})
722
+ req = build_request(:get_order, params)
723
+ req.send_request(options)
724
+ end
725
+
492
726
  # Gets information about the specified Outpost.
493
727
  #
494
728
  # @option params [required, String] :outpost_id
495
- # The ID of the Outpost.
729
+ # The ID or the Amazon Resource Name (ARN) of the Outpost.
496
730
  #
497
731
  # @return [Types::GetOutpostOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
498
732
  #
@@ -518,6 +752,7 @@ module Aws::Outposts
518
752
  # resp.outpost.tags #=> Hash
519
753
  # resp.outpost.tags["TagKey"] #=> String
520
754
  # resp.outpost.site_arn #=> String
755
+ # resp.outpost.supported_hardware_type #=> String, one of "RACK", "SERVER"
521
756
  #
522
757
  # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetOutpost AWS API Documentation
523
758
  #
@@ -531,7 +766,7 @@ module Aws::Outposts
531
766
  # Lists the instance types for the specified Outpost.
532
767
  #
533
768
  # @option params [required, String] :outpost_id
534
- # The ID of the Outpost.
769
+ # The ID or the Amazon Resource Name (ARN) of the Outpost.
535
770
  #
536
771
  # @option params [String] :next_token
537
772
  # The pagination token.
@@ -571,10 +806,231 @@ module Aws::Outposts
571
806
  req.send_request(options)
572
807
  end
573
808
 
574
- # Create a list of the Outposts for your AWS account. Add filters to
575
- # your request to return a more specific list of results. Use filters to
576
- # match an Outpost lifecycle status, Availibility Zone (`us-east-1a`),
577
- # and AZ ID (`use1-az1`).
809
+ # Gets information about the specified Outpost site.
810
+ #
811
+ # @option params [required, String] :site_id
812
+ # The ID or the Amazon Resource Name (ARN) of the site.
813
+ #
814
+ # @return [Types::GetSiteOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
815
+ #
816
+ # * {Types::GetSiteOutput#site #site} => Types::Site
817
+ #
818
+ # @example Request syntax with placeholder values
819
+ #
820
+ # resp = client.get_site({
821
+ # site_id: "SiteId", # required
822
+ # })
823
+ #
824
+ # @example Response structure
825
+ #
826
+ # resp.site.site_id #=> String
827
+ # resp.site.account_id #=> String
828
+ # resp.site.name #=> String
829
+ # resp.site.description #=> String
830
+ # resp.site.tags #=> Hash
831
+ # resp.site.tags["TagKey"] #=> String
832
+ # resp.site.site_arn #=> String
833
+ # resp.site.notes #=> String
834
+ # resp.site.operating_address_country_code #=> String
835
+ # resp.site.operating_address_state_or_region #=> String
836
+ # resp.site.operating_address_city #=> String
837
+ # resp.site.rack_physical_properties.power_draw_kva #=> String, one of "POWER_5_KVA", "POWER_10_KVA", "POWER_15_KVA"
838
+ # resp.site.rack_physical_properties.power_phase #=> String, one of "SINGLE_PHASE", "THREE_PHASE"
839
+ # resp.site.rack_physical_properties.power_connector #=> String, one of "L6_30P", "IEC309", "AH530P7W", "AH532P6W"
840
+ # resp.site.rack_physical_properties.power_feed_drop #=> String, one of "ABOVE_RACK", "BELOW_RACK"
841
+ # resp.site.rack_physical_properties.uplink_gbps #=> String, one of "UPLINK_1G", "UPLINK_10G", "UPLINK_40G", "UPLINK_100G"
842
+ # resp.site.rack_physical_properties.uplink_count #=> String, one of "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"
843
+ # resp.site.rack_physical_properties.fiber_optic_cable_type #=> String, one of "SINGLE_MODE", "MULTI_MODE"
844
+ # resp.site.rack_physical_properties.optical_standard #=> String, one of "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"
845
+ # resp.site.rack_physical_properties.maximum_supported_weight_lbs #=> String, one of "NO_LIMIT", "MAX_1400_LBS", "MAX_1600_LBS", "MAX_1800_LBS", "MAX_2000_LBS"
846
+ #
847
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetSite AWS API Documentation
848
+ #
849
+ # @overload get_site(params = {})
850
+ # @param [Hash] params ({})
851
+ def get_site(params = {}, options = {})
852
+ req = build_request(:get_site, params)
853
+ req.send_request(options)
854
+ end
855
+
856
+ # Gets the site address.
857
+ #
858
+ # @option params [required, String] :site_id
859
+ # The ID or the Amazon Resource Name (ARN) of the site.
860
+ #
861
+ # @option params [required, String] :address_type
862
+ # The type of the address you request.
863
+ #
864
+ # @return [Types::GetSiteAddressOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
865
+ #
866
+ # * {Types::GetSiteAddressOutput#site_id #site_id} => String
867
+ # * {Types::GetSiteAddressOutput#address_type #address_type} => String
868
+ # * {Types::GetSiteAddressOutput#address #address} => Types::Address
869
+ #
870
+ # @example Request syntax with placeholder values
871
+ #
872
+ # resp = client.get_site_address({
873
+ # site_id: "SiteId", # required
874
+ # address_type: "SHIPPING_ADDRESS", # required, accepts SHIPPING_ADDRESS, OPERATING_ADDRESS
875
+ # })
876
+ #
877
+ # @example Response structure
878
+ #
879
+ # resp.site_id #=> String
880
+ # resp.address_type #=> String, one of "SHIPPING_ADDRESS", "OPERATING_ADDRESS"
881
+ # resp.address.contact_name #=> String
882
+ # resp.address.contact_phone_number #=> String
883
+ # resp.address.address_line_1 #=> String
884
+ # resp.address.address_line_2 #=> String
885
+ # resp.address.address_line_3 #=> String
886
+ # resp.address.city #=> String
887
+ # resp.address.state_or_region #=> String
888
+ # resp.address.district_or_county #=> String
889
+ # resp.address.postal_code #=> String
890
+ # resp.address.country_code #=> String
891
+ # resp.address.municipality #=> String
892
+ #
893
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetSiteAddress AWS API Documentation
894
+ #
895
+ # @overload get_site_address(params = {})
896
+ # @param [Hash] params ({})
897
+ def get_site_address(params = {}, options = {})
898
+ req = build_request(:get_site_address, params)
899
+ req.send_request(options)
900
+ end
901
+
902
+ # Use to create a list of every item in the catalog. Add filters to your
903
+ # request to return a more specific list of results. Use filters to
904
+ # match an item class, storage option, or EC2 family.
905
+ #
906
+ # If you specify multiple filters, the filters are joined with an `AND`,
907
+ # and the request returns only results that match all of the specified
908
+ # filters.
909
+ #
910
+ # @option params [String] :next_token
911
+ # The pagination token.
912
+ #
913
+ # @option params [Integer] :max_results
914
+ # The maximum page size.
915
+ #
916
+ # @option params [Array<String>] :item_class_filter
917
+ # A filter for the class of items in the catalog.
918
+ #
919
+ # Filter values are case sensitive. If you specify multiple values for a
920
+ # filter, the values are joined with an `OR`, and the request returns
921
+ # all results that match any of the specified values.
922
+ #
923
+ # @option params [Array<String>] :supported_storage_filter
924
+ # A filter for the storage options of items in the catalog.
925
+ #
926
+ # Filter values are case sensitive. If you specify multiple values for a
927
+ # filter, the values are joined with an `OR`, and the request returns
928
+ # all results that match any of the specified values.
929
+ #
930
+ # @option params [Array<String>] :ec2_family_filter
931
+ # A filter for EC2 family options for items in the catalog.
932
+ #
933
+ # Filter values are case sensitive. If you specify multiple values for a
934
+ # filter, the values are joined with an `OR`, and the request returns
935
+ # all results that match any of the specified values.
936
+ #
937
+ # @return [Types::ListCatalogItemsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
938
+ #
939
+ # * {Types::ListCatalogItemsOutput#catalog_items #catalog_items} => Array&lt;Types::CatalogItem&gt;
940
+ # * {Types::ListCatalogItemsOutput#next_token #next_token} => String
941
+ #
942
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
943
+ #
944
+ # @example Request syntax with placeholder values
945
+ #
946
+ # resp = client.list_catalog_items({
947
+ # next_token: "Token",
948
+ # max_results: 1,
949
+ # item_class_filter: ["RACK"], # accepts RACK, SERVER
950
+ # supported_storage_filter: ["EBS"], # accepts EBS, S3
951
+ # ec2_family_filter: ["Family"],
952
+ # })
953
+ #
954
+ # @example Response structure
955
+ #
956
+ # resp.catalog_items #=> Array
957
+ # resp.catalog_items[0].catalog_item_id #=> String
958
+ # resp.catalog_items[0].item_status #=> String, one of "AVAILABLE", "DISCONTINUED"
959
+ # resp.catalog_items[0].ec2_capacities #=> Array
960
+ # resp.catalog_items[0].ec2_capacities[0].family #=> String
961
+ # resp.catalog_items[0].ec2_capacities[0].max_size #=> String
962
+ # resp.catalog_items[0].ec2_capacities[0].quantity #=> String
963
+ # resp.catalog_items[0].power_kva #=> Float
964
+ # resp.catalog_items[0].weight_lbs #=> Integer
965
+ # resp.catalog_items[0].supported_uplink_gbps #=> Array
966
+ # resp.catalog_items[0].supported_uplink_gbps[0] #=> Integer
967
+ # resp.catalog_items[0].supported_storage #=> Array
968
+ # resp.catalog_items[0].supported_storage[0] #=> String, one of "EBS", "S3"
969
+ # resp.next_token #=> String
970
+ #
971
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListCatalogItems AWS API Documentation
972
+ #
973
+ # @overload list_catalog_items(params = {})
974
+ # @param [Hash] params ({})
975
+ def list_catalog_items(params = {}, options = {})
976
+ req = build_request(:list_catalog_items, params)
977
+ req.send_request(options)
978
+ end
979
+
980
+ # Create a list of the Outpost orders for your Amazon Web Services
981
+ # account. You can filter your request by Outpost to return a more
982
+ # specific list of results.
983
+ #
984
+ # @option params [String] :outpost_identifier_filter
985
+ # The ID or the Amazon Resource Name (ARN) of the Outpost.
986
+ #
987
+ # @option params [String] :next_token
988
+ # The pagination token.
989
+ #
990
+ # @option params [Integer] :max_results
991
+ # The maximum page size.
992
+ #
993
+ # @return [Types::ListOrdersOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
994
+ #
995
+ # * {Types::ListOrdersOutput#orders #orders} => Array&lt;Types::OrderSummary&gt;
996
+ # * {Types::ListOrdersOutput#next_token #next_token} => String
997
+ #
998
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
999
+ #
1000
+ # @example Request syntax with placeholder values
1001
+ #
1002
+ # resp = client.list_orders({
1003
+ # outpost_identifier_filter: "OutpostIdentifier",
1004
+ # next_token: "Token",
1005
+ # max_results: 1,
1006
+ # })
1007
+ #
1008
+ # @example Response structure
1009
+ #
1010
+ # resp.orders #=> Array
1011
+ # resp.orders[0].outpost_id #=> String
1012
+ # resp.orders[0].order_id #=> String
1013
+ # resp.orders[0].order_type #=> String, one of "OUTPOST", "REPLACEMENT"
1014
+ # resp.orders[0].status #=> String, one of "RECEIVED", "PENDING", "PROCESSING", "INSTALLING", "FULFILLED", "CANCELLED", "PREPARING", "IN_PROGRESS", "COMPLETED", "ERROR"
1015
+ # resp.orders[0].line_item_counts_by_status #=> Hash
1016
+ # resp.orders[0].line_item_counts_by_status["LineItemStatus"] #=> Integer
1017
+ # resp.orders[0].order_submission_date #=> Time
1018
+ # resp.orders[0].order_fulfilled_date #=> Time
1019
+ # resp.next_token #=> String
1020
+ #
1021
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListOrders AWS API Documentation
1022
+ #
1023
+ # @overload list_orders(params = {})
1024
+ # @param [Hash] params ({})
1025
+ def list_orders(params = {}, options = {})
1026
+ req = build_request(:list_orders, params)
1027
+ req.send_request(options)
1028
+ end
1029
+
1030
+ # Create a list of the Outposts for your Amazon Web Services account.
1031
+ # Add filters to your request to return a more specific list of results.
1032
+ # Use filters to match an Outpost lifecycle status, Availability Zone
1033
+ # (`us-east-1a`), and AZ ID (`use1-az1`).
578
1034
  #
579
1035
  # If you specify multiple filters, the filters are joined with an `AND`,
580
1036
  # and the request returns only results that match all of the specified
@@ -594,7 +1050,7 @@ module Aws::Outposts
594
1050
  # all results that match any of the specified values.
595
1051
  #
596
1052
  # @option params [Array<String>] :availability_zone_filter
597
- # A filter for the Availibility Zone (`us-east-1a`) of the Outpost.
1053
+ # A filter for the Availability Zone (`us-east-1a`) of the Outpost.
598
1054
  #
599
1055
  # Filter values are case sensitive. If you specify multiple values for a
600
1056
  # filter, the values are joined with an `OR`, and the request returns
@@ -639,6 +1095,7 @@ module Aws::Outposts
639
1095
  # resp.outposts[0].tags #=> Hash
640
1096
  # resp.outposts[0].tags["TagKey"] #=> String
641
1097
  # resp.outposts[0].site_arn #=> String
1098
+ # resp.outposts[0].supported_hardware_type #=> String, one of "RACK", "SERVER"
642
1099
  # resp.next_token #=> String
643
1100
  #
644
1101
  # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListOutposts AWS API Documentation
@@ -650,7 +1107,7 @@ module Aws::Outposts
650
1107
  req.send_request(options)
651
1108
  end
652
1109
 
653
- # Lists the sites for the specified AWS account.
1110
+ # Lists the sites for your Amazon Web Services account.
654
1111
  #
655
1112
  # @option params [String] :next_token
656
1113
  # The pagination token.
@@ -682,6 +1139,19 @@ module Aws::Outposts
682
1139
  # resp.sites[0].tags #=> Hash
683
1140
  # resp.sites[0].tags["TagKey"] #=> String
684
1141
  # resp.sites[0].site_arn #=> String
1142
+ # resp.sites[0].notes #=> String
1143
+ # resp.sites[0].operating_address_country_code #=> String
1144
+ # resp.sites[0].operating_address_state_or_region #=> String
1145
+ # resp.sites[0].operating_address_city #=> String
1146
+ # resp.sites[0].rack_physical_properties.power_draw_kva #=> String, one of "POWER_5_KVA", "POWER_10_KVA", "POWER_15_KVA"
1147
+ # resp.sites[0].rack_physical_properties.power_phase #=> String, one of "SINGLE_PHASE", "THREE_PHASE"
1148
+ # resp.sites[0].rack_physical_properties.power_connector #=> String, one of "L6_30P", "IEC309", "AH530P7W", "AH532P6W"
1149
+ # resp.sites[0].rack_physical_properties.power_feed_drop #=> String, one of "ABOVE_RACK", "BELOW_RACK"
1150
+ # resp.sites[0].rack_physical_properties.uplink_gbps #=> String, one of "UPLINK_1G", "UPLINK_10G", "UPLINK_40G", "UPLINK_100G"
1151
+ # resp.sites[0].rack_physical_properties.uplink_count #=> String, one of "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"
1152
+ # resp.sites[0].rack_physical_properties.fiber_optic_cable_type #=> String, one of "SINGLE_MODE", "MULTI_MODE"
1153
+ # resp.sites[0].rack_physical_properties.optical_standard #=> String, one of "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"
1154
+ # resp.sites[0].rack_physical_properties.maximum_supported_weight_lbs #=> String, one of "NO_LIMIT", "MAX_1400_LBS", "MAX_1600_LBS", "MAX_1800_LBS", "MAX_2000_LBS"
685
1155
  # resp.next_token #=> String
686
1156
  #
687
1157
  # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListSites AWS API Documentation
@@ -776,6 +1246,344 @@ module Aws::Outposts
776
1246
  req.send_request(options)
777
1247
  end
778
1248
 
1249
+ # Updates an Outpost.
1250
+ #
1251
+ # @option params [required, String] :outpost_id
1252
+ # The ID or the Amazon Resource Name (ARN) of the Outpost.
1253
+ #
1254
+ # @option params [String] :name
1255
+ # The name of the Outpost.
1256
+ #
1257
+ # @option params [String] :description
1258
+ # The description of the Outpost.
1259
+ #
1260
+ # @option params [String] :supported_hardware_type
1261
+ # The type of hardware for this Outpost.
1262
+ #
1263
+ # @return [Types::UpdateOutpostOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1264
+ #
1265
+ # * {Types::UpdateOutpostOutput#outpost #outpost} => Types::Outpost
1266
+ #
1267
+ # @example Request syntax with placeholder values
1268
+ #
1269
+ # resp = client.update_outpost({
1270
+ # outpost_id: "OutpostId", # required
1271
+ # name: "OutpostName",
1272
+ # description: "OutpostDescription",
1273
+ # supported_hardware_type: "RACK", # accepts RACK, SERVER
1274
+ # })
1275
+ #
1276
+ # @example Response structure
1277
+ #
1278
+ # resp.outpost.outpost_id #=> String
1279
+ # resp.outpost.owner_id #=> String
1280
+ # resp.outpost.outpost_arn #=> String
1281
+ # resp.outpost.site_id #=> String
1282
+ # resp.outpost.name #=> String
1283
+ # resp.outpost.description #=> String
1284
+ # resp.outpost.life_cycle_status #=> String
1285
+ # resp.outpost.availability_zone #=> String
1286
+ # resp.outpost.availability_zone_id #=> String
1287
+ # resp.outpost.tags #=> Hash
1288
+ # resp.outpost.tags["TagKey"] #=> String
1289
+ # resp.outpost.site_arn #=> String
1290
+ # resp.outpost.supported_hardware_type #=> String, one of "RACK", "SERVER"
1291
+ #
1292
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateOutpost AWS API Documentation
1293
+ #
1294
+ # @overload update_outpost(params = {})
1295
+ # @param [Hash] params ({})
1296
+ def update_outpost(params = {}, options = {})
1297
+ req = build_request(:update_outpost, params)
1298
+ req.send_request(options)
1299
+ end
1300
+
1301
+ # Updates the site.
1302
+ #
1303
+ # @option params [required, String] :site_id
1304
+ # The ID or the Amazon Resource Name (ARN) of the site.
1305
+ #
1306
+ # @option params [String] :name
1307
+ # The name of the site.
1308
+ #
1309
+ # @option params [String] :description
1310
+ # The description of the site.
1311
+ #
1312
+ # @option params [String] :notes
1313
+ # Notes about a site.
1314
+ #
1315
+ # @return [Types::UpdateSiteOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1316
+ #
1317
+ # * {Types::UpdateSiteOutput#site #site} => Types::Site
1318
+ #
1319
+ # @example Request syntax with placeholder values
1320
+ #
1321
+ # resp = client.update_site({
1322
+ # site_id: "SiteId", # required
1323
+ # name: "SiteName",
1324
+ # description: "SiteDescription",
1325
+ # notes: "SiteNotes",
1326
+ # })
1327
+ #
1328
+ # @example Response structure
1329
+ #
1330
+ # resp.site.site_id #=> String
1331
+ # resp.site.account_id #=> String
1332
+ # resp.site.name #=> String
1333
+ # resp.site.description #=> String
1334
+ # resp.site.tags #=> Hash
1335
+ # resp.site.tags["TagKey"] #=> String
1336
+ # resp.site.site_arn #=> String
1337
+ # resp.site.notes #=> String
1338
+ # resp.site.operating_address_country_code #=> String
1339
+ # resp.site.operating_address_state_or_region #=> String
1340
+ # resp.site.operating_address_city #=> String
1341
+ # resp.site.rack_physical_properties.power_draw_kva #=> String, one of "POWER_5_KVA", "POWER_10_KVA", "POWER_15_KVA"
1342
+ # resp.site.rack_physical_properties.power_phase #=> String, one of "SINGLE_PHASE", "THREE_PHASE"
1343
+ # resp.site.rack_physical_properties.power_connector #=> String, one of "L6_30P", "IEC309", "AH530P7W", "AH532P6W"
1344
+ # resp.site.rack_physical_properties.power_feed_drop #=> String, one of "ABOVE_RACK", "BELOW_RACK"
1345
+ # resp.site.rack_physical_properties.uplink_gbps #=> String, one of "UPLINK_1G", "UPLINK_10G", "UPLINK_40G", "UPLINK_100G"
1346
+ # resp.site.rack_physical_properties.uplink_count #=> String, one of "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"
1347
+ # resp.site.rack_physical_properties.fiber_optic_cable_type #=> String, one of "SINGLE_MODE", "MULTI_MODE"
1348
+ # resp.site.rack_physical_properties.optical_standard #=> String, one of "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"
1349
+ # resp.site.rack_physical_properties.maximum_supported_weight_lbs #=> String, one of "NO_LIMIT", "MAX_1400_LBS", "MAX_1600_LBS", "MAX_1800_LBS", "MAX_2000_LBS"
1350
+ #
1351
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateSite AWS API Documentation
1352
+ #
1353
+ # @overload update_site(params = {})
1354
+ # @param [Hash] params ({})
1355
+ def update_site(params = {}, options = {})
1356
+ req = build_request(:update_site, params)
1357
+ req.send_request(options)
1358
+ end
1359
+
1360
+ # Updates the site address.
1361
+ #
1362
+ # To update a site address with an order `IN_PROGRESS`, you must wait
1363
+ # for the order to complete or cancel the order.
1364
+ #
1365
+ # You can update the operating address before you place an order at the
1366
+ # site, or after all Outposts that belong to the site have been
1367
+ # deactivated.
1368
+ #
1369
+ # @option params [required, String] :site_id
1370
+ # The ID or the Amazon Resource Name (ARN) of the site.
1371
+ #
1372
+ # @option params [required, String] :address_type
1373
+ # The type of the address.
1374
+ #
1375
+ # @option params [required, Types::Address] :address
1376
+ # The address for the site.
1377
+ #
1378
+ # @return [Types::UpdateSiteAddressOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1379
+ #
1380
+ # * {Types::UpdateSiteAddressOutput#address_type #address_type} => String
1381
+ # * {Types::UpdateSiteAddressOutput#address #address} => Types::Address
1382
+ #
1383
+ # @example Request syntax with placeholder values
1384
+ #
1385
+ # resp = client.update_site_address({
1386
+ # site_id: "SiteId", # required
1387
+ # address_type: "SHIPPING_ADDRESS", # required, accepts SHIPPING_ADDRESS, OPERATING_ADDRESS
1388
+ # address: { # required
1389
+ # contact_name: "ContactName",
1390
+ # contact_phone_number: "ContactPhoneNumber",
1391
+ # address_line_1: "AddressLine1", # required
1392
+ # address_line_2: "AddressLine2",
1393
+ # address_line_3: "AddressLine3",
1394
+ # city: "City", # required
1395
+ # state_or_region: "StateOrRegion", # required
1396
+ # district_or_county: "DistrictOrCounty",
1397
+ # postal_code: "PostalCode", # required
1398
+ # country_code: "CountryCode", # required
1399
+ # municipality: "Municipality",
1400
+ # },
1401
+ # })
1402
+ #
1403
+ # @example Response structure
1404
+ #
1405
+ # resp.address_type #=> String, one of "SHIPPING_ADDRESS", "OPERATING_ADDRESS"
1406
+ # resp.address.contact_name #=> String
1407
+ # resp.address.contact_phone_number #=> String
1408
+ # resp.address.address_line_1 #=> String
1409
+ # resp.address.address_line_2 #=> String
1410
+ # resp.address.address_line_3 #=> String
1411
+ # resp.address.city #=> String
1412
+ # resp.address.state_or_region #=> String
1413
+ # resp.address.district_or_county #=> String
1414
+ # resp.address.postal_code #=> String
1415
+ # resp.address.country_code #=> String
1416
+ # resp.address.municipality #=> String
1417
+ #
1418
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateSiteAddress AWS API Documentation
1419
+ #
1420
+ # @overload update_site_address(params = {})
1421
+ # @param [Hash] params ({})
1422
+ def update_site_address(params = {}, options = {})
1423
+ req = build_request(:update_site_address, params)
1424
+ req.send_request(options)
1425
+ end
1426
+
1427
+ # Update the physical and logistical details for a rack at a site. For
1428
+ # more information about hardware requirements for racks, see [Network
1429
+ # readiness checklist][1] in the Amazon Web Services Outposts User
1430
+ # Guide.
1431
+ #
1432
+ # To update a rack at a site with an order of `IN_PROGRESS`, you must
1433
+ # wait for the order to complete or cancel the order.
1434
+ #
1435
+ #
1436
+ #
1437
+ # [1]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#checklist
1438
+ #
1439
+ # @option params [required, String] :site_id
1440
+ # The ID or the Amazon Resource Name (ARN) of the site.
1441
+ #
1442
+ # @option params [String] :power_draw_kva
1443
+ # Specify in kVA the power draw available at the hardware placement
1444
+ # position for the rack.
1445
+ #
1446
+ # @option params [String] :power_phase
1447
+ # Specify the power option that you can provide for hardware.
1448
+ #
1449
+ # * Single-phase AC feed: 200 V to 277 V, 50 Hz or 60 Hz
1450
+ #
1451
+ # * Three-phase AC feed: 346 V to 480 V, 50 Hz or 60 Hz
1452
+ #
1453
+ # @option params [String] :power_connector
1454
+ # Specify the power connector that Amazon Web Services should plan to
1455
+ # provide for connections to the hardware. Note the correlation between
1456
+ # `PowerPhase` and `PowerConnector`.
1457
+ #
1458
+ # * Single-phase AC feed
1459
+ #
1460
+ # * **L6-30P** – (common in US); 30A; single phase
1461
+ #
1462
+ # * **IEC309 (blue)** – P+N+E, 6hr; 32 A; single phase
1463
+ #
1464
+ # * Three-phase AC feed
1465
+ #
1466
+ # * **AH530P7W (red)** – 3P+N+E, 7hr; 30A; three phase
1467
+ #
1468
+ # * **AH532P6W (red)** – 3P+N+E, 6hr; 32A; three phase
1469
+ #
1470
+ # @option params [String] :power_feed_drop
1471
+ # Specify whether the power feed comes above or below the rack.
1472
+ #
1473
+ # @option params [String] :uplink_gbps
1474
+ # Specify the uplink speed the rack should support for the connection to
1475
+ # the Region.
1476
+ #
1477
+ # @option params [String] :uplink_count
1478
+ # Racks come with two Outpost network devices. Depending on the
1479
+ # supported uplink speed at the site, the Outpost network devices
1480
+ # provide a variable number of uplinks. Specify the number of uplinks
1481
+ # for each Outpost network device that you intend to use to connect the
1482
+ # rack to your network. Note the correlation between `UplinkGbps` and
1483
+ # `UplinkCount`.
1484
+ #
1485
+ # * 1Gbps - Uplinks available: 1, 2, 4, 6, 8
1486
+ #
1487
+ # * 10Gbps - Uplinks available: 1, 2, 4, 8, 12, 16
1488
+ #
1489
+ # * 40 and 100 Gbps- Uplinks available: 1, 2, 4
1490
+ #
1491
+ # @option params [String] :fiber_optic_cable_type
1492
+ # Specify the type of fiber that you will use to attach the Outpost to
1493
+ # your network.
1494
+ #
1495
+ # @option params [String] :optical_standard
1496
+ # Specify the type of optical standard that you will use to attach the
1497
+ # Outpost to your network. This field is dependent on uplink speed,
1498
+ # fiber type, and distance to the upstream device. For more information
1499
+ # about networking requirements for racks, see [Network][1] in the
1500
+ # Amazon Web Services Outposts User Guide.
1501
+ #
1502
+ # * `OPTIC_10GBASE_SR`\: 10GBASE-SR
1503
+ #
1504
+ # * `OPTIC_10GBASE_IR`\: 10GBASE-IR
1505
+ #
1506
+ # * `OPTIC_10GBASE_LR`\: 10GBASE-LR
1507
+ #
1508
+ # * `OPTIC_40GBASE_SR`\: 40GBASE-SR
1509
+ #
1510
+ # * `OPTIC_40GBASE_ESR`\: 40GBASE-ESR
1511
+ #
1512
+ # * `OPTIC_40GBASE_IR4_LR4L`\: 40GBASE-IR (LR4L)
1513
+ #
1514
+ # * `OPTIC_40GBASE_LR4`\: 40GBASE-LR4
1515
+ #
1516
+ # * `OPTIC_100GBASE_SR4`\: 100GBASE-SR4
1517
+ #
1518
+ # * `OPTIC_100GBASE_CWDM4`\: 100GBASE-CWDM4
1519
+ #
1520
+ # * `OPTIC_100GBASE_LR4`\: 100GBASE-LR4
1521
+ #
1522
+ # * `OPTIC_100G_PSM4_MSA`\: 100G PSM4 MSA
1523
+ #
1524
+ # * `OPTIC_1000BASE_LX`\: 1000Base-LX
1525
+ #
1526
+ # * `OPTIC_1000BASE_SX`\: 1000Base-SX
1527
+ #
1528
+ #
1529
+ #
1530
+ # [1]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#facility-networking
1531
+ #
1532
+ # @option params [String] :maximum_supported_weight_lbs
1533
+ # Specify the maximum rack weight that this site can support. `NO_LIMIT`
1534
+ # is over 2000lbs.
1535
+ #
1536
+ # @return [Types::UpdateSiteRackPhysicalPropertiesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1537
+ #
1538
+ # * {Types::UpdateSiteRackPhysicalPropertiesOutput#site #site} => Types::Site
1539
+ #
1540
+ # @example Request syntax with placeholder values
1541
+ #
1542
+ # resp = client.update_site_rack_physical_properties({
1543
+ # site_id: "SiteId", # required
1544
+ # power_draw_kva: "POWER_5_KVA", # accepts POWER_5_KVA, POWER_10_KVA, POWER_15_KVA
1545
+ # power_phase: "SINGLE_PHASE", # accepts SINGLE_PHASE, THREE_PHASE
1546
+ # power_connector: "L6_30P", # accepts L6_30P, IEC309, AH530P7W, AH532P6W
1547
+ # power_feed_drop: "ABOVE_RACK", # accepts ABOVE_RACK, BELOW_RACK
1548
+ # uplink_gbps: "UPLINK_1G", # accepts UPLINK_1G, UPLINK_10G, UPLINK_40G, UPLINK_100G
1549
+ # 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
1550
+ # fiber_optic_cable_type: "SINGLE_MODE", # accepts SINGLE_MODE, MULTI_MODE
1551
+ # 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
1552
+ # maximum_supported_weight_lbs: "NO_LIMIT", # accepts NO_LIMIT, MAX_1400_LBS, MAX_1600_LBS, MAX_1800_LBS, MAX_2000_LBS
1553
+ # })
1554
+ #
1555
+ # @example Response structure
1556
+ #
1557
+ # resp.site.site_id #=> String
1558
+ # resp.site.account_id #=> String
1559
+ # resp.site.name #=> String
1560
+ # resp.site.description #=> String
1561
+ # resp.site.tags #=> Hash
1562
+ # resp.site.tags["TagKey"] #=> String
1563
+ # resp.site.site_arn #=> String
1564
+ # resp.site.notes #=> String
1565
+ # resp.site.operating_address_country_code #=> String
1566
+ # resp.site.operating_address_state_or_region #=> String
1567
+ # resp.site.operating_address_city #=> String
1568
+ # resp.site.rack_physical_properties.power_draw_kva #=> String, one of "POWER_5_KVA", "POWER_10_KVA", "POWER_15_KVA"
1569
+ # resp.site.rack_physical_properties.power_phase #=> String, one of "SINGLE_PHASE", "THREE_PHASE"
1570
+ # resp.site.rack_physical_properties.power_connector #=> String, one of "L6_30P", "IEC309", "AH530P7W", "AH532P6W"
1571
+ # resp.site.rack_physical_properties.power_feed_drop #=> String, one of "ABOVE_RACK", "BELOW_RACK"
1572
+ # resp.site.rack_physical_properties.uplink_gbps #=> String, one of "UPLINK_1G", "UPLINK_10G", "UPLINK_40G", "UPLINK_100G"
1573
+ # resp.site.rack_physical_properties.uplink_count #=> String, one of "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"
1574
+ # resp.site.rack_physical_properties.fiber_optic_cable_type #=> String, one of "SINGLE_MODE", "MULTI_MODE"
1575
+ # resp.site.rack_physical_properties.optical_standard #=> String, one of "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"
1576
+ # resp.site.rack_physical_properties.maximum_supported_weight_lbs #=> String, one of "NO_LIMIT", "MAX_1400_LBS", "MAX_1600_LBS", "MAX_1800_LBS", "MAX_2000_LBS"
1577
+ #
1578
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateSiteRackPhysicalProperties AWS API Documentation
1579
+ #
1580
+ # @overload update_site_rack_physical_properties(params = {})
1581
+ # @param [Hash] params ({})
1582
+ def update_site_rack_physical_properties(params = {}, options = {})
1583
+ req = build_request(:update_site_rack_physical_properties, params)
1584
+ req.send_request(options)
1585
+ end
1586
+
779
1587
  # @!endgroup
780
1588
 
781
1589
  # @param params ({})
@@ -789,7 +1597,7 @@ module Aws::Outposts
789
1597
  params: params,
790
1598
  config: config)
791
1599
  context[:gem_name] = 'aws-sdk-outposts'
792
- context[:gem_version] = '1.22.0'
1600
+ context[:gem_version] = '1.26.0'
793
1601
  Seahorse::Client::Request.new(handlers, context)
794
1602
  end
795
1603