@aws-sdk/client-appintegrations 3.1087.0 → 3.1089.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/AppIntegrations.d.ts +77 -82
- package/dist-types/ts3.4/AppIntegrationsClient.d.ts +7 -20
- 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/CreateApplicationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateDataIntegrationAssociationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateDataIntegrationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateEventIntegrationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteDataIntegrationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteEventIntegrationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetDataIntegrationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetEventIntegrationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListApplicationAssociationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListDataIntegrationAssociationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListDataIntegrationsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListEventIntegrationAssociationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListEventIntegrationsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- 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/UpdateApplicationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateDataIntegrationAssociationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateDataIntegrationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateEventIntegrationCommand.d.ts +5 -10
- 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 +3 -6
- package/dist-types/ts3.4/models/errors.d.ts +8 -24
- package/dist-types/ts3.4/models/models_0.d.ts +1 -6
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateApplicationRequest,
|
|
4
|
-
CreateApplicationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateApplicationCommandInput
|
|
8
|
-
extends CreateApplicationRequest {}
|
|
4
|
+
export interface CreateApplicationCommandInput extends CreateApplicationRequest {}
|
|
9
5
|
export interface CreateApplicationCommandOutput
|
|
10
|
-
extends CreateApplicationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateApplicationResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateApplicationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateApplicationCommandInput
|
|
9
|
+
input: CreateApplicationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateApplicationCommandInput,
|
|
17
12
|
CreateApplicationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateApplicationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateApplicationCommandInput
|
|
18
|
+
input: CreateApplicationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateApplicationCommandInput,
|
|
26
21
|
CreateApplicationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateDataIntegrationAssociationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateDataIntegrationAssociationCommandInput
|
|
8
|
-
extends CreateDataIntegrationAssociationRequest {}
|
|
7
|
+
export interface CreateDataIntegrationAssociationCommandInput extends CreateDataIntegrationAssociationRequest {}
|
|
9
8
|
export interface CreateDataIntegrationAssociationCommandOutput
|
|
10
|
-
extends CreateDataIntegrationAssociationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateDataIntegrationAssociationResponse, __MetadataBearer {}
|
|
12
10
|
declare const CreateDataIntegrationAssociationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateDataIntegrationAssociationCommandInput
|
|
12
|
+
input: CreateDataIntegrationAssociationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateDataIntegrationAssociationCommandInput,
|
|
17
15
|
CreateDataIntegrationAssociationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateDataIntegrationAssociationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateDataIntegrationAssociationCommandInput
|
|
21
|
+
input: CreateDataIntegrationAssociationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateDataIntegrationAssociationCommandInput,
|
|
26
24
|
CreateDataIntegrationAssociationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateDataIntegrationRequest,
|
|
4
|
-
CreateDataIntegrationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateDataIntegrationRequest, CreateDataIntegrationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateDataIntegrationCommandInput
|
|
8
|
-
extends CreateDataIntegrationRequest {}
|
|
4
|
+
export interface CreateDataIntegrationCommandInput extends CreateDataIntegrationRequest {}
|
|
9
5
|
export interface CreateDataIntegrationCommandOutput
|
|
10
|
-
extends CreateDataIntegrationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateDataIntegrationResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateDataIntegrationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateDataIntegrationCommandInput
|
|
9
|
+
input: CreateDataIntegrationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateDataIntegrationCommandInput,
|
|
17
12
|
CreateDataIntegrationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateDataIntegrationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateDataIntegrationCommandInput
|
|
18
|
+
input: CreateDataIntegrationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateDataIntegrationCommandInput,
|
|
26
21
|
CreateDataIntegrationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateEventIntegrationRequest,
|
|
4
|
-
CreateEventIntegrationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateEventIntegrationRequest, CreateEventIntegrationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateEventIntegrationCommandInput
|
|
8
|
-
extends CreateEventIntegrationRequest {}
|
|
4
|
+
export interface CreateEventIntegrationCommandInput extends CreateEventIntegrationRequest {}
|
|
9
5
|
export interface CreateEventIntegrationCommandOutput
|
|
10
|
-
extends CreateEventIntegrationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateEventIntegrationResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateEventIntegrationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateEventIntegrationCommandInput
|
|
9
|
+
input: CreateEventIntegrationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateEventIntegrationCommandInput,
|
|
17
12
|
CreateEventIntegrationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateEventIntegrationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateEventIntegrationCommandInput
|
|
18
|
+
input: CreateEventIntegrationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateEventIntegrationCommandInput,
|
|
26
21
|
CreateEventIntegrationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteApplicationRequest,
|
|
4
|
-
DeleteApplicationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteApplicationCommandInput
|
|
8
|
-
extends DeleteApplicationRequest {}
|
|
4
|
+
export interface DeleteApplicationCommandInput extends DeleteApplicationRequest {}
|
|
9
5
|
export interface DeleteApplicationCommandOutput
|
|
10
|
-
extends DeleteApplicationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteApplicationResponse, __MetadataBearer {}
|
|
12
7
|
declare const DeleteApplicationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteApplicationCommandInput
|
|
9
|
+
input: DeleteApplicationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteApplicationCommandInput,
|
|
17
12
|
DeleteApplicationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteApplicationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteApplicationCommandInput
|
|
18
|
+
input: DeleteApplicationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteApplicationCommandInput,
|
|
26
21
|
DeleteApplicationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteDataIntegrationRequest,
|
|
4
|
-
DeleteDataIntegrationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteDataIntegrationRequest, DeleteDataIntegrationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteDataIntegrationCommandInput
|
|
8
|
-
extends DeleteDataIntegrationRequest {}
|
|
4
|
+
export interface DeleteDataIntegrationCommandInput extends DeleteDataIntegrationRequest {}
|
|
9
5
|
export interface DeleteDataIntegrationCommandOutput
|
|
10
|
-
extends DeleteDataIntegrationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteDataIntegrationResponse, __MetadataBearer {}
|
|
12
7
|
declare const DeleteDataIntegrationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteDataIntegrationCommandInput
|
|
9
|
+
input: DeleteDataIntegrationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteDataIntegrationCommandInput,
|
|
17
12
|
DeleteDataIntegrationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteDataIntegrationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteDataIntegrationCommandInput
|
|
18
|
+
input: DeleteDataIntegrationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteDataIntegrationCommandInput,
|
|
26
21
|
DeleteDataIntegrationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteEventIntegrationRequest,
|
|
4
|
-
DeleteEventIntegrationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteEventIntegrationRequest, DeleteEventIntegrationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteEventIntegrationCommandInput
|
|
8
|
-
extends DeleteEventIntegrationRequest {}
|
|
4
|
+
export interface DeleteEventIntegrationCommandInput extends DeleteEventIntegrationRequest {}
|
|
9
5
|
export interface DeleteEventIntegrationCommandOutput
|
|
10
|
-
extends DeleteEventIntegrationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteEventIntegrationResponse, __MetadataBearer {}
|
|
12
7
|
declare const DeleteEventIntegrationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteEventIntegrationCommandInput
|
|
9
|
+
input: DeleteEventIntegrationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteEventIntegrationCommandInput,
|
|
17
12
|
DeleteEventIntegrationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteEventIntegrationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteEventIntegrationCommandInput
|
|
18
|
+
input: DeleteEventIntegrationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteEventIntegrationCommandInput,
|
|
26
21
|
DeleteEventIntegrationCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetApplicationRequest,
|
|
4
|
-
GetApplicationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetApplicationRequest, GetApplicationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetApplicationCommandInput extends GetApplicationRequest {}
|
|
8
|
-
export interface GetApplicationCommandOutput
|
|
9
|
-
extends GetApplicationResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetApplicationCommandOutput extends GetApplicationResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetApplicationCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetApplicationCommandInput
|
|
8
|
+
input: GetApplicationCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetApplicationCommandInput,
|
|
16
11
|
GetApplicationCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetApplicationCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetApplicationCommandInput
|
|
17
|
+
input: GetApplicationCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetApplicationCommandInput,
|
|
25
20
|
GetApplicationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetDataIntegrationRequest,
|
|
4
|
-
GetDataIntegrationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetDataIntegrationRequest, GetDataIntegrationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetDataIntegrationCommandInput
|
|
8
|
-
extends GetDataIntegrationRequest {}
|
|
4
|
+
export interface GetDataIntegrationCommandInput extends GetDataIntegrationRequest {}
|
|
9
5
|
export interface GetDataIntegrationCommandOutput
|
|
10
|
-
extends GetDataIntegrationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetDataIntegrationResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetDataIntegrationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetDataIntegrationCommandInput
|
|
9
|
+
input: GetDataIntegrationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetDataIntegrationCommandInput,
|
|
17
12
|
GetDataIntegrationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetDataIntegrationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetDataIntegrationCommandInput
|
|
18
|
+
input: GetDataIntegrationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetDataIntegrationCommandInput,
|
|
26
21
|
GetDataIntegrationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetEventIntegrationRequest,
|
|
4
|
-
GetEventIntegrationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetEventIntegrationRequest, GetEventIntegrationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetEventIntegrationCommandInput
|
|
8
|
-
extends GetEventIntegrationRequest {}
|
|
4
|
+
export interface GetEventIntegrationCommandInput extends GetEventIntegrationRequest {}
|
|
9
5
|
export interface GetEventIntegrationCommandOutput
|
|
10
|
-
extends GetEventIntegrationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetEventIntegrationResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetEventIntegrationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetEventIntegrationCommandInput
|
|
9
|
+
input: GetEventIntegrationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetEventIntegrationCommandInput,
|
|
17
12
|
GetEventIntegrationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetEventIntegrationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetEventIntegrationCommandInput
|
|
18
|
+
input: GetEventIntegrationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetEventIntegrationCommandInput,
|
|
26
21
|
GetEventIntegrationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListApplicationAssociationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListApplicationAssociationsCommandInput
|
|
8
|
-
extends ListApplicationAssociationsRequest {}
|
|
7
|
+
export interface ListApplicationAssociationsCommandInput extends ListApplicationAssociationsRequest {}
|
|
9
8
|
export interface ListApplicationAssociationsCommandOutput
|
|
10
|
-
extends ListApplicationAssociationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListApplicationAssociationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListApplicationAssociationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListApplicationAssociationsCommandInput
|
|
12
|
+
input: ListApplicationAssociationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListApplicationAssociationsCommandInput,
|
|
17
15
|
ListApplicationAssociationsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListApplicationAssociationsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListApplicationAssociationsCommandInput
|
|
21
|
+
input: ListApplicationAssociationsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListApplicationAssociationsCommandInput,
|
|
26
24
|
ListApplicationAssociationsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListApplicationsRequest,
|
|
4
|
-
ListApplicationsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListApplicationsCommandInput extends ListApplicationsRequest {}
|
|
8
|
-
export interface ListApplicationsCommandOutput
|
|
9
|
-
extends ListApplicationsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListApplicationsCommandOutput extends ListApplicationsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListApplicationsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListApplicationsCommandInput
|
|
8
|
+
input: ListApplicationsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListApplicationsCommandInput,
|
|
16
11
|
ListApplicationsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListDataIntegrationAssociationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListDataIntegrationAssociationsCommandInput
|
|
8
|
-
extends ListDataIntegrationAssociationsRequest {}
|
|
7
|
+
export interface ListDataIntegrationAssociationsCommandInput extends ListDataIntegrationAssociationsRequest {}
|
|
9
8
|
export interface ListDataIntegrationAssociationsCommandOutput
|
|
10
|
-
extends ListDataIntegrationAssociationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListDataIntegrationAssociationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListDataIntegrationAssociationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListDataIntegrationAssociationsCommandInput
|
|
12
|
+
input: ListDataIntegrationAssociationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListDataIntegrationAssociationsCommandInput,
|
|
17
15
|
ListDataIntegrationAssociationsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListDataIntegrationAssociationsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListDataIntegrationAssociationsCommandInput
|
|
21
|
+
input: ListDataIntegrationAssociationsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListDataIntegrationAssociationsCommandInput,
|
|
26
24
|
ListDataIntegrationAssociationsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListDataIntegrationsRequest,
|
|
4
|
-
ListDataIntegrationsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListDataIntegrationsRequest, ListDataIntegrationsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListDataIntegrationsCommandInput
|
|
8
|
-
extends ListDataIntegrationsRequest {}
|
|
4
|
+
export interface ListDataIntegrationsCommandInput extends ListDataIntegrationsRequest {}
|
|
9
5
|
export interface ListDataIntegrationsCommandOutput
|
|
10
|
-
extends ListDataIntegrationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListDataIntegrationsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListDataIntegrationsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListDataIntegrationsCommandInput
|
|
9
|
+
input: ListDataIntegrationsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListDataIntegrationsCommandInput,
|
|
17
12
|
ListDataIntegrationsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListEventIntegrationAssociationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListEventIntegrationAssociationsCommandInput
|
|
8
|
-
extends ListEventIntegrationAssociationsRequest {}
|
|
7
|
+
export interface ListEventIntegrationAssociationsCommandInput extends ListEventIntegrationAssociationsRequest {}
|
|
9
8
|
export interface ListEventIntegrationAssociationsCommandOutput
|
|
10
|
-
extends ListEventIntegrationAssociationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListEventIntegrationAssociationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListEventIntegrationAssociationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListEventIntegrationAssociationsCommandInput
|
|
12
|
+
input: ListEventIntegrationAssociationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListEventIntegrationAssociationsCommandInput,
|
|
17
15
|
ListEventIntegrationAssociationsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListEventIntegrationAssociationsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListEventIntegrationAssociationsCommandInput
|
|
21
|
+
input: ListEventIntegrationAssociationsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListEventIntegrationAssociationsCommandInput,
|
|
26
24
|
ListEventIntegrationAssociationsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListEventIntegrationsRequest,
|
|
4
|
-
ListEventIntegrationsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListEventIntegrationsRequest, ListEventIntegrationsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListEventIntegrationsCommandInput
|
|
8
|
-
extends ListEventIntegrationsRequest {}
|
|
4
|
+
export interface ListEventIntegrationsCommandInput extends ListEventIntegrationsRequest {}
|
|
9
5
|
export interface ListEventIntegrationsCommandOutput
|
|
10
|
-
extends ListEventIntegrationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListEventIntegrationsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListEventIntegrationsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListEventIntegrationsCommandInput
|
|
9
|
+
input: ListEventIntegrationsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListEventIntegrationsCommandInput,
|
|
17
12
|
ListEventIntegrationsCommandOutput,
|
|
@@ -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,
|
|
@@ -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,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UntagResourceRequest,
|
|
4
|
-
UntagResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
8
|
-
export interface UntagResourceCommandOutput
|
|
9
|
-
extends UntagResourceResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
|
|
11
6
|
declare const UntagResourceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UntagResourceCommandInput,
|
|
16
11
|
UntagResourceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UntagResourceCommandInput,
|
|
25
20
|
UntagResourceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateApplicationRequest,
|
|
4
|
-
UpdateApplicationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateApplicationCommandInput
|
|
8
|
-
extends UpdateApplicationRequest {}
|
|
4
|
+
export interface UpdateApplicationCommandInput extends UpdateApplicationRequest {}
|
|
9
5
|
export interface UpdateApplicationCommandOutput
|
|
10
|
-
extends UpdateApplicationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateApplicationResponse, __MetadataBearer {}
|
|
12
7
|
declare const UpdateApplicationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateApplicationCommandInput
|
|
9
|
+
input: UpdateApplicationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateApplicationCommandInput,
|
|
17
12
|
UpdateApplicationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateApplicationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateApplicationCommandInput
|
|
18
|
+
input: UpdateApplicationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateApplicationCommandInput,
|
|
26
21
|
UpdateApplicationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
UpdateDataIntegrationAssociationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateDataIntegrationAssociationCommandInput
|
|
8
|
-
extends UpdateDataIntegrationAssociationRequest {}
|
|
7
|
+
export interface UpdateDataIntegrationAssociationCommandInput extends UpdateDataIntegrationAssociationRequest {}
|
|
9
8
|
export interface UpdateDataIntegrationAssociationCommandOutput
|
|
10
|
-
extends UpdateDataIntegrationAssociationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends UpdateDataIntegrationAssociationResponse, __MetadataBearer {}
|
|
12
10
|
declare const UpdateDataIntegrationAssociationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: UpdateDataIntegrationAssociationCommandInput
|
|
12
|
+
input: UpdateDataIntegrationAssociationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
UpdateDataIntegrationAssociationCommandInput,
|
|
17
15
|
UpdateDataIntegrationAssociationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const UpdateDataIntegrationAssociationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: UpdateDataIntegrationAssociationCommandInput
|
|
21
|
+
input: UpdateDataIntegrationAssociationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
UpdateDataIntegrationAssociationCommandInput,
|
|
26
24
|
UpdateDataIntegrationAssociationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateDataIntegrationRequest,
|
|
4
|
-
UpdateDataIntegrationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateDataIntegrationRequest, UpdateDataIntegrationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateDataIntegrationCommandInput
|
|
8
|
-
extends UpdateDataIntegrationRequest {}
|
|
4
|
+
export interface UpdateDataIntegrationCommandInput extends UpdateDataIntegrationRequest {}
|
|
9
5
|
export interface UpdateDataIntegrationCommandOutput
|
|
10
|
-
extends UpdateDataIntegrationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateDataIntegrationResponse, __MetadataBearer {}
|
|
12
7
|
declare const UpdateDataIntegrationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateDataIntegrationCommandInput
|
|
9
|
+
input: UpdateDataIntegrationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateDataIntegrationCommandInput,
|
|
17
12
|
UpdateDataIntegrationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateDataIntegrationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateDataIntegrationCommandInput
|
|
18
|
+
input: UpdateDataIntegrationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateDataIntegrationCommandInput,
|
|
26
21
|
UpdateDataIntegrationCommandOutput,
|