@aws-sdk/client-outposts 3.41.0 → 3.45.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 (85) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/README.md +10 -10
  3. package/dist-cjs/Outposts.js +180 -0
  4. package/dist-cjs/commands/CancelOrderCommand.js +36 -0
  5. package/dist-cjs/commands/CreateSiteCommand.js +36 -0
  6. package/dist-cjs/commands/GetCatalogItemCommand.js +36 -0
  7. package/dist-cjs/commands/GetOrderCommand.js +36 -0
  8. package/dist-cjs/commands/GetSiteAddressCommand.js +36 -0
  9. package/dist-cjs/commands/GetSiteCommand.js +36 -0
  10. package/dist-cjs/commands/ListCatalogItemsCommand.js +36 -0
  11. package/dist-cjs/commands/ListOrdersCommand.js +36 -0
  12. package/dist-cjs/commands/UpdateOutpostCommand.js +36 -0
  13. package/dist-cjs/commands/UpdateSiteAddressCommand.js +36 -0
  14. package/dist-cjs/commands/UpdateSiteCommand.js +36 -0
  15. package/dist-cjs/commands/UpdateSiteRackPhysicalPropertiesCommand.js +36 -0
  16. package/dist-cjs/commands/index.js +12 -0
  17. package/dist-cjs/endpoints.js +1 -0
  18. package/dist-cjs/models/models_0.js +318 -25
  19. package/dist-cjs/pagination/ListCatalogItemsPaginator.js +35 -0
  20. package/dist-cjs/pagination/ListOrdersPaginator.js +35 -0
  21. package/dist-cjs/pagination/index.js +2 -0
  22. package/dist-cjs/protocols/Aws_restJson1.js +1562 -119
  23. package/dist-es/Outposts.js +180 -0
  24. package/dist-es/commands/CancelOrderCommand.js +39 -0
  25. package/dist-es/commands/CreateSiteCommand.js +39 -0
  26. package/dist-es/commands/GetCatalogItemCommand.js +39 -0
  27. package/dist-es/commands/GetOrderCommand.js +39 -0
  28. package/dist-es/commands/GetSiteAddressCommand.js +39 -0
  29. package/dist-es/commands/GetSiteCommand.js +39 -0
  30. package/dist-es/commands/ListCatalogItemsCommand.js +39 -0
  31. package/dist-es/commands/ListOrdersCommand.js +39 -0
  32. package/dist-es/commands/UpdateOutpostCommand.js +39 -0
  33. package/dist-es/commands/UpdateSiteAddressCommand.js +39 -0
  34. package/dist-es/commands/UpdateSiteCommand.js +39 -0
  35. package/dist-es/commands/UpdateSiteRackPhysicalPropertiesCommand.js +39 -0
  36. package/dist-es/commands/index.js +12 -0
  37. package/dist-es/endpoints.js +1 -0
  38. package/dist-es/models/models_0.js +250 -16
  39. package/dist-es/pagination/ListCatalogItemsPaginator.js +74 -0
  40. package/dist-es/pagination/ListOrdersPaginator.js +74 -0
  41. package/dist-es/pagination/index.js +2 -0
  42. package/dist-es/protocols/Aws_restJson1.js +1869 -265
  43. package/dist-types/Outposts.d.ts +123 -6
  44. package/dist-types/OutpostsClient.d.ts +17 -5
  45. package/dist-types/commands/CancelOrderCommand.d.ts +37 -0
  46. package/dist-types/commands/CreateSiteCommand.d.ts +37 -0
  47. package/dist-types/commands/GetCatalogItemCommand.d.ts +35 -0
  48. package/dist-types/commands/GetOrderCommand.d.ts +35 -0
  49. package/dist-types/commands/GetSiteAddressCommand.d.ts +37 -0
  50. package/dist-types/commands/GetSiteCommand.d.ts +37 -0
  51. package/dist-types/commands/ListCatalogItemsCommand.d.ts +39 -0
  52. package/dist-types/commands/ListOrdersCommand.d.ts +36 -0
  53. package/dist-types/commands/ListOutpostsCommand.d.ts +2 -2
  54. package/dist-types/commands/ListSitesCommand.d.ts +1 -1
  55. package/dist-types/commands/UpdateOutpostCommand.d.ts +37 -0
  56. package/dist-types/commands/UpdateSiteAddressCommand.d.ts +46 -0
  57. package/dist-types/commands/UpdateSiteCommand.d.ts +37 -0
  58. package/dist-types/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +40 -0
  59. package/dist-types/commands/index.d.ts +12 -0
  60. package/dist-types/models/models_0.d.ts +1206 -144
  61. package/dist-types/pagination/ListCatalogItemsPaginator.d.ts +4 -0
  62. package/dist-types/pagination/ListOrdersPaginator.d.ts +4 -0
  63. package/dist-types/pagination/index.d.ts +2 -0
  64. package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
  65. package/dist-types/ts3.4/Outposts.d.ts +60 -0
  66. package/dist-types/ts3.4/OutpostsClient.d.ts +14 -2
  67. package/dist-types/ts3.4/commands/CancelOrderCommand.d.ts +17 -0
  68. package/dist-types/ts3.4/commands/CreateSiteCommand.d.ts +17 -0
  69. package/dist-types/ts3.4/commands/GetCatalogItemCommand.d.ts +17 -0
  70. package/dist-types/ts3.4/commands/GetOrderCommand.d.ts +17 -0
  71. package/dist-types/ts3.4/commands/GetSiteAddressCommand.d.ts +17 -0
  72. package/dist-types/ts3.4/commands/GetSiteCommand.d.ts +17 -0
  73. package/dist-types/ts3.4/commands/ListCatalogItemsCommand.d.ts +17 -0
  74. package/dist-types/ts3.4/commands/ListOrdersCommand.d.ts +17 -0
  75. package/dist-types/ts3.4/commands/UpdateOutpostCommand.d.ts +17 -0
  76. package/dist-types/ts3.4/commands/UpdateSiteAddressCommand.d.ts +17 -0
  77. package/dist-types/ts3.4/commands/UpdateSiteCommand.d.ts +17 -0
  78. package/dist-types/ts3.4/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +17 -0
  79. package/dist-types/ts3.4/commands/index.d.ts +12 -0
  80. package/dist-types/ts3.4/models/models_0.d.ts +540 -51
  81. package/dist-types/ts3.4/pagination/ListCatalogItemsPaginator.d.ts +4 -0
  82. package/dist-types/ts3.4/pagination/ListOrdersPaginator.d.ts +4 -0
  83. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  84. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
  85. package/package.json +5 -5
@@ -1,24 +1,44 @@
1
1
  import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { CancelOrderCommandInput, CancelOrderCommandOutput } from "./commands/CancelOrderCommand";
2
3
  import { CreateOrderCommandInput, CreateOrderCommandOutput } from "./commands/CreateOrderCommand";
3
4
  import { CreateOutpostCommandInput, CreateOutpostCommandOutput } from "./commands/CreateOutpostCommand";
5
+ import { CreateSiteCommandInput, CreateSiteCommandOutput } from "./commands/CreateSiteCommand";
4
6
  import { DeleteOutpostCommandInput, DeleteOutpostCommandOutput } from "./commands/DeleteOutpostCommand";
5
7
  import { DeleteSiteCommandInput, DeleteSiteCommandOutput } from "./commands/DeleteSiteCommand";
8
+ import { GetCatalogItemCommandInput, GetCatalogItemCommandOutput } from "./commands/GetCatalogItemCommand";
9
+ import { GetOrderCommandInput, GetOrderCommandOutput } from "./commands/GetOrderCommand";
6
10
  import { GetOutpostCommandInput, GetOutpostCommandOutput } from "./commands/GetOutpostCommand";
7
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";
8
16
  import { ListOutpostsCommandInput, ListOutpostsCommandOutput } from "./commands/ListOutpostsCommand";
9
17
  import { ListSitesCommandInput, ListSitesCommandOutput } from "./commands/ListSitesCommand";
10
18
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
11
19
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
12
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";
13
25
  import { OutpostsClient } from "./OutpostsClient";
14
26
  /**
15
- * <p>AWS Outposts is a fully managed service that extends AWS infrastructure, APIs, and tools
16
- * to customer premises. By providing local access to AWS managed infrastructure, AWS Outposts
27
+ * <p>Amazon Web Services Outposts is a fully managed service that extends Amazon Web Services infrastructure, APIs, and tools
28
+ * to customer premises. By providing local access to Amazon Web Services managed infrastructure, Amazon Web Services Outposts
17
29
  * enables customers to build and run applications on premises using the same programming
18
- * interfaces as in AWS Regions, while using local compute and storage resources for lower
30
+ * interfaces as in Amazon Web Services Regions, while using local compute and storage resources for lower
19
31
  * latency and local data processing needs.</p>
20
32
  */
21
33
  export declare class Outposts extends OutpostsClient {
34
+ /**
35
+ * <p>
36
+ * Cancels an order for an Outpost.
37
+ * </p>
38
+ */
39
+ cancelOrder(args: CancelOrderCommandInput, options?: __HttpHandlerOptions): Promise<CancelOrderCommandOutput>;
40
+ cancelOrder(args: CancelOrderCommandInput, cb: (err: any, data?: CancelOrderCommandOutput) => void): void;
41
+ cancelOrder(args: CancelOrderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelOrderCommandOutput) => void): void;
22
42
  /**
23
43
  * <p>Creates an order for an Outpost.</p>
24
44
  */
@@ -32,6 +52,14 @@ export declare class Outposts extends OutpostsClient {
32
52
  createOutpost(args: CreateOutpostCommandInput, options?: __HttpHandlerOptions): Promise<CreateOutpostCommandOutput>;
33
53
  createOutpost(args: CreateOutpostCommandInput, cb: (err: any, data?: CreateOutpostCommandOutput) => void): void;
34
54
  createOutpost(args: CreateOutpostCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateOutpostCommandOutput) => void): void;
55
+ /**
56
+ * <p>
57
+ * Creates a site for an Outpost.
58
+ * </p>
59
+ */
60
+ createSite(args: CreateSiteCommandInput, options?: __HttpHandlerOptions): Promise<CreateSiteCommandOutput>;
61
+ createSite(args: CreateSiteCommandInput, cb: (err: any, data?: CreateSiteCommandOutput) => void): void;
62
+ createSite(args: CreateSiteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSiteCommandOutput) => void): void;
35
63
  /**
36
64
  * <p>Deletes the Outpost.</p>
37
65
  */
@@ -44,6 +72,18 @@ export declare class Outposts extends OutpostsClient {
44
72
  deleteSite(args: DeleteSiteCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSiteCommandOutput>;
45
73
  deleteSite(args: DeleteSiteCommandInput, cb: (err: any, data?: DeleteSiteCommandOutput) => void): void;
46
74
  deleteSite(args: DeleteSiteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSiteCommandOutput) => void): void;
75
+ /**
76
+ * <p>Gets information about a catalog item.</p>
77
+ */
78
+ getCatalogItem(args: GetCatalogItemCommandInput, options?: __HttpHandlerOptions): Promise<GetCatalogItemCommandOutput>;
79
+ getCatalogItem(args: GetCatalogItemCommandInput, cb: (err: any, data?: GetCatalogItemCommandOutput) => void): void;
80
+ getCatalogItem(args: GetCatalogItemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCatalogItemCommandOutput) => void): void;
81
+ /**
82
+ * <p>Gets an order.</p>
83
+ */
84
+ getOrder(args: GetOrderCommandInput, options?: __HttpHandlerOptions): Promise<GetOrderCommandOutput>;
85
+ getOrder(args: GetOrderCommandInput, cb: (err: any, data?: GetOrderCommandOutput) => void): void;
86
+ getOrder(args: GetOrderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOrderCommandOutput) => void): void;
47
87
  /**
48
88
  * <p>Gets information about the specified Outpost.</p>
49
89
  */
@@ -57,9 +97,42 @@ export declare class Outposts extends OutpostsClient {
57
97
  getOutpostInstanceTypes(args: GetOutpostInstanceTypesCommandInput, cb: (err: any, data?: GetOutpostInstanceTypesCommandOutput) => void): void;
58
98
  getOutpostInstanceTypes(args: GetOutpostInstanceTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOutpostInstanceTypesCommandOutput) => void): void;
59
99
  /**
60
- * <p>Create a list of the Outposts for your AWS account. Add filters to your request to return
100
+ * <p>
101
+ * Gets information about the specified Outpost site.
102
+ * </p>
103
+ */
104
+ getSite(args: GetSiteCommandInput, options?: __HttpHandlerOptions): Promise<GetSiteCommandOutput>;
105
+ getSite(args: GetSiteCommandInput, cb: (err: any, data?: GetSiteCommandOutput) => void): void;
106
+ getSite(args: GetSiteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSiteCommandOutput) => void): void;
107
+ /**
108
+ * <p>
109
+ * Gets the site address.
110
+ * </p>
111
+ */
112
+ getSiteAddress(args: GetSiteAddressCommandInput, options?: __HttpHandlerOptions): Promise<GetSiteAddressCommandOutput>;
113
+ getSiteAddress(args: GetSiteAddressCommandInput, cb: (err: any, data?: GetSiteAddressCommandOutput) => void): void;
114
+ getSiteAddress(args: GetSiteAddressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSiteAddressCommandOutput) => void): void;
115
+ /**
116
+ * <p>Use to create a list of every item in the catalog. Add filters to your request to return a
117
+ * more specific list of results. Use filters to match an item class, storage
118
+ * option, or EC2 family. </p>
119
+ * <p>If you specify multiple filters, the filters are joined with an <code>AND</code>, and
120
+ * the request returns only results that match all of the specified filters.</p>
121
+ */
122
+ listCatalogItems(args: ListCatalogItemsCommandInput, options?: __HttpHandlerOptions): Promise<ListCatalogItemsCommandOutput>;
123
+ listCatalogItems(args: ListCatalogItemsCommandInput, cb: (err: any, data?: ListCatalogItemsCommandOutput) => void): void;
124
+ listCatalogItems(args: ListCatalogItemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCatalogItemsCommandOutput) => void): void;
125
+ /**
126
+ * <p>Create a list of the Outpost orders for your Amazon Web Services account. You can filter your request by Outpost to
127
+ * return a more specific list of results. </p>
128
+ */
129
+ listOrders(args: ListOrdersCommandInput, options?: __HttpHandlerOptions): Promise<ListOrdersCommandOutput>;
130
+ listOrders(args: ListOrdersCommandInput, cb: (err: any, data?: ListOrdersCommandOutput) => void): void;
131
+ listOrders(args: ListOrdersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOrdersCommandOutput) => void): void;
132
+ /**
133
+ * <p>Create a list of the Outposts for your Amazon Web Services account. Add filters to your request to return
61
134
  * a more specific list of results. Use filters to match an Outpost lifecycle status,
62
- * Availibility Zone (<code>us-east-1a</code>), and AZ ID (<code>use1-az1</code>). </p>
135
+ * Availability Zone (<code>us-east-1a</code>), and AZ ID (<code>use1-az1</code>). </p>
63
136
  *
64
137
  * <p>If you specify multiple filters, the filters are joined with an <code>AND</code>, and the request returns only
65
138
  * results that match all of the specified filters.</p>
@@ -68,7 +141,7 @@ export declare class Outposts extends OutpostsClient {
68
141
  listOutposts(args: ListOutpostsCommandInput, cb: (err: any, data?: ListOutpostsCommandOutput) => void): void;
69
142
  listOutposts(args: ListOutpostsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOutpostsCommandOutput) => void): void;
70
143
  /**
71
- * <p>Lists the sites for the specified AWS account.</p>
144
+ * <p>Lists the sites for your Amazon Web Services account.</p>
72
145
  */
73
146
  listSites(args: ListSitesCommandInput, options?: __HttpHandlerOptions): Promise<ListSitesCommandOutput>;
74
147
  listSites(args: ListSitesCommandInput, cb: (err: any, data?: ListSitesCommandOutput) => void): void;
@@ -91,4 +164,48 @@ export declare class Outposts extends OutpostsClient {
91
164
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
92
165
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
93
166
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
167
+ /**
168
+ * <p>
169
+ * Updates an Outpost.
170
+ * </p>
171
+ */
172
+ updateOutpost(args: UpdateOutpostCommandInput, options?: __HttpHandlerOptions): Promise<UpdateOutpostCommandOutput>;
173
+ updateOutpost(args: UpdateOutpostCommandInput, cb: (err: any, data?: UpdateOutpostCommandOutput) => void): void;
174
+ updateOutpost(args: UpdateOutpostCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateOutpostCommandOutput) => void): void;
175
+ /**
176
+ * <p>
177
+ * Updates the site.
178
+ * </p>
179
+ */
180
+ updateSite(args: UpdateSiteCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSiteCommandOutput>;
181
+ updateSite(args: UpdateSiteCommandInput, cb: (err: any, data?: UpdateSiteCommandOutput) => void): void;
182
+ updateSite(args: UpdateSiteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSiteCommandOutput) => void): void;
183
+ /**
184
+ * <p>
185
+ * Updates the site address.
186
+ * </p>
187
+ * <p>
188
+ * To update a site address
189
+ * with an order <code>IN_PROGRESS</code>, you must wait for the order
190
+ * to complete or cancel the order.
191
+ * </p>
192
+ * <p>You
193
+ * can update the operating address before you place an order at the
194
+ * site, or after all Outposts that belong to the site have been deactivated.
195
+ * </p>
196
+ */
197
+ updateSiteAddress(args: UpdateSiteAddressCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSiteAddressCommandOutput>;
198
+ updateSiteAddress(args: UpdateSiteAddressCommandInput, cb: (err: any, data?: UpdateSiteAddressCommandOutput) => void): void;
199
+ updateSiteAddress(args: UpdateSiteAddressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSiteAddressCommandOutput) => void): void;
200
+ /**
201
+ * <p>Update the physical and logistical details for a rack at a site. For more information
202
+ * about hardware requirements for racks, see <a href="https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#checklist">Network
203
+ * readiness checklist</a> in the Amazon Web Services Outposts User Guide.
204
+ * </p>
205
+ * <p>To update a rack at a site with an order of <code>IN_PROGRESS</code>, you must wait for
206
+ * the order to complete or cancel the order.</p>
207
+ */
208
+ updateSiteRackPhysicalProperties(args: UpdateSiteRackPhysicalPropertiesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSiteRackPhysicalPropertiesCommandOutput>;
209
+ updateSiteRackPhysicalProperties(args: UpdateSiteRackPhysicalPropertiesCommandInput, cb: (err: any, data?: UpdateSiteRackPhysicalPropertiesCommandOutput) => void): void;
210
+ updateSiteRackPhysicalProperties(args: UpdateSiteRackPhysicalPropertiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSiteRackPhysicalPropertiesCommandOutput) => void): void;
94
211
  }
@@ -6,19 +6,31 @@ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middlewa
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
7
  import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
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";
9
10
  import { CreateOrderCommandInput, CreateOrderCommandOutput } from "./commands/CreateOrderCommand";
10
11
  import { CreateOutpostCommandInput, CreateOutpostCommandOutput } from "./commands/CreateOutpostCommand";
12
+ import { CreateSiteCommandInput, CreateSiteCommandOutput } from "./commands/CreateSiteCommand";
11
13
  import { DeleteOutpostCommandInput, DeleteOutpostCommandOutput } from "./commands/DeleteOutpostCommand";
12
14
  import { DeleteSiteCommandInput, DeleteSiteCommandOutput } from "./commands/DeleteSiteCommand";
15
+ import { GetCatalogItemCommandInput, GetCatalogItemCommandOutput } from "./commands/GetCatalogItemCommand";
16
+ import { GetOrderCommandInput, GetOrderCommandOutput } from "./commands/GetOrderCommand";
13
17
  import { GetOutpostCommandInput, GetOutpostCommandOutput } from "./commands/GetOutpostCommand";
14
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";
15
23
  import { ListOutpostsCommandInput, ListOutpostsCommandOutput } from "./commands/ListOutpostsCommand";
16
24
  import { ListSitesCommandInput, ListSitesCommandOutput } from "./commands/ListSitesCommand";
17
25
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
18
26
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
19
27
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
20
- export declare type ServiceInputTypes = CreateOrderCommandInput | CreateOutpostCommandInput | DeleteOutpostCommandInput | DeleteSiteCommandInput | GetOutpostCommandInput | GetOutpostInstanceTypesCommandInput | ListOutpostsCommandInput | ListSitesCommandInput | ListTagsForResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput;
21
- export declare type ServiceOutputTypes = CreateOrderCommandOutput | CreateOutpostCommandOutput | DeleteOutpostCommandOutput | DeleteSiteCommandOutput | GetOutpostCommandOutput | GetOutpostInstanceTypesCommandOutput | ListOutpostsCommandOutput | ListSitesCommandOutput | ListTagsForResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput;
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;
22
34
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
23
35
  /**
24
36
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
@@ -133,10 +145,10 @@ declare type OutpostsClientResolvedConfigType = __SmithyResolvedConfiguration<__
133
145
  export interface OutpostsClientResolvedConfig extends OutpostsClientResolvedConfigType {
134
146
  }
135
147
  /**
136
- * <p>AWS Outposts is a fully managed service that extends AWS infrastructure, APIs, and tools
137
- * to customer premises. By providing local access to AWS managed infrastructure, AWS Outposts
148
+ * <p>Amazon Web Services Outposts is a fully managed service that extends Amazon Web Services infrastructure, APIs, and tools
149
+ * to customer premises. By providing local access to Amazon Web Services managed infrastructure, Amazon Web Services Outposts
138
150
  * enables customers to build and run applications on premises using the same programming
139
- * interfaces as in AWS Regions, while using local compute and storage resources for lower
151
+ * interfaces as in Amazon Web Services Regions, while using local compute and storage resources for lower
140
152
  * latency and local data processing needs.</p>
141
153
  */
142
154
  export declare class OutpostsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, OutpostsClientResolvedConfig> {
@@ -0,0 +1,37 @@
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
+ * <p>
11
+ * Cancels an order for an Outpost.
12
+ * </p>
13
+ * @example
14
+ * Use a bare-bones client and the command you need to make an API call.
15
+ * ```javascript
16
+ * import { OutpostsClient, CancelOrderCommand } from "@aws-sdk/client-outposts"; // ES Modules import
17
+ * // const { OutpostsClient, CancelOrderCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
18
+ * const client = new OutpostsClient(config);
19
+ * const command = new CancelOrderCommand(input);
20
+ * const response = await client.send(command);
21
+ * ```
22
+ *
23
+ * @see {@link CancelOrderCommandInput} for command's `input` shape.
24
+ * @see {@link CancelOrderCommandOutput} for command's `response` shape.
25
+ * @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
26
+ *
27
+ */
28
+ export declare class CancelOrderCommand extends $Command<CancelOrderCommandInput, CancelOrderCommandOutput, OutpostsClientResolvedConfig> {
29
+ readonly input: CancelOrderCommandInput;
30
+ constructor(input: CancelOrderCommandInput);
31
+ /**
32
+ * @internal
33
+ */
34
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelOrderCommandInput, CancelOrderCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -0,0 +1,37 @@
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
+ * <p>
11
+ * Creates a site for an Outpost.
12
+ * </p>
13
+ * @example
14
+ * Use a bare-bones client and the command you need to make an API call.
15
+ * ```javascript
16
+ * import { OutpostsClient, CreateSiteCommand } from "@aws-sdk/client-outposts"; // ES Modules import
17
+ * // const { OutpostsClient, CreateSiteCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
18
+ * const client = new OutpostsClient(config);
19
+ * const command = new CreateSiteCommand(input);
20
+ * const response = await client.send(command);
21
+ * ```
22
+ *
23
+ * @see {@link CreateSiteCommandInput} for command's `input` shape.
24
+ * @see {@link CreateSiteCommandOutput} for command's `response` shape.
25
+ * @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
26
+ *
27
+ */
28
+ export declare class CreateSiteCommand extends $Command<CreateSiteCommandInput, CreateSiteCommandOutput, OutpostsClientResolvedConfig> {
29
+ readonly input: CreateSiteCommandInput;
30
+ constructor(input: CreateSiteCommandInput);
31
+ /**
32
+ * @internal
33
+ */
34
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSiteCommandInput, CreateSiteCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -0,0 +1,35 @@
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
+ * <p>Gets information about a catalog item.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { OutpostsClient, GetCatalogItemCommand } from "@aws-sdk/client-outposts"; // ES Modules import
15
+ * // const { OutpostsClient, GetCatalogItemCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
16
+ * const client = new OutpostsClient(config);
17
+ * const command = new GetCatalogItemCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link GetCatalogItemCommandInput} for command's `input` shape.
22
+ * @see {@link GetCatalogItemCommandOutput} for command's `response` shape.
23
+ * @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class GetCatalogItemCommand extends $Command<GetCatalogItemCommandInput, GetCatalogItemCommandOutput, OutpostsClientResolvedConfig> {
27
+ readonly input: GetCatalogItemCommandInput;
28
+ constructor(input: GetCatalogItemCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCatalogItemCommandInput, GetCatalogItemCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
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
+ * <p>Gets an order.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { OutpostsClient, GetOrderCommand } from "@aws-sdk/client-outposts"; // ES Modules import
15
+ * // const { OutpostsClient, GetOrderCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
16
+ * const client = new OutpostsClient(config);
17
+ * const command = new GetOrderCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link GetOrderCommandInput} for command's `input` shape.
22
+ * @see {@link GetOrderCommandOutput} for command's `response` shape.
23
+ * @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class GetOrderCommand extends $Command<GetOrderCommandInput, GetOrderCommandOutput, OutpostsClientResolvedConfig> {
27
+ readonly input: GetOrderCommandInput;
28
+ constructor(input: GetOrderCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetOrderCommandInput, GetOrderCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,37 @@
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
+ * <p>
11
+ * Gets the site address.
12
+ * </p>
13
+ * @example
14
+ * Use a bare-bones client and the command you need to make an API call.
15
+ * ```javascript
16
+ * import { OutpostsClient, GetSiteAddressCommand } from "@aws-sdk/client-outposts"; // ES Modules import
17
+ * // const { OutpostsClient, GetSiteAddressCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
18
+ * const client = new OutpostsClient(config);
19
+ * const command = new GetSiteAddressCommand(input);
20
+ * const response = await client.send(command);
21
+ * ```
22
+ *
23
+ * @see {@link GetSiteAddressCommandInput} for command's `input` shape.
24
+ * @see {@link GetSiteAddressCommandOutput} for command's `response` shape.
25
+ * @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
26
+ *
27
+ */
28
+ export declare class GetSiteAddressCommand extends $Command<GetSiteAddressCommandInput, GetSiteAddressCommandOutput, OutpostsClientResolvedConfig> {
29
+ readonly input: GetSiteAddressCommandInput;
30
+ constructor(input: GetSiteAddressCommandInput);
31
+ /**
32
+ * @internal
33
+ */
34
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSiteAddressCommandInput, GetSiteAddressCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -0,0 +1,37 @@
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
+ * <p>
11
+ * Gets information about the specified Outpost site.
12
+ * </p>
13
+ * @example
14
+ * Use a bare-bones client and the command you need to make an API call.
15
+ * ```javascript
16
+ * import { OutpostsClient, GetSiteCommand } from "@aws-sdk/client-outposts"; // ES Modules import
17
+ * // const { OutpostsClient, GetSiteCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
18
+ * const client = new OutpostsClient(config);
19
+ * const command = new GetSiteCommand(input);
20
+ * const response = await client.send(command);
21
+ * ```
22
+ *
23
+ * @see {@link GetSiteCommandInput} for command's `input` shape.
24
+ * @see {@link GetSiteCommandOutput} for command's `response` shape.
25
+ * @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
26
+ *
27
+ */
28
+ export declare class GetSiteCommand extends $Command<GetSiteCommandInput, GetSiteCommandOutput, OutpostsClientResolvedConfig> {
29
+ readonly input: GetSiteCommandInput;
30
+ constructor(input: GetSiteCommandInput);
31
+ /**
32
+ * @internal
33
+ */
34
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSiteCommandInput, GetSiteCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -0,0 +1,39 @@
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
+ * <p>Use to create a list of every item in the catalog. Add filters to your request to return a
11
+ * more specific list of results. Use filters to match an item class, storage
12
+ * option, or EC2 family. </p>
13
+ * <p>If you specify multiple filters, the filters are joined with an <code>AND</code>, and
14
+ * the request returns only results that match all of the specified filters.</p>
15
+ * @example
16
+ * Use a bare-bones client and the command you need to make an API call.
17
+ * ```javascript
18
+ * import { OutpostsClient, ListCatalogItemsCommand } from "@aws-sdk/client-outposts"; // ES Modules import
19
+ * // const { OutpostsClient, ListCatalogItemsCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
20
+ * const client = new OutpostsClient(config);
21
+ * const command = new ListCatalogItemsCommand(input);
22
+ * const response = await client.send(command);
23
+ * ```
24
+ *
25
+ * @see {@link ListCatalogItemsCommandInput} for command's `input` shape.
26
+ * @see {@link ListCatalogItemsCommandOutput} for command's `response` shape.
27
+ * @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
28
+ *
29
+ */
30
+ export declare class ListCatalogItemsCommand extends $Command<ListCatalogItemsCommandInput, ListCatalogItemsCommandOutput, OutpostsClientResolvedConfig> {
31
+ readonly input: ListCatalogItemsCommandInput;
32
+ constructor(input: ListCatalogItemsCommandInput);
33
+ /**
34
+ * @internal
35
+ */
36
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCatalogItemsCommandInput, ListCatalogItemsCommandOutput>;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -0,0 +1,36 @@
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
+ * <p>Create a list of the Outpost orders for your Amazon Web Services account. You can filter your request by Outpost to
11
+ * return a more specific list of results. </p>
12
+ * @example
13
+ * Use a bare-bones client and the command you need to make an API call.
14
+ * ```javascript
15
+ * import { OutpostsClient, ListOrdersCommand } from "@aws-sdk/client-outposts"; // ES Modules import
16
+ * // const { OutpostsClient, ListOrdersCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
17
+ * const client = new OutpostsClient(config);
18
+ * const command = new ListOrdersCommand(input);
19
+ * const response = await client.send(command);
20
+ * ```
21
+ *
22
+ * @see {@link ListOrdersCommandInput} for command's `input` shape.
23
+ * @see {@link ListOrdersCommandOutput} for command's `response` shape.
24
+ * @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
25
+ *
26
+ */
27
+ export declare class ListOrdersCommand extends $Command<ListOrdersCommandInput, ListOrdersCommandOutput, OutpostsClientResolvedConfig> {
28
+ readonly input: ListOrdersCommandInput;
29
+ constructor(input: ListOrdersCommandInput);
30
+ /**
31
+ * @internal
32
+ */
33
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListOrdersCommandInput, ListOrdersCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -7,9 +7,9 @@ export interface ListOutpostsCommandInput extends ListOutpostsInput {
7
7
  export interface ListOutpostsCommandOutput extends ListOutpostsOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Create a list of the Outposts for your AWS account. Add filters to your request to return
10
+ * <p>Create a list of the Outposts for your Amazon Web Services account. Add filters to your request to return
11
11
  * a more specific list of results. Use filters to match an Outpost lifecycle status,
12
- * Availibility Zone (<code>us-east-1a</code>), and AZ ID (<code>use1-az1</code>). </p>
12
+ * Availability Zone (<code>us-east-1a</code>), and AZ ID (<code>use1-az1</code>). </p>
13
13
  *
14
14
  * <p>If you specify multiple filters, the filters are joined with an <code>AND</code>, and the request returns only
15
15
  * results that match all of the specified filters.</p>
@@ -7,7 +7,7 @@ export interface ListSitesCommandInput extends ListSitesInput {
7
7
  export interface ListSitesCommandOutput extends ListSitesOutput, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Lists the sites for the specified AWS account.</p>
10
+ * <p>Lists the sites for your Amazon Web Services account.</p>
11
11
  * @example
12
12
  * Use a bare-bones client and the command you need to make an API call.
13
13
  * ```javascript
@@ -0,0 +1,37 @@
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 { UpdateOutpostInput, UpdateOutpostOutput } from "../models/models_0";
4
+ import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
5
+ export interface UpdateOutpostCommandInput extends UpdateOutpostInput {
6
+ }
7
+ export interface UpdateOutpostCommandOutput extends UpdateOutpostOutput, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>
11
+ * Updates an Outpost.
12
+ * </p>
13
+ * @example
14
+ * Use a bare-bones client and the command you need to make an API call.
15
+ * ```javascript
16
+ * import { OutpostsClient, UpdateOutpostCommand } from "@aws-sdk/client-outposts"; // ES Modules import
17
+ * // const { OutpostsClient, UpdateOutpostCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
18
+ * const client = new OutpostsClient(config);
19
+ * const command = new UpdateOutpostCommand(input);
20
+ * const response = await client.send(command);
21
+ * ```
22
+ *
23
+ * @see {@link UpdateOutpostCommandInput} for command's `input` shape.
24
+ * @see {@link UpdateOutpostCommandOutput} for command's `response` shape.
25
+ * @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
26
+ *
27
+ */
28
+ export declare class UpdateOutpostCommand extends $Command<UpdateOutpostCommandInput, UpdateOutpostCommandOutput, OutpostsClientResolvedConfig> {
29
+ readonly input: UpdateOutpostCommandInput;
30
+ constructor(input: UpdateOutpostCommandInput);
31
+ /**
32
+ * @internal
33
+ */
34
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateOutpostCommandInput, UpdateOutpostCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }