@aws-sdk/client-appintegrations 3.477.0 → 3.479.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/README.md +16 -0
- package/dist-cjs/AppIntegrations.js +4 -0
- package/dist-cjs/commands/DeleteApplicationCommand.js +51 -0
- package/dist-cjs/commands/ListApplicationAssociationsCommand.js +51 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_0.js +15 -1
- package/dist-cjs/pagination/ListApplicationAssociationsPaginator.js +7 -0
- package/dist-cjs/pagination/ListApplicationsPaginator.js +2 -24
- package/dist-cjs/pagination/ListDataIntegrationAssociationsPaginator.js +2 -24
- package/dist-cjs/pagination/ListDataIntegrationsPaginator.js +2 -24
- package/dist-cjs/pagination/ListEventIntegrationAssociationsPaginator.js +2 -24
- package/dist-cjs/pagination/ListEventIntegrationsPaginator.js +2 -24
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +136 -1
- package/dist-es/AppIntegrations.js +4 -0
- package/dist-es/commands/DeleteApplicationCommand.js +47 -0
- package/dist-es/commands/ListApplicationAssociationsCommand.js +47 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +13 -0
- package/dist-es/pagination/ListApplicationAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListApplicationsPaginator.js +2 -23
- package/dist-es/pagination/ListDataIntegrationAssociationsPaginator.js +2 -23
- package/dist-es/pagination/ListDataIntegrationsPaginator.js +2 -23
- package/dist-es/pagination/ListEventIntegrationAssociationsPaginator.js +2 -23
- package/dist-es/pagination/ListEventIntegrationsPaginator.js +2 -23
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +132 -1
- package/dist-types/AppIntegrations.d.ts +14 -0
- package/dist-types/AppIntegrationsClient.d.ts +4 -2
- package/dist-types/commands/CreateApplicationCommand.d.ts +6 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +86 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +3 -0
- package/dist-types/commands/ListApplicationAssociationsCommand.d.ts +97 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +6 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +116 -4
- package/dist-types/pagination/ListApplicationAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListDataIntegrationAssociationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListDataIntegrationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListEventIntegrationAssociationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListEventIntegrationsPaginator.d.ts +1 -1
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/AppIntegrations.d.ts +34 -0
- package/dist-types/ts3.4/AppIntegrationsClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListApplicationAssociationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +32 -3
- package/dist-types/ts3.4/pagination/ListApplicationAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListDataIntegrationAssociationsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListDataIntegrationsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListEventIntegrationAssociationsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListEventIntegrationsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +5 -5
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient";
|
|
5
|
+
import { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteApplicationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteApplicationCommandInput extends DeleteApplicationRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteApplicationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteApplicationCommandOutput extends DeleteApplicationResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Deletes the Application. Only Applications that don't have any Application Associations can be deleted.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { AppIntegrationsClient, DeleteApplicationCommand } from "@aws-sdk/client-appintegrations"; // ES Modules import
|
|
31
|
+
* // const { AppIntegrationsClient, DeleteApplicationCommand } = require("@aws-sdk/client-appintegrations"); // CommonJS import
|
|
32
|
+
* const client = new AppIntegrationsClient(config);
|
|
33
|
+
* const input = { // DeleteApplicationRequest
|
|
34
|
+
* Arn: "STRING_VALUE", // required
|
|
35
|
+
* };
|
|
36
|
+
* const command = new DeleteApplicationCommand(input);
|
|
37
|
+
* const response = await client.send(command);
|
|
38
|
+
* // {};
|
|
39
|
+
*
|
|
40
|
+
* ```
|
|
41
|
+
*
|
|
42
|
+
* @param DeleteApplicationCommandInput - {@link DeleteApplicationCommandInput}
|
|
43
|
+
* @returns {@link DeleteApplicationCommandOutput}
|
|
44
|
+
* @see {@link DeleteApplicationCommandInput} for command's `input` shape.
|
|
45
|
+
* @see {@link DeleteApplicationCommandOutput} for command's `response` shape.
|
|
46
|
+
* @see {@link AppIntegrationsClientResolvedConfig | config} for AppIntegrationsClient's `config` shape.
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
49
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
52
|
+
* <p>Request processing failed due to an error or failure with the service.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
55
|
+
* <p>The request is not valid. </p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
58
|
+
* <p>The specified resource was not found.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
61
|
+
* <p>The throttling limit has been exceeded.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link AppIntegrationsServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
65
|
+
*
|
|
66
|
+
*/
|
|
67
|
+
export declare class DeleteApplicationCommand extends $Command<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, AppIntegrationsClientResolvedConfig> {
|
|
68
|
+
readonly input: DeleteApplicationCommandInput;
|
|
69
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
73
|
+
constructor(input: DeleteApplicationCommandInput);
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
77
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppIntegrationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationCommandInput, DeleteApplicationCommandOutput>;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
81
|
+
private serialize;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
85
|
+
private deserialize;
|
|
86
|
+
}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient";
|
|
5
|
+
import { ListApplicationAssociationsRequest, ListApplicationAssociationsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListApplicationAssociationsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListApplicationAssociationsCommandInput extends ListApplicationAssociationsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListApplicationAssociationsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListApplicationAssociationsCommandOutput extends ListApplicationAssociationsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Returns a paginated list of application associations for an application.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { AppIntegrationsClient, ListApplicationAssociationsCommand } from "@aws-sdk/client-appintegrations"; // ES Modules import
|
|
31
|
+
* // const { AppIntegrationsClient, ListApplicationAssociationsCommand } = require("@aws-sdk/client-appintegrations"); // CommonJS import
|
|
32
|
+
* const client = new AppIntegrationsClient(config);
|
|
33
|
+
* const input = { // ListApplicationAssociationsRequest
|
|
34
|
+
* ApplicationId: "STRING_VALUE", // required
|
|
35
|
+
* NextToken: "STRING_VALUE",
|
|
36
|
+
* MaxResults: Number("int"),
|
|
37
|
+
* };
|
|
38
|
+
* const command = new ListApplicationAssociationsCommand(input);
|
|
39
|
+
* const response = await client.send(command);
|
|
40
|
+
* // { // ListApplicationAssociationsResponse
|
|
41
|
+
* // ApplicationAssociations: [ // ApplicationAssociationsList
|
|
42
|
+
* // { // ApplicationAssociationSummary
|
|
43
|
+
* // ApplicationAssociationArn: "STRING_VALUE",
|
|
44
|
+
* // ApplicationArn: "STRING_VALUE",
|
|
45
|
+
* // ClientId: "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // NextToken: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
51
|
+
* ```
|
|
52
|
+
*
|
|
53
|
+
* @param ListApplicationAssociationsCommandInput - {@link ListApplicationAssociationsCommandInput}
|
|
54
|
+
* @returns {@link ListApplicationAssociationsCommandOutput}
|
|
55
|
+
* @see {@link ListApplicationAssociationsCommandInput} for command's `input` shape.
|
|
56
|
+
* @see {@link ListApplicationAssociationsCommandOutput} for command's `response` shape.
|
|
57
|
+
* @see {@link AppIntegrationsClientResolvedConfig | config} for AppIntegrationsClient's `config` shape.
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
60
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
63
|
+
* <p>Request processing failed due to an error or failure with the service.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
66
|
+
* <p>The request is not valid. </p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
69
|
+
* <p>The specified resource was not found.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
72
|
+
* <p>The throttling limit has been exceeded.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link AppIntegrationsServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
76
|
+
*
|
|
77
|
+
*/
|
|
78
|
+
export declare class ListApplicationAssociationsCommand extends $Command<ListApplicationAssociationsCommandInput, ListApplicationAssociationsCommandOutput, AppIntegrationsClientResolvedConfig> {
|
|
79
|
+
readonly input: ListApplicationAssociationsCommandInput;
|
|
80
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
81
|
+
/**
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
constructor(input: ListApplicationAssociationsCommandInput);
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
88
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppIntegrationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListApplicationAssociationsCommandInput, ListApplicationAssociationsCommandOutput>;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
92
|
+
private serialize;
|
|
93
|
+
/**
|
|
94
|
+
* @internal
|
|
95
|
+
*/
|
|
96
|
+
private deserialize;
|
|
97
|
+
}
|
|
@@ -56,6 +56,9 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
|
|
|
56
56
|
* Description: "STRING_VALUE",
|
|
57
57
|
* },
|
|
58
58
|
* ],
|
|
59
|
+
* Permissions: [ // PermissionList
|
|
60
|
+
* "STRING_VALUE",
|
|
61
|
+
* ],
|
|
59
62
|
* };
|
|
60
63
|
* const command = new UpdateApplicationCommand(input);
|
|
61
64
|
* const response = await client.send(command);
|
|
@@ -84,6 +87,9 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
|
|
|
84
87
|
* @throws {@link ThrottlingException} (client fault)
|
|
85
88
|
* <p>The throttling limit has been exceeded.</p>
|
|
86
89
|
*
|
|
90
|
+
* @throws {@link UnsupportedOperationException} (client fault)
|
|
91
|
+
* <p>The operation is not supported.</p>
|
|
92
|
+
*
|
|
87
93
|
* @throws {@link AppIntegrationsServiceException}
|
|
88
94
|
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
89
95
|
*
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
export * from "./CreateApplicationCommand";
|
|
2
2
|
export * from "./CreateDataIntegrationCommand";
|
|
3
3
|
export * from "./CreateEventIntegrationCommand";
|
|
4
|
+
export * from "./DeleteApplicationCommand";
|
|
4
5
|
export * from "./DeleteDataIntegrationCommand";
|
|
5
6
|
export * from "./DeleteEventIntegrationCommand";
|
|
6
7
|
export * from "./GetApplicationCommand";
|
|
7
8
|
export * from "./GetDataIntegrationCommand";
|
|
8
9
|
export * from "./GetEventIntegrationCommand";
|
|
10
|
+
export * from "./ListApplicationAssociationsCommand";
|
|
9
11
|
export * from "./ListApplicationsCommand";
|
|
10
12
|
export * from "./ListDataIntegrationAssociationsCommand";
|
|
11
13
|
export * from "./ListDataIntegrationsCommand";
|
|
@@ -103,11 +103,15 @@ export interface CreateApplicationRequest {
|
|
|
103
103
|
ApplicationSourceConfig: ApplicationSourceConfig | undefined;
|
|
104
104
|
/**
|
|
105
105
|
* @public
|
|
106
|
+
* @deprecated
|
|
107
|
+
*
|
|
106
108
|
* <p>The events that the application subscribes.</p>
|
|
107
109
|
*/
|
|
108
110
|
Subscriptions?: Subscription[];
|
|
109
111
|
/**
|
|
110
112
|
* @public
|
|
113
|
+
* @deprecated
|
|
114
|
+
*
|
|
111
115
|
* <p>The events that the application publishes.</p>
|
|
112
116
|
*/
|
|
113
117
|
Publications?: Publication[];
|
|
@@ -124,6 +128,11 @@ export interface CreateApplicationRequest {
|
|
|
124
128
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
125
129
|
*/
|
|
126
130
|
Tags?: Record<string, string>;
|
|
131
|
+
/**
|
|
132
|
+
* @public
|
|
133
|
+
* <p>The configuration of events or requests that the application has access to.</p>
|
|
134
|
+
*/
|
|
135
|
+
Permissions?: string[];
|
|
127
136
|
}
|
|
128
137
|
/**
|
|
129
138
|
* @public
|
|
@@ -205,6 +214,19 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
205
214
|
*/
|
|
206
215
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
207
216
|
}
|
|
217
|
+
/**
|
|
218
|
+
* @public
|
|
219
|
+
* <p>The operation is not supported.</p>
|
|
220
|
+
*/
|
|
221
|
+
export declare class UnsupportedOperationException extends __BaseException {
|
|
222
|
+
readonly name: "UnsupportedOperationException";
|
|
223
|
+
readonly $fault: "client";
|
|
224
|
+
Message?: string;
|
|
225
|
+
/**
|
|
226
|
+
* @internal
|
|
227
|
+
*/
|
|
228
|
+
constructor(opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>);
|
|
229
|
+
}
|
|
208
230
|
/**
|
|
209
231
|
* @public
|
|
210
232
|
* <p>The configuration for what files should be pulled from the source.</p>
|
|
@@ -421,17 +443,17 @@ export interface CreateEventIntegrationResponse {
|
|
|
421
443
|
/**
|
|
422
444
|
* @public
|
|
423
445
|
*/
|
|
424
|
-
export interface
|
|
446
|
+
export interface DeleteApplicationRequest {
|
|
425
447
|
/**
|
|
426
448
|
* @public
|
|
427
|
-
* <p>
|
|
449
|
+
* <p>The Amazon Resource Name (ARN) of the Application.</p>
|
|
428
450
|
*/
|
|
429
|
-
|
|
451
|
+
Arn: string | undefined;
|
|
430
452
|
}
|
|
431
453
|
/**
|
|
432
454
|
* @public
|
|
433
455
|
*/
|
|
434
|
-
export interface
|
|
456
|
+
export interface DeleteApplicationResponse {
|
|
435
457
|
}
|
|
436
458
|
/**
|
|
437
459
|
* @public
|
|
@@ -446,6 +468,21 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
446
468
|
*/
|
|
447
469
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
448
470
|
}
|
|
471
|
+
/**
|
|
472
|
+
* @public
|
|
473
|
+
*/
|
|
474
|
+
export interface DeleteDataIntegrationRequest {
|
|
475
|
+
/**
|
|
476
|
+
* @public
|
|
477
|
+
* <p>A unique identifier for the DataIntegration.</p>
|
|
478
|
+
*/
|
|
479
|
+
DataIntegrationIdentifier: string | undefined;
|
|
480
|
+
}
|
|
481
|
+
/**
|
|
482
|
+
* @public
|
|
483
|
+
*/
|
|
484
|
+
export interface DeleteDataIntegrationResponse {
|
|
485
|
+
}
|
|
449
486
|
/**
|
|
450
487
|
* @public
|
|
451
488
|
*/
|
|
@@ -507,11 +544,15 @@ export interface GetApplicationResponse {
|
|
|
507
544
|
ApplicationSourceConfig?: ApplicationSourceConfig;
|
|
508
545
|
/**
|
|
509
546
|
* @public
|
|
547
|
+
* @deprecated
|
|
548
|
+
*
|
|
510
549
|
* <p>The events that the application subscribes.</p>
|
|
511
550
|
*/
|
|
512
551
|
Subscriptions?: Subscription[];
|
|
513
552
|
/**
|
|
514
553
|
* @public
|
|
554
|
+
* @deprecated
|
|
555
|
+
*
|
|
515
556
|
* <p>The events that the application publishes.</p>
|
|
516
557
|
*/
|
|
517
558
|
Publications?: Publication[];
|
|
@@ -530,6 +571,11 @@ export interface GetApplicationResponse {
|
|
|
530
571
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
531
572
|
*/
|
|
532
573
|
Tags?: Record<string, string>;
|
|
574
|
+
/**
|
|
575
|
+
* @public
|
|
576
|
+
* <p>The configuration of events or requests that the application has access to.</p>
|
|
577
|
+
*/
|
|
578
|
+
Permissions?: string[];
|
|
533
579
|
}
|
|
534
580
|
/**
|
|
535
581
|
* @public
|
|
@@ -641,6 +687,63 @@ export interface GetEventIntegrationResponse {
|
|
|
641
687
|
*/
|
|
642
688
|
Tags?: Record<string, string>;
|
|
643
689
|
}
|
|
690
|
+
/**
|
|
691
|
+
* @public
|
|
692
|
+
*/
|
|
693
|
+
export interface ListApplicationAssociationsRequest {
|
|
694
|
+
/**
|
|
695
|
+
* @public
|
|
696
|
+
* <p>A unique identifier for the Application.</p>
|
|
697
|
+
*/
|
|
698
|
+
ApplicationId: string | undefined;
|
|
699
|
+
/**
|
|
700
|
+
* @public
|
|
701
|
+
* <p>The token for the next set of results. Use the value returned in the previous
|
|
702
|
+
* response in the next request to retrieve the next set of results.</p>
|
|
703
|
+
*/
|
|
704
|
+
NextToken?: string;
|
|
705
|
+
/**
|
|
706
|
+
* @public
|
|
707
|
+
* <p>The maximum number of results to return per page.</p>
|
|
708
|
+
*/
|
|
709
|
+
MaxResults?: number;
|
|
710
|
+
}
|
|
711
|
+
/**
|
|
712
|
+
* @public
|
|
713
|
+
* <p>Summary information about the Application Association.</p>
|
|
714
|
+
*/
|
|
715
|
+
export interface ApplicationAssociationSummary {
|
|
716
|
+
/**
|
|
717
|
+
* @public
|
|
718
|
+
* <p>The Amazon Resource Name (ARN) of the Application Association.</p>
|
|
719
|
+
*/
|
|
720
|
+
ApplicationAssociationArn?: string;
|
|
721
|
+
/**
|
|
722
|
+
* @public
|
|
723
|
+
* <p>The Amazon Resource Name (ARN) of the Application.</p>
|
|
724
|
+
*/
|
|
725
|
+
ApplicationArn?: string;
|
|
726
|
+
/**
|
|
727
|
+
* @public
|
|
728
|
+
* <p>The identifier for the client that is associated with the Application Association.</p>
|
|
729
|
+
*/
|
|
730
|
+
ClientId?: string;
|
|
731
|
+
}
|
|
732
|
+
/**
|
|
733
|
+
* @public
|
|
734
|
+
*/
|
|
735
|
+
export interface ListApplicationAssociationsResponse {
|
|
736
|
+
/**
|
|
737
|
+
* @public
|
|
738
|
+
* <p>List of Application Associations for the Application.</p>
|
|
739
|
+
*/
|
|
740
|
+
ApplicationAssociations?: ApplicationAssociationSummary[];
|
|
741
|
+
/**
|
|
742
|
+
* @public
|
|
743
|
+
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
744
|
+
*/
|
|
745
|
+
NextToken?: string;
|
|
746
|
+
}
|
|
644
747
|
/**
|
|
645
748
|
* @public
|
|
646
749
|
*/
|
|
@@ -1043,14 +1146,23 @@ export interface UpdateApplicationRequest {
|
|
|
1043
1146
|
ApplicationSourceConfig?: ApplicationSourceConfig;
|
|
1044
1147
|
/**
|
|
1045
1148
|
* @public
|
|
1149
|
+
* @deprecated
|
|
1150
|
+
*
|
|
1046
1151
|
* <p>The events that the application subscribes.</p>
|
|
1047
1152
|
*/
|
|
1048
1153
|
Subscriptions?: Subscription[];
|
|
1049
1154
|
/**
|
|
1050
1155
|
* @public
|
|
1156
|
+
* @deprecated
|
|
1157
|
+
*
|
|
1051
1158
|
* <p>The events that the application publishes.</p>
|
|
1052
1159
|
*/
|
|
1053
1160
|
Publications?: Publication[];
|
|
1161
|
+
/**
|
|
1162
|
+
* @public
|
|
1163
|
+
* <p>The configuration of events or requests that the application has access to.</p>
|
|
1164
|
+
*/
|
|
1165
|
+
Permissions?: string[];
|
|
1054
1166
|
}
|
|
1055
1167
|
/**
|
|
1056
1168
|
* @public
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListApplicationAssociationsCommandInput, ListApplicationAssociationsCommandOutput } from "../commands/ListApplicationAssociationsCommand";
|
|
3
|
+
import { AppIntegrationsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListApplicationAssociations: (config: AppIntegrationsPaginationConfiguration, input: ListApplicationAssociationsCommandInput, ...rest: any[]) => Paginator<ListApplicationAssociationsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AppIntegrationsPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListApplications: (config: AppIntegrationsPaginationConfiguration, input: ListApplicationsCommandInput, ...rest: any[]) => Paginator<ListApplicationsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AppIntegrationsPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListDataIntegrationAssociations: (config: AppIntegrationsPaginationConfiguration, input: ListDataIntegrationAssociationsCommandInput, ...rest: any[]) => Paginator<ListDataIntegrationAssociationsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AppIntegrationsPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListDataIntegrations: (config: AppIntegrationsPaginationConfiguration, input: ListDataIntegrationsCommandInput, ...rest: any[]) => Paginator<ListDataIntegrationsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AppIntegrationsPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListEventIntegrationAssociations: (config: AppIntegrationsPaginationConfiguration, input: ListEventIntegrationAssociationsCommandInput, ...rest: any[]) => Paginator<ListEventIntegrationAssociationsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AppIntegrationsPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListEventIntegrations: (config: AppIntegrationsPaginationConfiguration, input: ListEventIntegrationsCommandInput, ...rest: any[]) => Paginator<ListEventIntegrationsCommandOutput>;
|
|
@@ -3,11 +3,13 @@ import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
|
3
3
|
import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "../commands/CreateApplicationCommand";
|
|
4
4
|
import { CreateDataIntegrationCommandInput, CreateDataIntegrationCommandOutput } from "../commands/CreateDataIntegrationCommand";
|
|
5
5
|
import { CreateEventIntegrationCommandInput, CreateEventIntegrationCommandOutput } from "../commands/CreateEventIntegrationCommand";
|
|
6
|
+
import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "../commands/DeleteApplicationCommand";
|
|
6
7
|
import { DeleteDataIntegrationCommandInput, DeleteDataIntegrationCommandOutput } from "../commands/DeleteDataIntegrationCommand";
|
|
7
8
|
import { DeleteEventIntegrationCommandInput, DeleteEventIntegrationCommandOutput } from "../commands/DeleteEventIntegrationCommand";
|
|
8
9
|
import { GetApplicationCommandInput, GetApplicationCommandOutput } from "../commands/GetApplicationCommand";
|
|
9
10
|
import { GetDataIntegrationCommandInput, GetDataIntegrationCommandOutput } from "../commands/GetDataIntegrationCommand";
|
|
10
11
|
import { GetEventIntegrationCommandInput, GetEventIntegrationCommandOutput } from "../commands/GetEventIntegrationCommand";
|
|
12
|
+
import { ListApplicationAssociationsCommandInput, ListApplicationAssociationsCommandOutput } from "../commands/ListApplicationAssociationsCommand";
|
|
11
13
|
import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "../commands/ListApplicationsCommand";
|
|
12
14
|
import { ListDataIntegrationAssociationsCommandInput, ListDataIntegrationAssociationsCommandOutput } from "../commands/ListDataIntegrationAssociationsCommand";
|
|
13
15
|
import { ListDataIntegrationsCommandInput, ListDataIntegrationsCommandOutput } from "../commands/ListDataIntegrationsCommand";
|
|
@@ -31,6 +33,10 @@ export declare const se_CreateDataIntegrationCommand: (input: CreateDataIntegrat
|
|
|
31
33
|
* serializeAws_restJson1CreateEventIntegrationCommand
|
|
32
34
|
*/
|
|
33
35
|
export declare const se_CreateEventIntegrationCommand: (input: CreateEventIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
|
+
/**
|
|
37
|
+
* serializeAws_restJson1DeleteApplicationCommand
|
|
38
|
+
*/
|
|
39
|
+
export declare const se_DeleteApplicationCommand: (input: DeleteApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
40
|
/**
|
|
35
41
|
* serializeAws_restJson1DeleteDataIntegrationCommand
|
|
36
42
|
*/
|
|
@@ -51,6 +57,10 @@ export declare const se_GetDataIntegrationCommand: (input: GetDataIntegrationCom
|
|
|
51
57
|
* serializeAws_restJson1GetEventIntegrationCommand
|
|
52
58
|
*/
|
|
53
59
|
export declare const se_GetEventIntegrationCommand: (input: GetEventIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
60
|
+
/**
|
|
61
|
+
* serializeAws_restJson1ListApplicationAssociationsCommand
|
|
62
|
+
*/
|
|
63
|
+
export declare const se_ListApplicationAssociationsCommand: (input: ListApplicationAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
64
|
/**
|
|
55
65
|
* serializeAws_restJson1ListApplicationsCommand
|
|
56
66
|
*/
|
|
@@ -107,6 +117,10 @@ export declare const de_CreateDataIntegrationCommand: (output: __HttpResponse, c
|
|
|
107
117
|
* deserializeAws_restJson1CreateEventIntegrationCommand
|
|
108
118
|
*/
|
|
109
119
|
export declare const de_CreateEventIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEventIntegrationCommandOutput>;
|
|
120
|
+
/**
|
|
121
|
+
* deserializeAws_restJson1DeleteApplicationCommand
|
|
122
|
+
*/
|
|
123
|
+
export declare const de_DeleteApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteApplicationCommandOutput>;
|
|
110
124
|
/**
|
|
111
125
|
* deserializeAws_restJson1DeleteDataIntegrationCommand
|
|
112
126
|
*/
|
|
@@ -127,6 +141,10 @@ export declare const de_GetDataIntegrationCommand: (output: __HttpResponse, cont
|
|
|
127
141
|
* deserializeAws_restJson1GetEventIntegrationCommand
|
|
128
142
|
*/
|
|
129
143
|
export declare const de_GetEventIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEventIntegrationCommandOutput>;
|
|
144
|
+
/**
|
|
145
|
+
* deserializeAws_restJson1ListApplicationAssociationsCommand
|
|
146
|
+
*/
|
|
147
|
+
export declare const de_ListApplicationAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListApplicationAssociationsCommandOutput>;
|
|
130
148
|
/**
|
|
131
149
|
* deserializeAws_restJson1ListApplicationsCommand
|
|
132
150
|
*/
|
|
@@ -12,6 +12,10 @@ import {
|
|
|
12
12
|
CreateEventIntegrationCommandInput,
|
|
13
13
|
CreateEventIntegrationCommandOutput,
|
|
14
14
|
} from "./commands/CreateEventIntegrationCommand";
|
|
15
|
+
import {
|
|
16
|
+
DeleteApplicationCommandInput,
|
|
17
|
+
DeleteApplicationCommandOutput,
|
|
18
|
+
} from "./commands/DeleteApplicationCommand";
|
|
15
19
|
import {
|
|
16
20
|
DeleteDataIntegrationCommandInput,
|
|
17
21
|
DeleteDataIntegrationCommandOutput,
|
|
@@ -32,6 +36,10 @@ import {
|
|
|
32
36
|
GetEventIntegrationCommandInput,
|
|
33
37
|
GetEventIntegrationCommandOutput,
|
|
34
38
|
} from "./commands/GetEventIntegrationCommand";
|
|
39
|
+
import {
|
|
40
|
+
ListApplicationAssociationsCommandInput,
|
|
41
|
+
ListApplicationAssociationsCommandOutput,
|
|
42
|
+
} from "./commands/ListApplicationAssociationsCommand";
|
|
35
43
|
import {
|
|
36
44
|
ListApplicationsCommandInput,
|
|
37
45
|
ListApplicationsCommandOutput,
|
|
@@ -116,6 +124,19 @@ export interface AppIntegrations {
|
|
|
116
124
|
options: __HttpHandlerOptions,
|
|
117
125
|
cb: (err: any, data?: CreateEventIntegrationCommandOutput) => void
|
|
118
126
|
): void;
|
|
127
|
+
deleteApplication(
|
|
128
|
+
args: DeleteApplicationCommandInput,
|
|
129
|
+
options?: __HttpHandlerOptions
|
|
130
|
+
): Promise<DeleteApplicationCommandOutput>;
|
|
131
|
+
deleteApplication(
|
|
132
|
+
args: DeleteApplicationCommandInput,
|
|
133
|
+
cb: (err: any, data?: DeleteApplicationCommandOutput) => void
|
|
134
|
+
): void;
|
|
135
|
+
deleteApplication(
|
|
136
|
+
args: DeleteApplicationCommandInput,
|
|
137
|
+
options: __HttpHandlerOptions,
|
|
138
|
+
cb: (err: any, data?: DeleteApplicationCommandOutput) => void
|
|
139
|
+
): void;
|
|
119
140
|
deleteDataIntegration(
|
|
120
141
|
args: DeleteDataIntegrationCommandInput,
|
|
121
142
|
options?: __HttpHandlerOptions
|
|
@@ -181,6 +202,19 @@ export interface AppIntegrations {
|
|
|
181
202
|
options: __HttpHandlerOptions,
|
|
182
203
|
cb: (err: any, data?: GetEventIntegrationCommandOutput) => void
|
|
183
204
|
): void;
|
|
205
|
+
listApplicationAssociations(
|
|
206
|
+
args: ListApplicationAssociationsCommandInput,
|
|
207
|
+
options?: __HttpHandlerOptions
|
|
208
|
+
): Promise<ListApplicationAssociationsCommandOutput>;
|
|
209
|
+
listApplicationAssociations(
|
|
210
|
+
args: ListApplicationAssociationsCommandInput,
|
|
211
|
+
cb: (err: any, data?: ListApplicationAssociationsCommandOutput) => void
|
|
212
|
+
): void;
|
|
213
|
+
listApplicationAssociations(
|
|
214
|
+
args: ListApplicationAssociationsCommandInput,
|
|
215
|
+
options: __HttpHandlerOptions,
|
|
216
|
+
cb: (err: any, data?: ListApplicationAssociationsCommandOutput) => void
|
|
217
|
+
): void;
|
|
184
218
|
listApplications(
|
|
185
219
|
args: ListApplicationsCommandInput,
|
|
186
220
|
options?: __HttpHandlerOptions
|
|
@@ -57,6 +57,10 @@ import {
|
|
|
57
57
|
CreateEventIntegrationCommandInput,
|
|
58
58
|
CreateEventIntegrationCommandOutput,
|
|
59
59
|
} from "./commands/CreateEventIntegrationCommand";
|
|
60
|
+
import {
|
|
61
|
+
DeleteApplicationCommandInput,
|
|
62
|
+
DeleteApplicationCommandOutput,
|
|
63
|
+
} from "./commands/DeleteApplicationCommand";
|
|
60
64
|
import {
|
|
61
65
|
DeleteDataIntegrationCommandInput,
|
|
62
66
|
DeleteDataIntegrationCommandOutput,
|
|
@@ -77,6 +81,10 @@ import {
|
|
|
77
81
|
GetEventIntegrationCommandInput,
|
|
78
82
|
GetEventIntegrationCommandOutput,
|
|
79
83
|
} from "./commands/GetEventIntegrationCommand";
|
|
84
|
+
import {
|
|
85
|
+
ListApplicationAssociationsCommandInput,
|
|
86
|
+
ListApplicationAssociationsCommandOutput,
|
|
87
|
+
} from "./commands/ListApplicationAssociationsCommand";
|
|
80
88
|
import {
|
|
81
89
|
ListApplicationsCommandInput,
|
|
82
90
|
ListApplicationsCommandOutput,
|
|
@@ -132,11 +140,13 @@ export type ServiceInputTypes =
|
|
|
132
140
|
| CreateApplicationCommandInput
|
|
133
141
|
| CreateDataIntegrationCommandInput
|
|
134
142
|
| CreateEventIntegrationCommandInput
|
|
143
|
+
| DeleteApplicationCommandInput
|
|
135
144
|
| DeleteDataIntegrationCommandInput
|
|
136
145
|
| DeleteEventIntegrationCommandInput
|
|
137
146
|
| GetApplicationCommandInput
|
|
138
147
|
| GetDataIntegrationCommandInput
|
|
139
148
|
| GetEventIntegrationCommandInput
|
|
149
|
+
| ListApplicationAssociationsCommandInput
|
|
140
150
|
| ListApplicationsCommandInput
|
|
141
151
|
| ListDataIntegrationAssociationsCommandInput
|
|
142
152
|
| ListDataIntegrationsCommandInput
|
|
@@ -152,11 +162,13 @@ export type ServiceOutputTypes =
|
|
|
152
162
|
| CreateApplicationCommandOutput
|
|
153
163
|
| CreateDataIntegrationCommandOutput
|
|
154
164
|
| CreateEventIntegrationCommandOutput
|
|
165
|
+
| DeleteApplicationCommandOutput
|
|
155
166
|
| DeleteDataIntegrationCommandOutput
|
|
156
167
|
| DeleteEventIntegrationCommandOutput
|
|
157
168
|
| GetApplicationCommandOutput
|
|
158
169
|
| GetDataIntegrationCommandOutput
|
|
159
170
|
| GetEventIntegrationCommandOutput
|
|
171
|
+
| ListApplicationAssociationsCommandOutput
|
|
160
172
|
| ListApplicationsCommandOutput
|
|
161
173
|
| ListDataIntegrationAssociationsCommandOutput
|
|
162
174
|
| ListDataIntegrationsCommandOutput
|