@aws-sdk/client-outposts 3.300.0 → 3.303.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/models/models_0.js +142 -166
- package/dist-es/models/models_0.js +142 -166
- package/dist-types/commands/CancelOrderCommand.d.ts +1 -1
- package/dist-types/commands/CreateOrderCommand.d.ts +3 -3
- package/dist-types/commands/CreateOutpostCommand.d.ts +2 -2
- package/dist-types/commands/CreateSiteCommand.d.ts +4 -4
- package/dist-types/commands/DeleteOutpostCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSiteCommand.d.ts +1 -1
- package/dist-types/commands/GetCatalogItemCommand.d.ts +1 -1
- package/dist-types/commands/GetConnectionCommand.d.ts +1 -1
- package/dist-types/commands/GetOrderCommand.d.ts +1 -1
- package/dist-types/commands/GetOutpostCommand.d.ts +1 -1
- package/dist-types/commands/GetOutpostInstanceTypesCommand.d.ts +1 -1
- package/dist-types/commands/GetSiteAddressCommand.d.ts +1 -1
- package/dist-types/commands/GetSiteCommand.d.ts +1 -1
- package/dist-types/commands/ListAssetsCommand.d.ts +3 -3
- package/dist-types/commands/ListCatalogItemsCommand.d.ts +4 -4
- package/dist-types/commands/ListOrdersCommand.d.ts +1 -1
- package/dist-types/commands/ListOutpostsCommand.d.ts +4 -4
- package/dist-types/commands/ListSitesCommand.d.ts +4 -4
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/StartConnectionCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateOutpostCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSiteAddressCommand.d.ts +2 -2
- package/dist-types/commands/UpdateSiteCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +262 -142
- package/dist-types/ts3.4/models/models_0.d.ts +177 -142
- package/package.json +34 -34
|
@@ -12,31 +12,26 @@ export class AccessDeniedException extends __BaseException {
|
|
|
12
12
|
this.Message = opts.Message;
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
|
-
export
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
}
|
|
35
|
-
export var ResourceType;
|
|
36
|
-
(function (ResourceType) {
|
|
37
|
-
ResourceType["ORDER"] = "ORDER";
|
|
38
|
-
ResourceType["OUTPOST"] = "OUTPOST";
|
|
39
|
-
})(ResourceType || (ResourceType = {}));
|
|
15
|
+
export const AddressType = {
|
|
16
|
+
OPERATING_ADDRESS: "OPERATING_ADDRESS",
|
|
17
|
+
SHIPPING_ADDRESS: "SHIPPING_ADDRESS",
|
|
18
|
+
};
|
|
19
|
+
export const AssetType = {
|
|
20
|
+
COMPUTE: "COMPUTE",
|
|
21
|
+
};
|
|
22
|
+
export const ComputeAssetState = {
|
|
23
|
+
ACTIVE: "ACTIVE",
|
|
24
|
+
ISOLATED: "ISOLATED",
|
|
25
|
+
RETIRING: "RETIRING",
|
|
26
|
+
};
|
|
27
|
+
export const AssetState = {
|
|
28
|
+
ACTIVE: "ACTIVE",
|
|
29
|
+
RETIRING: "RETIRING",
|
|
30
|
+
};
|
|
31
|
+
export const ResourceType = {
|
|
32
|
+
ORDER: "ORDER",
|
|
33
|
+
OUTPOST: "OUTPOST",
|
|
34
|
+
};
|
|
40
35
|
export class ConflictException extends __BaseException {
|
|
41
36
|
constructor(opts) {
|
|
42
37
|
super({
|
|
@@ -91,69 +86,60 @@ export class ValidationException extends __BaseException {
|
|
|
91
86
|
this.Message = opts.Message;
|
|
92
87
|
}
|
|
93
88
|
}
|
|
94
|
-
export
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
}
|
|
115
|
-
export
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
OrderStatus["ERROR"] = "ERROR";
|
|
149
|
-
OrderStatus["FULFILLED"] = "FULFILLED";
|
|
150
|
-
OrderStatus["INSTALLING"] = "INSTALLING";
|
|
151
|
-
OrderStatus["IN_PROGRESS"] = "IN_PROGRESS";
|
|
152
|
-
OrderStatus["PENDING"] = "PENDING";
|
|
153
|
-
OrderStatus["PREPARING"] = "PREPARING";
|
|
154
|
-
OrderStatus["PROCESSING"] = "PROCESSING";
|
|
155
|
-
OrderStatus["RECEIVED"] = "RECEIVED";
|
|
156
|
-
})(OrderStatus || (OrderStatus = {}));
|
|
89
|
+
export const CatalogItemStatus = {
|
|
90
|
+
AVAILABLE: "AVAILABLE",
|
|
91
|
+
DISCONTINUED: "DISCONTINUED",
|
|
92
|
+
};
|
|
93
|
+
export const SupportedStorageEnum = {
|
|
94
|
+
EBS: "EBS",
|
|
95
|
+
S3: "S3",
|
|
96
|
+
};
|
|
97
|
+
export const CatalogItemClass = {
|
|
98
|
+
RACK: "RACK",
|
|
99
|
+
SERVER: "SERVER",
|
|
100
|
+
};
|
|
101
|
+
export const PaymentOption = {
|
|
102
|
+
ALL_UPFRONT: "ALL_UPFRONT",
|
|
103
|
+
NO_UPFRONT: "NO_UPFRONT",
|
|
104
|
+
PARTIAL_UPFRONT: "PARTIAL_UPFRONT",
|
|
105
|
+
};
|
|
106
|
+
export const PaymentTerm = {
|
|
107
|
+
ONE_YEAR: "ONE_YEAR",
|
|
108
|
+
THREE_YEARS: "THREE_YEARS",
|
|
109
|
+
};
|
|
110
|
+
export const ShipmentCarrier = {
|
|
111
|
+
DBS: "DBS",
|
|
112
|
+
DHL: "DHL",
|
|
113
|
+
FEDEX: "FEDEX",
|
|
114
|
+
UPS: "UPS",
|
|
115
|
+
};
|
|
116
|
+
export const LineItemStatus = {
|
|
117
|
+
BUILDING: "BUILDING",
|
|
118
|
+
CANCELLED: "CANCELLED",
|
|
119
|
+
DELIVERED: "DELIVERED",
|
|
120
|
+
ERROR: "ERROR",
|
|
121
|
+
INSTALLED: "INSTALLED",
|
|
122
|
+
INSTALLING: "INSTALLING",
|
|
123
|
+
PREPARING: "PREPARING",
|
|
124
|
+
REPLACED: "REPLACED",
|
|
125
|
+
SHIPPED: "SHIPPED",
|
|
126
|
+
};
|
|
127
|
+
export const OrderType = {
|
|
128
|
+
OUTPOST: "OUTPOST",
|
|
129
|
+
REPLACEMENT: "REPLACEMENT",
|
|
130
|
+
};
|
|
131
|
+
export const OrderStatus = {
|
|
132
|
+
CANCELLED: "CANCELLED",
|
|
133
|
+
COMPLETED: "COMPLETED",
|
|
134
|
+
ERROR: "ERROR",
|
|
135
|
+
FULFILLED: "FULFILLED",
|
|
136
|
+
INSTALLING: "INSTALLING",
|
|
137
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
138
|
+
PENDING: "PENDING",
|
|
139
|
+
PREPARING: "PREPARING",
|
|
140
|
+
PROCESSING: "PROCESSING",
|
|
141
|
+
RECEIVED: "RECEIVED",
|
|
142
|
+
};
|
|
157
143
|
export class ServiceQuotaExceededException extends __BaseException {
|
|
158
144
|
constructor(opts) {
|
|
159
145
|
super({
|
|
@@ -167,81 +153,71 @@ export class ServiceQuotaExceededException extends __BaseException {
|
|
|
167
153
|
this.Message = opts.Message;
|
|
168
154
|
}
|
|
169
155
|
}
|
|
170
|
-
export
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
UplinkCount["UPLINK_COUNT_7"] = "UPLINK_COUNT_7";
|
|
239
|
-
UplinkCount["UPLINK_COUNT_8"] = "UPLINK_COUNT_8";
|
|
240
|
-
})(UplinkCount || (UplinkCount = {}));
|
|
241
|
-
export var UplinkGbps;
|
|
242
|
-
(function (UplinkGbps) {
|
|
243
|
-
UplinkGbps["UPLINK_100G"] = "UPLINK_100G";
|
|
244
|
-
UplinkGbps["UPLINK_10G"] = "UPLINK_10G";
|
|
245
|
-
UplinkGbps["UPLINK_1G"] = "UPLINK_1G";
|
|
246
|
-
UplinkGbps["UPLINK_40G"] = "UPLINK_40G";
|
|
247
|
-
})(UplinkGbps || (UplinkGbps = {}));
|
|
156
|
+
export const SupportedHardwareType = {
|
|
157
|
+
RACK: "RACK",
|
|
158
|
+
SERVER: "SERVER",
|
|
159
|
+
};
|
|
160
|
+
export const FiberOpticCableType = {
|
|
161
|
+
MULTI_MODE: "MULTI_MODE",
|
|
162
|
+
SINGLE_MODE: "SINGLE_MODE",
|
|
163
|
+
};
|
|
164
|
+
export const MaximumSupportedWeightLbs = {
|
|
165
|
+
MAX_1400_LBS: "MAX_1400_LBS",
|
|
166
|
+
MAX_1600_LBS: "MAX_1600_LBS",
|
|
167
|
+
MAX_1800_LBS: "MAX_1800_LBS",
|
|
168
|
+
MAX_2000_LBS: "MAX_2000_LBS",
|
|
169
|
+
NO_LIMIT: "NO_LIMIT",
|
|
170
|
+
};
|
|
171
|
+
export const OpticalStandard = {
|
|
172
|
+
OPTIC_1000BASE_LX: "OPTIC_1000BASE_LX",
|
|
173
|
+
OPTIC_1000BASE_SX: "OPTIC_1000BASE_SX",
|
|
174
|
+
OPTIC_100GBASE_CWDM4: "OPTIC_100GBASE_CWDM4",
|
|
175
|
+
OPTIC_100GBASE_LR4: "OPTIC_100GBASE_LR4",
|
|
176
|
+
OPTIC_100GBASE_SR4: "OPTIC_100GBASE_SR4",
|
|
177
|
+
OPTIC_100G_PSM4_MSA: "OPTIC_100G_PSM4_MSA",
|
|
178
|
+
OPTIC_10GBASE_IR: "OPTIC_10GBASE_IR",
|
|
179
|
+
OPTIC_10GBASE_LR: "OPTIC_10GBASE_LR",
|
|
180
|
+
OPTIC_10GBASE_SR: "OPTIC_10GBASE_SR",
|
|
181
|
+
OPTIC_40GBASE_ESR: "OPTIC_40GBASE_ESR",
|
|
182
|
+
OPTIC_40GBASE_IR4_LR4L: "OPTIC_40GBASE_IR4_LR4L",
|
|
183
|
+
OPTIC_40GBASE_LR4: "OPTIC_40GBASE_LR4",
|
|
184
|
+
OPTIC_40GBASE_SR: "OPTIC_40GBASE_SR",
|
|
185
|
+
};
|
|
186
|
+
export const PowerConnector = {
|
|
187
|
+
AH530P7W: "AH530P7W",
|
|
188
|
+
AH532P6W: "AH532P6W",
|
|
189
|
+
IEC309: "IEC309",
|
|
190
|
+
L6_30P: "L6_30P",
|
|
191
|
+
};
|
|
192
|
+
export const PowerDrawKva = {
|
|
193
|
+
POWER_10_KVA: "POWER_10_KVA",
|
|
194
|
+
POWER_15_KVA: "POWER_15_KVA",
|
|
195
|
+
POWER_30_KVA: "POWER_30_KVA",
|
|
196
|
+
POWER_5_KVA: "POWER_5_KVA",
|
|
197
|
+
};
|
|
198
|
+
export const PowerFeedDrop = {
|
|
199
|
+
ABOVE_RACK: "ABOVE_RACK",
|
|
200
|
+
BELOW_RACK: "BELOW_RACK",
|
|
201
|
+
};
|
|
202
|
+
export const PowerPhase = {
|
|
203
|
+
SINGLE_PHASE: "SINGLE_PHASE",
|
|
204
|
+
THREE_PHASE: "THREE_PHASE",
|
|
205
|
+
};
|
|
206
|
+
export const UplinkCount = {
|
|
207
|
+
UPLINK_COUNT_1: "UPLINK_COUNT_1",
|
|
208
|
+
UPLINK_COUNT_12: "UPLINK_COUNT_12",
|
|
209
|
+
UPLINK_COUNT_16: "UPLINK_COUNT_16",
|
|
210
|
+
UPLINK_COUNT_2: "UPLINK_COUNT_2",
|
|
211
|
+
UPLINK_COUNT_3: "UPLINK_COUNT_3",
|
|
212
|
+
UPLINK_COUNT_4: "UPLINK_COUNT_4",
|
|
213
|
+
UPLINK_COUNT_5: "UPLINK_COUNT_5",
|
|
214
|
+
UPLINK_COUNT_6: "UPLINK_COUNT_6",
|
|
215
|
+
UPLINK_COUNT_7: "UPLINK_COUNT_7",
|
|
216
|
+
UPLINK_COUNT_8: "UPLINK_COUNT_8",
|
|
217
|
+
};
|
|
218
|
+
export const UplinkGbps = {
|
|
219
|
+
UPLINK_100G: "UPLINK_100G",
|
|
220
|
+
UPLINK_10G: "UPLINK_10G",
|
|
221
|
+
UPLINK_1G: "UPLINK_1G",
|
|
222
|
+
UPLINK_40G: "UPLINK_40G",
|
|
223
|
+
};
|
|
@@ -26,7 +26,7 @@ export interface CancelOrderCommandOutput extends CancelOrderOutput, __MetadataB
|
|
|
26
26
|
* import { OutpostsClient, CancelOrderCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, CancelOrderCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CancelOrderInput
|
|
30
30
|
* OrderId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new CancelOrderCommand(input);
|
|
@@ -26,10 +26,10 @@ export interface CreateOrderCommandOutput extends CreateOrderOutput, __MetadataB
|
|
|
26
26
|
* import { OutpostsClient, CreateOrderCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, CreateOrderCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateOrderInput
|
|
30
30
|
* OutpostIdentifier: "STRING_VALUE", // required
|
|
31
|
-
* LineItems: [ // required
|
|
32
|
-
* {
|
|
31
|
+
* LineItems: [ // LineItemRequestListDefinition // required
|
|
32
|
+
* { // LineItemRequest
|
|
33
33
|
* CatalogItemId: "STRING_VALUE",
|
|
34
34
|
* Quantity: Number("int"),
|
|
35
35
|
* },
|
|
@@ -27,13 +27,13 @@ export interface CreateOutpostCommandOutput extends CreateOutpostOutput, __Metad
|
|
|
27
27
|
* import { OutpostsClient, CreateOutpostCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
28
28
|
* // const { OutpostsClient, CreateOutpostCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
29
29
|
* const client = new OutpostsClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // CreateOutpostInput
|
|
31
31
|
* Name: "STRING_VALUE", // required
|
|
32
32
|
* Description: "STRING_VALUE",
|
|
33
33
|
* SiteId: "STRING_VALUE", // required
|
|
34
34
|
* AvailabilityZone: "STRING_VALUE",
|
|
35
35
|
* AvailabilityZoneId: "STRING_VALUE",
|
|
36
|
-
* Tags: {
|
|
36
|
+
* Tags: { // TagMap
|
|
37
37
|
* "<keys>": "STRING_VALUE",
|
|
38
38
|
* },
|
|
39
39
|
* SupportedHardwareType: "RACK" || "SERVER",
|
|
@@ -26,14 +26,14 @@ export interface CreateSiteCommandOutput extends CreateSiteOutput, __MetadataBea
|
|
|
26
26
|
* import { OutpostsClient, CreateSiteCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, CreateSiteCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateSiteInput
|
|
30
30
|
* Name: "STRING_VALUE", // required
|
|
31
31
|
* Description: "STRING_VALUE",
|
|
32
32
|
* Notes: "STRING_VALUE",
|
|
33
|
-
* Tags: {
|
|
33
|
+
* Tags: { // TagMap
|
|
34
34
|
* "<keys>": "STRING_VALUE",
|
|
35
35
|
* },
|
|
36
|
-
* OperatingAddress: {
|
|
36
|
+
* OperatingAddress: { // Address
|
|
37
37
|
* ContactName: "STRING_VALUE",
|
|
38
38
|
* ContactPhoneNumber: "STRING_VALUE",
|
|
39
39
|
* AddressLine1: "STRING_VALUE", // required
|
|
@@ -59,7 +59,7 @@ export interface CreateSiteCommandOutput extends CreateSiteOutput, __MetadataBea
|
|
|
59
59
|
* CountryCode: "STRING_VALUE", // required
|
|
60
60
|
* Municipality: "STRING_VALUE",
|
|
61
61
|
* },
|
|
62
|
-
* RackPhysicalProperties: {
|
|
62
|
+
* RackPhysicalProperties: { // RackPhysicalProperties
|
|
63
63
|
* PowerDrawKva: "POWER_5_KVA" || "POWER_10_KVA" || "POWER_15_KVA" || "POWER_30_KVA",
|
|
64
64
|
* PowerPhase: "SINGLE_PHASE" || "THREE_PHASE",
|
|
65
65
|
* PowerConnector: "L6_30P" || "IEC309" || "AH530P7W" || "AH532P6W",
|
|
@@ -26,7 +26,7 @@ export interface DeleteOutpostCommandOutput extends DeleteOutpostOutput, __Metad
|
|
|
26
26
|
* import { OutpostsClient, DeleteOutpostCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, DeleteOutpostCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteOutpostInput
|
|
30
30
|
* OutpostId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteOutpostCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteSiteCommandOutput extends DeleteSiteOutput, __MetadataBea
|
|
|
26
26
|
* import { OutpostsClient, DeleteSiteCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, DeleteSiteCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteSiteInput
|
|
30
30
|
* SiteId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteSiteCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetCatalogItemCommandOutput extends GetCatalogItemOutput, __Met
|
|
|
26
26
|
* import { OutpostsClient, GetCatalogItemCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, GetCatalogItemCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetCatalogItemInput
|
|
30
30
|
* CatalogItemId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetCatalogItemCommand(input);
|
|
@@ -36,7 +36,7 @@ export interface GetConnectionCommandOutput extends GetConnectionResponse, __Met
|
|
|
36
36
|
* import { OutpostsClient, GetConnectionCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
37
37
|
* // const { OutpostsClient, GetConnectionCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
38
38
|
* const client = new OutpostsClient(config);
|
|
39
|
-
* const input = {
|
|
39
|
+
* const input = { // GetConnectionRequest
|
|
40
40
|
* ConnectionId: "STRING_VALUE", // required
|
|
41
41
|
* };
|
|
42
42
|
* const command = new GetConnectionCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetOrderCommandOutput extends GetOrderOutput, __MetadataBearer
|
|
|
26
26
|
* import { OutpostsClient, GetOrderCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, GetOrderCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetOrderInput
|
|
30
30
|
* OrderId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetOrderCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetOutpostCommandOutput extends GetOutpostOutput, __MetadataBea
|
|
|
26
26
|
* import { OutpostsClient, GetOutpostCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, GetOutpostCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetOutpostInput
|
|
30
30
|
* OutpostId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetOutpostCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetOutpostInstanceTypesCommandOutput extends GetOutpostInstance
|
|
|
26
26
|
* import { OutpostsClient, GetOutpostInstanceTypesCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, GetOutpostInstanceTypesCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetOutpostInstanceTypesInput
|
|
30
30
|
* OutpostId: "STRING_VALUE", // required
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface GetSiteAddressCommandOutput extends GetSiteAddressOutput, __Met
|
|
|
26
26
|
* import { OutpostsClient, GetSiteAddressCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, GetSiteAddressCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetSiteAddressInput
|
|
30
30
|
* SiteId: "STRING_VALUE", // required
|
|
31
31
|
* AddressType: "SHIPPING_ADDRESS" || "OPERATING_ADDRESS", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface GetSiteCommandOutput extends GetSiteOutput, __MetadataBearer {
|
|
|
26
26
|
* import { OutpostsClient, GetSiteCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, GetSiteCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetSiteInput
|
|
30
30
|
* SiteId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetSiteCommand(input);
|
|
@@ -29,14 +29,14 @@ export interface ListAssetsCommandOutput extends ListAssetsOutput, __MetadataBea
|
|
|
29
29
|
* import { OutpostsClient, ListAssetsCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
30
30
|
* // const { OutpostsClient, ListAssetsCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
31
31
|
* const client = new OutpostsClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // ListAssetsInput
|
|
33
33
|
* OutpostIdentifier: "STRING_VALUE", // required
|
|
34
|
-
* HostIdFilter: [
|
|
34
|
+
* HostIdFilter: [ // HostIdList
|
|
35
35
|
* "STRING_VALUE",
|
|
36
36
|
* ],
|
|
37
37
|
* MaxResults: Number("int"),
|
|
38
38
|
* NextToken: "STRING_VALUE",
|
|
39
|
-
* StatusFilter: [
|
|
39
|
+
* StatusFilter: [ // StatusList
|
|
40
40
|
* "ACTIVE" || "RETIRING",
|
|
41
41
|
* ],
|
|
42
42
|
* };
|
|
@@ -29,16 +29,16 @@ export interface ListCatalogItemsCommandOutput extends ListCatalogItemsOutput, _
|
|
|
29
29
|
* import { OutpostsClient, ListCatalogItemsCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
30
30
|
* // const { OutpostsClient, ListCatalogItemsCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
31
31
|
* const client = new OutpostsClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // ListCatalogItemsInput
|
|
33
33
|
* NextToken: "STRING_VALUE",
|
|
34
34
|
* MaxResults: Number("int"),
|
|
35
|
-
* ItemClassFilter: [
|
|
35
|
+
* ItemClassFilter: [ // CatalogItemClassList
|
|
36
36
|
* "RACK" || "SERVER",
|
|
37
37
|
* ],
|
|
38
|
-
* SupportedStorageFilter: [
|
|
38
|
+
* SupportedStorageFilter: [ // SupportedStorageList
|
|
39
39
|
* "EBS" || "S3",
|
|
40
40
|
* ],
|
|
41
|
-
* EC2FamilyFilter: [
|
|
41
|
+
* EC2FamilyFilter: [ // EC2FamilyList
|
|
42
42
|
* "STRING_VALUE",
|
|
43
43
|
* ],
|
|
44
44
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListOrdersCommandOutput extends ListOrdersOutput, __MetadataBea
|
|
|
26
26
|
* import { OutpostsClient, ListOrdersCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, ListOrdersCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListOrdersInput
|
|
30
30
|
* OutpostIdentifierFilter: "STRING_VALUE",
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
@@ -29,16 +29,16 @@ export interface ListOutpostsCommandOutput extends ListOutpostsOutput, __Metadat
|
|
|
29
29
|
* import { OutpostsClient, ListOutpostsCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
30
30
|
* // const { OutpostsClient, ListOutpostsCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
31
31
|
* const client = new OutpostsClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // ListOutpostsInput
|
|
33
33
|
* NextToken: "STRING_VALUE",
|
|
34
34
|
* MaxResults: Number("int"),
|
|
35
|
-
* LifeCycleStatusFilter: [
|
|
35
|
+
* LifeCycleStatusFilter: [ // LifeCycleStatusList
|
|
36
36
|
* "STRING_VALUE",
|
|
37
37
|
* ],
|
|
38
|
-
* AvailabilityZoneFilter: [
|
|
38
|
+
* AvailabilityZoneFilter: [ // AvailabilityZoneList
|
|
39
39
|
* "STRING_VALUE",
|
|
40
40
|
* ],
|
|
41
|
-
* AvailabilityZoneIdFilter: [
|
|
41
|
+
* AvailabilityZoneIdFilter: [ // AvailabilityZoneIdList
|
|
42
42
|
* "STRING_VALUE",
|
|
43
43
|
* ],
|
|
44
44
|
* };
|
|
@@ -30,16 +30,16 @@ export interface ListSitesCommandOutput extends ListSitesOutput, __MetadataBeare
|
|
|
30
30
|
* import { OutpostsClient, ListSitesCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
31
31
|
* // const { OutpostsClient, ListSitesCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
32
32
|
* const client = new OutpostsClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // ListSitesInput
|
|
34
34
|
* NextToken: "STRING_VALUE",
|
|
35
35
|
* MaxResults: Number("int"),
|
|
36
|
-
* OperatingAddressCountryCodeFilter: [
|
|
36
|
+
* OperatingAddressCountryCodeFilter: [ // CountryCodeList
|
|
37
37
|
* "STRING_VALUE",
|
|
38
38
|
* ],
|
|
39
|
-
* OperatingAddressStateOrRegionFilter: [
|
|
39
|
+
* OperatingAddressStateOrRegionFilter: [ // StateOrRegionList
|
|
40
40
|
* "STRING_VALUE",
|
|
41
41
|
* ],
|
|
42
|
-
* OperatingAddressCityFilter: [
|
|
42
|
+
* OperatingAddressCityFilter: [ // CityList
|
|
43
43
|
* "STRING_VALUE",
|
|
44
44
|
* ],
|
|
45
45
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { OutpostsClient, ListTagsForResourceCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, ListTagsForResourceCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -36,7 +36,7 @@ export interface StartConnectionCommandOutput extends StartConnectionResponse, _
|
|
|
36
36
|
* import { OutpostsClient, StartConnectionCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
37
37
|
* // const { OutpostsClient, StartConnectionCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
38
38
|
* const client = new OutpostsClient(config);
|
|
39
|
-
* const input = {
|
|
39
|
+
* const input = { // StartConnectionRequest
|
|
40
40
|
* DeviceSerialNumber: "STRING_VALUE", // required
|
|
41
41
|
* AssetId: "STRING_VALUE", // required
|
|
42
42
|
* ClientPublicKey: "STRING_VALUE", // required
|
|
@@ -26,9 +26,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
26
|
* import { OutpostsClient, TagResourceCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, TagResourceCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // TagResourceRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
-
* Tags: { // required
|
|
31
|
+
* Tags: { // TagMap // required
|
|
32
32
|
* "<keys>": "STRING_VALUE",
|
|
33
33
|
* },
|
|
34
34
|
* };
|