@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.
Files changed (31) hide show
  1. package/dist-cjs/models/models_0.js +142 -166
  2. package/dist-es/models/models_0.js +142 -166
  3. package/dist-types/commands/CancelOrderCommand.d.ts +1 -1
  4. package/dist-types/commands/CreateOrderCommand.d.ts +3 -3
  5. package/dist-types/commands/CreateOutpostCommand.d.ts +2 -2
  6. package/dist-types/commands/CreateSiteCommand.d.ts +4 -4
  7. package/dist-types/commands/DeleteOutpostCommand.d.ts +1 -1
  8. package/dist-types/commands/DeleteSiteCommand.d.ts +1 -1
  9. package/dist-types/commands/GetCatalogItemCommand.d.ts +1 -1
  10. package/dist-types/commands/GetConnectionCommand.d.ts +1 -1
  11. package/dist-types/commands/GetOrderCommand.d.ts +1 -1
  12. package/dist-types/commands/GetOutpostCommand.d.ts +1 -1
  13. package/dist-types/commands/GetOutpostInstanceTypesCommand.d.ts +1 -1
  14. package/dist-types/commands/GetSiteAddressCommand.d.ts +1 -1
  15. package/dist-types/commands/GetSiteCommand.d.ts +1 -1
  16. package/dist-types/commands/ListAssetsCommand.d.ts +3 -3
  17. package/dist-types/commands/ListCatalogItemsCommand.d.ts +4 -4
  18. package/dist-types/commands/ListOrdersCommand.d.ts +1 -1
  19. package/dist-types/commands/ListOutpostsCommand.d.ts +4 -4
  20. package/dist-types/commands/ListSitesCommand.d.ts +4 -4
  21. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  22. package/dist-types/commands/StartConnectionCommand.d.ts +1 -1
  23. package/dist-types/commands/TagResourceCommand.d.ts +2 -2
  24. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  25. package/dist-types/commands/UpdateOutpostCommand.d.ts +1 -1
  26. package/dist-types/commands/UpdateSiteAddressCommand.d.ts +2 -2
  27. package/dist-types/commands/UpdateSiteCommand.d.ts +1 -1
  28. package/dist-types/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +1 -1
  29. package/dist-types/models/models_0.d.ts +262 -142
  30. package/dist-types/ts3.4/models/models_0.d.ts +177 -142
  31. 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 var AddressType;
16
- (function (AddressType) {
17
- AddressType["OPERATING_ADDRESS"] = "OPERATING_ADDRESS";
18
- AddressType["SHIPPING_ADDRESS"] = "SHIPPING_ADDRESS";
19
- })(AddressType || (AddressType = {}));
20
- export var AssetType;
21
- (function (AssetType) {
22
- AssetType["COMPUTE"] = "COMPUTE";
23
- })(AssetType || (AssetType = {}));
24
- export var ComputeAssetState;
25
- (function (ComputeAssetState) {
26
- ComputeAssetState["ACTIVE"] = "ACTIVE";
27
- ComputeAssetState["ISOLATED"] = "ISOLATED";
28
- ComputeAssetState["RETIRING"] = "RETIRING";
29
- })(ComputeAssetState || (ComputeAssetState = {}));
30
- export var AssetState;
31
- (function (AssetState) {
32
- AssetState["ACTIVE"] = "ACTIVE";
33
- AssetState["RETIRING"] = "RETIRING";
34
- })(AssetState || (AssetState = {}));
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 var CatalogItemStatus;
95
- (function (CatalogItemStatus) {
96
- CatalogItemStatus["AVAILABLE"] = "AVAILABLE";
97
- CatalogItemStatus["DISCONTINUED"] = "DISCONTINUED";
98
- })(CatalogItemStatus || (CatalogItemStatus = {}));
99
- export var SupportedStorageEnum;
100
- (function (SupportedStorageEnum) {
101
- SupportedStorageEnum["EBS"] = "EBS";
102
- SupportedStorageEnum["S3"] = "S3";
103
- })(SupportedStorageEnum || (SupportedStorageEnum = {}));
104
- export var CatalogItemClass;
105
- (function (CatalogItemClass) {
106
- CatalogItemClass["RACK"] = "RACK";
107
- CatalogItemClass["SERVER"] = "SERVER";
108
- })(CatalogItemClass || (CatalogItemClass = {}));
109
- export var PaymentOption;
110
- (function (PaymentOption) {
111
- PaymentOption["ALL_UPFRONT"] = "ALL_UPFRONT";
112
- PaymentOption["NO_UPFRONT"] = "NO_UPFRONT";
113
- PaymentOption["PARTIAL_UPFRONT"] = "PARTIAL_UPFRONT";
114
- })(PaymentOption || (PaymentOption = {}));
115
- export var PaymentTerm;
116
- (function (PaymentTerm) {
117
- PaymentTerm["ONE_YEAR"] = "ONE_YEAR";
118
- PaymentTerm["THREE_YEARS"] = "THREE_YEARS";
119
- })(PaymentTerm || (PaymentTerm = {}));
120
- export var ShipmentCarrier;
121
- (function (ShipmentCarrier) {
122
- ShipmentCarrier["DBS"] = "DBS";
123
- ShipmentCarrier["DHL"] = "DHL";
124
- ShipmentCarrier["FEDEX"] = "FEDEX";
125
- ShipmentCarrier["UPS"] = "UPS";
126
- })(ShipmentCarrier || (ShipmentCarrier = {}));
127
- export var LineItemStatus;
128
- (function (LineItemStatus) {
129
- LineItemStatus["BUILDING"] = "BUILDING";
130
- LineItemStatus["CANCELLED"] = "CANCELLED";
131
- LineItemStatus["DELIVERED"] = "DELIVERED";
132
- LineItemStatus["ERROR"] = "ERROR";
133
- LineItemStatus["INSTALLED"] = "INSTALLED";
134
- LineItemStatus["INSTALLING"] = "INSTALLING";
135
- LineItemStatus["PREPARING"] = "PREPARING";
136
- LineItemStatus["REPLACED"] = "REPLACED";
137
- LineItemStatus["SHIPPED"] = "SHIPPED";
138
- })(LineItemStatus || (LineItemStatus = {}));
139
- export var OrderType;
140
- (function (OrderType) {
141
- OrderType["OUTPOST"] = "OUTPOST";
142
- OrderType["REPLACEMENT"] = "REPLACEMENT";
143
- })(OrderType || (OrderType = {}));
144
- export var OrderStatus;
145
- (function (OrderStatus) {
146
- OrderStatus["CANCELLED"] = "CANCELLED";
147
- OrderStatus["COMPLETED"] = "COMPLETED";
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 var SupportedHardwareType;
171
- (function (SupportedHardwareType) {
172
- SupportedHardwareType["RACK"] = "RACK";
173
- SupportedHardwareType["SERVER"] = "SERVER";
174
- })(SupportedHardwareType || (SupportedHardwareType = {}));
175
- export var FiberOpticCableType;
176
- (function (FiberOpticCableType) {
177
- FiberOpticCableType["MULTI_MODE"] = "MULTI_MODE";
178
- FiberOpticCableType["SINGLE_MODE"] = "SINGLE_MODE";
179
- })(FiberOpticCableType || (FiberOpticCableType = {}));
180
- export var MaximumSupportedWeightLbs;
181
- (function (MaximumSupportedWeightLbs) {
182
- MaximumSupportedWeightLbs["MAX_1400_LBS"] = "MAX_1400_LBS";
183
- MaximumSupportedWeightLbs["MAX_1600_LBS"] = "MAX_1600_LBS";
184
- MaximumSupportedWeightLbs["MAX_1800_LBS"] = "MAX_1800_LBS";
185
- MaximumSupportedWeightLbs["MAX_2000_LBS"] = "MAX_2000_LBS";
186
- MaximumSupportedWeightLbs["NO_LIMIT"] = "NO_LIMIT";
187
- })(MaximumSupportedWeightLbs || (MaximumSupportedWeightLbs = {}));
188
- export var OpticalStandard;
189
- (function (OpticalStandard) {
190
- OpticalStandard["OPTIC_1000BASE_LX"] = "OPTIC_1000BASE_LX";
191
- OpticalStandard["OPTIC_1000BASE_SX"] = "OPTIC_1000BASE_SX";
192
- OpticalStandard["OPTIC_100GBASE_CWDM4"] = "OPTIC_100GBASE_CWDM4";
193
- OpticalStandard["OPTIC_100GBASE_LR4"] = "OPTIC_100GBASE_LR4";
194
- OpticalStandard["OPTIC_100GBASE_SR4"] = "OPTIC_100GBASE_SR4";
195
- OpticalStandard["OPTIC_100G_PSM4_MSA"] = "OPTIC_100G_PSM4_MSA";
196
- OpticalStandard["OPTIC_10GBASE_IR"] = "OPTIC_10GBASE_IR";
197
- OpticalStandard["OPTIC_10GBASE_LR"] = "OPTIC_10GBASE_LR";
198
- OpticalStandard["OPTIC_10GBASE_SR"] = "OPTIC_10GBASE_SR";
199
- OpticalStandard["OPTIC_40GBASE_ESR"] = "OPTIC_40GBASE_ESR";
200
- OpticalStandard["OPTIC_40GBASE_IR4_LR4L"] = "OPTIC_40GBASE_IR4_LR4L";
201
- OpticalStandard["OPTIC_40GBASE_LR4"] = "OPTIC_40GBASE_LR4";
202
- OpticalStandard["OPTIC_40GBASE_SR"] = "OPTIC_40GBASE_SR";
203
- })(OpticalStandard || (OpticalStandard = {}));
204
- export var PowerConnector;
205
- (function (PowerConnector) {
206
- PowerConnector["AH530P7W"] = "AH530P7W";
207
- PowerConnector["AH532P6W"] = "AH532P6W";
208
- PowerConnector["IEC309"] = "IEC309";
209
- PowerConnector["L6_30P"] = "L6_30P";
210
- })(PowerConnector || (PowerConnector = {}));
211
- export var PowerDrawKva;
212
- (function (PowerDrawKva) {
213
- PowerDrawKva["POWER_10_KVA"] = "POWER_10_KVA";
214
- PowerDrawKva["POWER_15_KVA"] = "POWER_15_KVA";
215
- PowerDrawKva["POWER_30_KVA"] = "POWER_30_KVA";
216
- PowerDrawKva["POWER_5_KVA"] = "POWER_5_KVA";
217
- })(PowerDrawKva || (PowerDrawKva = {}));
218
- export var PowerFeedDrop;
219
- (function (PowerFeedDrop) {
220
- PowerFeedDrop["ABOVE_RACK"] = "ABOVE_RACK";
221
- PowerFeedDrop["BELOW_RACK"] = "BELOW_RACK";
222
- })(PowerFeedDrop || (PowerFeedDrop = {}));
223
- export var PowerPhase;
224
- (function (PowerPhase) {
225
- PowerPhase["SINGLE_PHASE"] = "SINGLE_PHASE";
226
- PowerPhase["THREE_PHASE"] = "THREE_PHASE";
227
- })(PowerPhase || (PowerPhase = {}));
228
- export var UplinkCount;
229
- (function (UplinkCount) {
230
- UplinkCount["UPLINK_COUNT_1"] = "UPLINK_COUNT_1";
231
- UplinkCount["UPLINK_COUNT_12"] = "UPLINK_COUNT_12";
232
- UplinkCount["UPLINK_COUNT_16"] = "UPLINK_COUNT_16";
233
- UplinkCount["UPLINK_COUNT_2"] = "UPLINK_COUNT_2";
234
- UplinkCount["UPLINK_COUNT_3"] = "UPLINK_COUNT_3";
235
- UplinkCount["UPLINK_COUNT_4"] = "UPLINK_COUNT_4";
236
- UplinkCount["UPLINK_COUNT_5"] = "UPLINK_COUNT_5";
237
- UplinkCount["UPLINK_COUNT_6"] = "UPLINK_COUNT_6";
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
  * };