@aws-sdk/client-outposts 3.295.0 → 3.297.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/dist-types/Outposts.d.ts +27 -0
- package/dist-types/OutpostsClient.d.ts +24 -4
- package/dist-types/commands/CancelOrderCommand.d.ts +16 -0
- package/dist-types/commands/CreateOrderCommand.d.ts +16 -0
- package/dist-types/commands/CreateOutpostCommand.d.ts +16 -0
- package/dist-types/commands/CreateSiteCommand.d.ts +16 -0
- package/dist-types/commands/DeleteOutpostCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSiteCommand.d.ts +16 -0
- package/dist-types/commands/GetCatalogItemCommand.d.ts +16 -0
- package/dist-types/commands/GetConnectionCommand.d.ts +16 -0
- package/dist-types/commands/GetOrderCommand.d.ts +16 -0
- package/dist-types/commands/GetOutpostCommand.d.ts +16 -0
- package/dist-types/commands/GetOutpostInstanceTypesCommand.d.ts +16 -0
- package/dist-types/commands/GetSiteAddressCommand.d.ts +16 -0
- package/dist-types/commands/GetSiteCommand.d.ts +16 -0
- package/dist-types/commands/ListAssetsCommand.d.ts +16 -0
- package/dist-types/commands/ListCatalogItemsCommand.d.ts +16 -0
- package/dist-types/commands/ListOrdersCommand.d.ts +16 -0
- package/dist-types/commands/ListOutpostsCommand.d.ts +16 -0
- package/dist-types/commands/ListSitesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/StartConnectionCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateOutpostCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSiteAddressCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSiteCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +16 -0
- package/dist-types/models/OutpostsServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +251 -0
- package/dist-types/pagination/GetOutpostInstanceTypesPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAssetsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListCatalogItemsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListOrdersPaginator.d.ts +3 -0
- package/dist-types/pagination/ListOutpostsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSitesPaginator.d.ts +3 -0
- package/package.json +29 -29
package/dist-types/Outposts.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ import { UpdateSiteCommandInput, UpdateSiteCommandOutput } from "./commands/Upda
|
|
|
27
27
|
import { UpdateSiteRackPhysicalPropertiesCommandInput, UpdateSiteRackPhysicalPropertiesCommandOutput } from "./commands/UpdateSiteRackPhysicalPropertiesCommand";
|
|
28
28
|
import { OutpostsClient } from "./OutpostsClient";
|
|
29
29
|
/**
|
|
30
|
+
* @public
|
|
30
31
|
* <p>Amazon Web Services Outposts is a fully managed service that extends Amazon Web Services infrastructure, APIs, and tools to
|
|
31
32
|
* customer premises. By providing local access to Amazon Web Services managed infrastructure, Amazon Web Services Outposts enables
|
|
32
33
|
* customers to build and run applications on premises using the same programming interfaces as
|
|
@@ -35,18 +36,21 @@ import { OutpostsClient } from "./OutpostsClient";
|
|
|
35
36
|
*/
|
|
36
37
|
export declare class Outposts extends OutpostsClient {
|
|
37
38
|
/**
|
|
39
|
+
* @public
|
|
38
40
|
* <p>Cancels the specified order for an Outpost.</p>
|
|
39
41
|
*/
|
|
40
42
|
cancelOrder(args: CancelOrderCommandInput, options?: __HttpHandlerOptions): Promise<CancelOrderCommandOutput>;
|
|
41
43
|
cancelOrder(args: CancelOrderCommandInput, cb: (err: any, data?: CancelOrderCommandOutput) => void): void;
|
|
42
44
|
cancelOrder(args: CancelOrderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelOrderCommandOutput) => void): void;
|
|
43
45
|
/**
|
|
46
|
+
* @public
|
|
44
47
|
* <p>Creates an order for an Outpost.</p>
|
|
45
48
|
*/
|
|
46
49
|
createOrder(args: CreateOrderCommandInput, options?: __HttpHandlerOptions): Promise<CreateOrderCommandOutput>;
|
|
47
50
|
createOrder(args: CreateOrderCommandInput, cb: (err: any, data?: CreateOrderCommandOutput) => void): void;
|
|
48
51
|
createOrder(args: CreateOrderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateOrderCommandOutput) => void): void;
|
|
49
52
|
/**
|
|
53
|
+
* @public
|
|
50
54
|
* <p>Creates an Outpost.</p>
|
|
51
55
|
* <p>You can specify either an Availability one or an AZ ID.</p>
|
|
52
56
|
*/
|
|
@@ -54,30 +58,35 @@ export declare class Outposts extends OutpostsClient {
|
|
|
54
58
|
createOutpost(args: CreateOutpostCommandInput, cb: (err: any, data?: CreateOutpostCommandOutput) => void): void;
|
|
55
59
|
createOutpost(args: CreateOutpostCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateOutpostCommandOutput) => void): void;
|
|
56
60
|
/**
|
|
61
|
+
* @public
|
|
57
62
|
* <p> Creates a site for an Outpost. </p>
|
|
58
63
|
*/
|
|
59
64
|
createSite(args: CreateSiteCommandInput, options?: __HttpHandlerOptions): Promise<CreateSiteCommandOutput>;
|
|
60
65
|
createSite(args: CreateSiteCommandInput, cb: (err: any, data?: CreateSiteCommandOutput) => void): void;
|
|
61
66
|
createSite(args: CreateSiteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSiteCommandOutput) => void): void;
|
|
62
67
|
/**
|
|
68
|
+
* @public
|
|
63
69
|
* <p>Deletes the specified Outpost.</p>
|
|
64
70
|
*/
|
|
65
71
|
deleteOutpost(args: DeleteOutpostCommandInput, options?: __HttpHandlerOptions): Promise<DeleteOutpostCommandOutput>;
|
|
66
72
|
deleteOutpost(args: DeleteOutpostCommandInput, cb: (err: any, data?: DeleteOutpostCommandOutput) => void): void;
|
|
67
73
|
deleteOutpost(args: DeleteOutpostCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteOutpostCommandOutput) => void): void;
|
|
68
74
|
/**
|
|
75
|
+
* @public
|
|
69
76
|
* <p>Deletes the specified site.</p>
|
|
70
77
|
*/
|
|
71
78
|
deleteSite(args: DeleteSiteCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSiteCommandOutput>;
|
|
72
79
|
deleteSite(args: DeleteSiteCommandInput, cb: (err: any, data?: DeleteSiteCommandOutput) => void): void;
|
|
73
80
|
deleteSite(args: DeleteSiteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSiteCommandOutput) => void): void;
|
|
74
81
|
/**
|
|
82
|
+
* @public
|
|
75
83
|
* <p>Gets information about the specified catalog item.</p>
|
|
76
84
|
*/
|
|
77
85
|
getCatalogItem(args: GetCatalogItemCommandInput, options?: __HttpHandlerOptions): Promise<GetCatalogItemCommandOutput>;
|
|
78
86
|
getCatalogItem(args: GetCatalogItemCommandInput, cb: (err: any, data?: GetCatalogItemCommandOutput) => void): void;
|
|
79
87
|
getCatalogItem(args: GetCatalogItemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCatalogItemCommandOutput) => void): void;
|
|
80
88
|
/**
|
|
89
|
+
* @public
|
|
81
90
|
* <note>
|
|
82
91
|
* <p>
|
|
83
92
|
* Amazon Web Services uses this action to install Outpost servers.</p>
|
|
@@ -94,36 +103,42 @@ export declare class Outposts extends OutpostsClient {
|
|
|
94
103
|
getConnection(args: GetConnectionCommandInput, cb: (err: any, data?: GetConnectionCommandOutput) => void): void;
|
|
95
104
|
getConnection(args: GetConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConnectionCommandOutput) => void): void;
|
|
96
105
|
/**
|
|
106
|
+
* @public
|
|
97
107
|
* <p>Gets information about the specified order.</p>
|
|
98
108
|
*/
|
|
99
109
|
getOrder(args: GetOrderCommandInput, options?: __HttpHandlerOptions): Promise<GetOrderCommandOutput>;
|
|
100
110
|
getOrder(args: GetOrderCommandInput, cb: (err: any, data?: GetOrderCommandOutput) => void): void;
|
|
101
111
|
getOrder(args: GetOrderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOrderCommandOutput) => void): void;
|
|
102
112
|
/**
|
|
113
|
+
* @public
|
|
103
114
|
* <p>Gets information about the specified Outpost.</p>
|
|
104
115
|
*/
|
|
105
116
|
getOutpost(args: GetOutpostCommandInput, options?: __HttpHandlerOptions): Promise<GetOutpostCommandOutput>;
|
|
106
117
|
getOutpost(args: GetOutpostCommandInput, cb: (err: any, data?: GetOutpostCommandOutput) => void): void;
|
|
107
118
|
getOutpost(args: GetOutpostCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOutpostCommandOutput) => void): void;
|
|
108
119
|
/**
|
|
120
|
+
* @public
|
|
109
121
|
* <p>Gets the instance types for the specified Outpost.</p>
|
|
110
122
|
*/
|
|
111
123
|
getOutpostInstanceTypes(args: GetOutpostInstanceTypesCommandInput, options?: __HttpHandlerOptions): Promise<GetOutpostInstanceTypesCommandOutput>;
|
|
112
124
|
getOutpostInstanceTypes(args: GetOutpostInstanceTypesCommandInput, cb: (err: any, data?: GetOutpostInstanceTypesCommandOutput) => void): void;
|
|
113
125
|
getOutpostInstanceTypes(args: GetOutpostInstanceTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOutpostInstanceTypesCommandOutput) => void): void;
|
|
114
126
|
/**
|
|
127
|
+
* @public
|
|
115
128
|
* <p>Gets information about the specified Outpost site.</p>
|
|
116
129
|
*/
|
|
117
130
|
getSite(args: GetSiteCommandInput, options?: __HttpHandlerOptions): Promise<GetSiteCommandOutput>;
|
|
118
131
|
getSite(args: GetSiteCommandInput, cb: (err: any, data?: GetSiteCommandOutput) => void): void;
|
|
119
132
|
getSite(args: GetSiteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSiteCommandOutput) => void): void;
|
|
120
133
|
/**
|
|
134
|
+
* @public
|
|
121
135
|
* <p> Gets the site address of the specified site. </p>
|
|
122
136
|
*/
|
|
123
137
|
getSiteAddress(args: GetSiteAddressCommandInput, options?: __HttpHandlerOptions): Promise<GetSiteAddressCommandOutput>;
|
|
124
138
|
getSiteAddress(args: GetSiteAddressCommandInput, cb: (err: any, data?: GetSiteAddressCommandOutput) => void): void;
|
|
125
139
|
getSiteAddress(args: GetSiteAddressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSiteAddressCommandOutput) => void): void;
|
|
126
140
|
/**
|
|
141
|
+
* @public
|
|
127
142
|
* <p>Lists the hardware assets for the specified Outpost.</p>
|
|
128
143
|
* <p>Use filters to return specific results. If you specify multiple filters, the results include only the resources that match
|
|
129
144
|
* all of the specified filters. For a filter where you can specify multiple values, the results include
|
|
@@ -133,6 +148,7 @@ export declare class Outposts extends OutpostsClient {
|
|
|
133
148
|
listAssets(args: ListAssetsCommandInput, cb: (err: any, data?: ListAssetsCommandOutput) => void): void;
|
|
134
149
|
listAssets(args: ListAssetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssetsCommandOutput) => void): void;
|
|
135
150
|
/**
|
|
151
|
+
* @public
|
|
136
152
|
* <p>Lists the items in the catalog.</p>
|
|
137
153
|
* <p>Use filters to return specific results. If you specify multiple filters, the results include only the resources that match
|
|
138
154
|
* all of the specified filters. For a filter where you can specify multiple values, the results include
|
|
@@ -142,12 +158,14 @@ export declare class Outposts extends OutpostsClient {
|
|
|
142
158
|
listCatalogItems(args: ListCatalogItemsCommandInput, cb: (err: any, data?: ListCatalogItemsCommandOutput) => void): void;
|
|
143
159
|
listCatalogItems(args: ListCatalogItemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCatalogItemsCommandOutput) => void): void;
|
|
144
160
|
/**
|
|
161
|
+
* @public
|
|
145
162
|
* <p>Lists the Outpost orders for your Amazon Web Services account.</p>
|
|
146
163
|
*/
|
|
147
164
|
listOrders(args: ListOrdersCommandInput, options?: __HttpHandlerOptions): Promise<ListOrdersCommandOutput>;
|
|
148
165
|
listOrders(args: ListOrdersCommandInput, cb: (err: any, data?: ListOrdersCommandOutput) => void): void;
|
|
149
166
|
listOrders(args: ListOrdersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOrdersCommandOutput) => void): void;
|
|
150
167
|
/**
|
|
168
|
+
* @public
|
|
151
169
|
* <p>Lists the Outposts for your Amazon Web Services account.</p>
|
|
152
170
|
* <p>Use filters to return specific results. If you specify multiple filters, the results include only the resources that match
|
|
153
171
|
* all of the specified filters. For a filter where you can specify multiple values, the results include
|
|
@@ -157,6 +175,7 @@ export declare class Outposts extends OutpostsClient {
|
|
|
157
175
|
listOutposts(args: ListOutpostsCommandInput, cb: (err: any, data?: ListOutpostsCommandOutput) => void): void;
|
|
158
176
|
listOutposts(args: ListOutpostsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOutpostsCommandOutput) => void): void;
|
|
159
177
|
/**
|
|
178
|
+
* @public
|
|
160
179
|
* <p>Lists the Outpost sites for your Amazon Web Services account. Use filters to return specific
|
|
161
180
|
* results.</p>
|
|
162
181
|
* <p>Use filters to return specific results. If you specify multiple filters, the results include only the resources that match
|
|
@@ -167,12 +186,14 @@ export declare class Outposts extends OutpostsClient {
|
|
|
167
186
|
listSites(args: ListSitesCommandInput, cb: (err: any, data?: ListSitesCommandOutput) => void): void;
|
|
168
187
|
listSites(args: ListSitesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSitesCommandOutput) => void): void;
|
|
169
188
|
/**
|
|
189
|
+
* @public
|
|
170
190
|
* <p>Lists the tags for the specified resource.</p>
|
|
171
191
|
*/
|
|
172
192
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
173
193
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
174
194
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
175
195
|
/**
|
|
196
|
+
* @public
|
|
176
197
|
* <note>
|
|
177
198
|
* <p>
|
|
178
199
|
* Amazon Web Services uses this action to install Outpost servers.</p>
|
|
@@ -189,30 +210,35 @@ export declare class Outposts extends OutpostsClient {
|
|
|
189
210
|
startConnection(args: StartConnectionCommandInput, cb: (err: any, data?: StartConnectionCommandOutput) => void): void;
|
|
190
211
|
startConnection(args: StartConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartConnectionCommandOutput) => void): void;
|
|
191
212
|
/**
|
|
213
|
+
* @public
|
|
192
214
|
* <p>Adds tags to the specified resource.</p>
|
|
193
215
|
*/
|
|
194
216
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
195
217
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
196
218
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
197
219
|
/**
|
|
220
|
+
* @public
|
|
198
221
|
* <p>Removes tags from the specified resource.</p>
|
|
199
222
|
*/
|
|
200
223
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
201
224
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
202
225
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
203
226
|
/**
|
|
227
|
+
* @public
|
|
204
228
|
* <p> Updates an Outpost. </p>
|
|
205
229
|
*/
|
|
206
230
|
updateOutpost(args: UpdateOutpostCommandInput, options?: __HttpHandlerOptions): Promise<UpdateOutpostCommandOutput>;
|
|
207
231
|
updateOutpost(args: UpdateOutpostCommandInput, cb: (err: any, data?: UpdateOutpostCommandOutput) => void): void;
|
|
208
232
|
updateOutpost(args: UpdateOutpostCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateOutpostCommandOutput) => void): void;
|
|
209
233
|
/**
|
|
234
|
+
* @public
|
|
210
235
|
* <p>Updates the specified site.</p>
|
|
211
236
|
*/
|
|
212
237
|
updateSite(args: UpdateSiteCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSiteCommandOutput>;
|
|
213
238
|
updateSite(args: UpdateSiteCommandInput, cb: (err: any, data?: UpdateSiteCommandOutput) => void): void;
|
|
214
239
|
updateSite(args: UpdateSiteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSiteCommandOutput) => void): void;
|
|
215
240
|
/**
|
|
241
|
+
* @public
|
|
216
242
|
* <p>Updates the address of the specified site.</p>
|
|
217
243
|
* <p>You can't update a site address if there is an order in progress. You must wait for the
|
|
218
244
|
* order to complete or cancel the order.</p>
|
|
@@ -223,6 +249,7 @@ export declare class Outposts extends OutpostsClient {
|
|
|
223
249
|
updateSiteAddress(args: UpdateSiteAddressCommandInput, cb: (err: any, data?: UpdateSiteAddressCommandOutput) => void): void;
|
|
224
250
|
updateSiteAddress(args: UpdateSiteAddressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSiteAddressCommandOutput) => void): void;
|
|
225
251
|
/**
|
|
252
|
+
* @public
|
|
226
253
|
* <p>Update the physical and logistical details for a rack at a site. For more information
|
|
227
254
|
* about hardware requirements for racks, see <a href="https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#checklist">Network
|
|
228
255
|
* readiness checklist</a> in the Amazon Web Services Outposts User Guide.
|
|
@@ -34,15 +34,24 @@ import { UpdateSiteAddressCommandInput, UpdateSiteAddressCommandOutput } from ".
|
|
|
34
34
|
import { UpdateSiteCommandInput, UpdateSiteCommandOutput } from "./commands/UpdateSiteCommand";
|
|
35
35
|
import { UpdateSiteRackPhysicalPropertiesCommandInput, UpdateSiteRackPhysicalPropertiesCommandOutput } from "./commands/UpdateSiteRackPhysicalPropertiesCommand";
|
|
36
36
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
37
|
+
/**
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
37
40
|
export type ServiceInputTypes = CancelOrderCommandInput | CreateOrderCommandInput | CreateOutpostCommandInput | CreateSiteCommandInput | DeleteOutpostCommandInput | DeleteSiteCommandInput | GetCatalogItemCommandInput | GetConnectionCommandInput | GetOrderCommandInput | GetOutpostCommandInput | GetOutpostInstanceTypesCommandInput | GetSiteAddressCommandInput | GetSiteCommandInput | ListAssetsCommandInput | ListCatalogItemsCommandInput | ListOrdersCommandInput | ListOutpostsCommandInput | ListSitesCommandInput | ListTagsForResourceCommandInput | StartConnectionCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateOutpostCommandInput | UpdateSiteAddressCommandInput | UpdateSiteCommandInput | UpdateSiteRackPhysicalPropertiesCommandInput;
|
|
41
|
+
/**
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
38
44
|
export type ServiceOutputTypes = CancelOrderCommandOutput | CreateOrderCommandOutput | CreateOutpostCommandOutput | CreateSiteCommandOutput | DeleteOutpostCommandOutput | DeleteSiteCommandOutput | GetCatalogItemCommandOutput | GetConnectionCommandOutput | GetOrderCommandOutput | GetOutpostCommandOutput | GetOutpostInstanceTypesCommandOutput | GetSiteAddressCommandOutput | GetSiteCommandOutput | ListAssetsCommandOutput | ListCatalogItemsCommandOutput | ListOrdersCommandOutput | ListOutpostsCommandOutput | ListSitesCommandOutput | ListTagsForResourceCommandOutput | StartConnectionCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateOutpostCommandOutput | UpdateSiteAddressCommandOutput | UpdateSiteCommandOutput | UpdateSiteRackPhysicalPropertiesCommandOutput;
|
|
45
|
+
/**
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
39
48
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
40
49
|
/**
|
|
41
50
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
42
51
|
*/
|
|
43
52
|
requestHandler?: __HttpHandler;
|
|
44
53
|
/**
|
|
45
|
-
* A constructor for a class implementing the {@link
|
|
54
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
46
55
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
47
56
|
* @internal
|
|
48
57
|
*/
|
|
@@ -132,23 +141,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
132
141
|
*/
|
|
133
142
|
logger?: __Logger;
|
|
134
143
|
/**
|
|
135
|
-
* The {@link
|
|
144
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
136
145
|
*/
|
|
137
146
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
138
147
|
}
|
|
148
|
+
/**
|
|
149
|
+
* @public
|
|
150
|
+
*/
|
|
139
151
|
type OutpostsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
140
152
|
/**
|
|
141
|
-
*
|
|
153
|
+
* @public
|
|
154
|
+
*
|
|
155
|
+
* The configuration interface of OutpostsClient class constructor that set the region, credentials and other options.
|
|
142
156
|
*/
|
|
143
157
|
export interface OutpostsClientConfig extends OutpostsClientConfigType {
|
|
144
158
|
}
|
|
159
|
+
/**
|
|
160
|
+
* @public
|
|
161
|
+
*/
|
|
145
162
|
type OutpostsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
146
163
|
/**
|
|
147
|
-
*
|
|
164
|
+
* @public
|
|
165
|
+
*
|
|
166
|
+
* The resolved configuration interface of OutpostsClient class. This is resolved and normalized from the {@link OutpostsClientConfig | constructor configuration interface}.
|
|
148
167
|
*/
|
|
149
168
|
export interface OutpostsClientResolvedConfig extends OutpostsClientResolvedConfigType {
|
|
150
169
|
}
|
|
151
170
|
/**
|
|
171
|
+
* @public
|
|
152
172
|
* <p>Amazon Web Services Outposts is a fully managed service that extends Amazon Web Services infrastructure, APIs, and tools to
|
|
153
173
|
* customer premises. By providing local access to Amazon Web Services managed infrastructure, Amazon Web Services Outposts enables
|
|
154
174
|
* customers to build and run applications on premises using the same programming interfaces as
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CancelOrderInput, CancelOrderOutput } from "../models/models_0";
|
|
5
5
|
import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CancelOrderCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CancelOrderCommandInput extends CancelOrderInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CancelOrderCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CancelOrderCommandOutput extends CancelOrderOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Cancels the specified order for an Outpost.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CancelOrderCommandOutput extends CancelOrderOutput, __MetadataB
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CancelOrderCommandInput - {@link CancelOrderCommandInput}
|
|
34
|
+
* @returns {@link CancelOrderCommandOutput}
|
|
28
35
|
* @see {@link CancelOrderCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CancelOrderCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface CancelOrderCommandOutput extends CancelOrderOutput, __MetadataB
|
|
|
49
56
|
export declare class CancelOrderCommand extends $Command<CancelOrderCommandInput, CancelOrderCommandOutput, OutpostsClientResolvedConfig> {
|
|
50
57
|
readonly input: CancelOrderCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: CancelOrderCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelOrderCommandInput, CancelOrderCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateOrderInput, CreateOrderOutput } from "../models/models_0";
|
|
5
5
|
import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateOrderCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateOrderCommandInput extends CreateOrderInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateOrderCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateOrderCommandOutput extends CreateOrderOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an order for an Outpost.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateOrderCommandOutput extends CreateOrderOutput, __MetadataB
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateOrderCommandInput - {@link CreateOrderCommandInput}
|
|
34
|
+
* @returns {@link CreateOrderCommandOutput}
|
|
28
35
|
* @see {@link CreateOrderCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateOrderCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface CreateOrderCommandOutput extends CreateOrderOutput, __MetadataB
|
|
|
52
59
|
export declare class CreateOrderCommand extends $Command<CreateOrderCommandInput, CreateOrderCommandOutput, OutpostsClientResolvedConfig> {
|
|
53
60
|
readonly input: CreateOrderCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: CreateOrderCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateOrderCommandInput, CreateOrderCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateOutpostInput, CreateOutpostOutput } from "../models/models_0";
|
|
5
5
|
import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateOutpostCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateOutpostCommandInput extends CreateOutpostInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateOutpostCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateOutpostCommandOutput extends CreateOutpostOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an Outpost.</p>
|
|
18
23
|
* <p>You can specify either an Availability one or an AZ ID.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface CreateOutpostCommandOutput extends CreateOutpostOutput, __Metad
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param CreateOutpostCommandInput - {@link CreateOutpostCommandInput}
|
|
35
|
+
* @returns {@link CreateOutpostCommandOutput}
|
|
29
36
|
* @see {@link CreateOutpostCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link CreateOutpostCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface CreateOutpostCommandOutput extends CreateOutpostOutput, __Metad
|
|
|
53
60
|
export declare class CreateOutpostCommand extends $Command<CreateOutpostCommandInput, CreateOutpostCommandOutput, OutpostsClientResolvedConfig> {
|
|
54
61
|
readonly input: CreateOutpostCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: CreateOutpostCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateOutpostCommandInput, CreateOutpostCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateSiteInput, CreateSiteOutput } from "../models/models_0";
|
|
5
5
|
import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateSiteCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateSiteCommandInput extends CreateSiteInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateSiteCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateSiteCommandOutput extends CreateSiteOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Creates a site for an Outpost. </p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateSiteCommandOutput extends CreateSiteOutput, __MetadataBea
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateSiteCommandInput - {@link CreateSiteCommandInput}
|
|
34
|
+
* @returns {@link CreateSiteCommandOutput}
|
|
28
35
|
* @see {@link CreateSiteCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateSiteCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface CreateSiteCommandOutput extends CreateSiteOutput, __MetadataBea
|
|
|
49
56
|
export declare class CreateSiteCommand extends $Command<CreateSiteCommandInput, CreateSiteCommandOutput, OutpostsClientResolvedConfig> {
|
|
50
57
|
readonly input: CreateSiteCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: CreateSiteCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSiteCommandInput, CreateSiteCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteOutpostInput, DeleteOutpostOutput } from "../models/models_0";
|
|
5
5
|
import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteOutpostCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteOutpostCommandInput extends DeleteOutpostInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteOutpostCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteOutpostCommandOutput extends DeleteOutpostOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified Outpost.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteOutpostCommandOutput extends DeleteOutpostOutput, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteOutpostCommandInput - {@link DeleteOutpostCommandInput}
|
|
34
|
+
* @returns {@link DeleteOutpostCommandOutput}
|
|
28
35
|
* @see {@link DeleteOutpostCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteOutpostCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface DeleteOutpostCommandOutput extends DeleteOutpostOutput, __Metad
|
|
|
49
56
|
export declare class DeleteOutpostCommand extends $Command<DeleteOutpostCommandInput, DeleteOutpostCommandOutput, OutpostsClientResolvedConfig> {
|
|
50
57
|
readonly input: DeleteOutpostCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: DeleteOutpostCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteOutpostCommandInput, DeleteOutpostCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteSiteInput, DeleteSiteOutput } from "../models/models_0";
|
|
5
5
|
import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteSiteCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteSiteCommandInput extends DeleteSiteInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteSiteCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteSiteCommandOutput extends DeleteSiteOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified site.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteSiteCommandOutput extends DeleteSiteOutput, __MetadataBea
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteSiteCommandInput - {@link DeleteSiteCommandInput}
|
|
34
|
+
* @returns {@link DeleteSiteCommandOutput}
|
|
28
35
|
* @see {@link DeleteSiteCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteSiteCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface DeleteSiteCommandOutput extends DeleteSiteOutput, __MetadataBea
|
|
|
49
56
|
export declare class DeleteSiteCommand extends $Command<DeleteSiteCommandInput, DeleteSiteCommandOutput, OutpostsClientResolvedConfig> {
|
|
50
57
|
readonly input: DeleteSiteCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: DeleteSiteCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSiteCommandInput, DeleteSiteCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetCatalogItemInput, GetCatalogItemOutput } from "../models/models_0";
|
|
5
5
|
import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetCatalogItemCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetCatalogItemCommandInput extends GetCatalogItemInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetCatalogItemCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetCatalogItemCommandOutput extends GetCatalogItemOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets information about the specified catalog item.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetCatalogItemCommandOutput extends GetCatalogItemOutput, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetCatalogItemCommandInput - {@link GetCatalogItemCommandInput}
|
|
34
|
+
* @returns {@link GetCatalogItemCommandOutput}
|
|
28
35
|
* @see {@link GetCatalogItemCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetCatalogItemCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link OutpostsClientResolvedConfig | config} for OutpostsClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface GetCatalogItemCommandOutput extends GetCatalogItemOutput, __Met
|
|
|
43
50
|
export declare class GetCatalogItemCommand extends $Command<GetCatalogItemCommandInput, GetCatalogItemCommandOutput, OutpostsClientResolvedConfig> {
|
|
44
51
|
readonly input: GetCatalogItemCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: GetCatalogItemCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCatalogItemCommandInput, GetCatalogItemCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|