aws-sdk-outposts 1.103.0 → 1.104.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -656,6 +656,166 @@ module Aws::Outposts
656
656
  req.send_request(options)
657
657
  end
658
658
 
659
+ # Creates a quote for an Outpost. A quote provides pricing and
660
+ # configuration options based on the requested capacity. You can
661
+ # optionally associate the quote with an existing Outpost or create a
662
+ # standalone quote by specifying only the country code and requested
663
+ # capacities.
664
+ #
665
+ # @option params [String] :outpost_identifier
666
+ # The ID or ARN of the Outpost to associate with the quote. If not
667
+ # specified, the quote is created without an Outpost association.
668
+ #
669
+ # @option params [required, String] :country_code
670
+ # The country code for the Outpost site location.
671
+ #
672
+ # @option params [required, Array<Types::QuoteCapacity>] :requested_capacities
673
+ # The capacity requirements for the quote. Each entry specifies a
674
+ # capacity type (such as Amazon EC2), the unit, and the quantity. For
675
+ # Amazon EC2, the quantity is the number of additional instances to add
676
+ # to the Outpost. For Amazon EBS and Amazon S3, the quantity is the
677
+ # total desired end-state capacity of the Outpost.
678
+ #
679
+ # @option params [Array<Types::QuoteConstraint>] :requested_constraints
680
+ # The physical constraints for the quote, such as maximum number of
681
+ # racks, maximum power draw per rack, or maximum weight per rack.
682
+ #
683
+ # @option params [Array<String>] :requested_payment_options
684
+ # The payment options to include in the quote pricing. If not specified,
685
+ # all available payment options are returned.
686
+ #
687
+ # @option params [Array<String>] :requested_payment_terms
688
+ # The payment terms to include in the quote pricing. If not specified,
689
+ # all available payment terms are returned.
690
+ #
691
+ # @option params [String] :description
692
+ # A description for the quote.
693
+ #
694
+ # @return [Types::CreateQuoteOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
695
+ #
696
+ # * {Types::CreateQuoteOutput#quote #quote} => Types::Quote
697
+ #
698
+ # @example Request syntax with placeholder values
699
+ #
700
+ # resp = client.create_quote({
701
+ # outpost_identifier: "OutpostIdentifier",
702
+ # country_code: "CountryCode", # required
703
+ # requested_capacities: [ # required
704
+ # {
705
+ # quote_capacity_type: "EC2", # accepts EC2, EBS, S3
706
+ # unit: "String",
707
+ # quantity: 1.0,
708
+ # },
709
+ # ],
710
+ # requested_constraints: [
711
+ # {
712
+ # quote_constraint_type: "RACK_MAXIMUM", # accepts RACK_MAXIMUM, RACK_MAX_POWER_KVA, RACK_MAX_WEIGHT_LBS
713
+ # value: "ConstraintValue",
714
+ # },
715
+ # ],
716
+ # requested_payment_options: ["ALL_UPFRONT"], # accepts ALL_UPFRONT, NO_UPFRONT, PARTIAL_UPFRONT
717
+ # requested_payment_terms: ["THREE_YEARS"], # accepts THREE_YEARS, ONE_YEAR, FIVE_YEARS
718
+ # description: "QuoteDescription",
719
+ # })
720
+ #
721
+ # @example Response structure
722
+ #
723
+ # resp.quote.quote_id #=> String
724
+ # resp.quote.account_id #=> String
725
+ # resp.quote.quote_status #=> String, one of "CREATED", "ORDER_SUBMITTED", "EXPIRED"
726
+ # resp.quote.status_message #=> String
727
+ # resp.quote.outpost_arn #=> String
728
+ # resp.quote.country_code #=> String
729
+ # resp.quote.requested_capacities #=> Array
730
+ # resp.quote.requested_capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
731
+ # resp.quote.requested_capacities[0].unit #=> String
732
+ # resp.quote.requested_capacities[0].quantity #=> Float
733
+ # resp.quote.requested_constraints #=> Array
734
+ # resp.quote.requested_constraints[0].quote_constraint_type #=> String, one of "RACK_MAXIMUM", "RACK_MAX_POWER_KVA", "RACK_MAX_WEIGHT_LBS"
735
+ # resp.quote.requested_constraints[0].value #=> String
736
+ # resp.quote.requested_payment_options #=> Array
737
+ # resp.quote.requested_payment_options[0] #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
738
+ # resp.quote.requested_payment_terms #=> Array
739
+ # resp.quote.requested_payment_terms[0] #=> String, one of "THREE_YEARS", "ONE_YEAR", "FIVE_YEARS"
740
+ # resp.quote.quote_options #=> Array
741
+ # resp.quote.quote_options[0].quote_option_identifier #=> String
742
+ # resp.quote.quote_options[0].capacities #=> Array
743
+ # resp.quote.quote_options[0].capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
744
+ # resp.quote.quote_options[0].capacities[0].unit #=> String
745
+ # resp.quote.quote_options[0].capacities[0].quantity #=> Float
746
+ # resp.quote.quote_options[0].capacity_summary.existing_capacities #=> Array
747
+ # resp.quote.quote_options[0].capacity_summary.existing_capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
748
+ # resp.quote.quote_options[0].capacity_summary.existing_capacities[0].unit #=> String
749
+ # resp.quote.quote_options[0].capacity_summary.existing_capacities[0].quantity #=> Float
750
+ # resp.quote.quote_options[0].capacity_summary.final_capacities #=> Array
751
+ # resp.quote.quote_options[0].capacity_summary.final_capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
752
+ # resp.quote.quote_options[0].capacity_summary.final_capacities[0].unit #=> String
753
+ # resp.quote.quote_options[0].capacity_summary.final_capacities[0].quantity #=> Float
754
+ # resp.quote.quote_options[0].capacity_summary.capacity_change #=> Array
755
+ # resp.quote.quote_options[0].capacity_summary.capacity_change[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
756
+ # resp.quote.quote_options[0].capacity_summary.capacity_change[0].unit #=> String
757
+ # resp.quote.quote_options[0].capacity_summary.capacity_change[0].quantity #=> Float
758
+ # resp.quote.quote_options[0].specifications #=> Array
759
+ # resp.quote.quote_options[0].specifications[0].quote_specification_type #=> String, one of "UPDATED_RACK", "NEW_RACK", "EXISTING_RACK", "SERVER"
760
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_id #=> String
761
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_use #=> String, one of "NETWORKING", "COMPUTE"
762
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_power_draw_kva #=> Float
763
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_weight_lbs #=> Float
764
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_height_inches #=> Float
765
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_width_inches #=> Float
766
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_depth_inches #=> Float
767
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_unit_height #=> String, one of "HEIGHT_42U", "HEIGHT_2U", "HEIGHT_1U"
768
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities #=> Array
769
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities[0].family #=> String
770
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities[0].max_size #=> String
771
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities[0].quantity #=> String
772
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_id #=> String
773
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_use #=> String, one of "NETWORKING", "COMPUTE"
774
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_power_draw_kva #=> Float
775
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_weight_lbs #=> Float
776
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_height_inches #=> Float
777
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_width_inches #=> Float
778
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_depth_inches #=> Float
779
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_unit_height #=> String, one of "HEIGHT_42U", "HEIGHT_2U", "HEIGHT_1U"
780
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities #=> Array
781
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities[0].family #=> String
782
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities[0].max_size #=> String
783
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities[0].quantity #=> String
784
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.server_power_draw_kva #=> Float
785
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.server_weight_lbs #=> Float
786
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.server_height_inches #=> Float
787
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.server_width_inches #=> Float
788
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.server_depth_inches #=> Float
789
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.rack_unit_height #=> String, one of "HEIGHT_42U", "HEIGHT_2U", "HEIGHT_1U"
790
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.ec2_capacities #=> Array
791
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.ec2_capacities[0].family #=> String
792
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.ec2_capacities[0].max_size #=> String
793
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.ec2_capacities[0].quantity #=> String
794
+ # resp.quote.quote_options[0].pricing_options #=> Array
795
+ # resp.quote.quote_options[0].pricing_options[0].pricing_type #=> String, one of "SUBSCRIPTION"
796
+ # resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.payment_option #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
797
+ # resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.payment_term #=> String, one of "THREE_YEARS", "ONE_YEAR", "FIVE_YEARS"
798
+ # resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.upfront_price #=> Float
799
+ # resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.monthly_recurring_price #=> Float
800
+ # resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.currency #=> String, one of "USD"
801
+ # resp.quote.ordering_requirements #=> Array
802
+ # resp.quote.ordering_requirements[0].status_message #=> String
803
+ # resp.quote.ordering_requirements[0].ordering_requirement_type #=> String, one of "OUTPOST_ACTIVE_CHECK_ERROR", "MAXIMUM_ALLOWED_ORDERS_CHECK_ERROR", "VALID_ZIP_CODE_CHECK_ERROR", "RACK_PHYSICAL_PROPERTIES_CHECK_ERROR", "OPERATING_ADDRESS_EXISTENCE_CHECK_ERROR", "SHIPPING_ADDRESS_EXISTENCE_CHECK_ERROR", "COUNTRY_CODE_MISMATCH_CHECK_ERROR", "OUTPOST_GENERATION_MISMATCH_ERROR", "UNSUPPORTED", "OUTPOST_ID_MISSING_ON_QUOTE_ERROR", "ENTERPRISE_SUPPORT_ERROR", "SHIPPING_ADDRESS_MISSING_CONTACT_NAME_ERROR", "SHIPPING_ADDRESS_MISSING_CONTACT_NUMBER_ERROR", "SHIPPING_ADDRESS_MISSING_CONTACT_INFO_ERROR", "OUTPOST_STATE_CHANGED_ERROR", "OUTPOST_NOT_FOUND_ERROR", "OUTPOST_RENEWAL_REQUIRED_ERROR"
804
+ # resp.quote.ordering_requirements[0].status #=> String, one of "PASS", "FAIL", "EXEMPT"
805
+ # resp.quote.submitted_order_id #=> String
806
+ # resp.quote.created_date #=> Time
807
+ # resp.quote.expiration_date #=> Time
808
+ # resp.quote.description #=> String
809
+ #
810
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateQuote AWS API Documentation
811
+ #
812
+ # @overload create_quote(params = {})
813
+ # @param [Hash] params ({})
814
+ def create_quote(params = {}, options = {})
815
+ req = build_request(:create_quote, params)
816
+ req.send_request(options)
817
+ end
818
+
659
819
  # Creates a renewal contract for the specified Outpost.
660
820
  #
661
821
  # @option params [required, String] :payment_option
@@ -681,6 +841,7 @@ module Aws::Outposts
681
841
  # * {Types::CreateRenewalOutput#outpost_id #outpost_id} => String
682
842
  # * {Types::CreateRenewalOutput#upfront_price #upfront_price} => Float
683
843
  # * {Types::CreateRenewalOutput#monthly_recurring_price #monthly_recurring_price} => Float
844
+ # * {Types::CreateRenewalOutput#currency #currency} => String
684
845
  #
685
846
  # @example Request syntax with placeholder values
686
847
  #
@@ -698,6 +859,7 @@ module Aws::Outposts
698
859
  # resp.outpost_id #=> String
699
860
  # resp.upfront_price #=> Float
700
861
  # resp.monthly_recurring_price #=> Float
862
+ # resp.currency #=> String, one of "USD"
701
863
  #
702
864
  # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateRenewal AWS API Documentation
703
865
  #
@@ -849,6 +1011,28 @@ module Aws::Outposts
849
1011
  req.send_request(options)
850
1012
  end
851
1013
 
1014
+ # Deletes the specified quote.
1015
+ #
1016
+ # @option params [required, String] :quote_identifier
1017
+ # The ID or ARN of the quote.
1018
+ #
1019
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1020
+ #
1021
+ # @example Request syntax with placeholder values
1022
+ #
1023
+ # resp = client.delete_quote({
1024
+ # quote_identifier: "QuoteIdentifier", # required
1025
+ # })
1026
+ #
1027
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/DeleteQuote AWS API Documentation
1028
+ #
1029
+ # @overload delete_quote(params = {})
1030
+ # @param [Hash] params ({})
1031
+ def delete_quote(params = {}, options = {})
1032
+ req = build_request(:delete_quote, params)
1033
+ req.send_request(options)
1034
+ end
1035
+
852
1036
  # Deletes the specified site.
853
1037
  #
854
1038
  # @option params [required, String] :site_id
@@ -1155,6 +1339,7 @@ module Aws::Outposts
1155
1339
  # resp.subscriptions[0].order_ids[0] #=> String
1156
1340
  # resp.subscriptions[0].begin_date #=> Time
1157
1341
  # resp.subscriptions[0].end_date #=> Time
1342
+ # resp.subscriptions[0].currency #=> String, one of "USD"
1158
1343
  # resp.subscriptions[0].monthly_recurring_price #=> Float
1159
1344
  # resp.subscriptions[0].upfront_price #=> Float
1160
1345
  # resp.contract_end_date #=> String
@@ -1270,6 +1455,119 @@ module Aws::Outposts
1270
1455
  req.send_request(options)
1271
1456
  end
1272
1457
 
1458
+ # Gets information about the specified quote.
1459
+ #
1460
+ # @option params [required, String] :quote_identifier
1461
+ # The ID or ARN of the quote.
1462
+ #
1463
+ # @return [Types::GetQuoteOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1464
+ #
1465
+ # * {Types::GetQuoteOutput#quote #quote} => Types::Quote
1466
+ #
1467
+ # @example Request syntax with placeholder values
1468
+ #
1469
+ # resp = client.get_quote({
1470
+ # quote_identifier: "QuoteIdentifier", # required
1471
+ # })
1472
+ #
1473
+ # @example Response structure
1474
+ #
1475
+ # resp.quote.quote_id #=> String
1476
+ # resp.quote.account_id #=> String
1477
+ # resp.quote.quote_status #=> String, one of "CREATED", "ORDER_SUBMITTED", "EXPIRED"
1478
+ # resp.quote.status_message #=> String
1479
+ # resp.quote.outpost_arn #=> String
1480
+ # resp.quote.country_code #=> String
1481
+ # resp.quote.requested_capacities #=> Array
1482
+ # resp.quote.requested_capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
1483
+ # resp.quote.requested_capacities[0].unit #=> String
1484
+ # resp.quote.requested_capacities[0].quantity #=> Float
1485
+ # resp.quote.requested_constraints #=> Array
1486
+ # resp.quote.requested_constraints[0].quote_constraint_type #=> String, one of "RACK_MAXIMUM", "RACK_MAX_POWER_KVA", "RACK_MAX_WEIGHT_LBS"
1487
+ # resp.quote.requested_constraints[0].value #=> String
1488
+ # resp.quote.requested_payment_options #=> Array
1489
+ # resp.quote.requested_payment_options[0] #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
1490
+ # resp.quote.requested_payment_terms #=> Array
1491
+ # resp.quote.requested_payment_terms[0] #=> String, one of "THREE_YEARS", "ONE_YEAR", "FIVE_YEARS"
1492
+ # resp.quote.quote_options #=> Array
1493
+ # resp.quote.quote_options[0].quote_option_identifier #=> String
1494
+ # resp.quote.quote_options[0].capacities #=> Array
1495
+ # resp.quote.quote_options[0].capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
1496
+ # resp.quote.quote_options[0].capacities[0].unit #=> String
1497
+ # resp.quote.quote_options[0].capacities[0].quantity #=> Float
1498
+ # resp.quote.quote_options[0].capacity_summary.existing_capacities #=> Array
1499
+ # resp.quote.quote_options[0].capacity_summary.existing_capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
1500
+ # resp.quote.quote_options[0].capacity_summary.existing_capacities[0].unit #=> String
1501
+ # resp.quote.quote_options[0].capacity_summary.existing_capacities[0].quantity #=> Float
1502
+ # resp.quote.quote_options[0].capacity_summary.final_capacities #=> Array
1503
+ # resp.quote.quote_options[0].capacity_summary.final_capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
1504
+ # resp.quote.quote_options[0].capacity_summary.final_capacities[0].unit #=> String
1505
+ # resp.quote.quote_options[0].capacity_summary.final_capacities[0].quantity #=> Float
1506
+ # resp.quote.quote_options[0].capacity_summary.capacity_change #=> Array
1507
+ # resp.quote.quote_options[0].capacity_summary.capacity_change[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
1508
+ # resp.quote.quote_options[0].capacity_summary.capacity_change[0].unit #=> String
1509
+ # resp.quote.quote_options[0].capacity_summary.capacity_change[0].quantity #=> Float
1510
+ # resp.quote.quote_options[0].specifications #=> Array
1511
+ # resp.quote.quote_options[0].specifications[0].quote_specification_type #=> String, one of "UPDATED_RACK", "NEW_RACK", "EXISTING_RACK", "SERVER"
1512
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_id #=> String
1513
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_use #=> String, one of "NETWORKING", "COMPUTE"
1514
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_power_draw_kva #=> Float
1515
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_weight_lbs #=> Float
1516
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_height_inches #=> Float
1517
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_width_inches #=> Float
1518
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_depth_inches #=> Float
1519
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_unit_height #=> String, one of "HEIGHT_42U", "HEIGHT_2U", "HEIGHT_1U"
1520
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities #=> Array
1521
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities[0].family #=> String
1522
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities[0].max_size #=> String
1523
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities[0].quantity #=> String
1524
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_id #=> String
1525
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_use #=> String, one of "NETWORKING", "COMPUTE"
1526
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_power_draw_kva #=> Float
1527
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_weight_lbs #=> Float
1528
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_height_inches #=> Float
1529
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_width_inches #=> Float
1530
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_depth_inches #=> Float
1531
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_unit_height #=> String, one of "HEIGHT_42U", "HEIGHT_2U", "HEIGHT_1U"
1532
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities #=> Array
1533
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities[0].family #=> String
1534
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities[0].max_size #=> String
1535
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities[0].quantity #=> String
1536
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.server_power_draw_kva #=> Float
1537
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.server_weight_lbs #=> Float
1538
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.server_height_inches #=> Float
1539
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.server_width_inches #=> Float
1540
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.server_depth_inches #=> Float
1541
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.rack_unit_height #=> String, one of "HEIGHT_42U", "HEIGHT_2U", "HEIGHT_1U"
1542
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.ec2_capacities #=> Array
1543
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.ec2_capacities[0].family #=> String
1544
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.ec2_capacities[0].max_size #=> String
1545
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.ec2_capacities[0].quantity #=> String
1546
+ # resp.quote.quote_options[0].pricing_options #=> Array
1547
+ # resp.quote.quote_options[0].pricing_options[0].pricing_type #=> String, one of "SUBSCRIPTION"
1548
+ # resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.payment_option #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
1549
+ # resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.payment_term #=> String, one of "THREE_YEARS", "ONE_YEAR", "FIVE_YEARS"
1550
+ # resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.upfront_price #=> Float
1551
+ # resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.monthly_recurring_price #=> Float
1552
+ # resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.currency #=> String, one of "USD"
1553
+ # resp.quote.ordering_requirements #=> Array
1554
+ # resp.quote.ordering_requirements[0].status_message #=> String
1555
+ # resp.quote.ordering_requirements[0].ordering_requirement_type #=> String, one of "OUTPOST_ACTIVE_CHECK_ERROR", "MAXIMUM_ALLOWED_ORDERS_CHECK_ERROR", "VALID_ZIP_CODE_CHECK_ERROR", "RACK_PHYSICAL_PROPERTIES_CHECK_ERROR", "OPERATING_ADDRESS_EXISTENCE_CHECK_ERROR", "SHIPPING_ADDRESS_EXISTENCE_CHECK_ERROR", "COUNTRY_CODE_MISMATCH_CHECK_ERROR", "OUTPOST_GENERATION_MISMATCH_ERROR", "UNSUPPORTED", "OUTPOST_ID_MISSING_ON_QUOTE_ERROR", "ENTERPRISE_SUPPORT_ERROR", "SHIPPING_ADDRESS_MISSING_CONTACT_NAME_ERROR", "SHIPPING_ADDRESS_MISSING_CONTACT_NUMBER_ERROR", "SHIPPING_ADDRESS_MISSING_CONTACT_INFO_ERROR", "OUTPOST_STATE_CHANGED_ERROR", "OUTPOST_NOT_FOUND_ERROR", "OUTPOST_RENEWAL_REQUIRED_ERROR"
1556
+ # resp.quote.ordering_requirements[0].status #=> String, one of "PASS", "FAIL", "EXEMPT"
1557
+ # resp.quote.submitted_order_id #=> String
1558
+ # resp.quote.created_date #=> Time
1559
+ # resp.quote.expiration_date #=> Time
1560
+ # resp.quote.description #=> String
1561
+ #
1562
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetQuote AWS API Documentation
1563
+ #
1564
+ # @overload get_quote(params = {})
1565
+ # @param [Hash] params ({})
1566
+ def get_quote(params = {}, options = {})
1567
+ req = build_request(:get_quote, params)
1568
+ req.send_request(options)
1569
+ end
1570
+
1273
1571
  # Gets all available renewal pricing options for the specified Outpost.
1274
1572
  #
1275
1573
  # @option params [required, String] :outpost_identifier
@@ -1295,6 +1593,7 @@ module Aws::Outposts
1295
1593
  # resp.pricing_options[0].subscription_pricing_details.payment_term #=> String, one of "THREE_YEARS", "ONE_YEAR", "FIVE_YEARS"
1296
1594
  # resp.pricing_options[0].subscription_pricing_details.upfront_price #=> Float
1297
1595
  # resp.pricing_options[0].subscription_pricing_details.monthly_recurring_price #=> Float
1596
+ # resp.pricing_options[0].subscription_pricing_details.currency #=> String, one of "USD"
1298
1597
  #
1299
1598
  # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetRenewalPricing AWS API Documentation
1300
1599
  #
@@ -1718,6 +2017,56 @@ module Aws::Outposts
1718
2017
  req.send_request(options)
1719
2018
  end
1720
2019
 
2020
+ # Lists the instance types that can be ordered for an Outpost. You can
2021
+ # filter the results by Outpost generation.
2022
+ #
2023
+ # @option params [String] :outpost_generation_filter
2024
+ # Filters the results by Outpost generation. Specify `GENERATION_1` for
2025
+ # first-generation rack deployments or `GENERATION_2` for
2026
+ # second-generation rack deployments.
2027
+ #
2028
+ # @option params [Integer] :max_results
2029
+ # The maximum page size.
2030
+ #
2031
+ # @option params [String] :next_token
2032
+ # The pagination token.
2033
+ #
2034
+ # @return [Types::ListOrderableInstanceTypesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2035
+ #
2036
+ # * {Types::ListOrderableInstanceTypesOutput#instance_types #instance_types} => Array&lt;Types::DetailedInstanceTypeItem&gt;
2037
+ # * {Types::ListOrderableInstanceTypesOutput#next_token #next_token} => String
2038
+ #
2039
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2040
+ #
2041
+ # @example Request syntax with placeholder values
2042
+ #
2043
+ # resp = client.list_orderable_instance_types({
2044
+ # outpost_generation_filter: "GENERATION_2", # accepts GENERATION_2, GENERATION_1
2045
+ # max_results: 1,
2046
+ # next_token: "Token",
2047
+ # })
2048
+ #
2049
+ # @example Response structure
2050
+ #
2051
+ # resp.instance_types #=> Array
2052
+ # resp.instance_types[0].instance_type #=> String
2053
+ # resp.instance_types[0].vcp_us #=> Integer
2054
+ # resp.instance_types[0].memory_in_mib #=> Integer
2055
+ # resp.instance_types[0].network_performance #=> String
2056
+ # resp.instance_types[0].form_factor_configs #=> Array
2057
+ # resp.instance_types[0].form_factor_configs[0].form_factor #=> String, one of "RACK", "SERVER"
2058
+ # resp.instance_types[0].form_factor_configs[0].outpost_generation #=> String, one of "GENERATION_2", "GENERATION_1"
2059
+ # resp.next_token #=> String
2060
+ #
2061
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListOrderableInstanceTypes AWS API Documentation
2062
+ #
2063
+ # @overload list_orderable_instance_types(params = {})
2064
+ # @param [Hash] params ({})
2065
+ def list_orderable_instance_types(params = {}, options = {})
2066
+ req = build_request(:list_orderable_instance_types, params)
2067
+ req.send_request(options)
2068
+ end
2069
+
1721
2070
  # Lists the Outpost orders for your Amazon Web Services account.
1722
2071
  #
1723
2072
  # @option params [String] :outpost_identifier_filter
@@ -1833,6 +2182,124 @@ module Aws::Outposts
1833
2182
  req.send_request(options)
1834
2183
  end
1835
2184
 
2185
+ # Lists the quotes for your Amazon Web Services account.
2186
+ #
2187
+ # @option params [String] :next_token
2188
+ # The pagination token.
2189
+ #
2190
+ # @option params [Integer] :max_results
2191
+ # The maximum page size.
2192
+ #
2193
+ # @return [Types::ListQuotesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2194
+ #
2195
+ # * {Types::ListQuotesOutput#quotes #quotes} => Array&lt;Types::QuoteSummary&gt;
2196
+ # * {Types::ListQuotesOutput#next_token #next_token} => String
2197
+ #
2198
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2199
+ #
2200
+ # @example Request syntax with placeholder values
2201
+ #
2202
+ # resp = client.list_quotes({
2203
+ # next_token: "Token",
2204
+ # max_results: 1,
2205
+ # })
2206
+ #
2207
+ # @example Response structure
2208
+ #
2209
+ # resp.quotes #=> Array
2210
+ # resp.quotes[0].quote_id #=> String
2211
+ # resp.quotes[0].account_id #=> String
2212
+ # resp.quotes[0].quote_status #=> String, one of "CREATED", "ORDER_SUBMITTED", "EXPIRED"
2213
+ # resp.quotes[0].status_message #=> String
2214
+ # resp.quotes[0].outpost_arn #=> String
2215
+ # resp.quotes[0].country_code #=> String
2216
+ # resp.quotes[0].requested_capacities #=> Array
2217
+ # resp.quotes[0].requested_capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
2218
+ # resp.quotes[0].requested_capacities[0].unit #=> String
2219
+ # resp.quotes[0].requested_capacities[0].quantity #=> Float
2220
+ # resp.quotes[0].requested_constraints #=> Array
2221
+ # resp.quotes[0].requested_constraints[0].quote_constraint_type #=> String, one of "RACK_MAXIMUM", "RACK_MAX_POWER_KVA", "RACK_MAX_WEIGHT_LBS"
2222
+ # resp.quotes[0].requested_constraints[0].value #=> String
2223
+ # resp.quotes[0].requested_payment_options #=> Array
2224
+ # resp.quotes[0].requested_payment_options[0] #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
2225
+ # resp.quotes[0].requested_payment_terms #=> Array
2226
+ # resp.quotes[0].requested_payment_terms[0] #=> String, one of "THREE_YEARS", "ONE_YEAR", "FIVE_YEARS"
2227
+ # resp.quotes[0].quote_options #=> Array
2228
+ # resp.quotes[0].quote_options[0].quote_option_identifier #=> String
2229
+ # resp.quotes[0].quote_options[0].capacities #=> Array
2230
+ # resp.quotes[0].quote_options[0].capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
2231
+ # resp.quotes[0].quote_options[0].capacities[0].unit #=> String
2232
+ # resp.quotes[0].quote_options[0].capacities[0].quantity #=> Float
2233
+ # resp.quotes[0].quote_options[0].capacity_summary.existing_capacities #=> Array
2234
+ # resp.quotes[0].quote_options[0].capacity_summary.existing_capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
2235
+ # resp.quotes[0].quote_options[0].capacity_summary.existing_capacities[0].unit #=> String
2236
+ # resp.quotes[0].quote_options[0].capacity_summary.existing_capacities[0].quantity #=> Float
2237
+ # resp.quotes[0].quote_options[0].capacity_summary.final_capacities #=> Array
2238
+ # resp.quotes[0].quote_options[0].capacity_summary.final_capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
2239
+ # resp.quotes[0].quote_options[0].capacity_summary.final_capacities[0].unit #=> String
2240
+ # resp.quotes[0].quote_options[0].capacity_summary.final_capacities[0].quantity #=> Float
2241
+ # resp.quotes[0].quote_options[0].capacity_summary.capacity_change #=> Array
2242
+ # resp.quotes[0].quote_options[0].capacity_summary.capacity_change[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
2243
+ # resp.quotes[0].quote_options[0].capacity_summary.capacity_change[0].unit #=> String
2244
+ # resp.quotes[0].quote_options[0].capacity_summary.capacity_change[0].quantity #=> Float
2245
+ # resp.quotes[0].quote_options[0].specifications #=> Array
2246
+ # resp.quotes[0].quote_options[0].specifications[0].quote_specification_type #=> String, one of "UPDATED_RACK", "NEW_RACK", "EXISTING_RACK", "SERVER"
2247
+ # resp.quotes[0].quote_options[0].specifications[0].existing_rack_specification_details.rack_id #=> String
2248
+ # resp.quotes[0].quote_options[0].specifications[0].existing_rack_specification_details.rack_use #=> String, one of "NETWORKING", "COMPUTE"
2249
+ # resp.quotes[0].quote_options[0].specifications[0].existing_rack_specification_details.rack_power_draw_kva #=> Float
2250
+ # resp.quotes[0].quote_options[0].specifications[0].existing_rack_specification_details.rack_weight_lbs #=> Float
2251
+ # resp.quotes[0].quote_options[0].specifications[0].existing_rack_specification_details.rack_height_inches #=> Float
2252
+ # resp.quotes[0].quote_options[0].specifications[0].existing_rack_specification_details.rack_width_inches #=> Float
2253
+ # resp.quotes[0].quote_options[0].specifications[0].existing_rack_specification_details.rack_depth_inches #=> Float
2254
+ # resp.quotes[0].quote_options[0].specifications[0].existing_rack_specification_details.rack_unit_height #=> String, one of "HEIGHT_42U", "HEIGHT_2U", "HEIGHT_1U"
2255
+ # resp.quotes[0].quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities #=> Array
2256
+ # resp.quotes[0].quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities[0].family #=> String
2257
+ # resp.quotes[0].quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities[0].max_size #=> String
2258
+ # resp.quotes[0].quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities[0].quantity #=> String
2259
+ # resp.quotes[0].quote_options[0].specifications[0].final_rack_specification_details.rack_id #=> String
2260
+ # resp.quotes[0].quote_options[0].specifications[0].final_rack_specification_details.rack_use #=> String, one of "NETWORKING", "COMPUTE"
2261
+ # resp.quotes[0].quote_options[0].specifications[0].final_rack_specification_details.rack_power_draw_kva #=> Float
2262
+ # resp.quotes[0].quote_options[0].specifications[0].final_rack_specification_details.rack_weight_lbs #=> Float
2263
+ # resp.quotes[0].quote_options[0].specifications[0].final_rack_specification_details.rack_height_inches #=> Float
2264
+ # resp.quotes[0].quote_options[0].specifications[0].final_rack_specification_details.rack_width_inches #=> Float
2265
+ # resp.quotes[0].quote_options[0].specifications[0].final_rack_specification_details.rack_depth_inches #=> Float
2266
+ # resp.quotes[0].quote_options[0].specifications[0].final_rack_specification_details.rack_unit_height #=> String, one of "HEIGHT_42U", "HEIGHT_2U", "HEIGHT_1U"
2267
+ # resp.quotes[0].quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities #=> Array
2268
+ # resp.quotes[0].quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities[0].family #=> String
2269
+ # resp.quotes[0].quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities[0].max_size #=> String
2270
+ # resp.quotes[0].quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities[0].quantity #=> String
2271
+ # resp.quotes[0].quote_options[0].specifications[0].server_specification_details.server_power_draw_kva #=> Float
2272
+ # resp.quotes[0].quote_options[0].specifications[0].server_specification_details.server_weight_lbs #=> Float
2273
+ # resp.quotes[0].quote_options[0].specifications[0].server_specification_details.server_height_inches #=> Float
2274
+ # resp.quotes[0].quote_options[0].specifications[0].server_specification_details.server_width_inches #=> Float
2275
+ # resp.quotes[0].quote_options[0].specifications[0].server_specification_details.server_depth_inches #=> Float
2276
+ # resp.quotes[0].quote_options[0].specifications[0].server_specification_details.rack_unit_height #=> String, one of "HEIGHT_42U", "HEIGHT_2U", "HEIGHT_1U"
2277
+ # resp.quotes[0].quote_options[0].specifications[0].server_specification_details.ec2_capacities #=> Array
2278
+ # resp.quotes[0].quote_options[0].specifications[0].server_specification_details.ec2_capacities[0].family #=> String
2279
+ # resp.quotes[0].quote_options[0].specifications[0].server_specification_details.ec2_capacities[0].max_size #=> String
2280
+ # resp.quotes[0].quote_options[0].specifications[0].server_specification_details.ec2_capacities[0].quantity #=> String
2281
+ # resp.quotes[0].quote_options[0].pricing_options #=> Array
2282
+ # resp.quotes[0].quote_options[0].pricing_options[0].pricing_type #=> String, one of "SUBSCRIPTION"
2283
+ # resp.quotes[0].quote_options[0].pricing_options[0].subscription_pricing_details.payment_option #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
2284
+ # resp.quotes[0].quote_options[0].pricing_options[0].subscription_pricing_details.payment_term #=> String, one of "THREE_YEARS", "ONE_YEAR", "FIVE_YEARS"
2285
+ # resp.quotes[0].quote_options[0].pricing_options[0].subscription_pricing_details.upfront_price #=> Float
2286
+ # resp.quotes[0].quote_options[0].pricing_options[0].subscription_pricing_details.monthly_recurring_price #=> Float
2287
+ # resp.quotes[0].quote_options[0].pricing_options[0].subscription_pricing_details.currency #=> String, one of "USD"
2288
+ # resp.quotes[0].submitted_order_id #=> String
2289
+ # resp.quotes[0].created_date #=> Time
2290
+ # resp.quotes[0].expiration_date #=> Time
2291
+ # resp.quotes[0].description #=> String
2292
+ # resp.next_token #=> String
2293
+ #
2294
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListQuotes AWS API Documentation
2295
+ #
2296
+ # @overload list_quotes(params = {})
2297
+ # @param [Hash] params ({})
2298
+ def list_quotes(params = {}, options = {})
2299
+ req = build_request(:list_quotes, params)
2300
+ req.send_request(options)
2301
+ end
2302
+
1836
2303
  # Lists the Outpost sites for your Amazon Web Services account. Use
1837
2304
  # filters to return specific results.
1838
2305
  #
@@ -2244,6 +2711,160 @@ module Aws::Outposts
2244
2711
  req.send_request(options)
2245
2712
  end
2246
2713
 
2714
+ # Updates the specified quote. You can modify the requested capacities,
2715
+ # constraints, payment options, payment terms, or Outpost association.
2716
+ #
2717
+ # @option params [required, String] :quote_identifier
2718
+ # The ID or ARN of the quote.
2719
+ #
2720
+ # @option params [String] :outpost_identifier
2721
+ # The ID or ARN of the Outpost to associate with the quote. Specify an
2722
+ # empty string to remove the Outpost association.
2723
+ #
2724
+ # @option params [String] :country_code
2725
+ # The country code for the Outpost site location.
2726
+ #
2727
+ # @option params [Array<Types::QuoteCapacity>] :requested_capacities
2728
+ # The updated capacity requirements for the quote.
2729
+ #
2730
+ # @option params [Array<Types::QuoteConstraint>] :requested_constraints
2731
+ # The updated physical constraints for the quote.
2732
+ #
2733
+ # @option params [Array<String>] :requested_payment_options
2734
+ # The updated payment options to include in the quote pricing.
2735
+ #
2736
+ # @option params [Array<String>] :requested_payment_terms
2737
+ # The updated payment terms to include in the quote pricing.
2738
+ #
2739
+ # @option params [String] :description
2740
+ # A description for the quote.
2741
+ #
2742
+ # @return [Types::UpdateQuoteOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2743
+ #
2744
+ # * {Types::UpdateQuoteOutput#quote #quote} => Types::Quote
2745
+ #
2746
+ # @example Request syntax with placeholder values
2747
+ #
2748
+ # resp = client.update_quote({
2749
+ # quote_identifier: "QuoteIdentifier", # required
2750
+ # outpost_identifier: "OutpostIdentifierOrEmpty",
2751
+ # country_code: "CountryCode",
2752
+ # requested_capacities: [
2753
+ # {
2754
+ # quote_capacity_type: "EC2", # accepts EC2, EBS, S3
2755
+ # unit: "String",
2756
+ # quantity: 1.0,
2757
+ # },
2758
+ # ],
2759
+ # requested_constraints: [
2760
+ # {
2761
+ # quote_constraint_type: "RACK_MAXIMUM", # accepts RACK_MAXIMUM, RACK_MAX_POWER_KVA, RACK_MAX_WEIGHT_LBS
2762
+ # value: "ConstraintValue",
2763
+ # },
2764
+ # ],
2765
+ # requested_payment_options: ["ALL_UPFRONT"], # accepts ALL_UPFRONT, NO_UPFRONT, PARTIAL_UPFRONT
2766
+ # requested_payment_terms: ["THREE_YEARS"], # accepts THREE_YEARS, ONE_YEAR, FIVE_YEARS
2767
+ # description: "QuoteDescription",
2768
+ # })
2769
+ #
2770
+ # @example Response structure
2771
+ #
2772
+ # resp.quote.quote_id #=> String
2773
+ # resp.quote.account_id #=> String
2774
+ # resp.quote.quote_status #=> String, one of "CREATED", "ORDER_SUBMITTED", "EXPIRED"
2775
+ # resp.quote.status_message #=> String
2776
+ # resp.quote.outpost_arn #=> String
2777
+ # resp.quote.country_code #=> String
2778
+ # resp.quote.requested_capacities #=> Array
2779
+ # resp.quote.requested_capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
2780
+ # resp.quote.requested_capacities[0].unit #=> String
2781
+ # resp.quote.requested_capacities[0].quantity #=> Float
2782
+ # resp.quote.requested_constraints #=> Array
2783
+ # resp.quote.requested_constraints[0].quote_constraint_type #=> String, one of "RACK_MAXIMUM", "RACK_MAX_POWER_KVA", "RACK_MAX_WEIGHT_LBS"
2784
+ # resp.quote.requested_constraints[0].value #=> String
2785
+ # resp.quote.requested_payment_options #=> Array
2786
+ # resp.quote.requested_payment_options[0] #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
2787
+ # resp.quote.requested_payment_terms #=> Array
2788
+ # resp.quote.requested_payment_terms[0] #=> String, one of "THREE_YEARS", "ONE_YEAR", "FIVE_YEARS"
2789
+ # resp.quote.quote_options #=> Array
2790
+ # resp.quote.quote_options[0].quote_option_identifier #=> String
2791
+ # resp.quote.quote_options[0].capacities #=> Array
2792
+ # resp.quote.quote_options[0].capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
2793
+ # resp.quote.quote_options[0].capacities[0].unit #=> String
2794
+ # resp.quote.quote_options[0].capacities[0].quantity #=> Float
2795
+ # resp.quote.quote_options[0].capacity_summary.existing_capacities #=> Array
2796
+ # resp.quote.quote_options[0].capacity_summary.existing_capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
2797
+ # resp.quote.quote_options[0].capacity_summary.existing_capacities[0].unit #=> String
2798
+ # resp.quote.quote_options[0].capacity_summary.existing_capacities[0].quantity #=> Float
2799
+ # resp.quote.quote_options[0].capacity_summary.final_capacities #=> Array
2800
+ # resp.quote.quote_options[0].capacity_summary.final_capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
2801
+ # resp.quote.quote_options[0].capacity_summary.final_capacities[0].unit #=> String
2802
+ # resp.quote.quote_options[0].capacity_summary.final_capacities[0].quantity #=> Float
2803
+ # resp.quote.quote_options[0].capacity_summary.capacity_change #=> Array
2804
+ # resp.quote.quote_options[0].capacity_summary.capacity_change[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
2805
+ # resp.quote.quote_options[0].capacity_summary.capacity_change[0].unit #=> String
2806
+ # resp.quote.quote_options[0].capacity_summary.capacity_change[0].quantity #=> Float
2807
+ # resp.quote.quote_options[0].specifications #=> Array
2808
+ # resp.quote.quote_options[0].specifications[0].quote_specification_type #=> String, one of "UPDATED_RACK", "NEW_RACK", "EXISTING_RACK", "SERVER"
2809
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_id #=> String
2810
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_use #=> String, one of "NETWORKING", "COMPUTE"
2811
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_power_draw_kva #=> Float
2812
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_weight_lbs #=> Float
2813
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_height_inches #=> Float
2814
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_width_inches #=> Float
2815
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_depth_inches #=> Float
2816
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_unit_height #=> String, one of "HEIGHT_42U", "HEIGHT_2U", "HEIGHT_1U"
2817
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities #=> Array
2818
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities[0].family #=> String
2819
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities[0].max_size #=> String
2820
+ # resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities[0].quantity #=> String
2821
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_id #=> String
2822
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_use #=> String, one of "NETWORKING", "COMPUTE"
2823
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_power_draw_kva #=> Float
2824
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_weight_lbs #=> Float
2825
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_height_inches #=> Float
2826
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_width_inches #=> Float
2827
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_depth_inches #=> Float
2828
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_unit_height #=> String, one of "HEIGHT_42U", "HEIGHT_2U", "HEIGHT_1U"
2829
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities #=> Array
2830
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities[0].family #=> String
2831
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities[0].max_size #=> String
2832
+ # resp.quote.quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities[0].quantity #=> String
2833
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.server_power_draw_kva #=> Float
2834
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.server_weight_lbs #=> Float
2835
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.server_height_inches #=> Float
2836
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.server_width_inches #=> Float
2837
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.server_depth_inches #=> Float
2838
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.rack_unit_height #=> String, one of "HEIGHT_42U", "HEIGHT_2U", "HEIGHT_1U"
2839
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.ec2_capacities #=> Array
2840
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.ec2_capacities[0].family #=> String
2841
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.ec2_capacities[0].max_size #=> String
2842
+ # resp.quote.quote_options[0].specifications[0].server_specification_details.ec2_capacities[0].quantity #=> String
2843
+ # resp.quote.quote_options[0].pricing_options #=> Array
2844
+ # resp.quote.quote_options[0].pricing_options[0].pricing_type #=> String, one of "SUBSCRIPTION"
2845
+ # resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.payment_option #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
2846
+ # resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.payment_term #=> String, one of "THREE_YEARS", "ONE_YEAR", "FIVE_YEARS"
2847
+ # resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.upfront_price #=> Float
2848
+ # resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.monthly_recurring_price #=> Float
2849
+ # resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.currency #=> String, one of "USD"
2850
+ # resp.quote.ordering_requirements #=> Array
2851
+ # resp.quote.ordering_requirements[0].status_message #=> String
2852
+ # resp.quote.ordering_requirements[0].ordering_requirement_type #=> String, one of "OUTPOST_ACTIVE_CHECK_ERROR", "MAXIMUM_ALLOWED_ORDERS_CHECK_ERROR", "VALID_ZIP_CODE_CHECK_ERROR", "RACK_PHYSICAL_PROPERTIES_CHECK_ERROR", "OPERATING_ADDRESS_EXISTENCE_CHECK_ERROR", "SHIPPING_ADDRESS_EXISTENCE_CHECK_ERROR", "COUNTRY_CODE_MISMATCH_CHECK_ERROR", "OUTPOST_GENERATION_MISMATCH_ERROR", "UNSUPPORTED", "OUTPOST_ID_MISSING_ON_QUOTE_ERROR", "ENTERPRISE_SUPPORT_ERROR", "SHIPPING_ADDRESS_MISSING_CONTACT_NAME_ERROR", "SHIPPING_ADDRESS_MISSING_CONTACT_NUMBER_ERROR", "SHIPPING_ADDRESS_MISSING_CONTACT_INFO_ERROR", "OUTPOST_STATE_CHANGED_ERROR", "OUTPOST_NOT_FOUND_ERROR", "OUTPOST_RENEWAL_REQUIRED_ERROR"
2853
+ # resp.quote.ordering_requirements[0].status #=> String, one of "PASS", "FAIL", "EXEMPT"
2854
+ # resp.quote.submitted_order_id #=> String
2855
+ # resp.quote.created_date #=> Time
2856
+ # resp.quote.expiration_date #=> Time
2857
+ # resp.quote.description #=> String
2858
+ #
2859
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateQuote AWS API Documentation
2860
+ #
2861
+ # @overload update_quote(params = {})
2862
+ # @param [Hash] params ({})
2863
+ def update_quote(params = {}, options = {})
2864
+ req = build_request(:update_quote, params)
2865
+ req.send_request(options)
2866
+ end
2867
+
2247
2868
  # Updates the specified site.
2248
2869
  #
2249
2870
  # @option params [required, String] :site_id
@@ -2549,7 +3170,7 @@ module Aws::Outposts
2549
3170
  tracer: tracer
2550
3171
  )
2551
3172
  context[:gem_name] = 'aws-sdk-outposts'
2552
- context[:gem_version] = '1.103.0'
3173
+ context[:gem_version] = '1.104.0'
2553
3174
  Seahorse::Client::Request.new(handlers, context)
2554
3175
  end
2555
3176