@aws-sdk/client-appintegrations 3.928.0 → 3.929.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 +1016 -1008
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/AppIntegrationsClient.js +2 -0
- package/dist-es/commands/CreateApplicationCommand.js +3 -9
- package/dist-es/commands/CreateDataIntegrationAssociationCommand.js +3 -9
- package/dist-es/commands/CreateDataIntegrationCommand.js +3 -9
- package/dist-es/commands/CreateEventIntegrationCommand.js +3 -9
- package/dist-es/commands/DeleteApplicationCommand.js +3 -9
- package/dist-es/commands/DeleteDataIntegrationCommand.js +3 -9
- package/dist-es/commands/DeleteEventIntegrationCommand.js +3 -9
- package/dist-es/commands/GetApplicationCommand.js +3 -9
- package/dist-es/commands/GetDataIntegrationCommand.js +3 -9
- package/dist-es/commands/GetEventIntegrationCommand.js +3 -9
- package/dist-es/commands/ListApplicationAssociationsCommand.js +3 -9
- package/dist-es/commands/ListApplicationsCommand.js +3 -9
- package/dist-es/commands/ListDataIntegrationAssociationsCommand.js +3 -9
- package/dist-es/commands/ListDataIntegrationsCommand.js +3 -9
- package/dist-es/commands/ListEventIntegrationAssociationsCommand.js +3 -9
- package/dist-es/commands/ListEventIntegrationsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateApplicationCommand.js +3 -9
- package/dist-es/commands/UpdateDataIntegrationAssociationCommand.js +3 -9
- package/dist-es/commands/UpdateDataIntegrationCommand.js +3 -9
- package/dist-es/commands/UpdateEventIntegrationCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +960 -0
- package/dist-types/AppIntegrationsClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +117 -0
- package/dist-types/ts3.4/AppIntegrationsClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +123 -0
- package/package.json +2 -3
- package/dist-es/protocols/Aws_restJson1.js +0 -829
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -209
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -281
|
@@ -1,209 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
-
import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "../commands/CreateApplicationCommand";
|
|
4
|
-
import { CreateDataIntegrationAssociationCommandInput, CreateDataIntegrationAssociationCommandOutput } from "../commands/CreateDataIntegrationAssociationCommand";
|
|
5
|
-
import { CreateDataIntegrationCommandInput, CreateDataIntegrationCommandOutput } from "../commands/CreateDataIntegrationCommand";
|
|
6
|
-
import { CreateEventIntegrationCommandInput, CreateEventIntegrationCommandOutput } from "../commands/CreateEventIntegrationCommand";
|
|
7
|
-
import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "../commands/DeleteApplicationCommand";
|
|
8
|
-
import { DeleteDataIntegrationCommandInput, DeleteDataIntegrationCommandOutput } from "../commands/DeleteDataIntegrationCommand";
|
|
9
|
-
import { DeleteEventIntegrationCommandInput, DeleteEventIntegrationCommandOutput } from "../commands/DeleteEventIntegrationCommand";
|
|
10
|
-
import { GetApplicationCommandInput, GetApplicationCommandOutput } from "../commands/GetApplicationCommand";
|
|
11
|
-
import { GetDataIntegrationCommandInput, GetDataIntegrationCommandOutput } from "../commands/GetDataIntegrationCommand";
|
|
12
|
-
import { GetEventIntegrationCommandInput, GetEventIntegrationCommandOutput } from "../commands/GetEventIntegrationCommand";
|
|
13
|
-
import { ListApplicationAssociationsCommandInput, ListApplicationAssociationsCommandOutput } from "../commands/ListApplicationAssociationsCommand";
|
|
14
|
-
import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "../commands/ListApplicationsCommand";
|
|
15
|
-
import { ListDataIntegrationAssociationsCommandInput, ListDataIntegrationAssociationsCommandOutput } from "../commands/ListDataIntegrationAssociationsCommand";
|
|
16
|
-
import { ListDataIntegrationsCommandInput, ListDataIntegrationsCommandOutput } from "../commands/ListDataIntegrationsCommand";
|
|
17
|
-
import { ListEventIntegrationAssociationsCommandInput, ListEventIntegrationAssociationsCommandOutput } from "../commands/ListEventIntegrationAssociationsCommand";
|
|
18
|
-
import { ListEventIntegrationsCommandInput, ListEventIntegrationsCommandOutput } from "../commands/ListEventIntegrationsCommand";
|
|
19
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
20
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
21
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
22
|
-
import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "../commands/UpdateApplicationCommand";
|
|
23
|
-
import { UpdateDataIntegrationAssociationCommandInput, UpdateDataIntegrationAssociationCommandOutput } from "../commands/UpdateDataIntegrationAssociationCommand";
|
|
24
|
-
import { UpdateDataIntegrationCommandInput, UpdateDataIntegrationCommandOutput } from "../commands/UpdateDataIntegrationCommand";
|
|
25
|
-
import { UpdateEventIntegrationCommandInput, UpdateEventIntegrationCommandOutput } from "../commands/UpdateEventIntegrationCommand";
|
|
26
|
-
/**
|
|
27
|
-
* serializeAws_restJson1CreateApplicationCommand
|
|
28
|
-
*/
|
|
29
|
-
export declare const se_CreateApplicationCommand: (input: CreateApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
|
-
/**
|
|
31
|
-
* serializeAws_restJson1CreateDataIntegrationCommand
|
|
32
|
-
*/
|
|
33
|
-
export declare const se_CreateDataIntegrationCommand: (input: CreateDataIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
|
-
/**
|
|
35
|
-
* serializeAws_restJson1CreateDataIntegrationAssociationCommand
|
|
36
|
-
*/
|
|
37
|
-
export declare const se_CreateDataIntegrationAssociationCommand: (input: CreateDataIntegrationAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
|
-
/**
|
|
39
|
-
* serializeAws_restJson1CreateEventIntegrationCommand
|
|
40
|
-
*/
|
|
41
|
-
export declare const se_CreateEventIntegrationCommand: (input: CreateEventIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
|
-
/**
|
|
43
|
-
* serializeAws_restJson1DeleteApplicationCommand
|
|
44
|
-
*/
|
|
45
|
-
export declare const se_DeleteApplicationCommand: (input: DeleteApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
|
-
/**
|
|
47
|
-
* serializeAws_restJson1DeleteDataIntegrationCommand
|
|
48
|
-
*/
|
|
49
|
-
export declare const se_DeleteDataIntegrationCommand: (input: DeleteDataIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
|
-
/**
|
|
51
|
-
* serializeAws_restJson1DeleteEventIntegrationCommand
|
|
52
|
-
*/
|
|
53
|
-
export declare const se_DeleteEventIntegrationCommand: (input: DeleteEventIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
|
-
/**
|
|
55
|
-
* serializeAws_restJson1GetApplicationCommand
|
|
56
|
-
*/
|
|
57
|
-
export declare const se_GetApplicationCommand: (input: GetApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
|
-
/**
|
|
59
|
-
* serializeAws_restJson1GetDataIntegrationCommand
|
|
60
|
-
*/
|
|
61
|
-
export declare const se_GetDataIntegrationCommand: (input: GetDataIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
|
-
/**
|
|
63
|
-
* serializeAws_restJson1GetEventIntegrationCommand
|
|
64
|
-
*/
|
|
65
|
-
export declare const se_GetEventIntegrationCommand: (input: GetEventIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
|
-
/**
|
|
67
|
-
* serializeAws_restJson1ListApplicationAssociationsCommand
|
|
68
|
-
*/
|
|
69
|
-
export declare const se_ListApplicationAssociationsCommand: (input: ListApplicationAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
|
-
/**
|
|
71
|
-
* serializeAws_restJson1ListApplicationsCommand
|
|
72
|
-
*/
|
|
73
|
-
export declare const se_ListApplicationsCommand: (input: ListApplicationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
|
-
/**
|
|
75
|
-
* serializeAws_restJson1ListDataIntegrationAssociationsCommand
|
|
76
|
-
*/
|
|
77
|
-
export declare const se_ListDataIntegrationAssociationsCommand: (input: ListDataIntegrationAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
|
-
/**
|
|
79
|
-
* serializeAws_restJson1ListDataIntegrationsCommand
|
|
80
|
-
*/
|
|
81
|
-
export declare const se_ListDataIntegrationsCommand: (input: ListDataIntegrationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
82
|
-
/**
|
|
83
|
-
* serializeAws_restJson1ListEventIntegrationAssociationsCommand
|
|
84
|
-
*/
|
|
85
|
-
export declare const se_ListEventIntegrationAssociationsCommand: (input: ListEventIntegrationAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
86
|
-
/**
|
|
87
|
-
* serializeAws_restJson1ListEventIntegrationsCommand
|
|
88
|
-
*/
|
|
89
|
-
export declare const se_ListEventIntegrationsCommand: (input: ListEventIntegrationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
90
|
-
/**
|
|
91
|
-
* serializeAws_restJson1ListTagsForResourceCommand
|
|
92
|
-
*/
|
|
93
|
-
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
94
|
-
/**
|
|
95
|
-
* serializeAws_restJson1TagResourceCommand
|
|
96
|
-
*/
|
|
97
|
-
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
98
|
-
/**
|
|
99
|
-
* serializeAws_restJson1UntagResourceCommand
|
|
100
|
-
*/
|
|
101
|
-
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
102
|
-
/**
|
|
103
|
-
* serializeAws_restJson1UpdateApplicationCommand
|
|
104
|
-
*/
|
|
105
|
-
export declare const se_UpdateApplicationCommand: (input: UpdateApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
106
|
-
/**
|
|
107
|
-
* serializeAws_restJson1UpdateDataIntegrationCommand
|
|
108
|
-
*/
|
|
109
|
-
export declare const se_UpdateDataIntegrationCommand: (input: UpdateDataIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
110
|
-
/**
|
|
111
|
-
* serializeAws_restJson1UpdateDataIntegrationAssociationCommand
|
|
112
|
-
*/
|
|
113
|
-
export declare const se_UpdateDataIntegrationAssociationCommand: (input: UpdateDataIntegrationAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
114
|
-
/**
|
|
115
|
-
* serializeAws_restJson1UpdateEventIntegrationCommand
|
|
116
|
-
*/
|
|
117
|
-
export declare const se_UpdateEventIntegrationCommand: (input: UpdateEventIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
118
|
-
/**
|
|
119
|
-
* deserializeAws_restJson1CreateApplicationCommand
|
|
120
|
-
*/
|
|
121
|
-
export declare const de_CreateApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateApplicationCommandOutput>;
|
|
122
|
-
/**
|
|
123
|
-
* deserializeAws_restJson1CreateDataIntegrationCommand
|
|
124
|
-
*/
|
|
125
|
-
export declare const de_CreateDataIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDataIntegrationCommandOutput>;
|
|
126
|
-
/**
|
|
127
|
-
* deserializeAws_restJson1CreateDataIntegrationAssociationCommand
|
|
128
|
-
*/
|
|
129
|
-
export declare const de_CreateDataIntegrationAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDataIntegrationAssociationCommandOutput>;
|
|
130
|
-
/**
|
|
131
|
-
* deserializeAws_restJson1CreateEventIntegrationCommand
|
|
132
|
-
*/
|
|
133
|
-
export declare const de_CreateEventIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEventIntegrationCommandOutput>;
|
|
134
|
-
/**
|
|
135
|
-
* deserializeAws_restJson1DeleteApplicationCommand
|
|
136
|
-
*/
|
|
137
|
-
export declare const de_DeleteApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteApplicationCommandOutput>;
|
|
138
|
-
/**
|
|
139
|
-
* deserializeAws_restJson1DeleteDataIntegrationCommand
|
|
140
|
-
*/
|
|
141
|
-
export declare const de_DeleteDataIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDataIntegrationCommandOutput>;
|
|
142
|
-
/**
|
|
143
|
-
* deserializeAws_restJson1DeleteEventIntegrationCommand
|
|
144
|
-
*/
|
|
145
|
-
export declare const de_DeleteEventIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEventIntegrationCommandOutput>;
|
|
146
|
-
/**
|
|
147
|
-
* deserializeAws_restJson1GetApplicationCommand
|
|
148
|
-
*/
|
|
149
|
-
export declare const de_GetApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetApplicationCommandOutput>;
|
|
150
|
-
/**
|
|
151
|
-
* deserializeAws_restJson1GetDataIntegrationCommand
|
|
152
|
-
*/
|
|
153
|
-
export declare const de_GetDataIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDataIntegrationCommandOutput>;
|
|
154
|
-
/**
|
|
155
|
-
* deserializeAws_restJson1GetEventIntegrationCommand
|
|
156
|
-
*/
|
|
157
|
-
export declare const de_GetEventIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEventIntegrationCommandOutput>;
|
|
158
|
-
/**
|
|
159
|
-
* deserializeAws_restJson1ListApplicationAssociationsCommand
|
|
160
|
-
*/
|
|
161
|
-
export declare const de_ListApplicationAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListApplicationAssociationsCommandOutput>;
|
|
162
|
-
/**
|
|
163
|
-
* deserializeAws_restJson1ListApplicationsCommand
|
|
164
|
-
*/
|
|
165
|
-
export declare const de_ListApplicationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListApplicationsCommandOutput>;
|
|
166
|
-
/**
|
|
167
|
-
* deserializeAws_restJson1ListDataIntegrationAssociationsCommand
|
|
168
|
-
*/
|
|
169
|
-
export declare const de_ListDataIntegrationAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataIntegrationAssociationsCommandOutput>;
|
|
170
|
-
/**
|
|
171
|
-
* deserializeAws_restJson1ListDataIntegrationsCommand
|
|
172
|
-
*/
|
|
173
|
-
export declare const de_ListDataIntegrationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataIntegrationsCommandOutput>;
|
|
174
|
-
/**
|
|
175
|
-
* deserializeAws_restJson1ListEventIntegrationAssociationsCommand
|
|
176
|
-
*/
|
|
177
|
-
export declare const de_ListEventIntegrationAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEventIntegrationAssociationsCommandOutput>;
|
|
178
|
-
/**
|
|
179
|
-
* deserializeAws_restJson1ListEventIntegrationsCommand
|
|
180
|
-
*/
|
|
181
|
-
export declare const de_ListEventIntegrationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEventIntegrationsCommandOutput>;
|
|
182
|
-
/**
|
|
183
|
-
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
184
|
-
*/
|
|
185
|
-
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
186
|
-
/**
|
|
187
|
-
* deserializeAws_restJson1TagResourceCommand
|
|
188
|
-
*/
|
|
189
|
-
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
190
|
-
/**
|
|
191
|
-
* deserializeAws_restJson1UntagResourceCommand
|
|
192
|
-
*/
|
|
193
|
-
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
194
|
-
/**
|
|
195
|
-
* deserializeAws_restJson1UpdateApplicationCommand
|
|
196
|
-
*/
|
|
197
|
-
export declare const de_UpdateApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateApplicationCommandOutput>;
|
|
198
|
-
/**
|
|
199
|
-
* deserializeAws_restJson1UpdateDataIntegrationCommand
|
|
200
|
-
*/
|
|
201
|
-
export declare const de_UpdateDataIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDataIntegrationCommandOutput>;
|
|
202
|
-
/**
|
|
203
|
-
* deserializeAws_restJson1UpdateDataIntegrationAssociationCommand
|
|
204
|
-
*/
|
|
205
|
-
export declare const de_UpdateDataIntegrationAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDataIntegrationAssociationCommandOutput>;
|
|
206
|
-
/**
|
|
207
|
-
* deserializeAws_restJson1UpdateEventIntegrationCommand
|
|
208
|
-
*/
|
|
209
|
-
export declare const de_UpdateEventIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEventIntegrationCommandOutput>;
|
|
@@ -1,281 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HttpRequest as __HttpRequest,
|
|
3
|
-
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@smithy/protocol-http";
|
|
5
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
CreateApplicationCommandInput,
|
|
8
|
-
CreateApplicationCommandOutput,
|
|
9
|
-
} from "../commands/CreateApplicationCommand";
|
|
10
|
-
import {
|
|
11
|
-
CreateDataIntegrationAssociationCommandInput,
|
|
12
|
-
CreateDataIntegrationAssociationCommandOutput,
|
|
13
|
-
} from "../commands/CreateDataIntegrationAssociationCommand";
|
|
14
|
-
import {
|
|
15
|
-
CreateDataIntegrationCommandInput,
|
|
16
|
-
CreateDataIntegrationCommandOutput,
|
|
17
|
-
} from "../commands/CreateDataIntegrationCommand";
|
|
18
|
-
import {
|
|
19
|
-
CreateEventIntegrationCommandInput,
|
|
20
|
-
CreateEventIntegrationCommandOutput,
|
|
21
|
-
} from "../commands/CreateEventIntegrationCommand";
|
|
22
|
-
import {
|
|
23
|
-
DeleteApplicationCommandInput,
|
|
24
|
-
DeleteApplicationCommandOutput,
|
|
25
|
-
} from "../commands/DeleteApplicationCommand";
|
|
26
|
-
import {
|
|
27
|
-
DeleteDataIntegrationCommandInput,
|
|
28
|
-
DeleteDataIntegrationCommandOutput,
|
|
29
|
-
} from "../commands/DeleteDataIntegrationCommand";
|
|
30
|
-
import {
|
|
31
|
-
DeleteEventIntegrationCommandInput,
|
|
32
|
-
DeleteEventIntegrationCommandOutput,
|
|
33
|
-
} from "../commands/DeleteEventIntegrationCommand";
|
|
34
|
-
import {
|
|
35
|
-
GetApplicationCommandInput,
|
|
36
|
-
GetApplicationCommandOutput,
|
|
37
|
-
} from "../commands/GetApplicationCommand";
|
|
38
|
-
import {
|
|
39
|
-
GetDataIntegrationCommandInput,
|
|
40
|
-
GetDataIntegrationCommandOutput,
|
|
41
|
-
} from "../commands/GetDataIntegrationCommand";
|
|
42
|
-
import {
|
|
43
|
-
GetEventIntegrationCommandInput,
|
|
44
|
-
GetEventIntegrationCommandOutput,
|
|
45
|
-
} from "../commands/GetEventIntegrationCommand";
|
|
46
|
-
import {
|
|
47
|
-
ListApplicationAssociationsCommandInput,
|
|
48
|
-
ListApplicationAssociationsCommandOutput,
|
|
49
|
-
} from "../commands/ListApplicationAssociationsCommand";
|
|
50
|
-
import {
|
|
51
|
-
ListApplicationsCommandInput,
|
|
52
|
-
ListApplicationsCommandOutput,
|
|
53
|
-
} from "../commands/ListApplicationsCommand";
|
|
54
|
-
import {
|
|
55
|
-
ListDataIntegrationAssociationsCommandInput,
|
|
56
|
-
ListDataIntegrationAssociationsCommandOutput,
|
|
57
|
-
} from "../commands/ListDataIntegrationAssociationsCommand";
|
|
58
|
-
import {
|
|
59
|
-
ListDataIntegrationsCommandInput,
|
|
60
|
-
ListDataIntegrationsCommandOutput,
|
|
61
|
-
} from "../commands/ListDataIntegrationsCommand";
|
|
62
|
-
import {
|
|
63
|
-
ListEventIntegrationAssociationsCommandInput,
|
|
64
|
-
ListEventIntegrationAssociationsCommandOutput,
|
|
65
|
-
} from "../commands/ListEventIntegrationAssociationsCommand";
|
|
66
|
-
import {
|
|
67
|
-
ListEventIntegrationsCommandInput,
|
|
68
|
-
ListEventIntegrationsCommandOutput,
|
|
69
|
-
} from "../commands/ListEventIntegrationsCommand";
|
|
70
|
-
import {
|
|
71
|
-
ListTagsForResourceCommandInput,
|
|
72
|
-
ListTagsForResourceCommandOutput,
|
|
73
|
-
} from "../commands/ListTagsForResourceCommand";
|
|
74
|
-
import {
|
|
75
|
-
TagResourceCommandInput,
|
|
76
|
-
TagResourceCommandOutput,
|
|
77
|
-
} from "../commands/TagResourceCommand";
|
|
78
|
-
import {
|
|
79
|
-
UntagResourceCommandInput,
|
|
80
|
-
UntagResourceCommandOutput,
|
|
81
|
-
} from "../commands/UntagResourceCommand";
|
|
82
|
-
import {
|
|
83
|
-
UpdateApplicationCommandInput,
|
|
84
|
-
UpdateApplicationCommandOutput,
|
|
85
|
-
} from "../commands/UpdateApplicationCommand";
|
|
86
|
-
import {
|
|
87
|
-
UpdateDataIntegrationAssociationCommandInput,
|
|
88
|
-
UpdateDataIntegrationAssociationCommandOutput,
|
|
89
|
-
} from "../commands/UpdateDataIntegrationAssociationCommand";
|
|
90
|
-
import {
|
|
91
|
-
UpdateDataIntegrationCommandInput,
|
|
92
|
-
UpdateDataIntegrationCommandOutput,
|
|
93
|
-
} from "../commands/UpdateDataIntegrationCommand";
|
|
94
|
-
import {
|
|
95
|
-
UpdateEventIntegrationCommandInput,
|
|
96
|
-
UpdateEventIntegrationCommandOutput,
|
|
97
|
-
} from "../commands/UpdateEventIntegrationCommand";
|
|
98
|
-
export declare const se_CreateApplicationCommand: (
|
|
99
|
-
input: CreateApplicationCommandInput,
|
|
100
|
-
context: __SerdeContext
|
|
101
|
-
) => Promise<__HttpRequest>;
|
|
102
|
-
export declare const se_CreateDataIntegrationCommand: (
|
|
103
|
-
input: CreateDataIntegrationCommandInput,
|
|
104
|
-
context: __SerdeContext
|
|
105
|
-
) => Promise<__HttpRequest>;
|
|
106
|
-
export declare const se_CreateDataIntegrationAssociationCommand: (
|
|
107
|
-
input: CreateDataIntegrationAssociationCommandInput,
|
|
108
|
-
context: __SerdeContext
|
|
109
|
-
) => Promise<__HttpRequest>;
|
|
110
|
-
export declare const se_CreateEventIntegrationCommand: (
|
|
111
|
-
input: CreateEventIntegrationCommandInput,
|
|
112
|
-
context: __SerdeContext
|
|
113
|
-
) => Promise<__HttpRequest>;
|
|
114
|
-
export declare const se_DeleteApplicationCommand: (
|
|
115
|
-
input: DeleteApplicationCommandInput,
|
|
116
|
-
context: __SerdeContext
|
|
117
|
-
) => Promise<__HttpRequest>;
|
|
118
|
-
export declare const se_DeleteDataIntegrationCommand: (
|
|
119
|
-
input: DeleteDataIntegrationCommandInput,
|
|
120
|
-
context: __SerdeContext
|
|
121
|
-
) => Promise<__HttpRequest>;
|
|
122
|
-
export declare const se_DeleteEventIntegrationCommand: (
|
|
123
|
-
input: DeleteEventIntegrationCommandInput,
|
|
124
|
-
context: __SerdeContext
|
|
125
|
-
) => Promise<__HttpRequest>;
|
|
126
|
-
export declare const se_GetApplicationCommand: (
|
|
127
|
-
input: GetApplicationCommandInput,
|
|
128
|
-
context: __SerdeContext
|
|
129
|
-
) => Promise<__HttpRequest>;
|
|
130
|
-
export declare const se_GetDataIntegrationCommand: (
|
|
131
|
-
input: GetDataIntegrationCommandInput,
|
|
132
|
-
context: __SerdeContext
|
|
133
|
-
) => Promise<__HttpRequest>;
|
|
134
|
-
export declare const se_GetEventIntegrationCommand: (
|
|
135
|
-
input: GetEventIntegrationCommandInput,
|
|
136
|
-
context: __SerdeContext
|
|
137
|
-
) => Promise<__HttpRequest>;
|
|
138
|
-
export declare const se_ListApplicationAssociationsCommand: (
|
|
139
|
-
input: ListApplicationAssociationsCommandInput,
|
|
140
|
-
context: __SerdeContext
|
|
141
|
-
) => Promise<__HttpRequest>;
|
|
142
|
-
export declare const se_ListApplicationsCommand: (
|
|
143
|
-
input: ListApplicationsCommandInput,
|
|
144
|
-
context: __SerdeContext
|
|
145
|
-
) => Promise<__HttpRequest>;
|
|
146
|
-
export declare const se_ListDataIntegrationAssociationsCommand: (
|
|
147
|
-
input: ListDataIntegrationAssociationsCommandInput,
|
|
148
|
-
context: __SerdeContext
|
|
149
|
-
) => Promise<__HttpRequest>;
|
|
150
|
-
export declare const se_ListDataIntegrationsCommand: (
|
|
151
|
-
input: ListDataIntegrationsCommandInput,
|
|
152
|
-
context: __SerdeContext
|
|
153
|
-
) => Promise<__HttpRequest>;
|
|
154
|
-
export declare const se_ListEventIntegrationAssociationsCommand: (
|
|
155
|
-
input: ListEventIntegrationAssociationsCommandInput,
|
|
156
|
-
context: __SerdeContext
|
|
157
|
-
) => Promise<__HttpRequest>;
|
|
158
|
-
export declare const se_ListEventIntegrationsCommand: (
|
|
159
|
-
input: ListEventIntegrationsCommandInput,
|
|
160
|
-
context: __SerdeContext
|
|
161
|
-
) => Promise<__HttpRequest>;
|
|
162
|
-
export declare const se_ListTagsForResourceCommand: (
|
|
163
|
-
input: ListTagsForResourceCommandInput,
|
|
164
|
-
context: __SerdeContext
|
|
165
|
-
) => Promise<__HttpRequest>;
|
|
166
|
-
export declare const se_TagResourceCommand: (
|
|
167
|
-
input: TagResourceCommandInput,
|
|
168
|
-
context: __SerdeContext
|
|
169
|
-
) => Promise<__HttpRequest>;
|
|
170
|
-
export declare const se_UntagResourceCommand: (
|
|
171
|
-
input: UntagResourceCommandInput,
|
|
172
|
-
context: __SerdeContext
|
|
173
|
-
) => Promise<__HttpRequest>;
|
|
174
|
-
export declare const se_UpdateApplicationCommand: (
|
|
175
|
-
input: UpdateApplicationCommandInput,
|
|
176
|
-
context: __SerdeContext
|
|
177
|
-
) => Promise<__HttpRequest>;
|
|
178
|
-
export declare const se_UpdateDataIntegrationCommand: (
|
|
179
|
-
input: UpdateDataIntegrationCommandInput,
|
|
180
|
-
context: __SerdeContext
|
|
181
|
-
) => Promise<__HttpRequest>;
|
|
182
|
-
export declare const se_UpdateDataIntegrationAssociationCommand: (
|
|
183
|
-
input: UpdateDataIntegrationAssociationCommandInput,
|
|
184
|
-
context: __SerdeContext
|
|
185
|
-
) => Promise<__HttpRequest>;
|
|
186
|
-
export declare const se_UpdateEventIntegrationCommand: (
|
|
187
|
-
input: UpdateEventIntegrationCommandInput,
|
|
188
|
-
context: __SerdeContext
|
|
189
|
-
) => Promise<__HttpRequest>;
|
|
190
|
-
export declare const de_CreateApplicationCommand: (
|
|
191
|
-
output: __HttpResponse,
|
|
192
|
-
context: __SerdeContext
|
|
193
|
-
) => Promise<CreateApplicationCommandOutput>;
|
|
194
|
-
export declare const de_CreateDataIntegrationCommand: (
|
|
195
|
-
output: __HttpResponse,
|
|
196
|
-
context: __SerdeContext
|
|
197
|
-
) => Promise<CreateDataIntegrationCommandOutput>;
|
|
198
|
-
export declare const de_CreateDataIntegrationAssociationCommand: (
|
|
199
|
-
output: __HttpResponse,
|
|
200
|
-
context: __SerdeContext
|
|
201
|
-
) => Promise<CreateDataIntegrationAssociationCommandOutput>;
|
|
202
|
-
export declare const de_CreateEventIntegrationCommand: (
|
|
203
|
-
output: __HttpResponse,
|
|
204
|
-
context: __SerdeContext
|
|
205
|
-
) => Promise<CreateEventIntegrationCommandOutput>;
|
|
206
|
-
export declare const de_DeleteApplicationCommand: (
|
|
207
|
-
output: __HttpResponse,
|
|
208
|
-
context: __SerdeContext
|
|
209
|
-
) => Promise<DeleteApplicationCommandOutput>;
|
|
210
|
-
export declare const de_DeleteDataIntegrationCommand: (
|
|
211
|
-
output: __HttpResponse,
|
|
212
|
-
context: __SerdeContext
|
|
213
|
-
) => Promise<DeleteDataIntegrationCommandOutput>;
|
|
214
|
-
export declare const de_DeleteEventIntegrationCommand: (
|
|
215
|
-
output: __HttpResponse,
|
|
216
|
-
context: __SerdeContext
|
|
217
|
-
) => Promise<DeleteEventIntegrationCommandOutput>;
|
|
218
|
-
export declare const de_GetApplicationCommand: (
|
|
219
|
-
output: __HttpResponse,
|
|
220
|
-
context: __SerdeContext
|
|
221
|
-
) => Promise<GetApplicationCommandOutput>;
|
|
222
|
-
export declare const de_GetDataIntegrationCommand: (
|
|
223
|
-
output: __HttpResponse,
|
|
224
|
-
context: __SerdeContext
|
|
225
|
-
) => Promise<GetDataIntegrationCommandOutput>;
|
|
226
|
-
export declare const de_GetEventIntegrationCommand: (
|
|
227
|
-
output: __HttpResponse,
|
|
228
|
-
context: __SerdeContext
|
|
229
|
-
) => Promise<GetEventIntegrationCommandOutput>;
|
|
230
|
-
export declare const de_ListApplicationAssociationsCommand: (
|
|
231
|
-
output: __HttpResponse,
|
|
232
|
-
context: __SerdeContext
|
|
233
|
-
) => Promise<ListApplicationAssociationsCommandOutput>;
|
|
234
|
-
export declare const de_ListApplicationsCommand: (
|
|
235
|
-
output: __HttpResponse,
|
|
236
|
-
context: __SerdeContext
|
|
237
|
-
) => Promise<ListApplicationsCommandOutput>;
|
|
238
|
-
export declare const de_ListDataIntegrationAssociationsCommand: (
|
|
239
|
-
output: __HttpResponse,
|
|
240
|
-
context: __SerdeContext
|
|
241
|
-
) => Promise<ListDataIntegrationAssociationsCommandOutput>;
|
|
242
|
-
export declare const de_ListDataIntegrationsCommand: (
|
|
243
|
-
output: __HttpResponse,
|
|
244
|
-
context: __SerdeContext
|
|
245
|
-
) => Promise<ListDataIntegrationsCommandOutput>;
|
|
246
|
-
export declare const de_ListEventIntegrationAssociationsCommand: (
|
|
247
|
-
output: __HttpResponse,
|
|
248
|
-
context: __SerdeContext
|
|
249
|
-
) => Promise<ListEventIntegrationAssociationsCommandOutput>;
|
|
250
|
-
export declare const de_ListEventIntegrationsCommand: (
|
|
251
|
-
output: __HttpResponse,
|
|
252
|
-
context: __SerdeContext
|
|
253
|
-
) => Promise<ListEventIntegrationsCommandOutput>;
|
|
254
|
-
export declare const de_ListTagsForResourceCommand: (
|
|
255
|
-
output: __HttpResponse,
|
|
256
|
-
context: __SerdeContext
|
|
257
|
-
) => Promise<ListTagsForResourceCommandOutput>;
|
|
258
|
-
export declare const de_TagResourceCommand: (
|
|
259
|
-
output: __HttpResponse,
|
|
260
|
-
context: __SerdeContext
|
|
261
|
-
) => Promise<TagResourceCommandOutput>;
|
|
262
|
-
export declare const de_UntagResourceCommand: (
|
|
263
|
-
output: __HttpResponse,
|
|
264
|
-
context: __SerdeContext
|
|
265
|
-
) => Promise<UntagResourceCommandOutput>;
|
|
266
|
-
export declare const de_UpdateApplicationCommand: (
|
|
267
|
-
output: __HttpResponse,
|
|
268
|
-
context: __SerdeContext
|
|
269
|
-
) => Promise<UpdateApplicationCommandOutput>;
|
|
270
|
-
export declare const de_UpdateDataIntegrationCommand: (
|
|
271
|
-
output: __HttpResponse,
|
|
272
|
-
context: __SerdeContext
|
|
273
|
-
) => Promise<UpdateDataIntegrationCommandOutput>;
|
|
274
|
-
export declare const de_UpdateDataIntegrationAssociationCommand: (
|
|
275
|
-
output: __HttpResponse,
|
|
276
|
-
context: __SerdeContext
|
|
277
|
-
) => Promise<UpdateDataIntegrationAssociationCommandOutput>;
|
|
278
|
-
export declare const de_UpdateEventIntegrationCommand: (
|
|
279
|
-
output: __HttpResponse,
|
|
280
|
-
context: __SerdeContext
|
|
281
|
-
) => Promise<UpdateEventIntegrationCommandOutput>;
|