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.
@@ -254,6 +254,31 @@ module Aws::Outposts
254
254
  #
255
255
  class CancelOrderOutput < Aws::EmptyStructure; end
256
256
 
257
+ # A summary of the capacity changes for a quote option.
258
+ #
259
+ # @!attribute [rw] existing_capacities
260
+ # The existing capacities on the Outpost before the quote is
261
+ # fulfilled.
262
+ # @return [Array<Types::QuoteCapacity>]
263
+ #
264
+ # @!attribute [rw] final_capacities
265
+ # The final capacities on the Outpost after the quote is fulfilled.
266
+ # @return [Array<Types::QuoteCapacity>]
267
+ #
268
+ # @!attribute [rw] capacity_change
269
+ # The change in capacity between the existing and final state.
270
+ # @return [Array<Types::QuoteCapacity>]
271
+ #
272
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CapacitySummary AWS API Documentation
273
+ #
274
+ class CapacitySummary < Struct.new(
275
+ :existing_capacities,
276
+ :final_capacities,
277
+ :capacity_change)
278
+ SENSITIVE = []
279
+ include Aws::Structure
280
+ end
281
+
257
282
  # The capacity tasks that failed.
258
283
  #
259
284
  # @!attribute [rw] reason
@@ -486,6 +511,14 @@ module Aws::Outposts
486
511
  # The ID or the Amazon Resource Name (ARN) of the Outpost.
487
512
  # @return [String]
488
513
  #
514
+ # @!attribute [rw] quote_identifier
515
+ # The ID of the quote to use for the order.
516
+ # @return [String]
517
+ #
518
+ # @!attribute [rw] quote_option_identifier
519
+ # The ID of the quote option to use for the order.
520
+ # @return [String]
521
+ #
489
522
  # @!attribute [rw] line_items
490
523
  # The line items that make up the order.
491
524
  # @return [Array<Types::LineItemRequest>]
@@ -502,6 +535,8 @@ module Aws::Outposts
502
535
  #
503
536
  class CreateOrderInput < Struct.new(
504
537
  :outpost_identifier,
538
+ :quote_identifier,
539
+ :quote_option_identifier,
505
540
  :line_items,
506
541
  :payment_option,
507
542
  :payment_term)
@@ -575,6 +610,68 @@ module Aws::Outposts
575
610
  include Aws::Structure
576
611
  end
577
612
 
613
+ # @!attribute [rw] outpost_identifier
614
+ # The ID or ARN of the Outpost to associate with the quote. If not
615
+ # specified, the quote is created without an Outpost association.
616
+ # @return [String]
617
+ #
618
+ # @!attribute [rw] country_code
619
+ # The country code for the Outpost site location.
620
+ # @return [String]
621
+ #
622
+ # @!attribute [rw] requested_capacities
623
+ # The capacity requirements for the quote. Each entry specifies a
624
+ # capacity type (such as Amazon EC2), the unit, and the quantity. For
625
+ # Amazon EC2, the quantity is the number of additional instances to
626
+ # add to the Outpost. For Amazon EBS and Amazon S3, the quantity is
627
+ # the total desired end-state capacity of the Outpost.
628
+ # @return [Array<Types::QuoteCapacity>]
629
+ #
630
+ # @!attribute [rw] requested_constraints
631
+ # The physical constraints for the quote, such as maximum number of
632
+ # racks, maximum power draw per rack, or maximum weight per rack.
633
+ # @return [Array<Types::QuoteConstraint>]
634
+ #
635
+ # @!attribute [rw] requested_payment_options
636
+ # The payment options to include in the quote pricing. If not
637
+ # specified, all available payment options are returned.
638
+ # @return [Array<String>]
639
+ #
640
+ # @!attribute [rw] requested_payment_terms
641
+ # The payment terms to include in the quote pricing. If not specified,
642
+ # all available payment terms are returned.
643
+ # @return [Array<String>]
644
+ #
645
+ # @!attribute [rw] description
646
+ # A description for the quote.
647
+ # @return [String]
648
+ #
649
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateQuoteInput AWS API Documentation
650
+ #
651
+ class CreateQuoteInput < Struct.new(
652
+ :outpost_identifier,
653
+ :country_code,
654
+ :requested_capacities,
655
+ :requested_constraints,
656
+ :requested_payment_options,
657
+ :requested_payment_terms,
658
+ :description)
659
+ SENSITIVE = [:description]
660
+ include Aws::Structure
661
+ end
662
+
663
+ # @!attribute [rw] quote
664
+ # Information about the quote.
665
+ # @return [Types::Quote]
666
+ #
667
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateQuoteOutput AWS API Documentation
668
+ #
669
+ class CreateQuoteOutput < Struct.new(
670
+ :quote)
671
+ SENSITIVE = []
672
+ include Aws::Structure
673
+ end
674
+
578
675
  # @!attribute [rw] payment_option
579
676
  # The payment option.
580
677
  # @return [String]
@@ -626,6 +723,10 @@ module Aws::Outposts
626
723
  # The monthly recurring price of the renewal.
627
724
  # @return [Float]
628
725
  #
726
+ # @!attribute [rw] currency
727
+ # The currency of the renewal price.
728
+ # @return [String]
729
+ #
629
730
  # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateRenewalOutput AWS API Documentation
630
731
  #
631
732
  class CreateRenewalOutput < Struct.new(
@@ -633,7 +734,8 @@ module Aws::Outposts
633
734
  :payment_term,
634
735
  :outpost_id,
635
736
  :upfront_price,
636
- :monthly_recurring_price)
737
+ :monthly_recurring_price,
738
+ :currency)
637
739
  SENSITIVE = []
638
740
  include Aws::Structure
639
741
  end
@@ -720,6 +822,22 @@ module Aws::Outposts
720
822
  #
721
823
  class DeleteOutpostOutput < Aws::EmptyStructure; end
722
824
 
825
+ # @!attribute [rw] quote_identifier
826
+ # The ID of the quote.
827
+ # @return [String]
828
+ #
829
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/DeleteQuoteInput AWS API Documentation
830
+ #
831
+ class DeleteQuoteInput < Struct.new(
832
+ :quote_identifier)
833
+ SENSITIVE = []
834
+ include Aws::Structure
835
+ end
836
+
837
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/DeleteQuoteOutput AWS API Documentation
838
+ #
839
+ class DeleteQuoteOutput < Aws::EmptyStructure; end
840
+
723
841
  # @!attribute [rw] site_id
724
842
  # The ID or the Amazon Resource Name (ARN) of the site.
725
843
  # @return [String]
@@ -736,6 +854,42 @@ module Aws::Outposts
736
854
  #
737
855
  class DeleteSiteOutput < Aws::EmptyStructure; end
738
856
 
857
+ # Information about an instance type that can be ordered for an Outpost,
858
+ # including hardware specifications and supported form factors.
859
+ #
860
+ # @!attribute [rw] instance_type
861
+ # The instance type.
862
+ # @return [String]
863
+ #
864
+ # @!attribute [rw] vcp_us
865
+ # The number of default VCPUs in the instance type.
866
+ # @return [Integer]
867
+ #
868
+ # @!attribute [rw] memory_in_mib
869
+ # The memory size of the instance type, in MiB.
870
+ # @return [Integer]
871
+ #
872
+ # @!attribute [rw] network_performance
873
+ # The network performance of the instance type.
874
+ # @return [String]
875
+ #
876
+ # @!attribute [rw] form_factor_configs
877
+ # The supported form factor and Outpost generation configurations for
878
+ # the instance type.
879
+ # @return [Array<Types::FormFactorConfig>]
880
+ #
881
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/DetailedInstanceTypeItem AWS API Documentation
882
+ #
883
+ class DetailedInstanceTypeItem < Struct.new(
884
+ :instance_type,
885
+ :vcp_us,
886
+ :memory_in_mib,
887
+ :network_performance,
888
+ :form_factor_configs)
889
+ SENSITIVE = []
890
+ include Aws::Structure
891
+ end
892
+
739
893
  # Information about EC2 capacity.
740
894
  #
741
895
  # @!attribute [rw] family
@@ -760,6 +914,30 @@ module Aws::Outposts
760
914
  include Aws::Structure
761
915
  end
762
916
 
917
+ # A supported form factor and Outpost generation configuration for an
918
+ # instance type.
919
+ #
920
+ # @!attribute [rw] form_factor
921
+ # The form factor. Valid values are `RACK` for rack-based Outposts and
922
+ # `SERVER` for server-based Outposts.
923
+ # @return [String]
924
+ #
925
+ # @!attribute [rw] outpost_generation
926
+ # The Outpost generation. Valid values are `GENERATION_1` for
927
+ # first-generation rack deployments and `GENERATION_2` for
928
+ # second-generation rack deployments. This value is not set for server
929
+ # form factors.
930
+ # @return [String]
931
+ #
932
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/FormFactorConfig AWS API Documentation
933
+ #
934
+ class FormFactorConfig < Struct.new(
935
+ :form_factor,
936
+ :outpost_generation)
937
+ SENSITIVE = []
938
+ include Aws::Structure
939
+ end
940
+
763
941
  # @!attribute [rw] capacity_task_id
764
942
  # ID of the capacity task.
765
943
  # @return [String]
@@ -1141,6 +1319,30 @@ module Aws::Outposts
1141
1319
  include Aws::Structure
1142
1320
  end
1143
1321
 
1322
+ # @!attribute [rw] quote_identifier
1323
+ # The ID of the quote.
1324
+ # @return [String]
1325
+ #
1326
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetQuoteInput AWS API Documentation
1327
+ #
1328
+ class GetQuoteInput < Struct.new(
1329
+ :quote_identifier)
1330
+ SENSITIVE = []
1331
+ include Aws::Structure
1332
+ end
1333
+
1334
+ # @!attribute [rw] quote
1335
+ # Information about the quote.
1336
+ # @return [Types::Quote]
1337
+ #
1338
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetQuoteOutput AWS API Documentation
1339
+ #
1340
+ class GetQuoteOutput < Struct.new(
1341
+ :quote)
1342
+ SENSITIVE = []
1343
+ include Aws::Structure
1344
+ end
1345
+
1144
1346
  # @!attribute [rw] outpost_identifier
1145
1347
  # The ID or ARN of the Outpost.
1146
1348
  # @return [String]
@@ -1667,6 +1869,48 @@ module Aws::Outposts
1667
1869
  include Aws::Structure
1668
1870
  end
1669
1871
 
1872
+ # @!attribute [rw] outpost_generation_filter
1873
+ # Filters the results by Outpost generation. Specify `GENERATION_1`
1874
+ # for first-generation rack deployments or `GENERATION_2` for
1875
+ # second-generation rack deployments.
1876
+ # @return [String]
1877
+ #
1878
+ # @!attribute [rw] max_results
1879
+ # The maximum page size.
1880
+ # @return [Integer]
1881
+ #
1882
+ # @!attribute [rw] next_token
1883
+ # The pagination token.
1884
+ # @return [String]
1885
+ #
1886
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListOrderableInstanceTypesInput AWS API Documentation
1887
+ #
1888
+ class ListOrderableInstanceTypesInput < Struct.new(
1889
+ :outpost_generation_filter,
1890
+ :max_results,
1891
+ :next_token)
1892
+ SENSITIVE = []
1893
+ include Aws::Structure
1894
+ end
1895
+
1896
+ # @!attribute [rw] instance_types
1897
+ # Information about the instance types that can be ordered for the
1898
+ # Outpost.
1899
+ # @return [Array<Types::DetailedInstanceTypeItem>]
1900
+ #
1901
+ # @!attribute [rw] next_token
1902
+ # The pagination token.
1903
+ # @return [String]
1904
+ #
1905
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListOrderableInstanceTypesOutput AWS API Documentation
1906
+ #
1907
+ class ListOrderableInstanceTypesOutput < Struct.new(
1908
+ :instance_types,
1909
+ :next_token)
1910
+ SENSITIVE = []
1911
+ include Aws::Structure
1912
+ end
1913
+
1670
1914
  # @!attribute [rw] outpost_identifier_filter
1671
1915
  # The ID or the Amazon Resource Name (ARN) of the Outpost.
1672
1916
  # @return [String]
@@ -1756,6 +2000,40 @@ module Aws::Outposts
1756
2000
  include Aws::Structure
1757
2001
  end
1758
2002
 
2003
+ # @!attribute [rw] next_token
2004
+ # The pagination token.
2005
+ # @return [String]
2006
+ #
2007
+ # @!attribute [rw] max_results
2008
+ # The maximum page size.
2009
+ # @return [Integer]
2010
+ #
2011
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListQuotesInput AWS API Documentation
2012
+ #
2013
+ class ListQuotesInput < Struct.new(
2014
+ :next_token,
2015
+ :max_results)
2016
+ SENSITIVE = []
2017
+ include Aws::Structure
2018
+ end
2019
+
2020
+ # @!attribute [rw] quotes
2021
+ # Information about the quotes.
2022
+ # @return [Array<Types::QuoteSummary>]
2023
+ #
2024
+ # @!attribute [rw] next_token
2025
+ # The pagination token.
2026
+ # @return [String]
2027
+ #
2028
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListQuotesOutput AWS API Documentation
2029
+ #
2030
+ class ListQuotesOutput < Struct.new(
2031
+ :quotes,
2032
+ :next_token)
2033
+ SENSITIVE = []
2034
+ include Aws::Structure
2035
+ end
2036
+
1759
2037
  # @!attribute [rw] next_token
1760
2038
  # The pagination token.
1761
2039
  # @return [String]
@@ -1848,6 +2126,14 @@ module Aws::Outposts
1848
2126
  # The ID of the Outpost in the order.
1849
2127
  # @return [String]
1850
2128
  #
2129
+ # @!attribute [rw] quote_identifier
2130
+ # The ID of the quote associated with the order.
2131
+ # @return [String]
2132
+ #
2133
+ # @!attribute [rw] quote_option_identifier
2134
+ # The ID of the quote option associated with the order.
2135
+ # @return [String]
2136
+ #
1851
2137
  # @!attribute [rw] order_id
1852
2138
  # The ID of the order.
1853
2139
  # @return [String]
@@ -1902,6 +2188,8 @@ module Aws::Outposts
1902
2188
  #
1903
2189
  class Order < Struct.new(
1904
2190
  :outpost_id,
2191
+ :quote_identifier,
2192
+ :quote_option_identifier,
1905
2193
  :order_id,
1906
2194
  :status,
1907
2195
  :line_items,
@@ -1974,6 +2262,82 @@ module Aws::Outposts
1974
2262
  include Aws::Structure
1975
2263
  end
1976
2264
 
2265
+ # A requirement that must be met before an order can be submitted for a
2266
+ # quote.
2267
+ #
2268
+ # @!attribute [rw] status_message
2269
+ # A message about the ordering requirement.
2270
+ # @return [String]
2271
+ #
2272
+ # @!attribute [rw] ordering_requirement_type
2273
+ # The type of ordering requirement. Indicates which check failed or
2274
+ # passed.
2275
+ #
2276
+ # * `OUTPOST_ACTIVE_CHECK_ERROR` - The Outpost must be in an active
2277
+ # state.
2278
+ #
2279
+ # * `MAXIMUM_ALLOWED_ORDERS_CHECK_ERROR` - The maximum number of
2280
+ # allowed orders has been reached.
2281
+ #
2282
+ # * `VALID_ZIP_CODE_CHECK_ERROR` - The site address must have a valid
2283
+ # zip code.
2284
+ #
2285
+ # * `RACK_PHYSICAL_PROPERTIES_CHECK_ERROR` - The rack physical
2286
+ # properties do not meet requirements.
2287
+ #
2288
+ # * `OPERATING_ADDRESS_EXISTENCE_CHECK_ERROR` - The site must have an
2289
+ # operating address.
2290
+ #
2291
+ # * `SHIPPING_ADDRESS_EXISTENCE_CHECK_ERROR` - The site must have a
2292
+ # shipping address.
2293
+ #
2294
+ # * `COUNTRY_CODE_MISMATCH_CHECK_ERROR` - The country code on the
2295
+ # quote does not match the Outpost site country.
2296
+ #
2297
+ # * `OUTPOST_GENERATION_MISMATCH_ERROR` - The Outpost generation does
2298
+ # not match the requested configuration.
2299
+ #
2300
+ # * `OUTPOST_ID_MISSING_ON_QUOTE_ERROR` - The quote must be associated
2301
+ # with an Outpost before submitting an order.
2302
+ #
2303
+ # * `ENTERPRISE_SUPPORT_ERROR` - Enterprise Support is required.
2304
+ #
2305
+ # * `SHIPPING_ADDRESS_MISSING_CONTACT_NAME_ERROR` - The shipping
2306
+ # address must have a contact name.
2307
+ #
2308
+ # * `SHIPPING_ADDRESS_MISSING_CONTACT_NUMBER_ERROR` - The shipping
2309
+ # address must have a contact phone number.
2310
+ #
2311
+ # * `SHIPPING_ADDRESS_MISSING_CONTACT_INFO_ERROR` - The shipping
2312
+ # address must have contact information.
2313
+ #
2314
+ # * `OUTPOST_STATE_CHANGED_ERROR` - The Outpost state has changed
2315
+ # since the quote was created.
2316
+ #
2317
+ # * `OUTPOST_NOT_FOUND_ERROR` - The Outpost associated with the quote
2318
+ # was not found.
2319
+ #
2320
+ # * `OUTPOST_RENEWAL_REQUIRED_ERROR` - The Outpost requires a renewal
2321
+ # before a new order can be submitted.
2322
+ #
2323
+ # * `UNSUPPORTED` - The requirement type is not recognized.
2324
+ # @return [String]
2325
+ #
2326
+ # @!attribute [rw] status
2327
+ # The status of the ordering requirement. Valid values are `PASS`,
2328
+ # `FAIL`, and `EXEMPT`.
2329
+ # @return [String]
2330
+ #
2331
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/OrderingRequirement AWS API Documentation
2332
+ #
2333
+ class OrderingRequirement < Struct.new(
2334
+ :status_message,
2335
+ :ordering_requirement_type,
2336
+ :status)
2337
+ SENSITIVE = []
2338
+ include Aws::Structure
2339
+ end
2340
+
1977
2341
  # Information about an Outpost.
1978
2342
  #
1979
2343
  # @!attribute [rw] outpost_id
@@ -2062,6 +2426,313 @@ module Aws::Outposts
2062
2426
  include Aws::Structure
2063
2427
  end
2064
2428
 
2429
+ # Information about a quote for an Outpost. A quote provides pricing and
2430
+ # configuration options based on the requested capacity.
2431
+ #
2432
+ # @!attribute [rw] quote_id
2433
+ # The ID of the quote.
2434
+ # @return [String]
2435
+ #
2436
+ # @!attribute [rw] account_id
2437
+ # The ID of the account that owns the quote.
2438
+ # @return [String]
2439
+ #
2440
+ # @!attribute [rw] quote_status
2441
+ # The status of the quote.
2442
+ #
2443
+ # * `CREATED` - The quote has been created and is available for
2444
+ # review.
2445
+ #
2446
+ # * `ORDER_SUBMITTED` - An order has been submitted for the quote.
2447
+ #
2448
+ # * `EXPIRED` - The quote has expired and can no longer be used to
2449
+ # submit an order.
2450
+ # @return [String]
2451
+ #
2452
+ # @!attribute [rw] status_message
2453
+ # A message about the status of the quote.
2454
+ # @return [String]
2455
+ #
2456
+ # @!attribute [rw] outpost_arn
2457
+ # The ARN of the Outpost associated with the quote.
2458
+ # @return [String]
2459
+ #
2460
+ # @!attribute [rw] country_code
2461
+ # The country code for the Outpost site location.
2462
+ # @return [String]
2463
+ #
2464
+ # @!attribute [rw] requested_capacities
2465
+ # The capacity requirements specified in the quote request.
2466
+ # @return [Array<Types::QuoteCapacity>]
2467
+ #
2468
+ # @!attribute [rw] requested_constraints
2469
+ # The physical constraints specified in the quote request.
2470
+ # @return [Array<Types::QuoteConstraint>]
2471
+ #
2472
+ # @!attribute [rw] requested_payment_options
2473
+ # The payment options specified in the quote request.
2474
+ # @return [Array<String>]
2475
+ #
2476
+ # @!attribute [rw] requested_payment_terms
2477
+ # The payment terms specified in the quote request.
2478
+ # @return [Array<String>]
2479
+ #
2480
+ # @!attribute [rw] quote_options
2481
+ # The configuration and pricing options for the quote. Each option
2482
+ # includes capacity details, physical specifications, and pricing
2483
+ # information.
2484
+ # @return [Array<Types::QuoteOption>]
2485
+ #
2486
+ # @!attribute [rw] ordering_requirements
2487
+ # The requirements that must be met before an order can be submitted
2488
+ # for the quote.
2489
+ # @return [Array<Types::OrderingRequirement>]
2490
+ #
2491
+ # @!attribute [rw] submitted_order_id
2492
+ # The ID of the order submitted for the quote.
2493
+ # @return [String]
2494
+ #
2495
+ # @!attribute [rw] created_date
2496
+ # The date the quote was created.
2497
+ # @return [Time]
2498
+ #
2499
+ # @!attribute [rw] expiration_date
2500
+ # The date the quote expires.
2501
+ # @return [Time]
2502
+ #
2503
+ # @!attribute [rw] description
2504
+ # The description of the quote.
2505
+ # @return [String]
2506
+ #
2507
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/Quote AWS API Documentation
2508
+ #
2509
+ class Quote < Struct.new(
2510
+ :quote_id,
2511
+ :account_id,
2512
+ :quote_status,
2513
+ :status_message,
2514
+ :outpost_arn,
2515
+ :country_code,
2516
+ :requested_capacities,
2517
+ :requested_constraints,
2518
+ :requested_payment_options,
2519
+ :requested_payment_terms,
2520
+ :quote_options,
2521
+ :ordering_requirements,
2522
+ :submitted_order_id,
2523
+ :created_date,
2524
+ :expiration_date,
2525
+ :description)
2526
+ SENSITIVE = [:description]
2527
+ include Aws::Structure
2528
+ end
2529
+
2530
+ # A capacity requirement for a quote. Specifies the type of capacity,
2531
+ # the unit, and the quantity.
2532
+ #
2533
+ # @!attribute [rw] quote_capacity_type
2534
+ # The type of capacity. Valid values are `EC2`, `EBS`, and `S3`.
2535
+ # @return [String]
2536
+ #
2537
+ # @!attribute [rw] unit
2538
+ # The unit of measurement for the capacity. For Amazon EC2, this is
2539
+ # the instance type (for example, `c5.24xlarge`). For Amazon EBS and
2540
+ # Amazon S3, this is the storage unit (for example, `TiB` for
2541
+ # tebibytes).
2542
+ # @return [String]
2543
+ #
2544
+ # @!attribute [rw] quantity
2545
+ # The quantity of the specified capacity unit. For Amazon EC2, this is
2546
+ # the number of additional instances to add to the Outpost. For Amazon
2547
+ # EBS and Amazon S3, this is the total desired end-state capacity of
2548
+ # the Outpost.
2549
+ # @return [Float]
2550
+ #
2551
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/QuoteCapacity AWS API Documentation
2552
+ #
2553
+ class QuoteCapacity < Struct.new(
2554
+ :quote_capacity_type,
2555
+ :unit,
2556
+ :quantity)
2557
+ SENSITIVE = []
2558
+ include Aws::Structure
2559
+ end
2560
+
2561
+ # A physical constraint for a quote.
2562
+ #
2563
+ # @!attribute [rw] quote_constraint_type
2564
+ # The type of constraint. Valid values are `RACK_MAXIMUM`,
2565
+ # `RACK_MAX_POWER_KVA`, and `RACK_MAX_WEIGHT_LBS`.
2566
+ # @return [String]
2567
+ #
2568
+ # @!attribute [rw] value
2569
+ # The value of the constraint.
2570
+ # @return [String]
2571
+ #
2572
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/QuoteConstraint AWS API Documentation
2573
+ #
2574
+ class QuoteConstraint < Struct.new(
2575
+ :quote_constraint_type,
2576
+ :value)
2577
+ SENSITIVE = []
2578
+ include Aws::Structure
2579
+ end
2580
+
2581
+ # A configuration and pricing option for a quote. Each option includes
2582
+ # the capacity breakdown, physical specifications for the racks or
2583
+ # servers, and pricing details.
2584
+ #
2585
+ # @!attribute [rw] quote_option_identifier
2586
+ # The ID of the quote option.
2587
+ # @return [String]
2588
+ #
2589
+ # @!attribute [rw] capacities
2590
+ # The capacities included in this quote option.
2591
+ # @return [Array<Types::QuoteCapacity>]
2592
+ #
2593
+ # @!attribute [rw] capacity_summary
2594
+ # A summary of the existing, final, and changed capacity for this
2595
+ # quote option.
2596
+ # @return [Types::CapacitySummary]
2597
+ #
2598
+ # @!attribute [rw] specifications
2599
+ # The physical specifications for the racks or servers in this quote
2600
+ # option.
2601
+ # @return [Array<Types::QuoteSpecification>]
2602
+ #
2603
+ # @!attribute [rw] pricing_options
2604
+ # The pricing options for this quote option.
2605
+ # @return [Array<Types::PricingOption>]
2606
+ #
2607
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/QuoteOption AWS API Documentation
2608
+ #
2609
+ class QuoteOption < Struct.new(
2610
+ :quote_option_identifier,
2611
+ :capacities,
2612
+ :capacity_summary,
2613
+ :specifications,
2614
+ :pricing_options)
2615
+ SENSITIVE = []
2616
+ include Aws::Structure
2617
+ end
2618
+
2619
+ # A physical specification for a quote option. Describes the rack or
2620
+ # server configuration that would be deployed.
2621
+ #
2622
+ # @!attribute [rw] quote_specification_type
2623
+ # The type of specification. Valid values are `NEW_RACK`,
2624
+ # `UPDATED_RACK`, `EXISTING_RACK`, and `SERVER`.
2625
+ # @return [String]
2626
+ #
2627
+ # @!attribute [rw] existing_rack_specification_details
2628
+ # The existing rack specification details, if the specification type
2629
+ # is `UPDATED_RACK` or `EXISTING_RACK`.
2630
+ # @return [Types::RackSpecificationDetails]
2631
+ #
2632
+ # @!attribute [rw] final_rack_specification_details
2633
+ # The final rack specification details after the quote is fulfilled.
2634
+ # @return [Types::RackSpecificationDetails]
2635
+ #
2636
+ # @!attribute [rw] server_specification_details
2637
+ # The server specification details, if the specification type is
2638
+ # `SERVER`.
2639
+ # @return [Types::ServerSpecificationDetails]
2640
+ #
2641
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/QuoteSpecification AWS API Documentation
2642
+ #
2643
+ class QuoteSpecification < Struct.new(
2644
+ :quote_specification_type,
2645
+ :existing_rack_specification_details,
2646
+ :final_rack_specification_details,
2647
+ :server_specification_details)
2648
+ SENSITIVE = []
2649
+ include Aws::Structure
2650
+ end
2651
+
2652
+ # Summary information about a quote.
2653
+ #
2654
+ # @!attribute [rw] quote_id
2655
+ # The ID of the quote.
2656
+ # @return [String]
2657
+ #
2658
+ # @!attribute [rw] account_id
2659
+ # The ID of the account that owns the quote.
2660
+ # @return [String]
2661
+ #
2662
+ # @!attribute [rw] quote_status
2663
+ # The status of the quote.
2664
+ # @return [String]
2665
+ #
2666
+ # @!attribute [rw] status_message
2667
+ # A message about the status of the quote.
2668
+ # @return [String]
2669
+ #
2670
+ # @!attribute [rw] outpost_arn
2671
+ # The ARN of the Outpost associated with the quote.
2672
+ # @return [String]
2673
+ #
2674
+ # @!attribute [rw] country_code
2675
+ # The country code for the Outpost site location.
2676
+ # @return [String]
2677
+ #
2678
+ # @!attribute [rw] requested_capacities
2679
+ # The capacity requirements specified in the quote request.
2680
+ # @return [Array<Types::QuoteCapacity>]
2681
+ #
2682
+ # @!attribute [rw] requested_constraints
2683
+ # The physical constraints specified in the quote request.
2684
+ # @return [Array<Types::QuoteConstraint>]
2685
+ #
2686
+ # @!attribute [rw] requested_payment_options
2687
+ # The payment options specified in the quote request.
2688
+ # @return [Array<String>]
2689
+ #
2690
+ # @!attribute [rw] requested_payment_terms
2691
+ # The payment terms specified in the quote request.
2692
+ # @return [Array<String>]
2693
+ #
2694
+ # @!attribute [rw] quote_options
2695
+ # The configuration and pricing options for the quote.
2696
+ # @return [Array<Types::QuoteOption>]
2697
+ #
2698
+ # @!attribute [rw] submitted_order_id
2699
+ # The ID of the order submitted for the quote.
2700
+ # @return [String]
2701
+ #
2702
+ # @!attribute [rw] created_date
2703
+ # The date the quote was created.
2704
+ # @return [Time]
2705
+ #
2706
+ # @!attribute [rw] expiration_date
2707
+ # The date the quote expires.
2708
+ # @return [Time]
2709
+ #
2710
+ # @!attribute [rw] description
2711
+ # The description of the quote.
2712
+ # @return [String]
2713
+ #
2714
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/QuoteSummary AWS API Documentation
2715
+ #
2716
+ class QuoteSummary < Struct.new(
2717
+ :quote_id,
2718
+ :account_id,
2719
+ :quote_status,
2720
+ :status_message,
2721
+ :outpost_arn,
2722
+ :country_code,
2723
+ :requested_capacities,
2724
+ :requested_constraints,
2725
+ :requested_payment_options,
2726
+ :requested_payment_terms,
2727
+ :quote_options,
2728
+ :submitted_order_id,
2729
+ :created_date,
2730
+ :expiration_date,
2731
+ :description)
2732
+ SENSITIVE = [:description]
2733
+ include Aws::Structure
2734
+ end
2735
+
2065
2736
  # Information about the physical and logistical details for racks at
2066
2737
  # sites. For more information about hardware requirements for racks, see
2067
2738
  # [Network readiness checklist][1] in the Amazon Web Services Outposts
@@ -2133,6 +2804,114 @@ module Aws::Outposts
2133
2804
  include Aws::Structure
2134
2805
  end
2135
2806
 
2807
+ # The physical specification details for a rack in a quote option.
2808
+ #
2809
+ # @!attribute [rw] rack_id
2810
+ # The ID of the rack.
2811
+ # @return [String]
2812
+ #
2813
+ # @!attribute [rw] rack_use
2814
+ # The use of the rack. Valid values are `COMPUTE` and `NETWORKING`.
2815
+ # @return [String]
2816
+ #
2817
+ # @!attribute [rw] rack_power_draw_kva
2818
+ # The maximum power draw of the rack in kVA.
2819
+ # @return [Float]
2820
+ #
2821
+ # @!attribute [rw] rack_weight_lbs
2822
+ # The weight of the rack in pounds.
2823
+ # @return [Float]
2824
+ #
2825
+ # @!attribute [rw] rack_height_inches
2826
+ # The height of the rack in inches.
2827
+ # @return [Float]
2828
+ #
2829
+ # @!attribute [rw] rack_width_inches
2830
+ # The width of the rack in inches.
2831
+ # @return [Float]
2832
+ #
2833
+ # @!attribute [rw] rack_depth_inches
2834
+ # The depth of the rack in inches.
2835
+ # @return [Float]
2836
+ #
2837
+ # @!attribute [rw] rack_unit_height
2838
+ # The rack unit height.
2839
+ #
2840
+ # * `HEIGHT_42U` - 42 rack units.
2841
+ #
2842
+ # * `HEIGHT_2U` - 2 rack units.
2843
+ #
2844
+ # * `HEIGHT_1U` - 1 rack unit.
2845
+ # @return [String]
2846
+ #
2847
+ # @!attribute [rw] ec2_capacities
2848
+ # The Amazon EC2 capacities for the rack.
2849
+ # @return [Array<Types::EC2Capacity>]
2850
+ #
2851
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/RackSpecificationDetails AWS API Documentation
2852
+ #
2853
+ class RackSpecificationDetails < Struct.new(
2854
+ :rack_id,
2855
+ :rack_use,
2856
+ :rack_power_draw_kva,
2857
+ :rack_weight_lbs,
2858
+ :rack_height_inches,
2859
+ :rack_width_inches,
2860
+ :rack_depth_inches,
2861
+ :rack_unit_height,
2862
+ :ec2_capacities)
2863
+ SENSITIVE = []
2864
+ include Aws::Structure
2865
+ end
2866
+
2867
+ # The physical specification details for a server in a quote option.
2868
+ #
2869
+ # @!attribute [rw] server_power_draw_kva
2870
+ # The maximum power draw of the server in kVA.
2871
+ # @return [Float]
2872
+ #
2873
+ # @!attribute [rw] server_weight_lbs
2874
+ # The weight of the server in pounds.
2875
+ # @return [Float]
2876
+ #
2877
+ # @!attribute [rw] server_height_inches
2878
+ # The height of the server in inches.
2879
+ # @return [Float]
2880
+ #
2881
+ # @!attribute [rw] server_width_inches
2882
+ # The width of the server in inches.
2883
+ # @return [Float]
2884
+ #
2885
+ # @!attribute [rw] server_depth_inches
2886
+ # The depth of the server in inches.
2887
+ # @return [Float]
2888
+ #
2889
+ # @!attribute [rw] rack_unit_height
2890
+ # The rack unit height of the server.
2891
+ #
2892
+ # * `HEIGHT_2U` - 2 rack units.
2893
+ #
2894
+ # * `HEIGHT_1U` - 1 rack unit.
2895
+ # @return [String]
2896
+ #
2897
+ # @!attribute [rw] ec2_capacities
2898
+ # The Amazon EC2 capacities for the server.
2899
+ # @return [Array<Types::EC2Capacity>]
2900
+ #
2901
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ServerSpecificationDetails AWS API Documentation
2902
+ #
2903
+ class ServerSpecificationDetails < Struct.new(
2904
+ :server_power_draw_kva,
2905
+ :server_weight_lbs,
2906
+ :server_height_inches,
2907
+ :server_width_inches,
2908
+ :server_depth_inches,
2909
+ :rack_unit_height,
2910
+ :ec2_capacities)
2911
+ SENSITIVE = []
2912
+ include Aws::Structure
2913
+ end
2914
+
2136
2915
  # You have exceeded a service quota.
2137
2916
  #
2138
2917
  # @!attribute [rw] message
@@ -2495,6 +3274,11 @@ module Aws::Outposts
2495
3274
  # The date your subscription ends.
2496
3275
  # @return [Time]
2497
3276
  #
3277
+ # @!attribute [rw] currency
3278
+ # The currency of the subscription price. Currently only `USD` is
3279
+ # supported.
3280
+ # @return [String]
3281
+ #
2498
3282
  # @!attribute [rw] monthly_recurring_price
2499
3283
  # The amount you are billed each month in the subscription period.
2500
3284
  # @return [Float]
@@ -2513,6 +3297,7 @@ module Aws::Outposts
2513
3297
  :order_ids,
2514
3298
  :begin_date,
2515
3299
  :end_date,
3300
+ :currency,
2516
3301
  :monthly_recurring_price,
2517
3302
  :upfront_price)
2518
3303
  SENSITIVE = []
@@ -2537,13 +3322,18 @@ module Aws::Outposts
2537
3322
  # The monthly recurring price.
2538
3323
  # @return [Float]
2539
3324
  #
3325
+ # @!attribute [rw] currency
3326
+ # The currency of the price. Currently only `USD` is supported.
3327
+ # @return [String]
3328
+ #
2540
3329
  # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/SubscriptionPricingDetails AWS API Documentation
2541
3330
  #
2542
3331
  class SubscriptionPricingDetails < Struct.new(
2543
3332
  :payment_option,
2544
3333
  :payment_term,
2545
3334
  :upfront_price,
2546
- :monthly_recurring_price)
3335
+ :monthly_recurring_price,
3336
+ :currency)
2547
3337
  SENSITIVE = []
2548
3338
  include Aws::Structure
2549
3339
  end
@@ -2629,6 +3419,66 @@ module Aws::Outposts
2629
3419
  include Aws::Structure
2630
3420
  end
2631
3421
 
3422
+ # @!attribute [rw] quote_identifier
3423
+ # The ID of the quote.
3424
+ # @return [String]
3425
+ #
3426
+ # @!attribute [rw] outpost_identifier
3427
+ # The ID or ARN of the Outpost to associate with the quote. Specify an
3428
+ # empty string to remove the Outpost association.
3429
+ # @return [String]
3430
+ #
3431
+ # @!attribute [rw] country_code
3432
+ # The country code for the Outpost site location.
3433
+ # @return [String]
3434
+ #
3435
+ # @!attribute [rw] requested_capacities
3436
+ # The updated capacity requirements for the quote.
3437
+ # @return [Array<Types::QuoteCapacity>]
3438
+ #
3439
+ # @!attribute [rw] requested_constraints
3440
+ # The updated physical constraints for the quote.
3441
+ # @return [Array<Types::QuoteConstraint>]
3442
+ #
3443
+ # @!attribute [rw] requested_payment_options
3444
+ # The updated payment options to include in the quote pricing.
3445
+ # @return [Array<String>]
3446
+ #
3447
+ # @!attribute [rw] requested_payment_terms
3448
+ # The updated payment terms to include in the quote pricing.
3449
+ # @return [Array<String>]
3450
+ #
3451
+ # @!attribute [rw] description
3452
+ # A description for the quote.
3453
+ # @return [String]
3454
+ #
3455
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateQuoteInput AWS API Documentation
3456
+ #
3457
+ class UpdateQuoteInput < Struct.new(
3458
+ :quote_identifier,
3459
+ :outpost_identifier,
3460
+ :country_code,
3461
+ :requested_capacities,
3462
+ :requested_constraints,
3463
+ :requested_payment_options,
3464
+ :requested_payment_terms,
3465
+ :description)
3466
+ SENSITIVE = [:description]
3467
+ include Aws::Structure
3468
+ end
3469
+
3470
+ # @!attribute [rw] quote
3471
+ # Information about the updated quote.
3472
+ # @return [Types::Quote]
3473
+ #
3474
+ # @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateQuoteOutput AWS API Documentation
3475
+ #
3476
+ class UpdateQuoteOutput < Struct.new(
3477
+ :quote)
3478
+ SENSITIVE = []
3479
+ include Aws::Structure
3480
+ end
3481
+
2632
3482
  # @!attribute [rw] site_id
2633
3483
  # The ID or the Amazon Resource Name (ARN) of the site.
2634
3484
  # @return [String]