aws-sdk-outposts 1.23.0 → 1.24.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-outposts/client.rb +747 -9
- data/lib/aws-sdk-outposts/client_api.rb +381 -2
- data/lib/aws-sdk-outposts/types.rb +1035 -37
- data/lib/aws-sdk-outposts.rb +2 -2
- metadata +2 -2
@@ -336,6 +336,28 @@ module Aws::Outposts
|
|
336
336
|
|
337
337
|
# @!group API Operations
|
338
338
|
|
339
|
+
# Cancels an order for an Outpost.
|
340
|
+
#
|
341
|
+
# @option params [required, String] :order_id
|
342
|
+
# The ID of the order to cancel.
|
343
|
+
#
|
344
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
345
|
+
#
|
346
|
+
# @example Request syntax with placeholder values
|
347
|
+
#
|
348
|
+
# resp = client.cancel_order({
|
349
|
+
# order_id: "OrderId", # required
|
350
|
+
# })
|
351
|
+
#
|
352
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CancelOrder AWS API Documentation
|
353
|
+
#
|
354
|
+
# @overload cancel_order(params = {})
|
355
|
+
# @param [Hash] params ({})
|
356
|
+
def cancel_order(params = {}, options = {})
|
357
|
+
req = build_request(:cancel_order, params)
|
358
|
+
req.send_request(options)
|
359
|
+
end
|
360
|
+
|
339
361
|
# Creates an order for an Outpost.
|
340
362
|
#
|
341
363
|
# @option params [required, String] :outpost_identifier
|
@@ -372,12 +394,12 @@ module Aws::Outposts
|
|
372
394
|
#
|
373
395
|
# resp.order.outpost_id #=> String
|
374
396
|
# resp.order.order_id #=> String
|
375
|
-
# resp.order.status #=> String, one of "RECEIVED", "PENDING", "PROCESSING", "INSTALLING", "FULFILLED", "CANCELLED"
|
397
|
+
# resp.order.status #=> String, one of "RECEIVED", "PENDING", "PROCESSING", "INSTALLING", "FULFILLED", "CANCELLED", "PREPARING", "IN_PROGRESS", "COMPLETED", "ERROR"
|
376
398
|
# resp.order.line_items #=> Array
|
377
399
|
# resp.order.line_items[0].catalog_item_id #=> String
|
378
400
|
# resp.order.line_items[0].line_item_id #=> String
|
379
401
|
# resp.order.line_items[0].quantity #=> Integer
|
380
|
-
# resp.order.line_items[0].status #=> String
|
402
|
+
# resp.order.line_items[0].status #=> String, one of "PREPARING", "BUILDING", "SHIPPED", "DELIVERED", "INSTALLING", "INSTALLED", "ERROR", "CANCELLED"
|
381
403
|
# resp.order.payment_option #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
|
382
404
|
# resp.order.order_submission_date #=> Time
|
383
405
|
# resp.order.order_fulfilled_date #=> Time
|
@@ -454,6 +476,125 @@ module Aws::Outposts
|
|
454
476
|
req.send_request(options)
|
455
477
|
end
|
456
478
|
|
479
|
+
# Creates a site for an Outpost.
|
480
|
+
#
|
481
|
+
# @option params [required, String] :name
|
482
|
+
# The name of the site.
|
483
|
+
#
|
484
|
+
# @option params [String] :description
|
485
|
+
# The description of the site.
|
486
|
+
#
|
487
|
+
# @option params [String] :notes
|
488
|
+
# Additional information that you provide about site access
|
489
|
+
# requirements, electrician scheduling, personal protective equipment,
|
490
|
+
# or regulation of equipment materials that could affect your
|
491
|
+
# installation process.
|
492
|
+
#
|
493
|
+
# @option params [Hash<String,String>] :tags
|
494
|
+
# The tags to apply to a site.
|
495
|
+
#
|
496
|
+
# @option params [Types::Address] :operating_address
|
497
|
+
# The location to install and power on the hardware. This address might
|
498
|
+
# be different from the shipping address.
|
499
|
+
#
|
500
|
+
# @option params [Types::Address] :shipping_address
|
501
|
+
# The location to ship the hardware. This address might be different
|
502
|
+
# from the operating address.
|
503
|
+
#
|
504
|
+
# @option params [Types::RackPhysicalProperties] :rack_physical_properties
|
505
|
+
# Information about the physical and logistical details for the rack at
|
506
|
+
# this site. For more information about hardware requirements for racks,
|
507
|
+
# see [Network readiness checklist][1] in the Amazon Web Services
|
508
|
+
# Outposts User Guide.
|
509
|
+
#
|
510
|
+
#
|
511
|
+
#
|
512
|
+
# [1]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#checklist
|
513
|
+
#
|
514
|
+
# @return [Types::CreateSiteOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
515
|
+
#
|
516
|
+
# * {Types::CreateSiteOutput#site #site} => Types::Site
|
517
|
+
#
|
518
|
+
# @example Request syntax with placeholder values
|
519
|
+
#
|
520
|
+
# resp = client.create_site({
|
521
|
+
# name: "SiteName", # required
|
522
|
+
# description: "SiteDescription",
|
523
|
+
# notes: "SiteNotes",
|
524
|
+
# tags: {
|
525
|
+
# "TagKey" => "TagValue",
|
526
|
+
# },
|
527
|
+
# operating_address: {
|
528
|
+
# contact_name: "ContactName",
|
529
|
+
# contact_phone_number: "ContactPhoneNumber",
|
530
|
+
# address_line_1: "AddressLine1", # required
|
531
|
+
# address_line_2: "AddressLine2",
|
532
|
+
# address_line_3: "AddressLine3",
|
533
|
+
# city: "City", # required
|
534
|
+
# state_or_region: "StateOrRegion", # required
|
535
|
+
# district_or_county: "DistrictOrCounty",
|
536
|
+
# postal_code: "PostalCode", # required
|
537
|
+
# country_code: "CountryCode", # required
|
538
|
+
# municipality: "Municipality",
|
539
|
+
# },
|
540
|
+
# shipping_address: {
|
541
|
+
# contact_name: "ContactName",
|
542
|
+
# contact_phone_number: "ContactPhoneNumber",
|
543
|
+
# address_line_1: "AddressLine1", # required
|
544
|
+
# address_line_2: "AddressLine2",
|
545
|
+
# address_line_3: "AddressLine3",
|
546
|
+
# city: "City", # required
|
547
|
+
# state_or_region: "StateOrRegion", # required
|
548
|
+
# district_or_county: "DistrictOrCounty",
|
549
|
+
# postal_code: "PostalCode", # required
|
550
|
+
# country_code: "CountryCode", # required
|
551
|
+
# municipality: "Municipality",
|
552
|
+
# },
|
553
|
+
# rack_physical_properties: {
|
554
|
+
# power_draw_kva: "POWER_5_KVA", # accepts POWER_5_KVA, POWER_10_KVA, POWER_15_KVA
|
555
|
+
# power_phase: "SINGLE_PHASE", # accepts SINGLE_PHASE, THREE_PHASE
|
556
|
+
# power_connector: "L6_30P", # accepts L6_30P, IEC309, AH530P7W, AH532P6W
|
557
|
+
# power_feed_drop: "ABOVE_RACK", # accepts ABOVE_RACK, BELOW_RACK
|
558
|
+
# uplink_gbps: "UPLINK_1G", # accepts UPLINK_1G, UPLINK_10G, UPLINK_40G, UPLINK_100G
|
559
|
+
# 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
|
560
|
+
# fiber_optic_cable_type: "SINGLE_MODE", # accepts SINGLE_MODE, MULTI_MODE
|
561
|
+
# 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
|
562
|
+
# maximum_supported_weight_lbs: "NO_LIMIT", # accepts NO_LIMIT, MAX_1400_LBS, MAX_1600_LBS, MAX_1800_LBS, MAX_2000_LBS
|
563
|
+
# },
|
564
|
+
# })
|
565
|
+
#
|
566
|
+
# @example Response structure
|
567
|
+
#
|
568
|
+
# resp.site.site_id #=> String
|
569
|
+
# resp.site.account_id #=> String
|
570
|
+
# resp.site.name #=> String
|
571
|
+
# resp.site.description #=> String
|
572
|
+
# resp.site.tags #=> Hash
|
573
|
+
# resp.site.tags["TagKey"] #=> String
|
574
|
+
# resp.site.site_arn #=> String
|
575
|
+
# resp.site.notes #=> String
|
576
|
+
# resp.site.operating_address_country_code #=> String
|
577
|
+
# resp.site.operating_address_state_or_region #=> String
|
578
|
+
# resp.site.operating_address_city #=> String
|
579
|
+
# resp.site.rack_physical_properties.power_draw_kva #=> String, one of "POWER_5_KVA", "POWER_10_KVA", "POWER_15_KVA"
|
580
|
+
# resp.site.rack_physical_properties.power_phase #=> String, one of "SINGLE_PHASE", "THREE_PHASE"
|
581
|
+
# resp.site.rack_physical_properties.power_connector #=> String, one of "L6_30P", "IEC309", "AH530P7W", "AH532P6W"
|
582
|
+
# resp.site.rack_physical_properties.power_feed_drop #=> String, one of "ABOVE_RACK", "BELOW_RACK"
|
583
|
+
# resp.site.rack_physical_properties.uplink_gbps #=> String, one of "UPLINK_1G", "UPLINK_10G", "UPLINK_40G", "UPLINK_100G"
|
584
|
+
# 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"
|
585
|
+
# resp.site.rack_physical_properties.fiber_optic_cable_type #=> String, one of "SINGLE_MODE", "MULTI_MODE"
|
586
|
+
# 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"
|
587
|
+
# 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"
|
588
|
+
#
|
589
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateSite AWS API Documentation
|
590
|
+
#
|
591
|
+
# @overload create_site(params = {})
|
592
|
+
# @param [Hash] params ({})
|
593
|
+
def create_site(params = {}, options = {})
|
594
|
+
req = build_request(:create_site, params)
|
595
|
+
req.send_request(options)
|
596
|
+
end
|
597
|
+
|
457
598
|
# Deletes the Outpost.
|
458
599
|
#
|
459
600
|
# @option params [required, String] :outpost_id
|
@@ -498,6 +639,83 @@ module Aws::Outposts
|
|
498
639
|
req.send_request(options)
|
499
640
|
end
|
500
641
|
|
642
|
+
# Gets information about a catalog item.
|
643
|
+
#
|
644
|
+
# @option params [required, String] :catalog_item_id
|
645
|
+
# The ID of the catalog item.
|
646
|
+
#
|
647
|
+
# @return [Types::GetCatalogItemOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
648
|
+
#
|
649
|
+
# * {Types::GetCatalogItemOutput#catalog_item #catalog_item} => Types::CatalogItem
|
650
|
+
#
|
651
|
+
# @example Request syntax with placeholder values
|
652
|
+
#
|
653
|
+
# resp = client.get_catalog_item({
|
654
|
+
# catalog_item_id: "SkuCode", # required
|
655
|
+
# })
|
656
|
+
#
|
657
|
+
# @example Response structure
|
658
|
+
#
|
659
|
+
# resp.catalog_item.catalog_item_id #=> String
|
660
|
+
# resp.catalog_item.item_status #=> String, one of "AVAILABLE", "DISCONTINUED"
|
661
|
+
# resp.catalog_item.ec2_capacities #=> Array
|
662
|
+
# resp.catalog_item.ec2_capacities[0].family #=> String
|
663
|
+
# resp.catalog_item.ec2_capacities[0].max_size #=> String
|
664
|
+
# resp.catalog_item.ec2_capacities[0].quantity #=> String
|
665
|
+
# resp.catalog_item.power_kva #=> Float
|
666
|
+
# resp.catalog_item.weight_lbs #=> Integer
|
667
|
+
# resp.catalog_item.supported_uplink_gbps #=> Array
|
668
|
+
# resp.catalog_item.supported_uplink_gbps[0] #=> Integer
|
669
|
+
# resp.catalog_item.supported_storage #=> Array
|
670
|
+
# resp.catalog_item.supported_storage[0] #=> String, one of "EBS", "S3"
|
671
|
+
#
|
672
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetCatalogItem AWS API Documentation
|
673
|
+
#
|
674
|
+
# @overload get_catalog_item(params = {})
|
675
|
+
# @param [Hash] params ({})
|
676
|
+
def get_catalog_item(params = {}, options = {})
|
677
|
+
req = build_request(:get_catalog_item, params)
|
678
|
+
req.send_request(options)
|
679
|
+
end
|
680
|
+
|
681
|
+
# Gets an order.
|
682
|
+
#
|
683
|
+
# @option params [required, String] :order_id
|
684
|
+
# The ID of the order.
|
685
|
+
#
|
686
|
+
# @return [Types::GetOrderOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
687
|
+
#
|
688
|
+
# * {Types::GetOrderOutput#order #order} => Types::Order
|
689
|
+
#
|
690
|
+
# @example Request syntax with placeholder values
|
691
|
+
#
|
692
|
+
# resp = client.get_order({
|
693
|
+
# order_id: "OrderId", # required
|
694
|
+
# })
|
695
|
+
#
|
696
|
+
# @example Response structure
|
697
|
+
#
|
698
|
+
# resp.order.outpost_id #=> String
|
699
|
+
# resp.order.order_id #=> String
|
700
|
+
# resp.order.status #=> String, one of "RECEIVED", "PENDING", "PROCESSING", "INSTALLING", "FULFILLED", "CANCELLED", "PREPARING", "IN_PROGRESS", "COMPLETED", "ERROR"
|
701
|
+
# resp.order.line_items #=> Array
|
702
|
+
# resp.order.line_items[0].catalog_item_id #=> String
|
703
|
+
# resp.order.line_items[0].line_item_id #=> String
|
704
|
+
# resp.order.line_items[0].quantity #=> Integer
|
705
|
+
# resp.order.line_items[0].status #=> String, one of "PREPARING", "BUILDING", "SHIPPED", "DELIVERED", "INSTALLING", "INSTALLED", "ERROR", "CANCELLED"
|
706
|
+
# resp.order.payment_option #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
|
707
|
+
# resp.order.order_submission_date #=> Time
|
708
|
+
# resp.order.order_fulfilled_date #=> Time
|
709
|
+
#
|
710
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetOrder AWS API Documentation
|
711
|
+
#
|
712
|
+
# @overload get_order(params = {})
|
713
|
+
# @param [Hash] params ({})
|
714
|
+
def get_order(params = {}, options = {})
|
715
|
+
req = build_request(:get_order, params)
|
716
|
+
req.send_request(options)
|
717
|
+
end
|
718
|
+
|
501
719
|
# Gets information about the specified Outpost.
|
502
720
|
#
|
503
721
|
# @option params [required, String] :outpost_id
|
@@ -580,10 +798,231 @@ module Aws::Outposts
|
|
580
798
|
req.send_request(options)
|
581
799
|
end
|
582
800
|
|
583
|
-
#
|
584
|
-
#
|
585
|
-
#
|
586
|
-
#
|
801
|
+
# Gets information about the specified Outpost site.
|
802
|
+
#
|
803
|
+
# @option params [required, String] :site_id
|
804
|
+
# The ID of the site.
|
805
|
+
#
|
806
|
+
# @return [Types::GetSiteOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
807
|
+
#
|
808
|
+
# * {Types::GetSiteOutput#site #site} => Types::Site
|
809
|
+
#
|
810
|
+
# @example Request syntax with placeholder values
|
811
|
+
#
|
812
|
+
# resp = client.get_site({
|
813
|
+
# site_id: "SiteId", # required
|
814
|
+
# })
|
815
|
+
#
|
816
|
+
# @example Response structure
|
817
|
+
#
|
818
|
+
# resp.site.site_id #=> String
|
819
|
+
# resp.site.account_id #=> String
|
820
|
+
# resp.site.name #=> String
|
821
|
+
# resp.site.description #=> String
|
822
|
+
# resp.site.tags #=> Hash
|
823
|
+
# resp.site.tags["TagKey"] #=> String
|
824
|
+
# resp.site.site_arn #=> String
|
825
|
+
# resp.site.notes #=> String
|
826
|
+
# resp.site.operating_address_country_code #=> String
|
827
|
+
# resp.site.operating_address_state_or_region #=> String
|
828
|
+
# resp.site.operating_address_city #=> String
|
829
|
+
# resp.site.rack_physical_properties.power_draw_kva #=> String, one of "POWER_5_KVA", "POWER_10_KVA", "POWER_15_KVA"
|
830
|
+
# resp.site.rack_physical_properties.power_phase #=> String, one of "SINGLE_PHASE", "THREE_PHASE"
|
831
|
+
# resp.site.rack_physical_properties.power_connector #=> String, one of "L6_30P", "IEC309", "AH530P7W", "AH532P6W"
|
832
|
+
# resp.site.rack_physical_properties.power_feed_drop #=> String, one of "ABOVE_RACK", "BELOW_RACK"
|
833
|
+
# resp.site.rack_physical_properties.uplink_gbps #=> String, one of "UPLINK_1G", "UPLINK_10G", "UPLINK_40G", "UPLINK_100G"
|
834
|
+
# 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"
|
835
|
+
# resp.site.rack_physical_properties.fiber_optic_cable_type #=> String, one of "SINGLE_MODE", "MULTI_MODE"
|
836
|
+
# 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"
|
837
|
+
# 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"
|
838
|
+
#
|
839
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetSite AWS API Documentation
|
840
|
+
#
|
841
|
+
# @overload get_site(params = {})
|
842
|
+
# @param [Hash] params ({})
|
843
|
+
def get_site(params = {}, options = {})
|
844
|
+
req = build_request(:get_site, params)
|
845
|
+
req.send_request(options)
|
846
|
+
end
|
847
|
+
|
848
|
+
# Gets the site address.
|
849
|
+
#
|
850
|
+
# @option params [required, String] :site_id
|
851
|
+
# The ID of the site.
|
852
|
+
#
|
853
|
+
# @option params [required, String] :address_type
|
854
|
+
# The type of the address you request.
|
855
|
+
#
|
856
|
+
# @return [Types::GetSiteAddressOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
857
|
+
#
|
858
|
+
# * {Types::GetSiteAddressOutput#site_id #site_id} => String
|
859
|
+
# * {Types::GetSiteAddressOutput#address_type #address_type} => String
|
860
|
+
# * {Types::GetSiteAddressOutput#address #address} => Types::Address
|
861
|
+
#
|
862
|
+
# @example Request syntax with placeholder values
|
863
|
+
#
|
864
|
+
# resp = client.get_site_address({
|
865
|
+
# site_id: "SiteId", # required
|
866
|
+
# address_type: "SHIPPING_ADDRESS", # required, accepts SHIPPING_ADDRESS, OPERATING_ADDRESS
|
867
|
+
# })
|
868
|
+
#
|
869
|
+
# @example Response structure
|
870
|
+
#
|
871
|
+
# resp.site_id #=> String
|
872
|
+
# resp.address_type #=> String, one of "SHIPPING_ADDRESS", "OPERATING_ADDRESS"
|
873
|
+
# resp.address.contact_name #=> String
|
874
|
+
# resp.address.contact_phone_number #=> String
|
875
|
+
# resp.address.address_line_1 #=> String
|
876
|
+
# resp.address.address_line_2 #=> String
|
877
|
+
# resp.address.address_line_3 #=> String
|
878
|
+
# resp.address.city #=> String
|
879
|
+
# resp.address.state_or_region #=> String
|
880
|
+
# resp.address.district_or_county #=> String
|
881
|
+
# resp.address.postal_code #=> String
|
882
|
+
# resp.address.country_code #=> String
|
883
|
+
# resp.address.municipality #=> String
|
884
|
+
#
|
885
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetSiteAddress AWS API Documentation
|
886
|
+
#
|
887
|
+
# @overload get_site_address(params = {})
|
888
|
+
# @param [Hash] params ({})
|
889
|
+
def get_site_address(params = {}, options = {})
|
890
|
+
req = build_request(:get_site_address, params)
|
891
|
+
req.send_request(options)
|
892
|
+
end
|
893
|
+
|
894
|
+
# Use to create a list of every item in the catalog. Add filters to your
|
895
|
+
# request to return a more specific list of results. Use filters to
|
896
|
+
# match an item class, storage option, or EC2 family.
|
897
|
+
#
|
898
|
+
# If you specify multiple filters, the filters are joined with an `AND`,
|
899
|
+
# and the request returns only results that match all of the specified
|
900
|
+
# filters.
|
901
|
+
#
|
902
|
+
# @option params [String] :next_token
|
903
|
+
# The pagination token.
|
904
|
+
#
|
905
|
+
# @option params [Integer] :max_results
|
906
|
+
# The maximum page size.
|
907
|
+
#
|
908
|
+
# @option params [Array<String>] :item_class_filter
|
909
|
+
# A filter for the class of items in the catalog.
|
910
|
+
#
|
911
|
+
# Filter values are case sensitive. If you specify multiple values for a
|
912
|
+
# filter, the values are joined with an `OR`, and the request returns
|
913
|
+
# all results that match any of the specified values.
|
914
|
+
#
|
915
|
+
# @option params [Array<String>] :supported_storage_filter
|
916
|
+
# A filter for the storage options of items in the catalog.
|
917
|
+
#
|
918
|
+
# Filter values are case sensitive. If you specify multiple values for a
|
919
|
+
# filter, the values are joined with an `OR`, and the request returns
|
920
|
+
# all results that match any of the specified values.
|
921
|
+
#
|
922
|
+
# @option params [Array<String>] :ec2_family_filter
|
923
|
+
# A filter for EC2 family options for items in the catalog.
|
924
|
+
#
|
925
|
+
# Filter values are case sensitive. If you specify multiple values for a
|
926
|
+
# filter, the values are joined with an `OR`, and the request returns
|
927
|
+
# all results that match any of the specified values.
|
928
|
+
#
|
929
|
+
# @return [Types::ListCatalogItemsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
930
|
+
#
|
931
|
+
# * {Types::ListCatalogItemsOutput#catalog_items #catalog_items} => Array<Types::CatalogItem>
|
932
|
+
# * {Types::ListCatalogItemsOutput#next_token #next_token} => String
|
933
|
+
#
|
934
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
935
|
+
#
|
936
|
+
# @example Request syntax with placeholder values
|
937
|
+
#
|
938
|
+
# resp = client.list_catalog_items({
|
939
|
+
# next_token: "Token",
|
940
|
+
# max_results: 1,
|
941
|
+
# item_class_filter: ["RACK"], # accepts RACK, SERVER
|
942
|
+
# supported_storage_filter: ["EBS"], # accepts EBS, S3
|
943
|
+
# ec2_family_filter: ["Family"],
|
944
|
+
# })
|
945
|
+
#
|
946
|
+
# @example Response structure
|
947
|
+
#
|
948
|
+
# resp.catalog_items #=> Array
|
949
|
+
# resp.catalog_items[0].catalog_item_id #=> String
|
950
|
+
# resp.catalog_items[0].item_status #=> String, one of "AVAILABLE", "DISCONTINUED"
|
951
|
+
# resp.catalog_items[0].ec2_capacities #=> Array
|
952
|
+
# resp.catalog_items[0].ec2_capacities[0].family #=> String
|
953
|
+
# resp.catalog_items[0].ec2_capacities[0].max_size #=> String
|
954
|
+
# resp.catalog_items[0].ec2_capacities[0].quantity #=> String
|
955
|
+
# resp.catalog_items[0].power_kva #=> Float
|
956
|
+
# resp.catalog_items[0].weight_lbs #=> Integer
|
957
|
+
# resp.catalog_items[0].supported_uplink_gbps #=> Array
|
958
|
+
# resp.catalog_items[0].supported_uplink_gbps[0] #=> Integer
|
959
|
+
# resp.catalog_items[0].supported_storage #=> Array
|
960
|
+
# resp.catalog_items[0].supported_storage[0] #=> String, one of "EBS", "S3"
|
961
|
+
# resp.next_token #=> String
|
962
|
+
#
|
963
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListCatalogItems AWS API Documentation
|
964
|
+
#
|
965
|
+
# @overload list_catalog_items(params = {})
|
966
|
+
# @param [Hash] params ({})
|
967
|
+
def list_catalog_items(params = {}, options = {})
|
968
|
+
req = build_request(:list_catalog_items, params)
|
969
|
+
req.send_request(options)
|
970
|
+
end
|
971
|
+
|
972
|
+
# Create a list of the Outpost orders for your Amazon Web Services
|
973
|
+
# account. You can filter your request by Outpost to return a more
|
974
|
+
# specific list of results.
|
975
|
+
#
|
976
|
+
# @option params [String] :outpost_identifier_filter
|
977
|
+
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
978
|
+
#
|
979
|
+
# @option params [String] :next_token
|
980
|
+
# The pagination token.
|
981
|
+
#
|
982
|
+
# @option params [Integer] :max_results
|
983
|
+
# The maximum page size.
|
984
|
+
#
|
985
|
+
# @return [Types::ListOrdersOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
986
|
+
#
|
987
|
+
# * {Types::ListOrdersOutput#orders #orders} => Array<Types::OrderSummary>
|
988
|
+
# * {Types::ListOrdersOutput#next_token #next_token} => String
|
989
|
+
#
|
990
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
991
|
+
#
|
992
|
+
# @example Request syntax with placeholder values
|
993
|
+
#
|
994
|
+
# resp = client.list_orders({
|
995
|
+
# outpost_identifier_filter: "OutpostIdentifier",
|
996
|
+
# next_token: "Token",
|
997
|
+
# max_results: 1,
|
998
|
+
# })
|
999
|
+
#
|
1000
|
+
# @example Response structure
|
1001
|
+
#
|
1002
|
+
# resp.orders #=> Array
|
1003
|
+
# resp.orders[0].outpost_id #=> String
|
1004
|
+
# resp.orders[0].order_id #=> String
|
1005
|
+
# resp.orders[0].order_type #=> String, one of "OUTPOST", "REPLACEMENT"
|
1006
|
+
# resp.orders[0].status #=> String, one of "RECEIVED", "PENDING", "PROCESSING", "INSTALLING", "FULFILLED", "CANCELLED", "PREPARING", "IN_PROGRESS", "COMPLETED", "ERROR"
|
1007
|
+
# resp.orders[0].line_item_counts_by_status #=> Hash
|
1008
|
+
# resp.orders[0].line_item_counts_by_status["LineItemStatus"] #=> Integer
|
1009
|
+
# resp.orders[0].order_submission_date #=> Time
|
1010
|
+
# resp.orders[0].order_fulfilled_date #=> Time
|
1011
|
+
# resp.next_token #=> String
|
1012
|
+
#
|
1013
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListOrders AWS API Documentation
|
1014
|
+
#
|
1015
|
+
# @overload list_orders(params = {})
|
1016
|
+
# @param [Hash] params ({})
|
1017
|
+
def list_orders(params = {}, options = {})
|
1018
|
+
req = build_request(:list_orders, params)
|
1019
|
+
req.send_request(options)
|
1020
|
+
end
|
1021
|
+
|
1022
|
+
# Create a list of the Outposts for your Amazon Web Services account.
|
1023
|
+
# Add filters to your request to return a more specific list of results.
|
1024
|
+
# Use filters to match an Outpost lifecycle status, Availability Zone
|
1025
|
+
# (`us-east-1a`), and AZ ID (`use1-az1`).
|
587
1026
|
#
|
588
1027
|
# If you specify multiple filters, the filters are joined with an `AND`,
|
589
1028
|
# and the request returns only results that match all of the specified
|
@@ -603,7 +1042,7 @@ module Aws::Outposts
|
|
603
1042
|
# all results that match any of the specified values.
|
604
1043
|
#
|
605
1044
|
# @option params [Array<String>] :availability_zone_filter
|
606
|
-
# A filter for the
|
1045
|
+
# A filter for the Availability Zone (`us-east-1a`) of the Outpost.
|
607
1046
|
#
|
608
1047
|
# Filter values are case sensitive. If you specify multiple values for a
|
609
1048
|
# filter, the values are joined with an `OR`, and the request returns
|
@@ -659,7 +1098,7 @@ module Aws::Outposts
|
|
659
1098
|
req.send_request(options)
|
660
1099
|
end
|
661
1100
|
|
662
|
-
# Lists the sites for
|
1101
|
+
# Lists the sites for your Amazon Web Services account.
|
663
1102
|
#
|
664
1103
|
# @option params [String] :next_token
|
665
1104
|
# The pagination token.
|
@@ -691,6 +1130,19 @@ module Aws::Outposts
|
|
691
1130
|
# resp.sites[0].tags #=> Hash
|
692
1131
|
# resp.sites[0].tags["TagKey"] #=> String
|
693
1132
|
# resp.sites[0].site_arn #=> String
|
1133
|
+
# resp.sites[0].notes #=> String
|
1134
|
+
# resp.sites[0].operating_address_country_code #=> String
|
1135
|
+
# resp.sites[0].operating_address_state_or_region #=> String
|
1136
|
+
# resp.sites[0].operating_address_city #=> String
|
1137
|
+
# resp.sites[0].rack_physical_properties.power_draw_kva #=> String, one of "POWER_5_KVA", "POWER_10_KVA", "POWER_15_KVA"
|
1138
|
+
# resp.sites[0].rack_physical_properties.power_phase #=> String, one of "SINGLE_PHASE", "THREE_PHASE"
|
1139
|
+
# resp.sites[0].rack_physical_properties.power_connector #=> String, one of "L6_30P", "IEC309", "AH530P7W", "AH532P6W"
|
1140
|
+
# resp.sites[0].rack_physical_properties.power_feed_drop #=> String, one of "ABOVE_RACK", "BELOW_RACK"
|
1141
|
+
# resp.sites[0].rack_physical_properties.uplink_gbps #=> String, one of "UPLINK_1G", "UPLINK_10G", "UPLINK_40G", "UPLINK_100G"
|
1142
|
+
# 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"
|
1143
|
+
# resp.sites[0].rack_physical_properties.fiber_optic_cable_type #=> String, one of "SINGLE_MODE", "MULTI_MODE"
|
1144
|
+
# 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"
|
1145
|
+
# 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"
|
694
1146
|
# resp.next_token #=> String
|
695
1147
|
#
|
696
1148
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListSites AWS API Documentation
|
@@ -785,6 +1237,292 @@ module Aws::Outposts
|
|
785
1237
|
req.send_request(options)
|
786
1238
|
end
|
787
1239
|
|
1240
|
+
# Updates the site.
|
1241
|
+
#
|
1242
|
+
# @option params [required, String] :site_id
|
1243
|
+
# The ID of the site.
|
1244
|
+
#
|
1245
|
+
# @option params [String] :name
|
1246
|
+
# The name of the site.
|
1247
|
+
#
|
1248
|
+
# @option params [String] :description
|
1249
|
+
# The description of the site.
|
1250
|
+
#
|
1251
|
+
# @option params [String] :notes
|
1252
|
+
# Notes about a site.
|
1253
|
+
#
|
1254
|
+
# @return [Types::UpdateSiteOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1255
|
+
#
|
1256
|
+
# * {Types::UpdateSiteOutput#site #site} => Types::Site
|
1257
|
+
#
|
1258
|
+
# @example Request syntax with placeholder values
|
1259
|
+
#
|
1260
|
+
# resp = client.update_site({
|
1261
|
+
# site_id: "SiteId", # required
|
1262
|
+
# name: "SiteName",
|
1263
|
+
# description: "SiteDescription",
|
1264
|
+
# notes: "SiteNotes",
|
1265
|
+
# })
|
1266
|
+
#
|
1267
|
+
# @example Response structure
|
1268
|
+
#
|
1269
|
+
# resp.site.site_id #=> String
|
1270
|
+
# resp.site.account_id #=> String
|
1271
|
+
# resp.site.name #=> String
|
1272
|
+
# resp.site.description #=> String
|
1273
|
+
# resp.site.tags #=> Hash
|
1274
|
+
# resp.site.tags["TagKey"] #=> String
|
1275
|
+
# resp.site.site_arn #=> String
|
1276
|
+
# resp.site.notes #=> String
|
1277
|
+
# resp.site.operating_address_country_code #=> String
|
1278
|
+
# resp.site.operating_address_state_or_region #=> String
|
1279
|
+
# resp.site.operating_address_city #=> String
|
1280
|
+
# resp.site.rack_physical_properties.power_draw_kva #=> String, one of "POWER_5_KVA", "POWER_10_KVA", "POWER_15_KVA"
|
1281
|
+
# resp.site.rack_physical_properties.power_phase #=> String, one of "SINGLE_PHASE", "THREE_PHASE"
|
1282
|
+
# resp.site.rack_physical_properties.power_connector #=> String, one of "L6_30P", "IEC309", "AH530P7W", "AH532P6W"
|
1283
|
+
# resp.site.rack_physical_properties.power_feed_drop #=> String, one of "ABOVE_RACK", "BELOW_RACK"
|
1284
|
+
# resp.site.rack_physical_properties.uplink_gbps #=> String, one of "UPLINK_1G", "UPLINK_10G", "UPLINK_40G", "UPLINK_100G"
|
1285
|
+
# 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"
|
1286
|
+
# resp.site.rack_physical_properties.fiber_optic_cable_type #=> String, one of "SINGLE_MODE", "MULTI_MODE"
|
1287
|
+
# 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"
|
1288
|
+
# 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"
|
1289
|
+
#
|
1290
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateSite AWS API Documentation
|
1291
|
+
#
|
1292
|
+
# @overload update_site(params = {})
|
1293
|
+
# @param [Hash] params ({})
|
1294
|
+
def update_site(params = {}, options = {})
|
1295
|
+
req = build_request(:update_site, params)
|
1296
|
+
req.send_request(options)
|
1297
|
+
end
|
1298
|
+
|
1299
|
+
# Updates the site address.
|
1300
|
+
#
|
1301
|
+
# To update a site address with an order `IN_PROGRESS`, you must wait
|
1302
|
+
# for the order to complete or cancel the order.
|
1303
|
+
#
|
1304
|
+
# You can update the operating address before you place an order at the
|
1305
|
+
# site, or after all Outposts that belong to the site have been
|
1306
|
+
# deactivated.
|
1307
|
+
#
|
1308
|
+
# @option params [required, String] :site_id
|
1309
|
+
# The ID of the site.
|
1310
|
+
#
|
1311
|
+
# @option params [required, String] :address_type
|
1312
|
+
# The type of the address.
|
1313
|
+
#
|
1314
|
+
# @option params [required, Types::Address] :address
|
1315
|
+
# The address for the site.
|
1316
|
+
#
|
1317
|
+
# @return [Types::UpdateSiteAddressOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1318
|
+
#
|
1319
|
+
# * {Types::UpdateSiteAddressOutput#address_type #address_type} => String
|
1320
|
+
# * {Types::UpdateSiteAddressOutput#address #address} => Types::Address
|
1321
|
+
#
|
1322
|
+
# @example Request syntax with placeholder values
|
1323
|
+
#
|
1324
|
+
# resp = client.update_site_address({
|
1325
|
+
# site_id: "SiteId", # required
|
1326
|
+
# address_type: "SHIPPING_ADDRESS", # required, accepts SHIPPING_ADDRESS, OPERATING_ADDRESS
|
1327
|
+
# address: { # required
|
1328
|
+
# contact_name: "ContactName",
|
1329
|
+
# contact_phone_number: "ContactPhoneNumber",
|
1330
|
+
# address_line_1: "AddressLine1", # required
|
1331
|
+
# address_line_2: "AddressLine2",
|
1332
|
+
# address_line_3: "AddressLine3",
|
1333
|
+
# city: "City", # required
|
1334
|
+
# state_or_region: "StateOrRegion", # required
|
1335
|
+
# district_or_county: "DistrictOrCounty",
|
1336
|
+
# postal_code: "PostalCode", # required
|
1337
|
+
# country_code: "CountryCode", # required
|
1338
|
+
# municipality: "Municipality",
|
1339
|
+
# },
|
1340
|
+
# })
|
1341
|
+
#
|
1342
|
+
# @example Response structure
|
1343
|
+
#
|
1344
|
+
# resp.address_type #=> String, one of "SHIPPING_ADDRESS", "OPERATING_ADDRESS"
|
1345
|
+
# resp.address.contact_name #=> String
|
1346
|
+
# resp.address.contact_phone_number #=> String
|
1347
|
+
# resp.address.address_line_1 #=> String
|
1348
|
+
# resp.address.address_line_2 #=> String
|
1349
|
+
# resp.address.address_line_3 #=> String
|
1350
|
+
# resp.address.city #=> String
|
1351
|
+
# resp.address.state_or_region #=> String
|
1352
|
+
# resp.address.district_or_county #=> String
|
1353
|
+
# resp.address.postal_code #=> String
|
1354
|
+
# resp.address.country_code #=> String
|
1355
|
+
# resp.address.municipality #=> String
|
1356
|
+
#
|
1357
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateSiteAddress AWS API Documentation
|
1358
|
+
#
|
1359
|
+
# @overload update_site_address(params = {})
|
1360
|
+
# @param [Hash] params ({})
|
1361
|
+
def update_site_address(params = {}, options = {})
|
1362
|
+
req = build_request(:update_site_address, params)
|
1363
|
+
req.send_request(options)
|
1364
|
+
end
|
1365
|
+
|
1366
|
+
# Update the physical and logistical details for a rack at a site. For
|
1367
|
+
# more information about hardware requirements for racks, see [Network
|
1368
|
+
# readiness checklist][1] in the Amazon Web Services Outposts User
|
1369
|
+
# Guide.
|
1370
|
+
#
|
1371
|
+
# To update a rack at a site with an order of `IN_PROGRESS`, you must
|
1372
|
+
# wait for the order to complete or cancel the order.
|
1373
|
+
#
|
1374
|
+
#
|
1375
|
+
#
|
1376
|
+
# [1]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#checklist
|
1377
|
+
#
|
1378
|
+
# @option params [required, String] :site_id
|
1379
|
+
# The ID of the site.
|
1380
|
+
#
|
1381
|
+
# @option params [String] :power_draw_kva
|
1382
|
+
# Specify in kVA the power draw available at the hardware placement
|
1383
|
+
# position for the rack.
|
1384
|
+
#
|
1385
|
+
# @option params [String] :power_phase
|
1386
|
+
# Specify the power option that you can provide for hardware.
|
1387
|
+
#
|
1388
|
+
# * Single-phase AC feed: 200 V to 277 V, 50 Hz or 60 Hz
|
1389
|
+
#
|
1390
|
+
# * Three-phase AC feed: 346 V to 480 V, 50 Hz or 60 Hz
|
1391
|
+
#
|
1392
|
+
# @option params [String] :power_connector
|
1393
|
+
# Specify the power connector that Amazon Web Services should plan to
|
1394
|
+
# provide for connections to the hardware. Note the correlation between
|
1395
|
+
# `PowerPhase` and `PowerConnector`.
|
1396
|
+
#
|
1397
|
+
# * Single-phase AC feed
|
1398
|
+
#
|
1399
|
+
# * **L6-30P** – (common in US); 30A; single phase
|
1400
|
+
#
|
1401
|
+
# * **IEC309 (blue)** – P+N+E, 6hr; 32 A; single phase
|
1402
|
+
#
|
1403
|
+
# * Three-phase AC feed
|
1404
|
+
#
|
1405
|
+
# * **AH530P7W (red)** – 3P+N+E, 7hr; 30A; three phase
|
1406
|
+
#
|
1407
|
+
# * **AH532P6W (red)** – 3P+N+E, 6hr; 32A; three phase
|
1408
|
+
#
|
1409
|
+
# @option params [String] :power_feed_drop
|
1410
|
+
# Specify whether the power feed comes above or below the rack.
|
1411
|
+
#
|
1412
|
+
# @option params [String] :uplink_gbps
|
1413
|
+
# Specify the uplink speed the rack should support for the connection to
|
1414
|
+
# the Region.
|
1415
|
+
#
|
1416
|
+
# @option params [String] :uplink_count
|
1417
|
+
# Racks come with two Outpost network devices. Depending on the
|
1418
|
+
# supported uplink speed at the site, the Outpost network devices
|
1419
|
+
# provide a variable number of uplinks. Specify the number of uplinks
|
1420
|
+
# for each Outpost network device that you intend to use to connect the
|
1421
|
+
# rack to your network. Note the correlation between `UplinkGbps` and
|
1422
|
+
# `UplinkCount`.
|
1423
|
+
#
|
1424
|
+
# * 1Gbps - Uplinks available: 1, 2, 4, 6, 8
|
1425
|
+
#
|
1426
|
+
# * 10Gbps - Uplinks available: 1, 2, 4, 8, 12, 16
|
1427
|
+
#
|
1428
|
+
# * 40 and 100 Gbps- Uplinks available: 1, 2, 4
|
1429
|
+
#
|
1430
|
+
# @option params [String] :fiber_optic_cable_type
|
1431
|
+
# Specify the type of fiber that you will use to attach the Outpost to
|
1432
|
+
# your network.
|
1433
|
+
#
|
1434
|
+
# @option params [String] :optical_standard
|
1435
|
+
# Specify the type of optical standard that you will use to attach the
|
1436
|
+
# Outpost to your network. This field is dependent on uplink speed,
|
1437
|
+
# fiber type, and distance to the upstream device. For more information
|
1438
|
+
# about networking requirements for racks, see [Network][1] in the
|
1439
|
+
# Amazon Web Services Outposts User Guide.
|
1440
|
+
#
|
1441
|
+
# * `OPTIC_10GBASE_SR`\: 10GBASE-SR
|
1442
|
+
#
|
1443
|
+
# * `OPTIC_10GBASE_IR`\: 10GBASE-IR
|
1444
|
+
#
|
1445
|
+
# * `OPTIC_10GBASE_LR`\: 10GBASE-LR
|
1446
|
+
#
|
1447
|
+
# * `OPTIC_40GBASE_SR`\: 40GBASE-SR
|
1448
|
+
#
|
1449
|
+
# * `OPTIC_40GBASE_ESR`\: 40GBASE-ESR
|
1450
|
+
#
|
1451
|
+
# * `OPTIC_40GBASE_IR4_LR4L`\: 40GBASE-IR (LR4L)
|
1452
|
+
#
|
1453
|
+
# * `OPTIC_40GBASE_LR4`\: 40GBASE-LR4
|
1454
|
+
#
|
1455
|
+
# * `OPTIC_100GBASE_SR4`\: 100GBASE-SR4
|
1456
|
+
#
|
1457
|
+
# * `OPTIC_100GBASE_CWDM4`\: 100GBASE-CWDM4
|
1458
|
+
#
|
1459
|
+
# * `OPTIC_100GBASE_LR4`\: 100GBASE-LR4
|
1460
|
+
#
|
1461
|
+
# * `OPTIC_100G_PSM4_MSA`\: 100G PSM4 MSA
|
1462
|
+
#
|
1463
|
+
# * `OPTIC_1000BASE_LX`\: 1000Base-LX
|
1464
|
+
#
|
1465
|
+
# * `OPTIC_1000BASE_SX`\: 1000Base-SX
|
1466
|
+
#
|
1467
|
+
#
|
1468
|
+
#
|
1469
|
+
# [1]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#facility-networking
|
1470
|
+
#
|
1471
|
+
# @option params [String] :maximum_supported_weight_lbs
|
1472
|
+
# Specify the maximum rack weight that this site can support. `NO_LIMIT`
|
1473
|
+
# is over 2000lbs.
|
1474
|
+
#
|
1475
|
+
# @return [Types::UpdateSiteRackPhysicalPropertiesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1476
|
+
#
|
1477
|
+
# * {Types::UpdateSiteRackPhysicalPropertiesOutput#site #site} => Types::Site
|
1478
|
+
#
|
1479
|
+
# @example Request syntax with placeholder values
|
1480
|
+
#
|
1481
|
+
# resp = client.update_site_rack_physical_properties({
|
1482
|
+
# site_id: "SiteId", # required
|
1483
|
+
# power_draw_kva: "POWER_5_KVA", # accepts POWER_5_KVA, POWER_10_KVA, POWER_15_KVA
|
1484
|
+
# power_phase: "SINGLE_PHASE", # accepts SINGLE_PHASE, THREE_PHASE
|
1485
|
+
# power_connector: "L6_30P", # accepts L6_30P, IEC309, AH530P7W, AH532P6W
|
1486
|
+
# power_feed_drop: "ABOVE_RACK", # accepts ABOVE_RACK, BELOW_RACK
|
1487
|
+
# uplink_gbps: "UPLINK_1G", # accepts UPLINK_1G, UPLINK_10G, UPLINK_40G, UPLINK_100G
|
1488
|
+
# 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
|
1489
|
+
# fiber_optic_cable_type: "SINGLE_MODE", # accepts SINGLE_MODE, MULTI_MODE
|
1490
|
+
# 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
|
1491
|
+
# maximum_supported_weight_lbs: "NO_LIMIT", # accepts NO_LIMIT, MAX_1400_LBS, MAX_1600_LBS, MAX_1800_LBS, MAX_2000_LBS
|
1492
|
+
# })
|
1493
|
+
#
|
1494
|
+
# @example Response structure
|
1495
|
+
#
|
1496
|
+
# resp.site.site_id #=> String
|
1497
|
+
# resp.site.account_id #=> String
|
1498
|
+
# resp.site.name #=> String
|
1499
|
+
# resp.site.description #=> String
|
1500
|
+
# resp.site.tags #=> Hash
|
1501
|
+
# resp.site.tags["TagKey"] #=> String
|
1502
|
+
# resp.site.site_arn #=> String
|
1503
|
+
# resp.site.notes #=> String
|
1504
|
+
# resp.site.operating_address_country_code #=> String
|
1505
|
+
# resp.site.operating_address_state_or_region #=> String
|
1506
|
+
# resp.site.operating_address_city #=> String
|
1507
|
+
# resp.site.rack_physical_properties.power_draw_kva #=> String, one of "POWER_5_KVA", "POWER_10_KVA", "POWER_15_KVA"
|
1508
|
+
# resp.site.rack_physical_properties.power_phase #=> String, one of "SINGLE_PHASE", "THREE_PHASE"
|
1509
|
+
# resp.site.rack_physical_properties.power_connector #=> String, one of "L6_30P", "IEC309", "AH530P7W", "AH532P6W"
|
1510
|
+
# resp.site.rack_physical_properties.power_feed_drop #=> String, one of "ABOVE_RACK", "BELOW_RACK"
|
1511
|
+
# resp.site.rack_physical_properties.uplink_gbps #=> String, one of "UPLINK_1G", "UPLINK_10G", "UPLINK_40G", "UPLINK_100G"
|
1512
|
+
# 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"
|
1513
|
+
# resp.site.rack_physical_properties.fiber_optic_cable_type #=> String, one of "SINGLE_MODE", "MULTI_MODE"
|
1514
|
+
# 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"
|
1515
|
+
# 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"
|
1516
|
+
#
|
1517
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateSiteRackPhysicalProperties AWS API Documentation
|
1518
|
+
#
|
1519
|
+
# @overload update_site_rack_physical_properties(params = {})
|
1520
|
+
# @param [Hash] params ({})
|
1521
|
+
def update_site_rack_physical_properties(params = {}, options = {})
|
1522
|
+
req = build_request(:update_site_rack_physical_properties, params)
|
1523
|
+
req.send_request(options)
|
1524
|
+
end
|
1525
|
+
|
788
1526
|
# @!endgroup
|
789
1527
|
|
790
1528
|
# @param params ({})
|
@@ -798,7 +1536,7 @@ module Aws::Outposts
|
|
798
1536
|
params: params,
|
799
1537
|
config: config)
|
800
1538
|
context[:gem_name] = 'aws-sdk-outposts'
|
801
|
-
context[:gem_version] = '1.
|
1539
|
+
context[:gem_version] = '1.24.0'
|
802
1540
|
Seahorse::Client::Request.new(handlers, context)
|
803
1541
|
end
|
804
1542
|
|