@aws-sdk/client-appintegrations 3.169.0 → 3.171.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/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/AppIntegrations.d.ts +259 -80
- package/dist-types/ts3.4/AppIntegrationsClient.d.ts +195 -88
- package/dist-types/ts3.4/commands/CreateDataIntegrationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateEventIntegrationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteDataIntegrationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteEventIntegrationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetDataIntegrationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetEventIntegrationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListDataIntegrationAssociationsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListDataIntegrationsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListEventIntegrationAssociationsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListEventIntegrationsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateDataIntegrationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdateEventIntegrationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/index.d.ts +15 -15
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/AppIntegrationsServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +322 -392
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +185 -47
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/package.json +34 -34
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AppIntegrationsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppIntegrationsClient";
|
|
13
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
14
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
15
|
+
export interface TagResourceCommandOutput
|
|
16
|
+
extends TagResourceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class TagResourceCommand extends $Command<
|
|
19
|
+
TagResourceCommandInput,
|
|
20
|
+
TagResourceCommandOutput,
|
|
21
|
+
AppIntegrationsClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: TagResourceCommandInput;
|
|
24
|
+
constructor(input: TagResourceCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: AppIntegrationsClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AppIntegrationsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppIntegrationsClient";
|
|
13
|
+
import {
|
|
14
|
+
UntagResourceRequest,
|
|
15
|
+
UntagResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
18
|
+
export interface UntagResourceCommandOutput
|
|
19
|
+
extends UntagResourceResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class UntagResourceCommand extends $Command<
|
|
22
|
+
UntagResourceCommandInput,
|
|
23
|
+
UntagResourceCommandOutput,
|
|
24
|
+
AppIntegrationsClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: UntagResourceCommandInput;
|
|
27
|
+
constructor(input: UntagResourceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: AppIntegrationsClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AppIntegrationsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppIntegrationsClient";
|
|
13
|
+
import {
|
|
14
|
+
UpdateDataIntegrationRequest,
|
|
15
|
+
UpdateDataIntegrationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateDataIntegrationCommandInput
|
|
18
|
+
extends UpdateDataIntegrationRequest {}
|
|
19
|
+
export interface UpdateDataIntegrationCommandOutput
|
|
20
|
+
extends UpdateDataIntegrationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class UpdateDataIntegrationCommand extends $Command<
|
|
23
|
+
UpdateDataIntegrationCommandInput,
|
|
24
|
+
UpdateDataIntegrationCommandOutput,
|
|
25
|
+
AppIntegrationsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateDataIntegrationCommandInput;
|
|
28
|
+
constructor(input: UpdateDataIntegrationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: AppIntegrationsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
UpdateDataIntegrationCommandInput,
|
|
35
|
+
UpdateDataIntegrationCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AppIntegrationsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppIntegrationsClient";
|
|
13
|
+
import {
|
|
14
|
+
UpdateEventIntegrationRequest,
|
|
15
|
+
UpdateEventIntegrationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateEventIntegrationCommandInput
|
|
18
|
+
extends UpdateEventIntegrationRequest {}
|
|
19
|
+
export interface UpdateEventIntegrationCommandOutput
|
|
20
|
+
extends UpdateEventIntegrationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class UpdateEventIntegrationCommand extends $Command<
|
|
23
|
+
UpdateEventIntegrationCommandInput,
|
|
24
|
+
UpdateEventIntegrationCommandOutput,
|
|
25
|
+
AppIntegrationsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateEventIntegrationCommandInput;
|
|
28
|
+
constructor(input: UpdateEventIntegrationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: AppIntegrationsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
UpdateEventIntegrationCommandInput,
|
|
35
|
+
UpdateEventIntegrationCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
export * from "./CreateDataIntegrationCommand";
|
|
2
|
-
export * from "./CreateEventIntegrationCommand";
|
|
3
|
-
export * from "./DeleteDataIntegrationCommand";
|
|
4
|
-
export * from "./DeleteEventIntegrationCommand";
|
|
5
|
-
export * from "./GetDataIntegrationCommand";
|
|
6
|
-
export * from "./GetEventIntegrationCommand";
|
|
7
|
-
export * from "./ListDataIntegrationAssociationsCommand";
|
|
8
|
-
export * from "./ListDataIntegrationsCommand";
|
|
9
|
-
export * from "./ListEventIntegrationAssociationsCommand";
|
|
10
|
-
export * from "./ListEventIntegrationsCommand";
|
|
11
|
-
export * from "./ListTagsForResourceCommand";
|
|
12
|
-
export * from "./TagResourceCommand";
|
|
13
|
-
export * from "./UntagResourceCommand";
|
|
14
|
-
export * from "./UpdateDataIntegrationCommand";
|
|
15
|
-
export * from "./UpdateEventIntegrationCommand";
|
|
1
|
+
export * from "./CreateDataIntegrationCommand";
|
|
2
|
+
export * from "./CreateEventIntegrationCommand";
|
|
3
|
+
export * from "./DeleteDataIntegrationCommand";
|
|
4
|
+
export * from "./DeleteEventIntegrationCommand";
|
|
5
|
+
export * from "./GetDataIntegrationCommand";
|
|
6
|
+
export * from "./GetEventIntegrationCommand";
|
|
7
|
+
export * from "./ListDataIntegrationAssociationsCommand";
|
|
8
|
+
export * from "./ListDataIntegrationsCommand";
|
|
9
|
+
export * from "./ListEventIntegrationAssociationsCommand";
|
|
10
|
+
export * from "./ListEventIntegrationsCommand";
|
|
11
|
+
export * from "./ListTagsForResourceCommand";
|
|
12
|
+
export * from "./TagResourceCommand";
|
|
13
|
+
export * from "./UntagResourceCommand";
|
|
14
|
+
export * from "./UpdateDataIntegrationCommand";
|
|
15
|
+
export * from "./UpdateEventIntegrationCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./AppIntegrations";
|
|
2
|
-
export * from "./AppIntegrationsClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export { AppIntegrationsServiceException } from "./models/AppIntegrationsServiceException";
|
|
1
|
+
export * from "./AppIntegrations";
|
|
2
|
+
export * from "./AppIntegrationsClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export { AppIntegrationsServiceException } from "./models/AppIntegrationsServiceException";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class AppIntegrationsServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|