cdk-docker-image-deployment 0.0.155 → 0.0.157
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/.jsii +3 -3
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +8 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/customer-profiles-2020-08-15.min.json +29 -7
- package/node_modules/aws-sdk/apis/frauddetector-2019-11-15.min.json +48 -27
- package/node_modules/aws-sdk/apis/outposts-2019-12-03.min.json +38 -35
- package/node_modules/aws-sdk/clients/computeoptimizer.d.ts +37 -37
- package/node_modules/aws-sdk/clients/customerprofiles.d.ts +11 -3
- package/node_modules/aws-sdk/clients/frauddetector.d.ts +20 -2
- package/node_modules/aws-sdk/clients/mediaconvert.d.ts +78 -78
- package/node_modules/aws-sdk/clients/outposts.d.ts +14 -2
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +4 -4
- package/node_modules/aws-sdk/dist/aws-sdk.js +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +2 -2
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
|
@@ -635,6 +635,14 @@ declare namespace Outposts {
|
|
|
635
635
|
* Information about assets.
|
|
636
636
|
*/
|
|
637
637
|
AssetInformationList?: LineItemAssetInformationList;
|
|
638
|
+
/**
|
|
639
|
+
* The ID of the previous line item.
|
|
640
|
+
*/
|
|
641
|
+
PreviousLineItemId?: LineItemId;
|
|
642
|
+
/**
|
|
643
|
+
* The ID of the previous order.
|
|
644
|
+
*/
|
|
645
|
+
PreviousOrderId?: OrderId;
|
|
638
646
|
}
|
|
639
647
|
export interface LineItemAssetInformation {
|
|
640
648
|
/**
|
|
@@ -661,7 +669,7 @@ declare namespace Outposts {
|
|
|
661
669
|
Quantity?: LineItemQuantity;
|
|
662
670
|
}
|
|
663
671
|
export type LineItemRequestListDefinition = LineItemRequest[];
|
|
664
|
-
export type LineItemStatus = "PREPARING"|"BUILDING"|"SHIPPED"|"DELIVERED"|"INSTALLING"|"INSTALLED"|"ERROR"|"CANCELLED"|string;
|
|
672
|
+
export type LineItemStatus = "PREPARING"|"BUILDING"|"SHIPPED"|"DELIVERED"|"INSTALLING"|"INSTALLED"|"ERROR"|"CANCELLED"|"REPLACED"|string;
|
|
665
673
|
export type LineItemStatusCounts = {[key: string]: LineItemQuantity};
|
|
666
674
|
export interface ListAssetsInput {
|
|
667
675
|
/**
|
|
@@ -817,6 +825,10 @@ declare namespace Outposts {
|
|
|
817
825
|
* The payment term.
|
|
818
826
|
*/
|
|
819
827
|
PaymentTerm?: PaymentTerm;
|
|
828
|
+
/**
|
|
829
|
+
* The type of order.
|
|
830
|
+
*/
|
|
831
|
+
OrderType?: OrderType;
|
|
820
832
|
}
|
|
821
833
|
export type OrderId = string;
|
|
822
834
|
export type OrderStatus = "RECEIVED"|"PENDING"|"PROCESSING"|"INSTALLING"|"FULFILLED"|"CANCELLED"|"PREPARING"|"IN_PROGRESS"|"COMPLETED"|"ERROR"|string;
|
|
@@ -830,7 +842,7 @@ declare namespace Outposts {
|
|
|
830
842
|
*/
|
|
831
843
|
OrderId?: OrderId;
|
|
832
844
|
/**
|
|
833
|
-
*
|
|
845
|
+
* The type of order.
|
|
834
846
|
*/
|
|
835
847
|
OrderType?: OrderType;
|
|
836
848
|
/**
|