@aws-sdk/client-appintegrations 3.478.0 → 3.480.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.
Files changed (39) hide show
  1. package/README.md +16 -0
  2. package/dist-cjs/AppIntegrations.js +4 -0
  3. package/dist-cjs/commands/DeleteApplicationCommand.js +51 -0
  4. package/dist-cjs/commands/ListApplicationAssociationsCommand.js +51 -0
  5. package/dist-cjs/commands/index.js +2 -0
  6. package/dist-cjs/models/models_0.js +15 -1
  7. package/dist-cjs/pagination/ListApplicationAssociationsPaginator.js +7 -0
  8. package/dist-cjs/pagination/index.js +1 -0
  9. package/dist-cjs/protocols/Aws_restJson1.js +136 -1
  10. package/dist-es/AppIntegrations.js +4 -0
  11. package/dist-es/commands/DeleteApplicationCommand.js +47 -0
  12. package/dist-es/commands/ListApplicationAssociationsCommand.js +47 -0
  13. package/dist-es/commands/index.js +2 -0
  14. package/dist-es/models/models_0.js +13 -0
  15. package/dist-es/pagination/ListApplicationAssociationsPaginator.js +4 -0
  16. package/dist-es/pagination/index.js +1 -0
  17. package/dist-es/protocols/Aws_restJson1.js +132 -1
  18. package/dist-types/AppIntegrations.d.ts +14 -0
  19. package/dist-types/AppIntegrationsClient.d.ts +4 -2
  20. package/dist-types/commands/CreateApplicationCommand.d.ts +6 -0
  21. package/dist-types/commands/DeleteApplicationCommand.d.ts +97 -0
  22. package/dist-types/commands/GetApplicationCommand.d.ts +3 -0
  23. package/dist-types/commands/ListApplicationAssociationsCommand.d.ts +120 -0
  24. package/dist-types/commands/UpdateApplicationCommand.d.ts +6 -0
  25. package/dist-types/commands/index.d.ts +2 -0
  26. package/dist-types/models/models_0.d.ts +116 -4
  27. package/dist-types/pagination/ListApplicationAssociationsPaginator.d.ts +7 -0
  28. package/dist-types/pagination/index.d.ts +1 -0
  29. package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
  30. package/dist-types/ts3.4/AppIntegrations.d.ts +34 -0
  31. package/dist-types/ts3.4/AppIntegrationsClient.d.ts +12 -0
  32. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +39 -0
  33. package/dist-types/ts3.4/commands/ListApplicationAssociationsCommand.d.ts +42 -0
  34. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  35. package/dist-types/ts3.4/models/models_0.d.ts +32 -3
  36. package/dist-types/ts3.4/pagination/ListApplicationAssociationsPaginator.d.ts +11 -0
  37. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  38. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
  39. package/package.json +1 -1
@@ -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 DeleteDataIntegrationRequest {
446
+ export interface DeleteApplicationRequest {
425
447
  /**
426
448
  * @public
427
- * <p>A unique identifier for the DataIntegration.</p>
449
+ * <p>The Amazon Resource Name (ARN) of the Application.</p>
428
450
  */
429
- DataIntegrationIdentifier: string | undefined;
451
+ Arn: string | undefined;
430
452
  }
431
453
  /**
432
454
  * @public
433
455
  */
434
- export interface DeleteDataIntegrationResponse {
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>;
@@ -1,4 +1,5 @@
1
1
  export * from "./Interfaces";
2
+ export * from "./ListApplicationAssociationsPaginator";
2
3
  export * from "./ListApplicationsPaginator";
3
4
  export * from "./ListDataIntegrationAssociationsPaginator";
4
5
  export * from "./ListDataIntegrationsPaginator";
@@ -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
@@ -0,0 +1,39 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ AppIntegrationsClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../AppIntegrationsClient";
14
+ import {
15
+ DeleteApplicationRequest,
16
+ DeleteApplicationResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface DeleteApplicationCommandInput
20
+ extends DeleteApplicationRequest {}
21
+ export interface DeleteApplicationCommandOutput
22
+ extends DeleteApplicationResponse,
23
+ __MetadataBearer {}
24
+ export declare class DeleteApplicationCommand extends $Command<
25
+ DeleteApplicationCommandInput,
26
+ DeleteApplicationCommandOutput,
27
+ AppIntegrationsClientResolvedConfig
28
+ > {
29
+ readonly input: DeleteApplicationCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: DeleteApplicationCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: AppIntegrationsClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<DeleteApplicationCommandInput, DeleteApplicationCommandOutput>;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ AppIntegrationsClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../AppIntegrationsClient";
14
+ import {
15
+ ListApplicationAssociationsRequest,
16
+ ListApplicationAssociationsResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListApplicationAssociationsCommandInput
20
+ extends ListApplicationAssociationsRequest {}
21
+ export interface ListApplicationAssociationsCommandOutput
22
+ extends ListApplicationAssociationsResponse,
23
+ __MetadataBearer {}
24
+ export declare class ListApplicationAssociationsCommand extends $Command<
25
+ ListApplicationAssociationsCommandInput,
26
+ ListApplicationAssociationsCommandOutput,
27
+ AppIntegrationsClientResolvedConfig
28
+ > {
29
+ readonly input: ListApplicationAssociationsCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: ListApplicationAssociationsCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: AppIntegrationsClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ ListApplicationAssociationsCommandInput,
38
+ ListApplicationAssociationsCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -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";
@@ -33,6 +33,7 @@ export interface CreateApplicationRequest {
33
33
  Publications?: Publication[];
34
34
  ClientToken?: string;
35
35
  Tags?: Record<string, string>;
36
+ Permissions?: string[];
36
37
  }
37
38
  export interface CreateApplicationResponse {
38
39
  Arn?: string;
@@ -78,6 +79,14 @@ export declare class ThrottlingException extends __BaseException {
78
79
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
79
80
  );
80
81
  }
82
+ export declare class UnsupportedOperationException extends __BaseException {
83
+ readonly name: "UnsupportedOperationException";
84
+ readonly $fault: "client";
85
+ Message?: string;
86
+ constructor(
87
+ opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
88
+ );
89
+ }
81
90
  export interface FileConfiguration {
82
91
  Folders: string[] | undefined;
83
92
  Filters?: Record<string, string[]>;
@@ -125,10 +134,10 @@ export interface CreateEventIntegrationRequest {
125
134
  export interface CreateEventIntegrationResponse {
126
135
  EventIntegrationArn?: string;
127
136
  }
128
- export interface DeleteDataIntegrationRequest {
129
- DataIntegrationIdentifier: string | undefined;
137
+ export interface DeleteApplicationRequest {
138
+ Arn: string | undefined;
130
139
  }
131
- export interface DeleteDataIntegrationResponse {}
140
+ export interface DeleteApplicationResponse {}
132
141
  export declare class ResourceNotFoundException extends __BaseException {
133
142
  readonly name: "ResourceNotFoundException";
134
143
  readonly $fault: "client";
@@ -137,6 +146,10 @@ export declare class ResourceNotFoundException extends __BaseException {
137
146
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
138
147
  );
139
148
  }
149
+ export interface DeleteDataIntegrationRequest {
150
+ DataIntegrationIdentifier: string | undefined;
151
+ }
152
+ export interface DeleteDataIntegrationResponse {}
140
153
  export interface DeleteEventIntegrationRequest {
141
154
  Name: string | undefined;
142
155
  }
@@ -156,6 +169,7 @@ export interface GetApplicationResponse {
156
169
  CreatedTime?: Date;
157
170
  LastModifiedTime?: Date;
158
171
  Tags?: Record<string, string>;
172
+ Permissions?: string[];
159
173
  }
160
174
  export interface GetDataIntegrationRequest {
161
175
  Identifier: string | undefined;
@@ -183,6 +197,20 @@ export interface GetEventIntegrationResponse {
183
197
  EventFilter?: EventFilter;
184
198
  Tags?: Record<string, string>;
185
199
  }
200
+ export interface ListApplicationAssociationsRequest {
201
+ ApplicationId: string | undefined;
202
+ NextToken?: string;
203
+ MaxResults?: number;
204
+ }
205
+ export interface ApplicationAssociationSummary {
206
+ ApplicationAssociationArn?: string;
207
+ ApplicationArn?: string;
208
+ ClientId?: string;
209
+ }
210
+ export interface ListApplicationAssociationsResponse {
211
+ ApplicationAssociations?: ApplicationAssociationSummary[];
212
+ NextToken?: string;
213
+ }
186
214
  export interface ListApplicationsRequest {
187
215
  NextToken?: string;
188
216
  MaxResults?: number;
@@ -282,6 +310,7 @@ export interface UpdateApplicationRequest {
282
310
  ApplicationSourceConfig?: ApplicationSourceConfig;
283
311
  Subscriptions?: Subscription[];
284
312
  Publications?: Publication[];
313
+ Permissions?: string[];
285
314
  }
286
315
  export interface UpdateApplicationResponse {}
287
316
  export interface UpdateDataIntegrationRequest {
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListApplicationAssociationsCommandInput,
4
+ ListApplicationAssociationsCommandOutput,
5
+ } from "../commands/ListApplicationAssociationsCommand";
6
+ import { AppIntegrationsPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListApplicationAssociations: (
8
+ config: AppIntegrationsPaginationConfiguration,
9
+ input: ListApplicationAssociationsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListApplicationAssociationsCommandOutput>;
@@ -1,4 +1,5 @@
1
1
  export * from "./Interfaces";
2
+ export * from "./ListApplicationAssociationsPaginator";
2
3
  export * from "./ListApplicationsPaginator";
3
4
  export * from "./ListDataIntegrationAssociationsPaginator";
4
5
  export * from "./ListDataIntegrationsPaginator";
@@ -15,6 +15,10 @@ import {
15
15
  CreateEventIntegrationCommandInput,
16
16
  CreateEventIntegrationCommandOutput,
17
17
  } from "../commands/CreateEventIntegrationCommand";
18
+ import {
19
+ DeleteApplicationCommandInput,
20
+ DeleteApplicationCommandOutput,
21
+ } from "../commands/DeleteApplicationCommand";
18
22
  import {
19
23
  DeleteDataIntegrationCommandInput,
20
24
  DeleteDataIntegrationCommandOutput,
@@ -35,6 +39,10 @@ import {
35
39
  GetEventIntegrationCommandInput,
36
40
  GetEventIntegrationCommandOutput,
37
41
  } from "../commands/GetEventIntegrationCommand";
42
+ import {
43
+ ListApplicationAssociationsCommandInput,
44
+ ListApplicationAssociationsCommandOutput,
45
+ } from "../commands/ListApplicationAssociationsCommand";
38
46
  import {
39
47
  ListApplicationsCommandInput,
40
48
  ListApplicationsCommandOutput,
@@ -91,6 +99,10 @@ export declare const se_CreateEventIntegrationCommand: (
91
99
  input: CreateEventIntegrationCommandInput,
92
100
  context: __SerdeContext
93
101
  ) => Promise<__HttpRequest>;
102
+ export declare const se_DeleteApplicationCommand: (
103
+ input: DeleteApplicationCommandInput,
104
+ context: __SerdeContext
105
+ ) => Promise<__HttpRequest>;
94
106
  export declare const se_DeleteDataIntegrationCommand: (
95
107
  input: DeleteDataIntegrationCommandInput,
96
108
  context: __SerdeContext
@@ -111,6 +123,10 @@ export declare const se_GetEventIntegrationCommand: (
111
123
  input: GetEventIntegrationCommandInput,
112
124
  context: __SerdeContext
113
125
  ) => Promise<__HttpRequest>;
126
+ export declare const se_ListApplicationAssociationsCommand: (
127
+ input: ListApplicationAssociationsCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
114
130
  export declare const se_ListApplicationsCommand: (
115
131
  input: ListApplicationsCommandInput,
116
132
  context: __SerdeContext
@@ -167,6 +183,10 @@ export declare const de_CreateEventIntegrationCommand: (
167
183
  output: __HttpResponse,
168
184
  context: __SerdeContext
169
185
  ) => Promise<CreateEventIntegrationCommandOutput>;
186
+ export declare const de_DeleteApplicationCommand: (
187
+ output: __HttpResponse,
188
+ context: __SerdeContext
189
+ ) => Promise<DeleteApplicationCommandOutput>;
170
190
  export declare const de_DeleteDataIntegrationCommand: (
171
191
  output: __HttpResponse,
172
192
  context: __SerdeContext
@@ -187,6 +207,10 @@ export declare const de_GetEventIntegrationCommand: (
187
207
  output: __HttpResponse,
188
208
  context: __SerdeContext
189
209
  ) => Promise<GetEventIntegrationCommandOutput>;
210
+ export declare const de_ListApplicationAssociationsCommand: (
211
+ output: __HttpResponse,
212
+ context: __SerdeContext
213
+ ) => Promise<ListApplicationAssociationsCommandOutput>;
190
214
  export declare const de_ListApplicationsCommand: (
191
215
  output: __HttpResponse,
192
216
  context: __SerdeContext
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.478.0",
4
+ "version": "3.480.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",