@aws-sdk/client-outposts 3.325.0 → 3.326.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-types/commands/CancelOrderCommand.d.ts +4 -0
- package/dist-types/commands/CreateOrderCommand.d.ts +37 -0
- package/dist-types/commands/CreateOutpostCommand.d.ts +21 -0
- package/dist-types/commands/CreateSiteCommand.d.ts +30 -0
- package/dist-types/commands/DeleteOutpostCommand.d.ts +4 -0
- package/dist-types/commands/DeleteSiteCommand.d.ts +4 -0
- package/dist-types/commands/GetCatalogItemCommand.d.ts +24 -0
- package/dist-types/commands/GetConnectionCommand.d.ts +16 -0
- package/dist-types/commands/GetOrderCommand.d.ts +37 -0
- package/dist-types/commands/GetOutpostCommand.d.ts +21 -0
- package/dist-types/commands/GetOutpostInstanceTypesCommand.d.ts +13 -0
- package/dist-types/commands/GetSiteAddressCommand.d.ts +20 -0
- package/dist-types/commands/GetSiteCommand.d.ts +30 -0
- package/dist-types/commands/ListAssetsCommand.d.ts +20 -0
- package/dist-types/commands/ListCatalogItemsCommand.d.ts +27 -0
- package/dist-types/commands/ListOrdersCommand.d.ts +19 -0
- package/dist-types/commands/ListOutpostsCommand.d.ts +24 -0
- package/dist-types/commands/ListSitesCommand.d.ts +33 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/StartConnectionCommand.d.ts +7 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateOutpostCommand.d.ts +21 -0
- package/dist-types/commands/UpdateSiteAddressCommand.d.ts +19 -0
- package/dist-types/commands/UpdateSiteCommand.d.ts +30 -0
- package/dist-types/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +30 -0
- package/package.json +3 -3
|
@@ -31,6 +31,8 @@ export interface CancelOrderCommandOutput extends CancelOrderOutput, __MetadataB
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new CancelOrderCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param CancelOrderCommandInput - {@link CancelOrderCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface CancelOrderCommandOutput extends CancelOrderOutput, __MetadataB
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* <p>A parameter is not valid.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link OutpostsServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class CancelOrderCommand extends $Command<CancelOrderCommandInput, CancelOrderCommandOutput, OutpostsClientResolvedConfig> {
|
|
@@ -39,6 +39,41 @@ export interface CreateOrderCommandOutput extends CreateOrderOutput, __MetadataB
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new CreateOrderCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // CreateOrderOutput
|
|
43
|
+
* // Order: { // Order
|
|
44
|
+
* // OutpostId: "STRING_VALUE",
|
|
45
|
+
* // OrderId: "STRING_VALUE",
|
|
46
|
+
* // Status: "RECEIVED" || "PENDING" || "PROCESSING" || "INSTALLING" || "FULFILLED" || "CANCELLED" || "PREPARING" || "IN_PROGRESS" || "COMPLETED" || "ERROR",
|
|
47
|
+
* // LineItems: [ // LineItemListDefinition
|
|
48
|
+
* // { // LineItem
|
|
49
|
+
* // CatalogItemId: "STRING_VALUE",
|
|
50
|
+
* // LineItemId: "STRING_VALUE",
|
|
51
|
+
* // Quantity: Number("int"),
|
|
52
|
+
* // Status: "PREPARING" || "BUILDING" || "SHIPPED" || "DELIVERED" || "INSTALLING" || "INSTALLED" || "ERROR" || "CANCELLED" || "REPLACED",
|
|
53
|
+
* // ShipmentInformation: { // ShipmentInformation
|
|
54
|
+
* // ShipmentTrackingNumber: "STRING_VALUE",
|
|
55
|
+
* // ShipmentCarrier: "DHL" || "DBS" || "FEDEX" || "UPS",
|
|
56
|
+
* // },
|
|
57
|
+
* // AssetInformationList: [ // LineItemAssetInformationList
|
|
58
|
+
* // { // LineItemAssetInformation
|
|
59
|
+
* // AssetId: "STRING_VALUE",
|
|
60
|
+
* // MacAddressList: [ // MacAddressList
|
|
61
|
+
* // "STRING_VALUE",
|
|
62
|
+
* // ],
|
|
63
|
+
* // },
|
|
64
|
+
* // ],
|
|
65
|
+
* // PreviousLineItemId: "STRING_VALUE",
|
|
66
|
+
* // PreviousOrderId: "STRING_VALUE",
|
|
67
|
+
* // },
|
|
68
|
+
* // ],
|
|
69
|
+
* // PaymentOption: "ALL_UPFRONT" || "NO_UPFRONT" || "PARTIAL_UPFRONT",
|
|
70
|
+
* // OrderSubmissionDate: new Date("TIMESTAMP"),
|
|
71
|
+
* // OrderFulfilledDate: new Date("TIMESTAMP"),
|
|
72
|
+
* // PaymentTerm: "THREE_YEARS" || "ONE_YEAR",
|
|
73
|
+
* // OrderType: "OUTPOST" || "REPLACEMENT",
|
|
74
|
+
* // },
|
|
75
|
+
* // };
|
|
76
|
+
*
|
|
42
77
|
* ```
|
|
43
78
|
*
|
|
44
79
|
* @param CreateOrderCommandInput - {@link CreateOrderCommandInput}
|
|
@@ -65,6 +100,8 @@ export interface CreateOrderCommandOutput extends CreateOrderOutput, __MetadataB
|
|
|
65
100
|
* @throws {@link ValidationException} (client fault)
|
|
66
101
|
* <p>A parameter is not valid.</p>
|
|
67
102
|
*
|
|
103
|
+
* @throws {@link OutpostsServiceException}
|
|
104
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
68
105
|
*
|
|
69
106
|
*/
|
|
70
107
|
export declare class CreateOrderCommand extends $Command<CreateOrderCommandInput, CreateOrderCommandOutput, OutpostsClientResolvedConfig> {
|
|
@@ -40,6 +40,25 @@ export interface CreateOutpostCommandOutput extends CreateOutpostOutput, __Metad
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new CreateOutpostCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // CreateOutpostOutput
|
|
44
|
+
* // Outpost: { // Outpost
|
|
45
|
+
* // OutpostId: "STRING_VALUE",
|
|
46
|
+
* // OwnerId: "STRING_VALUE",
|
|
47
|
+
* // OutpostArn: "STRING_VALUE",
|
|
48
|
+
* // SiteId: "STRING_VALUE",
|
|
49
|
+
* // Name: "STRING_VALUE",
|
|
50
|
+
* // Description: "STRING_VALUE",
|
|
51
|
+
* // LifeCycleStatus: "STRING_VALUE",
|
|
52
|
+
* // AvailabilityZone: "STRING_VALUE",
|
|
53
|
+
* // AvailabilityZoneId: "STRING_VALUE",
|
|
54
|
+
* // Tags: { // TagMap
|
|
55
|
+
* // "<keys>": "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // SiteArn: "STRING_VALUE",
|
|
58
|
+
* // SupportedHardwareType: "RACK" || "SERVER",
|
|
59
|
+
* // },
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
43
62
|
* ```
|
|
44
63
|
*
|
|
45
64
|
* @param CreateOutpostCommandInput - {@link CreateOutpostCommandInput}
|
|
@@ -66,6 +85,8 @@ export interface CreateOutpostCommandOutput extends CreateOutpostOutput, __Metad
|
|
|
66
85
|
* @throws {@link ValidationException} (client fault)
|
|
67
86
|
* <p>A parameter is not valid.</p>
|
|
68
87
|
*
|
|
88
|
+
* @throws {@link OutpostsServiceException}
|
|
89
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
69
90
|
*
|
|
70
91
|
*/
|
|
71
92
|
export declare class CreateOutpostCommand extends $Command<CreateOutpostCommandInput, CreateOutpostCommandOutput, OutpostsClientResolvedConfig> {
|
|
@@ -73,6 +73,34 @@ export interface CreateSiteCommandOutput extends CreateSiteOutput, __MetadataBea
|
|
|
73
73
|
* };
|
|
74
74
|
* const command = new CreateSiteCommand(input);
|
|
75
75
|
* const response = await client.send(command);
|
|
76
|
+
* // { // CreateSiteOutput
|
|
77
|
+
* // Site: { // Site
|
|
78
|
+
* // SiteId: "STRING_VALUE",
|
|
79
|
+
* // AccountId: "STRING_VALUE",
|
|
80
|
+
* // Name: "STRING_VALUE",
|
|
81
|
+
* // Description: "STRING_VALUE",
|
|
82
|
+
* // Tags: { // TagMap
|
|
83
|
+
* // "<keys>": "STRING_VALUE",
|
|
84
|
+
* // },
|
|
85
|
+
* // SiteArn: "STRING_VALUE",
|
|
86
|
+
* // Notes: "STRING_VALUE",
|
|
87
|
+
* // OperatingAddressCountryCode: "STRING_VALUE",
|
|
88
|
+
* // OperatingAddressStateOrRegion: "STRING_VALUE",
|
|
89
|
+
* // OperatingAddressCity: "STRING_VALUE",
|
|
90
|
+
* // RackPhysicalProperties: { // RackPhysicalProperties
|
|
91
|
+
* // PowerDrawKva: "POWER_5_KVA" || "POWER_10_KVA" || "POWER_15_KVA" || "POWER_30_KVA",
|
|
92
|
+
* // PowerPhase: "SINGLE_PHASE" || "THREE_PHASE",
|
|
93
|
+
* // PowerConnector: "L6_30P" || "IEC309" || "AH530P7W" || "AH532P6W",
|
|
94
|
+
* // PowerFeedDrop: "ABOVE_RACK" || "BELOW_RACK",
|
|
95
|
+
* // UplinkGbps: "UPLINK_1G" || "UPLINK_10G" || "UPLINK_40G" || "UPLINK_100G",
|
|
96
|
+
* // UplinkCount: "UPLINK_COUNT_1" || "UPLINK_COUNT_2" || "UPLINK_COUNT_3" || "UPLINK_COUNT_4" || "UPLINK_COUNT_5" || "UPLINK_COUNT_6" || "UPLINK_COUNT_7" || "UPLINK_COUNT_8" || "UPLINK_COUNT_12" || "UPLINK_COUNT_16",
|
|
97
|
+
* // FiberOpticCableType: "SINGLE_MODE" || "MULTI_MODE",
|
|
98
|
+
* // OpticalStandard: "OPTIC_10GBASE_SR" || "OPTIC_10GBASE_IR" || "OPTIC_10GBASE_LR" || "OPTIC_40GBASE_SR" || "OPTIC_40GBASE_ESR" || "OPTIC_40GBASE_IR4_LR4L" || "OPTIC_40GBASE_LR4" || "OPTIC_100GBASE_SR4" || "OPTIC_100GBASE_CWDM4" || "OPTIC_100GBASE_LR4" || "OPTIC_100G_PSM4_MSA" || "OPTIC_1000BASE_LX" || "OPTIC_1000BASE_SX",
|
|
99
|
+
* // MaximumSupportedWeightLbs: "NO_LIMIT" || "MAX_1400_LBS" || "MAX_1600_LBS" || "MAX_1800_LBS" || "MAX_2000_LBS",
|
|
100
|
+
* // },
|
|
101
|
+
* // },
|
|
102
|
+
* // };
|
|
103
|
+
*
|
|
76
104
|
* ```
|
|
77
105
|
*
|
|
78
106
|
* @param CreateSiteCommandInput - {@link CreateSiteCommandInput}
|
|
@@ -96,6 +124,8 @@ export interface CreateSiteCommandOutput extends CreateSiteOutput, __MetadataBea
|
|
|
96
124
|
* @throws {@link ValidationException} (client fault)
|
|
97
125
|
* <p>A parameter is not valid.</p>
|
|
98
126
|
*
|
|
127
|
+
* @throws {@link OutpostsServiceException}
|
|
128
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
99
129
|
*
|
|
100
130
|
*/
|
|
101
131
|
export declare class CreateSiteCommand extends $Command<CreateSiteCommandInput, CreateSiteCommandOutput, OutpostsClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteOutpostCommandOutput extends DeleteOutpostOutput, __Metad
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteOutpostCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteOutpostCommandInput - {@link DeleteOutpostCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DeleteOutpostCommandOutput extends DeleteOutpostOutput, __Metad
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* <p>A parameter is not valid.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link OutpostsServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class DeleteOutpostCommand extends $Command<DeleteOutpostCommandInput, DeleteOutpostCommandOutput, OutpostsClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteSiteCommandOutput extends DeleteSiteOutput, __MetadataBea
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteSiteCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteSiteCommandInput - {@link DeleteSiteCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DeleteSiteCommandOutput extends DeleteSiteOutput, __MetadataBea
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* <p>A parameter is not valid.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link OutpostsServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class DeleteSiteCommand extends $Command<DeleteSiteCommandInput, DeleteSiteCommandOutput, OutpostsClientResolvedConfig> {
|
|
@@ -31,6 +31,28 @@ export interface GetCatalogItemCommandOutput extends GetCatalogItemOutput, __Met
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetCatalogItemCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetCatalogItemOutput
|
|
35
|
+
* // CatalogItem: { // CatalogItem
|
|
36
|
+
* // CatalogItemId: "STRING_VALUE",
|
|
37
|
+
* // ItemStatus: "AVAILABLE" || "DISCONTINUED",
|
|
38
|
+
* // EC2Capacities: [ // EC2CapacityListDefinition
|
|
39
|
+
* // { // EC2Capacity
|
|
40
|
+
* // Family: "STRING_VALUE",
|
|
41
|
+
* // MaxSize: "STRING_VALUE",
|
|
42
|
+
* // Quantity: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // PowerKva: Number("float"),
|
|
46
|
+
* // WeightLbs: Number("int"),
|
|
47
|
+
* // SupportedUplinkGbps: [ // SupportedUplinkGbpsListDefinition
|
|
48
|
+
* // Number("int"),
|
|
49
|
+
* // ],
|
|
50
|
+
* // SupportedStorage: [ // SupportedStorageList
|
|
51
|
+
* // "EBS" || "S3",
|
|
52
|
+
* // ],
|
|
53
|
+
* // },
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
34
56
|
* ```
|
|
35
57
|
*
|
|
36
58
|
* @param GetCatalogItemCommandInput - {@link GetCatalogItemCommandInput}
|
|
@@ -48,6 +70,8 @@ export interface GetCatalogItemCommandOutput extends GetCatalogItemOutput, __Met
|
|
|
48
70
|
* @throws {@link ValidationException} (client fault)
|
|
49
71
|
* <p>A parameter is not valid.</p>
|
|
50
72
|
*
|
|
73
|
+
* @throws {@link OutpostsServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
51
75
|
*
|
|
52
76
|
*/
|
|
53
77
|
export declare class GetCatalogItemCommand extends $Command<GetCatalogItemCommandInput, GetCatalogItemCommandOutput, OutpostsClientResolvedConfig> {
|
|
@@ -41,6 +41,20 @@ export interface GetConnectionCommandOutput extends GetConnectionResponse, __Met
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new GetConnectionCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // GetConnectionResponse
|
|
45
|
+
* // ConnectionId: "STRING_VALUE",
|
|
46
|
+
* // ConnectionDetails: { // ConnectionDetails
|
|
47
|
+
* // ClientPublicKey: "STRING_VALUE",
|
|
48
|
+
* // ServerPublicKey: "STRING_VALUE",
|
|
49
|
+
* // ServerEndpoint: "STRING_VALUE",
|
|
50
|
+
* // ClientTunnelAddress: "STRING_VALUE",
|
|
51
|
+
* // ServerTunnelAddress: "STRING_VALUE",
|
|
52
|
+
* // AllowedIps: [ // CIDRList
|
|
53
|
+
* // "STRING_VALUE",
|
|
54
|
+
* // ],
|
|
55
|
+
* // },
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
44
58
|
* ```
|
|
45
59
|
*
|
|
46
60
|
* @param GetConnectionCommandInput - {@link GetConnectionCommandInput}
|
|
@@ -61,6 +75,8 @@ export interface GetConnectionCommandOutput extends GetConnectionResponse, __Met
|
|
|
61
75
|
* @throws {@link ValidationException} (client fault)
|
|
62
76
|
* <p>A parameter is not valid.</p>
|
|
63
77
|
*
|
|
78
|
+
* @throws {@link OutpostsServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
64
80
|
*
|
|
65
81
|
*/
|
|
66
82
|
export declare class GetConnectionCommand extends $Command<GetConnectionCommandInput, GetConnectionCommandOutput, OutpostsClientResolvedConfig> {
|
|
@@ -31,6 +31,41 @@ export interface GetOrderCommandOutput extends GetOrderOutput, __MetadataBearer
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetOrderCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetOrderOutput
|
|
35
|
+
* // Order: { // Order
|
|
36
|
+
* // OutpostId: "STRING_VALUE",
|
|
37
|
+
* // OrderId: "STRING_VALUE",
|
|
38
|
+
* // Status: "RECEIVED" || "PENDING" || "PROCESSING" || "INSTALLING" || "FULFILLED" || "CANCELLED" || "PREPARING" || "IN_PROGRESS" || "COMPLETED" || "ERROR",
|
|
39
|
+
* // LineItems: [ // LineItemListDefinition
|
|
40
|
+
* // { // LineItem
|
|
41
|
+
* // CatalogItemId: "STRING_VALUE",
|
|
42
|
+
* // LineItemId: "STRING_VALUE",
|
|
43
|
+
* // Quantity: Number("int"),
|
|
44
|
+
* // Status: "PREPARING" || "BUILDING" || "SHIPPED" || "DELIVERED" || "INSTALLING" || "INSTALLED" || "ERROR" || "CANCELLED" || "REPLACED",
|
|
45
|
+
* // ShipmentInformation: { // ShipmentInformation
|
|
46
|
+
* // ShipmentTrackingNumber: "STRING_VALUE",
|
|
47
|
+
* // ShipmentCarrier: "DHL" || "DBS" || "FEDEX" || "UPS",
|
|
48
|
+
* // },
|
|
49
|
+
* // AssetInformationList: [ // LineItemAssetInformationList
|
|
50
|
+
* // { // LineItemAssetInformation
|
|
51
|
+
* // AssetId: "STRING_VALUE",
|
|
52
|
+
* // MacAddressList: [ // MacAddressList
|
|
53
|
+
* // "STRING_VALUE",
|
|
54
|
+
* // ],
|
|
55
|
+
* // },
|
|
56
|
+
* // ],
|
|
57
|
+
* // PreviousLineItemId: "STRING_VALUE",
|
|
58
|
+
* // PreviousOrderId: "STRING_VALUE",
|
|
59
|
+
* // },
|
|
60
|
+
* // ],
|
|
61
|
+
* // PaymentOption: "ALL_UPFRONT" || "NO_UPFRONT" || "PARTIAL_UPFRONT",
|
|
62
|
+
* // OrderSubmissionDate: new Date("TIMESTAMP"),
|
|
63
|
+
* // OrderFulfilledDate: new Date("TIMESTAMP"),
|
|
64
|
+
* // PaymentTerm: "THREE_YEARS" || "ONE_YEAR",
|
|
65
|
+
* // OrderType: "OUTPOST" || "REPLACEMENT",
|
|
66
|
+
* // },
|
|
67
|
+
* // };
|
|
68
|
+
*
|
|
34
69
|
* ```
|
|
35
70
|
*
|
|
36
71
|
* @param GetOrderCommandInput - {@link GetOrderCommandInput}
|
|
@@ -48,6 +83,8 @@ export interface GetOrderCommandOutput extends GetOrderOutput, __MetadataBearer
|
|
|
48
83
|
* @throws {@link ValidationException} (client fault)
|
|
49
84
|
* <p>A parameter is not valid.</p>
|
|
50
85
|
*
|
|
86
|
+
* @throws {@link OutpostsServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
51
88
|
*
|
|
52
89
|
*/
|
|
53
90
|
export declare class GetOrderCommand extends $Command<GetOrderCommandInput, GetOrderCommandOutput, OutpostsClientResolvedConfig> {
|
|
@@ -31,6 +31,25 @@ export interface GetOutpostCommandOutput extends GetOutpostOutput, __MetadataBea
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetOutpostCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetOutpostOutput
|
|
35
|
+
* // Outpost: { // Outpost
|
|
36
|
+
* // OutpostId: "STRING_VALUE",
|
|
37
|
+
* // OwnerId: "STRING_VALUE",
|
|
38
|
+
* // OutpostArn: "STRING_VALUE",
|
|
39
|
+
* // SiteId: "STRING_VALUE",
|
|
40
|
+
* // Name: "STRING_VALUE",
|
|
41
|
+
* // Description: "STRING_VALUE",
|
|
42
|
+
* // LifeCycleStatus: "STRING_VALUE",
|
|
43
|
+
* // AvailabilityZone: "STRING_VALUE",
|
|
44
|
+
* // AvailabilityZoneId: "STRING_VALUE",
|
|
45
|
+
* // Tags: { // TagMap
|
|
46
|
+
* // "<keys>": "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // SiteArn: "STRING_VALUE",
|
|
49
|
+
* // SupportedHardwareType: "RACK" || "SERVER",
|
|
50
|
+
* // },
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
34
53
|
* ```
|
|
35
54
|
*
|
|
36
55
|
* @param GetOutpostCommandInput - {@link GetOutpostCommandInput}
|
|
@@ -51,6 +70,8 @@ export interface GetOutpostCommandOutput extends GetOutpostOutput, __MetadataBea
|
|
|
51
70
|
* @throws {@link ValidationException} (client fault)
|
|
52
71
|
* <p>A parameter is not valid.</p>
|
|
53
72
|
*
|
|
73
|
+
* @throws {@link OutpostsServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
54
75
|
*
|
|
55
76
|
*/
|
|
56
77
|
export declare class GetOutpostCommand extends $Command<GetOutpostCommandInput, GetOutpostCommandOutput, OutpostsClientResolvedConfig> {
|
|
@@ -33,6 +33,17 @@ export interface GetOutpostInstanceTypesCommandOutput extends GetOutpostInstance
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetOutpostInstanceTypesCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetOutpostInstanceTypesOutput
|
|
37
|
+
* // InstanceTypes: [ // InstanceTypeListDefinition
|
|
38
|
+
* // { // InstanceTypeItem
|
|
39
|
+
* // InstanceType: "STRING_VALUE",
|
|
40
|
+
* // },
|
|
41
|
+
* // ],
|
|
42
|
+
* // NextToken: "STRING_VALUE",
|
|
43
|
+
* // OutpostId: "STRING_VALUE",
|
|
44
|
+
* // OutpostArn: "STRING_VALUE",
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
36
47
|
* ```
|
|
37
48
|
*
|
|
38
49
|
* @param GetOutpostInstanceTypesCommandInput - {@link GetOutpostInstanceTypesCommandInput}
|
|
@@ -53,6 +64,8 @@ export interface GetOutpostInstanceTypesCommandOutput extends GetOutpostInstance
|
|
|
53
64
|
* @throws {@link ValidationException} (client fault)
|
|
54
65
|
* <p>A parameter is not valid.</p>
|
|
55
66
|
*
|
|
67
|
+
* @throws {@link OutpostsServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
56
69
|
*
|
|
57
70
|
*/
|
|
58
71
|
export declare class GetOutpostInstanceTypesCommand extends $Command<GetOutpostInstanceTypesCommandInput, GetOutpostInstanceTypesCommandOutput, OutpostsClientResolvedConfig> {
|
|
@@ -32,6 +32,24 @@ export interface GetSiteAddressCommandOutput extends GetSiteAddressOutput, __Met
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetSiteAddressCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetSiteAddressOutput
|
|
36
|
+
* // SiteId: "STRING_VALUE",
|
|
37
|
+
* // AddressType: "SHIPPING_ADDRESS" || "OPERATING_ADDRESS",
|
|
38
|
+
* // Address: { // Address
|
|
39
|
+
* // ContactName: "STRING_VALUE",
|
|
40
|
+
* // ContactPhoneNumber: "STRING_VALUE",
|
|
41
|
+
* // AddressLine1: "STRING_VALUE", // required
|
|
42
|
+
* // AddressLine2: "STRING_VALUE",
|
|
43
|
+
* // AddressLine3: "STRING_VALUE",
|
|
44
|
+
* // City: "STRING_VALUE", // required
|
|
45
|
+
* // StateOrRegion: "STRING_VALUE", // required
|
|
46
|
+
* // DistrictOrCounty: "STRING_VALUE",
|
|
47
|
+
* // PostalCode: "STRING_VALUE", // required
|
|
48
|
+
* // CountryCode: "STRING_VALUE", // required
|
|
49
|
+
* // Municipality: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
35
53
|
* ```
|
|
36
54
|
*
|
|
37
55
|
* @param GetSiteAddressCommandInput - {@link GetSiteAddressCommandInput}
|
|
@@ -52,6 +70,8 @@ export interface GetSiteAddressCommandOutput extends GetSiteAddressOutput, __Met
|
|
|
52
70
|
* @throws {@link ValidationException} (client fault)
|
|
53
71
|
* <p>A parameter is not valid.</p>
|
|
54
72
|
*
|
|
73
|
+
* @throws {@link OutpostsServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
55
75
|
*
|
|
56
76
|
*/
|
|
57
77
|
export declare class GetSiteAddressCommand extends $Command<GetSiteAddressCommandInput, GetSiteAddressCommandOutput, OutpostsClientResolvedConfig> {
|
|
@@ -31,6 +31,34 @@ export interface GetSiteCommandOutput extends GetSiteOutput, __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetSiteCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetSiteOutput
|
|
35
|
+
* // Site: { // Site
|
|
36
|
+
* // SiteId: "STRING_VALUE",
|
|
37
|
+
* // AccountId: "STRING_VALUE",
|
|
38
|
+
* // Name: "STRING_VALUE",
|
|
39
|
+
* // Description: "STRING_VALUE",
|
|
40
|
+
* // Tags: { // TagMap
|
|
41
|
+
* // "<keys>": "STRING_VALUE",
|
|
42
|
+
* // },
|
|
43
|
+
* // SiteArn: "STRING_VALUE",
|
|
44
|
+
* // Notes: "STRING_VALUE",
|
|
45
|
+
* // OperatingAddressCountryCode: "STRING_VALUE",
|
|
46
|
+
* // OperatingAddressStateOrRegion: "STRING_VALUE",
|
|
47
|
+
* // OperatingAddressCity: "STRING_VALUE",
|
|
48
|
+
* // RackPhysicalProperties: { // RackPhysicalProperties
|
|
49
|
+
* // PowerDrawKva: "POWER_5_KVA" || "POWER_10_KVA" || "POWER_15_KVA" || "POWER_30_KVA",
|
|
50
|
+
* // PowerPhase: "SINGLE_PHASE" || "THREE_PHASE",
|
|
51
|
+
* // PowerConnector: "L6_30P" || "IEC309" || "AH530P7W" || "AH532P6W",
|
|
52
|
+
* // PowerFeedDrop: "ABOVE_RACK" || "BELOW_RACK",
|
|
53
|
+
* // UplinkGbps: "UPLINK_1G" || "UPLINK_10G" || "UPLINK_40G" || "UPLINK_100G",
|
|
54
|
+
* // UplinkCount: "UPLINK_COUNT_1" || "UPLINK_COUNT_2" || "UPLINK_COUNT_3" || "UPLINK_COUNT_4" || "UPLINK_COUNT_5" || "UPLINK_COUNT_6" || "UPLINK_COUNT_7" || "UPLINK_COUNT_8" || "UPLINK_COUNT_12" || "UPLINK_COUNT_16",
|
|
55
|
+
* // FiberOpticCableType: "SINGLE_MODE" || "MULTI_MODE",
|
|
56
|
+
* // OpticalStandard: "OPTIC_10GBASE_SR" || "OPTIC_10GBASE_IR" || "OPTIC_10GBASE_LR" || "OPTIC_40GBASE_SR" || "OPTIC_40GBASE_ESR" || "OPTIC_40GBASE_IR4_LR4L" || "OPTIC_40GBASE_LR4" || "OPTIC_100GBASE_SR4" || "OPTIC_100GBASE_CWDM4" || "OPTIC_100GBASE_LR4" || "OPTIC_100G_PSM4_MSA" || "OPTIC_1000BASE_LX" || "OPTIC_1000BASE_SX",
|
|
57
|
+
* // MaximumSupportedWeightLbs: "NO_LIMIT" || "MAX_1400_LBS" || "MAX_1600_LBS" || "MAX_1800_LBS" || "MAX_2000_LBS",
|
|
58
|
+
* // },
|
|
59
|
+
* // },
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
34
62
|
* ```
|
|
35
63
|
*
|
|
36
64
|
* @param GetSiteCommandInput - {@link GetSiteCommandInput}
|
|
@@ -51,6 +79,8 @@ export interface GetSiteCommandOutput extends GetSiteOutput, __MetadataBearer {
|
|
|
51
79
|
* @throws {@link ValidationException} (client fault)
|
|
52
80
|
* <p>A parameter is not valid.</p>
|
|
53
81
|
*
|
|
82
|
+
* @throws {@link OutpostsServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
54
84
|
*
|
|
55
85
|
*/
|
|
56
86
|
export declare class GetSiteCommand extends $Command<GetSiteCommandInput, GetSiteCommandOutput, OutpostsClientResolvedConfig> {
|
|
@@ -42,6 +42,24 @@ export interface ListAssetsCommandOutput extends ListAssetsOutput, __MetadataBea
|
|
|
42
42
|
* };
|
|
43
43
|
* const command = new ListAssetsCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
45
|
+
* // { // ListAssetsOutput
|
|
46
|
+
* // Assets: [ // AssetListDefinition
|
|
47
|
+
* // { // AssetInfo
|
|
48
|
+
* // AssetId: "STRING_VALUE",
|
|
49
|
+
* // RackId: "STRING_VALUE",
|
|
50
|
+
* // AssetType: "COMPUTE",
|
|
51
|
+
* // ComputeAttributes: { // ComputeAttributes
|
|
52
|
+
* // HostId: "STRING_VALUE",
|
|
53
|
+
* // State: "ACTIVE" || "ISOLATED" || "RETIRING",
|
|
54
|
+
* // },
|
|
55
|
+
* // AssetLocation: { // AssetLocation
|
|
56
|
+
* // RackElevation: Number("float"),
|
|
57
|
+
* // },
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // NextToken: "STRING_VALUE",
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
45
63
|
* ```
|
|
46
64
|
*
|
|
47
65
|
* @param ListAssetsCommandInput - {@link ListAssetsCommandInput}
|
|
@@ -62,6 +80,8 @@ export interface ListAssetsCommandOutput extends ListAssetsOutput, __MetadataBea
|
|
|
62
80
|
* @throws {@link ValidationException} (client fault)
|
|
63
81
|
* <p>A parameter is not valid.</p>
|
|
64
82
|
*
|
|
83
|
+
* @throws {@link OutpostsServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
65
85
|
*
|
|
66
86
|
*/
|
|
67
87
|
export declare class ListAssetsCommand extends $Command<ListAssetsCommandInput, ListAssetsCommandOutput, OutpostsClientResolvedConfig> {
|
|
@@ -44,6 +44,31 @@ export interface ListCatalogItemsCommandOutput extends ListCatalogItemsOutput, _
|
|
|
44
44
|
* };
|
|
45
45
|
* const command = new ListCatalogItemsCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
47
|
+
* // { // ListCatalogItemsOutput
|
|
48
|
+
* // CatalogItems: [ // CatalogItemListDefinition
|
|
49
|
+
* // { // CatalogItem
|
|
50
|
+
* // CatalogItemId: "STRING_VALUE",
|
|
51
|
+
* // ItemStatus: "AVAILABLE" || "DISCONTINUED",
|
|
52
|
+
* // EC2Capacities: [ // EC2CapacityListDefinition
|
|
53
|
+
* // { // EC2Capacity
|
|
54
|
+
* // Family: "STRING_VALUE",
|
|
55
|
+
* // MaxSize: "STRING_VALUE",
|
|
56
|
+
* // Quantity: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // PowerKva: Number("float"),
|
|
60
|
+
* // WeightLbs: Number("int"),
|
|
61
|
+
* // SupportedUplinkGbps: [ // SupportedUplinkGbpsListDefinition
|
|
62
|
+
* // Number("int"),
|
|
63
|
+
* // ],
|
|
64
|
+
* // SupportedStorage: [ // SupportedStorageList
|
|
65
|
+
* // "EBS" || "S3",
|
|
66
|
+
* // ],
|
|
67
|
+
* // },
|
|
68
|
+
* // ],
|
|
69
|
+
* // NextToken: "STRING_VALUE",
|
|
70
|
+
* // };
|
|
71
|
+
*
|
|
47
72
|
* ```
|
|
48
73
|
*
|
|
49
74
|
* @param ListCatalogItemsCommandInput - {@link ListCatalogItemsCommandInput}
|
|
@@ -61,6 +86,8 @@ export interface ListCatalogItemsCommandOutput extends ListCatalogItemsOutput, _
|
|
|
61
86
|
* @throws {@link ValidationException} (client fault)
|
|
62
87
|
* <p>A parameter is not valid.</p>
|
|
63
88
|
*
|
|
89
|
+
* @throws {@link OutpostsServiceException}
|
|
90
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
64
91
|
*
|
|
65
92
|
*/
|
|
66
93
|
export declare class ListCatalogItemsCommand extends $Command<ListCatalogItemsCommandInput, ListCatalogItemsCommandOutput, OutpostsClientResolvedConfig> {
|
|
@@ -33,6 +33,23 @@ export interface ListOrdersCommandOutput extends ListOrdersOutput, __MetadataBea
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListOrdersCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListOrdersOutput
|
|
37
|
+
* // Orders: [ // OrderSummaryListDefinition
|
|
38
|
+
* // { // OrderSummary
|
|
39
|
+
* // OutpostId: "STRING_VALUE",
|
|
40
|
+
* // OrderId: "STRING_VALUE",
|
|
41
|
+
* // OrderType: "OUTPOST" || "REPLACEMENT",
|
|
42
|
+
* // Status: "RECEIVED" || "PENDING" || "PROCESSING" || "INSTALLING" || "FULFILLED" || "CANCELLED" || "PREPARING" || "IN_PROGRESS" || "COMPLETED" || "ERROR",
|
|
43
|
+
* // LineItemCountsByStatus: { // LineItemStatusCounts
|
|
44
|
+
* // "<keys>": Number("int"),
|
|
45
|
+
* // },
|
|
46
|
+
* // OrderSubmissionDate: new Date("TIMESTAMP"),
|
|
47
|
+
* // OrderFulfilledDate: new Date("TIMESTAMP"),
|
|
48
|
+
* // },
|
|
49
|
+
* // ],
|
|
50
|
+
* // NextToken: "STRING_VALUE",
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
36
53
|
* ```
|
|
37
54
|
*
|
|
38
55
|
* @param ListOrdersCommandInput - {@link ListOrdersCommandInput}
|
|
@@ -53,6 +70,8 @@ export interface ListOrdersCommandOutput extends ListOrdersOutput, __MetadataBea
|
|
|
53
70
|
* @throws {@link ValidationException} (client fault)
|
|
54
71
|
* <p>A parameter is not valid.</p>
|
|
55
72
|
*
|
|
73
|
+
* @throws {@link OutpostsServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
56
75
|
*
|
|
57
76
|
*/
|
|
58
77
|
export declare class ListOrdersCommand extends $Command<ListOrdersCommandInput, ListOrdersCommandOutput, OutpostsClientResolvedConfig> {
|
|
@@ -44,6 +44,28 @@ export interface ListOutpostsCommandOutput extends ListOutpostsOutput, __Metadat
|
|
|
44
44
|
* };
|
|
45
45
|
* const command = new ListOutpostsCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
47
|
+
* // { // ListOutpostsOutput
|
|
48
|
+
* // Outposts: [ // outpostListDefinition
|
|
49
|
+
* // { // Outpost
|
|
50
|
+
* // OutpostId: "STRING_VALUE",
|
|
51
|
+
* // OwnerId: "STRING_VALUE",
|
|
52
|
+
* // OutpostArn: "STRING_VALUE",
|
|
53
|
+
* // SiteId: "STRING_VALUE",
|
|
54
|
+
* // Name: "STRING_VALUE",
|
|
55
|
+
* // Description: "STRING_VALUE",
|
|
56
|
+
* // LifeCycleStatus: "STRING_VALUE",
|
|
57
|
+
* // AvailabilityZone: "STRING_VALUE",
|
|
58
|
+
* // AvailabilityZoneId: "STRING_VALUE",
|
|
59
|
+
* // Tags: { // TagMap
|
|
60
|
+
* // "<keys>": "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // SiteArn: "STRING_VALUE",
|
|
63
|
+
* // SupportedHardwareType: "RACK" || "SERVER",
|
|
64
|
+
* // },
|
|
65
|
+
* // ],
|
|
66
|
+
* // NextToken: "STRING_VALUE",
|
|
67
|
+
* // };
|
|
68
|
+
*
|
|
47
69
|
* ```
|
|
48
70
|
*
|
|
49
71
|
* @param ListOutpostsCommandInput - {@link ListOutpostsCommandInput}
|
|
@@ -61,6 +83,8 @@ export interface ListOutpostsCommandOutput extends ListOutpostsOutput, __Metadat
|
|
|
61
83
|
* @throws {@link ValidationException} (client fault)
|
|
62
84
|
* <p>A parameter is not valid.</p>
|
|
63
85
|
*
|
|
86
|
+
* @throws {@link OutpostsServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
64
88
|
*
|
|
65
89
|
*/
|
|
66
90
|
export declare class ListOutpostsCommand extends $Command<ListOutpostsCommandInput, ListOutpostsCommandOutput, OutpostsClientResolvedConfig> {
|
|
@@ -45,6 +45,37 @@ export interface ListSitesCommandOutput extends ListSitesOutput, __MetadataBeare
|
|
|
45
45
|
* };
|
|
46
46
|
* const command = new ListSitesCommand(input);
|
|
47
47
|
* const response = await client.send(command);
|
|
48
|
+
* // { // ListSitesOutput
|
|
49
|
+
* // Sites: [ // siteListDefinition
|
|
50
|
+
* // { // Site
|
|
51
|
+
* // SiteId: "STRING_VALUE",
|
|
52
|
+
* // AccountId: "STRING_VALUE",
|
|
53
|
+
* // Name: "STRING_VALUE",
|
|
54
|
+
* // Description: "STRING_VALUE",
|
|
55
|
+
* // Tags: { // TagMap
|
|
56
|
+
* // "<keys>": "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // SiteArn: "STRING_VALUE",
|
|
59
|
+
* // Notes: "STRING_VALUE",
|
|
60
|
+
* // OperatingAddressCountryCode: "STRING_VALUE",
|
|
61
|
+
* // OperatingAddressStateOrRegion: "STRING_VALUE",
|
|
62
|
+
* // OperatingAddressCity: "STRING_VALUE",
|
|
63
|
+
* // RackPhysicalProperties: { // RackPhysicalProperties
|
|
64
|
+
* // PowerDrawKva: "POWER_5_KVA" || "POWER_10_KVA" || "POWER_15_KVA" || "POWER_30_KVA",
|
|
65
|
+
* // PowerPhase: "SINGLE_PHASE" || "THREE_PHASE",
|
|
66
|
+
* // PowerConnector: "L6_30P" || "IEC309" || "AH530P7W" || "AH532P6W",
|
|
67
|
+
* // PowerFeedDrop: "ABOVE_RACK" || "BELOW_RACK",
|
|
68
|
+
* // UplinkGbps: "UPLINK_1G" || "UPLINK_10G" || "UPLINK_40G" || "UPLINK_100G",
|
|
69
|
+
* // UplinkCount: "UPLINK_COUNT_1" || "UPLINK_COUNT_2" || "UPLINK_COUNT_3" || "UPLINK_COUNT_4" || "UPLINK_COUNT_5" || "UPLINK_COUNT_6" || "UPLINK_COUNT_7" || "UPLINK_COUNT_8" || "UPLINK_COUNT_12" || "UPLINK_COUNT_16",
|
|
70
|
+
* // FiberOpticCableType: "SINGLE_MODE" || "MULTI_MODE",
|
|
71
|
+
* // OpticalStandard: "OPTIC_10GBASE_SR" || "OPTIC_10GBASE_IR" || "OPTIC_10GBASE_LR" || "OPTIC_40GBASE_SR" || "OPTIC_40GBASE_ESR" || "OPTIC_40GBASE_IR4_LR4L" || "OPTIC_40GBASE_LR4" || "OPTIC_100GBASE_SR4" || "OPTIC_100GBASE_CWDM4" || "OPTIC_100GBASE_LR4" || "OPTIC_100G_PSM4_MSA" || "OPTIC_1000BASE_LX" || "OPTIC_1000BASE_SX",
|
|
72
|
+
* // MaximumSupportedWeightLbs: "NO_LIMIT" || "MAX_1400_LBS" || "MAX_1600_LBS" || "MAX_1800_LBS" || "MAX_2000_LBS",
|
|
73
|
+
* // },
|
|
74
|
+
* // },
|
|
75
|
+
* // ],
|
|
76
|
+
* // NextToken: "STRING_VALUE",
|
|
77
|
+
* // };
|
|
78
|
+
*
|
|
48
79
|
* ```
|
|
49
80
|
*
|
|
50
81
|
* @param ListSitesCommandInput - {@link ListSitesCommandInput}
|
|
@@ -62,6 +93,8 @@ export interface ListSitesCommandOutput extends ListSitesOutput, __MetadataBeare
|
|
|
62
93
|
* @throws {@link ValidationException} (client fault)
|
|
63
94
|
* <p>A parameter is not valid.</p>
|
|
64
95
|
*
|
|
96
|
+
* @throws {@link OutpostsServiceException}
|
|
97
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
65
98
|
*
|
|
66
99
|
*/
|
|
67
100
|
export declare class ListSitesCommand extends $Command<ListSitesCommandInput, ListSitesCommandOutput, OutpostsClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // Tags: { // TagMap
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -48,6 +54,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
48
54
|
* @throws {@link ValidationException} (client fault)
|
|
49
55
|
* <p>A parameter is not valid.</p>
|
|
50
56
|
*
|
|
57
|
+
* @throws {@link OutpostsServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
51
59
|
*
|
|
52
60
|
*/
|
|
53
61
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, OutpostsClientResolvedConfig> {
|
|
@@ -44,6 +44,11 @@ export interface StartConnectionCommandOutput extends StartConnectionResponse, _
|
|
|
44
44
|
* };
|
|
45
45
|
* const command = new StartConnectionCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
47
|
+
* // { // StartConnectionResponse
|
|
48
|
+
* // ConnectionId: "STRING_VALUE",
|
|
49
|
+
* // UnderlayIpAddress: "STRING_VALUE",
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
47
52
|
* ```
|
|
48
53
|
*
|
|
49
54
|
* @param StartConnectionCommandInput - {@link StartConnectionCommandInput}
|
|
@@ -64,6 +69,8 @@ export interface StartConnectionCommandOutput extends StartConnectionResponse, _
|
|
|
64
69
|
* @throws {@link ValidationException} (client fault)
|
|
65
70
|
* <p>A parameter is not valid.</p>
|
|
66
71
|
*
|
|
72
|
+
* @throws {@link OutpostsServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
67
74
|
*
|
|
68
75
|
*/
|
|
69
76
|
export declare class StartConnectionCommand extends $Command<StartConnectionCommandInput, StartConnectionCommandOutput, OutpostsClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new TagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -51,6 +53,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
51
53
|
* @throws {@link ValidationException} (client fault)
|
|
52
54
|
* <p>A parameter is not valid.</p>
|
|
53
55
|
*
|
|
56
|
+
* @throws {@link OutpostsServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
54
58
|
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, OutpostsClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -51,6 +53,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
51
53
|
* @throws {@link ValidationException} (client fault)
|
|
52
54
|
* <p>A parameter is not valid.</p>
|
|
53
55
|
*
|
|
56
|
+
* @throws {@link OutpostsServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
54
58
|
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, OutpostsClientResolvedConfig> {
|
|
@@ -34,6 +34,25 @@ export interface UpdateOutpostCommandOutput extends UpdateOutpostOutput, __Metad
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UpdateOutpostCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // UpdateOutpostOutput
|
|
38
|
+
* // Outpost: { // Outpost
|
|
39
|
+
* // OutpostId: "STRING_VALUE",
|
|
40
|
+
* // OwnerId: "STRING_VALUE",
|
|
41
|
+
* // OutpostArn: "STRING_VALUE",
|
|
42
|
+
* // SiteId: "STRING_VALUE",
|
|
43
|
+
* // Name: "STRING_VALUE",
|
|
44
|
+
* // Description: "STRING_VALUE",
|
|
45
|
+
* // LifeCycleStatus: "STRING_VALUE",
|
|
46
|
+
* // AvailabilityZone: "STRING_VALUE",
|
|
47
|
+
* // AvailabilityZoneId: "STRING_VALUE",
|
|
48
|
+
* // Tags: { // TagMap
|
|
49
|
+
* // "<keys>": "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // SiteArn: "STRING_VALUE",
|
|
52
|
+
* // SupportedHardwareType: "RACK" || "SERVER",
|
|
53
|
+
* // },
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
37
56
|
* ```
|
|
38
57
|
*
|
|
39
58
|
* @param UpdateOutpostCommandInput - {@link UpdateOutpostCommandInput}
|
|
@@ -57,6 +76,8 @@ export interface UpdateOutpostCommandOutput extends UpdateOutpostOutput, __Metad
|
|
|
57
76
|
* @throws {@link ValidationException} (client fault)
|
|
58
77
|
* <p>A parameter is not valid.</p>
|
|
59
78
|
*
|
|
79
|
+
* @throws {@link OutpostsServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
60
81
|
*
|
|
61
82
|
*/
|
|
62
83
|
export declare class UpdateOutpostCommand extends $Command<UpdateOutpostCommandInput, UpdateOutpostCommandOutput, OutpostsClientResolvedConfig> {
|
|
@@ -49,6 +49,23 @@ export interface UpdateSiteAddressCommandOutput extends UpdateSiteAddressOutput,
|
|
|
49
49
|
* };
|
|
50
50
|
* const command = new UpdateSiteAddressCommand(input);
|
|
51
51
|
* const response = await client.send(command);
|
|
52
|
+
* // { // UpdateSiteAddressOutput
|
|
53
|
+
* // AddressType: "SHIPPING_ADDRESS" || "OPERATING_ADDRESS",
|
|
54
|
+
* // Address: { // Address
|
|
55
|
+
* // ContactName: "STRING_VALUE",
|
|
56
|
+
* // ContactPhoneNumber: "STRING_VALUE",
|
|
57
|
+
* // AddressLine1: "STRING_VALUE", // required
|
|
58
|
+
* // AddressLine2: "STRING_VALUE",
|
|
59
|
+
* // AddressLine3: "STRING_VALUE",
|
|
60
|
+
* // City: "STRING_VALUE", // required
|
|
61
|
+
* // StateOrRegion: "STRING_VALUE", // required
|
|
62
|
+
* // DistrictOrCounty: "STRING_VALUE",
|
|
63
|
+
* // PostalCode: "STRING_VALUE", // required
|
|
64
|
+
* // CountryCode: "STRING_VALUE", // required
|
|
65
|
+
* // Municipality: "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // };
|
|
68
|
+
*
|
|
52
69
|
* ```
|
|
53
70
|
*
|
|
54
71
|
* @param UpdateSiteAddressCommandInput - {@link UpdateSiteAddressCommandInput}
|
|
@@ -72,6 +89,8 @@ export interface UpdateSiteAddressCommandOutput extends UpdateSiteAddressOutput,
|
|
|
72
89
|
* @throws {@link ValidationException} (client fault)
|
|
73
90
|
* <p>A parameter is not valid.</p>
|
|
74
91
|
*
|
|
92
|
+
* @throws {@link OutpostsServiceException}
|
|
93
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
75
94
|
*
|
|
76
95
|
*/
|
|
77
96
|
export declare class UpdateSiteAddressCommand extends $Command<UpdateSiteAddressCommandInput, UpdateSiteAddressCommandOutput, OutpostsClientResolvedConfig> {
|
|
@@ -34,6 +34,34 @@ export interface UpdateSiteCommandOutput extends UpdateSiteOutput, __MetadataBea
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UpdateSiteCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // UpdateSiteOutput
|
|
38
|
+
* // Site: { // Site
|
|
39
|
+
* // SiteId: "STRING_VALUE",
|
|
40
|
+
* // AccountId: "STRING_VALUE",
|
|
41
|
+
* // Name: "STRING_VALUE",
|
|
42
|
+
* // Description: "STRING_VALUE",
|
|
43
|
+
* // Tags: { // TagMap
|
|
44
|
+
* // "<keys>": "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // SiteArn: "STRING_VALUE",
|
|
47
|
+
* // Notes: "STRING_VALUE",
|
|
48
|
+
* // OperatingAddressCountryCode: "STRING_VALUE",
|
|
49
|
+
* // OperatingAddressStateOrRegion: "STRING_VALUE",
|
|
50
|
+
* // OperatingAddressCity: "STRING_VALUE",
|
|
51
|
+
* // RackPhysicalProperties: { // RackPhysicalProperties
|
|
52
|
+
* // PowerDrawKva: "POWER_5_KVA" || "POWER_10_KVA" || "POWER_15_KVA" || "POWER_30_KVA",
|
|
53
|
+
* // PowerPhase: "SINGLE_PHASE" || "THREE_PHASE",
|
|
54
|
+
* // PowerConnector: "L6_30P" || "IEC309" || "AH530P7W" || "AH532P6W",
|
|
55
|
+
* // PowerFeedDrop: "ABOVE_RACK" || "BELOW_RACK",
|
|
56
|
+
* // UplinkGbps: "UPLINK_1G" || "UPLINK_10G" || "UPLINK_40G" || "UPLINK_100G",
|
|
57
|
+
* // UplinkCount: "UPLINK_COUNT_1" || "UPLINK_COUNT_2" || "UPLINK_COUNT_3" || "UPLINK_COUNT_4" || "UPLINK_COUNT_5" || "UPLINK_COUNT_6" || "UPLINK_COUNT_7" || "UPLINK_COUNT_8" || "UPLINK_COUNT_12" || "UPLINK_COUNT_16",
|
|
58
|
+
* // FiberOpticCableType: "SINGLE_MODE" || "MULTI_MODE",
|
|
59
|
+
* // OpticalStandard: "OPTIC_10GBASE_SR" || "OPTIC_10GBASE_IR" || "OPTIC_10GBASE_LR" || "OPTIC_40GBASE_SR" || "OPTIC_40GBASE_ESR" || "OPTIC_40GBASE_IR4_LR4L" || "OPTIC_40GBASE_LR4" || "OPTIC_100GBASE_SR4" || "OPTIC_100GBASE_CWDM4" || "OPTIC_100GBASE_LR4" || "OPTIC_100G_PSM4_MSA" || "OPTIC_1000BASE_LX" || "OPTIC_1000BASE_SX",
|
|
60
|
+
* // MaximumSupportedWeightLbs: "NO_LIMIT" || "MAX_1400_LBS" || "MAX_1600_LBS" || "MAX_1800_LBS" || "MAX_2000_LBS",
|
|
61
|
+
* // },
|
|
62
|
+
* // },
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
37
65
|
* ```
|
|
38
66
|
*
|
|
39
67
|
* @param UpdateSiteCommandInput - {@link UpdateSiteCommandInput}
|
|
@@ -57,6 +85,8 @@ export interface UpdateSiteCommandOutput extends UpdateSiteOutput, __MetadataBea
|
|
|
57
85
|
* @throws {@link ValidationException} (client fault)
|
|
58
86
|
* <p>A parameter is not valid.</p>
|
|
59
87
|
*
|
|
88
|
+
* @throws {@link OutpostsServiceException}
|
|
89
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
60
90
|
*
|
|
61
91
|
*/
|
|
62
92
|
export declare class UpdateSiteCommand extends $Command<UpdateSiteCommandInput, UpdateSiteCommandOutput, OutpostsClientResolvedConfig> {
|
|
@@ -45,6 +45,34 @@ export interface UpdateSiteRackPhysicalPropertiesCommandOutput extends UpdateSit
|
|
|
45
45
|
* };
|
|
46
46
|
* const command = new UpdateSiteRackPhysicalPropertiesCommand(input);
|
|
47
47
|
* const response = await client.send(command);
|
|
48
|
+
* // { // UpdateSiteRackPhysicalPropertiesOutput
|
|
49
|
+
* // Site: { // Site
|
|
50
|
+
* // SiteId: "STRING_VALUE",
|
|
51
|
+
* // AccountId: "STRING_VALUE",
|
|
52
|
+
* // Name: "STRING_VALUE",
|
|
53
|
+
* // Description: "STRING_VALUE",
|
|
54
|
+
* // Tags: { // TagMap
|
|
55
|
+
* // "<keys>": "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // SiteArn: "STRING_VALUE",
|
|
58
|
+
* // Notes: "STRING_VALUE",
|
|
59
|
+
* // OperatingAddressCountryCode: "STRING_VALUE",
|
|
60
|
+
* // OperatingAddressStateOrRegion: "STRING_VALUE",
|
|
61
|
+
* // OperatingAddressCity: "STRING_VALUE",
|
|
62
|
+
* // RackPhysicalProperties: { // RackPhysicalProperties
|
|
63
|
+
* // PowerDrawKva: "POWER_5_KVA" || "POWER_10_KVA" || "POWER_15_KVA" || "POWER_30_KVA",
|
|
64
|
+
* // PowerPhase: "SINGLE_PHASE" || "THREE_PHASE",
|
|
65
|
+
* // PowerConnector: "L6_30P" || "IEC309" || "AH530P7W" || "AH532P6W",
|
|
66
|
+
* // PowerFeedDrop: "ABOVE_RACK" || "BELOW_RACK",
|
|
67
|
+
* // UplinkGbps: "UPLINK_1G" || "UPLINK_10G" || "UPLINK_40G" || "UPLINK_100G",
|
|
68
|
+
* // UplinkCount: "UPLINK_COUNT_1" || "UPLINK_COUNT_2" || "UPLINK_COUNT_3" || "UPLINK_COUNT_4" || "UPLINK_COUNT_5" || "UPLINK_COUNT_6" || "UPLINK_COUNT_7" || "UPLINK_COUNT_8" || "UPLINK_COUNT_12" || "UPLINK_COUNT_16",
|
|
69
|
+
* // FiberOpticCableType: "SINGLE_MODE" || "MULTI_MODE",
|
|
70
|
+
* // OpticalStandard: "OPTIC_10GBASE_SR" || "OPTIC_10GBASE_IR" || "OPTIC_10GBASE_LR" || "OPTIC_40GBASE_SR" || "OPTIC_40GBASE_ESR" || "OPTIC_40GBASE_IR4_LR4L" || "OPTIC_40GBASE_LR4" || "OPTIC_100GBASE_SR4" || "OPTIC_100GBASE_CWDM4" || "OPTIC_100GBASE_LR4" || "OPTIC_100G_PSM4_MSA" || "OPTIC_1000BASE_LX" || "OPTIC_1000BASE_SX",
|
|
71
|
+
* // MaximumSupportedWeightLbs: "NO_LIMIT" || "MAX_1400_LBS" || "MAX_1600_LBS" || "MAX_1800_LBS" || "MAX_2000_LBS",
|
|
72
|
+
* // },
|
|
73
|
+
* // },
|
|
74
|
+
* // };
|
|
75
|
+
*
|
|
48
76
|
* ```
|
|
49
77
|
*
|
|
50
78
|
* @param UpdateSiteRackPhysicalPropertiesCommandInput - {@link UpdateSiteRackPhysicalPropertiesCommandInput}
|
|
@@ -68,6 +96,8 @@ export interface UpdateSiteRackPhysicalPropertiesCommandOutput extends UpdateSit
|
|
|
68
96
|
* @throws {@link ValidationException} (client fault)
|
|
69
97
|
* <p>A parameter is not valid.</p>
|
|
70
98
|
*
|
|
99
|
+
* @throws {@link OutpostsServiceException}
|
|
100
|
+
* <p>Base exception class for all service exceptions from Outposts service.</p>
|
|
71
101
|
*
|
|
72
102
|
*/
|
|
73
103
|
export declare class UpdateSiteRackPhysicalPropertiesCommand extends $Command<UpdateSiteRackPhysicalPropertiesCommandInput, UpdateSiteRackPhysicalPropertiesCommandOutput, OutpostsClientResolvedConfig> {
|
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.326.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|