@aws-sdk/client-outposts 3.948.0 → 3.953.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +440 -296
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CancelCapacityTaskCommand.js +2 -2
- package/dist-es/commands/CancelOrderCommand.js +2 -2
- package/dist-es/commands/CreateOrderCommand.js +2 -2
- package/dist-es/commands/CreateOutpostCommand.js +2 -2
- package/dist-es/commands/CreateSiteCommand.js +2 -2
- package/dist-es/commands/DeleteOutpostCommand.js +2 -2
- package/dist-es/commands/DeleteSiteCommand.js +2 -2
- package/dist-es/commands/GetCapacityTaskCommand.js +2 -2
- package/dist-es/commands/GetCatalogItemCommand.js +2 -2
- package/dist-es/commands/GetConnectionCommand.js +2 -2
- package/dist-es/commands/GetOrderCommand.js +2 -2
- package/dist-es/commands/GetOutpostBillingInformationCommand.js +2 -2
- package/dist-es/commands/GetOutpostCommand.js +2 -2
- package/dist-es/commands/GetOutpostInstanceTypesCommand.js +2 -2
- package/dist-es/commands/GetOutpostSupportedInstanceTypesCommand.js +2 -2
- package/dist-es/commands/GetSiteAddressCommand.js +2 -2
- package/dist-es/commands/GetSiteCommand.js +2 -2
- package/dist-es/commands/ListAssetInstancesCommand.js +2 -2
- package/dist-es/commands/ListAssetsCommand.js +2 -2
- package/dist-es/commands/ListBlockingInstancesForCapacityTaskCommand.js +2 -2
- package/dist-es/commands/ListCapacityTasksCommand.js +2 -2
- package/dist-es/commands/ListCatalogItemsCommand.js +2 -2
- package/dist-es/commands/ListOrdersCommand.js +2 -2
- package/dist-es/commands/ListOutpostsCommand.js +2 -2
- package/dist-es/commands/ListSitesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/StartCapacityTaskCommand.js +2 -2
- package/dist-es/commands/StartConnectionCommand.js +2 -2
- package/dist-es/commands/StartOutpostDecommissionCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateOutpostCommand.js +2 -2
- package/dist-es/commands/UpdateSiteAddressCommand.js +2 -2
- package/dist-es/commands/UpdateSiteCommand.js +2 -2
- package/dist-es/commands/UpdateSiteRackPhysicalPropertiesCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +275 -268
- package/dist-types/OutpostsClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +138 -180
- package/dist-types/ts3.4/OutpostsClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +137 -180
- package/package.json +34 -34
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.outposts",
|
|
32
|
+
version: "2019-12-03",
|
|
33
|
+
serviceTarget: "OutpostsOlafService",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "Outposts",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CancelCapacityTask } from "../schemas/schemas_0";
|
|
4
|
+
import { CancelCapacityTask$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CancelCapacityTaskCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CancelCapacityTaskCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "CancelCapacityTask", {})
|
|
13
13
|
.n("OutpostsClient", "CancelCapacityTaskCommand")
|
|
14
|
-
.sc(CancelCapacityTask)
|
|
14
|
+
.sc(CancelCapacityTask$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CancelOrder } from "../schemas/schemas_0";
|
|
4
|
+
import { CancelOrder$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CancelOrderCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CancelOrderCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "CancelOrder", {})
|
|
13
13
|
.n("OutpostsClient", "CancelOrderCommand")
|
|
14
|
-
.sc(CancelOrder)
|
|
14
|
+
.sc(CancelOrder$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateOrder } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateOrder$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateOrderCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateOrderCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "CreateOrder", {})
|
|
13
13
|
.n("OutpostsClient", "CreateOrderCommand")
|
|
14
|
-
.sc(CreateOrder)
|
|
14
|
+
.sc(CreateOrder$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateOutpost } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateOutpost$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateOutpostCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateOutpostCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "CreateOutpost", {})
|
|
13
13
|
.n("OutpostsClient", "CreateOutpostCommand")
|
|
14
|
-
.sc(CreateOutpost)
|
|
14
|
+
.sc(CreateOutpost$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateSite } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateSite$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateSiteCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateSiteCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "CreateSite", {})
|
|
13
13
|
.n("OutpostsClient", "CreateSiteCommand")
|
|
14
|
-
.sc(CreateSite)
|
|
14
|
+
.sc(CreateSite$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteOutpost } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteOutpost$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteOutpostCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteOutpostCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "DeleteOutpost", {})
|
|
13
13
|
.n("OutpostsClient", "DeleteOutpostCommand")
|
|
14
|
-
.sc(DeleteOutpost)
|
|
14
|
+
.sc(DeleteOutpost$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteSite } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteSite$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteSiteCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteSiteCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "DeleteSite", {})
|
|
13
13
|
.n("OutpostsClient", "DeleteSiteCommand")
|
|
14
|
-
.sc(DeleteSite)
|
|
14
|
+
.sc(DeleteSite$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetCapacityTask } from "../schemas/schemas_0";
|
|
4
|
+
import { GetCapacityTask$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetCapacityTaskCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetCapacityTaskCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "GetCapacityTask", {})
|
|
13
13
|
.n("OutpostsClient", "GetCapacityTaskCommand")
|
|
14
|
-
.sc(GetCapacityTask)
|
|
14
|
+
.sc(GetCapacityTask$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetCatalogItem } from "../schemas/schemas_0";
|
|
4
|
+
import { GetCatalogItem$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetCatalogItemCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetCatalogItemCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "GetCatalogItem", {})
|
|
13
13
|
.n("OutpostsClient", "GetCatalogItemCommand")
|
|
14
|
-
.sc(GetCatalogItem)
|
|
14
|
+
.sc(GetCatalogItem$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetConnection } from "../schemas/schemas_0";
|
|
4
|
+
import { GetConnection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetConnectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetConnectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "GetConnection", {})
|
|
13
13
|
.n("OutpostsClient", "GetConnectionCommand")
|
|
14
|
-
.sc(GetConnection)
|
|
14
|
+
.sc(GetConnection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetOrder } from "../schemas/schemas_0";
|
|
4
|
+
import { GetOrder$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetOrderCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetOrderCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "GetOrder", {})
|
|
13
13
|
.n("OutpostsClient", "GetOrderCommand")
|
|
14
|
-
.sc(GetOrder)
|
|
14
|
+
.sc(GetOrder$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetOutpostBillingInformation } from "../schemas/schemas_0";
|
|
4
|
+
import { GetOutpostBillingInformation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetOutpostBillingInformationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetOutpostBillingInformationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "GetOutpostBillingInformation", {})
|
|
13
13
|
.n("OutpostsClient", "GetOutpostBillingInformationCommand")
|
|
14
|
-
.sc(GetOutpostBillingInformation)
|
|
14
|
+
.sc(GetOutpostBillingInformation$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetOutpost } from "../schemas/schemas_0";
|
|
4
|
+
import { GetOutpost$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetOutpostCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetOutpostCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "GetOutpost", {})
|
|
13
13
|
.n("OutpostsClient", "GetOutpostCommand")
|
|
14
|
-
.sc(GetOutpost)
|
|
14
|
+
.sc(GetOutpost$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetOutpostInstanceTypes } from "../schemas/schemas_0";
|
|
4
|
+
import { GetOutpostInstanceTypes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetOutpostInstanceTypesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetOutpostInstanceTypesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "GetOutpostInstanceTypes", {})
|
|
13
13
|
.n("OutpostsClient", "GetOutpostInstanceTypesCommand")
|
|
14
|
-
.sc(GetOutpostInstanceTypes)
|
|
14
|
+
.sc(GetOutpostInstanceTypes$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetOutpostSupportedInstanceTypes } from "../schemas/schemas_0";
|
|
4
|
+
import { GetOutpostSupportedInstanceTypes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetOutpostSupportedInstanceTypesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetOutpostSupportedInstanceTypesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "GetOutpostSupportedInstanceTypes", {})
|
|
13
13
|
.n("OutpostsClient", "GetOutpostSupportedInstanceTypesCommand")
|
|
14
|
-
.sc(GetOutpostSupportedInstanceTypes)
|
|
14
|
+
.sc(GetOutpostSupportedInstanceTypes$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetSiteAddress } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSiteAddress$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSiteAddressCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSiteAddressCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "GetSiteAddress", {})
|
|
13
13
|
.n("OutpostsClient", "GetSiteAddressCommand")
|
|
14
|
-
.sc(GetSiteAddress)
|
|
14
|
+
.sc(GetSiteAddress$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetSite } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSite$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSiteCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSiteCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "GetSite", {})
|
|
13
13
|
.n("OutpostsClient", "GetSiteCommand")
|
|
14
|
-
.sc(GetSite)
|
|
14
|
+
.sc(GetSite$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAssetInstances } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAssetInstances$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAssetInstancesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAssetInstancesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "ListAssetInstances", {})
|
|
13
13
|
.n("OutpostsClient", "ListAssetInstancesCommand")
|
|
14
|
-
.sc(ListAssetInstances)
|
|
14
|
+
.sc(ListAssetInstances$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAssets } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAssets$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAssetsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAssetsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "ListAssets", {})
|
|
13
13
|
.n("OutpostsClient", "ListAssetsCommand")
|
|
14
|
-
.sc(ListAssets)
|
|
14
|
+
.sc(ListAssets$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListBlockingInstancesForCapacityTask } from "../schemas/schemas_0";
|
|
4
|
+
import { ListBlockingInstancesForCapacityTask$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListBlockingInstancesForCapacityTaskCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListBlockingInstancesForCapacityTaskCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "ListBlockingInstancesForCapacityTask", {})
|
|
13
13
|
.n("OutpostsClient", "ListBlockingInstancesForCapacityTaskCommand")
|
|
14
|
-
.sc(ListBlockingInstancesForCapacityTask)
|
|
14
|
+
.sc(ListBlockingInstancesForCapacityTask$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListCapacityTasks } from "../schemas/schemas_0";
|
|
4
|
+
import { ListCapacityTasks$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListCapacityTasksCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListCapacityTasksCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "ListCapacityTasks", {})
|
|
13
13
|
.n("OutpostsClient", "ListCapacityTasksCommand")
|
|
14
|
-
.sc(ListCapacityTasks)
|
|
14
|
+
.sc(ListCapacityTasks$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListCatalogItems } from "../schemas/schemas_0";
|
|
4
|
+
import { ListCatalogItems$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListCatalogItemsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListCatalogItemsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "ListCatalogItems", {})
|
|
13
13
|
.n("OutpostsClient", "ListCatalogItemsCommand")
|
|
14
|
-
.sc(ListCatalogItems)
|
|
14
|
+
.sc(ListCatalogItems$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListOrders } from "../schemas/schemas_0";
|
|
4
|
+
import { ListOrders$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListOrdersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListOrdersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "ListOrders", {})
|
|
13
13
|
.n("OutpostsClient", "ListOrdersCommand")
|
|
14
|
-
.sc(ListOrders)
|
|
14
|
+
.sc(ListOrders$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListOutposts } from "../schemas/schemas_0";
|
|
4
|
+
import { ListOutposts$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListOutpostsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListOutpostsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "ListOutposts", {})
|
|
13
13
|
.n("OutpostsClient", "ListOutpostsCommand")
|
|
14
|
-
.sc(ListOutposts)
|
|
14
|
+
.sc(ListOutposts$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListSites } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSites$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSitesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSitesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "ListSites", {})
|
|
13
13
|
.n("OutpostsClient", "ListSitesCommand")
|
|
14
|
-
.sc(ListSites)
|
|
14
|
+
.sc(ListSites$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "ListTagsForResource", {})
|
|
13
13
|
.n("OutpostsClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartCapacityTask } from "../schemas/schemas_0";
|
|
4
|
+
import { StartCapacityTask$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartCapacityTaskCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartCapacityTaskCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "StartCapacityTask", {})
|
|
13
13
|
.n("OutpostsClient", "StartCapacityTaskCommand")
|
|
14
|
-
.sc(StartCapacityTask)
|
|
14
|
+
.sc(StartCapacityTask$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartConnection } from "../schemas/schemas_0";
|
|
4
|
+
import { StartConnection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartConnectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartConnectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "StartConnection", {})
|
|
13
13
|
.n("OutpostsClient", "StartConnectionCommand")
|
|
14
|
-
.sc(StartConnection)
|
|
14
|
+
.sc(StartConnection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartOutpostDecommission } from "../schemas/schemas_0";
|
|
4
|
+
import { StartOutpostDecommission$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartOutpostDecommissionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartOutpostDecommissionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "StartOutpostDecommission", {})
|
|
13
13
|
.n("OutpostsClient", "StartOutpostDecommissionCommand")
|
|
14
|
-
.sc(StartOutpostDecommission)
|
|
14
|
+
.sc(StartOutpostDecommission$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "TagResource", {})
|
|
13
13
|
.n("OutpostsClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "UntagResource", {})
|
|
13
13
|
.n("OutpostsClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateOutpost } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateOutpost$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateOutpostCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateOutpostCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "UpdateOutpost", {})
|
|
13
13
|
.n("OutpostsClient", "UpdateOutpostCommand")
|
|
14
|
-
.sc(UpdateOutpost)
|
|
14
|
+
.sc(UpdateOutpost$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateSiteAddress } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateSiteAddress$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateSiteAddressCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateSiteAddressCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "UpdateSiteAddress", {})
|
|
13
13
|
.n("OutpostsClient", "UpdateSiteAddressCommand")
|
|
14
|
-
.sc(UpdateSiteAddress)
|
|
14
|
+
.sc(UpdateSiteAddress$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateSite } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateSite$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateSiteCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateSiteCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "UpdateSite", {})
|
|
13
13
|
.n("OutpostsClient", "UpdateSiteCommand")
|
|
14
|
-
.sc(UpdateSite)
|
|
14
|
+
.sc(UpdateSite$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateSiteRackPhysicalProperties } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateSiteRackPhysicalProperties$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateSiteRackPhysicalPropertiesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateSiteRackPhysicalPropertiesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OutpostsOlafService", "UpdateSiteRackPhysicalProperties", {})
|
|
13
13
|
.n("OutpostsClient", "UpdateSiteRackPhysicalPropertiesCommand")
|
|
14
|
-
.sc(UpdateSiteRackPhysicalProperties)
|
|
14
|
+
.sc(UpdateSiteRackPhysicalProperties$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|