@aws-sdk/client-appintegrations 3.168.0 → 3.170.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 +274 -80
- package/dist-types/ts3.4/AppIntegrationsClient.d.ts +220 -88
- package/dist-types/ts3.4/commands/CreateDataIntegrationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateEventIntegrationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteDataIntegrationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteEventIntegrationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetDataIntegrationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetEventIntegrationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListDataIntegrationAssociationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListDataIntegrationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListEventIntegrationAssociationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListEventIntegrationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateDataIntegrationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateEventIntegrationCommand.d.ts +41 -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 +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +440 -392
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +185 -47
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-appintegrations
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-appintegrations
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-appintegrations
|
|
@@ -1,80 +1,274 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import { AppIntegrationsClient } from "./AppIntegrationsClient";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { AppIntegrationsClient } from "./AppIntegrationsClient";
|
|
3
|
+
import {
|
|
4
|
+
CreateDataIntegrationCommandInput,
|
|
5
|
+
CreateDataIntegrationCommandOutput,
|
|
6
|
+
} from "./commands/CreateDataIntegrationCommand";
|
|
7
|
+
import {
|
|
8
|
+
CreateEventIntegrationCommandInput,
|
|
9
|
+
CreateEventIntegrationCommandOutput,
|
|
10
|
+
} from "./commands/CreateEventIntegrationCommand";
|
|
11
|
+
import {
|
|
12
|
+
DeleteDataIntegrationCommandInput,
|
|
13
|
+
DeleteDataIntegrationCommandOutput,
|
|
14
|
+
} from "./commands/DeleteDataIntegrationCommand";
|
|
15
|
+
import {
|
|
16
|
+
DeleteEventIntegrationCommandInput,
|
|
17
|
+
DeleteEventIntegrationCommandOutput,
|
|
18
|
+
} from "./commands/DeleteEventIntegrationCommand";
|
|
19
|
+
import {
|
|
20
|
+
GetDataIntegrationCommandInput,
|
|
21
|
+
GetDataIntegrationCommandOutput,
|
|
22
|
+
} from "./commands/GetDataIntegrationCommand";
|
|
23
|
+
import {
|
|
24
|
+
GetEventIntegrationCommandInput,
|
|
25
|
+
GetEventIntegrationCommandOutput,
|
|
26
|
+
} from "./commands/GetEventIntegrationCommand";
|
|
27
|
+
import {
|
|
28
|
+
ListDataIntegrationAssociationsCommandInput,
|
|
29
|
+
ListDataIntegrationAssociationsCommandOutput,
|
|
30
|
+
} from "./commands/ListDataIntegrationAssociationsCommand";
|
|
31
|
+
import {
|
|
32
|
+
ListDataIntegrationsCommandInput,
|
|
33
|
+
ListDataIntegrationsCommandOutput,
|
|
34
|
+
} from "./commands/ListDataIntegrationsCommand";
|
|
35
|
+
import {
|
|
36
|
+
ListEventIntegrationAssociationsCommandInput,
|
|
37
|
+
ListEventIntegrationAssociationsCommandOutput,
|
|
38
|
+
} from "./commands/ListEventIntegrationAssociationsCommand";
|
|
39
|
+
import {
|
|
40
|
+
ListEventIntegrationsCommandInput,
|
|
41
|
+
ListEventIntegrationsCommandOutput,
|
|
42
|
+
} from "./commands/ListEventIntegrationsCommand";
|
|
43
|
+
import {
|
|
44
|
+
ListTagsForResourceCommandInput,
|
|
45
|
+
ListTagsForResourceCommandOutput,
|
|
46
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
47
|
+
import {
|
|
48
|
+
TagResourceCommandInput,
|
|
49
|
+
TagResourceCommandOutput,
|
|
50
|
+
} from "./commands/TagResourceCommand";
|
|
51
|
+
import {
|
|
52
|
+
UntagResourceCommandInput,
|
|
53
|
+
UntagResourceCommandOutput,
|
|
54
|
+
} from "./commands/UntagResourceCommand";
|
|
55
|
+
import {
|
|
56
|
+
UpdateDataIntegrationCommandInput,
|
|
57
|
+
UpdateDataIntegrationCommandOutput,
|
|
58
|
+
} from "./commands/UpdateDataIntegrationCommand";
|
|
59
|
+
import {
|
|
60
|
+
UpdateEventIntegrationCommandInput,
|
|
61
|
+
UpdateEventIntegrationCommandOutput,
|
|
62
|
+
} from "./commands/UpdateEventIntegrationCommand";
|
|
63
|
+
|
|
64
|
+
export declare class AppIntegrations extends AppIntegrationsClient {
|
|
65
|
+
createDataIntegration(
|
|
66
|
+
args: CreateDataIntegrationCommandInput,
|
|
67
|
+
options?: __HttpHandlerOptions
|
|
68
|
+
): Promise<CreateDataIntegrationCommandOutput>;
|
|
69
|
+
createDataIntegration(
|
|
70
|
+
args: CreateDataIntegrationCommandInput,
|
|
71
|
+
cb: (err: any, data?: CreateDataIntegrationCommandOutput) => void
|
|
72
|
+
): void;
|
|
73
|
+
createDataIntegration(
|
|
74
|
+
args: CreateDataIntegrationCommandInput,
|
|
75
|
+
options: __HttpHandlerOptions,
|
|
76
|
+
cb: (err: any, data?: CreateDataIntegrationCommandOutput) => void
|
|
77
|
+
): void;
|
|
78
|
+
|
|
79
|
+
createEventIntegration(
|
|
80
|
+
args: CreateEventIntegrationCommandInput,
|
|
81
|
+
options?: __HttpHandlerOptions
|
|
82
|
+
): Promise<CreateEventIntegrationCommandOutput>;
|
|
83
|
+
createEventIntegration(
|
|
84
|
+
args: CreateEventIntegrationCommandInput,
|
|
85
|
+
cb: (err: any, data?: CreateEventIntegrationCommandOutput) => void
|
|
86
|
+
): void;
|
|
87
|
+
createEventIntegration(
|
|
88
|
+
args: CreateEventIntegrationCommandInput,
|
|
89
|
+
options: __HttpHandlerOptions,
|
|
90
|
+
cb: (err: any, data?: CreateEventIntegrationCommandOutput) => void
|
|
91
|
+
): void;
|
|
92
|
+
|
|
93
|
+
deleteDataIntegration(
|
|
94
|
+
args: DeleteDataIntegrationCommandInput,
|
|
95
|
+
options?: __HttpHandlerOptions
|
|
96
|
+
): Promise<DeleteDataIntegrationCommandOutput>;
|
|
97
|
+
deleteDataIntegration(
|
|
98
|
+
args: DeleteDataIntegrationCommandInput,
|
|
99
|
+
cb: (err: any, data?: DeleteDataIntegrationCommandOutput) => void
|
|
100
|
+
): void;
|
|
101
|
+
deleteDataIntegration(
|
|
102
|
+
args: DeleteDataIntegrationCommandInput,
|
|
103
|
+
options: __HttpHandlerOptions,
|
|
104
|
+
cb: (err: any, data?: DeleteDataIntegrationCommandOutput) => void
|
|
105
|
+
): void;
|
|
106
|
+
|
|
107
|
+
deleteEventIntegration(
|
|
108
|
+
args: DeleteEventIntegrationCommandInput,
|
|
109
|
+
options?: __HttpHandlerOptions
|
|
110
|
+
): Promise<DeleteEventIntegrationCommandOutput>;
|
|
111
|
+
deleteEventIntegration(
|
|
112
|
+
args: DeleteEventIntegrationCommandInput,
|
|
113
|
+
cb: (err: any, data?: DeleteEventIntegrationCommandOutput) => void
|
|
114
|
+
): void;
|
|
115
|
+
deleteEventIntegration(
|
|
116
|
+
args: DeleteEventIntegrationCommandInput,
|
|
117
|
+
options: __HttpHandlerOptions,
|
|
118
|
+
cb: (err: any, data?: DeleteEventIntegrationCommandOutput) => void
|
|
119
|
+
): void;
|
|
120
|
+
|
|
121
|
+
getDataIntegration(
|
|
122
|
+
args: GetDataIntegrationCommandInput,
|
|
123
|
+
options?: __HttpHandlerOptions
|
|
124
|
+
): Promise<GetDataIntegrationCommandOutput>;
|
|
125
|
+
getDataIntegration(
|
|
126
|
+
args: GetDataIntegrationCommandInput,
|
|
127
|
+
cb: (err: any, data?: GetDataIntegrationCommandOutput) => void
|
|
128
|
+
): void;
|
|
129
|
+
getDataIntegration(
|
|
130
|
+
args: GetDataIntegrationCommandInput,
|
|
131
|
+
options: __HttpHandlerOptions,
|
|
132
|
+
cb: (err: any, data?: GetDataIntegrationCommandOutput) => void
|
|
133
|
+
): void;
|
|
134
|
+
|
|
135
|
+
getEventIntegration(
|
|
136
|
+
args: GetEventIntegrationCommandInput,
|
|
137
|
+
options?: __HttpHandlerOptions
|
|
138
|
+
): Promise<GetEventIntegrationCommandOutput>;
|
|
139
|
+
getEventIntegration(
|
|
140
|
+
args: GetEventIntegrationCommandInput,
|
|
141
|
+
cb: (err: any, data?: GetEventIntegrationCommandOutput) => void
|
|
142
|
+
): void;
|
|
143
|
+
getEventIntegration(
|
|
144
|
+
args: GetEventIntegrationCommandInput,
|
|
145
|
+
options: __HttpHandlerOptions,
|
|
146
|
+
cb: (err: any, data?: GetEventIntegrationCommandOutput) => void
|
|
147
|
+
): void;
|
|
148
|
+
|
|
149
|
+
listDataIntegrationAssociations(
|
|
150
|
+
args: ListDataIntegrationAssociationsCommandInput,
|
|
151
|
+
options?: __HttpHandlerOptions
|
|
152
|
+
): Promise<ListDataIntegrationAssociationsCommandOutput>;
|
|
153
|
+
listDataIntegrationAssociations(
|
|
154
|
+
args: ListDataIntegrationAssociationsCommandInput,
|
|
155
|
+
cb: (err: any, data?: ListDataIntegrationAssociationsCommandOutput) => void
|
|
156
|
+
): void;
|
|
157
|
+
listDataIntegrationAssociations(
|
|
158
|
+
args: ListDataIntegrationAssociationsCommandInput,
|
|
159
|
+
options: __HttpHandlerOptions,
|
|
160
|
+
cb: (err: any, data?: ListDataIntegrationAssociationsCommandOutput) => void
|
|
161
|
+
): void;
|
|
162
|
+
|
|
163
|
+
listDataIntegrations(
|
|
164
|
+
args: ListDataIntegrationsCommandInput,
|
|
165
|
+
options?: __HttpHandlerOptions
|
|
166
|
+
): Promise<ListDataIntegrationsCommandOutput>;
|
|
167
|
+
listDataIntegrations(
|
|
168
|
+
args: ListDataIntegrationsCommandInput,
|
|
169
|
+
cb: (err: any, data?: ListDataIntegrationsCommandOutput) => void
|
|
170
|
+
): void;
|
|
171
|
+
listDataIntegrations(
|
|
172
|
+
args: ListDataIntegrationsCommandInput,
|
|
173
|
+
options: __HttpHandlerOptions,
|
|
174
|
+
cb: (err: any, data?: ListDataIntegrationsCommandOutput) => void
|
|
175
|
+
): void;
|
|
176
|
+
|
|
177
|
+
listEventIntegrationAssociations(
|
|
178
|
+
args: ListEventIntegrationAssociationsCommandInput,
|
|
179
|
+
options?: __HttpHandlerOptions
|
|
180
|
+
): Promise<ListEventIntegrationAssociationsCommandOutput>;
|
|
181
|
+
listEventIntegrationAssociations(
|
|
182
|
+
args: ListEventIntegrationAssociationsCommandInput,
|
|
183
|
+
cb: (err: any, data?: ListEventIntegrationAssociationsCommandOutput) => void
|
|
184
|
+
): void;
|
|
185
|
+
listEventIntegrationAssociations(
|
|
186
|
+
args: ListEventIntegrationAssociationsCommandInput,
|
|
187
|
+
options: __HttpHandlerOptions,
|
|
188
|
+
cb: (err: any, data?: ListEventIntegrationAssociationsCommandOutput) => void
|
|
189
|
+
): void;
|
|
190
|
+
|
|
191
|
+
listEventIntegrations(
|
|
192
|
+
args: ListEventIntegrationsCommandInput,
|
|
193
|
+
options?: __HttpHandlerOptions
|
|
194
|
+
): Promise<ListEventIntegrationsCommandOutput>;
|
|
195
|
+
listEventIntegrations(
|
|
196
|
+
args: ListEventIntegrationsCommandInput,
|
|
197
|
+
cb: (err: any, data?: ListEventIntegrationsCommandOutput) => void
|
|
198
|
+
): void;
|
|
199
|
+
listEventIntegrations(
|
|
200
|
+
args: ListEventIntegrationsCommandInput,
|
|
201
|
+
options: __HttpHandlerOptions,
|
|
202
|
+
cb: (err: any, data?: ListEventIntegrationsCommandOutput) => void
|
|
203
|
+
): void;
|
|
204
|
+
|
|
205
|
+
listTagsForResource(
|
|
206
|
+
args: ListTagsForResourceCommandInput,
|
|
207
|
+
options?: __HttpHandlerOptions
|
|
208
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
209
|
+
listTagsForResource(
|
|
210
|
+
args: ListTagsForResourceCommandInput,
|
|
211
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
212
|
+
): void;
|
|
213
|
+
listTagsForResource(
|
|
214
|
+
args: ListTagsForResourceCommandInput,
|
|
215
|
+
options: __HttpHandlerOptions,
|
|
216
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
217
|
+
): void;
|
|
218
|
+
|
|
219
|
+
tagResource(
|
|
220
|
+
args: TagResourceCommandInput,
|
|
221
|
+
options?: __HttpHandlerOptions
|
|
222
|
+
): Promise<TagResourceCommandOutput>;
|
|
223
|
+
tagResource(
|
|
224
|
+
args: TagResourceCommandInput,
|
|
225
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
226
|
+
): void;
|
|
227
|
+
tagResource(
|
|
228
|
+
args: TagResourceCommandInput,
|
|
229
|
+
options: __HttpHandlerOptions,
|
|
230
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
231
|
+
): void;
|
|
232
|
+
|
|
233
|
+
untagResource(
|
|
234
|
+
args: UntagResourceCommandInput,
|
|
235
|
+
options?: __HttpHandlerOptions
|
|
236
|
+
): Promise<UntagResourceCommandOutput>;
|
|
237
|
+
untagResource(
|
|
238
|
+
args: UntagResourceCommandInput,
|
|
239
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
240
|
+
): void;
|
|
241
|
+
untagResource(
|
|
242
|
+
args: UntagResourceCommandInput,
|
|
243
|
+
options: __HttpHandlerOptions,
|
|
244
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
245
|
+
): void;
|
|
246
|
+
|
|
247
|
+
updateDataIntegration(
|
|
248
|
+
args: UpdateDataIntegrationCommandInput,
|
|
249
|
+
options?: __HttpHandlerOptions
|
|
250
|
+
): Promise<UpdateDataIntegrationCommandOutput>;
|
|
251
|
+
updateDataIntegration(
|
|
252
|
+
args: UpdateDataIntegrationCommandInput,
|
|
253
|
+
cb: (err: any, data?: UpdateDataIntegrationCommandOutput) => void
|
|
254
|
+
): void;
|
|
255
|
+
updateDataIntegration(
|
|
256
|
+
args: UpdateDataIntegrationCommandInput,
|
|
257
|
+
options: __HttpHandlerOptions,
|
|
258
|
+
cb: (err: any, data?: UpdateDataIntegrationCommandOutput) => void
|
|
259
|
+
): void;
|
|
260
|
+
|
|
261
|
+
updateEventIntegration(
|
|
262
|
+
args: UpdateEventIntegrationCommandInput,
|
|
263
|
+
options?: __HttpHandlerOptions
|
|
264
|
+
): Promise<UpdateEventIntegrationCommandOutput>;
|
|
265
|
+
updateEventIntegration(
|
|
266
|
+
args: UpdateEventIntegrationCommandInput,
|
|
267
|
+
cb: (err: any, data?: UpdateEventIntegrationCommandOutput) => void
|
|
268
|
+
): void;
|
|
269
|
+
updateEventIntegration(
|
|
270
|
+
args: UpdateEventIntegrationCommandInput,
|
|
271
|
+
options: __HttpHandlerOptions,
|
|
272
|
+
cb: (err: any, data?: UpdateEventIntegrationCommandOutput) => void
|
|
273
|
+
): void;
|
|
274
|
+
}
|