@aws-sdk/client-outposts 3.312.0 → 3.316.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-cjs/Outposts.js +30 -364
- package/dist-cjs/protocols/Aws_restJson1.js +287 -634
- package/dist-es/Outposts.js +30 -364
- package/dist-es/protocols/Aws_restJson1.js +248 -595
- package/dist-types/Outposts.d.ts +37 -104
- package/dist-types/ts3.4/Outposts.d.ts +2 -1
- package/package.json +6 -6
package/dist-types/Outposts.d.ts
CHANGED
|
@@ -26,238 +26,171 @@ import { UpdateSiteAddressCommandInput, UpdateSiteAddressCommandOutput } from ".
|
|
|
26
26
|
import { UpdateSiteCommandInput, UpdateSiteCommandOutput } from "./commands/UpdateSiteCommand";
|
|
27
27
|
import { UpdateSiteRackPhysicalPropertiesCommandInput, UpdateSiteRackPhysicalPropertiesCommandOutput } from "./commands/UpdateSiteRackPhysicalPropertiesCommand";
|
|
28
28
|
import { OutpostsClient } from "./OutpostsClient";
|
|
29
|
-
|
|
30
|
-
* @public
|
|
31
|
-
* <p>Amazon Web Services Outposts is a fully managed service that extends Amazon Web Services infrastructure, APIs, and tools to
|
|
32
|
-
* customer premises. By providing local access to Amazon Web Services managed infrastructure, Amazon Web Services Outposts enables
|
|
33
|
-
* customers to build and run applications on premises using the same programming interfaces as
|
|
34
|
-
* in Amazon Web Services Regions, while using local compute and storage resources for lower latency and local
|
|
35
|
-
* data processing needs.</p>
|
|
36
|
-
*/
|
|
37
|
-
export declare class Outposts extends OutpostsClient {
|
|
29
|
+
export interface Outposts {
|
|
38
30
|
/**
|
|
39
|
-
* @
|
|
40
|
-
* <p>Cancels the specified order for an Outpost.</p>
|
|
31
|
+
* @see {@link CancelOrderCommand}
|
|
41
32
|
*/
|
|
42
33
|
cancelOrder(args: CancelOrderCommandInput, options?: __HttpHandlerOptions): Promise<CancelOrderCommandOutput>;
|
|
43
34
|
cancelOrder(args: CancelOrderCommandInput, cb: (err: any, data?: CancelOrderCommandOutput) => void): void;
|
|
44
35
|
cancelOrder(args: CancelOrderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelOrderCommandOutput) => void): void;
|
|
45
36
|
/**
|
|
46
|
-
* @
|
|
47
|
-
* <p>Creates an order for an Outpost.</p>
|
|
37
|
+
* @see {@link CreateOrderCommand}
|
|
48
38
|
*/
|
|
49
39
|
createOrder(args: CreateOrderCommandInput, options?: __HttpHandlerOptions): Promise<CreateOrderCommandOutput>;
|
|
50
40
|
createOrder(args: CreateOrderCommandInput, cb: (err: any, data?: CreateOrderCommandOutput) => void): void;
|
|
51
41
|
createOrder(args: CreateOrderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateOrderCommandOutput) => void): void;
|
|
52
42
|
/**
|
|
53
|
-
* @
|
|
54
|
-
* <p>Creates an Outpost.</p>
|
|
55
|
-
* <p>You can specify either an Availability one or an AZ ID.</p>
|
|
43
|
+
* @see {@link CreateOutpostCommand}
|
|
56
44
|
*/
|
|
57
45
|
createOutpost(args: CreateOutpostCommandInput, options?: __HttpHandlerOptions): Promise<CreateOutpostCommandOutput>;
|
|
58
46
|
createOutpost(args: CreateOutpostCommandInput, cb: (err: any, data?: CreateOutpostCommandOutput) => void): void;
|
|
59
47
|
createOutpost(args: CreateOutpostCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateOutpostCommandOutput) => void): void;
|
|
60
48
|
/**
|
|
61
|
-
* @
|
|
62
|
-
* <p> Creates a site for an Outpost. </p>
|
|
49
|
+
* @see {@link CreateSiteCommand}
|
|
63
50
|
*/
|
|
64
51
|
createSite(args: CreateSiteCommandInput, options?: __HttpHandlerOptions): Promise<CreateSiteCommandOutput>;
|
|
65
52
|
createSite(args: CreateSiteCommandInput, cb: (err: any, data?: CreateSiteCommandOutput) => void): void;
|
|
66
53
|
createSite(args: CreateSiteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSiteCommandOutput) => void): void;
|
|
67
54
|
/**
|
|
68
|
-
* @
|
|
69
|
-
* <p>Deletes the specified Outpost.</p>
|
|
55
|
+
* @see {@link DeleteOutpostCommand}
|
|
70
56
|
*/
|
|
71
57
|
deleteOutpost(args: DeleteOutpostCommandInput, options?: __HttpHandlerOptions): Promise<DeleteOutpostCommandOutput>;
|
|
72
58
|
deleteOutpost(args: DeleteOutpostCommandInput, cb: (err: any, data?: DeleteOutpostCommandOutput) => void): void;
|
|
73
59
|
deleteOutpost(args: DeleteOutpostCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteOutpostCommandOutput) => void): void;
|
|
74
60
|
/**
|
|
75
|
-
* @
|
|
76
|
-
* <p>Deletes the specified site.</p>
|
|
61
|
+
* @see {@link DeleteSiteCommand}
|
|
77
62
|
*/
|
|
78
63
|
deleteSite(args: DeleteSiteCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSiteCommandOutput>;
|
|
79
64
|
deleteSite(args: DeleteSiteCommandInput, cb: (err: any, data?: DeleteSiteCommandOutput) => void): void;
|
|
80
65
|
deleteSite(args: DeleteSiteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSiteCommandOutput) => void): void;
|
|
81
66
|
/**
|
|
82
|
-
* @
|
|
83
|
-
* <p>Gets information about the specified catalog item.</p>
|
|
67
|
+
* @see {@link GetCatalogItemCommand}
|
|
84
68
|
*/
|
|
85
69
|
getCatalogItem(args: GetCatalogItemCommandInput, options?: __HttpHandlerOptions): Promise<GetCatalogItemCommandOutput>;
|
|
86
70
|
getCatalogItem(args: GetCatalogItemCommandInput, cb: (err: any, data?: GetCatalogItemCommandOutput) => void): void;
|
|
87
71
|
getCatalogItem(args: GetCatalogItemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCatalogItemCommandOutput) => void): void;
|
|
88
72
|
/**
|
|
89
|
-
* @
|
|
90
|
-
* <note>
|
|
91
|
-
* <p>
|
|
92
|
-
* Amazon Web Services uses this action to install Outpost servers.</p>
|
|
93
|
-
* </note>
|
|
94
|
-
* <p> Gets information about the specified connection. </p>
|
|
95
|
-
* <p>
|
|
96
|
-
* Use CloudTrail to monitor this action or Amazon Web Services managed policy for Amazon Web Services Outposts to secure it. For
|
|
97
|
-
* more information, see <a href="https://docs.aws.amazon.com/outposts/latest/userguide/security-iam-awsmanpol.html">
|
|
98
|
-
* Amazon Web Services managed policies for Amazon Web Services Outposts</a> and <a href="https://docs.aws.amazon.com/outposts/latest/userguide/logging-using-cloudtrail.html">
|
|
99
|
-
* Logging Amazon Web Services Outposts API calls with Amazon Web Services CloudTrail</a> in the <i>Amazon Web Services Outposts User Guide</i>.
|
|
100
|
-
* </p>
|
|
73
|
+
* @see {@link GetConnectionCommand}
|
|
101
74
|
*/
|
|
102
75
|
getConnection(args: GetConnectionCommandInput, options?: __HttpHandlerOptions): Promise<GetConnectionCommandOutput>;
|
|
103
76
|
getConnection(args: GetConnectionCommandInput, cb: (err: any, data?: GetConnectionCommandOutput) => void): void;
|
|
104
77
|
getConnection(args: GetConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConnectionCommandOutput) => void): void;
|
|
105
78
|
/**
|
|
106
|
-
* @
|
|
107
|
-
* <p>Gets information about the specified order.</p>
|
|
79
|
+
* @see {@link GetOrderCommand}
|
|
108
80
|
*/
|
|
109
81
|
getOrder(args: GetOrderCommandInput, options?: __HttpHandlerOptions): Promise<GetOrderCommandOutput>;
|
|
110
82
|
getOrder(args: GetOrderCommandInput, cb: (err: any, data?: GetOrderCommandOutput) => void): void;
|
|
111
83
|
getOrder(args: GetOrderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOrderCommandOutput) => void): void;
|
|
112
84
|
/**
|
|
113
|
-
* @
|
|
114
|
-
* <p>Gets information about the specified Outpost.</p>
|
|
85
|
+
* @see {@link GetOutpostCommand}
|
|
115
86
|
*/
|
|
116
87
|
getOutpost(args: GetOutpostCommandInput, options?: __HttpHandlerOptions): Promise<GetOutpostCommandOutput>;
|
|
117
88
|
getOutpost(args: GetOutpostCommandInput, cb: (err: any, data?: GetOutpostCommandOutput) => void): void;
|
|
118
89
|
getOutpost(args: GetOutpostCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOutpostCommandOutput) => void): void;
|
|
119
90
|
/**
|
|
120
|
-
* @
|
|
121
|
-
* <p>Gets the instance types for the specified Outpost.</p>
|
|
91
|
+
* @see {@link GetOutpostInstanceTypesCommand}
|
|
122
92
|
*/
|
|
123
93
|
getOutpostInstanceTypes(args: GetOutpostInstanceTypesCommandInput, options?: __HttpHandlerOptions): Promise<GetOutpostInstanceTypesCommandOutput>;
|
|
124
94
|
getOutpostInstanceTypes(args: GetOutpostInstanceTypesCommandInput, cb: (err: any, data?: GetOutpostInstanceTypesCommandOutput) => void): void;
|
|
125
95
|
getOutpostInstanceTypes(args: GetOutpostInstanceTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOutpostInstanceTypesCommandOutput) => void): void;
|
|
126
96
|
/**
|
|
127
|
-
* @
|
|
128
|
-
* <p>Gets information about the specified Outpost site.</p>
|
|
97
|
+
* @see {@link GetSiteCommand}
|
|
129
98
|
*/
|
|
130
99
|
getSite(args: GetSiteCommandInput, options?: __HttpHandlerOptions): Promise<GetSiteCommandOutput>;
|
|
131
100
|
getSite(args: GetSiteCommandInput, cb: (err: any, data?: GetSiteCommandOutput) => void): void;
|
|
132
101
|
getSite(args: GetSiteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSiteCommandOutput) => void): void;
|
|
133
102
|
/**
|
|
134
|
-
* @
|
|
135
|
-
* <p> Gets the site address of the specified site. </p>
|
|
103
|
+
* @see {@link GetSiteAddressCommand}
|
|
136
104
|
*/
|
|
137
105
|
getSiteAddress(args: GetSiteAddressCommandInput, options?: __HttpHandlerOptions): Promise<GetSiteAddressCommandOutput>;
|
|
138
106
|
getSiteAddress(args: GetSiteAddressCommandInput, cb: (err: any, data?: GetSiteAddressCommandOutput) => void): void;
|
|
139
107
|
getSiteAddress(args: GetSiteAddressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSiteAddressCommandOutput) => void): void;
|
|
140
108
|
/**
|
|
141
|
-
* @
|
|
142
|
-
* <p>Lists the hardware assets for the specified Outpost.</p>
|
|
143
|
-
* <p>Use filters to return specific results. If you specify multiple filters, the results include only the resources that match
|
|
144
|
-
* all of the specified filters. For a filter where you can specify multiple values, the results include
|
|
145
|
-
* items that match any of the values that you specify for the filter.</p>
|
|
109
|
+
* @see {@link ListAssetsCommand}
|
|
146
110
|
*/
|
|
147
111
|
listAssets(args: ListAssetsCommandInput, options?: __HttpHandlerOptions): Promise<ListAssetsCommandOutput>;
|
|
148
112
|
listAssets(args: ListAssetsCommandInput, cb: (err: any, data?: ListAssetsCommandOutput) => void): void;
|
|
149
113
|
listAssets(args: ListAssetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssetsCommandOutput) => void): void;
|
|
150
114
|
/**
|
|
151
|
-
* @
|
|
152
|
-
* <p>Lists the items in the catalog.</p>
|
|
153
|
-
* <p>Use filters to return specific results. If you specify multiple filters, the results include only the resources that match
|
|
154
|
-
* all of the specified filters. For a filter where you can specify multiple values, the results include
|
|
155
|
-
* items that match any of the values that you specify for the filter.</p>
|
|
115
|
+
* @see {@link ListCatalogItemsCommand}
|
|
156
116
|
*/
|
|
157
117
|
listCatalogItems(args: ListCatalogItemsCommandInput, options?: __HttpHandlerOptions): Promise<ListCatalogItemsCommandOutput>;
|
|
158
118
|
listCatalogItems(args: ListCatalogItemsCommandInput, cb: (err: any, data?: ListCatalogItemsCommandOutput) => void): void;
|
|
159
119
|
listCatalogItems(args: ListCatalogItemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCatalogItemsCommandOutput) => void): void;
|
|
160
120
|
/**
|
|
161
|
-
* @
|
|
162
|
-
* <p>Lists the Outpost orders for your Amazon Web Services account.</p>
|
|
121
|
+
* @see {@link ListOrdersCommand}
|
|
163
122
|
*/
|
|
164
123
|
listOrders(args: ListOrdersCommandInput, options?: __HttpHandlerOptions): Promise<ListOrdersCommandOutput>;
|
|
165
124
|
listOrders(args: ListOrdersCommandInput, cb: (err: any, data?: ListOrdersCommandOutput) => void): void;
|
|
166
125
|
listOrders(args: ListOrdersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOrdersCommandOutput) => void): void;
|
|
167
126
|
/**
|
|
168
|
-
* @
|
|
169
|
-
* <p>Lists the Outposts for your Amazon Web Services account.</p>
|
|
170
|
-
* <p>Use filters to return specific results. If you specify multiple filters, the results include only the resources that match
|
|
171
|
-
* all of the specified filters. For a filter where you can specify multiple values, the results include
|
|
172
|
-
* items that match any of the values that you specify for the filter.</p>
|
|
127
|
+
* @see {@link ListOutpostsCommand}
|
|
173
128
|
*/
|
|
174
129
|
listOutposts(args: ListOutpostsCommandInput, options?: __HttpHandlerOptions): Promise<ListOutpostsCommandOutput>;
|
|
175
130
|
listOutposts(args: ListOutpostsCommandInput, cb: (err: any, data?: ListOutpostsCommandOutput) => void): void;
|
|
176
131
|
listOutposts(args: ListOutpostsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOutpostsCommandOutput) => void): void;
|
|
177
132
|
/**
|
|
178
|
-
* @
|
|
179
|
-
* <p>Lists the Outpost sites for your Amazon Web Services account. Use filters to return specific
|
|
180
|
-
* results.</p>
|
|
181
|
-
* <p>Use filters to return specific results. If you specify multiple filters, the results include only the resources that match
|
|
182
|
-
* all of the specified filters. For a filter where you can specify multiple values, the results include
|
|
183
|
-
* items that match any of the values that you specify for the filter.</p>
|
|
133
|
+
* @see {@link ListSitesCommand}
|
|
184
134
|
*/
|
|
185
135
|
listSites(args: ListSitesCommandInput, options?: __HttpHandlerOptions): Promise<ListSitesCommandOutput>;
|
|
186
136
|
listSites(args: ListSitesCommandInput, cb: (err: any, data?: ListSitesCommandOutput) => void): void;
|
|
187
137
|
listSites(args: ListSitesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSitesCommandOutput) => void): void;
|
|
188
138
|
/**
|
|
189
|
-
* @
|
|
190
|
-
* <p>Lists the tags for the specified resource.</p>
|
|
139
|
+
* @see {@link ListTagsForResourceCommand}
|
|
191
140
|
*/
|
|
192
141
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
193
142
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
194
143
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
195
144
|
/**
|
|
196
|
-
* @
|
|
197
|
-
* <note>
|
|
198
|
-
* <p>
|
|
199
|
-
* Amazon Web Services uses this action to install Outpost servers.</p>
|
|
200
|
-
* </note>
|
|
201
|
-
* <p> Starts the connection required for Outpost server installation. </p>
|
|
202
|
-
* <p>
|
|
203
|
-
* Use CloudTrail to monitor this action or Amazon Web Services managed policy for Amazon Web Services Outposts to secure it. For
|
|
204
|
-
* more information, see <a href="https://docs.aws.amazon.com/outposts/latest/userguide/security-iam-awsmanpol.html">
|
|
205
|
-
* Amazon Web Services managed policies for Amazon Web Services Outposts</a> and <a href="https://docs.aws.amazon.com/outposts/latest/userguide/logging-using-cloudtrail.html">
|
|
206
|
-
* Logging Amazon Web Services Outposts API calls with Amazon Web Services CloudTrail</a> in the <i>Amazon Web Services Outposts User Guide</i>.
|
|
207
|
-
* </p>
|
|
145
|
+
* @see {@link StartConnectionCommand}
|
|
208
146
|
*/
|
|
209
147
|
startConnection(args: StartConnectionCommandInput, options?: __HttpHandlerOptions): Promise<StartConnectionCommandOutput>;
|
|
210
148
|
startConnection(args: StartConnectionCommandInput, cb: (err: any, data?: StartConnectionCommandOutput) => void): void;
|
|
211
149
|
startConnection(args: StartConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartConnectionCommandOutput) => void): void;
|
|
212
150
|
/**
|
|
213
|
-
* @
|
|
214
|
-
* <p>Adds tags to the specified resource.</p>
|
|
151
|
+
* @see {@link TagResourceCommand}
|
|
215
152
|
*/
|
|
216
153
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
217
154
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
218
155
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
219
156
|
/**
|
|
220
|
-
* @
|
|
221
|
-
* <p>Removes tags from the specified resource.</p>
|
|
157
|
+
* @see {@link UntagResourceCommand}
|
|
222
158
|
*/
|
|
223
159
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
224
160
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
225
161
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
226
162
|
/**
|
|
227
|
-
* @
|
|
228
|
-
* <p> Updates an Outpost. </p>
|
|
163
|
+
* @see {@link UpdateOutpostCommand}
|
|
229
164
|
*/
|
|
230
165
|
updateOutpost(args: UpdateOutpostCommandInput, options?: __HttpHandlerOptions): Promise<UpdateOutpostCommandOutput>;
|
|
231
166
|
updateOutpost(args: UpdateOutpostCommandInput, cb: (err: any, data?: UpdateOutpostCommandOutput) => void): void;
|
|
232
167
|
updateOutpost(args: UpdateOutpostCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateOutpostCommandOutput) => void): void;
|
|
233
168
|
/**
|
|
234
|
-
* @
|
|
235
|
-
* <p>Updates the specified site.</p>
|
|
169
|
+
* @see {@link UpdateSiteCommand}
|
|
236
170
|
*/
|
|
237
171
|
updateSite(args: UpdateSiteCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSiteCommandOutput>;
|
|
238
172
|
updateSite(args: UpdateSiteCommandInput, cb: (err: any, data?: UpdateSiteCommandOutput) => void): void;
|
|
239
173
|
updateSite(args: UpdateSiteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSiteCommandOutput) => void): void;
|
|
240
174
|
/**
|
|
241
|
-
* @
|
|
242
|
-
* <p>Updates the address of the specified site.</p>
|
|
243
|
-
* <p>You can't update a site address if there is an order in progress. You must wait for the
|
|
244
|
-
* order to complete or cancel the order.</p>
|
|
245
|
-
* <p>You can update the operating address before you place an order at the site, or after all
|
|
246
|
-
* Outposts that belong to the site have been deactivated.</p>
|
|
175
|
+
* @see {@link UpdateSiteAddressCommand}
|
|
247
176
|
*/
|
|
248
177
|
updateSiteAddress(args: UpdateSiteAddressCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSiteAddressCommandOutput>;
|
|
249
178
|
updateSiteAddress(args: UpdateSiteAddressCommandInput, cb: (err: any, data?: UpdateSiteAddressCommandOutput) => void): void;
|
|
250
179
|
updateSiteAddress(args: UpdateSiteAddressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSiteAddressCommandOutput) => void): void;
|
|
251
180
|
/**
|
|
252
|
-
* @
|
|
253
|
-
* <p>Update the physical and logistical details for a rack at a site. For more information
|
|
254
|
-
* about hardware requirements for racks, see <a href="https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#checklist">Network
|
|
255
|
-
* readiness checklist</a> in the Amazon Web Services Outposts User Guide.
|
|
256
|
-
* </p>
|
|
257
|
-
* <p>To update a rack at a site with an order of <code>IN_PROGRESS</code>, you must wait for
|
|
258
|
-
* the order to complete or cancel the order.</p>
|
|
181
|
+
* @see {@link UpdateSiteRackPhysicalPropertiesCommand}
|
|
259
182
|
*/
|
|
260
183
|
updateSiteRackPhysicalProperties(args: UpdateSiteRackPhysicalPropertiesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSiteRackPhysicalPropertiesCommandOutput>;
|
|
261
184
|
updateSiteRackPhysicalProperties(args: UpdateSiteRackPhysicalPropertiesCommandInput, cb: (err: any, data?: UpdateSiteRackPhysicalPropertiesCommandOutput) => void): void;
|
|
262
185
|
updateSiteRackPhysicalProperties(args: UpdateSiteRackPhysicalPropertiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSiteRackPhysicalPropertiesCommandOutput) => void): void;
|
|
263
186
|
}
|
|
187
|
+
/**
|
|
188
|
+
* @public
|
|
189
|
+
* <p>Amazon Web Services Outposts is a fully managed service that extends Amazon Web Services infrastructure, APIs, and tools to
|
|
190
|
+
* customer premises. By providing local access to Amazon Web Services managed infrastructure, Amazon Web Services Outposts enables
|
|
191
|
+
* customers to build and run applications on premises using the same programming interfaces as
|
|
192
|
+
* in Amazon Web Services Regions, while using local compute and storage resources for lower latency and local
|
|
193
|
+
* data processing needs.</p>
|
|
194
|
+
*/
|
|
195
|
+
export declare class Outposts extends OutpostsClient implements Outposts {
|
|
196
|
+
}
|
|
@@ -104,7 +104,7 @@ import {
|
|
|
104
104
|
UpdateSiteRackPhysicalPropertiesCommandOutput,
|
|
105
105
|
} from "./commands/UpdateSiteRackPhysicalPropertiesCommand";
|
|
106
106
|
import { OutpostsClient } from "./OutpostsClient";
|
|
107
|
-
export
|
|
107
|
+
export interface Outposts {
|
|
108
108
|
cancelOrder(
|
|
109
109
|
args: CancelOrderCommandInput,
|
|
110
110
|
options?: __HttpHandlerOptions
|
|
@@ -444,3 +444,4 @@ export declare class Outposts extends OutpostsClient {
|
|
|
444
444
|
cb: (err: any, data?: UpdateSiteRackPhysicalPropertiesCommandOutput) => void
|
|
445
445
|
): void;
|
|
446
446
|
}
|
|
447
|
+
export declare class Outposts extends OutpostsClient implements Outposts {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-outposts",
|
|
3
3
|
"description": "AWS SDK for JavaScript Outposts Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.316.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|