@aws-sdk/client-appfabric 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 +373 -248
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/BatchGetUserAccessTasksCommand.js +2 -2
- package/dist-es/commands/ConnectAppAuthorizationCommand.js +2 -2
- package/dist-es/commands/CreateAppAuthorizationCommand.js +2 -2
- package/dist-es/commands/CreateAppBundleCommand.js +2 -2
- package/dist-es/commands/CreateIngestionCommand.js +2 -2
- package/dist-es/commands/CreateIngestionDestinationCommand.js +2 -2
- package/dist-es/commands/DeleteAppAuthorizationCommand.js +2 -2
- package/dist-es/commands/DeleteAppBundleCommand.js +2 -2
- package/dist-es/commands/DeleteIngestionCommand.js +2 -2
- package/dist-es/commands/DeleteIngestionDestinationCommand.js +2 -2
- package/dist-es/commands/GetAppAuthorizationCommand.js +2 -2
- package/dist-es/commands/GetAppBundleCommand.js +2 -2
- package/dist-es/commands/GetIngestionCommand.js +2 -2
- package/dist-es/commands/GetIngestionDestinationCommand.js +2 -2
- package/dist-es/commands/ListAppAuthorizationsCommand.js +2 -2
- package/dist-es/commands/ListAppBundlesCommand.js +2 -2
- package/dist-es/commands/ListIngestionDestinationsCommand.js +2 -2
- package/dist-es/commands/ListIngestionsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/StartIngestionCommand.js +2 -2
- package/dist-es/commands/StartUserAccessTasksCommand.js +2 -2
- package/dist-es/commands/StopIngestionCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateAppAuthorizationCommand.js +2 -2
- package/dist-es/commands/UpdateIngestionDestinationCommand.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 +217 -203
- package/dist-types/AppFabricClient.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 +112 -124
- package/dist-types/ts3.4/AppFabricClient.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 +111 -125
- 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.appfabric",
|
|
32
|
+
version: "2023-05-19",
|
|
33
|
+
serviceTarget: "FabricFrontEndService",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "AppFabric",
|
|
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 { BatchGetUserAccessTasks } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchGetUserAccessTasks$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchGetUserAccessTasksCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class BatchGetUserAccessTasksCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FabricFrontEndService", "BatchGetUserAccessTasks", {})
|
|
13
13
|
.n("AppFabricClient", "BatchGetUserAccessTasksCommand")
|
|
14
|
-
.sc(BatchGetUserAccessTasks)
|
|
14
|
+
.sc(BatchGetUserAccessTasks$)
|
|
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 { ConnectAppAuthorization } from "../schemas/schemas_0";
|
|
4
|
+
import { ConnectAppAuthorization$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ConnectAppAuthorizationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ConnectAppAuthorizationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FabricFrontEndService", "ConnectAppAuthorization", {})
|
|
13
13
|
.n("AppFabricClient", "ConnectAppAuthorizationCommand")
|
|
14
|
-
.sc(ConnectAppAuthorization)
|
|
14
|
+
.sc(ConnectAppAuthorization$)
|
|
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 { CreateAppAuthorization } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateAppAuthorization$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateAppAuthorizationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateAppAuthorizationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FabricFrontEndService", "CreateAppAuthorization", {})
|
|
13
13
|
.n("AppFabricClient", "CreateAppAuthorizationCommand")
|
|
14
|
-
.sc(CreateAppAuthorization)
|
|
14
|
+
.sc(CreateAppAuthorization$)
|
|
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 { CreateAppBundle } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateAppBundle$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateAppBundleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateAppBundleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FabricFrontEndService", "CreateAppBundle", {})
|
|
13
13
|
.n("AppFabricClient", "CreateAppBundleCommand")
|
|
14
|
-
.sc(CreateAppBundle)
|
|
14
|
+
.sc(CreateAppBundle$)
|
|
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 { CreateIngestion } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateIngestion$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateIngestionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateIngestionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FabricFrontEndService", "CreateIngestion", {})
|
|
13
13
|
.n("AppFabricClient", "CreateIngestionCommand")
|
|
14
|
-
.sc(CreateIngestion)
|
|
14
|
+
.sc(CreateIngestion$)
|
|
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 { CreateIngestionDestination } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateIngestionDestination$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateIngestionDestinationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateIngestionDestinationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FabricFrontEndService", "CreateIngestionDestination", {})
|
|
13
13
|
.n("AppFabricClient", "CreateIngestionDestinationCommand")
|
|
14
|
-
.sc(CreateIngestionDestination)
|
|
14
|
+
.sc(CreateIngestionDestination$)
|
|
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 { DeleteAppAuthorization } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteAppAuthorization$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteAppAuthorizationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteAppAuthorizationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FabricFrontEndService", "DeleteAppAuthorization", {})
|
|
13
13
|
.n("AppFabricClient", "DeleteAppAuthorizationCommand")
|
|
14
|
-
.sc(DeleteAppAuthorization)
|
|
14
|
+
.sc(DeleteAppAuthorization$)
|
|
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 { DeleteAppBundle } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteAppBundle$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteAppBundleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteAppBundleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FabricFrontEndService", "DeleteAppBundle", {})
|
|
13
13
|
.n("AppFabricClient", "DeleteAppBundleCommand")
|
|
14
|
-
.sc(DeleteAppBundle)
|
|
14
|
+
.sc(DeleteAppBundle$)
|
|
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 { DeleteIngestion } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteIngestion$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteIngestionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteIngestionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FabricFrontEndService", "DeleteIngestion", {})
|
|
13
13
|
.n("AppFabricClient", "DeleteIngestionCommand")
|
|
14
|
-
.sc(DeleteIngestion)
|
|
14
|
+
.sc(DeleteIngestion$)
|
|
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 { DeleteIngestionDestination } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteIngestionDestination$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteIngestionDestinationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteIngestionDestinationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FabricFrontEndService", "DeleteIngestionDestination", {})
|
|
13
13
|
.n("AppFabricClient", "DeleteIngestionDestinationCommand")
|
|
14
|
-
.sc(DeleteIngestionDestination)
|
|
14
|
+
.sc(DeleteIngestionDestination$)
|
|
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 { GetAppAuthorization } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAppAuthorization$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAppAuthorizationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAppAuthorizationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FabricFrontEndService", "GetAppAuthorization", {})
|
|
13
13
|
.n("AppFabricClient", "GetAppAuthorizationCommand")
|
|
14
|
-
.sc(GetAppAuthorization)
|
|
14
|
+
.sc(GetAppAuthorization$)
|
|
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 { GetAppBundle } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAppBundle$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAppBundleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAppBundleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FabricFrontEndService", "GetAppBundle", {})
|
|
13
13
|
.n("AppFabricClient", "GetAppBundleCommand")
|
|
14
|
-
.sc(GetAppBundle)
|
|
14
|
+
.sc(GetAppBundle$)
|
|
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 { GetIngestion } from "../schemas/schemas_0";
|
|
4
|
+
import { GetIngestion$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetIngestionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetIngestionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FabricFrontEndService", "GetIngestion", {})
|
|
13
13
|
.n("AppFabricClient", "GetIngestionCommand")
|
|
14
|
-
.sc(GetIngestion)
|
|
14
|
+
.sc(GetIngestion$)
|
|
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 { GetIngestionDestination } from "../schemas/schemas_0";
|
|
4
|
+
import { GetIngestionDestination$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetIngestionDestinationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetIngestionDestinationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FabricFrontEndService", "GetIngestionDestination", {})
|
|
13
13
|
.n("AppFabricClient", "GetIngestionDestinationCommand")
|
|
14
|
-
.sc(GetIngestionDestination)
|
|
14
|
+
.sc(GetIngestionDestination$)
|
|
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 { ListAppAuthorizations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAppAuthorizations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAppAuthorizationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAppAuthorizationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FabricFrontEndService", "ListAppAuthorizations", {})
|
|
13
13
|
.n("AppFabricClient", "ListAppAuthorizationsCommand")
|
|
14
|
-
.sc(ListAppAuthorizations)
|
|
14
|
+
.sc(ListAppAuthorizations$)
|
|
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 { ListAppBundles } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAppBundles$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAppBundlesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAppBundlesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FabricFrontEndService", "ListAppBundles", {})
|
|
13
13
|
.n("AppFabricClient", "ListAppBundlesCommand")
|
|
14
|
-
.sc(ListAppBundles)
|
|
14
|
+
.sc(ListAppBundles$)
|
|
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 { ListIngestionDestinations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListIngestionDestinations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListIngestionDestinationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListIngestionDestinationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FabricFrontEndService", "ListIngestionDestinations", {})
|
|
13
13
|
.n("AppFabricClient", "ListIngestionDestinationsCommand")
|
|
14
|
-
.sc(ListIngestionDestinations)
|
|
14
|
+
.sc(ListIngestionDestinations$)
|
|
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 { ListIngestions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListIngestions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListIngestionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListIngestionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FabricFrontEndService", "ListIngestions", {})
|
|
13
13
|
.n("AppFabricClient", "ListIngestionsCommand")
|
|
14
|
-
.sc(ListIngestions)
|
|
14
|
+
.sc(ListIngestions$)
|
|
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("FabricFrontEndService", "ListTagsForResource", {})
|
|
13
13
|
.n("AppFabricClient", "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 { StartIngestion } from "../schemas/schemas_0";
|
|
4
|
+
import { StartIngestion$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartIngestionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartIngestionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FabricFrontEndService", "StartIngestion", {})
|
|
13
13
|
.n("AppFabricClient", "StartIngestionCommand")
|
|
14
|
-
.sc(StartIngestion)
|
|
14
|
+
.sc(StartIngestion$)
|
|
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 { StartUserAccessTasks } from "../schemas/schemas_0";
|
|
4
|
+
import { StartUserAccessTasks$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartUserAccessTasksCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartUserAccessTasksCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FabricFrontEndService", "StartUserAccessTasks", {})
|
|
13
13
|
.n("AppFabricClient", "StartUserAccessTasksCommand")
|
|
14
|
-
.sc(StartUserAccessTasks)
|
|
14
|
+
.sc(StartUserAccessTasks$)
|
|
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 { StopIngestion } from "../schemas/schemas_0";
|
|
4
|
+
import { StopIngestion$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopIngestionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopIngestionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FabricFrontEndService", "StopIngestion", {})
|
|
13
13
|
.n("AppFabricClient", "StopIngestionCommand")
|
|
14
|
-
.sc(StopIngestion)
|
|
14
|
+
.sc(StopIngestion$)
|
|
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("FabricFrontEndService", "TagResource", {})
|
|
13
13
|
.n("AppFabricClient", "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("FabricFrontEndService", "UntagResource", {})
|
|
13
13
|
.n("AppFabricClient", "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 { UpdateAppAuthorization } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateAppAuthorization$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateAppAuthorizationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateAppAuthorizationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FabricFrontEndService", "UpdateAppAuthorization", {})
|
|
13
13
|
.n("AppFabricClient", "UpdateAppAuthorizationCommand")
|
|
14
|
-
.sc(UpdateAppAuthorization)
|
|
14
|
+
.sc(UpdateAppAuthorization$)
|
|
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 { UpdateIngestionDestination } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateIngestionDestination$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateIngestionDestinationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateIngestionDestinationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("FabricFrontEndService", "UpdateIngestionDestination", {})
|
|
13
13
|
.n("AppFabricClient", "UpdateIngestionDestinationCommand")
|
|
14
|
-
.sc(UpdateIngestionDestination)
|
|
14
|
+
.sc(UpdateIngestionDestination$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.appfabric",
|
|
29
|
+
version: "2023-05-19",
|
|
30
|
+
serviceTarget: "FabricFrontEndService",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "AppFabric",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|