@aws-sdk/client-appintegrations 3.414.0 → 3.420.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 (96) hide show
  1. package/README.md +39 -7
  2. package/dist-cjs/AppIntegrations.js +8 -0
  3. package/dist-cjs/commands/CreateApplicationCommand.js +51 -0
  4. package/dist-cjs/commands/CreateDataIntegrationCommand.js +5 -0
  5. package/dist-cjs/commands/CreateEventIntegrationCommand.js +5 -0
  6. package/dist-cjs/commands/DeleteDataIntegrationCommand.js +5 -0
  7. package/dist-cjs/commands/DeleteEventIntegrationCommand.js +5 -0
  8. package/dist-cjs/commands/GetApplicationCommand.js +51 -0
  9. package/dist-cjs/commands/GetDataIntegrationCommand.js +5 -0
  10. package/dist-cjs/commands/GetEventIntegrationCommand.js +5 -0
  11. package/dist-cjs/commands/ListApplicationsCommand.js +51 -0
  12. package/dist-cjs/commands/ListDataIntegrationAssociationsCommand.js +5 -0
  13. package/dist-cjs/commands/ListDataIntegrationsCommand.js +5 -0
  14. package/dist-cjs/commands/ListEventIntegrationAssociationsCommand.js +5 -0
  15. package/dist-cjs/commands/ListEventIntegrationsCommand.js +5 -0
  16. package/dist-cjs/commands/ListTagsForResourceCommand.js +5 -0
  17. package/dist-cjs/commands/TagResourceCommand.js +5 -0
  18. package/dist-cjs/commands/UntagResourceCommand.js +5 -0
  19. package/dist-cjs/commands/UpdateApplicationCommand.js +51 -0
  20. package/dist-cjs/commands/UpdateDataIntegrationCommand.js +5 -0
  21. package/dist-cjs/commands/UpdateEventIntegrationCommand.js +5 -0
  22. package/dist-cjs/commands/index.js +4 -0
  23. package/dist-cjs/index.js +1 -0
  24. package/dist-cjs/pagination/Interfaces.js +2 -0
  25. package/dist-cjs/pagination/ListApplicationsPaginator.js +29 -0
  26. package/dist-cjs/pagination/ListDataIntegrationAssociationsPaginator.js +29 -0
  27. package/dist-cjs/pagination/ListDataIntegrationsPaginator.js +29 -0
  28. package/dist-cjs/pagination/ListEventIntegrationAssociationsPaginator.js +29 -0
  29. package/dist-cjs/pagination/ListEventIntegrationsPaginator.js +29 -0
  30. package/dist-cjs/pagination/index.js +9 -0
  31. package/dist-cjs/protocols/Aws_restJson1.js +303 -1
  32. package/dist-es/AppIntegrations.js +8 -0
  33. package/dist-es/commands/CreateApplicationCommand.js +47 -0
  34. package/dist-es/commands/CreateDataIntegrationCommand.js +5 -0
  35. package/dist-es/commands/CreateEventIntegrationCommand.js +5 -0
  36. package/dist-es/commands/DeleteDataIntegrationCommand.js +5 -0
  37. package/dist-es/commands/DeleteEventIntegrationCommand.js +5 -0
  38. package/dist-es/commands/GetApplicationCommand.js +47 -0
  39. package/dist-es/commands/GetDataIntegrationCommand.js +5 -0
  40. package/dist-es/commands/GetEventIntegrationCommand.js +5 -0
  41. package/dist-es/commands/ListApplicationsCommand.js +47 -0
  42. package/dist-es/commands/ListDataIntegrationAssociationsCommand.js +5 -0
  43. package/dist-es/commands/ListDataIntegrationsCommand.js +5 -0
  44. package/dist-es/commands/ListEventIntegrationAssociationsCommand.js +5 -0
  45. package/dist-es/commands/ListEventIntegrationsCommand.js +5 -0
  46. package/dist-es/commands/ListTagsForResourceCommand.js +5 -0
  47. package/dist-es/commands/TagResourceCommand.js +5 -0
  48. package/dist-es/commands/UntagResourceCommand.js +5 -0
  49. package/dist-es/commands/UpdateApplicationCommand.js +47 -0
  50. package/dist-es/commands/UpdateDataIntegrationCommand.js +5 -0
  51. package/dist-es/commands/UpdateEventIntegrationCommand.js +5 -0
  52. package/dist-es/commands/index.js +4 -0
  53. package/dist-es/index.js +1 -0
  54. package/dist-es/pagination/Interfaces.js +1 -0
  55. package/dist-es/pagination/ListApplicationsPaginator.js +25 -0
  56. package/dist-es/pagination/ListDataIntegrationAssociationsPaginator.js +25 -0
  57. package/dist-es/pagination/ListDataIntegrationsPaginator.js +25 -0
  58. package/dist-es/pagination/ListEventIntegrationAssociationsPaginator.js +25 -0
  59. package/dist-es/pagination/ListEventIntegrationsPaginator.js +25 -0
  60. package/dist-es/pagination/index.js +6 -0
  61. package/dist-es/protocols/Aws_restJson1.js +295 -1
  62. package/dist-types/AppIntegrations.d.ts +28 -0
  63. package/dist-types/AppIntegrationsClient.d.ts +6 -2
  64. package/dist-types/commands/CreateApplicationCommand.d.ts +120 -0
  65. package/dist-types/commands/GetApplicationCommand.d.ts +119 -0
  66. package/dist-types/commands/ListApplicationsCommand.d.ts +97 -0
  67. package/dist-types/commands/UpdateApplicationCommand.d.ts +110 -0
  68. package/dist-types/commands/index.d.ts +4 -0
  69. package/dist-types/index.d.ts +1 -0
  70. package/dist-types/models/models_0.d.ts +370 -66
  71. package/dist-types/pagination/Interfaces.d.ts +8 -0
  72. package/dist-types/pagination/ListApplicationsPaginator.d.ts +7 -0
  73. package/dist-types/pagination/ListDataIntegrationAssociationsPaginator.d.ts +7 -0
  74. package/dist-types/pagination/ListDataIntegrationsPaginator.d.ts +7 -0
  75. package/dist-types/pagination/ListEventIntegrationAssociationsPaginator.d.ts +7 -0
  76. package/dist-types/pagination/ListEventIntegrationsPaginator.d.ts +7 -0
  77. package/dist-types/pagination/index.d.ts +6 -0
  78. package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
  79. package/dist-types/ts3.4/AppIntegrations.d.ts +68 -0
  80. package/dist-types/ts3.4/AppIntegrationsClient.d.ts +24 -0
  81. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +39 -0
  82. package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +38 -0
  83. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +38 -0
  84. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +39 -0
  85. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  86. package/dist-types/ts3.4/index.d.ts +1 -0
  87. package/dist-types/ts3.4/models/models_0.d.ts +95 -24
  88. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  89. package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -0
  90. package/dist-types/ts3.4/pagination/ListDataIntegrationAssociationsPaginator.d.ts +11 -0
  91. package/dist-types/ts3.4/pagination/ListDataIntegrationsPaginator.d.ts +11 -0
  92. package/dist-types/ts3.4/pagination/ListEventIntegrationAssociationsPaginator.d.ts +11 -0
  93. package/dist-types/ts3.4/pagination/ListEventIntegrationsPaginator.d.ts +11 -0
  94. package/dist-types/ts3.4/pagination/index.d.ts +6 -0
  95. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
  96. package/package.json +31 -31
@@ -3,6 +3,10 @@ import {
3
3
  HttpResponse as __HttpResponse,
4
4
  } from "@smithy/protocol-http";
5
5
  import { SerdeContext as __SerdeContext } from "@smithy/types";
6
+ import {
7
+ CreateApplicationCommandInput,
8
+ CreateApplicationCommandOutput,
9
+ } from "../commands/CreateApplicationCommand";
6
10
  import {
7
11
  CreateDataIntegrationCommandInput,
8
12
  CreateDataIntegrationCommandOutput,
@@ -19,6 +23,10 @@ import {
19
23
  DeleteEventIntegrationCommandInput,
20
24
  DeleteEventIntegrationCommandOutput,
21
25
  } from "../commands/DeleteEventIntegrationCommand";
26
+ import {
27
+ GetApplicationCommandInput,
28
+ GetApplicationCommandOutput,
29
+ } from "../commands/GetApplicationCommand";
22
30
  import {
23
31
  GetDataIntegrationCommandInput,
24
32
  GetDataIntegrationCommandOutput,
@@ -27,6 +35,10 @@ import {
27
35
  GetEventIntegrationCommandInput,
28
36
  GetEventIntegrationCommandOutput,
29
37
  } from "../commands/GetEventIntegrationCommand";
38
+ import {
39
+ ListApplicationsCommandInput,
40
+ ListApplicationsCommandOutput,
41
+ } from "../commands/ListApplicationsCommand";
30
42
  import {
31
43
  ListDataIntegrationAssociationsCommandInput,
32
44
  ListDataIntegrationAssociationsCommandOutput,
@@ -55,6 +67,10 @@ import {
55
67
  UntagResourceCommandInput,
56
68
  UntagResourceCommandOutput,
57
69
  } from "../commands/UntagResourceCommand";
70
+ import {
71
+ UpdateApplicationCommandInput,
72
+ UpdateApplicationCommandOutput,
73
+ } from "../commands/UpdateApplicationCommand";
58
74
  import {
59
75
  UpdateDataIntegrationCommandInput,
60
76
  UpdateDataIntegrationCommandOutput,
@@ -63,6 +79,10 @@ import {
63
79
  UpdateEventIntegrationCommandInput,
64
80
  UpdateEventIntegrationCommandOutput,
65
81
  } from "../commands/UpdateEventIntegrationCommand";
82
+ export declare const se_CreateApplicationCommand: (
83
+ input: CreateApplicationCommandInput,
84
+ context: __SerdeContext
85
+ ) => Promise<__HttpRequest>;
66
86
  export declare const se_CreateDataIntegrationCommand: (
67
87
  input: CreateDataIntegrationCommandInput,
68
88
  context: __SerdeContext
@@ -79,6 +99,10 @@ export declare const se_DeleteEventIntegrationCommand: (
79
99
  input: DeleteEventIntegrationCommandInput,
80
100
  context: __SerdeContext
81
101
  ) => Promise<__HttpRequest>;
102
+ export declare const se_GetApplicationCommand: (
103
+ input: GetApplicationCommandInput,
104
+ context: __SerdeContext
105
+ ) => Promise<__HttpRequest>;
82
106
  export declare const se_GetDataIntegrationCommand: (
83
107
  input: GetDataIntegrationCommandInput,
84
108
  context: __SerdeContext
@@ -87,6 +111,10 @@ export declare const se_GetEventIntegrationCommand: (
87
111
  input: GetEventIntegrationCommandInput,
88
112
  context: __SerdeContext
89
113
  ) => Promise<__HttpRequest>;
114
+ export declare const se_ListApplicationsCommand: (
115
+ input: ListApplicationsCommandInput,
116
+ context: __SerdeContext
117
+ ) => Promise<__HttpRequest>;
90
118
  export declare const se_ListDataIntegrationAssociationsCommand: (
91
119
  input: ListDataIntegrationAssociationsCommandInput,
92
120
  context: __SerdeContext
@@ -115,6 +143,10 @@ export declare const se_UntagResourceCommand: (
115
143
  input: UntagResourceCommandInput,
116
144
  context: __SerdeContext
117
145
  ) => Promise<__HttpRequest>;
146
+ export declare const se_UpdateApplicationCommand: (
147
+ input: UpdateApplicationCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
118
150
  export declare const se_UpdateDataIntegrationCommand: (
119
151
  input: UpdateDataIntegrationCommandInput,
120
152
  context: __SerdeContext
@@ -123,6 +155,10 @@ export declare const se_UpdateEventIntegrationCommand: (
123
155
  input: UpdateEventIntegrationCommandInput,
124
156
  context: __SerdeContext
125
157
  ) => Promise<__HttpRequest>;
158
+ export declare const de_CreateApplicationCommand: (
159
+ output: __HttpResponse,
160
+ context: __SerdeContext
161
+ ) => Promise<CreateApplicationCommandOutput>;
126
162
  export declare const de_CreateDataIntegrationCommand: (
127
163
  output: __HttpResponse,
128
164
  context: __SerdeContext
@@ -139,6 +175,10 @@ export declare const de_DeleteEventIntegrationCommand: (
139
175
  output: __HttpResponse,
140
176
  context: __SerdeContext
141
177
  ) => Promise<DeleteEventIntegrationCommandOutput>;
178
+ export declare const de_GetApplicationCommand: (
179
+ output: __HttpResponse,
180
+ context: __SerdeContext
181
+ ) => Promise<GetApplicationCommandOutput>;
142
182
  export declare const de_GetDataIntegrationCommand: (
143
183
  output: __HttpResponse,
144
184
  context: __SerdeContext
@@ -147,6 +187,10 @@ export declare const de_GetEventIntegrationCommand: (
147
187
  output: __HttpResponse,
148
188
  context: __SerdeContext
149
189
  ) => Promise<GetEventIntegrationCommandOutput>;
190
+ export declare const de_ListApplicationsCommand: (
191
+ output: __HttpResponse,
192
+ context: __SerdeContext
193
+ ) => Promise<ListApplicationsCommandOutput>;
150
194
  export declare const de_ListDataIntegrationAssociationsCommand: (
151
195
  output: __HttpResponse,
152
196
  context: __SerdeContext
@@ -175,6 +219,10 @@ export declare const de_UntagResourceCommand: (
175
219
  output: __HttpResponse,
176
220
  context: __SerdeContext
177
221
  ) => Promise<UntagResourceCommandOutput>;
222
+ export declare const de_UpdateApplicationCommand: (
223
+ output: __HttpResponse,
224
+ context: __SerdeContext
225
+ ) => Promise<UpdateApplicationCommandOutput>;
178
226
  export declare const de_UpdateDataIntegrationCommand: (
179
227
  output: __HttpResponse,
180
228
  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.414.0",
4
+ "version": "3.420.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",
@@ -21,39 +21,39 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.414.0",
25
- "@aws-sdk/credential-provider-node": "3.414.0",
26
- "@aws-sdk/middleware-host-header": "3.413.0",
27
- "@aws-sdk/middleware-logger": "3.413.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.413.0",
29
- "@aws-sdk/middleware-signing": "3.413.0",
30
- "@aws-sdk/middleware-user-agent": "3.413.0",
31
- "@aws-sdk/region-config-resolver": "3.413.0",
32
- "@aws-sdk/types": "3.413.0",
33
- "@aws-sdk/util-endpoints": "3.413.0",
34
- "@aws-sdk/util-user-agent-browser": "3.413.0",
35
- "@aws-sdk/util-user-agent-node": "3.413.0",
36
- "@smithy/config-resolver": "^2.0.8",
37
- "@smithy/fetch-http-handler": "^2.1.3",
38
- "@smithy/hash-node": "^2.0.7",
39
- "@smithy/invalid-dependency": "^2.0.7",
40
- "@smithy/middleware-content-length": "^2.0.9",
41
- "@smithy/middleware-endpoint": "^2.0.7",
42
- "@smithy/middleware-retry": "^2.0.10",
43
- "@smithy/middleware-serde": "^2.0.7",
44
- "@smithy/middleware-stack": "^2.0.0",
45
- "@smithy/node-config-provider": "^2.0.10",
46
- "@smithy/node-http-handler": "^2.1.3",
47
- "@smithy/protocol-http": "^3.0.3",
48
- "@smithy/smithy-client": "^2.1.4",
49
- "@smithy/types": "^2.3.1",
50
- "@smithy/url-parser": "^2.0.7",
24
+ "@aws-sdk/client-sts": "3.418.0",
25
+ "@aws-sdk/credential-provider-node": "3.418.0",
26
+ "@aws-sdk/middleware-host-header": "3.418.0",
27
+ "@aws-sdk/middleware-logger": "3.418.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.418.0",
29
+ "@aws-sdk/middleware-signing": "3.418.0",
30
+ "@aws-sdk/middleware-user-agent": "3.418.0",
31
+ "@aws-sdk/region-config-resolver": "3.418.0",
32
+ "@aws-sdk/types": "3.418.0",
33
+ "@aws-sdk/util-endpoints": "3.418.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.418.0",
35
+ "@aws-sdk/util-user-agent-node": "3.418.0",
36
+ "@smithy/config-resolver": "^2.0.10",
37
+ "@smithy/fetch-http-handler": "^2.1.5",
38
+ "@smithy/hash-node": "^2.0.9",
39
+ "@smithy/invalid-dependency": "^2.0.9",
40
+ "@smithy/middleware-content-length": "^2.0.11",
41
+ "@smithy/middleware-endpoint": "^2.0.9",
42
+ "@smithy/middleware-retry": "^2.0.12",
43
+ "@smithy/middleware-serde": "^2.0.9",
44
+ "@smithy/middleware-stack": "^2.0.2",
45
+ "@smithy/node-config-provider": "^2.0.12",
46
+ "@smithy/node-http-handler": "^2.1.5",
47
+ "@smithy/protocol-http": "^3.0.5",
48
+ "@smithy/smithy-client": "^2.1.6",
49
+ "@smithy/types": "^2.3.3",
50
+ "@smithy/url-parser": "^2.0.9",
51
51
  "@smithy/util-base64": "^2.0.0",
52
52
  "@smithy/util-body-length-browser": "^2.0.0",
53
53
  "@smithy/util-body-length-node": "^2.1.0",
54
- "@smithy/util-defaults-mode-browser": "^2.0.8",
55
- "@smithy/util-defaults-mode-node": "^2.0.10",
56
- "@smithy/util-retry": "^2.0.0",
54
+ "@smithy/util-defaults-mode-browser": "^2.0.10",
55
+ "@smithy/util-defaults-mode-node": "^2.0.12",
56
+ "@smithy/util-retry": "^2.0.2",
57
57
  "@smithy/util-utf8": "^2.0.0",
58
58
  "tslib": "^2.5.0",
59
59
  "uuid": "^8.3.2"