@aws-sdk/client-appintegrations 3.974.0 → 3.978.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 +21 -13
- package/dist-es/AppIntegrations.js +15 -1
- package/dist-types/AppIntegrations.d.ts +43 -1
- package/dist-types/ts3.4/AppIntegrations.d.ts +47 -1
- package/package.json +17 -17
package/dist-cjs/index.js
CHANGED
|
@@ -1158,6 +1158,18 @@ class UpdateEventIntegrationCommand extends smithyClient.Command
|
|
|
1158
1158
|
.build() {
|
|
1159
1159
|
}
|
|
1160
1160
|
|
|
1161
|
+
const paginateListApplicationAssociations = core.createPaginator(AppIntegrationsClient, ListApplicationAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1162
|
+
|
|
1163
|
+
const paginateListApplications = core.createPaginator(AppIntegrationsClient, ListApplicationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1164
|
+
|
|
1165
|
+
const paginateListDataIntegrationAssociations = core.createPaginator(AppIntegrationsClient, ListDataIntegrationAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1166
|
+
|
|
1167
|
+
const paginateListDataIntegrations = core.createPaginator(AppIntegrationsClient, ListDataIntegrationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1168
|
+
|
|
1169
|
+
const paginateListEventIntegrationAssociations = core.createPaginator(AppIntegrationsClient, ListEventIntegrationAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1170
|
+
|
|
1171
|
+
const paginateListEventIntegrations = core.createPaginator(AppIntegrationsClient, ListEventIntegrationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1172
|
+
|
|
1161
1173
|
const commands = {
|
|
1162
1174
|
CreateApplicationCommand,
|
|
1163
1175
|
CreateDataIntegrationCommand,
|
|
@@ -1183,21 +1195,17 @@ const commands = {
|
|
|
1183
1195
|
UpdateDataIntegrationAssociationCommand,
|
|
1184
1196
|
UpdateEventIntegrationCommand,
|
|
1185
1197
|
};
|
|
1198
|
+
const paginators = {
|
|
1199
|
+
paginateListApplicationAssociations,
|
|
1200
|
+
paginateListApplications,
|
|
1201
|
+
paginateListDataIntegrationAssociations,
|
|
1202
|
+
paginateListDataIntegrations,
|
|
1203
|
+
paginateListEventIntegrationAssociations,
|
|
1204
|
+
paginateListEventIntegrations,
|
|
1205
|
+
};
|
|
1186
1206
|
class AppIntegrations extends AppIntegrationsClient {
|
|
1187
1207
|
}
|
|
1188
|
-
smithyClient.createAggregatedClient(commands, AppIntegrations);
|
|
1189
|
-
|
|
1190
|
-
const paginateListApplicationAssociations = core.createPaginator(AppIntegrationsClient, ListApplicationAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1191
|
-
|
|
1192
|
-
const paginateListApplications = core.createPaginator(AppIntegrationsClient, ListApplicationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1193
|
-
|
|
1194
|
-
const paginateListDataIntegrationAssociations = core.createPaginator(AppIntegrationsClient, ListDataIntegrationAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1195
|
-
|
|
1196
|
-
const paginateListDataIntegrations = core.createPaginator(AppIntegrationsClient, ListDataIntegrationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1197
|
-
|
|
1198
|
-
const paginateListEventIntegrationAssociations = core.createPaginator(AppIntegrationsClient, ListEventIntegrationAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1199
|
-
|
|
1200
|
-
const paginateListEventIntegrations = core.createPaginator(AppIntegrationsClient, ListEventIntegrationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1208
|
+
smithyClient.createAggregatedClient(commands, AppIntegrations, { paginators });
|
|
1201
1209
|
|
|
1202
1210
|
const ContactHandlingScope = {
|
|
1203
1211
|
CROSS_CONTACTS: "CROSS_CONTACTS",
|
|
@@ -23,6 +23,12 @@ import { UpdateApplicationCommand, } from "./commands/UpdateApplicationCommand";
|
|
|
23
23
|
import { UpdateDataIntegrationAssociationCommand, } from "./commands/UpdateDataIntegrationAssociationCommand";
|
|
24
24
|
import { UpdateDataIntegrationCommand, } from "./commands/UpdateDataIntegrationCommand";
|
|
25
25
|
import { UpdateEventIntegrationCommand, } from "./commands/UpdateEventIntegrationCommand";
|
|
26
|
+
import { paginateListApplicationAssociations } from "./pagination/ListApplicationAssociationsPaginator";
|
|
27
|
+
import { paginateListApplications } from "./pagination/ListApplicationsPaginator";
|
|
28
|
+
import { paginateListDataIntegrationAssociations } from "./pagination/ListDataIntegrationAssociationsPaginator";
|
|
29
|
+
import { paginateListDataIntegrations } from "./pagination/ListDataIntegrationsPaginator";
|
|
30
|
+
import { paginateListEventIntegrationAssociations } from "./pagination/ListEventIntegrationAssociationsPaginator";
|
|
31
|
+
import { paginateListEventIntegrations } from "./pagination/ListEventIntegrationsPaginator";
|
|
26
32
|
const commands = {
|
|
27
33
|
CreateApplicationCommand,
|
|
28
34
|
CreateDataIntegrationCommand,
|
|
@@ -48,6 +54,14 @@ const commands = {
|
|
|
48
54
|
UpdateDataIntegrationAssociationCommand,
|
|
49
55
|
UpdateEventIntegrationCommand,
|
|
50
56
|
};
|
|
57
|
+
const paginators = {
|
|
58
|
+
paginateListApplicationAssociations,
|
|
59
|
+
paginateListApplications,
|
|
60
|
+
paginateListDataIntegrationAssociations,
|
|
61
|
+
paginateListDataIntegrations,
|
|
62
|
+
paginateListEventIntegrationAssociations,
|
|
63
|
+
paginateListEventIntegrations,
|
|
64
|
+
};
|
|
51
65
|
export class AppIntegrations extends AppIntegrationsClient {
|
|
52
66
|
}
|
|
53
|
-
createAggregatedClient(commands, AppIntegrations);
|
|
67
|
+
createAggregatedClient(commands, AppIntegrations, { paginators });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { AppIntegrationsClient } from "./AppIntegrationsClient";
|
|
3
3
|
import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
|
|
4
4
|
import { CreateDataIntegrationAssociationCommandInput, CreateDataIntegrationAssociationCommandOutput } from "./commands/CreateDataIntegrationAssociationCommand";
|
|
@@ -165,6 +165,48 @@ export interface AppIntegrations {
|
|
|
165
165
|
updateEventIntegration(args: UpdateEventIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEventIntegrationCommandOutput>;
|
|
166
166
|
updateEventIntegration(args: UpdateEventIntegrationCommandInput, cb: (err: any, data?: UpdateEventIntegrationCommandOutput) => void): void;
|
|
167
167
|
updateEventIntegration(args: UpdateEventIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEventIntegrationCommandOutput) => void): void;
|
|
168
|
+
/**
|
|
169
|
+
* @see {@link ListApplicationAssociationsCommand}
|
|
170
|
+
* @param args - command input.
|
|
171
|
+
* @param paginationConfig - optional pagination config.
|
|
172
|
+
* @returns AsyncIterable of {@link ListApplicationAssociationsCommandOutput}.
|
|
173
|
+
*/
|
|
174
|
+
paginateListApplicationAssociations(args: ListApplicationAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListApplicationAssociationsCommandOutput>;
|
|
175
|
+
/**
|
|
176
|
+
* @see {@link ListApplicationsCommand}
|
|
177
|
+
* @param args - command input.
|
|
178
|
+
* @param paginationConfig - optional pagination config.
|
|
179
|
+
* @returns AsyncIterable of {@link ListApplicationsCommandOutput}.
|
|
180
|
+
*/
|
|
181
|
+
paginateListApplications(args?: ListApplicationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListApplicationsCommandOutput>;
|
|
182
|
+
/**
|
|
183
|
+
* @see {@link ListDataIntegrationAssociationsCommand}
|
|
184
|
+
* @param args - command input.
|
|
185
|
+
* @param paginationConfig - optional pagination config.
|
|
186
|
+
* @returns AsyncIterable of {@link ListDataIntegrationAssociationsCommandOutput}.
|
|
187
|
+
*/
|
|
188
|
+
paginateListDataIntegrationAssociations(args: ListDataIntegrationAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDataIntegrationAssociationsCommandOutput>;
|
|
189
|
+
/**
|
|
190
|
+
* @see {@link ListDataIntegrationsCommand}
|
|
191
|
+
* @param args - command input.
|
|
192
|
+
* @param paginationConfig - optional pagination config.
|
|
193
|
+
* @returns AsyncIterable of {@link ListDataIntegrationsCommandOutput}.
|
|
194
|
+
*/
|
|
195
|
+
paginateListDataIntegrations(args?: ListDataIntegrationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDataIntegrationsCommandOutput>;
|
|
196
|
+
/**
|
|
197
|
+
* @see {@link ListEventIntegrationAssociationsCommand}
|
|
198
|
+
* @param args - command input.
|
|
199
|
+
* @param paginationConfig - optional pagination config.
|
|
200
|
+
* @returns AsyncIterable of {@link ListEventIntegrationAssociationsCommandOutput}.
|
|
201
|
+
*/
|
|
202
|
+
paginateListEventIntegrationAssociations(args: ListEventIntegrationAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListEventIntegrationAssociationsCommandOutput>;
|
|
203
|
+
/**
|
|
204
|
+
* @see {@link ListEventIntegrationsCommand}
|
|
205
|
+
* @param args - command input.
|
|
206
|
+
* @param paginationConfig - optional pagination config.
|
|
207
|
+
* @returns AsyncIterable of {@link ListEventIntegrationsCommandOutput}.
|
|
208
|
+
*/
|
|
209
|
+
paginateListEventIntegrations(args?: ListEventIntegrationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListEventIntegrationsCommandOutput>;
|
|
168
210
|
}
|
|
169
211
|
/**
|
|
170
212
|
* <ul>
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import { AppIntegrationsClient } from "./AppIntegrationsClient";
|
|
3
7
|
import {
|
|
4
8
|
CreateApplicationCommandInput,
|
|
@@ -395,6 +399,48 @@ export interface AppIntegrations {
|
|
|
395
399
|
options: __HttpHandlerOptions,
|
|
396
400
|
cb: (err: any, data?: UpdateEventIntegrationCommandOutput) => void
|
|
397
401
|
): void;
|
|
402
|
+
paginateListApplicationAssociations(
|
|
403
|
+
args: ListApplicationAssociationsCommandInput,
|
|
404
|
+
paginationConfig?: Pick<
|
|
405
|
+
PaginationConfiguration,
|
|
406
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
407
|
+
>
|
|
408
|
+
): Paginator<ListApplicationAssociationsCommandOutput>;
|
|
409
|
+
paginateListApplications(
|
|
410
|
+
args?: ListApplicationsCommandInput,
|
|
411
|
+
paginationConfig?: Pick<
|
|
412
|
+
PaginationConfiguration,
|
|
413
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
414
|
+
>
|
|
415
|
+
): Paginator<ListApplicationsCommandOutput>;
|
|
416
|
+
paginateListDataIntegrationAssociations(
|
|
417
|
+
args: ListDataIntegrationAssociationsCommandInput,
|
|
418
|
+
paginationConfig?: Pick<
|
|
419
|
+
PaginationConfiguration,
|
|
420
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
421
|
+
>
|
|
422
|
+
): Paginator<ListDataIntegrationAssociationsCommandOutput>;
|
|
423
|
+
paginateListDataIntegrations(
|
|
424
|
+
args?: ListDataIntegrationsCommandInput,
|
|
425
|
+
paginationConfig?: Pick<
|
|
426
|
+
PaginationConfiguration,
|
|
427
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
428
|
+
>
|
|
429
|
+
): Paginator<ListDataIntegrationsCommandOutput>;
|
|
430
|
+
paginateListEventIntegrationAssociations(
|
|
431
|
+
args: ListEventIntegrationAssociationsCommandInput,
|
|
432
|
+
paginationConfig?: Pick<
|
|
433
|
+
PaginationConfiguration,
|
|
434
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
435
|
+
>
|
|
436
|
+
): Paginator<ListEventIntegrationAssociationsCommandOutput>;
|
|
437
|
+
paginateListEventIntegrations(
|
|
438
|
+
args?: ListEventIntegrationsCommandInput,
|
|
439
|
+
paginationConfig?: Pick<
|
|
440
|
+
PaginationConfiguration,
|
|
441
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
442
|
+
>
|
|
443
|
+
): Paginator<ListEventIntegrationsCommandOutput>;
|
|
398
444
|
}
|
|
399
445
|
export declare class AppIntegrations
|
|
400
446
|
extends AppIntegrationsClient
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appintegrations",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appintegrations Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.978.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-appintegrations",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|