@aws-sdk/client-outposts 3.1025.0 → 3.1027.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 +14 -0
- package/dist-cjs/index.js +44 -0
- package/dist-cjs/schemas/schemas_0.js +63 -9
- package/dist-es/Outposts.js +4 -0
- package/dist-es/commands/CreateRenewalCommand.js +16 -0
- package/dist-es/commands/GetRenewalPricingCommand.js +16 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/enums.js +14 -0
- package/dist-es/schemas/schemas_0.js +60 -6
- package/dist-types/Outposts.d.ts +14 -0
- package/dist-types/OutpostsClient.d.ts +4 -2
- package/dist-types/commands/CreateRenewalCommand.d.ts +93 -0
- package/dist-types/commands/GetOutpostBillingInformationCommand.d.ts +3 -1
- package/dist-types/commands/GetRenewalPricingCommand.d.ts +97 -0
- package/dist-types/commands/ListAssetsCommand.d.ts +6 -3
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/enums.d.ts +30 -0
- package/dist-types/models/models_0.d.ts +169 -5
- package/dist-types/schemas/schemas_0.d.ts +8 -0
- package/dist-types/ts3.4/Outposts.d.ts +34 -0
- package/dist-types/ts3.4/OutpostsClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/CreateRenewalCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetRenewalPricingCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/enums.d.ts +17 -0
- package/dist-types/ts3.4/models/models_0.d.ts +35 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +8 -0
- package/package.json +33 -33
|
@@ -19,6 +19,10 @@ import {
|
|
|
19
19
|
CreateOutpostCommandInput,
|
|
20
20
|
CreateOutpostCommandOutput,
|
|
21
21
|
} from "./commands/CreateOutpostCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateRenewalCommandInput,
|
|
24
|
+
CreateRenewalCommandOutput,
|
|
25
|
+
} from "./commands/CreateRenewalCommand";
|
|
22
26
|
import {
|
|
23
27
|
CreateSiteCommandInput,
|
|
24
28
|
CreateSiteCommandOutput,
|
|
@@ -63,6 +67,10 @@ import {
|
|
|
63
67
|
GetOutpostSupportedInstanceTypesCommandInput,
|
|
64
68
|
GetOutpostSupportedInstanceTypesCommandOutput,
|
|
65
69
|
} from "./commands/GetOutpostSupportedInstanceTypesCommand";
|
|
70
|
+
import {
|
|
71
|
+
GetRenewalPricingCommandInput,
|
|
72
|
+
GetRenewalPricingCommandOutput,
|
|
73
|
+
} from "./commands/GetRenewalPricingCommand";
|
|
66
74
|
import {
|
|
67
75
|
GetSiteAddressCommandInput,
|
|
68
76
|
GetSiteAddressCommandOutput,
|
|
@@ -197,6 +205,19 @@ export interface Outposts {
|
|
|
197
205
|
options: __HttpHandlerOptions,
|
|
198
206
|
cb: (err: any, data?: CreateOutpostCommandOutput) => void
|
|
199
207
|
): void;
|
|
208
|
+
createRenewal(
|
|
209
|
+
args: CreateRenewalCommandInput,
|
|
210
|
+
options?: __HttpHandlerOptions
|
|
211
|
+
): Promise<CreateRenewalCommandOutput>;
|
|
212
|
+
createRenewal(
|
|
213
|
+
args: CreateRenewalCommandInput,
|
|
214
|
+
cb: (err: any, data?: CreateRenewalCommandOutput) => void
|
|
215
|
+
): void;
|
|
216
|
+
createRenewal(
|
|
217
|
+
args: CreateRenewalCommandInput,
|
|
218
|
+
options: __HttpHandlerOptions,
|
|
219
|
+
cb: (err: any, data?: CreateRenewalCommandOutput) => void
|
|
220
|
+
): void;
|
|
200
221
|
createSite(
|
|
201
222
|
args: CreateSiteCommandInput,
|
|
202
223
|
options?: __HttpHandlerOptions
|
|
@@ -340,6 +361,19 @@ export interface Outposts {
|
|
|
340
361
|
options: __HttpHandlerOptions,
|
|
341
362
|
cb: (err: any, data?: GetOutpostSupportedInstanceTypesCommandOutput) => void
|
|
342
363
|
): void;
|
|
364
|
+
getRenewalPricing(
|
|
365
|
+
args: GetRenewalPricingCommandInput,
|
|
366
|
+
options?: __HttpHandlerOptions
|
|
367
|
+
): Promise<GetRenewalPricingCommandOutput>;
|
|
368
|
+
getRenewalPricing(
|
|
369
|
+
args: GetRenewalPricingCommandInput,
|
|
370
|
+
cb: (err: any, data?: GetRenewalPricingCommandOutput) => void
|
|
371
|
+
): void;
|
|
372
|
+
getRenewalPricing(
|
|
373
|
+
args: GetRenewalPricingCommandInput,
|
|
374
|
+
options: __HttpHandlerOptions,
|
|
375
|
+
cb: (err: any, data?: GetRenewalPricingCommandOutput) => void
|
|
376
|
+
): void;
|
|
343
377
|
getSite(
|
|
344
378
|
args: GetSiteCommandInput,
|
|
345
379
|
options?: __HttpHandlerOptions
|
|
@@ -60,6 +60,10 @@ import {
|
|
|
60
60
|
CreateOutpostCommandInput,
|
|
61
61
|
CreateOutpostCommandOutput,
|
|
62
62
|
} from "./commands/CreateOutpostCommand";
|
|
63
|
+
import {
|
|
64
|
+
CreateRenewalCommandInput,
|
|
65
|
+
CreateRenewalCommandOutput,
|
|
66
|
+
} from "./commands/CreateRenewalCommand";
|
|
63
67
|
import {
|
|
64
68
|
CreateSiteCommandInput,
|
|
65
69
|
CreateSiteCommandOutput,
|
|
@@ -104,6 +108,10 @@ import {
|
|
|
104
108
|
GetOutpostSupportedInstanceTypesCommandInput,
|
|
105
109
|
GetOutpostSupportedInstanceTypesCommandOutput,
|
|
106
110
|
} from "./commands/GetOutpostSupportedInstanceTypesCommand";
|
|
111
|
+
import {
|
|
112
|
+
GetRenewalPricingCommandInput,
|
|
113
|
+
GetRenewalPricingCommandOutput,
|
|
114
|
+
} from "./commands/GetRenewalPricingCommand";
|
|
107
115
|
import {
|
|
108
116
|
GetSiteAddressCommandInput,
|
|
109
117
|
GetSiteAddressCommandOutput,
|
|
@@ -196,6 +204,7 @@ export type ServiceInputTypes =
|
|
|
196
204
|
| CancelOrderCommandInput
|
|
197
205
|
| CreateOrderCommandInput
|
|
198
206
|
| CreateOutpostCommandInput
|
|
207
|
+
| CreateRenewalCommandInput
|
|
199
208
|
| CreateSiteCommandInput
|
|
200
209
|
| DeleteOutpostCommandInput
|
|
201
210
|
| DeleteSiteCommandInput
|
|
@@ -207,6 +216,7 @@ export type ServiceInputTypes =
|
|
|
207
216
|
| GetOutpostCommandInput
|
|
208
217
|
| GetOutpostInstanceTypesCommandInput
|
|
209
218
|
| GetOutpostSupportedInstanceTypesCommandInput
|
|
219
|
+
| GetRenewalPricingCommandInput
|
|
210
220
|
| GetSiteAddressCommandInput
|
|
211
221
|
| GetSiteCommandInput
|
|
212
222
|
| ListAssetInstancesCommandInput
|
|
@@ -232,6 +242,7 @@ export type ServiceOutputTypes =
|
|
|
232
242
|
| CancelOrderCommandOutput
|
|
233
243
|
| CreateOrderCommandOutput
|
|
234
244
|
| CreateOutpostCommandOutput
|
|
245
|
+
| CreateRenewalCommandOutput
|
|
235
246
|
| CreateSiteCommandOutput
|
|
236
247
|
| DeleteOutpostCommandOutput
|
|
237
248
|
| DeleteSiteCommandOutput
|
|
@@ -243,6 +254,7 @@ export type ServiceOutputTypes =
|
|
|
243
254
|
| GetOutpostCommandOutput
|
|
244
255
|
| GetOutpostInstanceTypesCommandOutput
|
|
245
256
|
| GetOutpostSupportedInstanceTypesCommandOutput
|
|
257
|
+
| GetRenewalPricingCommandOutput
|
|
246
258
|
| GetSiteAddressCommandOutput
|
|
247
259
|
| GetSiteCommandOutput
|
|
248
260
|
| ListAssetInstancesCommandOutput
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { CreateRenewalInput, CreateRenewalOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
OutpostsClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../OutpostsClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface CreateRenewalCommandInput extends CreateRenewalInput {}
|
|
12
|
+
export interface CreateRenewalCommandOutput
|
|
13
|
+
extends CreateRenewalOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const CreateRenewalCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: CreateRenewalCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
CreateRenewalCommandInput,
|
|
20
|
+
CreateRenewalCommandOutput,
|
|
21
|
+
OutpostsClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: CreateRenewalCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
CreateRenewalCommandInput,
|
|
29
|
+
CreateRenewalCommandOutput,
|
|
30
|
+
OutpostsClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class CreateRenewalCommand extends CreateRenewalCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: CreateRenewalInput;
|
|
40
|
+
output: CreateRenewalOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: CreateRenewalCommandInput;
|
|
44
|
+
output: CreateRenewalCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetRenewalPricingInput,
|
|
5
|
+
GetRenewalPricingOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
OutpostsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../OutpostsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetRenewalPricingCommandInput extends GetRenewalPricingInput {}
|
|
15
|
+
export interface GetRenewalPricingCommandOutput
|
|
16
|
+
extends GetRenewalPricingOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const GetRenewalPricingCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetRenewalPricingCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
GetRenewalPricingCommandInput,
|
|
23
|
+
GetRenewalPricingCommandOutput,
|
|
24
|
+
OutpostsClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: GetRenewalPricingCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetRenewalPricingCommandInput,
|
|
32
|
+
GetRenewalPricingCommandOutput,
|
|
33
|
+
OutpostsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class GetRenewalPricingCommand extends GetRenewalPricingCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: GetRenewalPricingInput;
|
|
43
|
+
output: GetRenewalPricingOutput;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: GetRenewalPricingCommandInput;
|
|
47
|
+
output: GetRenewalPricingCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -2,6 +2,7 @@ export * from "./CancelCapacityTaskCommand";
|
|
|
2
2
|
export * from "./CancelOrderCommand";
|
|
3
3
|
export * from "./CreateOrderCommand";
|
|
4
4
|
export * from "./CreateOutpostCommand";
|
|
5
|
+
export * from "./CreateRenewalCommand";
|
|
5
6
|
export * from "./CreateSiteCommand";
|
|
6
7
|
export * from "./DeleteOutpostCommand";
|
|
7
8
|
export * from "./DeleteSiteCommand";
|
|
@@ -13,6 +14,7 @@ export * from "./GetOutpostBillingInformationCommand";
|
|
|
13
14
|
export * from "./GetOutpostCommand";
|
|
14
15
|
export * from "./GetOutpostInstanceTypesCommand";
|
|
15
16
|
export * from "./GetOutpostSupportedInstanceTypesCommand";
|
|
17
|
+
export * from "./GetRenewalPricingCommand";
|
|
16
18
|
export * from "./GetSiteAddressCommand";
|
|
17
19
|
export * from "./GetSiteCommand";
|
|
18
20
|
export * from "./ListAssetInstancesCommand";
|
|
@@ -5,10 +5,15 @@ export declare const AddressType: {
|
|
|
5
5
|
export type AddressType = (typeof AddressType)[keyof typeof AddressType];
|
|
6
6
|
export declare const AssetType: {
|
|
7
7
|
readonly COMPUTE: "COMPUTE";
|
|
8
|
+
readonly NETWORKING: "NETWORKING";
|
|
9
|
+
readonly POWERSHELF: "POWERSHELF";
|
|
10
|
+
readonly STORAGE: "STORAGE";
|
|
11
|
+
readonly SWITCH: "SWITCH";
|
|
8
12
|
};
|
|
9
13
|
export type AssetType = (typeof AssetType)[keyof typeof AssetType];
|
|
10
14
|
export declare const ComputeAssetState: {
|
|
11
15
|
readonly ACTIVE: "ACTIVE";
|
|
16
|
+
readonly INSTALLING: "INSTALLING";
|
|
12
17
|
readonly ISOLATED: "ISOLATED";
|
|
13
18
|
readonly RETIRING: "RETIRING";
|
|
14
19
|
};
|
|
@@ -26,6 +31,7 @@ export type AWSServiceName =
|
|
|
26
31
|
(typeof AWSServiceName)[keyof typeof AWSServiceName];
|
|
27
32
|
export declare const AssetState: {
|
|
28
33
|
readonly ACTIVE: "ACTIVE";
|
|
34
|
+
readonly INSTALLING: "INSTALLING";
|
|
29
35
|
readonly ISOLATED: "ISOLATED";
|
|
30
36
|
readonly RETIRING: "RETIRING";
|
|
31
37
|
};
|
|
@@ -238,6 +244,7 @@ export declare const SubscriptionStatus: {
|
|
|
238
244
|
readonly ACTIVE: "ACTIVE";
|
|
239
245
|
readonly CANCELLED: "CANCELLED";
|
|
240
246
|
readonly INACTIVE: "INACTIVE";
|
|
247
|
+
readonly PENDING: "PENDING";
|
|
241
248
|
};
|
|
242
249
|
export type SubscriptionStatus =
|
|
243
250
|
(typeof SubscriptionStatus)[keyof typeof SubscriptionStatus];
|
|
@@ -248,3 +255,13 @@ export declare const SubscriptionType: {
|
|
|
248
255
|
};
|
|
249
256
|
export type SubscriptionType =
|
|
250
257
|
(typeof SubscriptionType)[keyof typeof SubscriptionType];
|
|
258
|
+
export declare const QuotePricingType: {
|
|
259
|
+
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
260
|
+
};
|
|
261
|
+
export type QuotePricingType =
|
|
262
|
+
(typeof QuotePricingType)[keyof typeof QuotePricingType];
|
|
263
|
+
export declare const PricingResult: {
|
|
264
|
+
readonly PRICED: "PRICED";
|
|
265
|
+
readonly UNABLE_TO_PRICE: "UNABLE_TO_PRICE";
|
|
266
|
+
};
|
|
267
|
+
export type PricingResult = (typeof PricingResult)[keyof typeof PricingResult];
|
|
@@ -22,6 +22,8 @@ import {
|
|
|
22
22
|
PowerDrawKva,
|
|
23
23
|
PowerFeedDrop,
|
|
24
24
|
PowerPhase,
|
|
25
|
+
PricingResult,
|
|
26
|
+
QuotePricingType,
|
|
25
27
|
ShipmentCarrier,
|
|
26
28
|
SubscriptionStatus,
|
|
27
29
|
SubscriptionType,
|
|
@@ -190,6 +192,19 @@ export interface Outpost {
|
|
|
190
192
|
export interface CreateOutpostOutput {
|
|
191
193
|
Outpost?: Outpost | undefined;
|
|
192
194
|
}
|
|
195
|
+
export interface CreateRenewalInput {
|
|
196
|
+
PaymentOption: PaymentOption | undefined;
|
|
197
|
+
PaymentTerm: PaymentTerm | undefined;
|
|
198
|
+
OutpostIdentifier: string | undefined;
|
|
199
|
+
ClientToken?: string | undefined;
|
|
200
|
+
}
|
|
201
|
+
export interface CreateRenewalOutput {
|
|
202
|
+
PaymentOption?: PaymentOption | undefined;
|
|
203
|
+
PaymentTerm?: PaymentTerm | undefined;
|
|
204
|
+
OutpostId?: string | undefined;
|
|
205
|
+
UpfrontPrice?: number | undefined;
|
|
206
|
+
MonthlyRecurringPrice?: number | undefined;
|
|
207
|
+
}
|
|
193
208
|
export interface RackPhysicalProperties {
|
|
194
209
|
PowerDrawKva?: PowerDrawKva | undefined;
|
|
195
210
|
PowerPhase?: PowerPhase | undefined;
|
|
@@ -306,6 +321,8 @@ export interface GetOutpostBillingInformationOutput {
|
|
|
306
321
|
NextToken?: string | undefined;
|
|
307
322
|
Subscriptions?: Subscription[] | undefined;
|
|
308
323
|
ContractEndDate?: string | undefined;
|
|
324
|
+
PaymentTerm?: PaymentTerm | undefined;
|
|
325
|
+
PaymentOption?: PaymentOption | undefined;
|
|
309
326
|
}
|
|
310
327
|
export interface GetOutpostInstanceTypesInput {
|
|
311
328
|
OutpostId: string | undefined;
|
|
@@ -333,6 +350,23 @@ export interface GetOutpostSupportedInstanceTypesOutput {
|
|
|
333
350
|
InstanceTypes?: InstanceTypeItem[] | undefined;
|
|
334
351
|
NextToken?: string | undefined;
|
|
335
352
|
}
|
|
353
|
+
export interface GetRenewalPricingInput {
|
|
354
|
+
OutpostIdentifier: string | undefined;
|
|
355
|
+
}
|
|
356
|
+
export interface SubscriptionPricingDetails {
|
|
357
|
+
PaymentOption?: PaymentOption | undefined;
|
|
358
|
+
PaymentTerm?: PaymentTerm | undefined;
|
|
359
|
+
UpfrontPrice?: number | undefined;
|
|
360
|
+
MonthlyRecurringPrice?: number | undefined;
|
|
361
|
+
}
|
|
362
|
+
export interface PricingOption {
|
|
363
|
+
PricingType?: QuotePricingType | undefined;
|
|
364
|
+
SubscriptionPricingDetails?: SubscriptionPricingDetails | undefined;
|
|
365
|
+
}
|
|
366
|
+
export interface GetRenewalPricingOutput {
|
|
367
|
+
PricingResult?: PricingResult | undefined;
|
|
368
|
+
PricingOptions?: PricingOption[] | undefined;
|
|
369
|
+
}
|
|
336
370
|
export interface GetSiteInput {
|
|
337
371
|
SiteId: string | undefined;
|
|
338
372
|
}
|
|
@@ -367,6 +401,7 @@ export interface ListAssetsInput {
|
|
|
367
401
|
MaxResults?: number | undefined;
|
|
368
402
|
NextToken?: string | undefined;
|
|
369
403
|
StatusFilter?: AssetState[] | undefined;
|
|
404
|
+
AssetTypeFilter?: AssetType[] | undefined;
|
|
370
405
|
}
|
|
371
406
|
export interface ListAssetsOutput {
|
|
372
407
|
Assets?: AssetInfo[] | undefined;
|
|
@@ -31,6 +31,8 @@ export declare var CreateOrderInput$: StaticStructureSchema;
|
|
|
31
31
|
export declare var CreateOrderOutput$: StaticStructureSchema;
|
|
32
32
|
export declare var CreateOutpostInput$: StaticStructureSchema;
|
|
33
33
|
export declare var CreateOutpostOutput$: StaticStructureSchema;
|
|
34
|
+
export declare var CreateRenewalInput$: StaticStructureSchema;
|
|
35
|
+
export declare var CreateRenewalOutput$: StaticStructureSchema;
|
|
34
36
|
export declare var CreateSiteInput$: StaticStructureSchema;
|
|
35
37
|
export declare var CreateSiteOutput$: StaticStructureSchema;
|
|
36
38
|
export declare var DeleteOutpostInput$: StaticStructureSchema;
|
|
@@ -54,6 +56,8 @@ export declare var GetOutpostInstanceTypesOutput$: StaticStructureSchema;
|
|
|
54
56
|
export declare var GetOutpostOutput$: StaticStructureSchema;
|
|
55
57
|
export declare var GetOutpostSupportedInstanceTypesInput$: StaticStructureSchema;
|
|
56
58
|
export declare var GetOutpostSupportedInstanceTypesOutput$: StaticStructureSchema;
|
|
59
|
+
export declare var GetRenewalPricingInput$: StaticStructureSchema;
|
|
60
|
+
export declare var GetRenewalPricingOutput$: StaticStructureSchema;
|
|
57
61
|
export declare var GetSiteAddressInput$: StaticStructureSchema;
|
|
58
62
|
export declare var GetSiteAddressOutput$: StaticStructureSchema;
|
|
59
63
|
export declare var GetSiteInput$: StaticStructureSchema;
|
|
@@ -85,6 +89,7 @@ export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
|
85
89
|
export declare var Order$: StaticStructureSchema;
|
|
86
90
|
export declare var OrderSummary$: StaticStructureSchema;
|
|
87
91
|
export declare var Outpost$: StaticStructureSchema;
|
|
92
|
+
export declare var PricingOption$: StaticStructureSchema;
|
|
88
93
|
export declare var RackPhysicalProperties$: StaticStructureSchema;
|
|
89
94
|
export declare var ShipmentInformation$: StaticStructureSchema;
|
|
90
95
|
export declare var Site$: StaticStructureSchema;
|
|
@@ -95,6 +100,7 @@ export declare var StartConnectionResponse$: StaticStructureSchema;
|
|
|
95
100
|
export declare var StartOutpostDecommissionInput$: StaticStructureSchema;
|
|
96
101
|
export declare var StartOutpostDecommissionOutput$: StaticStructureSchema;
|
|
97
102
|
export declare var Subscription$: StaticStructureSchema;
|
|
103
|
+
export declare var SubscriptionPricingDetails$: StaticStructureSchema;
|
|
98
104
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
99
105
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
100
106
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
@@ -111,6 +117,7 @@ export declare var CancelCapacityTask$: StaticOperationSchema;
|
|
|
111
117
|
export declare var CancelOrder$: StaticOperationSchema;
|
|
112
118
|
export declare var CreateOrder$: StaticOperationSchema;
|
|
113
119
|
export declare var CreateOutpost$: StaticOperationSchema;
|
|
120
|
+
export declare var CreateRenewal$: StaticOperationSchema;
|
|
114
121
|
export declare var CreateSite$: StaticOperationSchema;
|
|
115
122
|
export declare var DeleteOutpost$: StaticOperationSchema;
|
|
116
123
|
export declare var DeleteSite$: StaticOperationSchema;
|
|
@@ -122,6 +129,7 @@ export declare var GetOutpost$: StaticOperationSchema;
|
|
|
122
129
|
export declare var GetOutpostBillingInformation$: StaticOperationSchema;
|
|
123
130
|
export declare var GetOutpostInstanceTypes$: StaticOperationSchema;
|
|
124
131
|
export declare var GetOutpostSupportedInstanceTypes$: StaticOperationSchema;
|
|
132
|
+
export declare var GetRenewalPricing$: StaticOperationSchema;
|
|
125
133
|
export declare var GetSite$: StaticOperationSchema;
|
|
126
134
|
export declare var GetSiteAddress$: StaticOperationSchema;
|
|
127
135
|
export declare var ListAssetInstances$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.
|
|
4
|
+
"version": "3.1027.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 client-outposts",
|
|
@@ -21,41 +21,41 @@
|
|
|
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.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
32
|
-
"@aws-sdk/util-endpoints": "^3.996.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
35
|
-
"@smithy/config-resolver": "^4.4.
|
|
36
|
-
"@smithy/core": "^3.23.
|
|
37
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
38
|
-
"@smithy/hash-node": "^4.2.
|
|
39
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
40
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.
|
|
44
|
-
"@smithy/middleware-stack": "^4.2.
|
|
45
|
-
"@smithy/node-config-provider": "^4.3.
|
|
46
|
-
"@smithy/node-http-handler": "^4.5.
|
|
47
|
-
"@smithy/protocol-http": "^5.3.
|
|
48
|
-
"@smithy/smithy-client": "^4.12.
|
|
49
|
-
"@smithy/types": "^4.
|
|
50
|
-
"@smithy/url-parser": "^4.2.
|
|
24
|
+
"@aws-sdk/core": "^3.973.27",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.30",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.9",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.9",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.10",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.29",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.11",
|
|
31
|
+
"@aws-sdk/types": "^3.973.7",
|
|
32
|
+
"@aws-sdk/util-endpoints": "^3.996.6",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.9",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.15",
|
|
35
|
+
"@smithy/config-resolver": "^4.4.14",
|
|
36
|
+
"@smithy/core": "^3.23.14",
|
|
37
|
+
"@smithy/fetch-http-handler": "^5.3.16",
|
|
38
|
+
"@smithy/hash-node": "^4.2.13",
|
|
39
|
+
"@smithy/invalid-dependency": "^4.2.13",
|
|
40
|
+
"@smithy/middleware-content-length": "^4.2.13",
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.29",
|
|
42
|
+
"@smithy/middleware-retry": "^4.5.0",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.17",
|
|
44
|
+
"@smithy/middleware-stack": "^4.2.13",
|
|
45
|
+
"@smithy/node-config-provider": "^4.3.13",
|
|
46
|
+
"@smithy/node-http-handler": "^4.5.2",
|
|
47
|
+
"@smithy/protocol-http": "^5.3.13",
|
|
48
|
+
"@smithy/smithy-client": "^4.12.9",
|
|
49
|
+
"@smithy/types": "^4.14.0",
|
|
50
|
+
"@smithy/url-parser": "^4.2.13",
|
|
51
51
|
"@smithy/util-base64": "^4.3.2",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
56
|
-
"@smithy/util-endpoints": "^3.3.
|
|
57
|
-
"@smithy/util-middleware": "^4.2.
|
|
58
|
-
"@smithy/util-retry": "^4.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.45",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.49",
|
|
56
|
+
"@smithy/util-endpoints": "^3.3.4",
|
|
57
|
+
"@smithy/util-middleware": "^4.2.13",
|
|
58
|
+
"@smithy/util-retry": "^4.3.0",
|
|
59
59
|
"@smithy/util-utf8": "^4.2.2",
|
|
60
60
|
"tslib": "^2.6.2"
|
|
61
61
|
},
|