@aws-sdk/client-outposts 3.183.0 → 3.185.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 (65) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-cjs/models/models_0.js +14 -2
  3. package/dist-cjs/protocols/Aws_restJson1.js +7 -2
  4. package/dist-es/Outposts.js +113 -106
  5. package/dist-es/OutpostsClient.js +28 -22
  6. package/dist-es/commands/CancelOrderCommand.js +28 -21
  7. package/dist-es/commands/CreateOrderCommand.js +28 -21
  8. package/dist-es/commands/CreateOutpostCommand.js +28 -21
  9. package/dist-es/commands/CreateSiteCommand.js +28 -21
  10. package/dist-es/commands/DeleteOutpostCommand.js +28 -21
  11. package/dist-es/commands/DeleteSiteCommand.js +28 -21
  12. package/dist-es/commands/GetCatalogItemCommand.js +28 -21
  13. package/dist-es/commands/GetConnectionCommand.js +28 -21
  14. package/dist-es/commands/GetOrderCommand.js +28 -21
  15. package/dist-es/commands/GetOutpostCommand.js +28 -21
  16. package/dist-es/commands/GetOutpostInstanceTypesCommand.js +28 -21
  17. package/dist-es/commands/GetSiteAddressCommand.js +28 -21
  18. package/dist-es/commands/GetSiteCommand.js +28 -21
  19. package/dist-es/commands/ListAssetsCommand.js +28 -21
  20. package/dist-es/commands/ListCatalogItemsCommand.js +28 -21
  21. package/dist-es/commands/ListOrdersCommand.js +28 -21
  22. package/dist-es/commands/ListOutpostsCommand.js +28 -21
  23. package/dist-es/commands/ListSitesCommand.js +28 -21
  24. package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
  25. package/dist-es/commands/StartConnectionCommand.js +28 -21
  26. package/dist-es/commands/TagResourceCommand.js +28 -21
  27. package/dist-es/commands/UntagResourceCommand.js +28 -21
  28. package/dist-es/commands/UpdateOutpostCommand.js +28 -21
  29. package/dist-es/commands/UpdateSiteAddressCommand.js +28 -21
  30. package/dist-es/commands/UpdateSiteCommand.js +28 -21
  31. package/dist-es/commands/UpdateSiteRackPhysicalPropertiesCommand.js +28 -21
  32. package/dist-es/endpoints.js +8 -8
  33. package/dist-es/models/OutpostsServiceException.js +10 -5
  34. package/dist-es/models/models_0.js +156 -281
  35. package/dist-es/pagination/GetOutpostInstanceTypesPaginator.js +68 -25
  36. package/dist-es/pagination/ListAssetsPaginator.js +68 -25
  37. package/dist-es/pagination/ListCatalogItemsPaginator.js +68 -25
  38. package/dist-es/pagination/ListOrdersPaginator.js +68 -25
  39. package/dist-es/pagination/ListOutpostsPaginator.js +68 -25
  40. package/dist-es/pagination/ListSitesPaginator.js +68 -25
  41. package/dist-es/protocols/Aws_restJson1.js +2643 -1870
  42. package/dist-es/runtimeConfig.browser.js +12 -26
  43. package/dist-es/runtimeConfig.js +12 -30
  44. package/dist-es/runtimeConfig.native.js +5 -8
  45. package/dist-es/runtimeConfig.shared.js +11 -8
  46. package/dist-types/Outposts.d.ts +32 -52
  47. package/dist-types/commands/CancelOrderCommand.d.ts +1 -3
  48. package/dist-types/commands/CreateOutpostCommand.d.ts +1 -1
  49. package/dist-types/commands/DeleteOutpostCommand.d.ts +1 -1
  50. package/dist-types/commands/DeleteSiteCommand.d.ts +1 -1
  51. package/dist-types/commands/GetCatalogItemCommand.d.ts +1 -1
  52. package/dist-types/commands/GetConnectionCommand.d.ts +1 -1
  53. package/dist-types/commands/GetOrderCommand.d.ts +1 -1
  54. package/dist-types/commands/GetSiteAddressCommand.d.ts +1 -1
  55. package/dist-types/commands/GetSiteCommand.d.ts +1 -3
  56. package/dist-types/commands/ListAssetsCommand.d.ts +4 -5
  57. package/dist-types/commands/ListCatalogItemsCommand.d.ts +4 -5
  58. package/dist-types/commands/ListOrdersCommand.d.ts +1 -2
  59. package/dist-types/commands/ListOutpostsCommand.d.ts +4 -6
  60. package/dist-types/commands/ListSitesCommand.d.ts +4 -6
  61. package/dist-types/commands/UpdateSiteAddressCommand.d.ts +5 -12
  62. package/dist-types/commands/UpdateSiteCommand.d.ts +1 -3
  63. package/dist-types/models/models_0.d.ts +67 -164
  64. package/dist-types/ts3.4/models/models_0.d.ts +12 -0
  65. package/package.json +5 -5
@@ -83,6 +83,11 @@ export interface AssetLocation {
83
83
  export declare enum AssetType {
84
84
  COMPUTE = "COMPUTE"
85
85
  }
86
+ export declare enum ComputeAssetState {
87
+ ACTIVE = "ACTIVE",
88
+ ISOLATED = "ISOLATED",
89
+ RETIRING = "RETIRING"
90
+ }
86
91
  /**
87
92
  * <p>
88
93
  * Information about compute hardware assets.
@@ -91,10 +96,27 @@ export declare enum AssetType {
91
96
  export interface ComputeAttributes {
92
97
  /**
93
98
  * <p>
94
- * The host ID of any Dedicated Hosts on the asset.
99
+ * The host ID of the Dedicated Host on the asset.
95
100
  * </p>
96
101
  */
97
102
  HostId?: string;
103
+ /**
104
+ * <p>The state.</p>
105
+ * <ul>
106
+ * <li>
107
+ * <p>ACTIVE - The asset is available and can provide capacity for new compute resources.</p>
108
+ * </li>
109
+ * <li>
110
+ * <p>ISOLATED - The asset is undergoing maintenance and can't provide capacity for new compute resources.
111
+ * Existing compute resources on the asset are not affected.</p>
112
+ * </li>
113
+ * <li>
114
+ * <p>RETIRING - The underlying hardware for the asset is degraded. Capacity for new compute resources is reduced.
115
+ * Amazon Web Services sends notifications for resources that must be stopped before the asset can be replaced.</p>
116
+ * </li>
117
+ * </ul>
118
+ */
119
+ State?: ComputeAssetState | string;
98
120
  }
99
121
  /**
100
122
  * <p>
@@ -133,10 +155,14 @@ export interface AssetInfo {
133
155
  */
134
156
  AssetLocation?: AssetLocation;
135
157
  }
158
+ export declare enum AssetState {
159
+ ACTIVE = "ACTIVE",
160
+ RETIRING = "RETIRING"
161
+ }
136
162
  export interface CancelOrderInput {
137
163
  /**
138
164
  * <p>
139
- * The ID of the order to cancel.
165
+ * The ID of the order.
140
166
  * </p>
141
167
  */
142
168
  OrderId: string | undefined;
@@ -346,6 +372,7 @@ export declare enum PaymentOption {
346
372
  PARTIAL_UPFRONT = "PARTIAL_UPFRONT"
347
373
  }
348
374
  export declare enum PaymentTerm {
375
+ ONE_YEAR = "ONE_YEAR",
349
376
  THREE_YEARS = "THREE_YEARS"
350
377
  }
351
378
  export interface CreateOrderInput {
@@ -360,11 +387,11 @@ export interface CreateOrderInput {
360
387
  */
361
388
  LineItems: LineItemRequest[] | undefined;
362
389
  /**
363
- * <p>The payment option for the order.</p>
390
+ * <p>The payment option.</p>
364
391
  */
365
392
  PaymentOption: PaymentOption | string | undefined;
366
393
  /**
367
- * <p>The payment terms for the order.</p>
394
+ * <p>The payment terms.</p>
368
395
  */
369
396
  PaymentTerm?: PaymentTerm | string;
370
397
  }
@@ -382,7 +409,7 @@ export interface LineItemAssetInformation {
382
409
  AssetId?: string;
383
410
  /**
384
411
  * <p>
385
- * MAC addresses of the asset.
412
+ * The MAC addresses of the asset.
386
413
  * </p>
387
414
  */
388
415
  MacAddressList?: string[];
@@ -493,7 +520,7 @@ export interface Order {
493
520
  * <li>
494
521
  * <p>
495
522
  * <code>IN_PROGRESS</code> - Order is either being built, shipped, or installed. To get more
496
- * details, see the <code>LineItem</code> status.</p>
523
+ * details, see the line item status.</p>
497
524
  * </li>
498
525
  * <li>
499
526
  * <p>
@@ -567,12 +594,6 @@ export interface CreateOutpostInput {
567
594
  * <p>
568
595
  * The ID or the Amazon Resource Name (ARN) of the site.
569
596
  * </p>
570
- * <note>
571
- * <p>In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and
572
- * sites throughout the Outposts Query API. To address backwards compatibility, the parameter names
573
- * <code>OutpostID</code> or <code>SiteID</code> remain in use. Despite the parameter name,
574
- * you can make the request with an ARN.</p>
575
- * </note>
576
597
  */
577
598
  SiteId: string | undefined;
578
599
  /**
@@ -613,9 +634,7 @@ export interface Outpost {
613
634
  */
614
635
  OutpostArn?: string;
615
636
  /**
616
- * <p>
617
- * The ID of the site.
618
- * </p>
637
+ * <p>The ID of the site.</p>
619
638
  */
620
639
  SiteId?: string;
621
640
  /**
@@ -821,9 +840,7 @@ export interface CreateSiteInput {
821
840
  */
822
841
  export interface Site {
823
842
  /**
824
- * <p>
825
- * The ID of the site.
826
- * </p>
843
+ * <p>The ID of the site.</p>
827
844
  */
828
845
  SiteId?: string;
829
846
  /**
@@ -886,12 +903,6 @@ export interface DeleteOutpostInput {
886
903
  * <p>
887
904
  * The ID or the Amazon Resource Name (ARN) of the Outpost.
888
905
  * </p>
889
- * <note>
890
- * <p>In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and
891
- * sites throughout the Outposts Query API. To address backwards compatibility, the parameter names
892
- * <code>OutpostID</code> or <code>SiteID</code> remain in use. Despite the parameter name,
893
- * you can make the request with an ARN.</p>
894
- * </note>
895
906
  */
896
907
  OutpostId: string | undefined;
897
908
  }
@@ -902,12 +913,6 @@ export interface DeleteSiteInput {
902
913
  * <p>
903
914
  * The ID or the Amazon Resource Name (ARN) of the site.
904
915
  * </p>
905
- * <note>
906
- * <p>In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and
907
- * sites throughout the Outposts Query API. To address backwards compatibility, the parameter names
908
- * <code>OutpostID</code> or <code>SiteID</code> remain in use. Despite the parameter name,
909
- * you can make the request with an ARN.</p>
910
- * </note>
911
916
  */
912
917
  SiteId: string | undefined;
913
918
  }
@@ -928,7 +933,7 @@ export interface GetCatalogItemOutput {
928
933
  export interface GetConnectionRequest {
929
934
  /**
930
935
  * <p>
931
- * The ID of the connection you request.
936
+ * The ID of the connection.
932
937
  * </p>
933
938
  */
934
939
  ConnectionId: string | undefined;
@@ -936,13 +941,13 @@ export interface GetConnectionRequest {
936
941
  export interface GetConnectionResponse {
937
942
  /**
938
943
  * <p>
939
- * The ID of the connection you receive.
944
+ * The ID of the connection.
940
945
  * </p>
941
946
  */
942
947
  ConnectionId?: string;
943
948
  /**
944
949
  * <p>
945
- * Information about a connection.
950
+ * Information about the connection.
946
951
  * </p>
947
952
  */
948
953
  ConnectionDetails?: ConnectionDetails;
@@ -964,12 +969,6 @@ export interface GetOutpostInput {
964
969
  * <p>
965
970
  * The ID or the Amazon Resource Name (ARN) of the Outpost.
966
971
  * </p>
967
- * <note>
968
- * <p>In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and
969
- * sites throughout the Outposts Query API. To address backwards compatibility, the parameter names
970
- * <code>OutpostID</code> or <code>SiteID</code> remain in use. Despite the parameter name,
971
- * you can make the request with an ARN.</p>
972
- * </note>
973
972
  */
974
973
  OutpostId: string | undefined;
975
974
  }
@@ -984,12 +983,6 @@ export interface GetOutpostInstanceTypesInput {
984
983
  * <p>
985
984
  * The ID or the Amazon Resource Name (ARN) of the Outpost.
986
985
  * </p>
987
- * <note>
988
- * <p>In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and
989
- * sites throughout the Outposts Query API. To address backwards compatibility, the parameter names
990
- * <code>OutpostID</code> or <code>SiteID</code> remain in use. Despite the parameter name,
991
- * you can make the request with an ARN.</p>
992
- * </note>
993
986
  */
994
987
  OutpostId: string | undefined;
995
988
  /**
@@ -1023,12 +1016,6 @@ export interface GetOutpostInstanceTypesOutput {
1023
1016
  * <p>
1024
1017
  * The ID of the Outpost.
1025
1018
  * </p>
1026
- * <note>
1027
- * <p>In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and
1028
- * sites throughout the Outposts Query API. To address backwards compatibility, the parameter names
1029
- * <code>OutpostID</code> or <code>SiteID</code> remain in use. Despite the parameter name,
1030
- * you can make the request with an ARN.</p>
1031
- * </note>
1032
1019
  */
1033
1020
  OutpostId?: string;
1034
1021
  /**
@@ -1041,12 +1028,6 @@ export interface GetSiteInput {
1041
1028
  * <p>
1042
1029
  * The ID or the Amazon Resource Name (ARN) of the site.
1043
1030
  * </p>
1044
- * <note>
1045
- * <p>In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and
1046
- * sites throughout the Outposts Query API. To address backwards compatibility, the parameter names
1047
- * <code>OutpostID</code> or <code>SiteID</code> remain in use. Despite the parameter name,
1048
- * you can make the request with an ARN.</p>
1049
- * </note>
1050
1031
  */
1051
1032
  SiteId: string | undefined;
1052
1033
  }
@@ -1061,28 +1042,20 @@ export interface GetSiteAddressInput {
1061
1042
  * <p>
1062
1043
  * The ID or the Amazon Resource Name (ARN) of the site.
1063
1044
  * </p>
1064
- * <note>
1065
- * <p>In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and
1066
- * sites throughout the Outposts Query API. To address backwards compatibility, the parameter names
1067
- * <code>OutpostID</code> or <code>SiteID</code> remain in use. Despite the parameter name,
1068
- * you can make the request with an ARN.</p>
1069
- * </note>
1070
1045
  */
1071
1046
  SiteId: string | undefined;
1072
1047
  /**
1073
- * <p> The type of the address you request. </p>
1048
+ * <p>The type of the address you request. </p>
1074
1049
  */
1075
1050
  AddressType: AddressType | string | undefined;
1076
1051
  }
1077
1052
  export interface GetSiteAddressOutput {
1078
1053
  /**
1079
- * <p>
1080
- * The ID of the site.
1081
- * </p>
1054
+ * <p>The ID of the site.</p>
1082
1055
  */
1083
1056
  SiteId?: string;
1084
1057
  /**
1085
- * <p> The type of the address you receive. </p>
1058
+ * <p>The type of the address you receive. </p>
1086
1059
  */
1087
1060
  AddressType?: AddressType | string;
1088
1061
  /**
@@ -1100,12 +1073,7 @@ export interface ListAssetsInput {
1100
1073
  */
1101
1074
  OutpostIdentifier: string | undefined;
1102
1075
  /**
1103
- * <p>
1104
- * A filter for the host ID of Dedicated Hosts on the Outpost.
1105
- * </p>
1106
- * <p>Filter values are case sensitive. If you specify multiple
1107
- * values for a filter, the values are joined with an <code>OR</code>, and the request returns
1108
- * all results that match any of the specified values.</p>
1076
+ * <p>Filters the results by the host ID of a Dedicated Host.</p>
1109
1077
  */
1110
1078
  HostIdFilter?: string[];
1111
1079
  /**
@@ -1116,12 +1084,14 @@ export interface ListAssetsInput {
1116
1084
  * <p>The pagination token.</p>
1117
1085
  */
1118
1086
  NextToken?: string;
1087
+ /**
1088
+ * <p>Filters the results by state.</p>
1089
+ */
1090
+ StatusFilter?: (AssetState | string)[];
1119
1091
  }
1120
1092
  export interface ListAssetsOutput {
1121
1093
  /**
1122
- * <p>
1123
- * Information about hardware assets.
1124
- * </p>
1094
+ * <p>Information about the hardware assets.</p>
1125
1095
  */
1126
1096
  Assets?: AssetInfo[];
1127
1097
  /**
@@ -1139,30 +1109,15 @@ export interface ListCatalogItemsInput {
1139
1109
  */
1140
1110
  MaxResults?: number;
1141
1111
  /**
1142
- * <p>
1143
- * A filter for the class of items in the catalog.
1144
- * </p>
1145
- * <p>Filter values are case sensitive. If you specify multiple
1146
- * values for a filter, the values are joined with an <code>OR</code>, and the request returns
1147
- * all results that match any of the specified values.</p>
1112
+ * <p>Filters the results by item class.</p>
1148
1113
  */
1149
1114
  ItemClassFilter?: (CatalogItemClass | string)[];
1150
1115
  /**
1151
- * <p>
1152
- * A filter for the storage options of items in the catalog.
1153
- * </p>
1154
- * <p>Filter values are case sensitive. If you specify multiple
1155
- * values for a filter, the values are joined with an <code>OR</code>, and the request returns
1156
- * all results that match any of the specified values.</p>
1116
+ * <p>Filters the results by storage option.</p>
1157
1117
  */
1158
1118
  SupportedStorageFilter?: (SupportedStorageEnum | string)[];
1159
1119
  /**
1160
- * <p>
1161
- * A filter for EC2 family options for items in the catalog.
1162
- * </p>
1163
- * <p>Filter values are case sensitive. If you specify multiple
1164
- * values for a filter, the values are joined with an <code>OR</code>, and the request returns
1165
- * all results that match any of the specified values.</p>
1120
+ * <p>Filters the results by EC2 family (for example, M5).</p>
1166
1121
  */
1167
1122
  EC2FamilyFilter?: string[];
1168
1123
  }
@@ -1260,13 +1215,13 @@ export interface OrderSummary {
1260
1215
  LineItemCountsByStatus?: Record<string, number>;
1261
1216
  /**
1262
1217
  * <p>
1263
- * Submission date for the order.
1218
+ * The submission date for the order.
1264
1219
  * </p>
1265
1220
  */
1266
1221
  OrderSubmissionDate?: Date;
1267
1222
  /**
1268
1223
  * <p>
1269
- * Fulfilment date for the order.
1224
+ * The fulfilment date for the order.
1270
1225
  * </p>
1271
1226
  */
1272
1227
  OrderFulfilledDate?: Date;
@@ -1293,30 +1248,15 @@ export interface ListOutpostsInput {
1293
1248
  */
1294
1249
  MaxResults?: number;
1295
1250
  /**
1296
- * <p>
1297
- * A filter for the lifecycle status of the Outpost.
1298
- * </p>
1299
- * <p>Filter values are case sensitive. If you specify multiple
1300
- * values for a filter, the values are joined with an <code>OR</code>, and the request returns
1301
- * all results that match any of the specified values.</p>
1251
+ * <p>Filters the results by the lifecycle status.</p>
1302
1252
  */
1303
1253
  LifeCycleStatusFilter?: string[];
1304
1254
  /**
1305
- * <p> A filter for the Availability Zone (<code>us-east-1a</code>) of the Outpost. </p>
1306
- *
1307
- * <p>Filter values are case sensitive. If you specify multiple
1308
- * values for a filter, the values are joined with an <code>OR</code>, and the request returns
1309
- * all results that match any of the specified values.</p>
1255
+ * <p>Filters the results by Availability Zone (for example, <code>us-east-1a</code>).</p>
1310
1256
  */
1311
1257
  AvailabilityZoneFilter?: string[];
1312
1258
  /**
1313
- * <p>
1314
- * A filter for the AZ IDs (<code>use1-az1</code>) of the Outpost.
1315
- * </p>
1316
- *
1317
- * <p>Filter values are case sensitive. If you specify multiple
1318
- * values for a filter, the values are joined with an <code>OR</code>, and the request returns
1319
- * all results that match any of the specified values.</p>
1259
+ * <p>Filters the results by AZ ID (for example, <code>use1-az1</code>).</p>
1320
1260
  */
1321
1261
  AvailabilityZoneIdFilter?: string[];
1322
1262
  }
@@ -1340,26 +1280,15 @@ export interface ListSitesInput {
1340
1280
  */
1341
1281
  MaxResults?: number;
1342
1282
  /**
1343
- * <p> A filter for the country code of the Outpost site. </p>
1344
- * <p>Filter values are case sensitive. If you specify multiple
1345
- * values for a filter, the values are joined with an <code>OR</code>, and the request returns
1346
- * all results that match any of the specified values.</p>
1283
+ * <p>Filters the results by country code.</p>
1347
1284
  */
1348
1285
  OperatingAddressCountryCodeFilter?: string[];
1349
1286
  /**
1350
- * <p> A filter for the state/region of the Outpost site. </p>
1351
- * <p>Filter values are case sensitive. If you specify multiple
1352
- * values for a filter, the values are joined with an <code>OR</code>, and the request returns
1353
- * all results that match any of the specified values.</p>
1287
+ * <p>Filters the results by state or region.</p>
1354
1288
  */
1355
1289
  OperatingAddressStateOrRegionFilter?: string[];
1356
1290
  /**
1357
- * <p>
1358
- * A filter for the city of the Outpost site.
1359
- * </p>
1360
- * <p>Filter values are case sensitive. If you specify multiple
1361
- * values for a filter, the values are joined with an <code>OR</code>, and the request returns
1362
- * all results that match any of the specified values.</p>
1291
+ * <p>Filters the results by city.</p>
1363
1292
  */
1364
1293
  OperatingAddressCityFilter?: string[];
1365
1294
  }
@@ -1454,12 +1383,6 @@ export interface UpdateOutpostInput {
1454
1383
  * <p>
1455
1384
  * The ID or the Amazon Resource Name (ARN) of the Outpost.
1456
1385
  * </p>
1457
- * <note>
1458
- * <p>In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and
1459
- * sites throughout the Outposts Query API. To address backwards compatibility, the parameter names
1460
- * <code>OutpostID</code> or <code>SiteID</code> remain in use. Despite the parameter name,
1461
- * you can make the request with an ARN.</p>
1462
- * </note>
1463
1386
  */
1464
1387
  OutpostId: string | undefined;
1465
1388
  /**
@@ -1488,12 +1411,6 @@ export interface UpdateSiteInput {
1488
1411
  * <p>
1489
1412
  * The ID or the Amazon Resource Name (ARN) of the site.
1490
1413
  * </p>
1491
- * <note>
1492
- * <p>In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and
1493
- * sites throughout the Outposts Query API. To address backwards compatibility, the parameter names
1494
- * <code>OutpostID</code> or <code>SiteID</code> remain in use. Despite the parameter name,
1495
- * you can make the request with an ARN.</p>
1496
- * </note>
1497
1414
  */
1498
1415
  SiteId: string | undefined;
1499
1416
  /**
@@ -1505,9 +1422,7 @@ export interface UpdateSiteInput {
1505
1422
  */
1506
1423
  Description?: string;
1507
1424
  /**
1508
- * <p>
1509
- * Notes about a site.
1510
- * </p>
1425
+ * <p>Notes about a site.</p>
1511
1426
  */
1512
1427
  Notes?: string;
1513
1428
  }
@@ -1522,12 +1437,6 @@ export interface UpdateSiteAddressInput {
1522
1437
  * <p>
1523
1438
  * The ID or the Amazon Resource Name (ARN) of the site.
1524
1439
  * </p>
1525
- * <note>
1526
- * <p>In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and
1527
- * sites throughout the Outposts Query API. To address backwards compatibility, the parameter names
1528
- * <code>OutpostID</code> or <code>SiteID</code> remain in use. Despite the parameter name,
1529
- * you can make the request with an ARN.</p>
1530
- * </note>
1531
1440
  */
1532
1441
  SiteId: string | undefined;
1533
1442
  /**
@@ -1562,21 +1471,15 @@ export interface UpdateSiteRackPhysicalPropertiesInput {
1562
1471
  * <p>
1563
1472
  * The ID or the Amazon Resource Name (ARN) of the site.
1564
1473
  * </p>
1565
- * <note>
1566
- * <p>In requests, Amazon Web Services Outposts accepts the Amazon Resource Name (ARN) or an ID for Outposts and
1567
- * sites throughout the Outposts Query API. To address backwards compatibility, the parameter names
1568
- * <code>OutpostID</code> or <code>SiteID</code> remain in use. Despite the parameter name,
1569
- * you can make the request with an ARN.</p>
1570
- * </note>
1571
1474
  */
1572
1475
  SiteId: string | undefined;
1573
1476
  /**
1574
- * <p>Specify in kVA the power draw available at the hardware placement position for the
1477
+ * <p>The power draw, in kVA, available at the hardware placement position for the
1575
1478
  * rack.</p>
1576
1479
  */
1577
1480
  PowerDrawKva?: PowerDrawKva | string;
1578
1481
  /**
1579
- * <p> Specify the power option that you can provide for hardware. </p>
1482
+ * <p>The power option that you can provide for hardware. </p>
1580
1483
  * <ul>
1581
1484
  * <li>
1582
1485
  * <p>Single-phase AC feed: 200 V to 277 V, 50 Hz or 60 Hz</p>
@@ -1588,7 +1491,7 @@ export interface UpdateSiteRackPhysicalPropertiesInput {
1588
1491
  */
1589
1492
  PowerPhase?: PowerPhase | string;
1590
1493
  /**
1591
- * <p> Specify the power connector that Amazon Web Services should plan to provide for connections to the
1494
+ * <p>The power connector that Amazon Web Services should plan to provide for connections to the
1592
1495
  * hardware. Note the correlation between <code>PowerPhase</code> and
1593
1496
  * <code>PowerConnector</code>. </p>
1594
1497
  * <ul>
@@ -1625,11 +1528,11 @@ export interface UpdateSiteRackPhysicalPropertiesInput {
1625
1528
  */
1626
1529
  PowerConnector?: PowerConnector | string;
1627
1530
  /**
1628
- * <p> Specify whether the power feed comes above or below the rack. </p>
1531
+ * <p>Indicates whether the power feed comes above or below the rack. </p>
1629
1532
  */
1630
1533
  PowerFeedDrop?: PowerFeedDrop | string;
1631
1534
  /**
1632
- * <p> Specify the uplink speed the rack should support for the connection to the Region.
1535
+ * <p>The uplink speed the rack should support for the connection to the Region.
1633
1536
  * </p>
1634
1537
  */
1635
1538
  UplinkGbps?: UplinkGbps | string;
@@ -1652,12 +1555,12 @@ export interface UpdateSiteRackPhysicalPropertiesInput {
1652
1555
  */
1653
1556
  UplinkCount?: UplinkCount | string;
1654
1557
  /**
1655
- * <p> Specify the type of fiber that you will use to attach the Outpost to your network.
1558
+ * <p>The type of fiber that you will use to attach the Outpost to your network.
1656
1559
  * </p>
1657
1560
  */
1658
1561
  FiberOpticCableType?: FiberOpticCableType | string;
1659
1562
  /**
1660
- * <p>Specify the type of optical standard that you will use to attach the Outpost to your
1563
+ * <p>The type of optical standard that you will use to attach the Outpost to your
1661
1564
  * network. This field is dependent on uplink speed, fiber type, and distance to the upstream
1662
1565
  * device. For more information
1663
1566
  * about networking requirements for racks, see <a href="https://docs.aws.amazon.com/outposts/latest/userguide/outposts-requirements.html#facility-networking">Network</a>
@@ -1720,7 +1623,7 @@ export interface UpdateSiteRackPhysicalPropertiesInput {
1720
1623
  */
1721
1624
  OpticalStandard?: OpticalStandard | string;
1722
1625
  /**
1723
- * <p> Specify the maximum rack weight that this site can support. <code>NO_LIMIT</code> is over
1626
+ * <p>The maximum rack weight that this site can support. <code>NO_LIMIT</code> is over
1724
1627
  * 2000lbs. </p>
1725
1628
  */
1726
1629
  MaximumSupportedWeightLbs?: MaximumSupportedWeightLbs | string;
@@ -31,8 +31,14 @@ export interface AssetLocation {
31
31
  export declare enum AssetType {
32
32
  COMPUTE = "COMPUTE",
33
33
  }
34
+ export declare enum ComputeAssetState {
35
+ ACTIVE = "ACTIVE",
36
+ ISOLATED = "ISOLATED",
37
+ RETIRING = "RETIRING",
38
+ }
34
39
  export interface ComputeAttributes {
35
40
  HostId?: string;
41
+ State?: ComputeAssetState | string;
36
42
  }
37
43
  export interface AssetInfo {
38
44
  AssetId?: string;
@@ -41,6 +47,10 @@ export interface AssetInfo {
41
47
  ComputeAttributes?: ComputeAttributes;
42
48
  AssetLocation?: AssetLocation;
43
49
  }
50
+ export declare enum AssetState {
51
+ ACTIVE = "ACTIVE",
52
+ RETIRING = "RETIRING",
53
+ }
44
54
  export interface CancelOrderInput {
45
55
  OrderId: string | undefined;
46
56
  }
@@ -123,6 +133,7 @@ export declare enum PaymentOption {
123
133
  PARTIAL_UPFRONT = "PARTIAL_UPFRONT",
124
134
  }
125
135
  export declare enum PaymentTerm {
136
+ ONE_YEAR = "ONE_YEAR",
126
137
  THREE_YEARS = "THREE_YEARS",
127
138
  }
128
139
  export interface CreateOrderInput {
@@ -391,6 +402,7 @@ export interface ListAssetsInput {
391
402
  HostIdFilter?: string[];
392
403
  MaxResults?: number;
393
404
  NextToken?: string;
405
+ StatusFilter?: (AssetState | string)[];
394
406
  }
395
407
  export interface ListAssetsOutput {
396
408
  Assets?: AssetInfo[];
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.183.0",
4
+ "version": "3.185.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",
@@ -19,9 +19,9 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.183.0",
22
+ "@aws-sdk/client-sts": "3.185.0",
23
23
  "@aws-sdk/config-resolver": "3.183.0",
24
- "@aws-sdk/credential-provider-node": "3.183.0",
24
+ "@aws-sdk/credential-provider-node": "3.185.0",
25
25
  "@aws-sdk/fetch-http-handler": "3.183.0",
26
26
  "@aws-sdk/hash-node": "3.183.0",
27
27
  "@aws-sdk/invalid-dependency": "3.183.0",
@@ -29,13 +29,13 @@
29
29
  "@aws-sdk/middleware-host-header": "3.183.0",
30
30
  "@aws-sdk/middleware-logger": "3.183.0",
31
31
  "@aws-sdk/middleware-recursion-detection": "3.183.0",
32
- "@aws-sdk/middleware-retry": "3.183.0",
32
+ "@aws-sdk/middleware-retry": "3.185.0",
33
33
  "@aws-sdk/middleware-serde": "3.183.0",
34
34
  "@aws-sdk/middleware-signing": "3.183.0",
35
35
  "@aws-sdk/middleware-stack": "3.183.0",
36
36
  "@aws-sdk/middleware-user-agent": "3.183.0",
37
37
  "@aws-sdk/node-config-provider": "3.183.0",
38
- "@aws-sdk/node-http-handler": "3.183.0",
38
+ "@aws-sdk/node-http-handler": "3.185.0",
39
39
  "@aws-sdk/protocol-http": "3.183.0",
40
40
  "@aws-sdk/smithy-client": "3.183.0",
41
41
  "@aws-sdk/types": "3.183.0",