@aws-sdk/client-outposts 3.1068.0 → 3.1070.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.
@@ -539,8 +539,8 @@ export var ConnectionDetails$ = [3, n0, _CDon,
539
539
  ];
540
540
  export var CreateOrderInput$ = [3, n0, _COIr,
541
541
  0,
542
- [_OI, _PO, _LI, _PT],
543
- [0, 0, () => LineItemRequestListDefinition, 0], 2
542
+ [_OI, _PO, _QI, _QOI, _LI, _PT],
543
+ [0, 0, 0, 0, () => LineItemRequestListDefinition, 0], 2
544
544
  ];
545
545
  export var CreateOrderOutput$ = [3, n0, _COOr,
546
546
  0,
@@ -894,8 +894,8 @@ export var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
894
894
  ];
895
895
  export var Order$ = [3, n0, _O,
896
896
  0,
897
- [_OIu, _OIr, _St, _LI, _PO, _OSD, _OFD, _PT, _OT],
898
- [0, 0, 0, () => LineItemListDefinition, 0, 4, 4, 0, 0]
897
+ [_OIu, _QI, _QOI, _OIr, _St, _LI, _PO, _OSD, _OFD, _PT, _OT],
898
+ [0, 0, 0, 0, 0, () => LineItemListDefinition, 0, 4, 4, 0, 0]
899
899
  ];
900
900
  export var OrderingRequirement$ = [3, n0, _OR,
901
901
  0,
@@ -40,6 +40,8 @@ declare const CreateOrderCommand_base: {
40
40
  * const client = new OutpostsClient(config);
41
41
  * const input = { // CreateOrderInput
42
42
  * OutpostIdentifier: "STRING_VALUE", // required
43
+ * QuoteIdentifier: "STRING_VALUE",
44
+ * QuoteOptionIdentifier: "STRING_VALUE",
43
45
  * LineItems: [ // LineItemRequestListDefinition
44
46
  * { // LineItemRequest
45
47
  * CatalogItemId: "STRING_VALUE",
@@ -54,6 +56,8 @@ declare const CreateOrderCommand_base: {
54
56
  * // { // CreateOrderOutput
55
57
  * // Order: { // Order
56
58
  * // OutpostId: "STRING_VALUE",
59
+ * // QuoteIdentifier: "STRING_VALUE",
60
+ * // QuoteOptionIdentifier: "STRING_VALUE",
57
61
  * // OrderId: "STRING_VALUE",
58
62
  * // Status: "RECEIVED" || "PENDING" || "PROCESSING" || "INSTALLING" || "FULFILLED" || "CANCELLED" || "PREPARING" || "IN_PROGRESS" || "DELIVERED" || "COMPLETED" || "ERROR",
59
63
  * // LineItems: [ // LineItemListDefinition
@@ -46,6 +46,8 @@ declare const GetOrderCommand_base: {
46
46
  * // { // GetOrderOutput
47
47
  * // Order: { // Order
48
48
  * // OutpostId: "STRING_VALUE",
49
+ * // QuoteIdentifier: "STRING_VALUE",
50
+ * // QuoteOptionIdentifier: "STRING_VALUE",
49
51
  * // OrderId: "STRING_VALUE",
50
52
  * // Status: "RECEIVED" || "PENDING" || "PROCESSING" || "INSTALLING" || "FULFILLED" || "CANCELLED" || "PREPARING" || "IN_PROGRESS" || "DELIVERED" || "COMPLETED" || "ERROR",
51
53
  * // LineItems: [ // LineItemListDefinition
@@ -494,6 +494,16 @@ export interface CreateOrderInput {
494
494
  * @public
495
495
  */
496
496
  OutpostIdentifier: string | undefined;
497
+ /**
498
+ * <p>The ID of the quote to use for the order.</p>
499
+ * @public
500
+ */
501
+ QuoteIdentifier?: string | undefined;
502
+ /**
503
+ * <p>The ID of the quote option to use for the order.</p>
504
+ * @public
505
+ */
506
+ QuoteOptionIdentifier?: string | undefined;
497
507
  /**
498
508
  * <p>The line items that make up the order.</p>
499
509
  * @public
@@ -599,6 +609,16 @@ export interface Order {
599
609
  * @public
600
610
  */
601
611
  OutpostId?: string | undefined;
612
+ /**
613
+ * <p>The ID of the quote associated with the order.</p>
614
+ * @public
615
+ */
616
+ QuoteIdentifier?: string | undefined;
617
+ /**
618
+ * <p>The ID of the quote option associated with the order.</p>
619
+ * @public
620
+ */
621
+ QuoteOptionIdentifier?: string | undefined;
602
622
  /**
603
623
  * <p>The ID of the order.</p>
604
624
  * @public
@@ -1573,7 +1593,7 @@ export interface DeleteOutpostOutput {
1573
1593
  */
1574
1594
  export interface DeleteQuoteInput {
1575
1595
  /**
1576
- * <p>The ID or ARN of the quote.</p>
1596
+ * <p>The ID of the quote.</p>
1577
1597
  * @public
1578
1598
  */
1579
1599
  QuoteIdentifier: string | undefined;
@@ -2164,7 +2184,7 @@ export interface GetOutpostSupportedInstanceTypesOutput {
2164
2184
  */
2165
2185
  export interface GetQuoteInput {
2166
2186
  /**
2167
- * <p>The ID or ARN of the quote.</p>
2187
+ * <p>The ID of the quote.</p>
2168
2188
  * @public
2169
2189
  */
2170
2190
  QuoteIdentifier: string | undefined;
@@ -3161,7 +3181,7 @@ export interface UpdateOutpostOutput {
3161
3181
  */
3162
3182
  export interface UpdateQuoteInput {
3163
3183
  /**
3164
- * <p>The ID or ARN of the quote.</p>
3184
+ * <p>The ID of the quote.</p>
3165
3185
  * @public
3166
3186
  */
3167
3187
  QuoteIdentifier: string | undefined;
@@ -151,6 +151,8 @@ export interface LineItemRequest {
151
151
  }
152
152
  export interface CreateOrderInput {
153
153
  OutpostIdentifier: string | undefined;
154
+ QuoteIdentifier?: string | undefined;
155
+ QuoteOptionIdentifier?: string | undefined;
154
156
  LineItems?: LineItemRequest[] | undefined;
155
157
  PaymentOption: PaymentOption | undefined;
156
158
  PaymentTerm?: PaymentTerm | undefined;
@@ -175,6 +177,8 @@ export interface LineItem {
175
177
  }
176
178
  export interface Order {
177
179
  OutpostId?: string | undefined;
180
+ QuoteIdentifier?: string | undefined;
181
+ QuoteOptionIdentifier?: string | undefined;
178
182
  OrderId?: string | undefined;
179
183
  Status?: OrderStatus | undefined;
180
184
  LineItems?: LineItem[] | undefined;
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-outposts",
3
3
  "description": "AWS SDK for JavaScript Outposts Client for Node.js, Browser and React Native",
4
- "version": "3.1068.0",
4
+ "version": "3.1070.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline",
8
- "build:es": "tsc -p tsconfig.es.json",
8
+ "build:es": "premove dist-es && tsc -p tsconfig.es.json",
9
9
  "build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
10
- "build:types": "tsc -p tsconfig.types.json",
10
+ "build:types": "premove dist-types && tsc -p tsconfig.types.json",
11
11
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
12
- "clean": "premove dist-cjs dist-es dist-types tsconfig.cjs.tsbuildinfo tsconfig.es.tsbuildinfo tsconfig.types.tsbuildinfo",
12
+ "clean": "premove dist-cjs dist-es dist-types",
13
13
  "extract:docs": "api-extractor run --local",
14
- "generate:client": "node ../../scripts/generate-clients/single-service --solo outposts",
14
+ "generate:client": "node ../../scripts/generate-clients/single-service",
15
15
  "test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
16
16
  },
17
17
  "main": "./dist-cjs/index.js",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "^3.974.20",
25
- "@aws-sdk/credential-provider-node": "^3.972.55",
26
- "@aws-sdk/types": "^3.973.12",
24
+ "@aws-sdk/core": "^3.974.21",
25
+ "@aws-sdk/credential-provider-node": "^3.972.56",
26
+ "@aws-sdk/types": "^3.973.13",
27
27
  "@smithy/core": "^3.24.6",
28
28
  "@smithy/fetch-http-handler": "^5.4.6",
29
29
  "@smithy/node-http-handler": "^4.7.6",