@aws-sdk/client-outposts 3.50.0 → 3.53.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.
Files changed (55) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/OutpostsServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +89 -2
  5. package/dist-cjs/protocols/Aws_restJson1.js +244 -859
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/OutpostsServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +82 -1
  9. package/dist-es/protocols/Aws_restJson1.js +513 -958
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/OutpostsServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +44 -19
  13. package/dist-types/ts3.4/Outposts.d.ts +120 -0
  14. package/dist-types/ts3.4/OutpostsClient.d.ts +96 -0
  15. package/dist-types/ts3.4/commands/CancelOrderCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/CreateOrderCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/CreateOutpostCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/CreateSiteCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/DeleteOutpostCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/DeleteSiteCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/GetCatalogItemCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/GetOrderCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/GetOutpostCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/GetOutpostInstanceTypesCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/GetSiteAddressCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/GetSiteCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/ListCatalogItemsCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/ListOrdersCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/ListOutpostsCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/ListSitesCommand.d.ts +17 -0
  31. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  32. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  33. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  34. package/dist-types/ts3.4/commands/UpdateOutpostCommand.d.ts +17 -0
  35. package/dist-types/ts3.4/commands/UpdateSiteAddressCommand.d.ts +17 -0
  36. package/dist-types/ts3.4/commands/UpdateSiteCommand.d.ts +17 -0
  37. package/dist-types/ts3.4/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +17 -0
  38. package/dist-types/ts3.4/commands/index.d.ts +23 -0
  39. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  40. package/dist-types/ts3.4/index.d.ts +6 -0
  41. package/dist-types/ts3.4/models/OutpostsServiceException.d.ts +6 -0
  42. package/dist-types/ts3.4/models/index.d.ts +1 -0
  43. package/dist-types/ts3.4/models/models_0.d.ts +888 -0
  44. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  45. package/dist-types/ts3.4/pagination/ListCatalogItemsPaginator.d.ts +4 -0
  46. package/dist-types/ts3.4/pagination/ListOrdersPaginator.d.ts +4 -0
  47. package/dist-types/ts3.4/pagination/ListOutpostsPaginator.d.ts +4 -0
  48. package/dist-types/ts3.4/pagination/ListSitesPaginator.d.ts +4 -0
  49. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  50. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +71 -0
  51. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  52. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  53. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  54. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  55. package/package.json +33 -33
@@ -3,3 +3,4 @@ export * from "./OutpostsClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { OutpostsServiceException } from "./models/OutpostsServiceException";
@@ -0,0 +1,10 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ /**
3
+ * Base exception class for all service exceptions from Outposts service.
4
+ */
5
+ export declare class OutpostsServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,11 +1,16 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { OutpostsServiceException as __BaseException } from "./OutpostsServiceException";
2
3
  /**
3
4
  * <p>You do not have permission to perform this operation.</p>
4
5
  */
5
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
6
- name: "AccessDeniedException";
7
- $fault: "client";
6
+ export declare class AccessDeniedException extends __BaseException {
7
+ readonly name: "AccessDeniedException";
8
+ readonly $fault: "client";
8
9
  Message?: string;
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
9
14
  }
10
15
  /**
11
16
  * <p>
@@ -97,9 +102,9 @@ export declare enum ResourceType {
97
102
  /**
98
103
  * <p>Updating or deleting this resource can cause an inconsistent state.</p>
99
104
  */
100
- export interface ConflictException extends __SmithyException, $MetadataBearer {
101
- name: "ConflictException";
102
- $fault: "client";
105
+ export declare class ConflictException extends __BaseException {
106
+ readonly name: "ConflictException";
107
+ readonly $fault: "client";
103
108
  Message?: string;
104
109
  /**
105
110
  * <p>The ID of the resource causing the conflict.</p>
@@ -109,30 +114,46 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
109
114
  * <p>The type of the resource causing the conflict.</p>
110
115
  */
111
116
  ResourceType?: ResourceType | string;
117
+ /**
118
+ * @internal
119
+ */
120
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
112
121
  }
113
122
  /**
114
123
  * <p>An internal error has occurred.</p>
115
124
  */
116
- export interface InternalServerException extends __SmithyException, $MetadataBearer {
117
- name: "InternalServerException";
118
- $fault: "server";
125
+ export declare class InternalServerException extends __BaseException {
126
+ readonly name: "InternalServerException";
127
+ readonly $fault: "server";
119
128
  Message?: string;
129
+ /**
130
+ * @internal
131
+ */
132
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
120
133
  }
121
134
  /**
122
135
  * <p>The specified request is not valid.</p>
123
136
  */
124
- export interface NotFoundException extends __SmithyException, $MetadataBearer {
125
- name: "NotFoundException";
126
- $fault: "client";
137
+ export declare class NotFoundException extends __BaseException {
138
+ readonly name: "NotFoundException";
139
+ readonly $fault: "client";
127
140
  Message?: string;
141
+ /**
142
+ * @internal
143
+ */
144
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
128
145
  }
129
146
  /**
130
147
  * <p>A parameter is not valid.</p>
131
148
  */
132
- export interface ValidationException extends __SmithyException, $MetadataBearer {
133
- name: "ValidationException";
134
- $fault: "client";
149
+ export declare class ValidationException extends __BaseException {
150
+ readonly name: "ValidationException";
151
+ readonly $fault: "client";
135
152
  Message?: string;
153
+ /**
154
+ * @internal
155
+ */
156
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
136
157
  }
137
158
  /**
138
159
  * <p> Information about EC2 capacity. </p>
@@ -415,10 +436,14 @@ export declare namespace CreateOrderOutput {
415
436
  /**
416
437
  * <p>You have exceeded a service quota.</p>
417
438
  */
418
- export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
419
- name: "ServiceQuotaExceededException";
420
- $fault: "client";
439
+ export declare class ServiceQuotaExceededException extends __BaseException {
440
+ readonly name: "ServiceQuotaExceededException";
441
+ readonly $fault: "client";
421
442
  Message?: string;
443
+ /**
444
+ * @internal
445
+ */
446
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
422
447
  }
423
448
  export declare enum SupportedHardwareType {
424
449
  RACK = "RACK",
@@ -0,0 +1,120 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { CancelOrderCommandInput, CancelOrderCommandOutput } from "./commands/CancelOrderCommand";
3
+ import { CreateOrderCommandInput, CreateOrderCommandOutput } from "./commands/CreateOrderCommand";
4
+ import { CreateOutpostCommandInput, CreateOutpostCommandOutput } from "./commands/CreateOutpostCommand";
5
+ import { CreateSiteCommandInput, CreateSiteCommandOutput } from "./commands/CreateSiteCommand";
6
+ import { DeleteOutpostCommandInput, DeleteOutpostCommandOutput } from "./commands/DeleteOutpostCommand";
7
+ import { DeleteSiteCommandInput, DeleteSiteCommandOutput } from "./commands/DeleteSiteCommand";
8
+ import { GetCatalogItemCommandInput, GetCatalogItemCommandOutput } from "./commands/GetCatalogItemCommand";
9
+ import { GetOrderCommandInput, GetOrderCommandOutput } from "./commands/GetOrderCommand";
10
+ import { GetOutpostCommandInput, GetOutpostCommandOutput } from "./commands/GetOutpostCommand";
11
+ import { GetOutpostInstanceTypesCommandInput, GetOutpostInstanceTypesCommandOutput } from "./commands/GetOutpostInstanceTypesCommand";
12
+ import { GetSiteAddressCommandInput, GetSiteAddressCommandOutput } from "./commands/GetSiteAddressCommand";
13
+ import { GetSiteCommandInput, GetSiteCommandOutput } from "./commands/GetSiteCommand";
14
+ import { ListCatalogItemsCommandInput, ListCatalogItemsCommandOutput } from "./commands/ListCatalogItemsCommand";
15
+ import { ListOrdersCommandInput, ListOrdersCommandOutput } from "./commands/ListOrdersCommand";
16
+ import { ListOutpostsCommandInput, ListOutpostsCommandOutput } from "./commands/ListOutpostsCommand";
17
+ import { ListSitesCommandInput, ListSitesCommandOutput } from "./commands/ListSitesCommand";
18
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
19
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
20
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
21
+ import { UpdateOutpostCommandInput, UpdateOutpostCommandOutput } from "./commands/UpdateOutpostCommand";
22
+ import { UpdateSiteAddressCommandInput, UpdateSiteAddressCommandOutput } from "./commands/UpdateSiteAddressCommand";
23
+ import { UpdateSiteCommandInput, UpdateSiteCommandOutput } from "./commands/UpdateSiteCommand";
24
+ import { UpdateSiteRackPhysicalPropertiesCommandInput, UpdateSiteRackPhysicalPropertiesCommandOutput } from "./commands/UpdateSiteRackPhysicalPropertiesCommand";
25
+ import { OutpostsClient } from "./OutpostsClient";
26
+
27
+ export declare class Outposts extends OutpostsClient {
28
+
29
+ cancelOrder(args: CancelOrderCommandInput, options?: __HttpHandlerOptions): Promise<CancelOrderCommandOutput>;
30
+ cancelOrder(args: CancelOrderCommandInput, cb: (err: any, data?: CancelOrderCommandOutput) => void): void;
31
+ cancelOrder(args: CancelOrderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelOrderCommandOutput) => void): void;
32
+
33
+ createOrder(args: CreateOrderCommandInput, options?: __HttpHandlerOptions): Promise<CreateOrderCommandOutput>;
34
+ createOrder(args: CreateOrderCommandInput, cb: (err: any, data?: CreateOrderCommandOutput) => void): void;
35
+ createOrder(args: CreateOrderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateOrderCommandOutput) => void): void;
36
+
37
+ createOutpost(args: CreateOutpostCommandInput, options?: __HttpHandlerOptions): Promise<CreateOutpostCommandOutput>;
38
+ createOutpost(args: CreateOutpostCommandInput, cb: (err: any, data?: CreateOutpostCommandOutput) => void): void;
39
+ createOutpost(args: CreateOutpostCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateOutpostCommandOutput) => void): void;
40
+
41
+ createSite(args: CreateSiteCommandInput, options?: __HttpHandlerOptions): Promise<CreateSiteCommandOutput>;
42
+ createSite(args: CreateSiteCommandInput, cb: (err: any, data?: CreateSiteCommandOutput) => void): void;
43
+ createSite(args: CreateSiteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSiteCommandOutput) => void): void;
44
+
45
+ deleteOutpost(args: DeleteOutpostCommandInput, options?: __HttpHandlerOptions): Promise<DeleteOutpostCommandOutput>;
46
+ deleteOutpost(args: DeleteOutpostCommandInput, cb: (err: any, data?: DeleteOutpostCommandOutput) => void): void;
47
+ deleteOutpost(args: DeleteOutpostCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteOutpostCommandOutput) => void): void;
48
+
49
+ deleteSite(args: DeleteSiteCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSiteCommandOutput>;
50
+ deleteSite(args: DeleteSiteCommandInput, cb: (err: any, data?: DeleteSiteCommandOutput) => void): void;
51
+ deleteSite(args: DeleteSiteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSiteCommandOutput) => void): void;
52
+
53
+ getCatalogItem(args: GetCatalogItemCommandInput, options?: __HttpHandlerOptions): Promise<GetCatalogItemCommandOutput>;
54
+ getCatalogItem(args: GetCatalogItemCommandInput, cb: (err: any, data?: GetCatalogItemCommandOutput) => void): void;
55
+ getCatalogItem(args: GetCatalogItemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCatalogItemCommandOutput) => void): void;
56
+
57
+ getOrder(args: GetOrderCommandInput, options?: __HttpHandlerOptions): Promise<GetOrderCommandOutput>;
58
+ getOrder(args: GetOrderCommandInput, cb: (err: any, data?: GetOrderCommandOutput) => void): void;
59
+ getOrder(args: GetOrderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOrderCommandOutput) => void): void;
60
+
61
+ getOutpost(args: GetOutpostCommandInput, options?: __HttpHandlerOptions): Promise<GetOutpostCommandOutput>;
62
+ getOutpost(args: GetOutpostCommandInput, cb: (err: any, data?: GetOutpostCommandOutput) => void): void;
63
+ getOutpost(args: GetOutpostCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOutpostCommandOutput) => void): void;
64
+
65
+ getOutpostInstanceTypes(args: GetOutpostInstanceTypesCommandInput, options?: __HttpHandlerOptions): Promise<GetOutpostInstanceTypesCommandOutput>;
66
+ getOutpostInstanceTypes(args: GetOutpostInstanceTypesCommandInput, cb: (err: any, data?: GetOutpostInstanceTypesCommandOutput) => void): void;
67
+ getOutpostInstanceTypes(args: GetOutpostInstanceTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOutpostInstanceTypesCommandOutput) => void): void;
68
+
69
+ getSite(args: GetSiteCommandInput, options?: __HttpHandlerOptions): Promise<GetSiteCommandOutput>;
70
+ getSite(args: GetSiteCommandInput, cb: (err: any, data?: GetSiteCommandOutput) => void): void;
71
+ getSite(args: GetSiteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSiteCommandOutput) => void): void;
72
+
73
+ getSiteAddress(args: GetSiteAddressCommandInput, options?: __HttpHandlerOptions): Promise<GetSiteAddressCommandOutput>;
74
+ getSiteAddress(args: GetSiteAddressCommandInput, cb: (err: any, data?: GetSiteAddressCommandOutput) => void): void;
75
+ getSiteAddress(args: GetSiteAddressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSiteAddressCommandOutput) => void): void;
76
+
77
+ listCatalogItems(args: ListCatalogItemsCommandInput, options?: __HttpHandlerOptions): Promise<ListCatalogItemsCommandOutput>;
78
+ listCatalogItems(args: ListCatalogItemsCommandInput, cb: (err: any, data?: ListCatalogItemsCommandOutput) => void): void;
79
+ listCatalogItems(args: ListCatalogItemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCatalogItemsCommandOutput) => void): void;
80
+
81
+ listOrders(args: ListOrdersCommandInput, options?: __HttpHandlerOptions): Promise<ListOrdersCommandOutput>;
82
+ listOrders(args: ListOrdersCommandInput, cb: (err: any, data?: ListOrdersCommandOutput) => void): void;
83
+ listOrders(args: ListOrdersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOrdersCommandOutput) => void): void;
84
+
85
+ listOutposts(args: ListOutpostsCommandInput, options?: __HttpHandlerOptions): Promise<ListOutpostsCommandOutput>;
86
+ listOutposts(args: ListOutpostsCommandInput, cb: (err: any, data?: ListOutpostsCommandOutput) => void): void;
87
+ listOutposts(args: ListOutpostsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOutpostsCommandOutput) => void): void;
88
+
89
+ listSites(args: ListSitesCommandInput, options?: __HttpHandlerOptions): Promise<ListSitesCommandOutput>;
90
+ listSites(args: ListSitesCommandInput, cb: (err: any, data?: ListSitesCommandOutput) => void): void;
91
+ listSites(args: ListSitesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSitesCommandOutput) => void): void;
92
+
93
+ listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
94
+ listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
95
+ listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
96
+
97
+ tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
98
+ tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
99
+ tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
100
+
101
+ untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
102
+ untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
103
+ untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
104
+
105
+ updateOutpost(args: UpdateOutpostCommandInput, options?: __HttpHandlerOptions): Promise<UpdateOutpostCommandOutput>;
106
+ updateOutpost(args: UpdateOutpostCommandInput, cb: (err: any, data?: UpdateOutpostCommandOutput) => void): void;
107
+ updateOutpost(args: UpdateOutpostCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateOutpostCommandOutput) => void): void;
108
+
109
+ updateSite(args: UpdateSiteCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSiteCommandOutput>;
110
+ updateSite(args: UpdateSiteCommandInput, cb: (err: any, data?: UpdateSiteCommandOutput) => void): void;
111
+ updateSite(args: UpdateSiteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSiteCommandOutput) => void): void;
112
+
113
+ updateSiteAddress(args: UpdateSiteAddressCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSiteAddressCommandOutput>;
114
+ updateSiteAddress(args: UpdateSiteAddressCommandInput, cb: (err: any, data?: UpdateSiteAddressCommandOutput) => void): void;
115
+ updateSiteAddress(args: UpdateSiteAddressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSiteAddressCommandOutput) => void): void;
116
+
117
+ updateSiteRackPhysicalProperties(args: UpdateSiteRackPhysicalPropertiesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSiteRackPhysicalPropertiesCommandOutput>;
118
+ updateSiteRackPhysicalProperties(args: UpdateSiteRackPhysicalPropertiesCommandInput, cb: (err: any, data?: UpdateSiteRackPhysicalPropertiesCommandOutput) => void): void;
119
+ updateSiteRackPhysicalProperties(args: UpdateSiteRackPhysicalPropertiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSiteRackPhysicalPropertiesCommandOutput) => void): void;
120
+ }
@@ -0,0 +1,96 @@
1
+ import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
+ import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
+ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
+ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
+ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
+ import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
+ import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
+ import { CancelOrderCommandInput, CancelOrderCommandOutput } from "./commands/CancelOrderCommand";
10
+ import { CreateOrderCommandInput, CreateOrderCommandOutput } from "./commands/CreateOrderCommand";
11
+ import { CreateOutpostCommandInput, CreateOutpostCommandOutput } from "./commands/CreateOutpostCommand";
12
+ import { CreateSiteCommandInput, CreateSiteCommandOutput } from "./commands/CreateSiteCommand";
13
+ import { DeleteOutpostCommandInput, DeleteOutpostCommandOutput } from "./commands/DeleteOutpostCommand";
14
+ import { DeleteSiteCommandInput, DeleteSiteCommandOutput } from "./commands/DeleteSiteCommand";
15
+ import { GetCatalogItemCommandInput, GetCatalogItemCommandOutput } from "./commands/GetCatalogItemCommand";
16
+ import { GetOrderCommandInput, GetOrderCommandOutput } from "./commands/GetOrderCommand";
17
+ import { GetOutpostCommandInput, GetOutpostCommandOutput } from "./commands/GetOutpostCommand";
18
+ import { GetOutpostInstanceTypesCommandInput, GetOutpostInstanceTypesCommandOutput } from "./commands/GetOutpostInstanceTypesCommand";
19
+ import { GetSiteAddressCommandInput, GetSiteAddressCommandOutput } from "./commands/GetSiteAddressCommand";
20
+ import { GetSiteCommandInput, GetSiteCommandOutput } from "./commands/GetSiteCommand";
21
+ import { ListCatalogItemsCommandInput, ListCatalogItemsCommandOutput } from "./commands/ListCatalogItemsCommand";
22
+ import { ListOrdersCommandInput, ListOrdersCommandOutput } from "./commands/ListOrdersCommand";
23
+ import { ListOutpostsCommandInput, ListOutpostsCommandOutput } from "./commands/ListOutpostsCommand";
24
+ import { ListSitesCommandInput, ListSitesCommandOutput } from "./commands/ListSitesCommand";
25
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
26
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
27
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
28
+ import { UpdateOutpostCommandInput, UpdateOutpostCommandOutput } from "./commands/UpdateOutpostCommand";
29
+ import { UpdateSiteAddressCommandInput, UpdateSiteAddressCommandOutput } from "./commands/UpdateSiteAddressCommand";
30
+ import { UpdateSiteCommandInput, UpdateSiteCommandOutput } from "./commands/UpdateSiteCommand";
31
+ import { UpdateSiteRackPhysicalPropertiesCommandInput, UpdateSiteRackPhysicalPropertiesCommandOutput } from "./commands/UpdateSiteRackPhysicalPropertiesCommand";
32
+ export declare type ServiceInputTypes = CancelOrderCommandInput | CreateOrderCommandInput | CreateOutpostCommandInput | CreateSiteCommandInput | DeleteOutpostCommandInput | DeleteSiteCommandInput | GetCatalogItemCommandInput | GetOrderCommandInput | GetOutpostCommandInput | GetOutpostInstanceTypesCommandInput | GetSiteAddressCommandInput | GetSiteCommandInput | ListCatalogItemsCommandInput | ListOrdersCommandInput | ListOutpostsCommandInput | ListSitesCommandInput | ListTagsForResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateOutpostCommandInput | UpdateSiteAddressCommandInput | UpdateSiteCommandInput | UpdateSiteRackPhysicalPropertiesCommandInput;
33
+ export declare type ServiceOutputTypes = CancelOrderCommandOutput | CreateOrderCommandOutput | CreateOutpostCommandOutput | CreateSiteCommandOutput | DeleteOutpostCommandOutput | DeleteSiteCommandOutput | GetCatalogItemCommandOutput | GetOrderCommandOutput | GetOutpostCommandOutput | GetOutpostInstanceTypesCommandOutput | GetSiteAddressCommandOutput | GetSiteCommandOutput | ListCatalogItemsCommandOutput | ListOrdersCommandOutput | ListOutpostsCommandOutput | ListSitesCommandOutput | ListTagsForResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateOutpostCommandOutput | UpdateSiteAddressCommandOutput | UpdateSiteCommandOutput | UpdateSiteRackPhysicalPropertiesCommandOutput;
34
+ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
35
+
36
+ requestHandler?: __HttpHandler;
37
+
38
+ sha256?: __HashConstructor;
39
+
40
+ urlParser?: __UrlParser;
41
+
42
+ bodyLengthChecker?: (body: any) => number | undefined;
43
+
44
+ streamCollector?: __StreamCollector;
45
+
46
+ base64Decoder?: __Decoder;
47
+
48
+ base64Encoder?: __Encoder;
49
+
50
+ utf8Decoder?: __Decoder;
51
+
52
+ utf8Encoder?: __Encoder;
53
+
54
+ runtime?: string;
55
+
56
+ disableHostPrefix?: boolean;
57
+
58
+ maxAttempts?: number | __Provider<number>;
59
+
60
+ retryMode?: string | __Provider<string>;
61
+
62
+ logger?: __Logger;
63
+
64
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
65
+
66
+ useFipsEndpoint?: boolean | __Provider<boolean>;
67
+
68
+ serviceId?: string;
69
+
70
+ region?: string | __Provider<string>;
71
+
72
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
73
+
74
+ regionInfoProvider?: RegionInfoProvider;
75
+
76
+ defaultUserAgentProvider?: Provider<__UserAgent>;
77
+
78
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
79
+ }
80
+ declare type OutpostsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
81
+
82
+ export interface OutpostsClientConfig extends OutpostsClientConfigType {
83
+ }
84
+ declare type OutpostsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
85
+
86
+ export interface OutpostsClientResolvedConfig extends OutpostsClientResolvedConfigType {
87
+ }
88
+
89
+ export declare class OutpostsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, OutpostsClientResolvedConfig> {
90
+
91
+ readonly config: OutpostsClientResolvedConfig;
92
+ constructor(configuration: OutpostsClientConfig);
93
+
94
+ destroy(): void;
95
+ }
96
+ export {};
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { CancelOrderInput, CancelOrderOutput } from "../models/models_0";
4
+ import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
+ export interface CancelOrderCommandInput extends CancelOrderInput {
6
+ }
7
+ export interface CancelOrderCommandOutput extends CancelOrderOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CancelOrderCommand extends $Command<CancelOrderCommandInput, CancelOrderCommandOutput, OutpostsClientResolvedConfig> {
11
+ readonly input: CancelOrderCommandInput;
12
+ constructor(input: CancelOrderCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelOrderCommandInput, CancelOrderCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { CreateOrderInput, CreateOrderOutput } from "../models/models_0";
4
+ import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
+ export interface CreateOrderCommandInput extends CreateOrderInput {
6
+ }
7
+ export interface CreateOrderCommandOutput extends CreateOrderOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateOrderCommand extends $Command<CreateOrderCommandInput, CreateOrderCommandOutput, OutpostsClientResolvedConfig> {
11
+ readonly input: CreateOrderCommandInput;
12
+ constructor(input: CreateOrderCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateOrderCommandInput, CreateOrderCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { CreateOutpostInput, CreateOutpostOutput } from "../models/models_0";
4
+ import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
+ export interface CreateOutpostCommandInput extends CreateOutpostInput {
6
+ }
7
+ export interface CreateOutpostCommandOutput extends CreateOutpostOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateOutpostCommand extends $Command<CreateOutpostCommandInput, CreateOutpostCommandOutput, OutpostsClientResolvedConfig> {
11
+ readonly input: CreateOutpostCommandInput;
12
+ constructor(input: CreateOutpostCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateOutpostCommandInput, CreateOutpostCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { CreateSiteInput, CreateSiteOutput } from "../models/models_0";
4
+ import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
+ export interface CreateSiteCommandInput extends CreateSiteInput {
6
+ }
7
+ export interface CreateSiteCommandOutput extends CreateSiteOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateSiteCommand extends $Command<CreateSiteCommandInput, CreateSiteCommandOutput, OutpostsClientResolvedConfig> {
11
+ readonly input: CreateSiteCommandInput;
12
+ constructor(input: CreateSiteCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSiteCommandInput, CreateSiteCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DeleteOutpostInput, DeleteOutpostOutput } from "../models/models_0";
4
+ import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
+ export interface DeleteOutpostCommandInput extends DeleteOutpostInput {
6
+ }
7
+ export interface DeleteOutpostCommandOutput extends DeleteOutpostOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteOutpostCommand extends $Command<DeleteOutpostCommandInput, DeleteOutpostCommandOutput, OutpostsClientResolvedConfig> {
11
+ readonly input: DeleteOutpostCommandInput;
12
+ constructor(input: DeleteOutpostCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteOutpostCommandInput, DeleteOutpostCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DeleteSiteInput, DeleteSiteOutput } from "../models/models_0";
4
+ import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
+ export interface DeleteSiteCommandInput extends DeleteSiteInput {
6
+ }
7
+ export interface DeleteSiteCommandOutput extends DeleteSiteOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteSiteCommand extends $Command<DeleteSiteCommandInput, DeleteSiteCommandOutput, OutpostsClientResolvedConfig> {
11
+ readonly input: DeleteSiteCommandInput;
12
+ constructor(input: DeleteSiteCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSiteCommandInput, DeleteSiteCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetCatalogItemInput, GetCatalogItemOutput } from "../models/models_0";
4
+ import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
+ export interface GetCatalogItemCommandInput extends GetCatalogItemInput {
6
+ }
7
+ export interface GetCatalogItemCommandOutput extends GetCatalogItemOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetCatalogItemCommand extends $Command<GetCatalogItemCommandInput, GetCatalogItemCommandOutput, OutpostsClientResolvedConfig> {
11
+ readonly input: GetCatalogItemCommandInput;
12
+ constructor(input: GetCatalogItemCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCatalogItemCommandInput, GetCatalogItemCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetOrderInput, GetOrderOutput } from "../models/models_0";
4
+ import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
+ export interface GetOrderCommandInput extends GetOrderInput {
6
+ }
7
+ export interface GetOrderCommandOutput extends GetOrderOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetOrderCommand extends $Command<GetOrderCommandInput, GetOrderCommandOutput, OutpostsClientResolvedConfig> {
11
+ readonly input: GetOrderCommandInput;
12
+ constructor(input: GetOrderCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetOrderCommandInput, GetOrderCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetOutpostInput, GetOutpostOutput } from "../models/models_0";
4
+ import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
+ export interface GetOutpostCommandInput extends GetOutpostInput {
6
+ }
7
+ export interface GetOutpostCommandOutput extends GetOutpostOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetOutpostCommand extends $Command<GetOutpostCommandInput, GetOutpostCommandOutput, OutpostsClientResolvedConfig> {
11
+ readonly input: GetOutpostCommandInput;
12
+ constructor(input: GetOutpostCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetOutpostCommandInput, GetOutpostCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetOutpostInstanceTypesInput, GetOutpostInstanceTypesOutput } from "../models/models_0";
4
+ import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
+ export interface GetOutpostInstanceTypesCommandInput extends GetOutpostInstanceTypesInput {
6
+ }
7
+ export interface GetOutpostInstanceTypesCommandOutput extends GetOutpostInstanceTypesOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetOutpostInstanceTypesCommand extends $Command<GetOutpostInstanceTypesCommandInput, GetOutpostInstanceTypesCommandOutput, OutpostsClientResolvedConfig> {
11
+ readonly input: GetOutpostInstanceTypesCommandInput;
12
+ constructor(input: GetOutpostInstanceTypesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetOutpostInstanceTypesCommandInput, GetOutpostInstanceTypesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetSiteAddressInput, GetSiteAddressOutput } from "../models/models_0";
4
+ import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
+ export interface GetSiteAddressCommandInput extends GetSiteAddressInput {
6
+ }
7
+ export interface GetSiteAddressCommandOutput extends GetSiteAddressOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetSiteAddressCommand extends $Command<GetSiteAddressCommandInput, GetSiteAddressCommandOutput, OutpostsClientResolvedConfig> {
11
+ readonly input: GetSiteAddressCommandInput;
12
+ constructor(input: GetSiteAddressCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSiteAddressCommandInput, GetSiteAddressCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetSiteInput, GetSiteOutput } from "../models/models_0";
4
+ import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
+ export interface GetSiteCommandInput extends GetSiteInput {
6
+ }
7
+ export interface GetSiteCommandOutput extends GetSiteOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetSiteCommand extends $Command<GetSiteCommandInput, GetSiteCommandOutput, OutpostsClientResolvedConfig> {
11
+ readonly input: GetSiteCommandInput;
12
+ constructor(input: GetSiteCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSiteCommandInput, GetSiteCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ListCatalogItemsInput, ListCatalogItemsOutput } from "../models/models_0";
4
+ import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
+ export interface ListCatalogItemsCommandInput extends ListCatalogItemsInput {
6
+ }
7
+ export interface ListCatalogItemsCommandOutput extends ListCatalogItemsOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListCatalogItemsCommand extends $Command<ListCatalogItemsCommandInput, ListCatalogItemsCommandOutput, OutpostsClientResolvedConfig> {
11
+ readonly input: ListCatalogItemsCommandInput;
12
+ constructor(input: ListCatalogItemsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCatalogItemsCommandInput, ListCatalogItemsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ListOrdersInput, ListOrdersOutput } from "../models/models_0";
4
+ import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
+ export interface ListOrdersCommandInput extends ListOrdersInput {
6
+ }
7
+ export interface ListOrdersCommandOutput extends ListOrdersOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListOrdersCommand extends $Command<ListOrdersCommandInput, ListOrdersCommandOutput, OutpostsClientResolvedConfig> {
11
+ readonly input: ListOrdersCommandInput;
12
+ constructor(input: ListOrdersCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListOrdersCommandInput, ListOrdersCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ListOutpostsInput, ListOutpostsOutput } from "../models/models_0";
4
+ import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
+ export interface ListOutpostsCommandInput extends ListOutpostsInput {
6
+ }
7
+ export interface ListOutpostsCommandOutput extends ListOutpostsOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListOutpostsCommand extends $Command<ListOutpostsCommandInput, ListOutpostsCommandOutput, OutpostsClientResolvedConfig> {
11
+ readonly input: ListOutpostsCommandInput;
12
+ constructor(input: ListOutpostsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListOutpostsCommandInput, ListOutpostsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }