aws-sdk-outposts 1.103.0 → 1.105.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-outposts/client.rb +634 -1
- data/lib/aws-sdk-outposts/client_api.rb +315 -0
- data/lib/aws-sdk-outposts/types.rb +852 -2
- data/lib/aws-sdk-outposts.rb +1 -1
- data/sig/client.rbs +102 -0
- data/sig/types.rbs +205 -0
- metadata +1 -1
|
@@ -528,6 +528,12 @@ module Aws::Outposts
|
|
|
528
528
|
# @option params [required, String] :outpost_identifier
|
|
529
529
|
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
530
530
|
#
|
|
531
|
+
# @option params [String] :quote_identifier
|
|
532
|
+
# The ID of the quote to use for the order.
|
|
533
|
+
#
|
|
534
|
+
# @option params [String] :quote_option_identifier
|
|
535
|
+
# The ID of the quote option to use for the order.
|
|
536
|
+
#
|
|
531
537
|
# @option params [Array<Types::LineItemRequest>] :line_items
|
|
532
538
|
# The line items that make up the order.
|
|
533
539
|
#
|
|
@@ -545,6 +551,8 @@ module Aws::Outposts
|
|
|
545
551
|
#
|
|
546
552
|
# resp = client.create_order({
|
|
547
553
|
# outpost_identifier: "OutpostIdentifier", # required
|
|
554
|
+
# quote_identifier: "QuoteIdentifier",
|
|
555
|
+
# quote_option_identifier: "QuoteOptionIdentifier",
|
|
548
556
|
# line_items: [
|
|
549
557
|
# {
|
|
550
558
|
# catalog_item_id: "SkuCode",
|
|
@@ -558,6 +566,8 @@ module Aws::Outposts
|
|
|
558
566
|
# @example Response structure
|
|
559
567
|
#
|
|
560
568
|
# resp.order.outpost_id #=> String
|
|
569
|
+
# resp.order.quote_identifier #=> String
|
|
570
|
+
# resp.order.quote_option_identifier #=> String
|
|
561
571
|
# resp.order.order_id #=> String
|
|
562
572
|
# resp.order.status #=> String, one of "RECEIVED", "PENDING", "PROCESSING", "INSTALLING", "FULFILLED", "CANCELLED", "PREPARING", "IN_PROGRESS", "DELIVERED", "COMPLETED", "ERROR"
|
|
563
573
|
# resp.order.line_items #=> Array
|
|
@@ -656,6 +666,166 @@ module Aws::Outposts
|
|
|
656
666
|
req.send_request(options)
|
|
657
667
|
end
|
|
658
668
|
|
|
669
|
+
# Creates a quote for an Outpost. A quote provides pricing and
|
|
670
|
+
# configuration options based on the requested capacity. You can
|
|
671
|
+
# optionally associate the quote with an existing Outpost or create a
|
|
672
|
+
# standalone quote by specifying only the country code and requested
|
|
673
|
+
# capacities.
|
|
674
|
+
#
|
|
675
|
+
# @option params [String] :outpost_identifier
|
|
676
|
+
# The ID or ARN of the Outpost to associate with the quote. If not
|
|
677
|
+
# specified, the quote is created without an Outpost association.
|
|
678
|
+
#
|
|
679
|
+
# @option params [required, String] :country_code
|
|
680
|
+
# The country code for the Outpost site location.
|
|
681
|
+
#
|
|
682
|
+
# @option params [required, Array<Types::QuoteCapacity>] :requested_capacities
|
|
683
|
+
# The capacity requirements for the quote. Each entry specifies a
|
|
684
|
+
# capacity type (such as Amazon EC2), the unit, and the quantity. For
|
|
685
|
+
# Amazon EC2, the quantity is the number of additional instances to add
|
|
686
|
+
# to the Outpost. For Amazon EBS and Amazon S3, the quantity is the
|
|
687
|
+
# total desired end-state capacity of the Outpost.
|
|
688
|
+
#
|
|
689
|
+
# @option params [Array<Types::QuoteConstraint>] :requested_constraints
|
|
690
|
+
# The physical constraints for the quote, such as maximum number of
|
|
691
|
+
# racks, maximum power draw per rack, or maximum weight per rack.
|
|
692
|
+
#
|
|
693
|
+
# @option params [Array<String>] :requested_payment_options
|
|
694
|
+
# The payment options to include in the quote pricing. If not specified,
|
|
695
|
+
# all available payment options are returned.
|
|
696
|
+
#
|
|
697
|
+
# @option params [Array<String>] :requested_payment_terms
|
|
698
|
+
# The payment terms to include in the quote pricing. If not specified,
|
|
699
|
+
# all available payment terms are returned.
|
|
700
|
+
#
|
|
701
|
+
# @option params [String] :description
|
|
702
|
+
# A description for the quote.
|
|
703
|
+
#
|
|
704
|
+
# @return [Types::CreateQuoteOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
705
|
+
#
|
|
706
|
+
# * {Types::CreateQuoteOutput#quote #quote} => Types::Quote
|
|
707
|
+
#
|
|
708
|
+
# @example Request syntax with placeholder values
|
|
709
|
+
#
|
|
710
|
+
# resp = client.create_quote({
|
|
711
|
+
# outpost_identifier: "OutpostIdentifier",
|
|
712
|
+
# country_code: "CountryCode", # required
|
|
713
|
+
# requested_capacities: [ # required
|
|
714
|
+
# {
|
|
715
|
+
# quote_capacity_type: "EC2", # accepts EC2, EBS, S3
|
|
716
|
+
# unit: "String",
|
|
717
|
+
# quantity: 1.0,
|
|
718
|
+
# },
|
|
719
|
+
# ],
|
|
720
|
+
# requested_constraints: [
|
|
721
|
+
# {
|
|
722
|
+
# quote_constraint_type: "RACK_MAXIMUM", # accepts RACK_MAXIMUM, RACK_MAX_POWER_KVA, RACK_MAX_WEIGHT_LBS
|
|
723
|
+
# value: "ConstraintValue",
|
|
724
|
+
# },
|
|
725
|
+
# ],
|
|
726
|
+
# requested_payment_options: ["ALL_UPFRONT"], # accepts ALL_UPFRONT, NO_UPFRONT, PARTIAL_UPFRONT
|
|
727
|
+
# requested_payment_terms: ["THREE_YEARS"], # accepts THREE_YEARS, ONE_YEAR, FIVE_YEARS
|
|
728
|
+
# description: "QuoteDescription",
|
|
729
|
+
# })
|
|
730
|
+
#
|
|
731
|
+
# @example Response structure
|
|
732
|
+
#
|
|
733
|
+
# resp.quote.quote_id #=> String
|
|
734
|
+
# resp.quote.account_id #=> String
|
|
735
|
+
# resp.quote.quote_status #=> String, one of "CREATED", "ORDER_SUBMITTED", "EXPIRED"
|
|
736
|
+
# resp.quote.status_message #=> String
|
|
737
|
+
# resp.quote.outpost_arn #=> String
|
|
738
|
+
# resp.quote.country_code #=> String
|
|
739
|
+
# resp.quote.requested_capacities #=> Array
|
|
740
|
+
# resp.quote.requested_capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
|
|
741
|
+
# resp.quote.requested_capacities[0].unit #=> String
|
|
742
|
+
# resp.quote.requested_capacities[0].quantity #=> Float
|
|
743
|
+
# resp.quote.requested_constraints #=> Array
|
|
744
|
+
# resp.quote.requested_constraints[0].quote_constraint_type #=> String, one of "RACK_MAXIMUM", "RACK_MAX_POWER_KVA", "RACK_MAX_WEIGHT_LBS"
|
|
745
|
+
# resp.quote.requested_constraints[0].value #=> String
|
|
746
|
+
# resp.quote.requested_payment_options #=> Array
|
|
747
|
+
# resp.quote.requested_payment_options[0] #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
|
|
748
|
+
# resp.quote.requested_payment_terms #=> Array
|
|
749
|
+
# resp.quote.requested_payment_terms[0] #=> String, one of "THREE_YEARS", "ONE_YEAR", "FIVE_YEARS"
|
|
750
|
+
# resp.quote.quote_options #=> Array
|
|
751
|
+
# resp.quote.quote_options[0].quote_option_identifier #=> String
|
|
752
|
+
# resp.quote.quote_options[0].capacities #=> Array
|
|
753
|
+
# resp.quote.quote_options[0].capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
|
|
754
|
+
# resp.quote.quote_options[0].capacities[0].unit #=> String
|
|
755
|
+
# resp.quote.quote_options[0].capacities[0].quantity #=> Float
|
|
756
|
+
# resp.quote.quote_options[0].capacity_summary.existing_capacities #=> Array
|
|
757
|
+
# resp.quote.quote_options[0].capacity_summary.existing_capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
|
|
758
|
+
# resp.quote.quote_options[0].capacity_summary.existing_capacities[0].unit #=> String
|
|
759
|
+
# resp.quote.quote_options[0].capacity_summary.existing_capacities[0].quantity #=> Float
|
|
760
|
+
# resp.quote.quote_options[0].capacity_summary.final_capacities #=> Array
|
|
761
|
+
# resp.quote.quote_options[0].capacity_summary.final_capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
|
|
762
|
+
# resp.quote.quote_options[0].capacity_summary.final_capacities[0].unit #=> String
|
|
763
|
+
# resp.quote.quote_options[0].capacity_summary.final_capacities[0].quantity #=> Float
|
|
764
|
+
# resp.quote.quote_options[0].capacity_summary.capacity_change #=> Array
|
|
765
|
+
# resp.quote.quote_options[0].capacity_summary.capacity_change[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
|
|
766
|
+
# resp.quote.quote_options[0].capacity_summary.capacity_change[0].unit #=> String
|
|
767
|
+
# resp.quote.quote_options[0].capacity_summary.capacity_change[0].quantity #=> Float
|
|
768
|
+
# resp.quote.quote_options[0].specifications #=> Array
|
|
769
|
+
# resp.quote.quote_options[0].specifications[0].quote_specification_type #=> String, one of "UPDATED_RACK", "NEW_RACK", "EXISTING_RACK", "SERVER"
|
|
770
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_id #=> String
|
|
771
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_use #=> String, one of "NETWORKING", "COMPUTE"
|
|
772
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_power_draw_kva #=> Float
|
|
773
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_weight_lbs #=> Float
|
|
774
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_height_inches #=> Float
|
|
775
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_width_inches #=> Float
|
|
776
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_depth_inches #=> Float
|
|
777
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_unit_height #=> String, one of "HEIGHT_42U", "HEIGHT_2U", "HEIGHT_1U"
|
|
778
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities #=> Array
|
|
779
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities[0].family #=> String
|
|
780
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities[0].max_size #=> String
|
|
781
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities[0].quantity #=> String
|
|
782
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_id #=> String
|
|
783
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_use #=> String, one of "NETWORKING", "COMPUTE"
|
|
784
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_power_draw_kva #=> Float
|
|
785
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_weight_lbs #=> Float
|
|
786
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_height_inches #=> Float
|
|
787
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_width_inches #=> Float
|
|
788
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_depth_inches #=> Float
|
|
789
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_unit_height #=> String, one of "HEIGHT_42U", "HEIGHT_2U", "HEIGHT_1U"
|
|
790
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities #=> Array
|
|
791
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities[0].family #=> String
|
|
792
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities[0].max_size #=> String
|
|
793
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities[0].quantity #=> String
|
|
794
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.server_power_draw_kva #=> Float
|
|
795
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.server_weight_lbs #=> Float
|
|
796
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.server_height_inches #=> Float
|
|
797
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.server_width_inches #=> Float
|
|
798
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.server_depth_inches #=> Float
|
|
799
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.rack_unit_height #=> String, one of "HEIGHT_42U", "HEIGHT_2U", "HEIGHT_1U"
|
|
800
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.ec2_capacities #=> Array
|
|
801
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.ec2_capacities[0].family #=> String
|
|
802
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.ec2_capacities[0].max_size #=> String
|
|
803
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.ec2_capacities[0].quantity #=> String
|
|
804
|
+
# resp.quote.quote_options[0].pricing_options #=> Array
|
|
805
|
+
# resp.quote.quote_options[0].pricing_options[0].pricing_type #=> String, one of "SUBSCRIPTION"
|
|
806
|
+
# resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.payment_option #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
|
|
807
|
+
# resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.payment_term #=> String, one of "THREE_YEARS", "ONE_YEAR", "FIVE_YEARS"
|
|
808
|
+
# resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.upfront_price #=> Float
|
|
809
|
+
# resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.monthly_recurring_price #=> Float
|
|
810
|
+
# resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.currency #=> String, one of "USD"
|
|
811
|
+
# resp.quote.ordering_requirements #=> Array
|
|
812
|
+
# resp.quote.ordering_requirements[0].status_message #=> String
|
|
813
|
+
# 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"
|
|
814
|
+
# resp.quote.ordering_requirements[0].status #=> String, one of "PASS", "FAIL", "EXEMPT"
|
|
815
|
+
# resp.quote.submitted_order_id #=> String
|
|
816
|
+
# resp.quote.created_date #=> Time
|
|
817
|
+
# resp.quote.expiration_date #=> Time
|
|
818
|
+
# resp.quote.description #=> String
|
|
819
|
+
#
|
|
820
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateQuote AWS API Documentation
|
|
821
|
+
#
|
|
822
|
+
# @overload create_quote(params = {})
|
|
823
|
+
# @param [Hash] params ({})
|
|
824
|
+
def create_quote(params = {}, options = {})
|
|
825
|
+
req = build_request(:create_quote, params)
|
|
826
|
+
req.send_request(options)
|
|
827
|
+
end
|
|
828
|
+
|
|
659
829
|
# Creates a renewal contract for the specified Outpost.
|
|
660
830
|
#
|
|
661
831
|
# @option params [required, String] :payment_option
|
|
@@ -681,6 +851,7 @@ module Aws::Outposts
|
|
|
681
851
|
# * {Types::CreateRenewalOutput#outpost_id #outpost_id} => String
|
|
682
852
|
# * {Types::CreateRenewalOutput#upfront_price #upfront_price} => Float
|
|
683
853
|
# * {Types::CreateRenewalOutput#monthly_recurring_price #monthly_recurring_price} => Float
|
|
854
|
+
# * {Types::CreateRenewalOutput#currency #currency} => String
|
|
684
855
|
#
|
|
685
856
|
# @example Request syntax with placeholder values
|
|
686
857
|
#
|
|
@@ -698,6 +869,7 @@ module Aws::Outposts
|
|
|
698
869
|
# resp.outpost_id #=> String
|
|
699
870
|
# resp.upfront_price #=> Float
|
|
700
871
|
# resp.monthly_recurring_price #=> Float
|
|
872
|
+
# resp.currency #=> String, one of "USD"
|
|
701
873
|
#
|
|
702
874
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateRenewal AWS API Documentation
|
|
703
875
|
#
|
|
@@ -849,6 +1021,28 @@ module Aws::Outposts
|
|
|
849
1021
|
req.send_request(options)
|
|
850
1022
|
end
|
|
851
1023
|
|
|
1024
|
+
# Deletes the specified quote.
|
|
1025
|
+
#
|
|
1026
|
+
# @option params [required, String] :quote_identifier
|
|
1027
|
+
# The ID of the quote.
|
|
1028
|
+
#
|
|
1029
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1030
|
+
#
|
|
1031
|
+
# @example Request syntax with placeholder values
|
|
1032
|
+
#
|
|
1033
|
+
# resp = client.delete_quote({
|
|
1034
|
+
# quote_identifier: "QuoteIdentifier", # required
|
|
1035
|
+
# })
|
|
1036
|
+
#
|
|
1037
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/DeleteQuote AWS API Documentation
|
|
1038
|
+
#
|
|
1039
|
+
# @overload delete_quote(params = {})
|
|
1040
|
+
# @param [Hash] params ({})
|
|
1041
|
+
def delete_quote(params = {}, options = {})
|
|
1042
|
+
req = build_request(:delete_quote, params)
|
|
1043
|
+
req.send_request(options)
|
|
1044
|
+
end
|
|
1045
|
+
|
|
852
1046
|
# Deletes the specified site.
|
|
853
1047
|
#
|
|
854
1048
|
# @option params [required, String] :site_id
|
|
@@ -1044,6 +1238,8 @@ module Aws::Outposts
|
|
|
1044
1238
|
# @example Response structure
|
|
1045
1239
|
#
|
|
1046
1240
|
# resp.order.outpost_id #=> String
|
|
1241
|
+
# resp.order.quote_identifier #=> String
|
|
1242
|
+
# resp.order.quote_option_identifier #=> String
|
|
1047
1243
|
# resp.order.order_id #=> String
|
|
1048
1244
|
# resp.order.status #=> String, one of "RECEIVED", "PENDING", "PROCESSING", "INSTALLING", "FULFILLED", "CANCELLED", "PREPARING", "IN_PROGRESS", "DELIVERED", "COMPLETED", "ERROR"
|
|
1049
1245
|
# resp.order.line_items #=> Array
|
|
@@ -1155,6 +1351,7 @@ module Aws::Outposts
|
|
|
1155
1351
|
# resp.subscriptions[0].order_ids[0] #=> String
|
|
1156
1352
|
# resp.subscriptions[0].begin_date #=> Time
|
|
1157
1353
|
# resp.subscriptions[0].end_date #=> Time
|
|
1354
|
+
# resp.subscriptions[0].currency #=> String, one of "USD"
|
|
1158
1355
|
# resp.subscriptions[0].monthly_recurring_price #=> Float
|
|
1159
1356
|
# resp.subscriptions[0].upfront_price #=> Float
|
|
1160
1357
|
# resp.contract_end_date #=> String
|
|
@@ -1270,6 +1467,119 @@ module Aws::Outposts
|
|
|
1270
1467
|
req.send_request(options)
|
|
1271
1468
|
end
|
|
1272
1469
|
|
|
1470
|
+
# Gets information about the specified quote.
|
|
1471
|
+
#
|
|
1472
|
+
# @option params [required, String] :quote_identifier
|
|
1473
|
+
# The ID of the quote.
|
|
1474
|
+
#
|
|
1475
|
+
# @return [Types::GetQuoteOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1476
|
+
#
|
|
1477
|
+
# * {Types::GetQuoteOutput#quote #quote} => Types::Quote
|
|
1478
|
+
#
|
|
1479
|
+
# @example Request syntax with placeholder values
|
|
1480
|
+
#
|
|
1481
|
+
# resp = client.get_quote({
|
|
1482
|
+
# quote_identifier: "QuoteIdentifier", # required
|
|
1483
|
+
# })
|
|
1484
|
+
#
|
|
1485
|
+
# @example Response structure
|
|
1486
|
+
#
|
|
1487
|
+
# resp.quote.quote_id #=> String
|
|
1488
|
+
# resp.quote.account_id #=> String
|
|
1489
|
+
# resp.quote.quote_status #=> String, one of "CREATED", "ORDER_SUBMITTED", "EXPIRED"
|
|
1490
|
+
# resp.quote.status_message #=> String
|
|
1491
|
+
# resp.quote.outpost_arn #=> String
|
|
1492
|
+
# resp.quote.country_code #=> String
|
|
1493
|
+
# resp.quote.requested_capacities #=> Array
|
|
1494
|
+
# resp.quote.requested_capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
|
|
1495
|
+
# resp.quote.requested_capacities[0].unit #=> String
|
|
1496
|
+
# resp.quote.requested_capacities[0].quantity #=> Float
|
|
1497
|
+
# resp.quote.requested_constraints #=> Array
|
|
1498
|
+
# resp.quote.requested_constraints[0].quote_constraint_type #=> String, one of "RACK_MAXIMUM", "RACK_MAX_POWER_KVA", "RACK_MAX_WEIGHT_LBS"
|
|
1499
|
+
# resp.quote.requested_constraints[0].value #=> String
|
|
1500
|
+
# resp.quote.requested_payment_options #=> Array
|
|
1501
|
+
# resp.quote.requested_payment_options[0] #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
|
|
1502
|
+
# resp.quote.requested_payment_terms #=> Array
|
|
1503
|
+
# resp.quote.requested_payment_terms[0] #=> String, one of "THREE_YEARS", "ONE_YEAR", "FIVE_YEARS"
|
|
1504
|
+
# resp.quote.quote_options #=> Array
|
|
1505
|
+
# resp.quote.quote_options[0].quote_option_identifier #=> String
|
|
1506
|
+
# resp.quote.quote_options[0].capacities #=> Array
|
|
1507
|
+
# resp.quote.quote_options[0].capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
|
|
1508
|
+
# resp.quote.quote_options[0].capacities[0].unit #=> String
|
|
1509
|
+
# resp.quote.quote_options[0].capacities[0].quantity #=> Float
|
|
1510
|
+
# resp.quote.quote_options[0].capacity_summary.existing_capacities #=> Array
|
|
1511
|
+
# resp.quote.quote_options[0].capacity_summary.existing_capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
|
|
1512
|
+
# resp.quote.quote_options[0].capacity_summary.existing_capacities[0].unit #=> String
|
|
1513
|
+
# resp.quote.quote_options[0].capacity_summary.existing_capacities[0].quantity #=> Float
|
|
1514
|
+
# resp.quote.quote_options[0].capacity_summary.final_capacities #=> Array
|
|
1515
|
+
# resp.quote.quote_options[0].capacity_summary.final_capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
|
|
1516
|
+
# resp.quote.quote_options[0].capacity_summary.final_capacities[0].unit #=> String
|
|
1517
|
+
# resp.quote.quote_options[0].capacity_summary.final_capacities[0].quantity #=> Float
|
|
1518
|
+
# resp.quote.quote_options[0].capacity_summary.capacity_change #=> Array
|
|
1519
|
+
# resp.quote.quote_options[0].capacity_summary.capacity_change[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
|
|
1520
|
+
# resp.quote.quote_options[0].capacity_summary.capacity_change[0].unit #=> String
|
|
1521
|
+
# resp.quote.quote_options[0].capacity_summary.capacity_change[0].quantity #=> Float
|
|
1522
|
+
# resp.quote.quote_options[0].specifications #=> Array
|
|
1523
|
+
# resp.quote.quote_options[0].specifications[0].quote_specification_type #=> String, one of "UPDATED_RACK", "NEW_RACK", "EXISTING_RACK", "SERVER"
|
|
1524
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_id #=> String
|
|
1525
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_use #=> String, one of "NETWORKING", "COMPUTE"
|
|
1526
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_power_draw_kva #=> Float
|
|
1527
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_weight_lbs #=> Float
|
|
1528
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_height_inches #=> Float
|
|
1529
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_width_inches #=> Float
|
|
1530
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_depth_inches #=> Float
|
|
1531
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_unit_height #=> String, one of "HEIGHT_42U", "HEIGHT_2U", "HEIGHT_1U"
|
|
1532
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities #=> Array
|
|
1533
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities[0].family #=> String
|
|
1534
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities[0].max_size #=> String
|
|
1535
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities[0].quantity #=> String
|
|
1536
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_id #=> String
|
|
1537
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_use #=> String, one of "NETWORKING", "COMPUTE"
|
|
1538
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_power_draw_kva #=> Float
|
|
1539
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_weight_lbs #=> Float
|
|
1540
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_height_inches #=> Float
|
|
1541
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_width_inches #=> Float
|
|
1542
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_depth_inches #=> Float
|
|
1543
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_unit_height #=> String, one of "HEIGHT_42U", "HEIGHT_2U", "HEIGHT_1U"
|
|
1544
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities #=> Array
|
|
1545
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities[0].family #=> String
|
|
1546
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities[0].max_size #=> String
|
|
1547
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities[0].quantity #=> String
|
|
1548
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.server_power_draw_kva #=> Float
|
|
1549
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.server_weight_lbs #=> Float
|
|
1550
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.server_height_inches #=> Float
|
|
1551
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.server_width_inches #=> Float
|
|
1552
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.server_depth_inches #=> Float
|
|
1553
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.rack_unit_height #=> String, one of "HEIGHT_42U", "HEIGHT_2U", "HEIGHT_1U"
|
|
1554
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.ec2_capacities #=> Array
|
|
1555
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.ec2_capacities[0].family #=> String
|
|
1556
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.ec2_capacities[0].max_size #=> String
|
|
1557
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.ec2_capacities[0].quantity #=> String
|
|
1558
|
+
# resp.quote.quote_options[0].pricing_options #=> Array
|
|
1559
|
+
# resp.quote.quote_options[0].pricing_options[0].pricing_type #=> String, one of "SUBSCRIPTION"
|
|
1560
|
+
# resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.payment_option #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
|
|
1561
|
+
# resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.payment_term #=> String, one of "THREE_YEARS", "ONE_YEAR", "FIVE_YEARS"
|
|
1562
|
+
# resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.upfront_price #=> Float
|
|
1563
|
+
# resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.monthly_recurring_price #=> Float
|
|
1564
|
+
# resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.currency #=> String, one of "USD"
|
|
1565
|
+
# resp.quote.ordering_requirements #=> Array
|
|
1566
|
+
# resp.quote.ordering_requirements[0].status_message #=> String
|
|
1567
|
+
# 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"
|
|
1568
|
+
# resp.quote.ordering_requirements[0].status #=> String, one of "PASS", "FAIL", "EXEMPT"
|
|
1569
|
+
# resp.quote.submitted_order_id #=> String
|
|
1570
|
+
# resp.quote.created_date #=> Time
|
|
1571
|
+
# resp.quote.expiration_date #=> Time
|
|
1572
|
+
# resp.quote.description #=> String
|
|
1573
|
+
#
|
|
1574
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetQuote AWS API Documentation
|
|
1575
|
+
#
|
|
1576
|
+
# @overload get_quote(params = {})
|
|
1577
|
+
# @param [Hash] params ({})
|
|
1578
|
+
def get_quote(params = {}, options = {})
|
|
1579
|
+
req = build_request(:get_quote, params)
|
|
1580
|
+
req.send_request(options)
|
|
1581
|
+
end
|
|
1582
|
+
|
|
1273
1583
|
# Gets all available renewal pricing options for the specified Outpost.
|
|
1274
1584
|
#
|
|
1275
1585
|
# @option params [required, String] :outpost_identifier
|
|
@@ -1295,6 +1605,7 @@ module Aws::Outposts
|
|
|
1295
1605
|
# resp.pricing_options[0].subscription_pricing_details.payment_term #=> String, one of "THREE_YEARS", "ONE_YEAR", "FIVE_YEARS"
|
|
1296
1606
|
# resp.pricing_options[0].subscription_pricing_details.upfront_price #=> Float
|
|
1297
1607
|
# resp.pricing_options[0].subscription_pricing_details.monthly_recurring_price #=> Float
|
|
1608
|
+
# resp.pricing_options[0].subscription_pricing_details.currency #=> String, one of "USD"
|
|
1298
1609
|
#
|
|
1299
1610
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetRenewalPricing AWS API Documentation
|
|
1300
1611
|
#
|
|
@@ -1718,6 +2029,56 @@ module Aws::Outposts
|
|
|
1718
2029
|
req.send_request(options)
|
|
1719
2030
|
end
|
|
1720
2031
|
|
|
2032
|
+
# Lists the instance types that can be ordered for an Outpost. You can
|
|
2033
|
+
# filter the results by Outpost generation.
|
|
2034
|
+
#
|
|
2035
|
+
# @option params [String] :outpost_generation_filter
|
|
2036
|
+
# Filters the results by Outpost generation. Specify `GENERATION_1` for
|
|
2037
|
+
# first-generation rack deployments or `GENERATION_2` for
|
|
2038
|
+
# second-generation rack deployments.
|
|
2039
|
+
#
|
|
2040
|
+
# @option params [Integer] :max_results
|
|
2041
|
+
# The maximum page size.
|
|
2042
|
+
#
|
|
2043
|
+
# @option params [String] :next_token
|
|
2044
|
+
# The pagination token.
|
|
2045
|
+
#
|
|
2046
|
+
# @return [Types::ListOrderableInstanceTypesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2047
|
+
#
|
|
2048
|
+
# * {Types::ListOrderableInstanceTypesOutput#instance_types #instance_types} => Array<Types::DetailedInstanceTypeItem>
|
|
2049
|
+
# * {Types::ListOrderableInstanceTypesOutput#next_token #next_token} => String
|
|
2050
|
+
#
|
|
2051
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
2052
|
+
#
|
|
2053
|
+
# @example Request syntax with placeholder values
|
|
2054
|
+
#
|
|
2055
|
+
# resp = client.list_orderable_instance_types({
|
|
2056
|
+
# outpost_generation_filter: "GENERATION_2", # accepts GENERATION_2, GENERATION_1
|
|
2057
|
+
# max_results: 1,
|
|
2058
|
+
# next_token: "Token",
|
|
2059
|
+
# })
|
|
2060
|
+
#
|
|
2061
|
+
# @example Response structure
|
|
2062
|
+
#
|
|
2063
|
+
# resp.instance_types #=> Array
|
|
2064
|
+
# resp.instance_types[0].instance_type #=> String
|
|
2065
|
+
# resp.instance_types[0].vcp_us #=> Integer
|
|
2066
|
+
# resp.instance_types[0].memory_in_mib #=> Integer
|
|
2067
|
+
# resp.instance_types[0].network_performance #=> String
|
|
2068
|
+
# resp.instance_types[0].form_factor_configs #=> Array
|
|
2069
|
+
# resp.instance_types[0].form_factor_configs[0].form_factor #=> String, one of "RACK", "SERVER"
|
|
2070
|
+
# resp.instance_types[0].form_factor_configs[0].outpost_generation #=> String, one of "GENERATION_2", "GENERATION_1"
|
|
2071
|
+
# resp.next_token #=> String
|
|
2072
|
+
#
|
|
2073
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListOrderableInstanceTypes AWS API Documentation
|
|
2074
|
+
#
|
|
2075
|
+
# @overload list_orderable_instance_types(params = {})
|
|
2076
|
+
# @param [Hash] params ({})
|
|
2077
|
+
def list_orderable_instance_types(params = {}, options = {})
|
|
2078
|
+
req = build_request(:list_orderable_instance_types, params)
|
|
2079
|
+
req.send_request(options)
|
|
2080
|
+
end
|
|
2081
|
+
|
|
1721
2082
|
# Lists the Outpost orders for your Amazon Web Services account.
|
|
1722
2083
|
#
|
|
1723
2084
|
# @option params [String] :outpost_identifier_filter
|
|
@@ -1833,6 +2194,124 @@ module Aws::Outposts
|
|
|
1833
2194
|
req.send_request(options)
|
|
1834
2195
|
end
|
|
1835
2196
|
|
|
2197
|
+
# Lists the quotes for your Amazon Web Services account.
|
|
2198
|
+
#
|
|
2199
|
+
# @option params [String] :next_token
|
|
2200
|
+
# The pagination token.
|
|
2201
|
+
#
|
|
2202
|
+
# @option params [Integer] :max_results
|
|
2203
|
+
# The maximum page size.
|
|
2204
|
+
#
|
|
2205
|
+
# @return [Types::ListQuotesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2206
|
+
#
|
|
2207
|
+
# * {Types::ListQuotesOutput#quotes #quotes} => Array<Types::QuoteSummary>
|
|
2208
|
+
# * {Types::ListQuotesOutput#next_token #next_token} => String
|
|
2209
|
+
#
|
|
2210
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
2211
|
+
#
|
|
2212
|
+
# @example Request syntax with placeholder values
|
|
2213
|
+
#
|
|
2214
|
+
# resp = client.list_quotes({
|
|
2215
|
+
# next_token: "Token",
|
|
2216
|
+
# max_results: 1,
|
|
2217
|
+
# })
|
|
2218
|
+
#
|
|
2219
|
+
# @example Response structure
|
|
2220
|
+
#
|
|
2221
|
+
# resp.quotes #=> Array
|
|
2222
|
+
# resp.quotes[0].quote_id #=> String
|
|
2223
|
+
# resp.quotes[0].account_id #=> String
|
|
2224
|
+
# resp.quotes[0].quote_status #=> String, one of "CREATED", "ORDER_SUBMITTED", "EXPIRED"
|
|
2225
|
+
# resp.quotes[0].status_message #=> String
|
|
2226
|
+
# resp.quotes[0].outpost_arn #=> String
|
|
2227
|
+
# resp.quotes[0].country_code #=> String
|
|
2228
|
+
# resp.quotes[0].requested_capacities #=> Array
|
|
2229
|
+
# resp.quotes[0].requested_capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
|
|
2230
|
+
# resp.quotes[0].requested_capacities[0].unit #=> String
|
|
2231
|
+
# resp.quotes[0].requested_capacities[0].quantity #=> Float
|
|
2232
|
+
# resp.quotes[0].requested_constraints #=> Array
|
|
2233
|
+
# resp.quotes[0].requested_constraints[0].quote_constraint_type #=> String, one of "RACK_MAXIMUM", "RACK_MAX_POWER_KVA", "RACK_MAX_WEIGHT_LBS"
|
|
2234
|
+
# resp.quotes[0].requested_constraints[0].value #=> String
|
|
2235
|
+
# resp.quotes[0].requested_payment_options #=> Array
|
|
2236
|
+
# resp.quotes[0].requested_payment_options[0] #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
|
|
2237
|
+
# resp.quotes[0].requested_payment_terms #=> Array
|
|
2238
|
+
# resp.quotes[0].requested_payment_terms[0] #=> String, one of "THREE_YEARS", "ONE_YEAR", "FIVE_YEARS"
|
|
2239
|
+
# resp.quotes[0].quote_options #=> Array
|
|
2240
|
+
# resp.quotes[0].quote_options[0].quote_option_identifier #=> String
|
|
2241
|
+
# resp.quotes[0].quote_options[0].capacities #=> Array
|
|
2242
|
+
# resp.quotes[0].quote_options[0].capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
|
|
2243
|
+
# resp.quotes[0].quote_options[0].capacities[0].unit #=> String
|
|
2244
|
+
# resp.quotes[0].quote_options[0].capacities[0].quantity #=> Float
|
|
2245
|
+
# resp.quotes[0].quote_options[0].capacity_summary.existing_capacities #=> Array
|
|
2246
|
+
# resp.quotes[0].quote_options[0].capacity_summary.existing_capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
|
|
2247
|
+
# resp.quotes[0].quote_options[0].capacity_summary.existing_capacities[0].unit #=> String
|
|
2248
|
+
# resp.quotes[0].quote_options[0].capacity_summary.existing_capacities[0].quantity #=> Float
|
|
2249
|
+
# resp.quotes[0].quote_options[0].capacity_summary.final_capacities #=> Array
|
|
2250
|
+
# resp.quotes[0].quote_options[0].capacity_summary.final_capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
|
|
2251
|
+
# resp.quotes[0].quote_options[0].capacity_summary.final_capacities[0].unit #=> String
|
|
2252
|
+
# resp.quotes[0].quote_options[0].capacity_summary.final_capacities[0].quantity #=> Float
|
|
2253
|
+
# resp.quotes[0].quote_options[0].capacity_summary.capacity_change #=> Array
|
|
2254
|
+
# resp.quotes[0].quote_options[0].capacity_summary.capacity_change[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
|
|
2255
|
+
# resp.quotes[0].quote_options[0].capacity_summary.capacity_change[0].unit #=> String
|
|
2256
|
+
# resp.quotes[0].quote_options[0].capacity_summary.capacity_change[0].quantity #=> Float
|
|
2257
|
+
# resp.quotes[0].quote_options[0].specifications #=> Array
|
|
2258
|
+
# resp.quotes[0].quote_options[0].specifications[0].quote_specification_type #=> String, one of "UPDATED_RACK", "NEW_RACK", "EXISTING_RACK", "SERVER"
|
|
2259
|
+
# resp.quotes[0].quote_options[0].specifications[0].existing_rack_specification_details.rack_id #=> String
|
|
2260
|
+
# resp.quotes[0].quote_options[0].specifications[0].existing_rack_specification_details.rack_use #=> String, one of "NETWORKING", "COMPUTE"
|
|
2261
|
+
# resp.quotes[0].quote_options[0].specifications[0].existing_rack_specification_details.rack_power_draw_kva #=> Float
|
|
2262
|
+
# resp.quotes[0].quote_options[0].specifications[0].existing_rack_specification_details.rack_weight_lbs #=> Float
|
|
2263
|
+
# resp.quotes[0].quote_options[0].specifications[0].existing_rack_specification_details.rack_height_inches #=> Float
|
|
2264
|
+
# resp.quotes[0].quote_options[0].specifications[0].existing_rack_specification_details.rack_width_inches #=> Float
|
|
2265
|
+
# resp.quotes[0].quote_options[0].specifications[0].existing_rack_specification_details.rack_depth_inches #=> Float
|
|
2266
|
+
# resp.quotes[0].quote_options[0].specifications[0].existing_rack_specification_details.rack_unit_height #=> String, one of "HEIGHT_42U", "HEIGHT_2U", "HEIGHT_1U"
|
|
2267
|
+
# resp.quotes[0].quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities #=> Array
|
|
2268
|
+
# resp.quotes[0].quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities[0].family #=> String
|
|
2269
|
+
# resp.quotes[0].quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities[0].max_size #=> String
|
|
2270
|
+
# resp.quotes[0].quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities[0].quantity #=> String
|
|
2271
|
+
# resp.quotes[0].quote_options[0].specifications[0].final_rack_specification_details.rack_id #=> String
|
|
2272
|
+
# resp.quotes[0].quote_options[0].specifications[0].final_rack_specification_details.rack_use #=> String, one of "NETWORKING", "COMPUTE"
|
|
2273
|
+
# resp.quotes[0].quote_options[0].specifications[0].final_rack_specification_details.rack_power_draw_kva #=> Float
|
|
2274
|
+
# resp.quotes[0].quote_options[0].specifications[0].final_rack_specification_details.rack_weight_lbs #=> Float
|
|
2275
|
+
# resp.quotes[0].quote_options[0].specifications[0].final_rack_specification_details.rack_height_inches #=> Float
|
|
2276
|
+
# resp.quotes[0].quote_options[0].specifications[0].final_rack_specification_details.rack_width_inches #=> Float
|
|
2277
|
+
# resp.quotes[0].quote_options[0].specifications[0].final_rack_specification_details.rack_depth_inches #=> Float
|
|
2278
|
+
# resp.quotes[0].quote_options[0].specifications[0].final_rack_specification_details.rack_unit_height #=> String, one of "HEIGHT_42U", "HEIGHT_2U", "HEIGHT_1U"
|
|
2279
|
+
# resp.quotes[0].quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities #=> Array
|
|
2280
|
+
# resp.quotes[0].quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities[0].family #=> String
|
|
2281
|
+
# resp.quotes[0].quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities[0].max_size #=> String
|
|
2282
|
+
# resp.quotes[0].quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities[0].quantity #=> String
|
|
2283
|
+
# resp.quotes[0].quote_options[0].specifications[0].server_specification_details.server_power_draw_kva #=> Float
|
|
2284
|
+
# resp.quotes[0].quote_options[0].specifications[0].server_specification_details.server_weight_lbs #=> Float
|
|
2285
|
+
# resp.quotes[0].quote_options[0].specifications[0].server_specification_details.server_height_inches #=> Float
|
|
2286
|
+
# resp.quotes[0].quote_options[0].specifications[0].server_specification_details.server_width_inches #=> Float
|
|
2287
|
+
# resp.quotes[0].quote_options[0].specifications[0].server_specification_details.server_depth_inches #=> Float
|
|
2288
|
+
# resp.quotes[0].quote_options[0].specifications[0].server_specification_details.rack_unit_height #=> String, one of "HEIGHT_42U", "HEIGHT_2U", "HEIGHT_1U"
|
|
2289
|
+
# resp.quotes[0].quote_options[0].specifications[0].server_specification_details.ec2_capacities #=> Array
|
|
2290
|
+
# resp.quotes[0].quote_options[0].specifications[0].server_specification_details.ec2_capacities[0].family #=> String
|
|
2291
|
+
# resp.quotes[0].quote_options[0].specifications[0].server_specification_details.ec2_capacities[0].max_size #=> String
|
|
2292
|
+
# resp.quotes[0].quote_options[0].specifications[0].server_specification_details.ec2_capacities[0].quantity #=> String
|
|
2293
|
+
# resp.quotes[0].quote_options[0].pricing_options #=> Array
|
|
2294
|
+
# resp.quotes[0].quote_options[0].pricing_options[0].pricing_type #=> String, one of "SUBSCRIPTION"
|
|
2295
|
+
# resp.quotes[0].quote_options[0].pricing_options[0].subscription_pricing_details.payment_option #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
|
|
2296
|
+
# resp.quotes[0].quote_options[0].pricing_options[0].subscription_pricing_details.payment_term #=> String, one of "THREE_YEARS", "ONE_YEAR", "FIVE_YEARS"
|
|
2297
|
+
# resp.quotes[0].quote_options[0].pricing_options[0].subscription_pricing_details.upfront_price #=> Float
|
|
2298
|
+
# resp.quotes[0].quote_options[0].pricing_options[0].subscription_pricing_details.monthly_recurring_price #=> Float
|
|
2299
|
+
# resp.quotes[0].quote_options[0].pricing_options[0].subscription_pricing_details.currency #=> String, one of "USD"
|
|
2300
|
+
# resp.quotes[0].submitted_order_id #=> String
|
|
2301
|
+
# resp.quotes[0].created_date #=> Time
|
|
2302
|
+
# resp.quotes[0].expiration_date #=> Time
|
|
2303
|
+
# resp.quotes[0].description #=> String
|
|
2304
|
+
# resp.next_token #=> String
|
|
2305
|
+
#
|
|
2306
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListQuotes AWS API Documentation
|
|
2307
|
+
#
|
|
2308
|
+
# @overload list_quotes(params = {})
|
|
2309
|
+
# @param [Hash] params ({})
|
|
2310
|
+
def list_quotes(params = {}, options = {})
|
|
2311
|
+
req = build_request(:list_quotes, params)
|
|
2312
|
+
req.send_request(options)
|
|
2313
|
+
end
|
|
2314
|
+
|
|
1836
2315
|
# Lists the Outpost sites for your Amazon Web Services account. Use
|
|
1837
2316
|
# filters to return specific results.
|
|
1838
2317
|
#
|
|
@@ -2244,6 +2723,160 @@ module Aws::Outposts
|
|
|
2244
2723
|
req.send_request(options)
|
|
2245
2724
|
end
|
|
2246
2725
|
|
|
2726
|
+
# Updates the specified quote. You can modify the requested capacities,
|
|
2727
|
+
# constraints, payment options, payment terms, or Outpost association.
|
|
2728
|
+
#
|
|
2729
|
+
# @option params [required, String] :quote_identifier
|
|
2730
|
+
# The ID of the quote.
|
|
2731
|
+
#
|
|
2732
|
+
# @option params [String] :outpost_identifier
|
|
2733
|
+
# The ID or ARN of the Outpost to associate with the quote. Specify an
|
|
2734
|
+
# empty string to remove the Outpost association.
|
|
2735
|
+
#
|
|
2736
|
+
# @option params [String] :country_code
|
|
2737
|
+
# The country code for the Outpost site location.
|
|
2738
|
+
#
|
|
2739
|
+
# @option params [Array<Types::QuoteCapacity>] :requested_capacities
|
|
2740
|
+
# The updated capacity requirements for the quote.
|
|
2741
|
+
#
|
|
2742
|
+
# @option params [Array<Types::QuoteConstraint>] :requested_constraints
|
|
2743
|
+
# The updated physical constraints for the quote.
|
|
2744
|
+
#
|
|
2745
|
+
# @option params [Array<String>] :requested_payment_options
|
|
2746
|
+
# The updated payment options to include in the quote pricing.
|
|
2747
|
+
#
|
|
2748
|
+
# @option params [Array<String>] :requested_payment_terms
|
|
2749
|
+
# The updated payment terms to include in the quote pricing.
|
|
2750
|
+
#
|
|
2751
|
+
# @option params [String] :description
|
|
2752
|
+
# A description for the quote.
|
|
2753
|
+
#
|
|
2754
|
+
# @return [Types::UpdateQuoteOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2755
|
+
#
|
|
2756
|
+
# * {Types::UpdateQuoteOutput#quote #quote} => Types::Quote
|
|
2757
|
+
#
|
|
2758
|
+
# @example Request syntax with placeholder values
|
|
2759
|
+
#
|
|
2760
|
+
# resp = client.update_quote({
|
|
2761
|
+
# quote_identifier: "QuoteIdentifier", # required
|
|
2762
|
+
# outpost_identifier: "OutpostIdentifierOrEmpty",
|
|
2763
|
+
# country_code: "CountryCode",
|
|
2764
|
+
# requested_capacities: [
|
|
2765
|
+
# {
|
|
2766
|
+
# quote_capacity_type: "EC2", # accepts EC2, EBS, S3
|
|
2767
|
+
# unit: "String",
|
|
2768
|
+
# quantity: 1.0,
|
|
2769
|
+
# },
|
|
2770
|
+
# ],
|
|
2771
|
+
# requested_constraints: [
|
|
2772
|
+
# {
|
|
2773
|
+
# quote_constraint_type: "RACK_MAXIMUM", # accepts RACK_MAXIMUM, RACK_MAX_POWER_KVA, RACK_MAX_WEIGHT_LBS
|
|
2774
|
+
# value: "ConstraintValue",
|
|
2775
|
+
# },
|
|
2776
|
+
# ],
|
|
2777
|
+
# requested_payment_options: ["ALL_UPFRONT"], # accepts ALL_UPFRONT, NO_UPFRONT, PARTIAL_UPFRONT
|
|
2778
|
+
# requested_payment_terms: ["THREE_YEARS"], # accepts THREE_YEARS, ONE_YEAR, FIVE_YEARS
|
|
2779
|
+
# description: "QuoteDescription",
|
|
2780
|
+
# })
|
|
2781
|
+
#
|
|
2782
|
+
# @example Response structure
|
|
2783
|
+
#
|
|
2784
|
+
# resp.quote.quote_id #=> String
|
|
2785
|
+
# resp.quote.account_id #=> String
|
|
2786
|
+
# resp.quote.quote_status #=> String, one of "CREATED", "ORDER_SUBMITTED", "EXPIRED"
|
|
2787
|
+
# resp.quote.status_message #=> String
|
|
2788
|
+
# resp.quote.outpost_arn #=> String
|
|
2789
|
+
# resp.quote.country_code #=> String
|
|
2790
|
+
# resp.quote.requested_capacities #=> Array
|
|
2791
|
+
# resp.quote.requested_capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
|
|
2792
|
+
# resp.quote.requested_capacities[0].unit #=> String
|
|
2793
|
+
# resp.quote.requested_capacities[0].quantity #=> Float
|
|
2794
|
+
# resp.quote.requested_constraints #=> Array
|
|
2795
|
+
# resp.quote.requested_constraints[0].quote_constraint_type #=> String, one of "RACK_MAXIMUM", "RACK_MAX_POWER_KVA", "RACK_MAX_WEIGHT_LBS"
|
|
2796
|
+
# resp.quote.requested_constraints[0].value #=> String
|
|
2797
|
+
# resp.quote.requested_payment_options #=> Array
|
|
2798
|
+
# resp.quote.requested_payment_options[0] #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
|
|
2799
|
+
# resp.quote.requested_payment_terms #=> Array
|
|
2800
|
+
# resp.quote.requested_payment_terms[0] #=> String, one of "THREE_YEARS", "ONE_YEAR", "FIVE_YEARS"
|
|
2801
|
+
# resp.quote.quote_options #=> Array
|
|
2802
|
+
# resp.quote.quote_options[0].quote_option_identifier #=> String
|
|
2803
|
+
# resp.quote.quote_options[0].capacities #=> Array
|
|
2804
|
+
# resp.quote.quote_options[0].capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
|
|
2805
|
+
# resp.quote.quote_options[0].capacities[0].unit #=> String
|
|
2806
|
+
# resp.quote.quote_options[0].capacities[0].quantity #=> Float
|
|
2807
|
+
# resp.quote.quote_options[0].capacity_summary.existing_capacities #=> Array
|
|
2808
|
+
# resp.quote.quote_options[0].capacity_summary.existing_capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
|
|
2809
|
+
# resp.quote.quote_options[0].capacity_summary.existing_capacities[0].unit #=> String
|
|
2810
|
+
# resp.quote.quote_options[0].capacity_summary.existing_capacities[0].quantity #=> Float
|
|
2811
|
+
# resp.quote.quote_options[0].capacity_summary.final_capacities #=> Array
|
|
2812
|
+
# resp.quote.quote_options[0].capacity_summary.final_capacities[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
|
|
2813
|
+
# resp.quote.quote_options[0].capacity_summary.final_capacities[0].unit #=> String
|
|
2814
|
+
# resp.quote.quote_options[0].capacity_summary.final_capacities[0].quantity #=> Float
|
|
2815
|
+
# resp.quote.quote_options[0].capacity_summary.capacity_change #=> Array
|
|
2816
|
+
# resp.quote.quote_options[0].capacity_summary.capacity_change[0].quote_capacity_type #=> String, one of "EC2", "EBS", "S3"
|
|
2817
|
+
# resp.quote.quote_options[0].capacity_summary.capacity_change[0].unit #=> String
|
|
2818
|
+
# resp.quote.quote_options[0].capacity_summary.capacity_change[0].quantity #=> Float
|
|
2819
|
+
# resp.quote.quote_options[0].specifications #=> Array
|
|
2820
|
+
# resp.quote.quote_options[0].specifications[0].quote_specification_type #=> String, one of "UPDATED_RACK", "NEW_RACK", "EXISTING_RACK", "SERVER"
|
|
2821
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_id #=> String
|
|
2822
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_use #=> String, one of "NETWORKING", "COMPUTE"
|
|
2823
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_power_draw_kva #=> Float
|
|
2824
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_weight_lbs #=> Float
|
|
2825
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_height_inches #=> Float
|
|
2826
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_width_inches #=> Float
|
|
2827
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_depth_inches #=> Float
|
|
2828
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.rack_unit_height #=> String, one of "HEIGHT_42U", "HEIGHT_2U", "HEIGHT_1U"
|
|
2829
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities #=> Array
|
|
2830
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities[0].family #=> String
|
|
2831
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities[0].max_size #=> String
|
|
2832
|
+
# resp.quote.quote_options[0].specifications[0].existing_rack_specification_details.ec2_capacities[0].quantity #=> String
|
|
2833
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_id #=> String
|
|
2834
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_use #=> String, one of "NETWORKING", "COMPUTE"
|
|
2835
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_power_draw_kva #=> Float
|
|
2836
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_weight_lbs #=> Float
|
|
2837
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_height_inches #=> Float
|
|
2838
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_width_inches #=> Float
|
|
2839
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_depth_inches #=> Float
|
|
2840
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.rack_unit_height #=> String, one of "HEIGHT_42U", "HEIGHT_2U", "HEIGHT_1U"
|
|
2841
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities #=> Array
|
|
2842
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities[0].family #=> String
|
|
2843
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities[0].max_size #=> String
|
|
2844
|
+
# resp.quote.quote_options[0].specifications[0].final_rack_specification_details.ec2_capacities[0].quantity #=> String
|
|
2845
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.server_power_draw_kva #=> Float
|
|
2846
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.server_weight_lbs #=> Float
|
|
2847
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.server_height_inches #=> Float
|
|
2848
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.server_width_inches #=> Float
|
|
2849
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.server_depth_inches #=> Float
|
|
2850
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.rack_unit_height #=> String, one of "HEIGHT_42U", "HEIGHT_2U", "HEIGHT_1U"
|
|
2851
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.ec2_capacities #=> Array
|
|
2852
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.ec2_capacities[0].family #=> String
|
|
2853
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.ec2_capacities[0].max_size #=> String
|
|
2854
|
+
# resp.quote.quote_options[0].specifications[0].server_specification_details.ec2_capacities[0].quantity #=> String
|
|
2855
|
+
# resp.quote.quote_options[0].pricing_options #=> Array
|
|
2856
|
+
# resp.quote.quote_options[0].pricing_options[0].pricing_type #=> String, one of "SUBSCRIPTION"
|
|
2857
|
+
# resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.payment_option #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
|
|
2858
|
+
# resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.payment_term #=> String, one of "THREE_YEARS", "ONE_YEAR", "FIVE_YEARS"
|
|
2859
|
+
# resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.upfront_price #=> Float
|
|
2860
|
+
# resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.monthly_recurring_price #=> Float
|
|
2861
|
+
# resp.quote.quote_options[0].pricing_options[0].subscription_pricing_details.currency #=> String, one of "USD"
|
|
2862
|
+
# resp.quote.ordering_requirements #=> Array
|
|
2863
|
+
# resp.quote.ordering_requirements[0].status_message #=> String
|
|
2864
|
+
# 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"
|
|
2865
|
+
# resp.quote.ordering_requirements[0].status #=> String, one of "PASS", "FAIL", "EXEMPT"
|
|
2866
|
+
# resp.quote.submitted_order_id #=> String
|
|
2867
|
+
# resp.quote.created_date #=> Time
|
|
2868
|
+
# resp.quote.expiration_date #=> Time
|
|
2869
|
+
# resp.quote.description #=> String
|
|
2870
|
+
#
|
|
2871
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateQuote AWS API Documentation
|
|
2872
|
+
#
|
|
2873
|
+
# @overload update_quote(params = {})
|
|
2874
|
+
# @param [Hash] params ({})
|
|
2875
|
+
def update_quote(params = {}, options = {})
|
|
2876
|
+
req = build_request(:update_quote, params)
|
|
2877
|
+
req.send_request(options)
|
|
2878
|
+
end
|
|
2879
|
+
|
|
2247
2880
|
# Updates the specified site.
|
|
2248
2881
|
#
|
|
2249
2882
|
# @option params [required, String] :site_id
|
|
@@ -2549,7 +3182,7 @@ module Aws::Outposts
|
|
|
2549
3182
|
tracer: tracer
|
|
2550
3183
|
)
|
|
2551
3184
|
context[:gem_name] = 'aws-sdk-outposts'
|
|
2552
|
-
context[:gem_version] = '1.
|
|
3185
|
+
context[:gem_version] = '1.105.0'
|
|
2553
3186
|
Seahorse::Client::Request.new(handlers, context)
|
|
2554
3187
|
end
|
|
2555
3188
|
|