@aws-sdk/client-appintegrations 3.1074.0 → 3.1076.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 +1064 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/AppIntegrationsServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -113
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -748
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultAppIntegrationsHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "app-integrations",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultAppIntegrationsHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,912 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://app-integrations-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://app-integrations-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://app-integrations.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://app-integrations.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class AppIntegrationsServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, AppIntegrationsServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class AccessDeniedException extends AppIntegrationsServiceException {
|
|
140
|
+
name = "AccessDeniedException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
Message;
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "AccessDeniedException",
|
|
146
|
+
$fault: "client",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
150
|
+
this.Message = opts.Message;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
class DuplicateResourceException extends AppIntegrationsServiceException {
|
|
154
|
+
name = "DuplicateResourceException";
|
|
155
|
+
$fault = "client";
|
|
156
|
+
Message;
|
|
157
|
+
constructor(opts) {
|
|
158
|
+
super({
|
|
159
|
+
name: "DuplicateResourceException",
|
|
160
|
+
$fault: "client",
|
|
161
|
+
...opts,
|
|
162
|
+
});
|
|
163
|
+
Object.setPrototypeOf(this, DuplicateResourceException.prototype);
|
|
164
|
+
this.Message = opts.Message;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
class InternalServiceError extends AppIntegrationsServiceException {
|
|
168
|
+
name = "InternalServiceError";
|
|
169
|
+
$fault = "server";
|
|
170
|
+
Message;
|
|
171
|
+
constructor(opts) {
|
|
172
|
+
super({
|
|
173
|
+
name: "InternalServiceError",
|
|
174
|
+
$fault: "server",
|
|
175
|
+
...opts,
|
|
176
|
+
});
|
|
177
|
+
Object.setPrototypeOf(this, InternalServiceError.prototype);
|
|
178
|
+
this.Message = opts.Message;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
class InvalidRequestException extends AppIntegrationsServiceException {
|
|
182
|
+
name = "InvalidRequestException";
|
|
183
|
+
$fault = "client";
|
|
184
|
+
Message;
|
|
185
|
+
constructor(opts) {
|
|
186
|
+
super({
|
|
187
|
+
name: "InvalidRequestException",
|
|
188
|
+
$fault: "client",
|
|
189
|
+
...opts,
|
|
190
|
+
});
|
|
191
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
192
|
+
this.Message = opts.Message;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
class ResourceQuotaExceededException extends AppIntegrationsServiceException {
|
|
196
|
+
name = "ResourceQuotaExceededException";
|
|
197
|
+
$fault = "client";
|
|
198
|
+
Message;
|
|
199
|
+
constructor(opts) {
|
|
200
|
+
super({
|
|
201
|
+
name: "ResourceQuotaExceededException",
|
|
202
|
+
$fault: "client",
|
|
203
|
+
...opts,
|
|
204
|
+
});
|
|
205
|
+
Object.setPrototypeOf(this, ResourceQuotaExceededException.prototype);
|
|
206
|
+
this.Message = opts.Message;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
class ThrottlingException extends AppIntegrationsServiceException {
|
|
210
|
+
name = "ThrottlingException";
|
|
211
|
+
$fault = "client";
|
|
212
|
+
Message;
|
|
213
|
+
constructor(opts) {
|
|
214
|
+
super({
|
|
215
|
+
name: "ThrottlingException",
|
|
216
|
+
$fault: "client",
|
|
217
|
+
...opts,
|
|
218
|
+
});
|
|
219
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
220
|
+
this.Message = opts.Message;
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
class UnsupportedOperationException extends AppIntegrationsServiceException {
|
|
224
|
+
name = "UnsupportedOperationException";
|
|
225
|
+
$fault = "client";
|
|
226
|
+
Message;
|
|
227
|
+
constructor(opts) {
|
|
228
|
+
super({
|
|
229
|
+
name: "UnsupportedOperationException",
|
|
230
|
+
$fault: "client",
|
|
231
|
+
...opts,
|
|
232
|
+
});
|
|
233
|
+
Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
|
|
234
|
+
this.Message = opts.Message;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
class ResourceNotFoundException extends AppIntegrationsServiceException {
|
|
238
|
+
name = "ResourceNotFoundException";
|
|
239
|
+
$fault = "client";
|
|
240
|
+
Message;
|
|
241
|
+
constructor(opts) {
|
|
242
|
+
super({
|
|
243
|
+
name: "ResourceNotFoundException",
|
|
244
|
+
$fault: "client",
|
|
245
|
+
...opts,
|
|
246
|
+
});
|
|
247
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
248
|
+
this.Message = opts.Message;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
const _A = "Arn";
|
|
253
|
+
const _AA = "ApplicationArn";
|
|
254
|
+
const _AAA = "ApplicationAssociationArn";
|
|
255
|
+
const _AAL = "ApplicationAssociationsList";
|
|
256
|
+
const _AAS = "ApplicationAssociationSummary";
|
|
257
|
+
const _AAp = "ApplicationAssociations";
|
|
258
|
+
const _AC = "ApplicationConfig";
|
|
259
|
+
const _ADE = "AccessDeniedException";
|
|
260
|
+
const _AI = "ApplicationId";
|
|
261
|
+
const _AL = "ApplicationsList";
|
|
262
|
+
const _AO = "ApprovedOrigins";
|
|
263
|
+
const _AS = "ApplicationSummary";
|
|
264
|
+
const _ASC = "ApplicationSourceConfig";
|
|
265
|
+
const _AT = "ApplicationType";
|
|
266
|
+
const _AU = "AccessUrl";
|
|
267
|
+
const _Al = "Allow";
|
|
268
|
+
const _Ap = "Applications";
|
|
269
|
+
const _CA = "CreateApplication";
|
|
270
|
+
const _CAM = "ClientAssociationMetadata";
|
|
271
|
+
const _CAR = "CreateApplicationRequest";
|
|
272
|
+
const _CARr = "CreateApplicationResponse";
|
|
273
|
+
const _CDI = "CreateDataIntegration";
|
|
274
|
+
const _CDIA = "CreateDataIntegrationAssociation";
|
|
275
|
+
const _CDIAR = "CreateDataIntegrationAssociationRequest";
|
|
276
|
+
const _CDIARr = "CreateDataIntegrationAssociationResponse";
|
|
277
|
+
const _CDIR = "CreateDataIntegrationRequest";
|
|
278
|
+
const _CDIRr = "CreateDataIntegrationResponse";
|
|
279
|
+
const _CEI = "CreateEventIntegration";
|
|
280
|
+
const _CEIR = "CreateEventIntegrationRequest";
|
|
281
|
+
const _CEIRr = "CreateEventIntegrationResponse";
|
|
282
|
+
const _CH = "ContactHandling";
|
|
283
|
+
const _CI = "ClientId";
|
|
284
|
+
const _CT = "CreatedTime";
|
|
285
|
+
const _CTl = "ClientToken";
|
|
286
|
+
const _D = "Description";
|
|
287
|
+
const _DA = "DeleteApplication";
|
|
288
|
+
const _DAR = "DeleteApplicationRequest";
|
|
289
|
+
const _DARe = "DeleteApplicationResponse";
|
|
290
|
+
const _DDI = "DeleteDataIntegration";
|
|
291
|
+
const _DDIR = "DeleteDataIntegrationRequest";
|
|
292
|
+
const _DDIRe = "DeleteDataIntegrationResponse";
|
|
293
|
+
const _DEI = "DeleteEventIntegration";
|
|
294
|
+
const _DEIR = "DeleteEventIntegrationRequest";
|
|
295
|
+
const _DEIRe = "DeleteEventIntegrationResponse";
|
|
296
|
+
const _DI = "DataIntegrations";
|
|
297
|
+
const _DIA = "DataIntegrationArn";
|
|
298
|
+
const _DIAA = "DataIntegrationAssociationArn";
|
|
299
|
+
const _DIAI = "DataIntegrationAssociationId";
|
|
300
|
+
const _DIAIa = "DataIntegrationAssociationIdentifier";
|
|
301
|
+
const _DIAL = "DataIntegrationAssociationsList";
|
|
302
|
+
const _DIAS = "DataIntegrationAssociationSummary";
|
|
303
|
+
const _DIAa = "DataIntegrationAssociations";
|
|
304
|
+
const _DII = "DataIntegrationIdentifier";
|
|
305
|
+
const _DIL = "DataIntegrationsList";
|
|
306
|
+
const _DIS = "DataIntegrationSummary";
|
|
307
|
+
const _DRE = "DuplicateResourceException";
|
|
308
|
+
const _DURI = "DestinationURI";
|
|
309
|
+
const _E = "Event";
|
|
310
|
+
const _EBB = "EventBridgeBus";
|
|
311
|
+
const _EBRN = "EventBridgeRuleName";
|
|
312
|
+
const _EC = "ExecutionConfiguration";
|
|
313
|
+
const _EF = "EventFilter";
|
|
314
|
+
const _EI = "EventIntegration";
|
|
315
|
+
const _EIA = "EventIntegrationArn";
|
|
316
|
+
const _EIAA = "EventIntegrationAssociationArn";
|
|
317
|
+
const _EIAI = "EventIntegrationAssociationId";
|
|
318
|
+
const _EIAL = "EventIntegrationAssociationsList";
|
|
319
|
+
const _EIAv = "EventIntegrationAssociation";
|
|
320
|
+
const _EIAve = "EventIntegrationAssociations";
|
|
321
|
+
const _EIL = "EventIntegrationsList";
|
|
322
|
+
const _EIN = "EventIntegrationName";
|
|
323
|
+
const _EIv = "EventIntegrations";
|
|
324
|
+
const _EM = "ExecutionMode";
|
|
325
|
+
const _ES = "ExecutionStatus";
|
|
326
|
+
const _ET = "EndTime";
|
|
327
|
+
const _EUC = "ExternalUrlConfig";
|
|
328
|
+
const _F = "Folders";
|
|
329
|
+
const _FC = "FileConfiguration";
|
|
330
|
+
const _FEF = "FirstExecutionFrom";
|
|
331
|
+
const _FM = "FieldsMap";
|
|
332
|
+
const _Fi = "Filters";
|
|
333
|
+
const _GA = "GetApplication";
|
|
334
|
+
const _GAR = "GetApplicationRequest";
|
|
335
|
+
const _GARe = "GetApplicationResponse";
|
|
336
|
+
const _GDI = "GetDataIntegration";
|
|
337
|
+
const _GDIR = "GetDataIntegrationRequest";
|
|
338
|
+
const _GDIRe = "GetDataIntegrationResponse";
|
|
339
|
+
const _GEI = "GetEventIntegration";
|
|
340
|
+
const _GEIR = "GetEventIntegrationRequest";
|
|
341
|
+
const _GEIRe = "GetEventIntegrationResponse";
|
|
342
|
+
const _I = "Id";
|
|
343
|
+
const _IC = "IframeConfig";
|
|
344
|
+
const _IRE = "InvalidRequestException";
|
|
345
|
+
const _IS = "IsService";
|
|
346
|
+
const _ISE = "InternalServiceError";
|
|
347
|
+
const _IT = "InitializationTimeout";
|
|
348
|
+
const _Id = "Identifier";
|
|
349
|
+
const _KK = "KmsKey";
|
|
350
|
+
const _LA = "ListApplications";
|
|
351
|
+
const _LAA = "ListApplicationAssociations";
|
|
352
|
+
const _LAAR = "ListApplicationAssociationsRequest";
|
|
353
|
+
const _LAARi = "ListApplicationAssociationsResponse";
|
|
354
|
+
const _LAR = "ListApplicationsRequest";
|
|
355
|
+
const _LARi = "ListApplicationsResponse";
|
|
356
|
+
const _LDI = "ListDataIntegrations";
|
|
357
|
+
const _LDIA = "ListDataIntegrationAssociations";
|
|
358
|
+
const _LDIAR = "ListDataIntegrationAssociationsRequest";
|
|
359
|
+
const _LDIARi = "ListDataIntegrationAssociationsResponse";
|
|
360
|
+
const _LDIR = "ListDataIntegrationsRequest";
|
|
361
|
+
const _LDIRi = "ListDataIntegrationsResponse";
|
|
362
|
+
const _LEI = "ListEventIntegrations";
|
|
363
|
+
const _LEIA = "ListEventIntegrationAssociations";
|
|
364
|
+
const _LEIAR = "ListEventIntegrationAssociationsRequest";
|
|
365
|
+
const _LEIARi = "ListEventIntegrationAssociationsResponse";
|
|
366
|
+
const _LEIR = "ListEventIntegrationsRequest";
|
|
367
|
+
const _LEIRi = "ListEventIntegrationsResponse";
|
|
368
|
+
const _LES = "LastExecutionStatus";
|
|
369
|
+
const _LMT = "LastModifiedTime";
|
|
370
|
+
const _LTFR = "ListTagsForResource";
|
|
371
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
372
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
373
|
+
const _M = "Message";
|
|
374
|
+
const _MR = "MaxResults";
|
|
375
|
+
const _N = "Name";
|
|
376
|
+
const _NT = "NextToken";
|
|
377
|
+
const _Na = "Namespace";
|
|
378
|
+
const _O = "Object";
|
|
379
|
+
const _OC = "ObjectConfiguration";
|
|
380
|
+
const _ODC = "OnDemandConfiguration";
|
|
381
|
+
const _P = "Publications";
|
|
382
|
+
const _PL = "PublicationList";
|
|
383
|
+
const _Pe = "Permissions";
|
|
384
|
+
const _Pu = "Publication";
|
|
385
|
+
const _RNFE = "ResourceNotFoundException";
|
|
386
|
+
const _RQEE = "ResourceQuotaExceededException";
|
|
387
|
+
const _S = "Scope";
|
|
388
|
+
const _SC = "ScheduleConfig";
|
|
389
|
+
const _SCc = "ScheduleConfiguration";
|
|
390
|
+
const _SE = "ScheduleExpression";
|
|
391
|
+
const _SL = "SubscriptionList";
|
|
392
|
+
const _SM = "StatusMessage";
|
|
393
|
+
const _ST = "StartTime";
|
|
394
|
+
const _SURI = "SourceURI";
|
|
395
|
+
const _Sa = "Sandbox";
|
|
396
|
+
const _Sc = "Schema";
|
|
397
|
+
const _So = "Source";
|
|
398
|
+
const _Su = "Subscriptions";
|
|
399
|
+
const _Sub = "Subscription";
|
|
400
|
+
const _T = "Tags";
|
|
401
|
+
const _TE = "ThrottlingException";
|
|
402
|
+
const _TR = "TagResource";
|
|
403
|
+
const _TRR = "TagResourceRequest";
|
|
404
|
+
const _TRRa = "TagResourceResponse";
|
|
405
|
+
const _UA = "UpdateApplication";
|
|
406
|
+
const _UAR = "UpdateApplicationRequest";
|
|
407
|
+
const _UARp = "UpdateApplicationResponse";
|
|
408
|
+
const _UDI = "UpdateDataIntegration";
|
|
409
|
+
const _UDIA = "UpdateDataIntegrationAssociation";
|
|
410
|
+
const _UDIAR = "UpdateDataIntegrationAssociationRequest";
|
|
411
|
+
const _UDIARp = "UpdateDataIntegrationAssociationResponse";
|
|
412
|
+
const _UDIR = "UpdateDataIntegrationRequest";
|
|
413
|
+
const _UDIRp = "UpdateDataIntegrationResponse";
|
|
414
|
+
const _UEI = "UpdateEventIntegration";
|
|
415
|
+
const _UEIR = "UpdateEventIntegrationRequest";
|
|
416
|
+
const _UEIRp = "UpdateEventIntegrationResponse";
|
|
417
|
+
const _UOE = "UnsupportedOperationException";
|
|
418
|
+
const _UR = "UntagResource";
|
|
419
|
+
const _URR = "UntagResourceRequest";
|
|
420
|
+
const _URRn = "UntagResourceResponse";
|
|
421
|
+
const _aT = "applicationType";
|
|
422
|
+
const _c = "client";
|
|
423
|
+
const _e = "error";
|
|
424
|
+
const _h = "http";
|
|
425
|
+
const _hE = "httpError";
|
|
426
|
+
const _hQ = "httpQuery";
|
|
427
|
+
const _mR = "maxResults";
|
|
428
|
+
const _nT = "nextToken";
|
|
429
|
+
const _rA = "resourceArn";
|
|
430
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.appintegrations";
|
|
431
|
+
const _se = "server";
|
|
432
|
+
const _t = "tags";
|
|
433
|
+
const _tK = "tagKeys";
|
|
434
|
+
const n0 = "com.amazonaws.appintegrations";
|
|
435
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
436
|
+
var AppIntegrationsServiceException$ = [-3, _s, "AppIntegrationsServiceException", 0, [], []];
|
|
437
|
+
_s_registry.registerError(AppIntegrationsServiceException$, AppIntegrationsServiceException);
|
|
438
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
439
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
440
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
441
|
+
[_M],
|
|
442
|
+
[0]
|
|
443
|
+
];
|
|
444
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
445
|
+
var DuplicateResourceException$ = [-3, n0, _DRE,
|
|
446
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
447
|
+
[_M],
|
|
448
|
+
[0]
|
|
449
|
+
];
|
|
450
|
+
n0_registry.registerError(DuplicateResourceException$, DuplicateResourceException);
|
|
451
|
+
var InternalServiceError$ = [-3, n0, _ISE,
|
|
452
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
453
|
+
[_M],
|
|
454
|
+
[0]
|
|
455
|
+
];
|
|
456
|
+
n0_registry.registerError(InternalServiceError$, InternalServiceError);
|
|
457
|
+
var InvalidRequestException$ = [-3, n0, _IRE,
|
|
458
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
459
|
+
[_M],
|
|
460
|
+
[0]
|
|
461
|
+
];
|
|
462
|
+
n0_registry.registerError(InvalidRequestException$, InvalidRequestException);
|
|
463
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
464
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
465
|
+
[_M],
|
|
466
|
+
[0]
|
|
467
|
+
];
|
|
468
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
469
|
+
var ResourceQuotaExceededException$ = [-3, n0, _RQEE,
|
|
470
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
471
|
+
[_M],
|
|
472
|
+
[0]
|
|
473
|
+
];
|
|
474
|
+
n0_registry.registerError(ResourceQuotaExceededException$, ResourceQuotaExceededException);
|
|
475
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
476
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
477
|
+
[_M],
|
|
478
|
+
[0]
|
|
479
|
+
];
|
|
480
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
481
|
+
var UnsupportedOperationException$ = [-3, n0, _UOE,
|
|
482
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
483
|
+
[_M],
|
|
484
|
+
[0]
|
|
485
|
+
];
|
|
486
|
+
n0_registry.registerError(UnsupportedOperationException$, UnsupportedOperationException);
|
|
487
|
+
const errorTypeRegistries = [
|
|
488
|
+
_s_registry,
|
|
489
|
+
n0_registry,
|
|
490
|
+
];
|
|
491
|
+
var ApplicationAssociationSummary$ = [3, n0, _AAS,
|
|
492
|
+
0,
|
|
493
|
+
[_AAA, _AA, _CI],
|
|
494
|
+
[0, 0, 0]
|
|
495
|
+
];
|
|
496
|
+
var ApplicationConfig$ = [3, n0, _AC,
|
|
497
|
+
0,
|
|
498
|
+
[_CH],
|
|
499
|
+
[() => ContactHandling$]
|
|
500
|
+
];
|
|
501
|
+
var ApplicationSourceConfig$ = [3, n0, _ASC,
|
|
502
|
+
0,
|
|
503
|
+
[_EUC],
|
|
504
|
+
[() => ExternalUrlConfig$]
|
|
505
|
+
];
|
|
506
|
+
var ApplicationSummary$ = [3, n0, _AS,
|
|
507
|
+
0,
|
|
508
|
+
[_A, _I, _N, _Na, _CT, _LMT, _IS, _AT],
|
|
509
|
+
[0, 0, 0, 0, 4, 4, 2, 0]
|
|
510
|
+
];
|
|
511
|
+
var ContactHandling$ = [3, n0, _CH,
|
|
512
|
+
0,
|
|
513
|
+
[_S],
|
|
514
|
+
[0]
|
|
515
|
+
];
|
|
516
|
+
var CreateApplicationRequest$ = [3, n0, _CAR,
|
|
517
|
+
0,
|
|
518
|
+
[_N, _Na, _ASC, _D, _Su, _P, _CTl, _T, _Pe, _IS, _IT, _AC, _IC, _AT],
|
|
519
|
+
[0, 0, () => ApplicationSourceConfig$, 0, () => SubscriptionList, () => PublicationList, [0, 4], 128 | 0, 64 | 0, 2, 1, () => ApplicationConfig$, () => IframeConfig$, 0], 3
|
|
520
|
+
];
|
|
521
|
+
var CreateApplicationResponse$ = [3, n0, _CARr,
|
|
522
|
+
0,
|
|
523
|
+
[_A, _I],
|
|
524
|
+
[0, 0]
|
|
525
|
+
];
|
|
526
|
+
var CreateDataIntegrationAssociationRequest$ = [3, n0, _CDIAR,
|
|
527
|
+
0,
|
|
528
|
+
[_DII, _CI, _OC, _DURI, _CAM, _CTl, _EC],
|
|
529
|
+
[[0, 1], 0, [2, n0, _OC, 0, 0, [2, n0, _FM, 0, 0, 64 | 0]], 0, 128 | 0, [0, 4], () => ExecutionConfiguration$], 1
|
|
530
|
+
];
|
|
531
|
+
var CreateDataIntegrationAssociationResponse$ = [3, n0, _CDIARr,
|
|
532
|
+
0,
|
|
533
|
+
[_DIAI, _DIA],
|
|
534
|
+
[0, 0]
|
|
535
|
+
];
|
|
536
|
+
var CreateDataIntegrationRequest$ = [3, n0, _CDIR,
|
|
537
|
+
0,
|
|
538
|
+
[_N, _KK, _D, _SURI, _SC, _T, _CTl, _FC, _OC],
|
|
539
|
+
[0, 0, 0, 0, () => ScheduleConfiguration$, 128 | 0, [0, 4], () => FileConfiguration$, [2, n0, _OC, 0, 0, [2, n0, _FM, 0, 0, 64 | 0]]], 2
|
|
540
|
+
];
|
|
541
|
+
var CreateDataIntegrationResponse$ = [3, n0, _CDIRr,
|
|
542
|
+
0,
|
|
543
|
+
[_A, _I, _N, _D, _KK, _SURI, _SCc, _T, _CTl, _FC, _OC],
|
|
544
|
+
[0, 0, 0, 0, 0, 0, () => ScheduleConfiguration$, 128 | 0, 0, () => FileConfiguration$, [2, n0, _OC, 0, 0, [2, n0, _FM, 0, 0, 64 | 0]]]
|
|
545
|
+
];
|
|
546
|
+
var CreateEventIntegrationRequest$ = [3, n0, _CEIR,
|
|
547
|
+
0,
|
|
548
|
+
[_N, _EF, _EBB, _D, _CTl, _T],
|
|
549
|
+
[0, () => EventFilter$, 0, 0, [0, 4], 128 | 0], 3
|
|
550
|
+
];
|
|
551
|
+
var CreateEventIntegrationResponse$ = [3, n0, _CEIRr,
|
|
552
|
+
0,
|
|
553
|
+
[_EIA],
|
|
554
|
+
[0]
|
|
555
|
+
];
|
|
556
|
+
var DataIntegrationAssociationSummary$ = [3, n0, _DIAS,
|
|
557
|
+
0,
|
|
558
|
+
[_DIAA, _DIA, _CI, _DURI, _LES, _EC],
|
|
559
|
+
[0, 0, 0, 0, () => LastExecutionStatus$, () => ExecutionConfiguration$]
|
|
560
|
+
];
|
|
561
|
+
var DataIntegrationSummary$ = [3, n0, _DIS,
|
|
562
|
+
0,
|
|
563
|
+
[_A, _N, _SURI],
|
|
564
|
+
[0, 0, 0]
|
|
565
|
+
];
|
|
566
|
+
var DeleteApplicationRequest$ = [3, n0, _DAR,
|
|
567
|
+
0,
|
|
568
|
+
[_A],
|
|
569
|
+
[[0, 1]], 1
|
|
570
|
+
];
|
|
571
|
+
var DeleteApplicationResponse$ = [3, n0, _DARe,
|
|
572
|
+
0,
|
|
573
|
+
[],
|
|
574
|
+
[]
|
|
575
|
+
];
|
|
576
|
+
var DeleteDataIntegrationRequest$ = [3, n0, _DDIR,
|
|
577
|
+
0,
|
|
578
|
+
[_DII],
|
|
579
|
+
[[0, 1]], 1
|
|
580
|
+
];
|
|
581
|
+
var DeleteDataIntegrationResponse$ = [3, n0, _DDIRe,
|
|
582
|
+
0,
|
|
583
|
+
[],
|
|
584
|
+
[]
|
|
585
|
+
];
|
|
586
|
+
var DeleteEventIntegrationRequest$ = [3, n0, _DEIR,
|
|
587
|
+
0,
|
|
588
|
+
[_N],
|
|
589
|
+
[[0, 1]], 1
|
|
590
|
+
];
|
|
591
|
+
var DeleteEventIntegrationResponse$ = [3, n0, _DEIRe,
|
|
592
|
+
0,
|
|
593
|
+
[],
|
|
594
|
+
[]
|
|
595
|
+
];
|
|
596
|
+
var EventFilter$ = [3, n0, _EF,
|
|
597
|
+
0,
|
|
598
|
+
[_So],
|
|
599
|
+
[0], 1
|
|
600
|
+
];
|
|
601
|
+
var EventIntegration$ = [3, n0, _EI,
|
|
602
|
+
0,
|
|
603
|
+
[_EIA, _N, _D, _EF, _EBB, _T],
|
|
604
|
+
[0, 0, 0, () => EventFilter$, 0, 128 | 0]
|
|
605
|
+
];
|
|
606
|
+
var EventIntegrationAssociation$ = [3, n0, _EIAv,
|
|
607
|
+
0,
|
|
608
|
+
[_EIAA, _EIAI, _EIN, _CI, _EBRN, _CAM],
|
|
609
|
+
[0, 0, 0, 0, 0, 128 | 0]
|
|
610
|
+
];
|
|
611
|
+
var ExecutionConfiguration$ = [3, n0, _EC,
|
|
612
|
+
0,
|
|
613
|
+
[_EM, _ODC, _SCc],
|
|
614
|
+
[0, () => OnDemandConfiguration$, () => ScheduleConfiguration$], 1
|
|
615
|
+
];
|
|
616
|
+
var ExternalUrlConfig$ = [3, n0, _EUC,
|
|
617
|
+
0,
|
|
618
|
+
[_AU, _AO],
|
|
619
|
+
[0, 64 | 0], 1
|
|
620
|
+
];
|
|
621
|
+
var FileConfiguration$ = [3, n0, _FC,
|
|
622
|
+
0,
|
|
623
|
+
[_F, _Fi],
|
|
624
|
+
[64 | 0, [2, n0, _FM, 0, 0, 64 | 0]], 1
|
|
625
|
+
];
|
|
626
|
+
var GetApplicationRequest$ = [3, n0, _GAR,
|
|
627
|
+
0,
|
|
628
|
+
[_A],
|
|
629
|
+
[[0, 1]], 1
|
|
630
|
+
];
|
|
631
|
+
var GetApplicationResponse$ = [3, n0, _GARe,
|
|
632
|
+
0,
|
|
633
|
+
[_A, _I, _N, _Na, _D, _ASC, _Su, _P, _CT, _LMT, _T, _Pe, _IS, _IT, _AC, _IC, _AT],
|
|
634
|
+
[0, 0, 0, 0, 0, () => ApplicationSourceConfig$, () => SubscriptionList, () => PublicationList, 4, 4, 128 | 0, 64 | 0, 2, 1, () => ApplicationConfig$, () => IframeConfig$, 0]
|
|
635
|
+
];
|
|
636
|
+
var GetDataIntegrationRequest$ = [3, n0, _GDIR,
|
|
637
|
+
0,
|
|
638
|
+
[_Id],
|
|
639
|
+
[[0, 1]], 1
|
|
640
|
+
];
|
|
641
|
+
var GetDataIntegrationResponse$ = [3, n0, _GDIRe,
|
|
642
|
+
0,
|
|
643
|
+
[_A, _I, _N, _D, _KK, _SURI, _SCc, _T, _FC, _OC],
|
|
644
|
+
[0, 0, 0, 0, 0, 0, () => ScheduleConfiguration$, 128 | 0, () => FileConfiguration$, [2, n0, _OC, 0, 0, [2, n0, _FM, 0, 0, 64 | 0]]]
|
|
645
|
+
];
|
|
646
|
+
var GetEventIntegrationRequest$ = [3, n0, _GEIR,
|
|
647
|
+
0,
|
|
648
|
+
[_N],
|
|
649
|
+
[[0, 1]], 1
|
|
650
|
+
];
|
|
651
|
+
var GetEventIntegrationResponse$ = [3, n0, _GEIRe,
|
|
652
|
+
0,
|
|
653
|
+
[_N, _D, _EIA, _EBB, _EF, _T],
|
|
654
|
+
[0, 0, 0, 0, () => EventFilter$, 128 | 0]
|
|
655
|
+
];
|
|
656
|
+
var IframeConfig$ = [3, n0, _IC,
|
|
657
|
+
0,
|
|
658
|
+
[_Al, _Sa],
|
|
659
|
+
[64 | 0, 64 | 0]
|
|
660
|
+
];
|
|
661
|
+
var LastExecutionStatus$ = [3, n0, _LES,
|
|
662
|
+
0,
|
|
663
|
+
[_ES, _SM],
|
|
664
|
+
[0, 0]
|
|
665
|
+
];
|
|
666
|
+
var ListApplicationAssociationsRequest$ = [3, n0, _LAAR,
|
|
667
|
+
0,
|
|
668
|
+
[_AI, _NT, _MR],
|
|
669
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
670
|
+
];
|
|
671
|
+
var ListApplicationAssociationsResponse$ = [3, n0, _LAARi,
|
|
672
|
+
0,
|
|
673
|
+
[_AAp, _NT],
|
|
674
|
+
[() => ApplicationAssociationsList, 0]
|
|
675
|
+
];
|
|
676
|
+
var ListApplicationsRequest$ = [3, n0, _LAR,
|
|
677
|
+
0,
|
|
678
|
+
[_NT, _MR, _AT],
|
|
679
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _aT }]]
|
|
680
|
+
];
|
|
681
|
+
var ListApplicationsResponse$ = [3, n0, _LARi,
|
|
682
|
+
0,
|
|
683
|
+
[_Ap, _NT],
|
|
684
|
+
[() => ApplicationsList, 0]
|
|
685
|
+
];
|
|
686
|
+
var ListDataIntegrationAssociationsRequest$ = [3, n0, _LDIAR,
|
|
687
|
+
0,
|
|
688
|
+
[_DII, _NT, _MR],
|
|
689
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
690
|
+
];
|
|
691
|
+
var ListDataIntegrationAssociationsResponse$ = [3, n0, _LDIARi,
|
|
692
|
+
0,
|
|
693
|
+
[_DIAa, _NT],
|
|
694
|
+
[() => DataIntegrationAssociationsList, 0]
|
|
695
|
+
];
|
|
696
|
+
var ListDataIntegrationsRequest$ = [3, n0, _LDIR,
|
|
697
|
+
0,
|
|
698
|
+
[_NT, _MR],
|
|
699
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
700
|
+
];
|
|
701
|
+
var ListDataIntegrationsResponse$ = [3, n0, _LDIRi,
|
|
702
|
+
0,
|
|
703
|
+
[_DI, _NT],
|
|
704
|
+
[() => DataIntegrationsList, 0]
|
|
705
|
+
];
|
|
706
|
+
var ListEventIntegrationAssociationsRequest$ = [3, n0, _LEIAR,
|
|
707
|
+
0,
|
|
708
|
+
[_EIN, _NT, _MR],
|
|
709
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
710
|
+
];
|
|
711
|
+
var ListEventIntegrationAssociationsResponse$ = [3, n0, _LEIARi,
|
|
712
|
+
0,
|
|
713
|
+
[_EIAve, _NT],
|
|
714
|
+
[() => EventIntegrationAssociationsList, 0]
|
|
715
|
+
];
|
|
716
|
+
var ListEventIntegrationsRequest$ = [3, n0, _LEIR,
|
|
717
|
+
0,
|
|
718
|
+
[_NT, _MR],
|
|
719
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
720
|
+
];
|
|
721
|
+
var ListEventIntegrationsResponse$ = [3, n0, _LEIRi,
|
|
722
|
+
0,
|
|
723
|
+
[_EIv, _NT],
|
|
724
|
+
[() => EventIntegrationsList, 0]
|
|
725
|
+
];
|
|
726
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
727
|
+
0,
|
|
728
|
+
[_rA],
|
|
729
|
+
[[0, 1]], 1
|
|
730
|
+
];
|
|
731
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
732
|
+
0,
|
|
733
|
+
[_t],
|
|
734
|
+
[128 | 0]
|
|
735
|
+
];
|
|
736
|
+
var OnDemandConfiguration$ = [3, n0, _ODC,
|
|
737
|
+
0,
|
|
738
|
+
[_ST, _ET],
|
|
739
|
+
[0, 0], 1
|
|
740
|
+
];
|
|
741
|
+
var Publication$ = [3, n0, _Pu,
|
|
742
|
+
0,
|
|
743
|
+
[_E, _Sc, _D],
|
|
744
|
+
[0, 0, 0], 2
|
|
745
|
+
];
|
|
746
|
+
var ScheduleConfiguration$ = [3, n0, _SCc,
|
|
747
|
+
0,
|
|
748
|
+
[_SE, _FEF, _O],
|
|
749
|
+
[0, 0, 0], 1
|
|
750
|
+
];
|
|
751
|
+
var Subscription$ = [3, n0, _Sub,
|
|
752
|
+
0,
|
|
753
|
+
[_E, _D],
|
|
754
|
+
[0, 0], 1
|
|
755
|
+
];
|
|
756
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
757
|
+
0,
|
|
758
|
+
[_rA, _t],
|
|
759
|
+
[[0, 1], 128 | 0], 2
|
|
760
|
+
];
|
|
761
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
762
|
+
0,
|
|
763
|
+
[],
|
|
764
|
+
[]
|
|
765
|
+
];
|
|
766
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
767
|
+
0,
|
|
768
|
+
[_rA, _tK],
|
|
769
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
770
|
+
];
|
|
771
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
772
|
+
0,
|
|
773
|
+
[],
|
|
774
|
+
[]
|
|
775
|
+
];
|
|
776
|
+
var UpdateApplicationRequest$ = [3, n0, _UAR,
|
|
777
|
+
0,
|
|
778
|
+
[_A, _N, _D, _ASC, _Su, _P, _Pe, _IS, _IT, _AC, _IC, _AT],
|
|
779
|
+
[[0, 1], 0, 0, () => ApplicationSourceConfig$, () => SubscriptionList, () => PublicationList, 64 | 0, 2, 1, () => ApplicationConfig$, () => IframeConfig$, 0], 1
|
|
780
|
+
];
|
|
781
|
+
var UpdateApplicationResponse$ = [3, n0, _UARp,
|
|
782
|
+
0,
|
|
783
|
+
[],
|
|
784
|
+
[]
|
|
785
|
+
];
|
|
786
|
+
var UpdateDataIntegrationAssociationRequest$ = [3, n0, _UDIAR,
|
|
787
|
+
0,
|
|
788
|
+
[_DII, _DIAIa, _EC],
|
|
789
|
+
[[0, 1], [0, 1], () => ExecutionConfiguration$], 3
|
|
790
|
+
];
|
|
791
|
+
var UpdateDataIntegrationAssociationResponse$ = [3, n0, _UDIARp,
|
|
792
|
+
0,
|
|
793
|
+
[],
|
|
794
|
+
[]
|
|
795
|
+
];
|
|
796
|
+
var UpdateDataIntegrationRequest$ = [3, n0, _UDIR,
|
|
797
|
+
0,
|
|
798
|
+
[_Id, _N, _D],
|
|
799
|
+
[[0, 1], 0, 0], 1
|
|
800
|
+
];
|
|
801
|
+
var UpdateDataIntegrationResponse$ = [3, n0, _UDIRp,
|
|
802
|
+
0,
|
|
803
|
+
[],
|
|
804
|
+
[]
|
|
805
|
+
];
|
|
806
|
+
var UpdateEventIntegrationRequest$ = [3, n0, _UEIR,
|
|
807
|
+
0,
|
|
808
|
+
[_N, _D],
|
|
809
|
+
[[0, 1], 0], 1
|
|
810
|
+
];
|
|
811
|
+
var UpdateEventIntegrationResponse$ = [3, n0, _UEIRp,
|
|
812
|
+
0,
|
|
813
|
+
[],
|
|
814
|
+
[]
|
|
815
|
+
];
|
|
816
|
+
var ApplicationAssociationsList = [1, n0, _AAL,
|
|
817
|
+
0, () => ApplicationAssociationSummary$
|
|
818
|
+
];
|
|
819
|
+
var ApplicationsList = [1, n0, _AL,
|
|
820
|
+
0, () => ApplicationSummary$
|
|
821
|
+
];
|
|
822
|
+
var DataIntegrationAssociationsList = [1, n0, _DIAL,
|
|
823
|
+
0, () => DataIntegrationAssociationSummary$
|
|
824
|
+
];
|
|
825
|
+
var DataIntegrationsList = [1, n0, _DIL,
|
|
826
|
+
0, () => DataIntegrationSummary$
|
|
827
|
+
];
|
|
828
|
+
var EventIntegrationAssociationsList = [1, n0, _EIAL,
|
|
829
|
+
0, () => EventIntegrationAssociation$
|
|
830
|
+
];
|
|
831
|
+
var EventIntegrationsList = [1, n0, _EIL,
|
|
832
|
+
0, () => EventIntegration$
|
|
833
|
+
];
|
|
834
|
+
var PublicationList = [1, n0, _PL,
|
|
835
|
+
0, () => Publication$
|
|
836
|
+
];
|
|
837
|
+
var SubscriptionList = [1, n0, _SL,
|
|
838
|
+
0, () => Subscription$
|
|
839
|
+
];
|
|
840
|
+
var CreateApplication$ = [9, n0, _CA,
|
|
841
|
+
{ [_h]: ["POST", "/applications", 200] }, () => CreateApplicationRequest$, () => CreateApplicationResponse$
|
|
842
|
+
];
|
|
843
|
+
var CreateDataIntegration$ = [9, n0, _CDI,
|
|
844
|
+
{ [_h]: ["POST", "/dataIntegrations", 200] }, () => CreateDataIntegrationRequest$, () => CreateDataIntegrationResponse$
|
|
845
|
+
];
|
|
846
|
+
var CreateDataIntegrationAssociation$ = [9, n0, _CDIA,
|
|
847
|
+
{ [_h]: ["POST", "/dataIntegrations/{DataIntegrationIdentifier}/associations", 200] }, () => CreateDataIntegrationAssociationRequest$, () => CreateDataIntegrationAssociationResponse$
|
|
848
|
+
];
|
|
849
|
+
var CreateEventIntegration$ = [9, n0, _CEI,
|
|
850
|
+
{ [_h]: ["POST", "/eventIntegrations", 200] }, () => CreateEventIntegrationRequest$, () => CreateEventIntegrationResponse$
|
|
851
|
+
];
|
|
852
|
+
var DeleteApplication$ = [9, n0, _DA,
|
|
853
|
+
{ [_h]: ["DELETE", "/applications/{Arn}", 200] }, () => DeleteApplicationRequest$, () => DeleteApplicationResponse$
|
|
854
|
+
];
|
|
855
|
+
var DeleteDataIntegration$ = [9, n0, _DDI,
|
|
856
|
+
{ [_h]: ["DELETE", "/dataIntegrations/{DataIntegrationIdentifier}", 200] }, () => DeleteDataIntegrationRequest$, () => DeleteDataIntegrationResponse$
|
|
857
|
+
];
|
|
858
|
+
var DeleteEventIntegration$ = [9, n0, _DEI,
|
|
859
|
+
{ [_h]: ["DELETE", "/eventIntegrations/{Name}", 200] }, () => DeleteEventIntegrationRequest$, () => DeleteEventIntegrationResponse$
|
|
860
|
+
];
|
|
861
|
+
var GetApplication$ = [9, n0, _GA,
|
|
862
|
+
{ [_h]: ["GET", "/applications/{Arn}", 200] }, () => GetApplicationRequest$, () => GetApplicationResponse$
|
|
863
|
+
];
|
|
864
|
+
var GetDataIntegration$ = [9, n0, _GDI,
|
|
865
|
+
{ [_h]: ["GET", "/dataIntegrations/{Identifier}", 200] }, () => GetDataIntegrationRequest$, () => GetDataIntegrationResponse$
|
|
866
|
+
];
|
|
867
|
+
var GetEventIntegration$ = [9, n0, _GEI,
|
|
868
|
+
{ [_h]: ["GET", "/eventIntegrations/{Name}", 200] }, () => GetEventIntegrationRequest$, () => GetEventIntegrationResponse$
|
|
869
|
+
];
|
|
870
|
+
var ListApplicationAssociations$ = [9, n0, _LAA,
|
|
871
|
+
{ [_h]: ["GET", "/applications/{ApplicationId}/associations", 200] }, () => ListApplicationAssociationsRequest$, () => ListApplicationAssociationsResponse$
|
|
872
|
+
];
|
|
873
|
+
var ListApplications$ = [9, n0, _LA,
|
|
874
|
+
{ [_h]: ["GET", "/applications", 200] }, () => ListApplicationsRequest$, () => ListApplicationsResponse$
|
|
875
|
+
];
|
|
876
|
+
var ListDataIntegrationAssociations$ = [9, n0, _LDIA,
|
|
877
|
+
{ [_h]: ["GET", "/dataIntegrations/{DataIntegrationIdentifier}/associations", 200] }, () => ListDataIntegrationAssociationsRequest$, () => ListDataIntegrationAssociationsResponse$
|
|
878
|
+
];
|
|
879
|
+
var ListDataIntegrations$ = [9, n0, _LDI,
|
|
880
|
+
{ [_h]: ["GET", "/dataIntegrations", 200] }, () => ListDataIntegrationsRequest$, () => ListDataIntegrationsResponse$
|
|
881
|
+
];
|
|
882
|
+
var ListEventIntegrationAssociations$ = [9, n0, _LEIA,
|
|
883
|
+
{ [_h]: ["GET", "/eventIntegrations/{EventIntegrationName}/associations", 200] }, () => ListEventIntegrationAssociationsRequest$, () => ListEventIntegrationAssociationsResponse$
|
|
884
|
+
];
|
|
885
|
+
var ListEventIntegrations$ = [9, n0, _LEI,
|
|
886
|
+
{ [_h]: ["GET", "/eventIntegrations", 200] }, () => ListEventIntegrationsRequest$, () => ListEventIntegrationsResponse$
|
|
887
|
+
];
|
|
888
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
889
|
+
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
890
|
+
];
|
|
891
|
+
var TagResource$ = [9, n0, _TR,
|
|
892
|
+
{ [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
893
|
+
];
|
|
894
|
+
var UntagResource$ = [9, n0, _UR,
|
|
895
|
+
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
896
|
+
];
|
|
897
|
+
var UpdateApplication$ = [9, n0, _UA,
|
|
898
|
+
{ [_h]: ["PATCH", "/applications/{Arn}", 200] }, () => UpdateApplicationRequest$, () => UpdateApplicationResponse$
|
|
899
|
+
];
|
|
900
|
+
var UpdateDataIntegration$ = [9, n0, _UDI,
|
|
901
|
+
{ [_h]: ["PATCH", "/dataIntegrations/{Identifier}", 200] }, () => UpdateDataIntegrationRequest$, () => UpdateDataIntegrationResponse$
|
|
902
|
+
];
|
|
903
|
+
var UpdateDataIntegrationAssociation$ = [9, n0, _UDIA,
|
|
904
|
+
{ [_h]: ["PATCH", "/dataIntegrations/{DataIntegrationIdentifier}/associations/{DataIntegrationAssociationIdentifier}", 200] }, () => UpdateDataIntegrationAssociationRequest$, () => UpdateDataIntegrationAssociationResponse$
|
|
905
|
+
];
|
|
906
|
+
var UpdateEventIntegration$ = [9, n0, _UEI,
|
|
907
|
+
{ [_h]: ["PATCH", "/eventIntegrations/{Name}", 200] }, () => UpdateEventIntegrationRequest$, () => UpdateEventIntegrationResponse$
|
|
908
|
+
];
|
|
909
|
+
|
|
910
|
+
const getRuntimeConfig$1 = (config) => {
|
|
911
|
+
return {
|
|
912
|
+
apiVersion: "2020-07-29",
|
|
913
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
914
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
915
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
916
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
917
|
+
extensions: config?.extensions ?? [],
|
|
918
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultAppIntegrationsHttpAuthSchemeProvider,
|
|
919
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
920
|
+
{
|
|
921
|
+
schemeId: "aws.auth#sigv4",
|
|
922
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
923
|
+
signer: new AwsSdkSigV4Signer(),
|
|
924
|
+
},
|
|
925
|
+
],
|
|
926
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
927
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
928
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
929
|
+
defaultNamespace: "com.amazonaws.appintegrations",
|
|
930
|
+
errorTypeRegistries,
|
|
931
|
+
version: "2020-07-29",
|
|
932
|
+
serviceTarget: "AmazonAppIntegrationService",
|
|
933
|
+
},
|
|
934
|
+
serviceId: config?.serviceId ?? "AppIntegrations",
|
|
935
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
936
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
937
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
938
|
+
};
|
|
939
|
+
};
|
|
940
|
+
|
|
941
|
+
const getRuntimeConfig = (config) => {
|
|
942
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
943
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
944
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
945
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
946
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
947
|
+
const loaderConfig = {
|
|
948
|
+
profile: config?.profile,
|
|
949
|
+
logger: clientSharedValues.logger,
|
|
950
|
+
};
|
|
951
|
+
return {
|
|
952
|
+
...clientSharedValues,
|
|
953
|
+
...config,
|
|
954
|
+
runtime: "node",
|
|
955
|
+
defaultsMode,
|
|
956
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
957
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
958
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
959
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
960
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
961
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
962
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
963
|
+
retryMode: config?.retryMode ??
|
|
964
|
+
loadConfig({
|
|
965
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
966
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
967
|
+
}, config),
|
|
968
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
969
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
970
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
971
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
972
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
973
|
+
};
|
|
974
|
+
};
|
|
975
|
+
|
|
34
976
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
977
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
978
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -455,35 +1397,142 @@ const ExecutionStatus = {
|
|
|
455
1397
|
IN_PROGRESS: "IN_PROGRESS",
|
|
456
1398
|
};
|
|
457
1399
|
|
|
1400
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1401
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
458
1402
|
exports.AppIntegrations = AppIntegrations;
|
|
459
1403
|
exports.AppIntegrationsClient = AppIntegrationsClient;
|
|
1404
|
+
exports.AppIntegrationsServiceException = AppIntegrationsServiceException;
|
|
1405
|
+
exports.AppIntegrationsServiceException$ = AppIntegrationsServiceException$;
|
|
1406
|
+
exports.ApplicationAssociationSummary$ = ApplicationAssociationSummary$;
|
|
1407
|
+
exports.ApplicationConfig$ = ApplicationConfig$;
|
|
1408
|
+
exports.ApplicationSourceConfig$ = ApplicationSourceConfig$;
|
|
1409
|
+
exports.ApplicationSummary$ = ApplicationSummary$;
|
|
460
1410
|
exports.ApplicationType = ApplicationType;
|
|
1411
|
+
exports.ContactHandling$ = ContactHandling$;
|
|
461
1412
|
exports.ContactHandlingScope = ContactHandlingScope;
|
|
1413
|
+
exports.CreateApplication$ = CreateApplication$;
|
|
462
1414
|
exports.CreateApplicationCommand = CreateApplicationCommand;
|
|
1415
|
+
exports.CreateApplicationRequest$ = CreateApplicationRequest$;
|
|
1416
|
+
exports.CreateApplicationResponse$ = CreateApplicationResponse$;
|
|
1417
|
+
exports.CreateDataIntegration$ = CreateDataIntegration$;
|
|
1418
|
+
exports.CreateDataIntegrationAssociation$ = CreateDataIntegrationAssociation$;
|
|
463
1419
|
exports.CreateDataIntegrationAssociationCommand = CreateDataIntegrationAssociationCommand;
|
|
1420
|
+
exports.CreateDataIntegrationAssociationRequest$ = CreateDataIntegrationAssociationRequest$;
|
|
1421
|
+
exports.CreateDataIntegrationAssociationResponse$ = CreateDataIntegrationAssociationResponse$;
|
|
464
1422
|
exports.CreateDataIntegrationCommand = CreateDataIntegrationCommand;
|
|
1423
|
+
exports.CreateDataIntegrationRequest$ = CreateDataIntegrationRequest$;
|
|
1424
|
+
exports.CreateDataIntegrationResponse$ = CreateDataIntegrationResponse$;
|
|
1425
|
+
exports.CreateEventIntegration$ = CreateEventIntegration$;
|
|
465
1426
|
exports.CreateEventIntegrationCommand = CreateEventIntegrationCommand;
|
|
1427
|
+
exports.CreateEventIntegrationRequest$ = CreateEventIntegrationRequest$;
|
|
1428
|
+
exports.CreateEventIntegrationResponse$ = CreateEventIntegrationResponse$;
|
|
1429
|
+
exports.DataIntegrationAssociationSummary$ = DataIntegrationAssociationSummary$;
|
|
1430
|
+
exports.DataIntegrationSummary$ = DataIntegrationSummary$;
|
|
1431
|
+
exports.DeleteApplication$ = DeleteApplication$;
|
|
466
1432
|
exports.DeleteApplicationCommand = DeleteApplicationCommand;
|
|
1433
|
+
exports.DeleteApplicationRequest$ = DeleteApplicationRequest$;
|
|
1434
|
+
exports.DeleteApplicationResponse$ = DeleteApplicationResponse$;
|
|
1435
|
+
exports.DeleteDataIntegration$ = DeleteDataIntegration$;
|
|
467
1436
|
exports.DeleteDataIntegrationCommand = DeleteDataIntegrationCommand;
|
|
1437
|
+
exports.DeleteDataIntegrationRequest$ = DeleteDataIntegrationRequest$;
|
|
1438
|
+
exports.DeleteDataIntegrationResponse$ = DeleteDataIntegrationResponse$;
|
|
1439
|
+
exports.DeleteEventIntegration$ = DeleteEventIntegration$;
|
|
468
1440
|
exports.DeleteEventIntegrationCommand = DeleteEventIntegrationCommand;
|
|
1441
|
+
exports.DeleteEventIntegrationRequest$ = DeleteEventIntegrationRequest$;
|
|
1442
|
+
exports.DeleteEventIntegrationResponse$ = DeleteEventIntegrationResponse$;
|
|
1443
|
+
exports.DuplicateResourceException = DuplicateResourceException;
|
|
1444
|
+
exports.DuplicateResourceException$ = DuplicateResourceException$;
|
|
1445
|
+
exports.EventFilter$ = EventFilter$;
|
|
1446
|
+
exports.EventIntegration$ = EventIntegration$;
|
|
1447
|
+
exports.EventIntegrationAssociation$ = EventIntegrationAssociation$;
|
|
1448
|
+
exports.ExecutionConfiguration$ = ExecutionConfiguration$;
|
|
469
1449
|
exports.ExecutionMode = ExecutionMode;
|
|
470
1450
|
exports.ExecutionStatus = ExecutionStatus;
|
|
1451
|
+
exports.ExternalUrlConfig$ = ExternalUrlConfig$;
|
|
1452
|
+
exports.FileConfiguration$ = FileConfiguration$;
|
|
1453
|
+
exports.GetApplication$ = GetApplication$;
|
|
471
1454
|
exports.GetApplicationCommand = GetApplicationCommand;
|
|
1455
|
+
exports.GetApplicationRequest$ = GetApplicationRequest$;
|
|
1456
|
+
exports.GetApplicationResponse$ = GetApplicationResponse$;
|
|
1457
|
+
exports.GetDataIntegration$ = GetDataIntegration$;
|
|
472
1458
|
exports.GetDataIntegrationCommand = GetDataIntegrationCommand;
|
|
1459
|
+
exports.GetDataIntegrationRequest$ = GetDataIntegrationRequest$;
|
|
1460
|
+
exports.GetDataIntegrationResponse$ = GetDataIntegrationResponse$;
|
|
1461
|
+
exports.GetEventIntegration$ = GetEventIntegration$;
|
|
473
1462
|
exports.GetEventIntegrationCommand = GetEventIntegrationCommand;
|
|
1463
|
+
exports.GetEventIntegrationRequest$ = GetEventIntegrationRequest$;
|
|
1464
|
+
exports.GetEventIntegrationResponse$ = GetEventIntegrationResponse$;
|
|
1465
|
+
exports.IframeConfig$ = IframeConfig$;
|
|
1466
|
+
exports.InternalServiceError = InternalServiceError;
|
|
1467
|
+
exports.InternalServiceError$ = InternalServiceError$;
|
|
1468
|
+
exports.InvalidRequestException = InvalidRequestException;
|
|
1469
|
+
exports.InvalidRequestException$ = InvalidRequestException$;
|
|
1470
|
+
exports.LastExecutionStatus$ = LastExecutionStatus$;
|
|
1471
|
+
exports.ListApplicationAssociations$ = ListApplicationAssociations$;
|
|
474
1472
|
exports.ListApplicationAssociationsCommand = ListApplicationAssociationsCommand;
|
|
1473
|
+
exports.ListApplicationAssociationsRequest$ = ListApplicationAssociationsRequest$;
|
|
1474
|
+
exports.ListApplicationAssociationsResponse$ = ListApplicationAssociationsResponse$;
|
|
1475
|
+
exports.ListApplications$ = ListApplications$;
|
|
475
1476
|
exports.ListApplicationsCommand = ListApplicationsCommand;
|
|
1477
|
+
exports.ListApplicationsRequest$ = ListApplicationsRequest$;
|
|
1478
|
+
exports.ListApplicationsResponse$ = ListApplicationsResponse$;
|
|
1479
|
+
exports.ListDataIntegrationAssociations$ = ListDataIntegrationAssociations$;
|
|
476
1480
|
exports.ListDataIntegrationAssociationsCommand = ListDataIntegrationAssociationsCommand;
|
|
1481
|
+
exports.ListDataIntegrationAssociationsRequest$ = ListDataIntegrationAssociationsRequest$;
|
|
1482
|
+
exports.ListDataIntegrationAssociationsResponse$ = ListDataIntegrationAssociationsResponse$;
|
|
1483
|
+
exports.ListDataIntegrations$ = ListDataIntegrations$;
|
|
477
1484
|
exports.ListDataIntegrationsCommand = ListDataIntegrationsCommand;
|
|
1485
|
+
exports.ListDataIntegrationsRequest$ = ListDataIntegrationsRequest$;
|
|
1486
|
+
exports.ListDataIntegrationsResponse$ = ListDataIntegrationsResponse$;
|
|
1487
|
+
exports.ListEventIntegrationAssociations$ = ListEventIntegrationAssociations$;
|
|
478
1488
|
exports.ListEventIntegrationAssociationsCommand = ListEventIntegrationAssociationsCommand;
|
|
1489
|
+
exports.ListEventIntegrationAssociationsRequest$ = ListEventIntegrationAssociationsRequest$;
|
|
1490
|
+
exports.ListEventIntegrationAssociationsResponse$ = ListEventIntegrationAssociationsResponse$;
|
|
1491
|
+
exports.ListEventIntegrations$ = ListEventIntegrations$;
|
|
479
1492
|
exports.ListEventIntegrationsCommand = ListEventIntegrationsCommand;
|
|
1493
|
+
exports.ListEventIntegrationsRequest$ = ListEventIntegrationsRequest$;
|
|
1494
|
+
exports.ListEventIntegrationsResponse$ = ListEventIntegrationsResponse$;
|
|
1495
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
480
1496
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1497
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1498
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1499
|
+
exports.OnDemandConfiguration$ = OnDemandConfiguration$;
|
|
1500
|
+
exports.Publication$ = Publication$;
|
|
1501
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1502
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1503
|
+
exports.ResourceQuotaExceededException = ResourceQuotaExceededException;
|
|
1504
|
+
exports.ResourceQuotaExceededException$ = ResourceQuotaExceededException$;
|
|
1505
|
+
exports.ScheduleConfiguration$ = ScheduleConfiguration$;
|
|
1506
|
+
exports.Subscription$ = Subscription$;
|
|
1507
|
+
exports.TagResource$ = TagResource$;
|
|
481
1508
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1509
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1510
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1511
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1512
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1513
|
+
exports.UnsupportedOperationException = UnsupportedOperationException;
|
|
1514
|
+
exports.UnsupportedOperationException$ = UnsupportedOperationException$;
|
|
1515
|
+
exports.UntagResource$ = UntagResource$;
|
|
482
1516
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1517
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1518
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1519
|
+
exports.UpdateApplication$ = UpdateApplication$;
|
|
483
1520
|
exports.UpdateApplicationCommand = UpdateApplicationCommand;
|
|
1521
|
+
exports.UpdateApplicationRequest$ = UpdateApplicationRequest$;
|
|
1522
|
+
exports.UpdateApplicationResponse$ = UpdateApplicationResponse$;
|
|
1523
|
+
exports.UpdateDataIntegration$ = UpdateDataIntegration$;
|
|
1524
|
+
exports.UpdateDataIntegrationAssociation$ = UpdateDataIntegrationAssociation$;
|
|
484
1525
|
exports.UpdateDataIntegrationAssociationCommand = UpdateDataIntegrationAssociationCommand;
|
|
1526
|
+
exports.UpdateDataIntegrationAssociationRequest$ = UpdateDataIntegrationAssociationRequest$;
|
|
1527
|
+
exports.UpdateDataIntegrationAssociationResponse$ = UpdateDataIntegrationAssociationResponse$;
|
|
485
1528
|
exports.UpdateDataIntegrationCommand = UpdateDataIntegrationCommand;
|
|
1529
|
+
exports.UpdateDataIntegrationRequest$ = UpdateDataIntegrationRequest$;
|
|
1530
|
+
exports.UpdateDataIntegrationResponse$ = UpdateDataIntegrationResponse$;
|
|
1531
|
+
exports.UpdateEventIntegration$ = UpdateEventIntegration$;
|
|
486
1532
|
exports.UpdateEventIntegrationCommand = UpdateEventIntegrationCommand;
|
|
1533
|
+
exports.UpdateEventIntegrationRequest$ = UpdateEventIntegrationRequest$;
|
|
1534
|
+
exports.UpdateEventIntegrationResponse$ = UpdateEventIntegrationResponse$;
|
|
1535
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
487
1536
|
exports.paginateListApplicationAssociations = paginateListApplicationAssociations;
|
|
488
1537
|
exports.paginateListApplications = paginateListApplications;
|
|
489
1538
|
exports.paginateListDataIntegrationAssociations = paginateListDataIntegrationAssociations;
|