@aws-sdk/client-outposts 3.1063.0 → 3.1065.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.
- package/README.md +42 -0
- package/dist-cjs/index.js +171 -3
- package/dist-cjs/schemas/schemas_0.js +269 -16
- package/dist-es/Outposts.js +16 -0
- package/dist-es/commands/CreateQuoteCommand.js +16 -0
- package/dist-es/commands/DeleteQuoteCommand.js +16 -0
- package/dist-es/commands/GetQuoteCommand.js +16 -0
- package/dist-es/commands/ListOrderableInstanceTypesCommand.js +16 -0
- package/dist-es/commands/ListQuotesCommand.js +16 -0
- package/dist-es/commands/UpdateQuoteCommand.js +16 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/enums.js +68 -3
- package/dist-es/pagination/ListOrderableInstanceTypesPaginator.js +4 -0
- package/dist-es/pagination/ListQuotesPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +265 -13
- package/dist-types/Outposts.d.ts +58 -0
- package/dist-types/OutpostsClient.d.ts +8 -2
- package/dist-types/commands/CreateQuoteCommand.d.ts +231 -0
- package/dist-types/commands/CreateRenewalCommand.d.ts +1 -0
- package/dist-types/commands/DeleteQuoteCommand.d.ts +86 -0
- package/dist-types/commands/GetOutpostBillingInformationCommand.d.ts +1 -0
- package/dist-types/commands/GetQuoteCommand.d.ts +208 -0
- package/dist-types/commands/GetRenewalPricingCommand.d.ts +1 -0
- package/dist-types/commands/ListOrderableInstanceTypesCommand.d.ts +105 -0
- package/dist-types/commands/ListQuotesCommand.d.ts +199 -0
- package/dist-types/commands/UpdateQuoteCommand.d.ts +231 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/enums.d.ts +164 -11
- package/dist-types/models/models_0.d.ts +881 -59
- package/dist-types/pagination/ListOrderableInstanceTypesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListQuotesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/schemas/schemas_0.d.ts +30 -0
- package/dist-types/ts3.4/Outposts.d.ts +118 -0
- package/dist-types/ts3.4/OutpostsClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/CreateQuoteCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/DeleteQuoteCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/GetQuoteCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/ListOrderableInstanceTypesCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListQuotesCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/UpdateQuoteCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/enums.d.ts +89 -5
- package/dist-types/ts3.4/models/models_0.d.ts +174 -10
- package/dist-types/ts3.4/pagination/ListOrderableInstanceTypesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListQuotesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +30 -0
- package/package.json +5 -5
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { AddressType, AssetState, AssetType, AWSServiceName, BlockingResourceType, CapacityTaskFailureType, CapacityTaskStatus, CatalogItemClass, CatalogItemStatus, ComputeAssetState, DecommissionRequestStatus, FiberOpticCableType, LineItemStatus, MaximumSupportedWeightLbs, OpticalStandard, OrderStatus, OrderType, PaymentOption, PaymentTerm, PowerConnector, PowerDrawKva, PowerFeedDrop, PowerPhase, PricingResult, QuotePricingType, ShipmentCarrier, SubscriptionStatus, SubscriptionType, SupportedHardwareType, SupportedStorageEnum, TaskActionOnBlockingInstances, UplinkCount, UplinkGbps } from "./enums";
|
|
1
|
+
import type { AddressType, AssetState, AssetType, AWSServiceName, BlockingResourceType, CapacityTaskFailureType, CapacityTaskStatus, CatalogItemClass, CatalogItemStatus, ComputeAssetState, CurrencyCode, DecommissionRequestStatus, FiberOpticCableType, FormFactor, LineItemStatus, MaximumSupportedWeightLbs, OpticalStandard, OrderingRequirementStatus, OrderingRequirementType, OrderStatus, OrderType, OutpostGeneration, PaymentOption, PaymentTerm, PowerConnector, PowerDrawKva, PowerFeedDrop, PowerPhase, PricingResult, QuoteCapacityType, QuoteConstraintType, QuotePricingType, QuoteRackUseType, QuoteSpecificationType, QuoteStatus, RackUnitHeight, ShipmentCarrier, SubscriptionStatus, SubscriptionType, SupportedHardwareType, SupportedStorageEnum, TaskActionOnBlockingInstances, UplinkCount, UplinkGbps } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* <p> Information about an address. </p>
|
|
4
4
|
* @public
|
|
@@ -260,6 +260,54 @@ export interface CancelOrderInput {
|
|
|
260
260
|
*/
|
|
261
261
|
export interface CancelOrderOutput {
|
|
262
262
|
}
|
|
263
|
+
/**
|
|
264
|
+
* <p>A capacity requirement for a quote. Specifies the type of capacity, the unit, and the
|
|
265
|
+
* quantity.</p>
|
|
266
|
+
* @public
|
|
267
|
+
*/
|
|
268
|
+
export interface QuoteCapacity {
|
|
269
|
+
/**
|
|
270
|
+
* <p>The type of capacity. Valid values are <code>EC2</code>, <code>EBS</code>, and
|
|
271
|
+
* <code>S3</code>.</p>
|
|
272
|
+
* @public
|
|
273
|
+
*/
|
|
274
|
+
QuoteCapacityType?: QuoteCapacityType | undefined;
|
|
275
|
+
/**
|
|
276
|
+
* <p>The unit of measurement for the capacity. For Amazon EC2, this is the instance type (for
|
|
277
|
+
* example, <code>c5.24xlarge</code>). For Amazon EBS and Amazon S3, this is the storage unit (for
|
|
278
|
+
* example, <code>TiB</code> for tebibytes).</p>
|
|
279
|
+
* @public
|
|
280
|
+
*/
|
|
281
|
+
Unit?: string | undefined;
|
|
282
|
+
/**
|
|
283
|
+
* <p>The quantity of the specified capacity unit. For Amazon EC2, this is the number of
|
|
284
|
+
* additional instances to add to the Outpost. For Amazon EBS and Amazon S3, this is the total
|
|
285
|
+
* desired end-state capacity of the Outpost.</p>
|
|
286
|
+
* @public
|
|
287
|
+
*/
|
|
288
|
+
Quantity?: number | undefined;
|
|
289
|
+
}
|
|
290
|
+
/**
|
|
291
|
+
* <p>A summary of the capacity changes for a quote option.</p>
|
|
292
|
+
* @public
|
|
293
|
+
*/
|
|
294
|
+
export interface CapacitySummary {
|
|
295
|
+
/**
|
|
296
|
+
* <p>The existing capacities on the Outpost before the quote is fulfilled.</p>
|
|
297
|
+
* @public
|
|
298
|
+
*/
|
|
299
|
+
ExistingCapacities?: QuoteCapacity[] | undefined;
|
|
300
|
+
/**
|
|
301
|
+
* <p>The final capacities on the Outpost after the quote is fulfilled.</p>
|
|
302
|
+
* @public
|
|
303
|
+
*/
|
|
304
|
+
FinalCapacities?: QuoteCapacity[] | undefined;
|
|
305
|
+
/**
|
|
306
|
+
* <p>The change in capacity between the existing and final state.</p>
|
|
307
|
+
* @public
|
|
308
|
+
*/
|
|
309
|
+
CapacityChange?: QuoteCapacity[] | undefined;
|
|
310
|
+
}
|
|
263
311
|
/**
|
|
264
312
|
* <p>The capacity tasks that failed.</p>
|
|
265
313
|
* @public
|
|
@@ -679,75 +727,589 @@ export interface CreateOutpostInput {
|
|
|
679
727
|
*/
|
|
680
728
|
export interface Outpost {
|
|
681
729
|
/**
|
|
682
|
-
* <p> The ID of the Outpost. </p>
|
|
730
|
+
* <p> The ID of the Outpost. </p>
|
|
731
|
+
* @public
|
|
732
|
+
*/
|
|
733
|
+
OutpostId?: string | undefined;
|
|
734
|
+
/**
|
|
735
|
+
* <p>The Amazon Web Services account ID of the Outpost owner.</p>
|
|
736
|
+
* @public
|
|
737
|
+
*/
|
|
738
|
+
OwnerId?: string | undefined;
|
|
739
|
+
/**
|
|
740
|
+
* <p>The Amazon Resource Name (ARN) of the Outpost.</p>
|
|
741
|
+
* @public
|
|
742
|
+
*/
|
|
743
|
+
OutpostArn?: string | undefined;
|
|
744
|
+
/**
|
|
745
|
+
* <p>The ID of the site.</p>
|
|
746
|
+
* @public
|
|
747
|
+
*/
|
|
748
|
+
SiteId?: string | undefined;
|
|
749
|
+
/**
|
|
750
|
+
* <p>The name of the Outpost.</p>
|
|
751
|
+
* @public
|
|
752
|
+
*/
|
|
753
|
+
Name?: string | undefined;
|
|
754
|
+
/**
|
|
755
|
+
* <p>The description of the Outpost.</p>
|
|
756
|
+
* @public
|
|
757
|
+
*/
|
|
758
|
+
Description?: string | undefined;
|
|
759
|
+
/**
|
|
760
|
+
* <p>The life cycle status.</p>
|
|
761
|
+
* @public
|
|
762
|
+
*/
|
|
763
|
+
LifeCycleStatus?: string | undefined;
|
|
764
|
+
/**
|
|
765
|
+
* <p>The Availability Zone.</p>
|
|
766
|
+
* @public
|
|
767
|
+
*/
|
|
768
|
+
AvailabilityZone?: string | undefined;
|
|
769
|
+
/**
|
|
770
|
+
* <p>The ID of the Availability Zone.</p>
|
|
771
|
+
* @public
|
|
772
|
+
*/
|
|
773
|
+
AvailabilityZoneId?: string | undefined;
|
|
774
|
+
/**
|
|
775
|
+
* <p>The Outpost tags.</p>
|
|
776
|
+
* @public
|
|
777
|
+
*/
|
|
778
|
+
Tags?: Record<string, string> | undefined;
|
|
779
|
+
/**
|
|
780
|
+
* <p>The Amazon Resource Name (ARN) of the site.</p>
|
|
781
|
+
* @public
|
|
782
|
+
*/
|
|
783
|
+
SiteArn?: string | undefined;
|
|
784
|
+
/**
|
|
785
|
+
* <p> The hardware type. </p>
|
|
786
|
+
* @public
|
|
787
|
+
*/
|
|
788
|
+
SupportedHardwareType?: SupportedHardwareType | undefined;
|
|
789
|
+
}
|
|
790
|
+
/**
|
|
791
|
+
* @public
|
|
792
|
+
*/
|
|
793
|
+
export interface CreateOutpostOutput {
|
|
794
|
+
/**
|
|
795
|
+
* <p>Information about an Outpost.</p>
|
|
796
|
+
* @public
|
|
797
|
+
*/
|
|
798
|
+
Outpost?: Outpost | undefined;
|
|
799
|
+
}
|
|
800
|
+
/**
|
|
801
|
+
* <p>A physical constraint for a quote.</p>
|
|
802
|
+
* @public
|
|
803
|
+
*/
|
|
804
|
+
export interface QuoteConstraint {
|
|
805
|
+
/**
|
|
806
|
+
* <p>The type of constraint. Valid values are <code>RACK_MAXIMUM</code>,
|
|
807
|
+
* <code>RACK_MAX_POWER_KVA</code>, and <code>RACK_MAX_WEIGHT_LBS</code>.</p>
|
|
808
|
+
* @public
|
|
809
|
+
*/
|
|
810
|
+
QuoteConstraintType?: QuoteConstraintType | undefined;
|
|
811
|
+
/**
|
|
812
|
+
* <p>The value of the constraint.</p>
|
|
813
|
+
* @public
|
|
814
|
+
*/
|
|
815
|
+
Value?: string | undefined;
|
|
816
|
+
}
|
|
817
|
+
/**
|
|
818
|
+
* @public
|
|
819
|
+
*/
|
|
820
|
+
export interface CreateQuoteInput {
|
|
821
|
+
/**
|
|
822
|
+
* <p>The ID or ARN of the Outpost to associate with the quote. If not specified, the quote is
|
|
823
|
+
* created without an Outpost association.</p>
|
|
824
|
+
* @public
|
|
825
|
+
*/
|
|
826
|
+
OutpostIdentifier?: string | undefined;
|
|
827
|
+
/**
|
|
828
|
+
* <p>The country code for the Outpost site location.</p>
|
|
829
|
+
* @public
|
|
830
|
+
*/
|
|
831
|
+
CountryCode: string | undefined;
|
|
832
|
+
/**
|
|
833
|
+
* <p>The capacity requirements for the quote. Each entry specifies a capacity type (such as
|
|
834
|
+
* Amazon EC2), the unit, and the quantity. For Amazon EC2, the quantity is the number of additional
|
|
835
|
+
* instances to add to the Outpost. For Amazon EBS and Amazon S3, the quantity is the total desired
|
|
836
|
+
* end-state capacity of the Outpost.</p>
|
|
837
|
+
* @public
|
|
838
|
+
*/
|
|
839
|
+
RequestedCapacities: QuoteCapacity[] | undefined;
|
|
840
|
+
/**
|
|
841
|
+
* <p>The physical constraints for the quote, such as maximum number of racks, maximum power
|
|
842
|
+
* draw per rack, or maximum weight per rack.</p>
|
|
843
|
+
* @public
|
|
844
|
+
*/
|
|
845
|
+
RequestedConstraints?: QuoteConstraint[] | undefined;
|
|
846
|
+
/**
|
|
847
|
+
* <p>The payment options to include in the quote pricing. If not specified, all available
|
|
848
|
+
* payment options are returned.</p>
|
|
849
|
+
* @public
|
|
850
|
+
*/
|
|
851
|
+
RequestedPaymentOptions?: PaymentOption[] | undefined;
|
|
852
|
+
/**
|
|
853
|
+
* <p>The payment terms to include in the quote pricing. If not specified, all available
|
|
854
|
+
* payment terms are returned.</p>
|
|
855
|
+
* @public
|
|
856
|
+
*/
|
|
857
|
+
RequestedPaymentTerms?: PaymentTerm[] | undefined;
|
|
858
|
+
/**
|
|
859
|
+
* <p>A description for the quote.</p>
|
|
860
|
+
* @public
|
|
861
|
+
*/
|
|
862
|
+
Description?: string | undefined;
|
|
863
|
+
}
|
|
864
|
+
/**
|
|
865
|
+
* <p>A requirement that must be met before an order can be submitted for a quote.</p>
|
|
866
|
+
* @public
|
|
867
|
+
*/
|
|
868
|
+
export interface OrderingRequirement {
|
|
869
|
+
/**
|
|
870
|
+
* <p>A message about the ordering requirement.</p>
|
|
871
|
+
* @public
|
|
872
|
+
*/
|
|
873
|
+
StatusMessage?: string | undefined;
|
|
874
|
+
/**
|
|
875
|
+
* <p>The type of ordering requirement. Indicates which check failed or passed.</p>
|
|
876
|
+
* <ul>
|
|
877
|
+
* <li>
|
|
878
|
+
* <p>
|
|
879
|
+
* <code>OUTPOST_ACTIVE_CHECK_ERROR</code> - The Outpost must be in
|
|
880
|
+
* an active state.</p>
|
|
881
|
+
* </li>
|
|
882
|
+
* <li>
|
|
883
|
+
* <p>
|
|
884
|
+
* <code>MAXIMUM_ALLOWED_ORDERS_CHECK_ERROR</code> - The maximum
|
|
885
|
+
* number of allowed orders has been reached.</p>
|
|
886
|
+
* </li>
|
|
887
|
+
* <li>
|
|
888
|
+
* <p>
|
|
889
|
+
* <code>VALID_ZIP_CODE_CHECK_ERROR</code> - The site address must
|
|
890
|
+
* have a valid zip code.</p>
|
|
891
|
+
* </li>
|
|
892
|
+
* <li>
|
|
893
|
+
* <p>
|
|
894
|
+
* <code>RACK_PHYSICAL_PROPERTIES_CHECK_ERROR</code> - The rack
|
|
895
|
+
* physical properties do not meet requirements.</p>
|
|
896
|
+
* </li>
|
|
897
|
+
* <li>
|
|
898
|
+
* <p>
|
|
899
|
+
* <code>OPERATING_ADDRESS_EXISTENCE_CHECK_ERROR</code> - The site
|
|
900
|
+
* must have an operating address.</p>
|
|
901
|
+
* </li>
|
|
902
|
+
* <li>
|
|
903
|
+
* <p>
|
|
904
|
+
* <code>SHIPPING_ADDRESS_EXISTENCE_CHECK_ERROR</code> - The site
|
|
905
|
+
* must have a shipping address.</p>
|
|
906
|
+
* </li>
|
|
907
|
+
* <li>
|
|
908
|
+
* <p>
|
|
909
|
+
* <code>COUNTRY_CODE_MISMATCH_CHECK_ERROR</code> - The country
|
|
910
|
+
* code on the quote does not match the Outpost site country.</p>
|
|
911
|
+
* </li>
|
|
912
|
+
* <li>
|
|
913
|
+
* <p>
|
|
914
|
+
* <code>OUTPOST_GENERATION_MISMATCH_ERROR</code> - The Outpost generation
|
|
915
|
+
* does not match the requested configuration.</p>
|
|
916
|
+
* </li>
|
|
917
|
+
* <li>
|
|
918
|
+
* <p>
|
|
919
|
+
* <code>OUTPOST_ID_MISSING_ON_QUOTE_ERROR</code> - The quote must
|
|
920
|
+
* be associated with an Outpost before submitting an order.</p>
|
|
921
|
+
* </li>
|
|
922
|
+
* <li>
|
|
923
|
+
* <p>
|
|
924
|
+
* <code>ENTERPRISE_SUPPORT_ERROR</code> - Enterprise Support is
|
|
925
|
+
* required.</p>
|
|
926
|
+
* </li>
|
|
927
|
+
* <li>
|
|
928
|
+
* <p>
|
|
929
|
+
* <code>SHIPPING_ADDRESS_MISSING_CONTACT_NAME_ERROR</code> - The
|
|
930
|
+
* shipping address must have a contact name.</p>
|
|
931
|
+
* </li>
|
|
932
|
+
* <li>
|
|
933
|
+
* <p>
|
|
934
|
+
* <code>SHIPPING_ADDRESS_MISSING_CONTACT_NUMBER_ERROR</code> - The
|
|
935
|
+
* shipping address must have a contact phone number.</p>
|
|
936
|
+
* </li>
|
|
937
|
+
* <li>
|
|
938
|
+
* <p>
|
|
939
|
+
* <code>SHIPPING_ADDRESS_MISSING_CONTACT_INFO_ERROR</code> - The
|
|
940
|
+
* shipping address must have contact information.</p>
|
|
941
|
+
* </li>
|
|
942
|
+
* <li>
|
|
943
|
+
* <p>
|
|
944
|
+
* <code>OUTPOST_STATE_CHANGED_ERROR</code> - The Outpost state has
|
|
945
|
+
* changed since the quote was created.</p>
|
|
946
|
+
* </li>
|
|
947
|
+
* <li>
|
|
948
|
+
* <p>
|
|
949
|
+
* <code>OUTPOST_NOT_FOUND_ERROR</code> - The Outpost associated
|
|
950
|
+
* with the quote was not found.</p>
|
|
951
|
+
* </li>
|
|
952
|
+
* <li>
|
|
953
|
+
* <p>
|
|
954
|
+
* <code>OUTPOST_RENEWAL_REQUIRED_ERROR</code> - The Outpost
|
|
955
|
+
* requires a renewal before a new order can be submitted.</p>
|
|
956
|
+
* </li>
|
|
957
|
+
* <li>
|
|
958
|
+
* <p>
|
|
959
|
+
* <code>UNSUPPORTED</code> - The requirement type is not
|
|
960
|
+
* recognized.</p>
|
|
961
|
+
* </li>
|
|
962
|
+
* </ul>
|
|
963
|
+
* @public
|
|
964
|
+
*/
|
|
965
|
+
OrderingRequirementType?: OrderingRequirementType | undefined;
|
|
966
|
+
/**
|
|
967
|
+
* <p>The status of the ordering requirement. Valid values are <code>PASS</code>,
|
|
968
|
+
* <code>FAIL</code>, and <code>EXEMPT</code>.</p>
|
|
969
|
+
* @public
|
|
970
|
+
*/
|
|
971
|
+
Status?: OrderingRequirementStatus | undefined;
|
|
972
|
+
}
|
|
973
|
+
/**
|
|
974
|
+
* <p>The pricing details for a subscription.</p>
|
|
975
|
+
* @public
|
|
976
|
+
*/
|
|
977
|
+
export interface SubscriptionPricingDetails {
|
|
978
|
+
/**
|
|
979
|
+
* <p>The payment option.</p>
|
|
980
|
+
* @public
|
|
981
|
+
*/
|
|
982
|
+
PaymentOption?: PaymentOption | undefined;
|
|
983
|
+
/**
|
|
984
|
+
* <p>The payment term.</p>
|
|
985
|
+
* @public
|
|
986
|
+
*/
|
|
987
|
+
PaymentTerm?: PaymentTerm | undefined;
|
|
988
|
+
/**
|
|
989
|
+
* <p>The upfront price.</p>
|
|
990
|
+
* @public
|
|
991
|
+
*/
|
|
992
|
+
UpfrontPrice?: number | undefined;
|
|
993
|
+
/**
|
|
994
|
+
* <p>The monthly recurring price.</p>
|
|
995
|
+
* @public
|
|
996
|
+
*/
|
|
997
|
+
MonthlyRecurringPrice?: number | undefined;
|
|
998
|
+
/**
|
|
999
|
+
* <p>The currency of the price. Currently only <code>USD</code> is supported.</p>
|
|
1000
|
+
* @public
|
|
1001
|
+
*/
|
|
1002
|
+
Currency?: CurrencyCode | undefined;
|
|
1003
|
+
}
|
|
1004
|
+
/**
|
|
1005
|
+
* <p>A pricing option for the specified Outpost.</p>
|
|
1006
|
+
* @public
|
|
1007
|
+
*/
|
|
1008
|
+
export interface PricingOption {
|
|
1009
|
+
/**
|
|
1010
|
+
* <p>The type of pricing model.</p>
|
|
1011
|
+
* @public
|
|
1012
|
+
*/
|
|
1013
|
+
PricingType?: QuotePricingType | undefined;
|
|
1014
|
+
/**
|
|
1015
|
+
* <p>The subscription pricing details for this pricing option.</p>
|
|
1016
|
+
* @public
|
|
1017
|
+
*/
|
|
1018
|
+
SubscriptionPricingDetails?: SubscriptionPricingDetails | undefined;
|
|
1019
|
+
}
|
|
1020
|
+
/**
|
|
1021
|
+
* <p>The physical specification details for a rack in a quote option.</p>
|
|
1022
|
+
* @public
|
|
1023
|
+
*/
|
|
1024
|
+
export interface RackSpecificationDetails {
|
|
1025
|
+
/**
|
|
1026
|
+
* <p>The ID of the rack.</p>
|
|
1027
|
+
* @public
|
|
1028
|
+
*/
|
|
1029
|
+
RackId?: string | undefined;
|
|
1030
|
+
/**
|
|
1031
|
+
* <p>The use of the rack. Valid values are <code>COMPUTE</code> and
|
|
1032
|
+
* <code>NETWORKING</code>.</p>
|
|
1033
|
+
* @public
|
|
1034
|
+
*/
|
|
1035
|
+
RackUse?: QuoteRackUseType | undefined;
|
|
1036
|
+
/**
|
|
1037
|
+
* <p>The maximum power draw of the rack in kVA.</p>
|
|
1038
|
+
* @public
|
|
1039
|
+
*/
|
|
1040
|
+
RackPowerDrawKva?: number | undefined;
|
|
1041
|
+
/**
|
|
1042
|
+
* <p>The weight of the rack in pounds.</p>
|
|
1043
|
+
* @public
|
|
1044
|
+
*/
|
|
1045
|
+
RackWeightLbs?: number | undefined;
|
|
1046
|
+
/**
|
|
1047
|
+
* <p>The height of the rack in inches.</p>
|
|
1048
|
+
* @public
|
|
1049
|
+
*/
|
|
1050
|
+
RackHeightInches?: number | undefined;
|
|
1051
|
+
/**
|
|
1052
|
+
* <p>The width of the rack in inches.</p>
|
|
1053
|
+
* @public
|
|
1054
|
+
*/
|
|
1055
|
+
RackWidthInches?: number | undefined;
|
|
1056
|
+
/**
|
|
1057
|
+
* <p>The depth of the rack in inches.</p>
|
|
1058
|
+
* @public
|
|
1059
|
+
*/
|
|
1060
|
+
RackDepthInches?: number | undefined;
|
|
1061
|
+
/**
|
|
1062
|
+
* <p>The rack unit height.</p>
|
|
1063
|
+
* <ul>
|
|
1064
|
+
* <li>
|
|
1065
|
+
* <p>
|
|
1066
|
+
* <code>HEIGHT_42U</code> - 42 rack units.</p>
|
|
1067
|
+
* </li>
|
|
1068
|
+
* <li>
|
|
1069
|
+
* <p>
|
|
1070
|
+
* <code>HEIGHT_2U</code> - 2 rack units.</p>
|
|
1071
|
+
* </li>
|
|
1072
|
+
* <li>
|
|
1073
|
+
* <p>
|
|
1074
|
+
* <code>HEIGHT_1U</code> - 1 rack unit.</p>
|
|
1075
|
+
* </li>
|
|
1076
|
+
* </ul>
|
|
1077
|
+
* @public
|
|
1078
|
+
*/
|
|
1079
|
+
RackUnitHeight?: RackUnitHeight | undefined;
|
|
1080
|
+
/**
|
|
1081
|
+
* <p>The Amazon EC2 capacities for the rack.</p>
|
|
1082
|
+
* @public
|
|
1083
|
+
*/
|
|
1084
|
+
EC2Capacities?: EC2Capacity[] | undefined;
|
|
1085
|
+
}
|
|
1086
|
+
/**
|
|
1087
|
+
* <p>The physical specification details for a server in a quote option.</p>
|
|
1088
|
+
* @public
|
|
1089
|
+
*/
|
|
1090
|
+
export interface ServerSpecificationDetails {
|
|
1091
|
+
/**
|
|
1092
|
+
* <p>The maximum power draw of the server in kVA.</p>
|
|
1093
|
+
* @public
|
|
1094
|
+
*/
|
|
1095
|
+
ServerPowerDrawKva?: number | undefined;
|
|
1096
|
+
/**
|
|
1097
|
+
* <p>The weight of the server in pounds.</p>
|
|
1098
|
+
* @public
|
|
1099
|
+
*/
|
|
1100
|
+
ServerWeightLbs?: number | undefined;
|
|
1101
|
+
/**
|
|
1102
|
+
* <p>The height of the server in inches.</p>
|
|
1103
|
+
* @public
|
|
1104
|
+
*/
|
|
1105
|
+
ServerHeightInches?: number | undefined;
|
|
1106
|
+
/**
|
|
1107
|
+
* <p>The width of the server in inches.</p>
|
|
1108
|
+
* @public
|
|
1109
|
+
*/
|
|
1110
|
+
ServerWidthInches?: number | undefined;
|
|
1111
|
+
/**
|
|
1112
|
+
* <p>The depth of the server in inches.</p>
|
|
1113
|
+
* @public
|
|
1114
|
+
*/
|
|
1115
|
+
ServerDepthInches?: number | undefined;
|
|
1116
|
+
/**
|
|
1117
|
+
* <p>The rack unit height of the server.</p>
|
|
1118
|
+
* <ul>
|
|
1119
|
+
* <li>
|
|
1120
|
+
* <p>
|
|
1121
|
+
* <code>HEIGHT_2U</code> - 2 rack units.</p>
|
|
1122
|
+
* </li>
|
|
1123
|
+
* <li>
|
|
1124
|
+
* <p>
|
|
1125
|
+
* <code>HEIGHT_1U</code> - 1 rack unit.</p>
|
|
1126
|
+
* </li>
|
|
1127
|
+
* </ul>
|
|
1128
|
+
* @public
|
|
1129
|
+
*/
|
|
1130
|
+
RackUnitHeight?: RackUnitHeight | undefined;
|
|
1131
|
+
/**
|
|
1132
|
+
* <p>The Amazon EC2 capacities for the server.</p>
|
|
1133
|
+
* @public
|
|
1134
|
+
*/
|
|
1135
|
+
EC2Capacities?: EC2Capacity[] | undefined;
|
|
1136
|
+
}
|
|
1137
|
+
/**
|
|
1138
|
+
* <p>A physical specification for a quote option. Describes the rack or server configuration
|
|
1139
|
+
* that would be deployed.</p>
|
|
1140
|
+
* @public
|
|
1141
|
+
*/
|
|
1142
|
+
export interface QuoteSpecification {
|
|
1143
|
+
/**
|
|
1144
|
+
* <p>The type of specification. Valid values are <code>NEW_RACK</code>,
|
|
1145
|
+
* <code>UPDATED_RACK</code>, <code>EXISTING_RACK</code>, and <code>SERVER</code>.</p>
|
|
1146
|
+
* @public
|
|
1147
|
+
*/
|
|
1148
|
+
QuoteSpecificationType?: QuoteSpecificationType | undefined;
|
|
1149
|
+
/**
|
|
1150
|
+
* <p>The existing rack specification details, if the specification type is
|
|
1151
|
+
* <code>UPDATED_RACK</code> or <code>EXISTING_RACK</code>.</p>
|
|
1152
|
+
* @public
|
|
1153
|
+
*/
|
|
1154
|
+
ExistingRackSpecificationDetails?: RackSpecificationDetails | undefined;
|
|
1155
|
+
/**
|
|
1156
|
+
* <p>The final rack specification details after the quote is fulfilled.</p>
|
|
1157
|
+
* @public
|
|
1158
|
+
*/
|
|
1159
|
+
FinalRackSpecificationDetails?: RackSpecificationDetails | undefined;
|
|
1160
|
+
/**
|
|
1161
|
+
* <p>The server specification details, if the specification type is
|
|
1162
|
+
* <code>SERVER</code>.</p>
|
|
1163
|
+
* @public
|
|
1164
|
+
*/
|
|
1165
|
+
ServerSpecificationDetails?: ServerSpecificationDetails | undefined;
|
|
1166
|
+
}
|
|
1167
|
+
/**
|
|
1168
|
+
* <p>A configuration and pricing option for a quote. Each option includes the capacity
|
|
1169
|
+
* breakdown, physical specifications for the racks or servers, and pricing details.</p>
|
|
1170
|
+
* @public
|
|
1171
|
+
*/
|
|
1172
|
+
export interface QuoteOption {
|
|
1173
|
+
/**
|
|
1174
|
+
* <p>The ID of the quote option.</p>
|
|
1175
|
+
* @public
|
|
1176
|
+
*/
|
|
1177
|
+
QuoteOptionIdentifier?: string | undefined;
|
|
1178
|
+
/**
|
|
1179
|
+
* <p>The capacities included in this quote option.</p>
|
|
1180
|
+
* @public
|
|
1181
|
+
*/
|
|
1182
|
+
Capacities?: QuoteCapacity[] | undefined;
|
|
1183
|
+
/**
|
|
1184
|
+
* <p>A summary of the existing, final, and changed capacity for this quote option.</p>
|
|
1185
|
+
* @public
|
|
1186
|
+
*/
|
|
1187
|
+
CapacitySummary?: CapacitySummary | undefined;
|
|
1188
|
+
/**
|
|
1189
|
+
* <p>The physical specifications for the racks or servers in this quote option.</p>
|
|
1190
|
+
* @public
|
|
1191
|
+
*/
|
|
1192
|
+
Specifications?: QuoteSpecification[] | undefined;
|
|
1193
|
+
/**
|
|
1194
|
+
* <p>The pricing options for this quote option.</p>
|
|
1195
|
+
* @public
|
|
1196
|
+
*/
|
|
1197
|
+
PricingOptions?: PricingOption[] | undefined;
|
|
1198
|
+
}
|
|
1199
|
+
/**
|
|
1200
|
+
* <p>Information about a quote for an Outpost. A quote provides pricing and configuration
|
|
1201
|
+
* options based on the requested capacity.</p>
|
|
1202
|
+
* @public
|
|
1203
|
+
*/
|
|
1204
|
+
export interface Quote {
|
|
1205
|
+
/**
|
|
1206
|
+
* <p>The ID of the quote.</p>
|
|
1207
|
+
* @public
|
|
1208
|
+
*/
|
|
1209
|
+
QuoteId?: string | undefined;
|
|
1210
|
+
/**
|
|
1211
|
+
* <p>The ID of the account that owns the quote.</p>
|
|
1212
|
+
* @public
|
|
1213
|
+
*/
|
|
1214
|
+
AccountId?: string | undefined;
|
|
1215
|
+
/**
|
|
1216
|
+
* <p>The status of the quote.</p>
|
|
1217
|
+
* <ul>
|
|
1218
|
+
* <li>
|
|
1219
|
+
* <p>
|
|
1220
|
+
* <code>CREATED</code> - The quote has been created and is
|
|
1221
|
+
* available for review.</p>
|
|
1222
|
+
* </li>
|
|
1223
|
+
* <li>
|
|
1224
|
+
* <p>
|
|
1225
|
+
* <code>ORDER_SUBMITTED</code> - An order has been submitted for
|
|
1226
|
+
* the quote.</p>
|
|
1227
|
+
* </li>
|
|
1228
|
+
* <li>
|
|
1229
|
+
* <p>
|
|
1230
|
+
* <code>EXPIRED</code> - The quote has expired and can no longer
|
|
1231
|
+
* be used to submit an order.</p>
|
|
1232
|
+
* </li>
|
|
1233
|
+
* </ul>
|
|
1234
|
+
* @public
|
|
1235
|
+
*/
|
|
1236
|
+
QuoteStatus?: QuoteStatus | undefined;
|
|
1237
|
+
/**
|
|
1238
|
+
* <p>A message about the status of the quote.</p>
|
|
1239
|
+
* @public
|
|
1240
|
+
*/
|
|
1241
|
+
StatusMessage?: string | undefined;
|
|
1242
|
+
/**
|
|
1243
|
+
* <p>The ARN of the Outpost associated with the quote.</p>
|
|
683
1244
|
* @public
|
|
684
1245
|
*/
|
|
685
|
-
|
|
1246
|
+
OutpostArn?: string | undefined;
|
|
686
1247
|
/**
|
|
687
|
-
* <p>The
|
|
1248
|
+
* <p>The country code for the Outpost site location.</p>
|
|
688
1249
|
* @public
|
|
689
1250
|
*/
|
|
690
|
-
|
|
1251
|
+
CountryCode?: string | undefined;
|
|
691
1252
|
/**
|
|
692
|
-
* <p>The
|
|
1253
|
+
* <p>The capacity requirements specified in the quote request.</p>
|
|
693
1254
|
* @public
|
|
694
1255
|
*/
|
|
695
|
-
|
|
1256
|
+
RequestedCapacities?: QuoteCapacity[] | undefined;
|
|
696
1257
|
/**
|
|
697
|
-
* <p>The
|
|
1258
|
+
* <p>The physical constraints specified in the quote request.</p>
|
|
698
1259
|
* @public
|
|
699
1260
|
*/
|
|
700
|
-
|
|
1261
|
+
RequestedConstraints?: QuoteConstraint[] | undefined;
|
|
701
1262
|
/**
|
|
702
|
-
* <p>The
|
|
1263
|
+
* <p>The payment options specified in the quote request.</p>
|
|
703
1264
|
* @public
|
|
704
1265
|
*/
|
|
705
|
-
|
|
1266
|
+
RequestedPaymentOptions?: PaymentOption[] | undefined;
|
|
706
1267
|
/**
|
|
707
|
-
* <p>The
|
|
1268
|
+
* <p>The payment terms specified in the quote request.</p>
|
|
708
1269
|
* @public
|
|
709
1270
|
*/
|
|
710
|
-
|
|
1271
|
+
RequestedPaymentTerms?: PaymentTerm[] | undefined;
|
|
711
1272
|
/**
|
|
712
|
-
* <p>The
|
|
1273
|
+
* <p>The configuration and pricing options for the quote. Each option includes capacity
|
|
1274
|
+
* details, physical specifications, and pricing information.</p>
|
|
713
1275
|
* @public
|
|
714
1276
|
*/
|
|
715
|
-
|
|
1277
|
+
QuoteOptions?: QuoteOption[] | undefined;
|
|
716
1278
|
/**
|
|
717
|
-
* <p>The
|
|
1279
|
+
* <p>The requirements that must be met before an order can be submitted for the quote.</p>
|
|
718
1280
|
* @public
|
|
719
1281
|
*/
|
|
720
|
-
|
|
1282
|
+
OrderingRequirements?: OrderingRequirement[] | undefined;
|
|
721
1283
|
/**
|
|
722
|
-
* <p>The ID of the
|
|
1284
|
+
* <p>The ID of the order submitted for the quote.</p>
|
|
723
1285
|
* @public
|
|
724
1286
|
*/
|
|
725
|
-
|
|
1287
|
+
SubmittedOrderId?: string | undefined;
|
|
726
1288
|
/**
|
|
727
|
-
* <p>The
|
|
1289
|
+
* <p>The date the quote was created.</p>
|
|
728
1290
|
* @public
|
|
729
1291
|
*/
|
|
730
|
-
|
|
1292
|
+
CreatedDate?: Date | undefined;
|
|
731
1293
|
/**
|
|
732
|
-
* <p>The
|
|
1294
|
+
* <p>The date the quote expires.</p>
|
|
733
1295
|
* @public
|
|
734
1296
|
*/
|
|
735
|
-
|
|
1297
|
+
ExpirationDate?: Date | undefined;
|
|
736
1298
|
/**
|
|
737
|
-
* <p>
|
|
1299
|
+
* <p>The description of the quote.</p>
|
|
738
1300
|
* @public
|
|
739
1301
|
*/
|
|
740
|
-
|
|
1302
|
+
Description?: string | undefined;
|
|
741
1303
|
}
|
|
742
1304
|
/**
|
|
743
1305
|
* @public
|
|
744
1306
|
*/
|
|
745
|
-
export interface
|
|
1307
|
+
export interface CreateQuoteOutput {
|
|
746
1308
|
/**
|
|
747
|
-
* <p>Information about
|
|
1309
|
+
* <p>Information about the quote.</p>
|
|
748
1310
|
* @public
|
|
749
1311
|
*/
|
|
750
|
-
|
|
1312
|
+
Quote?: Quote | undefined;
|
|
751
1313
|
}
|
|
752
1314
|
/**
|
|
753
1315
|
* @public
|
|
@@ -804,6 +1366,11 @@ export interface CreateRenewalOutput {
|
|
|
804
1366
|
* @public
|
|
805
1367
|
*/
|
|
806
1368
|
MonthlyRecurringPrice?: number | undefined;
|
|
1369
|
+
/**
|
|
1370
|
+
* <p>The currency of the renewal price.</p>
|
|
1371
|
+
* @public
|
|
1372
|
+
*/
|
|
1373
|
+
Currency?: CurrencyCode | undefined;
|
|
807
1374
|
}
|
|
808
1375
|
/**
|
|
809
1376
|
* <p> Information about the physical and logistical details for racks at sites.
|
|
@@ -1001,6 +1568,21 @@ export interface DeleteOutpostInput {
|
|
|
1001
1568
|
*/
|
|
1002
1569
|
export interface DeleteOutpostOutput {
|
|
1003
1570
|
}
|
|
1571
|
+
/**
|
|
1572
|
+
* @public
|
|
1573
|
+
*/
|
|
1574
|
+
export interface DeleteQuoteInput {
|
|
1575
|
+
/**
|
|
1576
|
+
* <p>The ID or ARN of the quote.</p>
|
|
1577
|
+
* @public
|
|
1578
|
+
*/
|
|
1579
|
+
QuoteIdentifier: string | undefined;
|
|
1580
|
+
}
|
|
1581
|
+
/**
|
|
1582
|
+
* @public
|
|
1583
|
+
*/
|
|
1584
|
+
export interface DeleteQuoteOutput {
|
|
1585
|
+
}
|
|
1004
1586
|
/**
|
|
1005
1587
|
* @public
|
|
1006
1588
|
*/
|
|
@@ -1016,6 +1598,58 @@ export interface DeleteSiteInput {
|
|
|
1016
1598
|
*/
|
|
1017
1599
|
export interface DeleteSiteOutput {
|
|
1018
1600
|
}
|
|
1601
|
+
/**
|
|
1602
|
+
* <p>A supported form factor and Outpost generation configuration for an instance type.</p>
|
|
1603
|
+
* @public
|
|
1604
|
+
*/
|
|
1605
|
+
export interface FormFactorConfig {
|
|
1606
|
+
/**
|
|
1607
|
+
* <p>The form factor. Valid values are <code>RACK</code> for rack-based Outposts and
|
|
1608
|
+
* <code>SERVER</code> for server-based Outposts.</p>
|
|
1609
|
+
* @public
|
|
1610
|
+
*/
|
|
1611
|
+
FormFactor?: FormFactor | undefined;
|
|
1612
|
+
/**
|
|
1613
|
+
* <p>The Outpost generation. Valid values are <code>GENERATION_1</code> for first-generation
|
|
1614
|
+
* rack deployments and <code>GENERATION_2</code> for second-generation rack deployments. This
|
|
1615
|
+
* value is not set for server form factors.</p>
|
|
1616
|
+
* @public
|
|
1617
|
+
*/
|
|
1618
|
+
OutpostGeneration?: OutpostGeneration | undefined;
|
|
1619
|
+
}
|
|
1620
|
+
/**
|
|
1621
|
+
* <p>Information about an instance type that can be ordered for an Outpost, including
|
|
1622
|
+
* hardware specifications and supported form factors.</p>
|
|
1623
|
+
* @public
|
|
1624
|
+
*/
|
|
1625
|
+
export interface DetailedInstanceTypeItem {
|
|
1626
|
+
/**
|
|
1627
|
+
* <p>The instance type.</p>
|
|
1628
|
+
* @public
|
|
1629
|
+
*/
|
|
1630
|
+
InstanceType?: string | undefined;
|
|
1631
|
+
/**
|
|
1632
|
+
* <p>The number of default VCPUs in the instance type.</p>
|
|
1633
|
+
* @public
|
|
1634
|
+
*/
|
|
1635
|
+
VCPUs?: number | undefined;
|
|
1636
|
+
/**
|
|
1637
|
+
* <p>The memory size of the instance type, in MiB.</p>
|
|
1638
|
+
* @public
|
|
1639
|
+
*/
|
|
1640
|
+
MemoryInMib?: number | undefined;
|
|
1641
|
+
/**
|
|
1642
|
+
* <p>The network performance of the instance type.</p>
|
|
1643
|
+
* @public
|
|
1644
|
+
*/
|
|
1645
|
+
NetworkPerformance?: string | undefined;
|
|
1646
|
+
/**
|
|
1647
|
+
* <p>The supported form factor and Outpost generation configurations for the instance
|
|
1648
|
+
* type.</p>
|
|
1649
|
+
* @public
|
|
1650
|
+
*/
|
|
1651
|
+
FormFactorConfigs?: FormFactorConfig[] | undefined;
|
|
1652
|
+
}
|
|
1019
1653
|
/**
|
|
1020
1654
|
* @public
|
|
1021
1655
|
*/
|
|
@@ -1368,6 +2002,12 @@ export interface Subscription {
|
|
|
1368
2002
|
* @public
|
|
1369
2003
|
*/
|
|
1370
2004
|
EndDate?: Date | undefined;
|
|
2005
|
+
/**
|
|
2006
|
+
* <p>The currency of the subscription price. Currently only <code>USD</code> is
|
|
2007
|
+
* supported.</p>
|
|
2008
|
+
* @public
|
|
2009
|
+
*/
|
|
2010
|
+
Currency?: CurrencyCode | undefined;
|
|
1371
2011
|
/**
|
|
1372
2012
|
* <p>The amount you are billed each month in the subscription period.</p>
|
|
1373
2013
|
* @public
|
|
@@ -1522,54 +2162,32 @@ export interface GetOutpostSupportedInstanceTypesOutput {
|
|
|
1522
2162
|
/**
|
|
1523
2163
|
* @public
|
|
1524
2164
|
*/
|
|
1525
|
-
export interface
|
|
2165
|
+
export interface GetQuoteInput {
|
|
1526
2166
|
/**
|
|
1527
|
-
* <p>The ID or ARN of the
|
|
2167
|
+
* <p>The ID or ARN of the quote.</p>
|
|
1528
2168
|
* @public
|
|
1529
2169
|
*/
|
|
1530
|
-
|
|
2170
|
+
QuoteIdentifier: string | undefined;
|
|
1531
2171
|
}
|
|
1532
2172
|
/**
|
|
1533
|
-
* <p>The pricing details for a subscription.</p>
|
|
1534
2173
|
* @public
|
|
1535
2174
|
*/
|
|
1536
|
-
export interface
|
|
1537
|
-
/**
|
|
1538
|
-
* <p>The payment option.</p>
|
|
1539
|
-
* @public
|
|
1540
|
-
*/
|
|
1541
|
-
PaymentOption?: PaymentOption | undefined;
|
|
1542
|
-
/**
|
|
1543
|
-
* <p>The payment term.</p>
|
|
1544
|
-
* @public
|
|
1545
|
-
*/
|
|
1546
|
-
PaymentTerm?: PaymentTerm | undefined;
|
|
1547
|
-
/**
|
|
1548
|
-
* <p>The upfront price.</p>
|
|
1549
|
-
* @public
|
|
1550
|
-
*/
|
|
1551
|
-
UpfrontPrice?: number | undefined;
|
|
2175
|
+
export interface GetQuoteOutput {
|
|
1552
2176
|
/**
|
|
1553
|
-
* <p>
|
|
2177
|
+
* <p>Information about the quote.</p>
|
|
1554
2178
|
* @public
|
|
1555
2179
|
*/
|
|
1556
|
-
|
|
2180
|
+
Quote?: Quote | undefined;
|
|
1557
2181
|
}
|
|
1558
2182
|
/**
|
|
1559
|
-
* <p>A pricing option for the specified Outpost.</p>
|
|
1560
2183
|
* @public
|
|
1561
2184
|
*/
|
|
1562
|
-
export interface
|
|
1563
|
-
/**
|
|
1564
|
-
* <p>The type of pricing model.</p>
|
|
1565
|
-
* @public
|
|
1566
|
-
*/
|
|
1567
|
-
PricingType?: QuotePricingType | undefined;
|
|
2185
|
+
export interface GetRenewalPricingInput {
|
|
1568
2186
|
/**
|
|
1569
|
-
* <p>The
|
|
2187
|
+
* <p>The ID or ARN of the Outpost.</p>
|
|
1570
2188
|
* @public
|
|
1571
2189
|
*/
|
|
1572
|
-
|
|
2190
|
+
OutpostIdentifier: string | undefined;
|
|
1573
2191
|
}
|
|
1574
2192
|
/**
|
|
1575
2193
|
* @public
|
|
@@ -1891,6 +2509,43 @@ export interface ListCatalogItemsOutput {
|
|
|
1891
2509
|
*/
|
|
1892
2510
|
NextToken?: string | undefined;
|
|
1893
2511
|
}
|
|
2512
|
+
/**
|
|
2513
|
+
* @public
|
|
2514
|
+
*/
|
|
2515
|
+
export interface ListOrderableInstanceTypesInput {
|
|
2516
|
+
/**
|
|
2517
|
+
* <p>Filters the results by Outpost generation. Specify <code>GENERATION_1</code> for
|
|
2518
|
+
* first-generation rack deployments or <code>GENERATION_2</code> for second-generation rack
|
|
2519
|
+
* deployments.</p>
|
|
2520
|
+
* @public
|
|
2521
|
+
*/
|
|
2522
|
+
OutpostGenerationFilter?: OutpostGeneration | undefined;
|
|
2523
|
+
/**
|
|
2524
|
+
* <p>The maximum page size.</p>
|
|
2525
|
+
* @public
|
|
2526
|
+
*/
|
|
2527
|
+
MaxResults?: number | undefined;
|
|
2528
|
+
/**
|
|
2529
|
+
* <p>The pagination token.</p>
|
|
2530
|
+
* @public
|
|
2531
|
+
*/
|
|
2532
|
+
NextToken?: string | undefined;
|
|
2533
|
+
}
|
|
2534
|
+
/**
|
|
2535
|
+
* @public
|
|
2536
|
+
*/
|
|
2537
|
+
export interface ListOrderableInstanceTypesOutput {
|
|
2538
|
+
/**
|
|
2539
|
+
* <p>Information about the instance types that can be ordered for the Outpost.</p>
|
|
2540
|
+
* @public
|
|
2541
|
+
*/
|
|
2542
|
+
InstanceTypes?: DetailedInstanceTypeItem[] | undefined;
|
|
2543
|
+
/**
|
|
2544
|
+
* <p>The pagination token.</p>
|
|
2545
|
+
* @public
|
|
2546
|
+
*/
|
|
2547
|
+
NextToken?: string | undefined;
|
|
2548
|
+
}
|
|
1894
2549
|
/**
|
|
1895
2550
|
* @public
|
|
1896
2551
|
*/
|
|
@@ -2039,6 +2694,117 @@ export interface ListOutpostsOutput {
|
|
|
2039
2694
|
*/
|
|
2040
2695
|
NextToken?: string | undefined;
|
|
2041
2696
|
}
|
|
2697
|
+
/**
|
|
2698
|
+
* @public
|
|
2699
|
+
*/
|
|
2700
|
+
export interface ListQuotesInput {
|
|
2701
|
+
/**
|
|
2702
|
+
* <p>The pagination token.</p>
|
|
2703
|
+
* @public
|
|
2704
|
+
*/
|
|
2705
|
+
NextToken?: string | undefined;
|
|
2706
|
+
/**
|
|
2707
|
+
* <p>The maximum page size.</p>
|
|
2708
|
+
* @public
|
|
2709
|
+
*/
|
|
2710
|
+
MaxResults?: number | undefined;
|
|
2711
|
+
}
|
|
2712
|
+
/**
|
|
2713
|
+
* <p>Summary information about a quote.</p>
|
|
2714
|
+
* @public
|
|
2715
|
+
*/
|
|
2716
|
+
export interface QuoteSummary {
|
|
2717
|
+
/**
|
|
2718
|
+
* <p>The ID of the quote.</p>
|
|
2719
|
+
* @public
|
|
2720
|
+
*/
|
|
2721
|
+
QuoteId?: string | undefined;
|
|
2722
|
+
/**
|
|
2723
|
+
* <p>The ID of the account that owns the quote.</p>
|
|
2724
|
+
* @public
|
|
2725
|
+
*/
|
|
2726
|
+
AccountId?: string | undefined;
|
|
2727
|
+
/**
|
|
2728
|
+
* <p>The status of the quote.</p>
|
|
2729
|
+
* @public
|
|
2730
|
+
*/
|
|
2731
|
+
QuoteStatus?: QuoteStatus | undefined;
|
|
2732
|
+
/**
|
|
2733
|
+
* <p>A message about the status of the quote.</p>
|
|
2734
|
+
* @public
|
|
2735
|
+
*/
|
|
2736
|
+
StatusMessage?: string | undefined;
|
|
2737
|
+
/**
|
|
2738
|
+
* <p>The ARN of the Outpost associated with the quote.</p>
|
|
2739
|
+
* @public
|
|
2740
|
+
*/
|
|
2741
|
+
OutpostArn?: string | undefined;
|
|
2742
|
+
/**
|
|
2743
|
+
* <p>The country code for the Outpost site location.</p>
|
|
2744
|
+
* @public
|
|
2745
|
+
*/
|
|
2746
|
+
CountryCode?: string | undefined;
|
|
2747
|
+
/**
|
|
2748
|
+
* <p>The capacity requirements specified in the quote request.</p>
|
|
2749
|
+
* @public
|
|
2750
|
+
*/
|
|
2751
|
+
RequestedCapacities?: QuoteCapacity[] | undefined;
|
|
2752
|
+
/**
|
|
2753
|
+
* <p>The physical constraints specified in the quote request.</p>
|
|
2754
|
+
* @public
|
|
2755
|
+
*/
|
|
2756
|
+
RequestedConstraints?: QuoteConstraint[] | undefined;
|
|
2757
|
+
/**
|
|
2758
|
+
* <p>The payment options specified in the quote request.</p>
|
|
2759
|
+
* @public
|
|
2760
|
+
*/
|
|
2761
|
+
RequestedPaymentOptions?: PaymentOption[] | undefined;
|
|
2762
|
+
/**
|
|
2763
|
+
* <p>The payment terms specified in the quote request.</p>
|
|
2764
|
+
* @public
|
|
2765
|
+
*/
|
|
2766
|
+
RequestedPaymentTerms?: PaymentTerm[] | undefined;
|
|
2767
|
+
/**
|
|
2768
|
+
* <p>The configuration and pricing options for the quote.</p>
|
|
2769
|
+
* @public
|
|
2770
|
+
*/
|
|
2771
|
+
QuoteOptions?: QuoteOption[] | undefined;
|
|
2772
|
+
/**
|
|
2773
|
+
* <p>The ID of the order submitted for the quote.</p>
|
|
2774
|
+
* @public
|
|
2775
|
+
*/
|
|
2776
|
+
SubmittedOrderId?: string | undefined;
|
|
2777
|
+
/**
|
|
2778
|
+
* <p>The date the quote was created.</p>
|
|
2779
|
+
* @public
|
|
2780
|
+
*/
|
|
2781
|
+
CreatedDate?: Date | undefined;
|
|
2782
|
+
/**
|
|
2783
|
+
* <p>The date the quote expires.</p>
|
|
2784
|
+
* @public
|
|
2785
|
+
*/
|
|
2786
|
+
ExpirationDate?: Date | undefined;
|
|
2787
|
+
/**
|
|
2788
|
+
* <p>The description of the quote.</p>
|
|
2789
|
+
* @public
|
|
2790
|
+
*/
|
|
2791
|
+
Description?: string | undefined;
|
|
2792
|
+
}
|
|
2793
|
+
/**
|
|
2794
|
+
* @public
|
|
2795
|
+
*/
|
|
2796
|
+
export interface ListQuotesOutput {
|
|
2797
|
+
/**
|
|
2798
|
+
* <p>Information about the quotes.</p>
|
|
2799
|
+
* @public
|
|
2800
|
+
*/
|
|
2801
|
+
Quotes?: QuoteSummary[] | undefined;
|
|
2802
|
+
/**
|
|
2803
|
+
* <p>The pagination token.</p>
|
|
2804
|
+
* @public
|
|
2805
|
+
*/
|
|
2806
|
+
NextToken?: string | undefined;
|
|
2807
|
+
}
|
|
2042
2808
|
/**
|
|
2043
2809
|
* @public
|
|
2044
2810
|
*/
|
|
@@ -2390,6 +3156,62 @@ export interface UpdateOutpostOutput {
|
|
|
2390
3156
|
*/
|
|
2391
3157
|
Outpost?: Outpost | undefined;
|
|
2392
3158
|
}
|
|
3159
|
+
/**
|
|
3160
|
+
* @public
|
|
3161
|
+
*/
|
|
3162
|
+
export interface UpdateQuoteInput {
|
|
3163
|
+
/**
|
|
3164
|
+
* <p>The ID or ARN of the quote.</p>
|
|
3165
|
+
* @public
|
|
3166
|
+
*/
|
|
3167
|
+
QuoteIdentifier: string | undefined;
|
|
3168
|
+
/**
|
|
3169
|
+
* <p>The ID or ARN of the Outpost to associate with the quote. Specify an empty string to
|
|
3170
|
+
* remove the Outpost association.</p>
|
|
3171
|
+
* @public
|
|
3172
|
+
*/
|
|
3173
|
+
OutpostIdentifier?: string | undefined;
|
|
3174
|
+
/**
|
|
3175
|
+
* <p>The country code for the Outpost site location.</p>
|
|
3176
|
+
* @public
|
|
3177
|
+
*/
|
|
3178
|
+
CountryCode?: string | undefined;
|
|
3179
|
+
/**
|
|
3180
|
+
* <p>The updated capacity requirements for the quote.</p>
|
|
3181
|
+
* @public
|
|
3182
|
+
*/
|
|
3183
|
+
RequestedCapacities?: QuoteCapacity[] | undefined;
|
|
3184
|
+
/**
|
|
3185
|
+
* <p>The updated physical constraints for the quote.</p>
|
|
3186
|
+
* @public
|
|
3187
|
+
*/
|
|
3188
|
+
RequestedConstraints?: QuoteConstraint[] | undefined;
|
|
3189
|
+
/**
|
|
3190
|
+
* <p>The updated payment options to include in the quote pricing.</p>
|
|
3191
|
+
* @public
|
|
3192
|
+
*/
|
|
3193
|
+
RequestedPaymentOptions?: PaymentOption[] | undefined;
|
|
3194
|
+
/**
|
|
3195
|
+
* <p>The updated payment terms to include in the quote pricing.</p>
|
|
3196
|
+
* @public
|
|
3197
|
+
*/
|
|
3198
|
+
RequestedPaymentTerms?: PaymentTerm[] | undefined;
|
|
3199
|
+
/**
|
|
3200
|
+
* <p>A description for the quote.</p>
|
|
3201
|
+
* @public
|
|
3202
|
+
*/
|
|
3203
|
+
Description?: string | undefined;
|
|
3204
|
+
}
|
|
3205
|
+
/**
|
|
3206
|
+
* @public
|
|
3207
|
+
*/
|
|
3208
|
+
export interface UpdateQuoteOutput {
|
|
3209
|
+
/**
|
|
3210
|
+
* <p>Information about the updated quote.</p>
|
|
3211
|
+
* @public
|
|
3212
|
+
*/
|
|
3213
|
+
Quote?: Quote | undefined;
|
|
3214
|
+
}
|
|
2393
3215
|
/**
|
|
2394
3216
|
* @public
|
|
2395
3217
|
*/
|