aws-sdk-outposts 1.103.0 → 1.104.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-outposts/client.rb +622 -1
- data/lib/aws-sdk-outposts/client_api.rb +311 -0
- data/lib/aws-sdk-outposts/types.rb +832 -2
- data/lib/aws-sdk-outposts.rb +1 -1
- data/sig/client.rbs +100 -0
- data/sig/types.rbs +201 -0
- metadata +1 -1
|
@@ -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
|
|
@@ -575,6 +600,68 @@ module Aws::Outposts
|
|
|
575
600
|
include Aws::Structure
|
|
576
601
|
end
|
|
577
602
|
|
|
603
|
+
# @!attribute [rw] outpost_identifier
|
|
604
|
+
# The ID or ARN of the Outpost to associate with the quote. If not
|
|
605
|
+
# specified, the quote is created without an Outpost association.
|
|
606
|
+
# @return [String]
|
|
607
|
+
#
|
|
608
|
+
# @!attribute [rw] country_code
|
|
609
|
+
# The country code for the Outpost site location.
|
|
610
|
+
# @return [String]
|
|
611
|
+
#
|
|
612
|
+
# @!attribute [rw] requested_capacities
|
|
613
|
+
# The capacity requirements for the quote. Each entry specifies a
|
|
614
|
+
# capacity type (such as Amazon EC2), the unit, and the quantity. For
|
|
615
|
+
# Amazon EC2, the quantity is the number of additional instances to
|
|
616
|
+
# add to the Outpost. For Amazon EBS and Amazon S3, the quantity is
|
|
617
|
+
# the total desired end-state capacity of the Outpost.
|
|
618
|
+
# @return [Array<Types::QuoteCapacity>]
|
|
619
|
+
#
|
|
620
|
+
# @!attribute [rw] requested_constraints
|
|
621
|
+
# The physical constraints for the quote, such as maximum number of
|
|
622
|
+
# racks, maximum power draw per rack, or maximum weight per rack.
|
|
623
|
+
# @return [Array<Types::QuoteConstraint>]
|
|
624
|
+
#
|
|
625
|
+
# @!attribute [rw] requested_payment_options
|
|
626
|
+
# The payment options to include in the quote pricing. If not
|
|
627
|
+
# specified, all available payment options are returned.
|
|
628
|
+
# @return [Array<String>]
|
|
629
|
+
#
|
|
630
|
+
# @!attribute [rw] requested_payment_terms
|
|
631
|
+
# The payment terms to include in the quote pricing. If not specified,
|
|
632
|
+
# all available payment terms are returned.
|
|
633
|
+
# @return [Array<String>]
|
|
634
|
+
#
|
|
635
|
+
# @!attribute [rw] description
|
|
636
|
+
# A description for the quote.
|
|
637
|
+
# @return [String]
|
|
638
|
+
#
|
|
639
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateQuoteInput AWS API Documentation
|
|
640
|
+
#
|
|
641
|
+
class CreateQuoteInput < Struct.new(
|
|
642
|
+
:outpost_identifier,
|
|
643
|
+
:country_code,
|
|
644
|
+
:requested_capacities,
|
|
645
|
+
:requested_constraints,
|
|
646
|
+
:requested_payment_options,
|
|
647
|
+
:requested_payment_terms,
|
|
648
|
+
:description)
|
|
649
|
+
SENSITIVE = [:description]
|
|
650
|
+
include Aws::Structure
|
|
651
|
+
end
|
|
652
|
+
|
|
653
|
+
# @!attribute [rw] quote
|
|
654
|
+
# Information about the quote.
|
|
655
|
+
# @return [Types::Quote]
|
|
656
|
+
#
|
|
657
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateQuoteOutput AWS API Documentation
|
|
658
|
+
#
|
|
659
|
+
class CreateQuoteOutput < Struct.new(
|
|
660
|
+
:quote)
|
|
661
|
+
SENSITIVE = []
|
|
662
|
+
include Aws::Structure
|
|
663
|
+
end
|
|
664
|
+
|
|
578
665
|
# @!attribute [rw] payment_option
|
|
579
666
|
# The payment option.
|
|
580
667
|
# @return [String]
|
|
@@ -626,6 +713,10 @@ module Aws::Outposts
|
|
|
626
713
|
# The monthly recurring price of the renewal.
|
|
627
714
|
# @return [Float]
|
|
628
715
|
#
|
|
716
|
+
# @!attribute [rw] currency
|
|
717
|
+
# The currency of the renewal price.
|
|
718
|
+
# @return [String]
|
|
719
|
+
#
|
|
629
720
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreateRenewalOutput AWS API Documentation
|
|
630
721
|
#
|
|
631
722
|
class CreateRenewalOutput < Struct.new(
|
|
@@ -633,7 +724,8 @@ module Aws::Outposts
|
|
|
633
724
|
:payment_term,
|
|
634
725
|
:outpost_id,
|
|
635
726
|
:upfront_price,
|
|
636
|
-
:monthly_recurring_price
|
|
727
|
+
:monthly_recurring_price,
|
|
728
|
+
:currency)
|
|
637
729
|
SENSITIVE = []
|
|
638
730
|
include Aws::Structure
|
|
639
731
|
end
|
|
@@ -720,6 +812,22 @@ module Aws::Outposts
|
|
|
720
812
|
#
|
|
721
813
|
class DeleteOutpostOutput < Aws::EmptyStructure; end
|
|
722
814
|
|
|
815
|
+
# @!attribute [rw] quote_identifier
|
|
816
|
+
# The ID or ARN of the quote.
|
|
817
|
+
# @return [String]
|
|
818
|
+
#
|
|
819
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/DeleteQuoteInput AWS API Documentation
|
|
820
|
+
#
|
|
821
|
+
class DeleteQuoteInput < Struct.new(
|
|
822
|
+
:quote_identifier)
|
|
823
|
+
SENSITIVE = []
|
|
824
|
+
include Aws::Structure
|
|
825
|
+
end
|
|
826
|
+
|
|
827
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/DeleteQuoteOutput AWS API Documentation
|
|
828
|
+
#
|
|
829
|
+
class DeleteQuoteOutput < Aws::EmptyStructure; end
|
|
830
|
+
|
|
723
831
|
# @!attribute [rw] site_id
|
|
724
832
|
# The ID or the Amazon Resource Name (ARN) of the site.
|
|
725
833
|
# @return [String]
|
|
@@ -736,6 +844,42 @@ module Aws::Outposts
|
|
|
736
844
|
#
|
|
737
845
|
class DeleteSiteOutput < Aws::EmptyStructure; end
|
|
738
846
|
|
|
847
|
+
# Information about an instance type that can be ordered for an Outpost,
|
|
848
|
+
# including hardware specifications and supported form factors.
|
|
849
|
+
#
|
|
850
|
+
# @!attribute [rw] instance_type
|
|
851
|
+
# The instance type.
|
|
852
|
+
# @return [String]
|
|
853
|
+
#
|
|
854
|
+
# @!attribute [rw] vcp_us
|
|
855
|
+
# The number of default VCPUs in the instance type.
|
|
856
|
+
# @return [Integer]
|
|
857
|
+
#
|
|
858
|
+
# @!attribute [rw] memory_in_mib
|
|
859
|
+
# The memory size of the instance type, in MiB.
|
|
860
|
+
# @return [Integer]
|
|
861
|
+
#
|
|
862
|
+
# @!attribute [rw] network_performance
|
|
863
|
+
# The network performance of the instance type.
|
|
864
|
+
# @return [String]
|
|
865
|
+
#
|
|
866
|
+
# @!attribute [rw] form_factor_configs
|
|
867
|
+
# The supported form factor and Outpost generation configurations for
|
|
868
|
+
# the instance type.
|
|
869
|
+
# @return [Array<Types::FormFactorConfig>]
|
|
870
|
+
#
|
|
871
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/DetailedInstanceTypeItem AWS API Documentation
|
|
872
|
+
#
|
|
873
|
+
class DetailedInstanceTypeItem < Struct.new(
|
|
874
|
+
:instance_type,
|
|
875
|
+
:vcp_us,
|
|
876
|
+
:memory_in_mib,
|
|
877
|
+
:network_performance,
|
|
878
|
+
:form_factor_configs)
|
|
879
|
+
SENSITIVE = []
|
|
880
|
+
include Aws::Structure
|
|
881
|
+
end
|
|
882
|
+
|
|
739
883
|
# Information about EC2 capacity.
|
|
740
884
|
#
|
|
741
885
|
# @!attribute [rw] family
|
|
@@ -760,6 +904,30 @@ module Aws::Outposts
|
|
|
760
904
|
include Aws::Structure
|
|
761
905
|
end
|
|
762
906
|
|
|
907
|
+
# A supported form factor and Outpost generation configuration for an
|
|
908
|
+
# instance type.
|
|
909
|
+
#
|
|
910
|
+
# @!attribute [rw] form_factor
|
|
911
|
+
# The form factor. Valid values are `RACK` for rack-based Outposts and
|
|
912
|
+
# `SERVER` for server-based Outposts.
|
|
913
|
+
# @return [String]
|
|
914
|
+
#
|
|
915
|
+
# @!attribute [rw] outpost_generation
|
|
916
|
+
# The Outpost generation. Valid values are `GENERATION_1` for
|
|
917
|
+
# first-generation rack deployments and `GENERATION_2` for
|
|
918
|
+
# second-generation rack deployments. This value is not set for server
|
|
919
|
+
# form factors.
|
|
920
|
+
# @return [String]
|
|
921
|
+
#
|
|
922
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/FormFactorConfig AWS API Documentation
|
|
923
|
+
#
|
|
924
|
+
class FormFactorConfig < Struct.new(
|
|
925
|
+
:form_factor,
|
|
926
|
+
:outpost_generation)
|
|
927
|
+
SENSITIVE = []
|
|
928
|
+
include Aws::Structure
|
|
929
|
+
end
|
|
930
|
+
|
|
763
931
|
# @!attribute [rw] capacity_task_id
|
|
764
932
|
# ID of the capacity task.
|
|
765
933
|
# @return [String]
|
|
@@ -1141,6 +1309,30 @@ module Aws::Outposts
|
|
|
1141
1309
|
include Aws::Structure
|
|
1142
1310
|
end
|
|
1143
1311
|
|
|
1312
|
+
# @!attribute [rw] quote_identifier
|
|
1313
|
+
# The ID or ARN of the quote.
|
|
1314
|
+
# @return [String]
|
|
1315
|
+
#
|
|
1316
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetQuoteInput AWS API Documentation
|
|
1317
|
+
#
|
|
1318
|
+
class GetQuoteInput < Struct.new(
|
|
1319
|
+
:quote_identifier)
|
|
1320
|
+
SENSITIVE = []
|
|
1321
|
+
include Aws::Structure
|
|
1322
|
+
end
|
|
1323
|
+
|
|
1324
|
+
# @!attribute [rw] quote
|
|
1325
|
+
# Information about the quote.
|
|
1326
|
+
# @return [Types::Quote]
|
|
1327
|
+
#
|
|
1328
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetQuoteOutput AWS API Documentation
|
|
1329
|
+
#
|
|
1330
|
+
class GetQuoteOutput < Struct.new(
|
|
1331
|
+
:quote)
|
|
1332
|
+
SENSITIVE = []
|
|
1333
|
+
include Aws::Structure
|
|
1334
|
+
end
|
|
1335
|
+
|
|
1144
1336
|
# @!attribute [rw] outpost_identifier
|
|
1145
1337
|
# The ID or ARN of the Outpost.
|
|
1146
1338
|
# @return [String]
|
|
@@ -1667,6 +1859,48 @@ module Aws::Outposts
|
|
|
1667
1859
|
include Aws::Structure
|
|
1668
1860
|
end
|
|
1669
1861
|
|
|
1862
|
+
# @!attribute [rw] outpost_generation_filter
|
|
1863
|
+
# Filters the results by Outpost generation. Specify `GENERATION_1`
|
|
1864
|
+
# for first-generation rack deployments or `GENERATION_2` for
|
|
1865
|
+
# second-generation rack deployments.
|
|
1866
|
+
# @return [String]
|
|
1867
|
+
#
|
|
1868
|
+
# @!attribute [rw] max_results
|
|
1869
|
+
# The maximum page size.
|
|
1870
|
+
# @return [Integer]
|
|
1871
|
+
#
|
|
1872
|
+
# @!attribute [rw] next_token
|
|
1873
|
+
# The pagination token.
|
|
1874
|
+
# @return [String]
|
|
1875
|
+
#
|
|
1876
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListOrderableInstanceTypesInput AWS API Documentation
|
|
1877
|
+
#
|
|
1878
|
+
class ListOrderableInstanceTypesInput < Struct.new(
|
|
1879
|
+
:outpost_generation_filter,
|
|
1880
|
+
:max_results,
|
|
1881
|
+
:next_token)
|
|
1882
|
+
SENSITIVE = []
|
|
1883
|
+
include Aws::Structure
|
|
1884
|
+
end
|
|
1885
|
+
|
|
1886
|
+
# @!attribute [rw] instance_types
|
|
1887
|
+
# Information about the instance types that can be ordered for the
|
|
1888
|
+
# Outpost.
|
|
1889
|
+
# @return [Array<Types::DetailedInstanceTypeItem>]
|
|
1890
|
+
#
|
|
1891
|
+
# @!attribute [rw] next_token
|
|
1892
|
+
# The pagination token.
|
|
1893
|
+
# @return [String]
|
|
1894
|
+
#
|
|
1895
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListOrderableInstanceTypesOutput AWS API Documentation
|
|
1896
|
+
#
|
|
1897
|
+
class ListOrderableInstanceTypesOutput < Struct.new(
|
|
1898
|
+
:instance_types,
|
|
1899
|
+
:next_token)
|
|
1900
|
+
SENSITIVE = []
|
|
1901
|
+
include Aws::Structure
|
|
1902
|
+
end
|
|
1903
|
+
|
|
1670
1904
|
# @!attribute [rw] outpost_identifier_filter
|
|
1671
1905
|
# The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
1672
1906
|
# @return [String]
|
|
@@ -1756,6 +1990,40 @@ module Aws::Outposts
|
|
|
1756
1990
|
include Aws::Structure
|
|
1757
1991
|
end
|
|
1758
1992
|
|
|
1993
|
+
# @!attribute [rw] next_token
|
|
1994
|
+
# The pagination token.
|
|
1995
|
+
# @return [String]
|
|
1996
|
+
#
|
|
1997
|
+
# @!attribute [rw] max_results
|
|
1998
|
+
# The maximum page size.
|
|
1999
|
+
# @return [Integer]
|
|
2000
|
+
#
|
|
2001
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListQuotesInput AWS API Documentation
|
|
2002
|
+
#
|
|
2003
|
+
class ListQuotesInput < Struct.new(
|
|
2004
|
+
:next_token,
|
|
2005
|
+
:max_results)
|
|
2006
|
+
SENSITIVE = []
|
|
2007
|
+
include Aws::Structure
|
|
2008
|
+
end
|
|
2009
|
+
|
|
2010
|
+
# @!attribute [rw] quotes
|
|
2011
|
+
# Information about the quotes.
|
|
2012
|
+
# @return [Array<Types::QuoteSummary>]
|
|
2013
|
+
#
|
|
2014
|
+
# @!attribute [rw] next_token
|
|
2015
|
+
# The pagination token.
|
|
2016
|
+
# @return [String]
|
|
2017
|
+
#
|
|
2018
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListQuotesOutput AWS API Documentation
|
|
2019
|
+
#
|
|
2020
|
+
class ListQuotesOutput < Struct.new(
|
|
2021
|
+
:quotes,
|
|
2022
|
+
:next_token)
|
|
2023
|
+
SENSITIVE = []
|
|
2024
|
+
include Aws::Structure
|
|
2025
|
+
end
|
|
2026
|
+
|
|
1759
2027
|
# @!attribute [rw] next_token
|
|
1760
2028
|
# The pagination token.
|
|
1761
2029
|
# @return [String]
|
|
@@ -1974,6 +2242,82 @@ module Aws::Outposts
|
|
|
1974
2242
|
include Aws::Structure
|
|
1975
2243
|
end
|
|
1976
2244
|
|
|
2245
|
+
# A requirement that must be met before an order can be submitted for a
|
|
2246
|
+
# quote.
|
|
2247
|
+
#
|
|
2248
|
+
# @!attribute [rw] status_message
|
|
2249
|
+
# A message about the ordering requirement.
|
|
2250
|
+
# @return [String]
|
|
2251
|
+
#
|
|
2252
|
+
# @!attribute [rw] ordering_requirement_type
|
|
2253
|
+
# The type of ordering requirement. Indicates which check failed or
|
|
2254
|
+
# passed.
|
|
2255
|
+
#
|
|
2256
|
+
# * `OUTPOST_ACTIVE_CHECK_ERROR` - The Outpost must be in an active
|
|
2257
|
+
# state.
|
|
2258
|
+
#
|
|
2259
|
+
# * `MAXIMUM_ALLOWED_ORDERS_CHECK_ERROR` - The maximum number of
|
|
2260
|
+
# allowed orders has been reached.
|
|
2261
|
+
#
|
|
2262
|
+
# * `VALID_ZIP_CODE_CHECK_ERROR` - The site address must have a valid
|
|
2263
|
+
# zip code.
|
|
2264
|
+
#
|
|
2265
|
+
# * `RACK_PHYSICAL_PROPERTIES_CHECK_ERROR` - The rack physical
|
|
2266
|
+
# properties do not meet requirements.
|
|
2267
|
+
#
|
|
2268
|
+
# * `OPERATING_ADDRESS_EXISTENCE_CHECK_ERROR` - The site must have an
|
|
2269
|
+
# operating address.
|
|
2270
|
+
#
|
|
2271
|
+
# * `SHIPPING_ADDRESS_EXISTENCE_CHECK_ERROR` - The site must have a
|
|
2272
|
+
# shipping address.
|
|
2273
|
+
#
|
|
2274
|
+
# * `COUNTRY_CODE_MISMATCH_CHECK_ERROR` - The country code on the
|
|
2275
|
+
# quote does not match the Outpost site country.
|
|
2276
|
+
#
|
|
2277
|
+
# * `OUTPOST_GENERATION_MISMATCH_ERROR` - The Outpost generation does
|
|
2278
|
+
# not match the requested configuration.
|
|
2279
|
+
#
|
|
2280
|
+
# * `OUTPOST_ID_MISSING_ON_QUOTE_ERROR` - The quote must be associated
|
|
2281
|
+
# with an Outpost before submitting an order.
|
|
2282
|
+
#
|
|
2283
|
+
# * `ENTERPRISE_SUPPORT_ERROR` - Enterprise Support is required.
|
|
2284
|
+
#
|
|
2285
|
+
# * `SHIPPING_ADDRESS_MISSING_CONTACT_NAME_ERROR` - The shipping
|
|
2286
|
+
# address must have a contact name.
|
|
2287
|
+
#
|
|
2288
|
+
# * `SHIPPING_ADDRESS_MISSING_CONTACT_NUMBER_ERROR` - The shipping
|
|
2289
|
+
# address must have a contact phone number.
|
|
2290
|
+
#
|
|
2291
|
+
# * `SHIPPING_ADDRESS_MISSING_CONTACT_INFO_ERROR` - The shipping
|
|
2292
|
+
# address must have contact information.
|
|
2293
|
+
#
|
|
2294
|
+
# * `OUTPOST_STATE_CHANGED_ERROR` - The Outpost state has changed
|
|
2295
|
+
# since the quote was created.
|
|
2296
|
+
#
|
|
2297
|
+
# * `OUTPOST_NOT_FOUND_ERROR` - The Outpost associated with the quote
|
|
2298
|
+
# was not found.
|
|
2299
|
+
#
|
|
2300
|
+
# * `OUTPOST_RENEWAL_REQUIRED_ERROR` - The Outpost requires a renewal
|
|
2301
|
+
# before a new order can be submitted.
|
|
2302
|
+
#
|
|
2303
|
+
# * `UNSUPPORTED` - The requirement type is not recognized.
|
|
2304
|
+
# @return [String]
|
|
2305
|
+
#
|
|
2306
|
+
# @!attribute [rw] status
|
|
2307
|
+
# The status of the ordering requirement. Valid values are `PASS`,
|
|
2308
|
+
# `FAIL`, and `EXEMPT`.
|
|
2309
|
+
# @return [String]
|
|
2310
|
+
#
|
|
2311
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/OrderingRequirement AWS API Documentation
|
|
2312
|
+
#
|
|
2313
|
+
class OrderingRequirement < Struct.new(
|
|
2314
|
+
:status_message,
|
|
2315
|
+
:ordering_requirement_type,
|
|
2316
|
+
:status)
|
|
2317
|
+
SENSITIVE = []
|
|
2318
|
+
include Aws::Structure
|
|
2319
|
+
end
|
|
2320
|
+
|
|
1977
2321
|
# Information about an Outpost.
|
|
1978
2322
|
#
|
|
1979
2323
|
# @!attribute [rw] outpost_id
|
|
@@ -2062,6 +2406,313 @@ module Aws::Outposts
|
|
|
2062
2406
|
include Aws::Structure
|
|
2063
2407
|
end
|
|
2064
2408
|
|
|
2409
|
+
# Information about a quote for an Outpost. A quote provides pricing and
|
|
2410
|
+
# configuration options based on the requested capacity.
|
|
2411
|
+
#
|
|
2412
|
+
# @!attribute [rw] quote_id
|
|
2413
|
+
# The ID of the quote.
|
|
2414
|
+
# @return [String]
|
|
2415
|
+
#
|
|
2416
|
+
# @!attribute [rw] account_id
|
|
2417
|
+
# The ID of the account that owns the quote.
|
|
2418
|
+
# @return [String]
|
|
2419
|
+
#
|
|
2420
|
+
# @!attribute [rw] quote_status
|
|
2421
|
+
# The status of the quote.
|
|
2422
|
+
#
|
|
2423
|
+
# * `CREATED` - The quote has been created and is available for
|
|
2424
|
+
# review.
|
|
2425
|
+
#
|
|
2426
|
+
# * `ORDER_SUBMITTED` - An order has been submitted for the quote.
|
|
2427
|
+
#
|
|
2428
|
+
# * `EXPIRED` - The quote has expired and can no longer be used to
|
|
2429
|
+
# submit an order.
|
|
2430
|
+
# @return [String]
|
|
2431
|
+
#
|
|
2432
|
+
# @!attribute [rw] status_message
|
|
2433
|
+
# A message about the status of the quote.
|
|
2434
|
+
# @return [String]
|
|
2435
|
+
#
|
|
2436
|
+
# @!attribute [rw] outpost_arn
|
|
2437
|
+
# The ARN of the Outpost associated with the quote.
|
|
2438
|
+
# @return [String]
|
|
2439
|
+
#
|
|
2440
|
+
# @!attribute [rw] country_code
|
|
2441
|
+
# The country code for the Outpost site location.
|
|
2442
|
+
# @return [String]
|
|
2443
|
+
#
|
|
2444
|
+
# @!attribute [rw] requested_capacities
|
|
2445
|
+
# The capacity requirements specified in the quote request.
|
|
2446
|
+
# @return [Array<Types::QuoteCapacity>]
|
|
2447
|
+
#
|
|
2448
|
+
# @!attribute [rw] requested_constraints
|
|
2449
|
+
# The physical constraints specified in the quote request.
|
|
2450
|
+
# @return [Array<Types::QuoteConstraint>]
|
|
2451
|
+
#
|
|
2452
|
+
# @!attribute [rw] requested_payment_options
|
|
2453
|
+
# The payment options specified in the quote request.
|
|
2454
|
+
# @return [Array<String>]
|
|
2455
|
+
#
|
|
2456
|
+
# @!attribute [rw] requested_payment_terms
|
|
2457
|
+
# The payment terms specified in the quote request.
|
|
2458
|
+
# @return [Array<String>]
|
|
2459
|
+
#
|
|
2460
|
+
# @!attribute [rw] quote_options
|
|
2461
|
+
# The configuration and pricing options for the quote. Each option
|
|
2462
|
+
# includes capacity details, physical specifications, and pricing
|
|
2463
|
+
# information.
|
|
2464
|
+
# @return [Array<Types::QuoteOption>]
|
|
2465
|
+
#
|
|
2466
|
+
# @!attribute [rw] ordering_requirements
|
|
2467
|
+
# The requirements that must be met before an order can be submitted
|
|
2468
|
+
# for the quote.
|
|
2469
|
+
# @return [Array<Types::OrderingRequirement>]
|
|
2470
|
+
#
|
|
2471
|
+
# @!attribute [rw] submitted_order_id
|
|
2472
|
+
# The ID of the order submitted for the quote.
|
|
2473
|
+
# @return [String]
|
|
2474
|
+
#
|
|
2475
|
+
# @!attribute [rw] created_date
|
|
2476
|
+
# The date the quote was created.
|
|
2477
|
+
# @return [Time]
|
|
2478
|
+
#
|
|
2479
|
+
# @!attribute [rw] expiration_date
|
|
2480
|
+
# The date the quote expires.
|
|
2481
|
+
# @return [Time]
|
|
2482
|
+
#
|
|
2483
|
+
# @!attribute [rw] description
|
|
2484
|
+
# The description of the quote.
|
|
2485
|
+
# @return [String]
|
|
2486
|
+
#
|
|
2487
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/Quote AWS API Documentation
|
|
2488
|
+
#
|
|
2489
|
+
class Quote < Struct.new(
|
|
2490
|
+
:quote_id,
|
|
2491
|
+
:account_id,
|
|
2492
|
+
:quote_status,
|
|
2493
|
+
:status_message,
|
|
2494
|
+
:outpost_arn,
|
|
2495
|
+
:country_code,
|
|
2496
|
+
:requested_capacities,
|
|
2497
|
+
:requested_constraints,
|
|
2498
|
+
:requested_payment_options,
|
|
2499
|
+
:requested_payment_terms,
|
|
2500
|
+
:quote_options,
|
|
2501
|
+
:ordering_requirements,
|
|
2502
|
+
:submitted_order_id,
|
|
2503
|
+
:created_date,
|
|
2504
|
+
:expiration_date,
|
|
2505
|
+
:description)
|
|
2506
|
+
SENSITIVE = [:description]
|
|
2507
|
+
include Aws::Structure
|
|
2508
|
+
end
|
|
2509
|
+
|
|
2510
|
+
# A capacity requirement for a quote. Specifies the type of capacity,
|
|
2511
|
+
# the unit, and the quantity.
|
|
2512
|
+
#
|
|
2513
|
+
# @!attribute [rw] quote_capacity_type
|
|
2514
|
+
# The type of capacity. Valid values are `EC2`, `EBS`, and `S3`.
|
|
2515
|
+
# @return [String]
|
|
2516
|
+
#
|
|
2517
|
+
# @!attribute [rw] unit
|
|
2518
|
+
# The unit of measurement for the capacity. For Amazon EC2, this is
|
|
2519
|
+
# the instance type (for example, `c5.24xlarge`). For Amazon EBS and
|
|
2520
|
+
# Amazon S3, this is the storage unit (for example, `TiB` for
|
|
2521
|
+
# tebibytes).
|
|
2522
|
+
# @return [String]
|
|
2523
|
+
#
|
|
2524
|
+
# @!attribute [rw] quantity
|
|
2525
|
+
# The quantity of the specified capacity unit. For Amazon EC2, this is
|
|
2526
|
+
# the number of additional instances to add to the Outpost. For Amazon
|
|
2527
|
+
# EBS and Amazon S3, this is the total desired end-state capacity of
|
|
2528
|
+
# the Outpost.
|
|
2529
|
+
# @return [Float]
|
|
2530
|
+
#
|
|
2531
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/QuoteCapacity AWS API Documentation
|
|
2532
|
+
#
|
|
2533
|
+
class QuoteCapacity < Struct.new(
|
|
2534
|
+
:quote_capacity_type,
|
|
2535
|
+
:unit,
|
|
2536
|
+
:quantity)
|
|
2537
|
+
SENSITIVE = []
|
|
2538
|
+
include Aws::Structure
|
|
2539
|
+
end
|
|
2540
|
+
|
|
2541
|
+
# A physical constraint for a quote.
|
|
2542
|
+
#
|
|
2543
|
+
# @!attribute [rw] quote_constraint_type
|
|
2544
|
+
# The type of constraint. Valid values are `RACK_MAXIMUM`,
|
|
2545
|
+
# `RACK_MAX_POWER_KVA`, and `RACK_MAX_WEIGHT_LBS`.
|
|
2546
|
+
# @return [String]
|
|
2547
|
+
#
|
|
2548
|
+
# @!attribute [rw] value
|
|
2549
|
+
# The value of the constraint.
|
|
2550
|
+
# @return [String]
|
|
2551
|
+
#
|
|
2552
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/QuoteConstraint AWS API Documentation
|
|
2553
|
+
#
|
|
2554
|
+
class QuoteConstraint < Struct.new(
|
|
2555
|
+
:quote_constraint_type,
|
|
2556
|
+
:value)
|
|
2557
|
+
SENSITIVE = []
|
|
2558
|
+
include Aws::Structure
|
|
2559
|
+
end
|
|
2560
|
+
|
|
2561
|
+
# A configuration and pricing option for a quote. Each option includes
|
|
2562
|
+
# the capacity breakdown, physical specifications for the racks or
|
|
2563
|
+
# servers, and pricing details.
|
|
2564
|
+
#
|
|
2565
|
+
# @!attribute [rw] quote_option_identifier
|
|
2566
|
+
# The ID of the quote option.
|
|
2567
|
+
# @return [String]
|
|
2568
|
+
#
|
|
2569
|
+
# @!attribute [rw] capacities
|
|
2570
|
+
# The capacities included in this quote option.
|
|
2571
|
+
# @return [Array<Types::QuoteCapacity>]
|
|
2572
|
+
#
|
|
2573
|
+
# @!attribute [rw] capacity_summary
|
|
2574
|
+
# A summary of the existing, final, and changed capacity for this
|
|
2575
|
+
# quote option.
|
|
2576
|
+
# @return [Types::CapacitySummary]
|
|
2577
|
+
#
|
|
2578
|
+
# @!attribute [rw] specifications
|
|
2579
|
+
# The physical specifications for the racks or servers in this quote
|
|
2580
|
+
# option.
|
|
2581
|
+
# @return [Array<Types::QuoteSpecification>]
|
|
2582
|
+
#
|
|
2583
|
+
# @!attribute [rw] pricing_options
|
|
2584
|
+
# The pricing options for this quote option.
|
|
2585
|
+
# @return [Array<Types::PricingOption>]
|
|
2586
|
+
#
|
|
2587
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/QuoteOption AWS API Documentation
|
|
2588
|
+
#
|
|
2589
|
+
class QuoteOption < Struct.new(
|
|
2590
|
+
:quote_option_identifier,
|
|
2591
|
+
:capacities,
|
|
2592
|
+
:capacity_summary,
|
|
2593
|
+
:specifications,
|
|
2594
|
+
:pricing_options)
|
|
2595
|
+
SENSITIVE = []
|
|
2596
|
+
include Aws::Structure
|
|
2597
|
+
end
|
|
2598
|
+
|
|
2599
|
+
# A physical specification for a quote option. Describes the rack or
|
|
2600
|
+
# server configuration that would be deployed.
|
|
2601
|
+
#
|
|
2602
|
+
# @!attribute [rw] quote_specification_type
|
|
2603
|
+
# The type of specification. Valid values are `NEW_RACK`,
|
|
2604
|
+
# `UPDATED_RACK`, `EXISTING_RACK`, and `SERVER`.
|
|
2605
|
+
# @return [String]
|
|
2606
|
+
#
|
|
2607
|
+
# @!attribute [rw] existing_rack_specification_details
|
|
2608
|
+
# The existing rack specification details, if the specification type
|
|
2609
|
+
# is `UPDATED_RACK` or `EXISTING_RACK`.
|
|
2610
|
+
# @return [Types::RackSpecificationDetails]
|
|
2611
|
+
#
|
|
2612
|
+
# @!attribute [rw] final_rack_specification_details
|
|
2613
|
+
# The final rack specification details after the quote is fulfilled.
|
|
2614
|
+
# @return [Types::RackSpecificationDetails]
|
|
2615
|
+
#
|
|
2616
|
+
# @!attribute [rw] server_specification_details
|
|
2617
|
+
# The server specification details, if the specification type is
|
|
2618
|
+
# `SERVER`.
|
|
2619
|
+
# @return [Types::ServerSpecificationDetails]
|
|
2620
|
+
#
|
|
2621
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/QuoteSpecification AWS API Documentation
|
|
2622
|
+
#
|
|
2623
|
+
class QuoteSpecification < Struct.new(
|
|
2624
|
+
:quote_specification_type,
|
|
2625
|
+
:existing_rack_specification_details,
|
|
2626
|
+
:final_rack_specification_details,
|
|
2627
|
+
:server_specification_details)
|
|
2628
|
+
SENSITIVE = []
|
|
2629
|
+
include Aws::Structure
|
|
2630
|
+
end
|
|
2631
|
+
|
|
2632
|
+
# Summary information about a quote.
|
|
2633
|
+
#
|
|
2634
|
+
# @!attribute [rw] quote_id
|
|
2635
|
+
# The ID of the quote.
|
|
2636
|
+
# @return [String]
|
|
2637
|
+
#
|
|
2638
|
+
# @!attribute [rw] account_id
|
|
2639
|
+
# The ID of the account that owns the quote.
|
|
2640
|
+
# @return [String]
|
|
2641
|
+
#
|
|
2642
|
+
# @!attribute [rw] quote_status
|
|
2643
|
+
# The status of the quote.
|
|
2644
|
+
# @return [String]
|
|
2645
|
+
#
|
|
2646
|
+
# @!attribute [rw] status_message
|
|
2647
|
+
# A message about the status of the quote.
|
|
2648
|
+
# @return [String]
|
|
2649
|
+
#
|
|
2650
|
+
# @!attribute [rw] outpost_arn
|
|
2651
|
+
# The ARN of the Outpost associated with the quote.
|
|
2652
|
+
# @return [String]
|
|
2653
|
+
#
|
|
2654
|
+
# @!attribute [rw] country_code
|
|
2655
|
+
# The country code for the Outpost site location.
|
|
2656
|
+
# @return [String]
|
|
2657
|
+
#
|
|
2658
|
+
# @!attribute [rw] requested_capacities
|
|
2659
|
+
# The capacity requirements specified in the quote request.
|
|
2660
|
+
# @return [Array<Types::QuoteCapacity>]
|
|
2661
|
+
#
|
|
2662
|
+
# @!attribute [rw] requested_constraints
|
|
2663
|
+
# The physical constraints specified in the quote request.
|
|
2664
|
+
# @return [Array<Types::QuoteConstraint>]
|
|
2665
|
+
#
|
|
2666
|
+
# @!attribute [rw] requested_payment_options
|
|
2667
|
+
# The payment options specified in the quote request.
|
|
2668
|
+
# @return [Array<String>]
|
|
2669
|
+
#
|
|
2670
|
+
# @!attribute [rw] requested_payment_terms
|
|
2671
|
+
# The payment terms specified in the quote request.
|
|
2672
|
+
# @return [Array<String>]
|
|
2673
|
+
#
|
|
2674
|
+
# @!attribute [rw] quote_options
|
|
2675
|
+
# The configuration and pricing options for the quote.
|
|
2676
|
+
# @return [Array<Types::QuoteOption>]
|
|
2677
|
+
#
|
|
2678
|
+
# @!attribute [rw] submitted_order_id
|
|
2679
|
+
# The ID of the order submitted for the quote.
|
|
2680
|
+
# @return [String]
|
|
2681
|
+
#
|
|
2682
|
+
# @!attribute [rw] created_date
|
|
2683
|
+
# The date the quote was created.
|
|
2684
|
+
# @return [Time]
|
|
2685
|
+
#
|
|
2686
|
+
# @!attribute [rw] expiration_date
|
|
2687
|
+
# The date the quote expires.
|
|
2688
|
+
# @return [Time]
|
|
2689
|
+
#
|
|
2690
|
+
# @!attribute [rw] description
|
|
2691
|
+
# The description of the quote.
|
|
2692
|
+
# @return [String]
|
|
2693
|
+
#
|
|
2694
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/QuoteSummary AWS API Documentation
|
|
2695
|
+
#
|
|
2696
|
+
class QuoteSummary < Struct.new(
|
|
2697
|
+
:quote_id,
|
|
2698
|
+
:account_id,
|
|
2699
|
+
:quote_status,
|
|
2700
|
+
:status_message,
|
|
2701
|
+
:outpost_arn,
|
|
2702
|
+
:country_code,
|
|
2703
|
+
:requested_capacities,
|
|
2704
|
+
:requested_constraints,
|
|
2705
|
+
:requested_payment_options,
|
|
2706
|
+
:requested_payment_terms,
|
|
2707
|
+
:quote_options,
|
|
2708
|
+
:submitted_order_id,
|
|
2709
|
+
:created_date,
|
|
2710
|
+
:expiration_date,
|
|
2711
|
+
:description)
|
|
2712
|
+
SENSITIVE = [:description]
|
|
2713
|
+
include Aws::Structure
|
|
2714
|
+
end
|
|
2715
|
+
|
|
2065
2716
|
# Information about the physical and logistical details for racks at
|
|
2066
2717
|
# sites. For more information about hardware requirements for racks, see
|
|
2067
2718
|
# [Network readiness checklist][1] in the Amazon Web Services Outposts
|
|
@@ -2133,6 +2784,114 @@ module Aws::Outposts
|
|
|
2133
2784
|
include Aws::Structure
|
|
2134
2785
|
end
|
|
2135
2786
|
|
|
2787
|
+
# The physical specification details for a rack in a quote option.
|
|
2788
|
+
#
|
|
2789
|
+
# @!attribute [rw] rack_id
|
|
2790
|
+
# The ID of the rack.
|
|
2791
|
+
# @return [String]
|
|
2792
|
+
#
|
|
2793
|
+
# @!attribute [rw] rack_use
|
|
2794
|
+
# The use of the rack. Valid values are `COMPUTE` and `NETWORKING`.
|
|
2795
|
+
# @return [String]
|
|
2796
|
+
#
|
|
2797
|
+
# @!attribute [rw] rack_power_draw_kva
|
|
2798
|
+
# The maximum power draw of the rack in kVA.
|
|
2799
|
+
# @return [Float]
|
|
2800
|
+
#
|
|
2801
|
+
# @!attribute [rw] rack_weight_lbs
|
|
2802
|
+
# The weight of the rack in pounds.
|
|
2803
|
+
# @return [Float]
|
|
2804
|
+
#
|
|
2805
|
+
# @!attribute [rw] rack_height_inches
|
|
2806
|
+
# The height of the rack in inches.
|
|
2807
|
+
# @return [Float]
|
|
2808
|
+
#
|
|
2809
|
+
# @!attribute [rw] rack_width_inches
|
|
2810
|
+
# The width of the rack in inches.
|
|
2811
|
+
# @return [Float]
|
|
2812
|
+
#
|
|
2813
|
+
# @!attribute [rw] rack_depth_inches
|
|
2814
|
+
# The depth of the rack in inches.
|
|
2815
|
+
# @return [Float]
|
|
2816
|
+
#
|
|
2817
|
+
# @!attribute [rw] rack_unit_height
|
|
2818
|
+
# The rack unit height.
|
|
2819
|
+
#
|
|
2820
|
+
# * `HEIGHT_42U` - 42 rack units.
|
|
2821
|
+
#
|
|
2822
|
+
# * `HEIGHT_2U` - 2 rack units.
|
|
2823
|
+
#
|
|
2824
|
+
# * `HEIGHT_1U` - 1 rack unit.
|
|
2825
|
+
# @return [String]
|
|
2826
|
+
#
|
|
2827
|
+
# @!attribute [rw] ec2_capacities
|
|
2828
|
+
# The Amazon EC2 capacities for the rack.
|
|
2829
|
+
# @return [Array<Types::EC2Capacity>]
|
|
2830
|
+
#
|
|
2831
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/RackSpecificationDetails AWS API Documentation
|
|
2832
|
+
#
|
|
2833
|
+
class RackSpecificationDetails < Struct.new(
|
|
2834
|
+
:rack_id,
|
|
2835
|
+
:rack_use,
|
|
2836
|
+
:rack_power_draw_kva,
|
|
2837
|
+
:rack_weight_lbs,
|
|
2838
|
+
:rack_height_inches,
|
|
2839
|
+
:rack_width_inches,
|
|
2840
|
+
:rack_depth_inches,
|
|
2841
|
+
:rack_unit_height,
|
|
2842
|
+
:ec2_capacities)
|
|
2843
|
+
SENSITIVE = []
|
|
2844
|
+
include Aws::Structure
|
|
2845
|
+
end
|
|
2846
|
+
|
|
2847
|
+
# The physical specification details for a server in a quote option.
|
|
2848
|
+
#
|
|
2849
|
+
# @!attribute [rw] server_power_draw_kva
|
|
2850
|
+
# The maximum power draw of the server in kVA.
|
|
2851
|
+
# @return [Float]
|
|
2852
|
+
#
|
|
2853
|
+
# @!attribute [rw] server_weight_lbs
|
|
2854
|
+
# The weight of the server in pounds.
|
|
2855
|
+
# @return [Float]
|
|
2856
|
+
#
|
|
2857
|
+
# @!attribute [rw] server_height_inches
|
|
2858
|
+
# The height of the server in inches.
|
|
2859
|
+
# @return [Float]
|
|
2860
|
+
#
|
|
2861
|
+
# @!attribute [rw] server_width_inches
|
|
2862
|
+
# The width of the server in inches.
|
|
2863
|
+
# @return [Float]
|
|
2864
|
+
#
|
|
2865
|
+
# @!attribute [rw] server_depth_inches
|
|
2866
|
+
# The depth of the server in inches.
|
|
2867
|
+
# @return [Float]
|
|
2868
|
+
#
|
|
2869
|
+
# @!attribute [rw] rack_unit_height
|
|
2870
|
+
# The rack unit height of the server.
|
|
2871
|
+
#
|
|
2872
|
+
# * `HEIGHT_2U` - 2 rack units.
|
|
2873
|
+
#
|
|
2874
|
+
# * `HEIGHT_1U` - 1 rack unit.
|
|
2875
|
+
# @return [String]
|
|
2876
|
+
#
|
|
2877
|
+
# @!attribute [rw] ec2_capacities
|
|
2878
|
+
# The Amazon EC2 capacities for the server.
|
|
2879
|
+
# @return [Array<Types::EC2Capacity>]
|
|
2880
|
+
#
|
|
2881
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ServerSpecificationDetails AWS API Documentation
|
|
2882
|
+
#
|
|
2883
|
+
class ServerSpecificationDetails < Struct.new(
|
|
2884
|
+
:server_power_draw_kva,
|
|
2885
|
+
:server_weight_lbs,
|
|
2886
|
+
:server_height_inches,
|
|
2887
|
+
:server_width_inches,
|
|
2888
|
+
:server_depth_inches,
|
|
2889
|
+
:rack_unit_height,
|
|
2890
|
+
:ec2_capacities)
|
|
2891
|
+
SENSITIVE = []
|
|
2892
|
+
include Aws::Structure
|
|
2893
|
+
end
|
|
2894
|
+
|
|
2136
2895
|
# You have exceeded a service quota.
|
|
2137
2896
|
#
|
|
2138
2897
|
# @!attribute [rw] message
|
|
@@ -2495,6 +3254,11 @@ module Aws::Outposts
|
|
|
2495
3254
|
# The date your subscription ends.
|
|
2496
3255
|
# @return [Time]
|
|
2497
3256
|
#
|
|
3257
|
+
# @!attribute [rw] currency
|
|
3258
|
+
# The currency of the subscription price. Currently only `USD` is
|
|
3259
|
+
# supported.
|
|
3260
|
+
# @return [String]
|
|
3261
|
+
#
|
|
2498
3262
|
# @!attribute [rw] monthly_recurring_price
|
|
2499
3263
|
# The amount you are billed each month in the subscription period.
|
|
2500
3264
|
# @return [Float]
|
|
@@ -2513,6 +3277,7 @@ module Aws::Outposts
|
|
|
2513
3277
|
:order_ids,
|
|
2514
3278
|
:begin_date,
|
|
2515
3279
|
:end_date,
|
|
3280
|
+
:currency,
|
|
2516
3281
|
:monthly_recurring_price,
|
|
2517
3282
|
:upfront_price)
|
|
2518
3283
|
SENSITIVE = []
|
|
@@ -2537,13 +3302,18 @@ module Aws::Outposts
|
|
|
2537
3302
|
# The monthly recurring price.
|
|
2538
3303
|
# @return [Float]
|
|
2539
3304
|
#
|
|
3305
|
+
# @!attribute [rw] currency
|
|
3306
|
+
# The currency of the price. Currently only `USD` is supported.
|
|
3307
|
+
# @return [String]
|
|
3308
|
+
#
|
|
2540
3309
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/SubscriptionPricingDetails AWS API Documentation
|
|
2541
3310
|
#
|
|
2542
3311
|
class SubscriptionPricingDetails < Struct.new(
|
|
2543
3312
|
:payment_option,
|
|
2544
3313
|
:payment_term,
|
|
2545
3314
|
:upfront_price,
|
|
2546
|
-
:monthly_recurring_price
|
|
3315
|
+
:monthly_recurring_price,
|
|
3316
|
+
:currency)
|
|
2547
3317
|
SENSITIVE = []
|
|
2548
3318
|
include Aws::Structure
|
|
2549
3319
|
end
|
|
@@ -2629,6 +3399,66 @@ module Aws::Outposts
|
|
|
2629
3399
|
include Aws::Structure
|
|
2630
3400
|
end
|
|
2631
3401
|
|
|
3402
|
+
# @!attribute [rw] quote_identifier
|
|
3403
|
+
# The ID or ARN of the quote.
|
|
3404
|
+
# @return [String]
|
|
3405
|
+
#
|
|
3406
|
+
# @!attribute [rw] outpost_identifier
|
|
3407
|
+
# The ID or ARN of the Outpost to associate with the quote. Specify an
|
|
3408
|
+
# empty string to remove the Outpost association.
|
|
3409
|
+
# @return [String]
|
|
3410
|
+
#
|
|
3411
|
+
# @!attribute [rw] country_code
|
|
3412
|
+
# The country code for the Outpost site location.
|
|
3413
|
+
# @return [String]
|
|
3414
|
+
#
|
|
3415
|
+
# @!attribute [rw] requested_capacities
|
|
3416
|
+
# The updated capacity requirements for the quote.
|
|
3417
|
+
# @return [Array<Types::QuoteCapacity>]
|
|
3418
|
+
#
|
|
3419
|
+
# @!attribute [rw] requested_constraints
|
|
3420
|
+
# The updated physical constraints for the quote.
|
|
3421
|
+
# @return [Array<Types::QuoteConstraint>]
|
|
3422
|
+
#
|
|
3423
|
+
# @!attribute [rw] requested_payment_options
|
|
3424
|
+
# The updated payment options to include in the quote pricing.
|
|
3425
|
+
# @return [Array<String>]
|
|
3426
|
+
#
|
|
3427
|
+
# @!attribute [rw] requested_payment_terms
|
|
3428
|
+
# The updated payment terms to include in the quote pricing.
|
|
3429
|
+
# @return [Array<String>]
|
|
3430
|
+
#
|
|
3431
|
+
# @!attribute [rw] description
|
|
3432
|
+
# A description for the quote.
|
|
3433
|
+
# @return [String]
|
|
3434
|
+
#
|
|
3435
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateQuoteInput AWS API Documentation
|
|
3436
|
+
#
|
|
3437
|
+
class UpdateQuoteInput < Struct.new(
|
|
3438
|
+
:quote_identifier,
|
|
3439
|
+
:outpost_identifier,
|
|
3440
|
+
:country_code,
|
|
3441
|
+
:requested_capacities,
|
|
3442
|
+
:requested_constraints,
|
|
3443
|
+
:requested_payment_options,
|
|
3444
|
+
:requested_payment_terms,
|
|
3445
|
+
:description)
|
|
3446
|
+
SENSITIVE = [:description]
|
|
3447
|
+
include Aws::Structure
|
|
3448
|
+
end
|
|
3449
|
+
|
|
3450
|
+
# @!attribute [rw] quote
|
|
3451
|
+
# Information about the updated quote.
|
|
3452
|
+
# @return [Types::Quote]
|
|
3453
|
+
#
|
|
3454
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/UpdateQuoteOutput AWS API Documentation
|
|
3455
|
+
#
|
|
3456
|
+
class UpdateQuoteOutput < Struct.new(
|
|
3457
|
+
:quote)
|
|
3458
|
+
SENSITIVE = []
|
|
3459
|
+
include Aws::Structure
|
|
3460
|
+
end
|
|
3461
|
+
|
|
2632
3462
|
# @!attribute [rw] site_id
|
|
2633
3463
|
# The ID or the Amazon Resource Name (ARN) of the site.
|
|
2634
3464
|
# @return [String]
|