@aws-sdk/client-appfabric 3.1087.0 → 3.1088.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 +1 -1
- package/dist-types/ts3.4/AppFabric.d.ts +83 -86
- package/dist-types/ts3.4/AppFabricClient.d.ts +6 -18
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/BatchGetUserAccessTasksCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ConnectAppAuthorizationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateAppAuthorizationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateAppBundleCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/CreateIngestionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateIngestionDestinationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteAppAuthorizationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteAppBundleCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteIngestionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteIngestionDestinationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetAppAuthorizationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetAppBundleCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetIngestionCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetIngestionDestinationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListAppAuthorizationsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListAppBundlesCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListIngestionDestinationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListIngestionsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartIngestionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StartUserAccessTasksCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StopIngestionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateAppAuthorizationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateIngestionDestinationCommand.d.ts +4 -6
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +1 -2
- package/dist-types/ts3.4/models/errors.d.ts +6 -18
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/package.json +38 -38
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
BatchGetUserAccessTasksResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface BatchGetUserAccessTasksCommandInput
|
|
8
|
-
extends BatchGetUserAccessTasksRequest {}
|
|
7
|
+
export interface BatchGetUserAccessTasksCommandInput extends BatchGetUserAccessTasksRequest {}
|
|
9
8
|
export interface BatchGetUserAccessTasksCommandOutput
|
|
10
|
-
extends BatchGetUserAccessTasksResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends BatchGetUserAccessTasksResponse, __MetadataBearer {}
|
|
12
10
|
declare const BatchGetUserAccessTasksCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: BatchGetUserAccessTasksCommandInput
|
|
12
|
+
input: BatchGetUserAccessTasksCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
BatchGetUserAccessTasksCommandInput,
|
|
17
15
|
BatchGetUserAccessTasksCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const BatchGetUserAccessTasksCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: BatchGetUserAccessTasksCommandInput
|
|
21
|
+
input: BatchGetUserAccessTasksCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
BatchGetUserAccessTasksCommandInput,
|
|
26
24
|
BatchGetUserAccessTasksCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ConnectAppAuthorizationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ConnectAppAuthorizationCommandInput
|
|
8
|
-
extends ConnectAppAuthorizationRequest {}
|
|
7
|
+
export interface ConnectAppAuthorizationCommandInput extends ConnectAppAuthorizationRequest {}
|
|
9
8
|
export interface ConnectAppAuthorizationCommandOutput
|
|
10
|
-
extends ConnectAppAuthorizationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ConnectAppAuthorizationResponse, __MetadataBearer {}
|
|
12
10
|
declare const ConnectAppAuthorizationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ConnectAppAuthorizationCommandInput
|
|
12
|
+
input: ConnectAppAuthorizationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ConnectAppAuthorizationCommandInput,
|
|
17
15
|
ConnectAppAuthorizationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ConnectAppAuthorizationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ConnectAppAuthorizationCommandInput
|
|
21
|
+
input: ConnectAppAuthorizationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ConnectAppAuthorizationCommandInput,
|
|
26
24
|
ConnectAppAuthorizationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateAppAuthorizationRequest,
|
|
4
|
-
CreateAppAuthorizationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateAppAuthorizationRequest, CreateAppAuthorizationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateAppAuthorizationCommandInput
|
|
8
|
-
extends CreateAppAuthorizationRequest {}
|
|
4
|
+
export interface CreateAppAuthorizationCommandInput extends CreateAppAuthorizationRequest {}
|
|
9
5
|
export interface CreateAppAuthorizationCommandOutput
|
|
10
|
-
extends CreateAppAuthorizationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateAppAuthorizationResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateAppAuthorizationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateAppAuthorizationCommandInput
|
|
9
|
+
input: CreateAppAuthorizationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateAppAuthorizationCommandInput,
|
|
17
12
|
CreateAppAuthorizationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateAppAuthorizationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateAppAuthorizationCommandInput
|
|
18
|
+
input: CreateAppAuthorizationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateAppAuthorizationCommandInput,
|
|
26
21
|
CreateAppAuthorizationCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateAppBundleRequest,
|
|
4
|
-
CreateAppBundleResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateAppBundleRequest, CreateAppBundleResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateAppBundleCommandInput extends CreateAppBundleRequest {}
|
|
8
|
-
export interface CreateAppBundleCommandOutput
|
|
9
|
-
extends CreateAppBundleResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateAppBundleCommandOutput extends CreateAppBundleResponse, __MetadataBearer {}
|
|
11
6
|
declare const CreateAppBundleCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateAppBundleCommandInput
|
|
8
|
+
input: CreateAppBundleCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateAppBundleCommandInput,
|
|
16
11
|
CreateAppBundleCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateIngestionRequest,
|
|
4
|
-
CreateIngestionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateIngestionRequest, CreateIngestionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateIngestionCommandInput extends CreateIngestionRequest {}
|
|
8
|
-
export interface CreateIngestionCommandOutput
|
|
9
|
-
extends CreateIngestionResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateIngestionCommandOutput extends CreateIngestionResponse, __MetadataBearer {}
|
|
11
6
|
declare const CreateIngestionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateIngestionCommandInput
|
|
8
|
+
input: CreateIngestionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateIngestionCommandInput,
|
|
16
11
|
CreateIngestionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CreateIngestionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CreateIngestionCommandInput
|
|
17
|
+
input: CreateIngestionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CreateIngestionCommandInput,
|
|
25
20
|
CreateIngestionCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateIngestionDestinationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateIngestionDestinationCommandInput
|
|
8
|
-
extends CreateIngestionDestinationRequest {}
|
|
7
|
+
export interface CreateIngestionDestinationCommandInput extends CreateIngestionDestinationRequest {}
|
|
9
8
|
export interface CreateIngestionDestinationCommandOutput
|
|
10
|
-
extends CreateIngestionDestinationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateIngestionDestinationResponse, __MetadataBearer {}
|
|
12
10
|
declare const CreateIngestionDestinationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateIngestionDestinationCommandInput
|
|
12
|
+
input: CreateIngestionDestinationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateIngestionDestinationCommandInput,
|
|
17
15
|
CreateIngestionDestinationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateIngestionDestinationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateIngestionDestinationCommandInput
|
|
21
|
+
input: CreateIngestionDestinationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateIngestionDestinationCommandInput,
|
|
26
24
|
CreateIngestionDestinationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteAppAuthorizationRequest,
|
|
4
|
-
DeleteAppAuthorizationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteAppAuthorizationRequest, DeleteAppAuthorizationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteAppAuthorizationCommandInput
|
|
8
|
-
extends DeleteAppAuthorizationRequest {}
|
|
4
|
+
export interface DeleteAppAuthorizationCommandInput extends DeleteAppAuthorizationRequest {}
|
|
9
5
|
export interface DeleteAppAuthorizationCommandOutput
|
|
10
|
-
extends DeleteAppAuthorizationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteAppAuthorizationResponse, __MetadataBearer {}
|
|
12
7
|
declare const DeleteAppAuthorizationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteAppAuthorizationCommandInput
|
|
9
|
+
input: DeleteAppAuthorizationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteAppAuthorizationCommandInput,
|
|
17
12
|
DeleteAppAuthorizationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteAppAuthorizationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteAppAuthorizationCommandInput
|
|
18
|
+
input: DeleteAppAuthorizationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteAppAuthorizationCommandInput,
|
|
26
21
|
DeleteAppAuthorizationCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteAppBundleRequest,
|
|
4
|
-
DeleteAppBundleResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteAppBundleRequest, DeleteAppBundleResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DeleteAppBundleCommandInput extends DeleteAppBundleRequest {}
|
|
8
|
-
export interface DeleteAppBundleCommandOutput
|
|
9
|
-
extends DeleteAppBundleResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteAppBundleCommandOutput extends DeleteAppBundleResponse, __MetadataBearer {}
|
|
11
6
|
declare const DeleteAppBundleCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DeleteAppBundleCommandInput
|
|
8
|
+
input: DeleteAppBundleCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DeleteAppBundleCommandInput,
|
|
16
11
|
DeleteAppBundleCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DeleteAppBundleCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DeleteAppBundleCommandInput
|
|
17
|
+
input: DeleteAppBundleCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DeleteAppBundleCommandInput,
|
|
25
20
|
DeleteAppBundleCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteIngestionRequest,
|
|
4
|
-
DeleteIngestionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteIngestionRequest, DeleteIngestionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DeleteIngestionCommandInput extends DeleteIngestionRequest {}
|
|
8
|
-
export interface DeleteIngestionCommandOutput
|
|
9
|
-
extends DeleteIngestionResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteIngestionCommandOutput extends DeleteIngestionResponse, __MetadataBearer {}
|
|
11
6
|
declare const DeleteIngestionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DeleteIngestionCommandInput
|
|
8
|
+
input: DeleteIngestionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DeleteIngestionCommandInput,
|
|
16
11
|
DeleteIngestionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DeleteIngestionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DeleteIngestionCommandInput
|
|
17
|
+
input: DeleteIngestionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DeleteIngestionCommandInput,
|
|
25
20
|
DeleteIngestionCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DeleteIngestionDestinationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteIngestionDestinationCommandInput
|
|
8
|
-
extends DeleteIngestionDestinationRequest {}
|
|
7
|
+
export interface DeleteIngestionDestinationCommandInput extends DeleteIngestionDestinationRequest {}
|
|
9
8
|
export interface DeleteIngestionDestinationCommandOutput
|
|
10
|
-
extends DeleteIngestionDestinationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DeleteIngestionDestinationResponse, __MetadataBearer {}
|
|
12
10
|
declare const DeleteIngestionDestinationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DeleteIngestionDestinationCommandInput
|
|
12
|
+
input: DeleteIngestionDestinationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DeleteIngestionDestinationCommandInput,
|
|
17
15
|
DeleteIngestionDestinationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DeleteIngestionDestinationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DeleteIngestionDestinationCommandInput
|
|
21
|
+
input: DeleteIngestionDestinationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DeleteIngestionDestinationCommandInput,
|
|
26
24
|
DeleteIngestionDestinationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetAppAuthorizationRequest,
|
|
4
|
-
GetAppAuthorizationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetAppAuthorizationRequest, GetAppAuthorizationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetAppAuthorizationCommandInput
|
|
8
|
-
extends GetAppAuthorizationRequest {}
|
|
4
|
+
export interface GetAppAuthorizationCommandInput extends GetAppAuthorizationRequest {}
|
|
9
5
|
export interface GetAppAuthorizationCommandOutput
|
|
10
|
-
extends GetAppAuthorizationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetAppAuthorizationResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetAppAuthorizationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetAppAuthorizationCommandInput
|
|
9
|
+
input: GetAppAuthorizationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetAppAuthorizationCommandInput,
|
|
17
12
|
GetAppAuthorizationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetAppAuthorizationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetAppAuthorizationCommandInput
|
|
18
|
+
input: GetAppAuthorizationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetAppAuthorizationCommandInput,
|
|
26
21
|
GetAppAuthorizationCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetAppBundleRequest, GetAppBundleResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetAppBundleCommandInput extends GetAppBundleRequest {}
|
|
5
|
-
export interface GetAppBundleCommandOutput
|
|
6
|
-
extends GetAppBundleResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetAppBundleCommandOutput extends GetAppBundleResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetAppBundleCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetAppBundleCommandInput
|
|
8
|
+
input: GetAppBundleCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetAppBundleCommandInput,
|
|
13
11
|
GetAppBundleCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetAppBundleCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetAppBundleCommandInput
|
|
17
|
+
input: GetAppBundleCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetAppBundleCommandInput,
|
|
22
20
|
GetAppBundleCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetIngestionRequest, GetIngestionResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetIngestionCommandInput extends GetIngestionRequest {}
|
|
5
|
-
export interface GetIngestionCommandOutput
|
|
6
|
-
extends GetIngestionResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetIngestionCommandOutput extends GetIngestionResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetIngestionCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetIngestionCommandInput
|
|
8
|
+
input: GetIngestionCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetIngestionCommandInput,
|
|
13
11
|
GetIngestionCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetIngestionCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetIngestionCommandInput
|
|
17
|
+
input: GetIngestionCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetIngestionCommandInput,
|
|
22
20
|
GetIngestionCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetIngestionDestinationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetIngestionDestinationCommandInput
|
|
8
|
-
extends GetIngestionDestinationRequest {}
|
|
7
|
+
export interface GetIngestionDestinationCommandInput extends GetIngestionDestinationRequest {}
|
|
9
8
|
export interface GetIngestionDestinationCommandOutput
|
|
10
|
-
extends GetIngestionDestinationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetIngestionDestinationResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetIngestionDestinationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetIngestionDestinationCommandInput
|
|
12
|
+
input: GetIngestionDestinationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetIngestionDestinationCommandInput,
|
|
17
15
|
GetIngestionDestinationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetIngestionDestinationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetIngestionDestinationCommandInput
|
|
21
|
+
input: GetIngestionDestinationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetIngestionDestinationCommandInput,
|
|
26
24
|
GetIngestionDestinationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListAppAuthorizationsRequest,
|
|
4
|
-
ListAppAuthorizationsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListAppAuthorizationsRequest, ListAppAuthorizationsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListAppAuthorizationsCommandInput
|
|
8
|
-
extends ListAppAuthorizationsRequest {}
|
|
4
|
+
export interface ListAppAuthorizationsCommandInput extends ListAppAuthorizationsRequest {}
|
|
9
5
|
export interface ListAppAuthorizationsCommandOutput
|
|
10
|
-
extends ListAppAuthorizationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListAppAuthorizationsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListAppAuthorizationsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListAppAuthorizationsCommandInput
|
|
9
|
+
input: ListAppAuthorizationsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListAppAuthorizationsCommandInput,
|
|
17
12
|
ListAppAuthorizationsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListAppAuthorizationsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListAppAuthorizationsCommandInput
|
|
18
|
+
input: ListAppAuthorizationsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListAppAuthorizationsCommandInput,
|
|
26
21
|
ListAppAuthorizationsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListAppBundlesRequest,
|
|
4
|
-
ListAppBundlesResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListAppBundlesRequest, ListAppBundlesResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListAppBundlesCommandInput extends ListAppBundlesRequest {}
|
|
8
|
-
export interface ListAppBundlesCommandOutput
|
|
9
|
-
extends ListAppBundlesResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListAppBundlesCommandOutput extends ListAppBundlesResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListAppBundlesCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListAppBundlesCommandInput
|
|
8
|
+
input: ListAppBundlesCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListAppBundlesCommandInput,
|
|
16
11
|
ListAppBundlesCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListIngestionDestinationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListIngestionDestinationsCommandInput
|
|
8
|
-
extends ListIngestionDestinationsRequest {}
|
|
7
|
+
export interface ListIngestionDestinationsCommandInput extends ListIngestionDestinationsRequest {}
|
|
9
8
|
export interface ListIngestionDestinationsCommandOutput
|
|
10
|
-
extends ListIngestionDestinationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListIngestionDestinationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListIngestionDestinationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListIngestionDestinationsCommandInput
|
|
12
|
+
input: ListIngestionDestinationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListIngestionDestinationsCommandInput,
|
|
17
15
|
ListIngestionDestinationsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListIngestionDestinationsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListIngestionDestinationsCommandInput
|
|
21
|
+
input: ListIngestionDestinationsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListIngestionDestinationsCommandInput,
|
|
26
24
|
ListIngestionDestinationsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListIngestionsRequest,
|
|
4
|
-
ListIngestionsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListIngestionsRequest, ListIngestionsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListIngestionsCommandInput extends ListIngestionsRequest {}
|
|
8
|
-
export interface ListIngestionsCommandOutput
|
|
9
|
-
extends ListIngestionsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListIngestionsCommandOutput extends ListIngestionsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListIngestionsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListIngestionsCommandInput
|
|
8
|
+
input: ListIngestionsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListIngestionsCommandInput,
|
|
16
11
|
ListIngestionsCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const ListIngestionsCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: ListIngestionsCommandInput
|
|
17
|
+
input: ListIngestionsCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
ListIngestionsCommandInput,
|
|
25
20
|
ListIngestionsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartIngestionRequest,
|
|
4
|
-
StartIngestionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartIngestionRequest, StartIngestionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface StartIngestionCommandInput extends StartIngestionRequest {}
|
|
8
|
-
export interface StartIngestionCommandOutput
|
|
9
|
-
extends StartIngestionResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StartIngestionCommandOutput extends StartIngestionResponse, __MetadataBearer {}
|
|
11
6
|
declare const StartIngestionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: StartIngestionCommandInput
|
|
8
|
+
input: StartIngestionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
StartIngestionCommandInput,
|
|
16
11
|
StartIngestionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const StartIngestionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: StartIngestionCommandInput
|
|
17
|
+
input: StartIngestionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
StartIngestionCommandInput,
|
|
25
20
|
StartIngestionCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartUserAccessTasksRequest,
|
|
4
|
-
StartUserAccessTasksResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartUserAccessTasksRequest, StartUserAccessTasksResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartUserAccessTasksCommandInput
|
|
8
|
-
extends StartUserAccessTasksRequest {}
|
|
4
|
+
export interface StartUserAccessTasksCommandInput extends StartUserAccessTasksRequest {}
|
|
9
5
|
export interface StartUserAccessTasksCommandOutput
|
|
10
|
-
extends StartUserAccessTasksResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends StartUserAccessTasksResponse, __MetadataBearer {}
|
|
12
7
|
declare const StartUserAccessTasksCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: StartUserAccessTasksCommandInput
|
|
9
|
+
input: StartUserAccessTasksCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
StartUserAccessTasksCommandInput,
|
|
17
12
|
StartUserAccessTasksCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const StartUserAccessTasksCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: StartUserAccessTasksCommandInput
|
|
18
|
+
input: StartUserAccessTasksCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
StartUserAccessTasksCommandInput,
|
|
26
21
|
StartUserAccessTasksCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StopIngestionRequest,
|
|
4
|
-
StopIngestionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StopIngestionRequest, StopIngestionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface StopIngestionCommandInput extends StopIngestionRequest {}
|
|
8
|
-
export interface StopIngestionCommandOutput
|
|
9
|
-
extends StopIngestionResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StopIngestionCommandOutput extends StopIngestionResponse, __MetadataBearer {}
|
|
11
6
|
declare const StopIngestionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: StopIngestionCommandInput
|
|
8
|
+
input: StopIngestionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
StopIngestionCommandInput,
|
|
16
11
|
StopIngestionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const StopIngestionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: StopIngestionCommandInput
|
|
17
|
+
input: StopIngestionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
StopIngestionCommandInput,
|
|
25
20
|
StopIngestionCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|