@aws-sdk/client-outposts 3.413.0 → 3.416.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/dist-cjs/runtimeExtensions.js +3 -0
- package/dist-es/runtimeExtensions.js +3 -0
- package/dist-types/Outposts.d.ts +5 -5
- package/dist-types/OutpostsClient.d.ts +5 -5
- package/dist-types/commands/CreateSiteCommand.d.ts +1 -3
- package/dist-types/commands/GetConnectionCommand.d.ts +1 -3
- package/dist-types/commands/GetSiteAddressCommand.d.ts +1 -3
- package/dist-types/commands/ListAssetsCommand.d.ts +3 -0
- package/dist-types/commands/ListSitesCommand.d.ts +2 -1
- package/dist-types/commands/StartConnectionCommand.d.ts +1 -3
- package/dist-types/commands/UpdateOutpostCommand.d.ts +1 -3
- package/dist-types/commands/UpdateSiteAddressCommand.d.ts +4 -4
- package/dist-types/extensionConfiguration.d.ts +2 -1
- package/dist-types/index.d.ts +5 -5
- package/dist-types/models/models_0.d.ts +119 -286
- package/dist-types/ts3.4/extensionConfiguration.d.ts +3 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -6,11 +6,11 @@
|
|
|
6
6
|
|
|
7
7
|
AWS SDK for JavaScript Outposts Client for Node.js, Browser and React Native.
|
|
8
8
|
|
|
9
|
-
<p>Amazon Web Services Outposts is a fully managed service that extends Amazon Web Services infrastructure, APIs, and tools
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
9
|
+
<p>Amazon Web Services Outposts is a fully managed service that extends Amazon Web Services infrastructure, APIs, and tools to
|
|
10
|
+
customer premises. By providing local access to Amazon Web Services managed infrastructure, Amazon Web Services Outposts enables
|
|
11
|
+
customers to build and run applications on premises using the same programming interfaces as
|
|
12
|
+
in Amazon Web Services Regions, while using local compute and storage resources for lower latency and local
|
|
13
|
+
data processing needs.</p>
|
|
14
14
|
|
|
15
15
|
## Installing
|
|
16
16
|
|
|
@@ -1,17 +1,20 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.resolveRuntimeExtensions = void 0;
|
|
4
|
+
const region_config_resolver_1 = require("@aws-sdk/region-config-resolver");
|
|
4
5
|
const protocol_http_1 = require("@smithy/protocol-http");
|
|
5
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
6
7
|
const asPartial = (t) => t;
|
|
7
8
|
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
8
9
|
const extensionConfiguration = {
|
|
10
|
+
...asPartial((0, region_config_resolver_1.getAwsRegionExtensionConfiguration)(runtimeConfig)),
|
|
9
11
|
...asPartial((0, smithy_client_1.getDefaultExtensionConfiguration)(runtimeConfig)),
|
|
10
12
|
...asPartial((0, protocol_http_1.getHttpHandlerExtensionConfiguration)(runtimeConfig)),
|
|
11
13
|
};
|
|
12
14
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
13
15
|
return {
|
|
14
16
|
...runtimeConfig,
|
|
17
|
+
...(0, region_config_resolver_1.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
|
|
15
18
|
...(0, smithy_client_1.resolveDefaultRuntimeConfig)(extensionConfiguration),
|
|
16
19
|
...(0, protocol_http_1.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
|
|
17
20
|
};
|
|
@@ -1,14 +1,17 @@
|
|
|
1
|
+
import { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, } from "@aws-sdk/region-config-resolver";
|
|
1
2
|
import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } from "@smithy/protocol-http";
|
|
2
3
|
import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client";
|
|
3
4
|
const asPartial = (t) => t;
|
|
4
5
|
export const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
5
6
|
const extensionConfiguration = {
|
|
7
|
+
...asPartial(getAwsRegionExtensionConfiguration(runtimeConfig)),
|
|
6
8
|
...asPartial(getDefaultExtensionConfiguration(runtimeConfig)),
|
|
7
9
|
...asPartial(getHttpHandlerExtensionConfiguration(runtimeConfig)),
|
|
8
10
|
};
|
|
9
11
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
10
12
|
return {
|
|
11
13
|
...runtimeConfig,
|
|
14
|
+
...resolveAwsRegionExtensionConfiguration(extensionConfiguration),
|
|
12
15
|
...resolveDefaultRuntimeConfig(extensionConfiguration),
|
|
13
16
|
...resolveHttpHandlerRuntimeConfig(extensionConfiguration),
|
|
14
17
|
};
|
package/dist-types/Outposts.d.ts
CHANGED
|
@@ -186,11 +186,11 @@ export interface Outposts {
|
|
|
186
186
|
}
|
|
187
187
|
/**
|
|
188
188
|
* @public
|
|
189
|
-
* <p>Amazon Web Services Outposts is a fully managed service that extends Amazon Web Services infrastructure, APIs, and tools
|
|
190
|
-
*
|
|
191
|
-
*
|
|
192
|
-
*
|
|
193
|
-
*
|
|
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
194
|
*/
|
|
195
195
|
export declare class Outposts extends OutpostsClient implements Outposts {
|
|
196
196
|
}
|
|
@@ -176,11 +176,11 @@ export interface OutpostsClientResolvedConfig extends OutpostsClientResolvedConf
|
|
|
176
176
|
}
|
|
177
177
|
/**
|
|
178
178
|
* @public
|
|
179
|
-
* <p>Amazon Web Services Outposts is a fully managed service that extends Amazon Web Services infrastructure, APIs, and tools
|
|
180
|
-
*
|
|
181
|
-
*
|
|
182
|
-
*
|
|
183
|
-
*
|
|
179
|
+
* <p>Amazon Web Services Outposts is a fully managed service that extends Amazon Web Services infrastructure, APIs, and tools to
|
|
180
|
+
* customer premises. By providing local access to Amazon Web Services managed infrastructure, Amazon Web Services Outposts enables
|
|
181
|
+
* customers to build and run applications on premises using the same programming interfaces as
|
|
182
|
+
* in Amazon Web Services Regions, while using local compute and storage resources for lower latency and local
|
|
183
|
+
* data processing needs.</p>
|
|
184
184
|
*/
|
|
185
185
|
export declare class OutpostsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, OutpostsClientResolvedConfig> {
|
|
186
186
|
/**
|
|
@@ -23,9 +23,7 @@ export interface CreateSiteCommandOutput extends CreateSiteOutput, __MetadataBea
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>
|
|
27
|
-
* Creates a site for an Outpost.
|
|
28
|
-
* </p>
|
|
26
|
+
* <p> Creates a site for an Outpost. </p>
|
|
29
27
|
* @example
|
|
30
28
|
* Use a bare-bones client and the command you need to make an API call.
|
|
31
29
|
* ```javascript
|
|
@@ -27,9 +27,7 @@ export interface GetConnectionCommandOutput extends GetConnectionResponse, __Met
|
|
|
27
27
|
* <p>
|
|
28
28
|
* Amazon Web Services uses this action to install Outpost servers.</p>
|
|
29
29
|
* </note>
|
|
30
|
-
* <p>
|
|
31
|
-
* Gets information about the specified connection.
|
|
32
|
-
* </p>
|
|
30
|
+
* <p> Gets information about the specified connection. </p>
|
|
33
31
|
* <p>
|
|
34
32
|
* Use CloudTrail to monitor this action or Amazon Web Services managed policy for Amazon Web Services Outposts to secure it. For
|
|
35
33
|
* more information, see <a href="https://docs.aws.amazon.com/outposts/latest/userguide/security-iam-awsmanpol.html">
|
|
@@ -23,9 +23,7 @@ export interface GetSiteAddressCommandOutput extends GetSiteAddressOutput, __Met
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>
|
|
27
|
-
* Gets the site address of the specified site.
|
|
28
|
-
* </p>
|
|
26
|
+
* <p> Gets the site address of the specified site. </p>
|
|
29
27
|
* @example
|
|
30
28
|
* Use a bare-bones client and the command you need to make an API call.
|
|
31
29
|
* ```javascript
|
|
@@ -55,6 +55,9 @@ export interface ListAssetsCommandOutput extends ListAssetsOutput, __MetadataBea
|
|
|
55
55
|
* // ComputeAttributes: { // ComputeAttributes
|
|
56
56
|
* // HostId: "STRING_VALUE",
|
|
57
57
|
* // State: "ACTIVE" || "ISOLATED" || "RETIRING",
|
|
58
|
+
* // InstanceFamilies: [ // InstanceFamilies
|
|
59
|
+
* // "STRING_VALUE",
|
|
60
|
+
* // ],
|
|
58
61
|
* // },
|
|
59
62
|
* // AssetLocation: { // AssetLocation
|
|
60
63
|
* // RackElevation: Number("float"),
|
|
@@ -23,7 +23,8 @@ export interface ListSitesCommandOutput extends ListSitesOutput, __MetadataBeare
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>Lists the Outpost sites for your Amazon Web Services account. Use filters to return specific
|
|
26
|
+
* <p>Lists the Outpost sites for your Amazon Web Services account. Use filters to return specific
|
|
27
|
+
* results.</p>
|
|
27
28
|
* <p>Use filters to return specific results. If you specify multiple filters, the results include only the resources that match
|
|
28
29
|
* all of the specified filters. For a filter where you can specify multiple values, the results include
|
|
29
30
|
* items that match any of the values that you specify for the filter.</p>
|
|
@@ -27,9 +27,7 @@ export interface StartConnectionCommandOutput extends StartConnectionResponse, _
|
|
|
27
27
|
* <p>
|
|
28
28
|
* Amazon Web Services uses this action to install Outpost servers.</p>
|
|
29
29
|
* </note>
|
|
30
|
-
* <p>
|
|
31
|
-
* Starts the connection required for Outpost server installation.
|
|
32
|
-
* </p>
|
|
30
|
+
* <p> Starts the connection required for Outpost server installation. </p>
|
|
33
31
|
* <p>
|
|
34
32
|
* Use CloudTrail to monitor this action or Amazon Web Services managed policy for Amazon Web Services Outposts to secure it. For
|
|
35
33
|
* more information, see <a href="https://docs.aws.amazon.com/outposts/latest/userguide/security-iam-awsmanpol.html">
|
|
@@ -23,9 +23,7 @@ export interface UpdateOutpostCommandOutput extends UpdateOutpostOutput, __Metad
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>
|
|
27
|
-
* Updates an Outpost.
|
|
28
|
-
* </p>
|
|
26
|
+
* <p> Updates an Outpost. </p>
|
|
29
27
|
* @example
|
|
30
28
|
* Use a bare-bones client and the command you need to make an API call.
|
|
31
29
|
* ```javascript
|
|
@@ -24,10 +24,10 @@ export interface UpdateSiteAddressCommandOutput extends UpdateSiteAddressOutput,
|
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
26
|
* <p>Updates the address of the specified site.</p>
|
|
27
|
-
* <p>You can't update a site address if there is an order in progress. You must wait for the
|
|
28
|
-
* to complete or cancel the order.</p>
|
|
29
|
-
* <p>You can update the operating address before you place an order at the
|
|
30
|
-
*
|
|
27
|
+
* <p>You can't update a site address if there is an order in progress. You must wait for the
|
|
28
|
+
* order to complete or cancel the order.</p>
|
|
29
|
+
* <p>You can update the operating address before you place an order at the site, or after all
|
|
30
|
+
* Outposts that belong to the site have been deactivated.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
1
2
|
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
|
2
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
3
4
|
/**
|
|
4
5
|
* @internal
|
|
5
6
|
*/
|
|
6
|
-
export interface OutpostsExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration {
|
|
7
|
+
export interface OutpostsExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration, AwsRegionExtensionConfiguration {
|
|
7
8
|
}
|
package/dist-types/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* <p>Amazon Web Services Outposts is a fully managed service that extends Amazon Web Services infrastructure, APIs, and tools
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
*
|
|
2
|
+
* <p>Amazon Web Services Outposts is a fully managed service that extends Amazon Web Services infrastructure, APIs, and tools to
|
|
3
|
+
* customer premises. By providing local access to Amazon Web Services managed infrastructure, Amazon Web Services Outposts enables
|
|
4
|
+
* customers to build and run applications on premises using the same programming interfaces as
|
|
5
|
+
* in Amazon Web Services Regions, while using local compute and storage resources for lower latency and local
|
|
6
|
+
* data processing needs.</p>
|
|
7
7
|
*
|
|
8
8
|
* @packageDocumentation
|
|
9
9
|
*/
|
|
@@ -15,9 +15,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
17
|
* @public
|
|
18
|
-
* <p>
|
|
19
|
-
* Information about an address.
|
|
20
|
-
* </p>
|
|
18
|
+
* <p> Information about an address. </p>
|
|
21
19
|
*/
|
|
22
20
|
export interface Address {
|
|
23
21
|
/**
|
|
@@ -90,16 +88,12 @@ export declare const AddressType: {
|
|
|
90
88
|
export type AddressType = (typeof AddressType)[keyof typeof AddressType];
|
|
91
89
|
/**
|
|
92
90
|
* @public
|
|
93
|
-
* <p>
|
|
94
|
-
* Information about the position of the asset in a rack.
|
|
95
|
-
* </p>
|
|
91
|
+
* <p> Information about the position of the asset in a rack. </p>
|
|
96
92
|
*/
|
|
97
93
|
export interface AssetLocation {
|
|
98
94
|
/**
|
|
99
95
|
* @public
|
|
100
|
-
* <p>
|
|
101
|
-
* The position of an asset in a rack measured in rack units.
|
|
102
|
-
* </p>
|
|
96
|
+
* <p> The position of an asset in a rack measured in rack units. </p>
|
|
103
97
|
*/
|
|
104
98
|
RackElevation?: number;
|
|
105
99
|
}
|
|
@@ -129,16 +123,12 @@ export declare const ComputeAssetState: {
|
|
|
129
123
|
export type ComputeAssetState = (typeof ComputeAssetState)[keyof typeof ComputeAssetState];
|
|
130
124
|
/**
|
|
131
125
|
* @public
|
|
132
|
-
* <p>
|
|
133
|
-
* Information about compute hardware assets.
|
|
134
|
-
* </p>
|
|
126
|
+
* <p> Information about compute hardware assets. </p>
|
|
135
127
|
*/
|
|
136
128
|
export interface ComputeAttributes {
|
|
137
129
|
/**
|
|
138
130
|
* @public
|
|
139
|
-
* <p>
|
|
140
|
-
* The host ID of the Dedicated Host on the asset.
|
|
141
|
-
* </p>
|
|
131
|
+
* <p> The host ID of the Dedicated Host on the asset. </p>
|
|
142
132
|
*/
|
|
143
133
|
HostId?: string;
|
|
144
134
|
/**
|
|
@@ -146,60 +136,56 @@ export interface ComputeAttributes {
|
|
|
146
136
|
* <p>The state.</p>
|
|
147
137
|
* <ul>
|
|
148
138
|
* <li>
|
|
149
|
-
* <p>ACTIVE - The asset is available and can provide capacity for new compute
|
|
139
|
+
* <p>ACTIVE - The asset is available and can provide capacity for new compute
|
|
140
|
+
* resources.</p>
|
|
150
141
|
* </li>
|
|
151
142
|
* <li>
|
|
152
|
-
* <p>ISOLATED - The asset is undergoing maintenance and can't provide capacity for new
|
|
153
|
-
*
|
|
143
|
+
* <p>ISOLATED - The asset is undergoing maintenance and can't provide capacity for new
|
|
144
|
+
* compute resources. Existing compute resources on the asset are not affected.</p>
|
|
154
145
|
* </li>
|
|
155
146
|
* <li>
|
|
156
|
-
* <p>RETIRING - The underlying hardware for the asset is degraded. Capacity for new compute
|
|
157
|
-
*
|
|
147
|
+
* <p>RETIRING - The underlying hardware for the asset is degraded. Capacity for new compute
|
|
148
|
+
* resources is reduced. Amazon Web Services sends notifications for resources that must be stopped before
|
|
149
|
+
* the asset can be replaced.</p>
|
|
158
150
|
* </li>
|
|
159
151
|
* </ul>
|
|
160
152
|
*/
|
|
161
153
|
State?: ComputeAssetState | string;
|
|
154
|
+
/**
|
|
155
|
+
* @public
|
|
156
|
+
* <p>A list of the names of instance families that are currently associated with a given
|
|
157
|
+
* asset.</p>
|
|
158
|
+
*/
|
|
159
|
+
InstanceFamilies?: string[];
|
|
162
160
|
}
|
|
163
161
|
/**
|
|
164
162
|
* @public
|
|
165
|
-
* <p>
|
|
166
|
-
* Information about hardware assets.
|
|
167
|
-
* </p>
|
|
163
|
+
* <p> Information about hardware assets. </p>
|
|
168
164
|
*/
|
|
169
165
|
export interface AssetInfo {
|
|
170
166
|
/**
|
|
171
167
|
* @public
|
|
172
|
-
* <p>
|
|
173
|
-
* The ID of the asset.
|
|
174
|
-
* </p>
|
|
168
|
+
* <p> The ID of the asset. </p>
|
|
175
169
|
*/
|
|
176
170
|
AssetId?: string;
|
|
177
171
|
/**
|
|
178
172
|
* @public
|
|
179
|
-
* <p>
|
|
180
|
-
* The rack ID of the asset.
|
|
181
|
-
* </p>
|
|
173
|
+
* <p> The rack ID of the asset. </p>
|
|
182
174
|
*/
|
|
183
175
|
RackId?: string;
|
|
184
176
|
/**
|
|
185
177
|
* @public
|
|
186
|
-
* <p>
|
|
187
|
-
* The type of the asset.
|
|
188
|
-
* </p>
|
|
178
|
+
* <p> The type of the asset. </p>
|
|
189
179
|
*/
|
|
190
180
|
AssetType?: AssetType | string;
|
|
191
181
|
/**
|
|
192
182
|
* @public
|
|
193
|
-
* <p>
|
|
194
|
-
* Information about compute hardware assets.
|
|
195
|
-
* </p>
|
|
183
|
+
* <p> Information about compute hardware assets. </p>
|
|
196
184
|
*/
|
|
197
185
|
ComputeAttributes?: ComputeAttributes;
|
|
198
186
|
/**
|
|
199
187
|
* @public
|
|
200
|
-
* <p>
|
|
201
|
-
* The position of an asset in a rack.
|
|
202
|
-
* </p>
|
|
188
|
+
* <p> The position of an asset in a rack. </p>
|
|
203
189
|
*/
|
|
204
190
|
AssetLocation?: AssetLocation;
|
|
205
191
|
}
|
|
@@ -222,9 +208,7 @@ export type AssetState = (typeof AssetState)[keyof typeof AssetState];
|
|
|
222
208
|
export interface CancelOrderInput {
|
|
223
209
|
/**
|
|
224
210
|
* @public
|
|
225
|
-
* <p>
|
|
226
|
-
* The ID of the order.
|
|
227
|
-
* </p>
|
|
211
|
+
* <p> The ID of the order. </p>
|
|
228
212
|
*/
|
|
229
213
|
OrderId: string | undefined;
|
|
230
214
|
}
|
|
@@ -314,23 +298,17 @@ export declare class ValidationException extends __BaseException {
|
|
|
314
298
|
export interface EC2Capacity {
|
|
315
299
|
/**
|
|
316
300
|
* @public
|
|
317
|
-
* <p>
|
|
318
|
-
* The family of the EC2 capacity.
|
|
319
|
-
* </p>
|
|
301
|
+
* <p> The family of the EC2 capacity. </p>
|
|
320
302
|
*/
|
|
321
303
|
Family?: string;
|
|
322
304
|
/**
|
|
323
305
|
* @public
|
|
324
|
-
* <p>
|
|
325
|
-
* The maximum size of the EC2 capacity.
|
|
326
|
-
* </p>
|
|
306
|
+
* <p> The maximum size of the EC2 capacity. </p>
|
|
327
307
|
*/
|
|
328
308
|
MaxSize?: string;
|
|
329
309
|
/**
|
|
330
310
|
* @public
|
|
331
|
-
* <p>
|
|
332
|
-
* The quantity of the EC2 capacity.
|
|
333
|
-
* </p>
|
|
311
|
+
* <p> The quantity of the EC2 capacity. </p>
|
|
334
312
|
*/
|
|
335
313
|
Quantity?: string;
|
|
336
314
|
}
|
|
@@ -365,30 +343,22 @@ export type SupportedStorageEnum = (typeof SupportedStorageEnum)[keyof typeof Su
|
|
|
365
343
|
export interface CatalogItem {
|
|
366
344
|
/**
|
|
367
345
|
* @public
|
|
368
|
-
* <p>
|
|
369
|
-
* The ID of the catalog item.
|
|
370
|
-
* </p>
|
|
346
|
+
* <p> The ID of the catalog item. </p>
|
|
371
347
|
*/
|
|
372
348
|
CatalogItemId?: string;
|
|
373
349
|
/**
|
|
374
350
|
* @public
|
|
375
|
-
* <p>
|
|
376
|
-
* The status of a catalog item.
|
|
377
|
-
* </p>
|
|
351
|
+
* <p> The status of a catalog item. </p>
|
|
378
352
|
*/
|
|
379
353
|
ItemStatus?: CatalogItemStatus | string;
|
|
380
354
|
/**
|
|
381
355
|
* @public
|
|
382
|
-
* <p>
|
|
383
|
-
* Information about the EC2 capacity of an item.
|
|
384
|
-
* </p>
|
|
356
|
+
* <p> Information about the EC2 capacity of an item. </p>
|
|
385
357
|
*/
|
|
386
358
|
EC2Capacities?: EC2Capacity[];
|
|
387
359
|
/**
|
|
388
360
|
* @public
|
|
389
|
-
* <p>
|
|
390
|
-
* Information about the power draw of an item.
|
|
391
|
-
* </p>
|
|
361
|
+
* <p> Information about the power draw of an item. </p>
|
|
392
362
|
*/
|
|
393
363
|
PowerKva?: number;
|
|
394
364
|
/**
|
|
@@ -398,17 +368,12 @@ export interface CatalogItem {
|
|
|
398
368
|
WeightLbs?: number;
|
|
399
369
|
/**
|
|
400
370
|
* @public
|
|
401
|
-
* <p>
|
|
402
|
-
* The uplink speed this catalog item requires for the
|
|
403
|
-
* connection to the Region.
|
|
404
|
-
* </p>
|
|
371
|
+
* <p> The uplink speed this catalog item requires for the connection to the Region. </p>
|
|
405
372
|
*/
|
|
406
373
|
SupportedUplinkGbps?: number[];
|
|
407
374
|
/**
|
|
408
375
|
* @public
|
|
409
|
-
* <p>
|
|
410
|
-
* The supported storage options for the catalog item.
|
|
411
|
-
* </p>
|
|
376
|
+
* <p> The supported storage options for the catalog item. </p>
|
|
412
377
|
*/
|
|
413
378
|
SupportedStorage?: (SupportedStorageEnum | string)[];
|
|
414
379
|
}
|
|
@@ -426,51 +391,37 @@ export declare const CatalogItemClass: {
|
|
|
426
391
|
export type CatalogItemClass = (typeof CatalogItemClass)[keyof typeof CatalogItemClass];
|
|
427
392
|
/**
|
|
428
393
|
* @public
|
|
429
|
-
* <p>
|
|
430
|
-
* Information about a connection.
|
|
431
|
-
* </p>
|
|
394
|
+
* <p> Information about a connection. </p>
|
|
432
395
|
*/
|
|
433
396
|
export interface ConnectionDetails {
|
|
434
397
|
/**
|
|
435
398
|
* @public
|
|
436
|
-
* <p>
|
|
437
|
-
* The public key of the client.
|
|
438
|
-
* </p>
|
|
399
|
+
* <p> The public key of the client. </p>
|
|
439
400
|
*/
|
|
440
401
|
ClientPublicKey?: string;
|
|
441
402
|
/**
|
|
442
403
|
* @public
|
|
443
|
-
* <p>
|
|
444
|
-
* The public key of the server.
|
|
445
|
-
* </p>
|
|
404
|
+
* <p> The public key of the server. </p>
|
|
446
405
|
*/
|
|
447
406
|
ServerPublicKey?: string;
|
|
448
407
|
/**
|
|
449
408
|
* @public
|
|
450
|
-
* <p>
|
|
451
|
-
* The endpoint for the server.
|
|
452
|
-
* </p>
|
|
409
|
+
* <p> The endpoint for the server. </p>
|
|
453
410
|
*/
|
|
454
411
|
ServerEndpoint?: string;
|
|
455
412
|
/**
|
|
456
413
|
* @public
|
|
457
|
-
* <p>
|
|
458
|
-
* The client tunnel address.
|
|
459
|
-
* </p>
|
|
414
|
+
* <p> The client tunnel address. </p>
|
|
460
415
|
*/
|
|
461
416
|
ClientTunnelAddress?: string;
|
|
462
417
|
/**
|
|
463
418
|
* @public
|
|
464
|
-
* <p>
|
|
465
|
-
* The server tunnel address.
|
|
466
|
-
* </p>
|
|
419
|
+
* <p> The server tunnel address. </p>
|
|
467
420
|
*/
|
|
468
421
|
ServerTunnelAddress?: string;
|
|
469
422
|
/**
|
|
470
423
|
* @public
|
|
471
|
-
* <p>
|
|
472
|
-
* The allowed IP addresses.
|
|
473
|
-
* </p>
|
|
424
|
+
* <p> The allowed IP addresses. </p>
|
|
474
425
|
*/
|
|
475
426
|
AllowedIps?: string[];
|
|
476
427
|
}
|
|
@@ -521,9 +472,7 @@ export type PaymentTerm = (typeof PaymentTerm)[keyof typeof PaymentTerm];
|
|
|
521
472
|
export interface CreateOrderInput {
|
|
522
473
|
/**
|
|
523
474
|
* @public
|
|
524
|
-
* <p>
|
|
525
|
-
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
526
|
-
* </p>
|
|
475
|
+
* <p> The ID or the Amazon Resource Name (ARN) of the Outpost. </p>
|
|
527
476
|
*/
|
|
528
477
|
OutpostIdentifier: string | undefined;
|
|
529
478
|
/**
|
|
@@ -544,23 +493,17 @@ export interface CreateOrderInput {
|
|
|
544
493
|
}
|
|
545
494
|
/**
|
|
546
495
|
* @public
|
|
547
|
-
* <p>
|
|
548
|
-
* Information about a line item asset.
|
|
549
|
-
* </p>
|
|
496
|
+
* <p> Information about a line item asset. </p>
|
|
550
497
|
*/
|
|
551
498
|
export interface LineItemAssetInformation {
|
|
552
499
|
/**
|
|
553
500
|
* @public
|
|
554
|
-
* <p>
|
|
555
|
-
* The ID of the asset.
|
|
556
|
-
* </p>
|
|
501
|
+
* <p> The ID of the asset. </p>
|
|
557
502
|
*/
|
|
558
503
|
AssetId?: string;
|
|
559
504
|
/**
|
|
560
505
|
* @public
|
|
561
|
-
* <p>
|
|
562
|
-
* The MAC addresses of the asset.
|
|
563
|
-
* </p>
|
|
506
|
+
* <p> The MAC addresses of the asset. </p>
|
|
564
507
|
*/
|
|
565
508
|
MacAddressList?: string[];
|
|
566
509
|
}
|
|
@@ -580,23 +523,17 @@ export declare const ShipmentCarrier: {
|
|
|
580
523
|
export type ShipmentCarrier = (typeof ShipmentCarrier)[keyof typeof ShipmentCarrier];
|
|
581
524
|
/**
|
|
582
525
|
* @public
|
|
583
|
-
* <p>
|
|
584
|
-
* Information about a line item shipment.
|
|
585
|
-
* </p>
|
|
526
|
+
* <p> Information about a line item shipment. </p>
|
|
586
527
|
*/
|
|
587
528
|
export interface ShipmentInformation {
|
|
588
529
|
/**
|
|
589
530
|
* @public
|
|
590
|
-
* <p>
|
|
591
|
-
* The tracking number of the shipment.
|
|
592
|
-
* </p>
|
|
531
|
+
* <p> The tracking number of the shipment. </p>
|
|
593
532
|
*/
|
|
594
533
|
ShipmentTrackingNumber?: string;
|
|
595
534
|
/**
|
|
596
535
|
* @public
|
|
597
|
-
* <p>
|
|
598
|
-
* The carrier of the shipment.
|
|
599
|
-
* </p>
|
|
536
|
+
* <p> The carrier of the shipment. </p>
|
|
600
537
|
*/
|
|
601
538
|
ShipmentCarrier?: ShipmentCarrier | string;
|
|
602
539
|
}
|
|
@@ -626,9 +563,7 @@ export type LineItemStatus = (typeof LineItemStatus)[keyof typeof LineItemStatus
|
|
|
626
563
|
export interface LineItem {
|
|
627
564
|
/**
|
|
628
565
|
* @public
|
|
629
|
-
* <p>
|
|
630
|
-
* The ID of the catalog item.
|
|
631
|
-
* </p>
|
|
566
|
+
* <p> The ID of the catalog item.</p>
|
|
632
567
|
*/
|
|
633
568
|
CatalogItemId?: string;
|
|
634
569
|
/**
|
|
@@ -648,16 +583,12 @@ export interface LineItem {
|
|
|
648
583
|
Status?: LineItemStatus | string;
|
|
649
584
|
/**
|
|
650
585
|
* @public
|
|
651
|
-
* <p>
|
|
652
|
-
* Information about a line item shipment.
|
|
653
|
-
* </p>
|
|
586
|
+
* <p> Information about a line item shipment. </p>
|
|
654
587
|
*/
|
|
655
588
|
ShipmentInformation?: ShipmentInformation;
|
|
656
589
|
/**
|
|
657
590
|
* @public
|
|
658
|
-
* <p>
|
|
659
|
-
* Information about assets.
|
|
660
|
-
* </p>
|
|
591
|
+
* <p> Information about assets. </p>
|
|
661
592
|
*/
|
|
662
593
|
AssetInformationList?: LineItemAssetInformation[];
|
|
663
594
|
/**
|
|
@@ -667,7 +598,7 @@ export interface LineItem {
|
|
|
667
598
|
PreviousLineItemId?: string;
|
|
668
599
|
/**
|
|
669
600
|
* @public
|
|
670
|
-
* <p>The ID of the previous order
|
|
601
|
+
* <p>The ID of the previous order.</p>
|
|
671
602
|
*/
|
|
672
603
|
PreviousOrderId?: string;
|
|
673
604
|
}
|
|
@@ -710,9 +641,7 @@ export type OrderStatus = (typeof OrderStatus)[keyof typeof OrderStatus];
|
|
|
710
641
|
export interface Order {
|
|
711
642
|
/**
|
|
712
643
|
* @public
|
|
713
|
-
* <p>
|
|
714
|
-
* The ID of the Outpost in the order.
|
|
715
|
-
* </p>
|
|
644
|
+
* <p> The ID of the Outpost in the order. </p>
|
|
716
645
|
*/
|
|
717
646
|
OutpostId?: string;
|
|
718
647
|
/**
|
|
@@ -730,8 +659,8 @@ export interface Order {
|
|
|
730
659
|
* </li>
|
|
731
660
|
* <li>
|
|
732
661
|
* <p>
|
|
733
|
-
* <code>IN_PROGRESS</code> - Order is either being built, shipped, or installed. To get
|
|
734
|
-
* details, see the line item status.</p>
|
|
662
|
+
* <code>IN_PROGRESS</code> - Order is either being built, shipped, or installed. To get
|
|
663
|
+
* more details, see the line item status.</p>
|
|
735
664
|
* </li>
|
|
736
665
|
* <li>
|
|
737
666
|
* <p>
|
|
@@ -779,7 +708,7 @@ export interface Order {
|
|
|
779
708
|
PaymentTerm?: PaymentTerm | string;
|
|
780
709
|
/**
|
|
781
710
|
* @public
|
|
782
|
-
* <p>
|
|
711
|
+
* <p>The type of order.</p>
|
|
783
712
|
*/
|
|
784
713
|
OrderType?: OrderType | string;
|
|
785
714
|
}
|
|
@@ -834,9 +763,7 @@ export interface CreateOutpostInput {
|
|
|
834
763
|
Description?: string;
|
|
835
764
|
/**
|
|
836
765
|
* @public
|
|
837
|
-
* <p>
|
|
838
|
-
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
839
|
-
* </p>
|
|
766
|
+
* <p> The ID or the Amazon Resource Name (ARN) of the site. </p>
|
|
840
767
|
*/
|
|
841
768
|
SiteId: string | undefined;
|
|
842
769
|
/**
|
|
@@ -856,9 +783,7 @@ export interface CreateOutpostInput {
|
|
|
856
783
|
Tags?: Record<string, string>;
|
|
857
784
|
/**
|
|
858
785
|
* @public
|
|
859
|
-
* <p>
|
|
860
|
-
* The type of hardware for this Outpost.
|
|
861
|
-
* </p>
|
|
786
|
+
* <p> The type of hardware for this Outpost. </p>
|
|
862
787
|
*/
|
|
863
788
|
SupportedHardwareType?: SupportedHardwareType | string;
|
|
864
789
|
}
|
|
@@ -869,9 +794,7 @@ export interface CreateOutpostInput {
|
|
|
869
794
|
export interface Outpost {
|
|
870
795
|
/**
|
|
871
796
|
* @public
|
|
872
|
-
* <p>
|
|
873
|
-
* The ID of the Outpost.
|
|
874
|
-
* </p>
|
|
797
|
+
* <p> The ID of the Outpost. </p>
|
|
875
798
|
*/
|
|
876
799
|
OutpostId?: string;
|
|
877
800
|
/**
|
|
@@ -926,9 +849,7 @@ export interface Outpost {
|
|
|
926
849
|
SiteArn?: string;
|
|
927
850
|
/**
|
|
928
851
|
* @public
|
|
929
|
-
* <p>
|
|
930
|
-
* The hardware type.
|
|
931
|
-
* </p>
|
|
852
|
+
* <p> The hardware type. </p>
|
|
932
853
|
*/
|
|
933
854
|
SupportedHardwareType?: SupportedHardwareType | string;
|
|
934
855
|
}
|
|
@@ -1125,7 +1046,8 @@ export interface RackPhysicalProperties {
|
|
|
1125
1046
|
/**
|
|
1126
1047
|
* @public
|
|
1127
1048
|
* <p>The type of optical standard used to attach the Outpost to the network. This field is
|
|
1128
|
-
* dependent on uplink speed, fiber type, and distance to the upstream device.
|
|
1049
|
+
* dependent on uplink speed, fiber type, and distance to the upstream device.
|
|
1050
|
+
* For more information
|
|
1129
1051
|
* about networking requirements for racks, see <a href="https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#facility-networking">Network</a>
|
|
1130
1052
|
* in the Amazon Web Services Outposts User Guide.
|
|
1131
1053
|
* </p>
|
|
@@ -1161,25 +1083,19 @@ export interface CreateSiteInput {
|
|
|
1161
1083
|
Notes?: string;
|
|
1162
1084
|
/**
|
|
1163
1085
|
* @public
|
|
1164
|
-
* <p>
|
|
1165
|
-
* The tags to apply to a site.
|
|
1166
|
-
* </p>
|
|
1086
|
+
* <p> The tags to apply to a site. </p>
|
|
1167
1087
|
*/
|
|
1168
1088
|
Tags?: Record<string, string>;
|
|
1169
1089
|
/**
|
|
1170
1090
|
* @public
|
|
1171
|
-
* <p>
|
|
1172
|
-
*
|
|
1173
|
-
* different from the shipping address.
|
|
1174
|
-
* </p>
|
|
1091
|
+
* <p> The location to install and power on the hardware. This address might be different from
|
|
1092
|
+
* the shipping address. </p>
|
|
1175
1093
|
*/
|
|
1176
1094
|
OperatingAddress?: Address;
|
|
1177
1095
|
/**
|
|
1178
1096
|
* @public
|
|
1179
|
-
* <p>
|
|
1180
|
-
*
|
|
1181
|
-
* from the operating address.
|
|
1182
|
-
* </p>
|
|
1097
|
+
* <p> The location to ship the hardware. This address might be different from the operating
|
|
1098
|
+
* address. </p>
|
|
1183
1099
|
*/
|
|
1184
1100
|
ShippingAddress?: Address;
|
|
1185
1101
|
/**
|
|
@@ -1229,15 +1145,12 @@ export interface Site {
|
|
|
1229
1145
|
SiteArn?: string;
|
|
1230
1146
|
/**
|
|
1231
1147
|
* @public
|
|
1232
|
-
* <p>
|
|
1233
|
-
* Notes about a site.
|
|
1234
|
-
* </p>
|
|
1148
|
+
* <p> Notes about a site. </p>
|
|
1235
1149
|
*/
|
|
1236
1150
|
Notes?: string;
|
|
1237
1151
|
/**
|
|
1238
1152
|
* @public
|
|
1239
|
-
* <p>
|
|
1240
|
-
* The ISO-3166 two-letter country code where the hardware is installed and powered on.
|
|
1153
|
+
* <p> The ISO-3166 two-letter country code where the hardware is installed and powered on.
|
|
1241
1154
|
* </p>
|
|
1242
1155
|
*/
|
|
1243
1156
|
OperatingAddressCountryCode?: string;
|
|
@@ -1248,16 +1161,12 @@ export interface Site {
|
|
|
1248
1161
|
OperatingAddressStateOrRegion?: string;
|
|
1249
1162
|
/**
|
|
1250
1163
|
* @public
|
|
1251
|
-
* <p>
|
|
1252
|
-
* City where the hardware is installed and powered on.
|
|
1253
|
-
* </p>
|
|
1164
|
+
* <p> City where the hardware is installed and powered on. </p>
|
|
1254
1165
|
*/
|
|
1255
1166
|
OperatingAddressCity?: string;
|
|
1256
1167
|
/**
|
|
1257
1168
|
* @public
|
|
1258
|
-
* <p>
|
|
1259
|
-
* Information about the physical and logistical details for a rack at the site.
|
|
1260
|
-
* </p>
|
|
1169
|
+
* <p> Information about the physical and logistical details for a rack at the site. </p>
|
|
1261
1170
|
*/
|
|
1262
1171
|
RackPhysicalProperties?: RackPhysicalProperties;
|
|
1263
1172
|
}
|
|
@@ -1277,9 +1186,7 @@ export interface CreateSiteOutput {
|
|
|
1277
1186
|
export interface DeleteOutpostInput {
|
|
1278
1187
|
/**
|
|
1279
1188
|
* @public
|
|
1280
|
-
* <p>
|
|
1281
|
-
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
1282
|
-
* </p>
|
|
1189
|
+
* <p> The ID or the Amazon Resource Name (ARN) of the Outpost. </p>
|
|
1283
1190
|
*/
|
|
1284
1191
|
OutpostId: string | undefined;
|
|
1285
1192
|
}
|
|
@@ -1294,9 +1201,7 @@ export interface DeleteOutpostOutput {
|
|
|
1294
1201
|
export interface DeleteSiteInput {
|
|
1295
1202
|
/**
|
|
1296
1203
|
* @public
|
|
1297
|
-
* <p>
|
|
1298
|
-
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
1299
|
-
* </p>
|
|
1204
|
+
* <p> The ID or the Amazon Resource Name (ARN) of the site. </p>
|
|
1300
1205
|
*/
|
|
1301
1206
|
SiteId: string | undefined;
|
|
1302
1207
|
}
|
|
@@ -1331,9 +1236,7 @@ export interface GetCatalogItemOutput {
|
|
|
1331
1236
|
export interface GetConnectionRequest {
|
|
1332
1237
|
/**
|
|
1333
1238
|
* @public
|
|
1334
|
-
* <p>
|
|
1335
|
-
* The ID of the connection.
|
|
1336
|
-
* </p>
|
|
1239
|
+
* <p> The ID of the connection. </p>
|
|
1337
1240
|
*/
|
|
1338
1241
|
ConnectionId: string | undefined;
|
|
1339
1242
|
}
|
|
@@ -1343,16 +1246,12 @@ export interface GetConnectionRequest {
|
|
|
1343
1246
|
export interface GetConnectionResponse {
|
|
1344
1247
|
/**
|
|
1345
1248
|
* @public
|
|
1346
|
-
* <p>
|
|
1347
|
-
* The ID of the connection.
|
|
1348
|
-
* </p>
|
|
1249
|
+
* <p> The ID of the connection. </p>
|
|
1349
1250
|
*/
|
|
1350
1251
|
ConnectionId?: string;
|
|
1351
1252
|
/**
|
|
1352
1253
|
* @public
|
|
1353
|
-
* <p>
|
|
1354
|
-
* Information about the connection.
|
|
1355
|
-
* </p>
|
|
1254
|
+
* <p> Information about the connection. </p>
|
|
1356
1255
|
*/
|
|
1357
1256
|
ConnectionDetails?: ConnectionDetails;
|
|
1358
1257
|
}
|
|
@@ -1382,9 +1281,7 @@ export interface GetOrderOutput {
|
|
|
1382
1281
|
export interface GetOutpostInput {
|
|
1383
1282
|
/**
|
|
1384
1283
|
* @public
|
|
1385
|
-
* <p>
|
|
1386
|
-
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
1387
|
-
* </p>
|
|
1284
|
+
* <p> The ID or the Amazon Resource Name (ARN) of the Outpost. </p>
|
|
1388
1285
|
*/
|
|
1389
1286
|
OutpostId: string | undefined;
|
|
1390
1287
|
}
|
|
@@ -1404,9 +1301,7 @@ export interface GetOutpostOutput {
|
|
|
1404
1301
|
export interface GetOutpostInstanceTypesInput {
|
|
1405
1302
|
/**
|
|
1406
1303
|
* @public
|
|
1407
|
-
* <p>
|
|
1408
|
-
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
1409
|
-
* </p>
|
|
1304
|
+
* <p> The ID or the Amazon Resource Name (ARN) of the Outpost. </p>
|
|
1410
1305
|
*/
|
|
1411
1306
|
OutpostId: string | undefined;
|
|
1412
1307
|
/**
|
|
@@ -1447,9 +1342,7 @@ export interface GetOutpostInstanceTypesOutput {
|
|
|
1447
1342
|
NextToken?: string;
|
|
1448
1343
|
/**
|
|
1449
1344
|
* @public
|
|
1450
|
-
* <p>
|
|
1451
|
-
* The ID of the Outpost.
|
|
1452
|
-
* </p>
|
|
1345
|
+
* <p> The ID of the Outpost. </p>
|
|
1453
1346
|
*/
|
|
1454
1347
|
OutpostId?: string;
|
|
1455
1348
|
/**
|
|
@@ -1464,9 +1357,7 @@ export interface GetOutpostInstanceTypesOutput {
|
|
|
1464
1357
|
export interface GetSiteInput {
|
|
1465
1358
|
/**
|
|
1466
1359
|
* @public
|
|
1467
|
-
* <p>
|
|
1468
|
-
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
1469
|
-
* </p>
|
|
1360
|
+
* <p> The ID or the Amazon Resource Name (ARN) of the site. </p>
|
|
1470
1361
|
*/
|
|
1471
1362
|
SiteId: string | undefined;
|
|
1472
1363
|
}
|
|
@@ -1486,9 +1377,7 @@ export interface GetSiteOutput {
|
|
|
1486
1377
|
export interface GetSiteAddressInput {
|
|
1487
1378
|
/**
|
|
1488
1379
|
* @public
|
|
1489
|
-
* <p>
|
|
1490
|
-
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
1491
|
-
* </p>
|
|
1380
|
+
* <p> The ID or the Amazon Resource Name (ARN) of the site. </p>
|
|
1492
1381
|
*/
|
|
1493
1382
|
SiteId: string | undefined;
|
|
1494
1383
|
/**
|
|
@@ -1513,9 +1402,7 @@ export interface GetSiteAddressOutput {
|
|
|
1513
1402
|
AddressType?: AddressType | string;
|
|
1514
1403
|
/**
|
|
1515
1404
|
* @public
|
|
1516
|
-
* <p>
|
|
1517
|
-
* Information about the address.
|
|
1518
|
-
* </p>
|
|
1405
|
+
* <p> Information about the address. </p>
|
|
1519
1406
|
*/
|
|
1520
1407
|
Address?: Address;
|
|
1521
1408
|
}
|
|
@@ -1525,9 +1412,7 @@ export interface GetSiteAddressOutput {
|
|
|
1525
1412
|
export interface ListAssetsInput {
|
|
1526
1413
|
/**
|
|
1527
1414
|
* @public
|
|
1528
|
-
* <p>
|
|
1529
|
-
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
1530
|
-
* </p>
|
|
1415
|
+
* <p> The ID or the Amazon Resource Name (ARN) of the Outpost. </p>
|
|
1531
1416
|
*/
|
|
1532
1417
|
OutpostIdentifier: string | undefined;
|
|
1533
1418
|
/**
|
|
@@ -1617,9 +1502,7 @@ export interface ListCatalogItemsOutput {
|
|
|
1617
1502
|
export interface ListOrdersInput {
|
|
1618
1503
|
/**
|
|
1619
1504
|
* @public
|
|
1620
|
-
* <p>
|
|
1621
|
-
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
1622
|
-
* </p>
|
|
1505
|
+
* <p> The ID or the Amazon Resource Name (ARN) of the Outpost. </p>
|
|
1623
1506
|
*/
|
|
1624
1507
|
OutpostIdentifierFilter?: string;
|
|
1625
1508
|
/**
|
|
@@ -1635,30 +1518,22 @@ export interface ListOrdersInput {
|
|
|
1635
1518
|
}
|
|
1636
1519
|
/**
|
|
1637
1520
|
* @public
|
|
1638
|
-
* <p>
|
|
1639
|
-
* A summary of line items in your order.
|
|
1640
|
-
* </p>
|
|
1521
|
+
* <p> A summary of line items in your order. </p>
|
|
1641
1522
|
*/
|
|
1642
1523
|
export interface OrderSummary {
|
|
1643
1524
|
/**
|
|
1644
1525
|
* @public
|
|
1645
|
-
* <p>
|
|
1646
|
-
* The ID of the Outpost.
|
|
1647
|
-
* </p>
|
|
1526
|
+
* <p> The ID of the Outpost. </p>
|
|
1648
1527
|
*/
|
|
1649
1528
|
OutpostId?: string;
|
|
1650
1529
|
/**
|
|
1651
1530
|
* @public
|
|
1652
|
-
* <p>
|
|
1653
|
-
* The ID of the order.
|
|
1654
|
-
* </p>
|
|
1531
|
+
* <p> The ID of the order. </p>
|
|
1655
1532
|
*/
|
|
1656
1533
|
OrderId?: string;
|
|
1657
1534
|
/**
|
|
1658
1535
|
* @public
|
|
1659
|
-
* <p>
|
|
1660
|
-
* The type of order.
|
|
1661
|
-
* </p>
|
|
1536
|
+
* <p>The type of order.</p>
|
|
1662
1537
|
*/
|
|
1663
1538
|
OrderType?: OrderType | string;
|
|
1664
1539
|
/**
|
|
@@ -1671,8 +1546,8 @@ export interface OrderSummary {
|
|
|
1671
1546
|
* </li>
|
|
1672
1547
|
* <li>
|
|
1673
1548
|
* <p>
|
|
1674
|
-
* <code>IN_PROGRESS</code> - Order is either being built, shipped, or installed. For
|
|
1675
|
-
* information, see the <code>LineItem</code> status.</p>
|
|
1549
|
+
* <code>IN_PROGRESS</code> - Order is either being built, shipped, or installed. For
|
|
1550
|
+
* more information, see the <code>LineItem</code> status.</p>
|
|
1676
1551
|
* </li>
|
|
1677
1552
|
* <li>
|
|
1678
1553
|
* <p>
|
|
@@ -1695,23 +1570,17 @@ export interface OrderSummary {
|
|
|
1695
1570
|
Status?: OrderStatus | string;
|
|
1696
1571
|
/**
|
|
1697
1572
|
* @public
|
|
1698
|
-
* <p>
|
|
1699
|
-
* The status of all line items in the order.
|
|
1700
|
-
* </p>
|
|
1573
|
+
* <p> The status of all line items in the order. </p>
|
|
1701
1574
|
*/
|
|
1702
1575
|
LineItemCountsByStatus?: Record<string, number>;
|
|
1703
1576
|
/**
|
|
1704
1577
|
* @public
|
|
1705
|
-
* <p>
|
|
1706
|
-
* The submission date for the order.
|
|
1707
|
-
* </p>
|
|
1578
|
+
* <p> The submission date for the order. </p>
|
|
1708
1579
|
*/
|
|
1709
1580
|
OrderSubmissionDate?: Date;
|
|
1710
1581
|
/**
|
|
1711
1582
|
* @public
|
|
1712
|
-
* <p>
|
|
1713
|
-
* The fulfilment date for the order.
|
|
1714
|
-
* </p>
|
|
1583
|
+
* <p> The fulfilment date for the order. </p>
|
|
1715
1584
|
*/
|
|
1716
1585
|
OrderFulfilledDate?: Date;
|
|
1717
1586
|
}
|
|
@@ -1721,9 +1590,7 @@ export interface OrderSummary {
|
|
|
1721
1590
|
export interface ListOrdersOutput {
|
|
1722
1591
|
/**
|
|
1723
1592
|
* @public
|
|
1724
|
-
* <p>
|
|
1725
|
-
* Information about the orders.
|
|
1726
|
-
* </p>
|
|
1593
|
+
* <p> Information about the orders. </p>
|
|
1727
1594
|
*/
|
|
1728
1595
|
Orders?: OrderSummary[];
|
|
1729
1596
|
/**
|
|
@@ -1848,30 +1715,22 @@ export interface ListTagsForResourceResponse {
|
|
|
1848
1715
|
export interface StartConnectionRequest {
|
|
1849
1716
|
/**
|
|
1850
1717
|
* @public
|
|
1851
|
-
* <p>
|
|
1852
|
-
* The serial number of the dongle.
|
|
1853
|
-
* </p>
|
|
1718
|
+
* <p> The serial number of the dongle. </p>
|
|
1854
1719
|
*/
|
|
1855
1720
|
DeviceSerialNumber: string | undefined;
|
|
1856
1721
|
/**
|
|
1857
1722
|
* @public
|
|
1858
|
-
* <p>
|
|
1859
|
-
* The ID of the Outpost server.
|
|
1860
|
-
* </p>
|
|
1723
|
+
* <p> The ID of the Outpost server. </p>
|
|
1861
1724
|
*/
|
|
1862
1725
|
AssetId: string | undefined;
|
|
1863
1726
|
/**
|
|
1864
1727
|
* @public
|
|
1865
|
-
* <p>
|
|
1866
|
-
* The public key of the client.
|
|
1867
|
-
* </p>
|
|
1728
|
+
* <p> The public key of the client. </p>
|
|
1868
1729
|
*/
|
|
1869
1730
|
ClientPublicKey: string | undefined;
|
|
1870
1731
|
/**
|
|
1871
1732
|
* @public
|
|
1872
|
-
* <p>
|
|
1873
|
-
* The device index of the network interface on the Outpost server.
|
|
1874
|
-
* </p>
|
|
1733
|
+
* <p> The device index of the network interface on the Outpost server. </p>
|
|
1875
1734
|
*/
|
|
1876
1735
|
NetworkInterfaceDeviceIndex: number | undefined;
|
|
1877
1736
|
}
|
|
@@ -1881,16 +1740,12 @@ export interface StartConnectionRequest {
|
|
|
1881
1740
|
export interface StartConnectionResponse {
|
|
1882
1741
|
/**
|
|
1883
1742
|
* @public
|
|
1884
|
-
* <p>
|
|
1885
|
-
* The ID of the connection.
|
|
1886
|
-
* </p>
|
|
1743
|
+
* <p> The ID of the connection. </p>
|
|
1887
1744
|
*/
|
|
1888
1745
|
ConnectionId?: string;
|
|
1889
1746
|
/**
|
|
1890
1747
|
* @public
|
|
1891
|
-
* <p>
|
|
1892
|
-
* The underlay IP address.
|
|
1893
|
-
* </p>
|
|
1748
|
+
* <p> The underlay IP address. </p>
|
|
1894
1749
|
*/
|
|
1895
1750
|
UnderlayIpAddress?: string;
|
|
1896
1751
|
}
|
|
@@ -1940,9 +1795,7 @@ export interface UntagResourceResponse {
|
|
|
1940
1795
|
export interface UpdateOutpostInput {
|
|
1941
1796
|
/**
|
|
1942
1797
|
* @public
|
|
1943
|
-
* <p>
|
|
1944
|
-
* The ID or the Amazon Resource Name (ARN) of the Outpost.
|
|
1945
|
-
* </p>
|
|
1798
|
+
* <p> The ID or the Amazon Resource Name (ARN) of the Outpost. </p>
|
|
1946
1799
|
*/
|
|
1947
1800
|
OutpostId: string | undefined;
|
|
1948
1801
|
/**
|
|
@@ -1957,9 +1810,7 @@ export interface UpdateOutpostInput {
|
|
|
1957
1810
|
Description?: string;
|
|
1958
1811
|
/**
|
|
1959
1812
|
* @public
|
|
1960
|
-
* <p>
|
|
1961
|
-
* The type of hardware for this Outpost.
|
|
1962
|
-
* </p>
|
|
1813
|
+
* <p> The type of hardware for this Outpost. </p>
|
|
1963
1814
|
*/
|
|
1964
1815
|
SupportedHardwareType?: SupportedHardwareType | string;
|
|
1965
1816
|
}
|
|
@@ -1979,9 +1830,7 @@ export interface UpdateOutpostOutput {
|
|
|
1979
1830
|
export interface UpdateSiteInput {
|
|
1980
1831
|
/**
|
|
1981
1832
|
* @public
|
|
1982
|
-
* <p>
|
|
1983
|
-
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
1984
|
-
* </p>
|
|
1833
|
+
* <p> The ID or the Amazon Resource Name (ARN) of the site. </p>
|
|
1985
1834
|
*/
|
|
1986
1835
|
SiteId: string | undefined;
|
|
1987
1836
|
/**
|
|
@@ -2016,23 +1865,17 @@ export interface UpdateSiteOutput {
|
|
|
2016
1865
|
export interface UpdateSiteAddressInput {
|
|
2017
1866
|
/**
|
|
2018
1867
|
* @public
|
|
2019
|
-
* <p>
|
|
2020
|
-
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
2021
|
-
* </p>
|
|
1868
|
+
* <p> The ID or the Amazon Resource Name (ARN) of the site. </p>
|
|
2022
1869
|
*/
|
|
2023
1870
|
SiteId: string | undefined;
|
|
2024
1871
|
/**
|
|
2025
1872
|
* @public
|
|
2026
|
-
* <p>
|
|
2027
|
-
* The type of the address.
|
|
2028
|
-
* </p>
|
|
1873
|
+
* <p> The type of the address. </p>
|
|
2029
1874
|
*/
|
|
2030
1875
|
AddressType: AddressType | string | undefined;
|
|
2031
1876
|
/**
|
|
2032
1877
|
* @public
|
|
2033
|
-
* <p>
|
|
2034
|
-
* The address for the site.
|
|
2035
|
-
* </p>
|
|
1878
|
+
* <p> The address for the site. </p>
|
|
2036
1879
|
*/
|
|
2037
1880
|
Address: Address | undefined;
|
|
2038
1881
|
}
|
|
@@ -2042,16 +1885,12 @@ export interface UpdateSiteAddressInput {
|
|
|
2042
1885
|
export interface UpdateSiteAddressOutput {
|
|
2043
1886
|
/**
|
|
2044
1887
|
* @public
|
|
2045
|
-
* <p>
|
|
2046
|
-
* The type of the address.
|
|
2047
|
-
* </p>
|
|
1888
|
+
* <p> The type of the address. </p>
|
|
2048
1889
|
*/
|
|
2049
1890
|
AddressType?: AddressType | string;
|
|
2050
1891
|
/**
|
|
2051
1892
|
* @public
|
|
2052
|
-
* <p>
|
|
2053
|
-
* Information about an address.
|
|
2054
|
-
* </p>
|
|
1893
|
+
* <p> Information about an address. </p>
|
|
2055
1894
|
*/
|
|
2056
1895
|
Address?: Address;
|
|
2057
1896
|
}
|
|
@@ -2061,15 +1900,12 @@ export interface UpdateSiteAddressOutput {
|
|
|
2061
1900
|
export interface UpdateSiteRackPhysicalPropertiesInput {
|
|
2062
1901
|
/**
|
|
2063
1902
|
* @public
|
|
2064
|
-
* <p>
|
|
2065
|
-
* The ID or the Amazon Resource Name (ARN) of the site.
|
|
2066
|
-
* </p>
|
|
1903
|
+
* <p> The ID or the Amazon Resource Name (ARN) of the site. </p>
|
|
2067
1904
|
*/
|
|
2068
1905
|
SiteId: string | undefined;
|
|
2069
1906
|
/**
|
|
2070
1907
|
* @public
|
|
2071
|
-
* <p>The power draw, in kVA, available at the hardware placement position for the
|
|
2072
|
-
* rack.</p>
|
|
1908
|
+
* <p>The power draw, in kVA, available at the hardware placement position for the rack.</p>
|
|
2073
1909
|
*/
|
|
2074
1910
|
PowerDrawKva?: PowerDrawKva | string;
|
|
2075
1911
|
/**
|
|
@@ -2087,9 +1923,8 @@ export interface UpdateSiteRackPhysicalPropertiesInput {
|
|
|
2087
1923
|
PowerPhase?: PowerPhase | string;
|
|
2088
1924
|
/**
|
|
2089
1925
|
* @public
|
|
2090
|
-
* <p>The power connector that Amazon Web Services should plan to provide for connections to the
|
|
2091
|
-
*
|
|
2092
|
-
* <code>PowerConnector</code>. </p>
|
|
1926
|
+
* <p>The power connector that Amazon Web Services should plan to provide for connections to the hardware.
|
|
1927
|
+
* Note the correlation between <code>PowerPhase</code> and <code>PowerConnector</code>. </p>
|
|
2093
1928
|
* <ul>
|
|
2094
1929
|
* <li>
|
|
2095
1930
|
* <p>Single-phase AC feed</p>
|
|
@@ -2130,8 +1965,7 @@ export interface UpdateSiteRackPhysicalPropertiesInput {
|
|
|
2130
1965
|
PowerFeedDrop?: PowerFeedDrop | string;
|
|
2131
1966
|
/**
|
|
2132
1967
|
* @public
|
|
2133
|
-
* <p>The uplink speed the rack should support for the connection to the Region.
|
|
2134
|
-
* </p>
|
|
1968
|
+
* <p>The uplink speed the rack should support for the connection to the Region. </p>
|
|
2135
1969
|
*/
|
|
2136
1970
|
UplinkGbps?: UplinkGbps | string;
|
|
2137
1971
|
/**
|
|
@@ -2155,15 +1989,14 @@ export interface UpdateSiteRackPhysicalPropertiesInput {
|
|
|
2155
1989
|
UplinkCount?: UplinkCount | string;
|
|
2156
1990
|
/**
|
|
2157
1991
|
* @public
|
|
2158
|
-
* <p>The type of fiber that you will use to attach the Outpost to your network.
|
|
2159
|
-
* </p>
|
|
1992
|
+
* <p>The type of fiber that you will use to attach the Outpost to your network. </p>
|
|
2160
1993
|
*/
|
|
2161
1994
|
FiberOpticCableType?: FiberOpticCableType | string;
|
|
2162
1995
|
/**
|
|
2163
1996
|
* @public
|
|
2164
|
-
* <p>The type of optical standard that you will use to attach the Outpost to your
|
|
2165
|
-
*
|
|
2166
|
-
*
|
|
1997
|
+
* <p>The type of optical standard that you will use to attach the Outpost to your network. This
|
|
1998
|
+
* field is dependent on uplink speed, fiber type, and distance to the upstream device.
|
|
1999
|
+
* For more information
|
|
2167
2000
|
* about networking requirements for racks, see <a href="https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#facility-networking">Network</a>
|
|
2168
2001
|
* in the Amazon Web Services Outposts User Guide.
|
|
2169
2002
|
* </p>
|
|
@@ -2225,8 +2058,8 @@ export interface UpdateSiteRackPhysicalPropertiesInput {
|
|
|
2225
2058
|
OpticalStandard?: OpticalStandard | string;
|
|
2226
2059
|
/**
|
|
2227
2060
|
* @public
|
|
2228
|
-
* <p>The maximum rack weight that this site can support. <code>NO_LIMIT</code> is over
|
|
2229
|
-
*
|
|
2061
|
+
* <p>The maximum rack weight that this site can support. <code>NO_LIMIT</code> is over 2000lbs.
|
|
2062
|
+
* </p>
|
|
2230
2063
|
*/
|
|
2231
2064
|
MaximumSupportedWeightLbs?: MaximumSupportedWeightLbs | string;
|
|
2232
2065
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
1
2
|
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
|
2
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
3
4
|
export interface OutpostsExtensionConfiguration
|
|
4
5
|
extends HttpHandlerExtensionConfiguration,
|
|
5
|
-
DefaultExtensionConfiguration
|
|
6
|
+
DefaultExtensionConfiguration,
|
|
7
|
+
AwsRegionExtensionConfiguration {}
|
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.416.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,13 +21,14 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.414.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.414.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.413.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.413.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.413.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.413.0",
|
|
30
30
|
"@aws-sdk/middleware-user-agent": "3.413.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.413.0",
|
|
31
32
|
"@aws-sdk/types": "3.413.0",
|
|
32
33
|
"@aws-sdk/util-endpoints": "3.413.0",
|
|
33
34
|
"@aws-sdk/util-user-agent-browser": "3.413.0",
|