@aws-sdk/client-kinesis-analytics-v2 3.986.0 → 3.988.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 +52 -2140
- package/dist-cjs/models/KinesisAnalyticsV2ServiceException.js +12 -0
- package/dist-cjs/models/errors.js +201 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1684 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +93 -87
- package/dist-types/schemas/schemas_0.d.ts +21 -14
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +16 -14
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var KinesisAnalyticsV2ServiceException = require('./models/KinesisAnalyticsV2ServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1856 +113,6 @@ class KinesisAnalyticsV2Client extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class KinesisAnalyticsV2ServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, KinesisAnalyticsV2ServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class ConcurrentModificationException extends KinesisAnalyticsV2ServiceException {
|
|
121
|
-
name = "ConcurrentModificationException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
Message;
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "ConcurrentModificationException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
131
|
-
this.Message = opts.Message;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
class InvalidApplicationConfigurationException extends KinesisAnalyticsV2ServiceException {
|
|
135
|
-
name = "InvalidApplicationConfigurationException";
|
|
136
|
-
$fault = "client";
|
|
137
|
-
Message;
|
|
138
|
-
constructor(opts) {
|
|
139
|
-
super({
|
|
140
|
-
name: "InvalidApplicationConfigurationException",
|
|
141
|
-
$fault: "client",
|
|
142
|
-
...opts,
|
|
143
|
-
});
|
|
144
|
-
Object.setPrototypeOf(this, InvalidApplicationConfigurationException.prototype);
|
|
145
|
-
this.Message = opts.Message;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
class InvalidArgumentException extends KinesisAnalyticsV2ServiceException {
|
|
149
|
-
name = "InvalidArgumentException";
|
|
150
|
-
$fault = "client";
|
|
151
|
-
Message;
|
|
152
|
-
constructor(opts) {
|
|
153
|
-
super({
|
|
154
|
-
name: "InvalidArgumentException",
|
|
155
|
-
$fault: "client",
|
|
156
|
-
...opts,
|
|
157
|
-
});
|
|
158
|
-
Object.setPrototypeOf(this, InvalidArgumentException.prototype);
|
|
159
|
-
this.Message = opts.Message;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
class InvalidRequestException extends KinesisAnalyticsV2ServiceException {
|
|
163
|
-
name = "InvalidRequestException";
|
|
164
|
-
$fault = "client";
|
|
165
|
-
Message;
|
|
166
|
-
constructor(opts) {
|
|
167
|
-
super({
|
|
168
|
-
name: "InvalidRequestException",
|
|
169
|
-
$fault: "client",
|
|
170
|
-
...opts,
|
|
171
|
-
});
|
|
172
|
-
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
173
|
-
this.Message = opts.Message;
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
class ResourceInUseException extends KinesisAnalyticsV2ServiceException {
|
|
177
|
-
name = "ResourceInUseException";
|
|
178
|
-
$fault = "client";
|
|
179
|
-
Message;
|
|
180
|
-
constructor(opts) {
|
|
181
|
-
super({
|
|
182
|
-
name: "ResourceInUseException",
|
|
183
|
-
$fault: "client",
|
|
184
|
-
...opts,
|
|
185
|
-
});
|
|
186
|
-
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
187
|
-
this.Message = opts.Message;
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
class ResourceNotFoundException extends KinesisAnalyticsV2ServiceException {
|
|
191
|
-
name = "ResourceNotFoundException";
|
|
192
|
-
$fault = "client";
|
|
193
|
-
Message;
|
|
194
|
-
constructor(opts) {
|
|
195
|
-
super({
|
|
196
|
-
name: "ResourceNotFoundException",
|
|
197
|
-
$fault: "client",
|
|
198
|
-
...opts,
|
|
199
|
-
});
|
|
200
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
201
|
-
this.Message = opts.Message;
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
class CodeValidationException extends KinesisAnalyticsV2ServiceException {
|
|
205
|
-
name = "CodeValidationException";
|
|
206
|
-
$fault = "client";
|
|
207
|
-
Message;
|
|
208
|
-
constructor(opts) {
|
|
209
|
-
super({
|
|
210
|
-
name: "CodeValidationException",
|
|
211
|
-
$fault: "client",
|
|
212
|
-
...opts,
|
|
213
|
-
});
|
|
214
|
-
Object.setPrototypeOf(this, CodeValidationException.prototype);
|
|
215
|
-
this.Message = opts.Message;
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
class LimitExceededException extends KinesisAnalyticsV2ServiceException {
|
|
219
|
-
name = "LimitExceededException";
|
|
220
|
-
$fault = "client";
|
|
221
|
-
Message;
|
|
222
|
-
constructor(opts) {
|
|
223
|
-
super({
|
|
224
|
-
name: "LimitExceededException",
|
|
225
|
-
$fault: "client",
|
|
226
|
-
...opts,
|
|
227
|
-
});
|
|
228
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
229
|
-
this.Message = opts.Message;
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
class TooManyTagsException extends KinesisAnalyticsV2ServiceException {
|
|
233
|
-
name = "TooManyTagsException";
|
|
234
|
-
$fault = "client";
|
|
235
|
-
constructor(opts) {
|
|
236
|
-
super({
|
|
237
|
-
name: "TooManyTagsException",
|
|
238
|
-
$fault: "client",
|
|
239
|
-
...opts,
|
|
240
|
-
});
|
|
241
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
242
|
-
}
|
|
243
|
-
}
|
|
244
|
-
class UnsupportedOperationException extends KinesisAnalyticsV2ServiceException {
|
|
245
|
-
name = "UnsupportedOperationException";
|
|
246
|
-
$fault = "client";
|
|
247
|
-
Message;
|
|
248
|
-
constructor(opts) {
|
|
249
|
-
super({
|
|
250
|
-
name: "UnsupportedOperationException",
|
|
251
|
-
$fault: "client",
|
|
252
|
-
...opts,
|
|
253
|
-
});
|
|
254
|
-
Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
|
|
255
|
-
this.Message = opts.Message;
|
|
256
|
-
}
|
|
257
|
-
}
|
|
258
|
-
class ResourceProvisionedThroughputExceededException extends KinesisAnalyticsV2ServiceException {
|
|
259
|
-
name = "ResourceProvisionedThroughputExceededException";
|
|
260
|
-
$fault = "client";
|
|
261
|
-
Message;
|
|
262
|
-
constructor(opts) {
|
|
263
|
-
super({
|
|
264
|
-
name: "ResourceProvisionedThroughputExceededException",
|
|
265
|
-
$fault: "client",
|
|
266
|
-
...opts,
|
|
267
|
-
});
|
|
268
|
-
Object.setPrototypeOf(this, ResourceProvisionedThroughputExceededException.prototype);
|
|
269
|
-
this.Message = opts.Message;
|
|
270
|
-
}
|
|
271
|
-
}
|
|
272
|
-
class ServiceUnavailableException extends KinesisAnalyticsV2ServiceException {
|
|
273
|
-
name = "ServiceUnavailableException";
|
|
274
|
-
$fault = "server";
|
|
275
|
-
Message;
|
|
276
|
-
constructor(opts) {
|
|
277
|
-
super({
|
|
278
|
-
name: "ServiceUnavailableException",
|
|
279
|
-
$fault: "server",
|
|
280
|
-
...opts,
|
|
281
|
-
});
|
|
282
|
-
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
283
|
-
this.Message = opts.Message;
|
|
284
|
-
}
|
|
285
|
-
}
|
|
286
|
-
class UnableToDetectSchemaException extends KinesisAnalyticsV2ServiceException {
|
|
287
|
-
name = "UnableToDetectSchemaException";
|
|
288
|
-
$fault = "client";
|
|
289
|
-
Message;
|
|
290
|
-
RawInputRecords;
|
|
291
|
-
ProcessedInputRecords;
|
|
292
|
-
constructor(opts) {
|
|
293
|
-
super({
|
|
294
|
-
name: "UnableToDetectSchemaException",
|
|
295
|
-
$fault: "client",
|
|
296
|
-
...opts,
|
|
297
|
-
});
|
|
298
|
-
Object.setPrototypeOf(this, UnableToDetectSchemaException.prototype);
|
|
299
|
-
this.Message = opts.Message;
|
|
300
|
-
this.RawInputRecords = opts.RawInputRecords;
|
|
301
|
-
this.ProcessedInputRecords = opts.ProcessedInputRecords;
|
|
302
|
-
}
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
const _AACWLO = "AddApplicationCloudWatchLoggingOption";
|
|
306
|
-
const _AACWLOR = "AddApplicationCloudWatchLoggingOptionRequest";
|
|
307
|
-
const _AACWLORd = "AddApplicationCloudWatchLoggingOptionResponse";
|
|
308
|
-
const _AAI = "AddApplicationInput";
|
|
309
|
-
const _AAIPC = "AddApplicationInputProcessingConfiguration";
|
|
310
|
-
const _AAIPCR = "AddApplicationInputProcessingConfigurationRequest";
|
|
311
|
-
const _AAIPCRd = "AddApplicationInputProcessingConfigurationResponse";
|
|
312
|
-
const _AAIR = "AddApplicationInputRequest";
|
|
313
|
-
const _AAIRd = "AddApplicationInputResponse";
|
|
314
|
-
const _AAO = "AddApplicationOutput";
|
|
315
|
-
const _AAOR = "AddApplicationOutputRequest";
|
|
316
|
-
const _AAORd = "AddApplicationOutputResponse";
|
|
317
|
-
const _AARDS = "AddApplicationReferenceDataSource";
|
|
318
|
-
const _AARDSR = "AddApplicationReferenceDataSourceRequest";
|
|
319
|
-
const _AARDSRd = "AddApplicationReferenceDataSourceResponse";
|
|
320
|
-
const _AARN = "ApplicationARN";
|
|
321
|
-
const _AAVC = "AddApplicationVpcConfiguration";
|
|
322
|
-
const _AAVCR = "AddApplicationVpcConfigurationRequest";
|
|
323
|
-
const _AAVCRd = "AddApplicationVpcConfigurationResponse";
|
|
324
|
-
const _AC = "ApplicationConfiguration";
|
|
325
|
-
const _ACC = "ApplicationCodeConfiguration";
|
|
326
|
-
const _ACCD = "ApplicationCodeConfigurationDescription";
|
|
327
|
-
const _ACCU = "ApplicationCodeConfigurationUpdate";
|
|
328
|
-
const _ACD = "ApplicationConfigurationDescription";
|
|
329
|
-
const _ACU = "ApplicationConfigurationUpdate";
|
|
330
|
-
const _AD = "ApplicationDetail";
|
|
331
|
-
const _ADp = "ApplicationDescription";
|
|
332
|
-
const _AEC = "ApplicationEncryptionConfiguration";
|
|
333
|
-
const _AECD = "ApplicationEncryptionConfigurationDescription";
|
|
334
|
-
const _AECU = "ApplicationEncryptionConfigurationUpdate";
|
|
335
|
-
const _AI = "ArtifactId";
|
|
336
|
-
const _AM = "ApplicationMode";
|
|
337
|
-
const _AMCD = "ApplicationMaintenanceConfigurationDescription";
|
|
338
|
-
const _AMCU = "ApplicationMaintenanceConfigurationUpdate";
|
|
339
|
-
const _AMWET = "ApplicationMaintenanceWindowEndTime";
|
|
340
|
-
const _AMWST = "ApplicationMaintenanceWindowStartTime";
|
|
341
|
-
const _AMWSTU = "ApplicationMaintenanceWindowStartTimeUpdate";
|
|
342
|
-
const _AN = "ApplicationName";
|
|
343
|
-
const _ANRS = "AllowNonRestoredState";
|
|
344
|
-
const _AOI = "ApplicationOperationInfo";
|
|
345
|
-
const _AOID = "ApplicationOperationInfoDetails";
|
|
346
|
-
const _AOIL = "ApplicationOperationInfoList";
|
|
347
|
-
const _ARC = "ApplicationRestoreConfiguration";
|
|
348
|
-
const _ARCD = "ApplicationRestoreConfigurationDescription";
|
|
349
|
-
const _ART = "ApplicationRestoreType";
|
|
350
|
-
const _AS = "ApplicationStatus";
|
|
351
|
-
const _ASC = "ApplicationSnapshotConfiguration";
|
|
352
|
-
const _ASCD = "ApplicationSnapshotConfigurationDescription";
|
|
353
|
-
const _ASCU = "ApplicationSnapshotConfigurationUpdate";
|
|
354
|
-
const _ASE = "AutoScalingEnabled";
|
|
355
|
-
const _ASEU = "AutoScalingEnabledUpdate";
|
|
356
|
-
const _ASRC = "ApplicationSystemRollbackConfiguration";
|
|
357
|
-
const _ASRCD = "ApplicationSystemRollbackConfigurationDescription";
|
|
358
|
-
const _ASRCU = "ApplicationSystemRollbackConfigurationUpdate";
|
|
359
|
-
const _ASp = "ApplicationSummary";
|
|
360
|
-
const _ASpp = "ApplicationSummaries";
|
|
361
|
-
const _AT = "ArtifactType";
|
|
362
|
-
const _AU = "AuthorizedUrl";
|
|
363
|
-
const _AVCD = "ApplicationVersionChangeDetails";
|
|
364
|
-
const _AVCT = "ApplicationVersionCreateTimestamp";
|
|
365
|
-
const _AVD = "ApplicationVersionDetail";
|
|
366
|
-
const _AVI = "ApplicationVersionId";
|
|
367
|
-
const _AVRBF = "ApplicationVersionRolledBackFrom";
|
|
368
|
-
const _AVRBT = "ApplicationVersionRolledBackTo";
|
|
369
|
-
const _AVS = "ApplicationVersionSummary";
|
|
370
|
-
const _AVSp = "ApplicationVersionSummaries";
|
|
371
|
-
const _AVUF = "ApplicationVersionUpdatedFrom";
|
|
372
|
-
const _AVUT = "ApplicationVersionUpdatedTo";
|
|
373
|
-
const _BARN = "BucketARN";
|
|
374
|
-
const _BARNU = "BucketARNUpdate";
|
|
375
|
-
const _BP = "BasePath";
|
|
376
|
-
const _BPU = "BasePathUpdate";
|
|
377
|
-
const _C = "Count";
|
|
378
|
-
const _CA = "CreateApplication";
|
|
379
|
-
const _CAC = "CustomArtifactConfiguration";
|
|
380
|
-
const _CACD = "CustomArtifactConfigurationDescription";
|
|
381
|
-
const _CACDL = "CustomArtifactsConfigurationDescriptionList";
|
|
382
|
-
const _CACDu = "CustomArtifactsConfigurationDescription";
|
|
383
|
-
const _CACL = "CustomArtifactsConfigurationList";
|
|
384
|
-
const _CACU = "CustomArtifactsConfigurationUpdate";
|
|
385
|
-
const _CACu = "CustomArtifactsConfiguration";
|
|
386
|
-
const _CAPU = "CreateApplicationPresignedUrl";
|
|
387
|
-
const _CAPUR = "CreateApplicationPresignedUrlRequest";
|
|
388
|
-
const _CAPURr = "CreateApplicationPresignedUrlResponse";
|
|
389
|
-
const _CAR = "CreateApplicationRequest";
|
|
390
|
-
const _CARr = "CreateApplicationResponse";
|
|
391
|
-
const _CAS = "CreateApplicationSnapshot";
|
|
392
|
-
const _CASR = "CreateApplicationSnapshotRequest";
|
|
393
|
-
const _CASRr = "CreateApplicationSnapshotResponse";
|
|
394
|
-
const _CAVI = "CurrentApplicationVersionId";
|
|
395
|
-
const _CC = "CodeContent";
|
|
396
|
-
const _CCD = "CodeContentDescription";
|
|
397
|
-
const _CCDa = "CatalogConfigurationDescription";
|
|
398
|
-
const _CCDh = "CheckpointConfigurationDescription";
|
|
399
|
-
const _CCT = "CodeContentType";
|
|
400
|
-
const _CCTU = "CodeContentTypeUpdate";
|
|
401
|
-
const _CCU = "CodeContentUpdate";
|
|
402
|
-
const _CCUa = "CatalogConfigurationUpdate";
|
|
403
|
-
const _CCUh = "CheckpointConfigurationUpdate";
|
|
404
|
-
const _CCa = "CatalogConfiguration";
|
|
405
|
-
const _CCh = "CheckpointConfiguration";
|
|
406
|
-
const _CE = "CheckpointingEnabled";
|
|
407
|
-
const _CEU = "CheckpointingEnabledUpdate";
|
|
408
|
-
const _CI = "CheckpointInterval";
|
|
409
|
-
const _CIU = "CheckpointIntervalUpdate";
|
|
410
|
-
const _CMD = "CodeMD5";
|
|
411
|
-
const _CME = "ConcurrentModificationException";
|
|
412
|
-
const _CP = "CurrentParallelism";
|
|
413
|
-
const _CS = "CodeSize";
|
|
414
|
-
const _CSVMP = "CSVMappingParameters";
|
|
415
|
-
const _CT = "ConditionalToken";
|
|
416
|
-
const _CTU = "ConfigurationTypeUpdate";
|
|
417
|
-
const _CTo = "ConfigurationType";
|
|
418
|
-
const _CTr = "CreateTimestamp";
|
|
419
|
-
const _CU = "CountUpdate";
|
|
420
|
-
const _CVE = "CodeValidationException";
|
|
421
|
-
const _CWLO = "CloudWatchLoggingOption";
|
|
422
|
-
const _CWLOD = "CloudWatchLoggingOptionDescriptions";
|
|
423
|
-
const _CWLODl = "CloudWatchLoggingOptionDescription";
|
|
424
|
-
const _CWLOI = "CloudWatchLoggingOptionId";
|
|
425
|
-
const _CWLOU = "CloudWatchLoggingOptionUpdate";
|
|
426
|
-
const _CWLOUl = "CloudWatchLoggingOptionUpdates";
|
|
427
|
-
const _CWLOl = "CloudWatchLoggingOptions";
|
|
428
|
-
const _DA = "DeleteApplication";
|
|
429
|
-
const _DAAC = "DeployAsApplicationConfiguration";
|
|
430
|
-
const _DAACD = "DeployAsApplicationConfigurationDescription";
|
|
431
|
-
const _DAACU = "DeployAsApplicationConfigurationUpdate";
|
|
432
|
-
const _DACWLO = "DeleteApplicationCloudWatchLoggingOption";
|
|
433
|
-
const _DACWLOR = "DeleteApplicationCloudWatchLoggingOptionRequest";
|
|
434
|
-
const _DACWLORe = "DeleteApplicationCloudWatchLoggingOptionResponse";
|
|
435
|
-
const _DAIPC = "DeleteApplicationInputProcessingConfiguration";
|
|
436
|
-
const _DAIPCR = "DeleteApplicationInputProcessingConfigurationRequest";
|
|
437
|
-
const _DAIPCRe = "DeleteApplicationInputProcessingConfigurationResponse";
|
|
438
|
-
const _DAO = "DeleteApplicationOutput";
|
|
439
|
-
const _DAOR = "DeleteApplicationOutputRequest";
|
|
440
|
-
const _DAORe = "DeleteApplicationOutputResponse";
|
|
441
|
-
const _DAORes = "DescribeApplicationOperationRequest";
|
|
442
|
-
const _DAOResc = "DescribeApplicationOperationResponse";
|
|
443
|
-
const _DAOe = "DescribeApplicationOperation";
|
|
444
|
-
const _DAR = "DeleteApplicationRequest";
|
|
445
|
-
const _DARDS = "DeleteApplicationReferenceDataSource";
|
|
446
|
-
const _DARDSR = "DeleteApplicationReferenceDataSourceRequest";
|
|
447
|
-
const _DARDSRe = "DeleteApplicationReferenceDataSourceResponse";
|
|
448
|
-
const _DARN = "DatabaseARN";
|
|
449
|
-
const _DARNU = "DatabaseARNUpdate";
|
|
450
|
-
const _DARe = "DeleteApplicationResponse";
|
|
451
|
-
const _DARes = "DescribeApplicationRequest";
|
|
452
|
-
const _DAResc = "DescribeApplicationResponse";
|
|
453
|
-
const _DAS = "DeleteApplicationSnapshot";
|
|
454
|
-
const _DASR = "DeleteApplicationSnapshotRequest";
|
|
455
|
-
const _DASRe = "DeleteApplicationSnapshotResponse";
|
|
456
|
-
const _DASRes = "DescribeApplicationSnapshotRequest";
|
|
457
|
-
const _DASResc = "DescribeApplicationSnapshotResponse";
|
|
458
|
-
const _DASe = "DescribeApplicationSnapshot";
|
|
459
|
-
const _DAV = "DescribeApplicationVersion";
|
|
460
|
-
const _DAVC = "DeleteApplicationVpcConfiguration";
|
|
461
|
-
const _DAVCR = "DeleteApplicationVpcConfigurationRequest";
|
|
462
|
-
const _DAVCRe = "DeleteApplicationVpcConfigurationResponse";
|
|
463
|
-
const _DAVR = "DescribeApplicationVersionRequest";
|
|
464
|
-
const _DAVRe = "DescribeApplicationVersionResponse";
|
|
465
|
-
const _DAe = "DescribeApplication";
|
|
466
|
-
const _DIS = "DiscoverInputSchema";
|
|
467
|
-
const _DISR = "DiscoverInputSchemaRequest";
|
|
468
|
-
const _DISRi = "DiscoverInputSchemaResponse";
|
|
469
|
-
const _DS = "DestinationSchema";
|
|
470
|
-
const _DSU = "DestinationSchemaUpdate";
|
|
471
|
-
const _EI = "ErrorInfo";
|
|
472
|
-
const _EP = "EnvironmentProperties";
|
|
473
|
-
const _EPD = "EnvironmentPropertyDescriptions";
|
|
474
|
-
const _EPU = "EnvironmentPropertyUpdates";
|
|
475
|
-
const _ES = "ErrorString";
|
|
476
|
-
const _ET = "EndTime";
|
|
477
|
-
const _F = "Force";
|
|
478
|
-
const _FAC = "FlinkApplicationConfiguration";
|
|
479
|
-
const _FACD = "FlinkApplicationConfigurationDescription";
|
|
480
|
-
const _FACU = "FlinkApplicationConfigurationUpdate";
|
|
481
|
-
const _FK = "FileKey";
|
|
482
|
-
const _FKU = "FileKeyUpdate";
|
|
483
|
-
const _FRC = "FlinkRunConfiguration";
|
|
484
|
-
const _FRCD = "FlinkRunConfigurationDescription";
|
|
485
|
-
const _GDCC = "GlueDataCatalogConfiguration";
|
|
486
|
-
const _GDCCD = "GlueDataCatalogConfigurationDescription";
|
|
487
|
-
const _GDCCU = "GlueDataCatalogConfigurationUpdate";
|
|
488
|
-
const _GI = "GroupId";
|
|
489
|
-
const _I = "Input";
|
|
490
|
-
const _IACE = "InvalidApplicationConfigurationException";
|
|
491
|
-
const _IAD = "IncludeAdditionalDetails";
|
|
492
|
-
const _IAE = "InvalidArgumentException";
|
|
493
|
-
const _IASN = "InAppStreamNames";
|
|
494
|
-
const _ID = "InputDescriptions";
|
|
495
|
-
const _IDn = "InputDescription";
|
|
496
|
-
const _II = "InputId";
|
|
497
|
-
const _ILP = "InputLambdaProcessor";
|
|
498
|
-
const _ILPD = "InputLambdaProcessorDescription";
|
|
499
|
-
const _ILPU = "InputLambdaProcessorUpdate";
|
|
500
|
-
const _IP = "InputParallelism";
|
|
501
|
-
const _IPC = "InputProcessingConfiguration";
|
|
502
|
-
const _IPCD = "InputProcessingConfigurationDescription";
|
|
503
|
-
const _IPCU = "InputProcessingConfigurationUpdate";
|
|
504
|
-
const _IPU = "InputParallelismUpdate";
|
|
505
|
-
const _IRE = "InvalidRequestException";
|
|
506
|
-
const _IS = "InputSchema";
|
|
507
|
-
const _ISP = "InputStartingPosition";
|
|
508
|
-
const _ISPC = "InputStartingPositionConfiguration";
|
|
509
|
-
const _ISU = "InputSchemaUpdate";
|
|
510
|
-
const _IU = "InputUpdate";
|
|
511
|
-
const _IUn = "InputUpdates";
|
|
512
|
-
const _In = "Inputs";
|
|
513
|
-
const _JPD = "JobPlanDescription";
|
|
514
|
-
const _JSONMP = "JSONMappingParameters";
|
|
515
|
-
const _K = "Key";
|
|
516
|
-
const _KFI = "KinesisFirehoseInput";
|
|
517
|
-
const _KFID = "KinesisFirehoseInputDescription";
|
|
518
|
-
const _KFIU = "KinesisFirehoseInputUpdate";
|
|
519
|
-
const _KFO = "KinesisFirehoseOutput";
|
|
520
|
-
const _KFOD = "KinesisFirehoseOutputDescription";
|
|
521
|
-
const _KFOU = "KinesisFirehoseOutputUpdate";
|
|
522
|
-
const _KI = "KeyId";
|
|
523
|
-
const _KIU = "KeyIdUpdate";
|
|
524
|
-
const _KSI = "KinesisStreamsInput";
|
|
525
|
-
const _KSID = "KinesisStreamsInputDescription";
|
|
526
|
-
const _KSIU = "KinesisStreamsInputUpdate";
|
|
527
|
-
const _KSO = "KinesisStreamsOutput";
|
|
528
|
-
const _KSOD = "KinesisStreamsOutputDescription";
|
|
529
|
-
const _KSOU = "KinesisStreamsOutputUpdate";
|
|
530
|
-
const _KT = "KeyType";
|
|
531
|
-
const _KTU = "KeyTypeUpdate";
|
|
532
|
-
const _L = "Limit";
|
|
533
|
-
const _LA = "ListApplications";
|
|
534
|
-
const _LAO = "ListApplicationOperations";
|
|
535
|
-
const _LAOR = "ListApplicationOperationsRequest";
|
|
536
|
-
const _LAORi = "ListApplicationOperationsResponse";
|
|
537
|
-
const _LAR = "ListApplicationsRequest";
|
|
538
|
-
const _LARi = "ListApplicationsResponse";
|
|
539
|
-
const _LAS = "ListApplicationSnapshots";
|
|
540
|
-
const _LASR = "ListApplicationSnapshotsRequest";
|
|
541
|
-
const _LASRi = "ListApplicationSnapshotsResponse";
|
|
542
|
-
const _LAV = "ListApplicationVersions";
|
|
543
|
-
const _LAVR = "ListApplicationVersionsRequest";
|
|
544
|
-
const _LAVRi = "ListApplicationVersionsResponse";
|
|
545
|
-
const _LEE = "LimitExceededException";
|
|
546
|
-
const _LL = "LogLevel";
|
|
547
|
-
const _LLU = "LogLevelUpdate";
|
|
548
|
-
const _LO = "LambdaOutput";
|
|
549
|
-
const _LOD = "LambdaOutputDescription";
|
|
550
|
-
const _LOU = "LambdaOutputUpdate";
|
|
551
|
-
const _LSARN = "LogStreamARN";
|
|
552
|
-
const _LSARNU = "LogStreamARNUpdate";
|
|
553
|
-
const _LTFR = "ListTagsForResource";
|
|
554
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
555
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
556
|
-
const _LUT = "LastUpdateTimestamp";
|
|
557
|
-
const _M = "Message";
|
|
558
|
-
const _MC = "MonitoringConfiguration";
|
|
559
|
-
const _MCD = "MonitoringConfigurationDescription";
|
|
560
|
-
const _MCU = "MonitoringConfigurationUpdate";
|
|
561
|
-
const _ML = "MetricsLevel";
|
|
562
|
-
const _MLU = "MetricsLevelUpdate";
|
|
563
|
-
const _MP = "MappingParameters";
|
|
564
|
-
const _MPBC = "MinPauseBetweenCheckpoints";
|
|
565
|
-
const _MPBCU = "MinPauseBetweenCheckpointsUpdate";
|
|
566
|
-
const _MR = "MavenReference";
|
|
567
|
-
const _MRD = "MavenReferenceDescription";
|
|
568
|
-
const _Ma = "Mapping";
|
|
569
|
-
const _N = "Name";
|
|
570
|
-
const _NP = "NamePrefix";
|
|
571
|
-
const _NPU = "NamePrefixUpdate";
|
|
572
|
-
const _NT = "NextToken";
|
|
573
|
-
const _NU = "NameUpdate";
|
|
574
|
-
const _O = "Output";
|
|
575
|
-
const _OD = "OutputDescriptions";
|
|
576
|
-
const _ODu = "OutputDescription";
|
|
577
|
-
const _OFD = "OperationFailureDetails";
|
|
578
|
-
const _OI = "OperationId";
|
|
579
|
-
const _OIu = "OutputId";
|
|
580
|
-
const _OS = "OperationStatus";
|
|
581
|
-
const _OU = "OutputUpdate";
|
|
582
|
-
const _OUu = "OutputUpdates";
|
|
583
|
-
const _OV = "ObjectVersion";
|
|
584
|
-
const _OVU = "ObjectVersionUpdate";
|
|
585
|
-
const _Op = "Operation";
|
|
586
|
-
const _Ou = "Outputs";
|
|
587
|
-
const _P = "Parallelism";
|
|
588
|
-
const _PC = "ParallelismConfiguration";
|
|
589
|
-
const _PCD = "ParallelismConfigurationDescription";
|
|
590
|
-
const _PCU = "ParallelismConfigurationUpdate";
|
|
591
|
-
const _PG = "PropertyGroups";
|
|
592
|
-
const _PGD = "PropertyGroupDescriptions";
|
|
593
|
-
const _PGI = "PropertyGroupId";
|
|
594
|
-
const _PGr = "PropertyGroup";
|
|
595
|
-
const _PIR = "ParsedInputRecords";
|
|
596
|
-
const _PIRr = "ProcessedInputRecords";
|
|
597
|
-
const _PM = "PropertyMap";
|
|
598
|
-
const _PPKPU = "ParallelismPerKPU";
|
|
599
|
-
const _PPKPUU = "ParallelismPerKPUUpdate";
|
|
600
|
-
const _PU = "ParallelismUpdate";
|
|
601
|
-
const _RA = "RollbackApplication";
|
|
602
|
-
const _RAR = "RollbackApplicationRequest";
|
|
603
|
-
const _RARN = "RoleARN";
|
|
604
|
-
const _RARNU = "ResourceARNUpdate";
|
|
605
|
-
const _RARNe = "ResourceARN";
|
|
606
|
-
const _RARo = "RollbackApplicationResponse";
|
|
607
|
-
const _RC = "RecordColumn";
|
|
608
|
-
const _RCD = "RunConfigurationDescription";
|
|
609
|
-
const _RCDe = "RecordColumnDelimiter";
|
|
610
|
-
const _RCU = "RecordColumnUpdates";
|
|
611
|
-
const _RCUu = "RunConfigurationUpdate";
|
|
612
|
-
const _RCe = "RecordColumns";
|
|
613
|
-
const _RCu = "RunConfiguration";
|
|
614
|
-
const _RDS = "ReferenceDataSource";
|
|
615
|
-
const _RDSD = "ReferenceDataSourceDescriptions";
|
|
616
|
-
const _RDSDe = "ReferenceDataSourceDescription";
|
|
617
|
-
const _RDSU = "ReferenceDataSourceUpdate";
|
|
618
|
-
const _RDSUe = "ReferenceDataSourceUpdates";
|
|
619
|
-
const _RDSe = "ReferenceDataSources";
|
|
620
|
-
const _RE = "RuntimeEnvironment";
|
|
621
|
-
const _REU = "RollbackEnabledUpdate";
|
|
622
|
-
const _REUe = "RecordEncodingUpdate";
|
|
623
|
-
const _REUu = "RuntimeEnvironmentUpdate";
|
|
624
|
-
const _REe = "RecordEncoding";
|
|
625
|
-
const _REo = "RollbackEnabled";
|
|
626
|
-
const _RF = "RecordFormat";
|
|
627
|
-
const _RFT = "RecordFormatType";
|
|
628
|
-
const _RFU = "RecordFormatUpdate";
|
|
629
|
-
const _RI = "ReferenceId";
|
|
630
|
-
const _RIR = "RawInputRecords";
|
|
631
|
-
const _RIUE = "ResourceInUseException";
|
|
632
|
-
const _RNFE = "ResourceNotFoundException";
|
|
633
|
-
const _ROI = "RollbackOperationId";
|
|
634
|
-
const _RPTEE = "ResourceProvisionedThroughputExceededException";
|
|
635
|
-
const _RRARN = "ReferenceRoleARN";
|
|
636
|
-
const _RRD = "RecordRowDelimiter";
|
|
637
|
-
const _RRP = "RecordRowPath";
|
|
638
|
-
const _RS = "ReferenceSchema";
|
|
639
|
-
const _RSU = "ReferenceSchemaUpdate";
|
|
640
|
-
const _SA = "StartApplication";
|
|
641
|
-
const _SAC = "SqlApplicationConfiguration";
|
|
642
|
-
const _SACD = "SqlApplicationConfigurationDescription";
|
|
643
|
-
const _SACLD = "S3ApplicationCodeLocationDescription";
|
|
644
|
-
const _SACU = "SqlApplicationConfigurationUpdate";
|
|
645
|
-
const _SAR = "StartApplicationRequest";
|
|
646
|
-
const _SARt = "StartApplicationResponse";
|
|
647
|
-
const _SARto = "StopApplicationRequest";
|
|
648
|
-
const _SARtop = "StopApplicationResponse";
|
|
649
|
-
const _SAt = "StopApplication";
|
|
650
|
-
const _SC = "S3Configuration";
|
|
651
|
-
const _SCBL = "S3ContentBaseLocation";
|
|
652
|
-
const _SCBLD = "S3ContentBaseLocationDescription";
|
|
653
|
-
const _SCBLU = "S3ContentBaseLocationUpdate";
|
|
654
|
-
const _SCL = "S3ContentLocation";
|
|
655
|
-
const _SCLD = "S3ContentLocationDescription";
|
|
656
|
-
const _SCLU = "S3ContentLocationUpdate";
|
|
657
|
-
const _SCT = "SnapshotCreationTimestamp";
|
|
658
|
-
const _SD = "SnapshotDetails";
|
|
659
|
-
const _SE = "SnapshotsEnabled";
|
|
660
|
-
const _SEDIS = "SessionExpirationDurationInSeconds";
|
|
661
|
-
const _SER = "ServiceExecutionRole";
|
|
662
|
-
const _SERU = "ServiceExecutionRoleUpdate";
|
|
663
|
-
const _SEU = "SnapshotsEnabledUpdate";
|
|
664
|
-
const _SGI = "SecurityGroupIds";
|
|
665
|
-
const _SGIU = "SecurityGroupIdUpdates";
|
|
666
|
-
const _SI = "SubnetIds";
|
|
667
|
-
const _SIU = "SubnetIdUpdates";
|
|
668
|
-
const _SN = "SnapshotName";
|
|
669
|
-
const _SRC = "SqlRunConfigurations";
|
|
670
|
-
const _SRCq = "SqlRunConfiguration";
|
|
671
|
-
const _SRDS = "S3ReferenceDataSource";
|
|
672
|
-
const _SRDSD = "S3ReferenceDataSourceDescription";
|
|
673
|
-
const _SRDSU = "S3ReferenceDataSourceUpdate";
|
|
674
|
-
const _SS = "SnapshotSummaries";
|
|
675
|
-
const _SSn = "SnapshotStatus";
|
|
676
|
-
const _SSo = "SourceSchema";
|
|
677
|
-
const _ST = "StartTime";
|
|
678
|
-
const _STq = "SqlType";
|
|
679
|
-
const _SUE = "ServiceUnavailableException";
|
|
680
|
-
const _T = "Tags";
|
|
681
|
-
const _TC = "TextContent";
|
|
682
|
-
const _TCU = "TextContentUpdate";
|
|
683
|
-
const _TK = "TagKeys";
|
|
684
|
-
const _TMTE = "TooManyTagsException";
|
|
685
|
-
const _TN = "TableName";
|
|
686
|
-
const _TNU = "TableNameUpdate";
|
|
687
|
-
const _TR = "TagResource";
|
|
688
|
-
const _TRR = "TagResourceRequest";
|
|
689
|
-
const _TRRa = "TagResourceResponse";
|
|
690
|
-
const _Ta = "Tag";
|
|
691
|
-
const _UA = "UpdateApplication";
|
|
692
|
-
const _UAMC = "UpdateApplicationMaintenanceConfiguration";
|
|
693
|
-
const _UAMCR = "UpdateApplicationMaintenanceConfigurationRequest";
|
|
694
|
-
const _UAMCRp = "UpdateApplicationMaintenanceConfigurationResponse";
|
|
695
|
-
const _UAR = "UpdateApplicationRequest";
|
|
696
|
-
const _UARp = "UpdateApplicationResponse";
|
|
697
|
-
const _UOE = "UnsupportedOperationException";
|
|
698
|
-
const _UR = "UntagResource";
|
|
699
|
-
const _URR = "UntagResourceRequest";
|
|
700
|
-
const _URRn = "UntagResourceResponse";
|
|
701
|
-
const _UT = "UrlType";
|
|
702
|
-
const _UTDSE = "UnableToDetectSchemaException";
|
|
703
|
-
const _V = "Version";
|
|
704
|
-
const _VC = "VpcConfiguration";
|
|
705
|
-
const _VCD = "VpcConfigurationDescription";
|
|
706
|
-
const _VCDp = "VpcConfigurationDescriptions";
|
|
707
|
-
const _VCI = "VpcConfigurationId";
|
|
708
|
-
const _VCU = "VpcConfigurationUpdates";
|
|
709
|
-
const _VCUp = "VpcConfigurationUpdate";
|
|
710
|
-
const _VCp = "VpcConfigurations";
|
|
711
|
-
const _VI = "VpcId";
|
|
712
|
-
const _Va = "Value";
|
|
713
|
-
const _ZAC = "ZeppelinApplicationConfiguration";
|
|
714
|
-
const _ZACD = "ZeppelinApplicationConfigurationDescription";
|
|
715
|
-
const _ZACU = "ZeppelinApplicationConfigurationUpdate";
|
|
716
|
-
const _ZFC = "ZipFileContent";
|
|
717
|
-
const _ZFCU = "ZipFileContentUpdate";
|
|
718
|
-
const _ZMC = "ZeppelinMonitoringConfiguration";
|
|
719
|
-
const _ZMCD = "ZeppelinMonitoringConfigurationDescription";
|
|
720
|
-
const _ZMCU = "ZeppelinMonitoringConfigurationUpdate";
|
|
721
|
-
const _c = "client";
|
|
722
|
-
const _e = "error";
|
|
723
|
-
const _hE = "httpError";
|
|
724
|
-
const _m = "message";
|
|
725
|
-
const _s = "server";
|
|
726
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.kinesisanalyticsv2";
|
|
727
|
-
const n0 = "com.amazonaws.kinesisanalyticsv2";
|
|
728
|
-
var AddApplicationCloudWatchLoggingOptionRequest$ = [3, n0, _AACWLOR,
|
|
729
|
-
0,
|
|
730
|
-
[_AN, _CWLO, _CAVI, _CT],
|
|
731
|
-
[0, () => CloudWatchLoggingOption$, 1, 0], 2
|
|
732
|
-
];
|
|
733
|
-
var AddApplicationCloudWatchLoggingOptionResponse$ = [3, n0, _AACWLORd,
|
|
734
|
-
0,
|
|
735
|
-
[_AARN, _AVI, _CWLOD, _OI],
|
|
736
|
-
[0, 1, () => CloudWatchLoggingOptionDescriptions, 0]
|
|
737
|
-
];
|
|
738
|
-
var AddApplicationInputProcessingConfigurationRequest$ = [3, n0, _AAIPCR,
|
|
739
|
-
0,
|
|
740
|
-
[_AN, _CAVI, _II, _IPC],
|
|
741
|
-
[0, 1, 0, () => InputProcessingConfiguration$], 4
|
|
742
|
-
];
|
|
743
|
-
var AddApplicationInputProcessingConfigurationResponse$ = [3, n0, _AAIPCRd,
|
|
744
|
-
0,
|
|
745
|
-
[_AARN, _AVI, _II, _IPCD],
|
|
746
|
-
[0, 1, 0, () => InputProcessingConfigurationDescription$]
|
|
747
|
-
];
|
|
748
|
-
var AddApplicationInputRequest$ = [3, n0, _AAIR,
|
|
749
|
-
0,
|
|
750
|
-
[_AN, _CAVI, _I],
|
|
751
|
-
[0, 1, () => Input$], 3
|
|
752
|
-
];
|
|
753
|
-
var AddApplicationInputResponse$ = [3, n0, _AAIRd,
|
|
754
|
-
0,
|
|
755
|
-
[_AARN, _AVI, _ID],
|
|
756
|
-
[0, 1, () => InputDescriptions]
|
|
757
|
-
];
|
|
758
|
-
var AddApplicationOutputRequest$ = [3, n0, _AAOR,
|
|
759
|
-
0,
|
|
760
|
-
[_AN, _CAVI, _O],
|
|
761
|
-
[0, 1, () => Output$], 3
|
|
762
|
-
];
|
|
763
|
-
var AddApplicationOutputResponse$ = [3, n0, _AAORd,
|
|
764
|
-
0,
|
|
765
|
-
[_AARN, _AVI, _OD],
|
|
766
|
-
[0, 1, () => OutputDescriptions]
|
|
767
|
-
];
|
|
768
|
-
var AddApplicationReferenceDataSourceRequest$ = [3, n0, _AARDSR,
|
|
769
|
-
0,
|
|
770
|
-
[_AN, _CAVI, _RDS],
|
|
771
|
-
[0, 1, () => ReferenceDataSource$], 3
|
|
772
|
-
];
|
|
773
|
-
var AddApplicationReferenceDataSourceResponse$ = [3, n0, _AARDSRd,
|
|
774
|
-
0,
|
|
775
|
-
[_AARN, _AVI, _RDSD],
|
|
776
|
-
[0, 1, () => ReferenceDataSourceDescriptions]
|
|
777
|
-
];
|
|
778
|
-
var AddApplicationVpcConfigurationRequest$ = [3, n0, _AAVCR,
|
|
779
|
-
0,
|
|
780
|
-
[_AN, _VC, _CAVI, _CT],
|
|
781
|
-
[0, () => VpcConfiguration$, 1, 0], 2
|
|
782
|
-
];
|
|
783
|
-
var AddApplicationVpcConfigurationResponse$ = [3, n0, _AAVCRd,
|
|
784
|
-
0,
|
|
785
|
-
[_AARN, _AVI, _VCD, _OI],
|
|
786
|
-
[0, 1, () => VpcConfigurationDescription$, 0]
|
|
787
|
-
];
|
|
788
|
-
var ApplicationCodeConfiguration$ = [3, n0, _ACC,
|
|
789
|
-
0,
|
|
790
|
-
[_CCT, _CC],
|
|
791
|
-
[0, () => CodeContent$], 1
|
|
792
|
-
];
|
|
793
|
-
var ApplicationCodeConfigurationDescription$ = [3, n0, _ACCD,
|
|
794
|
-
0,
|
|
795
|
-
[_CCT, _CCD],
|
|
796
|
-
[0, () => CodeContentDescription$], 1
|
|
797
|
-
];
|
|
798
|
-
var ApplicationCodeConfigurationUpdate$ = [3, n0, _ACCU,
|
|
799
|
-
0,
|
|
800
|
-
[_CCTU, _CCU],
|
|
801
|
-
[0, () => CodeContentUpdate$]
|
|
802
|
-
];
|
|
803
|
-
var ApplicationConfiguration$ = [3, n0, _AC,
|
|
804
|
-
0,
|
|
805
|
-
[_SAC, _FAC, _EP, _ACC, _ASC, _ASRC, _VCp, _ZAC, _AEC],
|
|
806
|
-
[() => SqlApplicationConfiguration$, () => FlinkApplicationConfiguration$, () => EnvironmentProperties$, () => ApplicationCodeConfiguration$, () => ApplicationSnapshotConfiguration$, () => ApplicationSystemRollbackConfiguration$, () => VpcConfigurations, () => ZeppelinApplicationConfiguration$, () => ApplicationEncryptionConfiguration$]
|
|
807
|
-
];
|
|
808
|
-
var ApplicationConfigurationDescription$ = [3, n0, _ACD,
|
|
809
|
-
0,
|
|
810
|
-
[_SACD, _ACCD, _RCD, _FACD, _EPD, _ASCD, _ASRCD, _VCDp, _ZACD, _AECD],
|
|
811
|
-
[() => SqlApplicationConfigurationDescription$, () => ApplicationCodeConfigurationDescription$, () => RunConfigurationDescription$, () => FlinkApplicationConfigurationDescription$, () => EnvironmentPropertyDescriptions$, () => ApplicationSnapshotConfigurationDescription$, () => ApplicationSystemRollbackConfigurationDescription$, () => VpcConfigurationDescriptions, () => ZeppelinApplicationConfigurationDescription$, () => ApplicationEncryptionConfigurationDescription$]
|
|
812
|
-
];
|
|
813
|
-
var ApplicationConfigurationUpdate$ = [3, n0, _ACU,
|
|
814
|
-
0,
|
|
815
|
-
[_SACU, _ACCU, _FACU, _EPU, _ASCU, _ASRCU, _VCU, _ZACU, _AECU],
|
|
816
|
-
[() => SqlApplicationConfigurationUpdate$, () => ApplicationCodeConfigurationUpdate$, () => FlinkApplicationConfigurationUpdate$, () => EnvironmentPropertyUpdates$, () => ApplicationSnapshotConfigurationUpdate$, () => ApplicationSystemRollbackConfigurationUpdate$, () => VpcConfigurationUpdates, () => ZeppelinApplicationConfigurationUpdate$, () => ApplicationEncryptionConfigurationUpdate$]
|
|
817
|
-
];
|
|
818
|
-
var ApplicationDetail$ = [3, n0, _AD,
|
|
819
|
-
0,
|
|
820
|
-
[_AARN, _AN, _RE, _AS, _AVI, _ADp, _SER, _CTr, _LUT, _ACD, _CWLOD, _AMCD, _AVUF, _AVRBF, _AVCT, _CT, _AVRBT, _AM],
|
|
821
|
-
[0, 0, 0, 0, 1, 0, 0, 4, 4, () => ApplicationConfigurationDescription$, () => CloudWatchLoggingOptionDescriptions, () => ApplicationMaintenanceConfigurationDescription$, 1, 1, 4, 0, 1, 0], 5
|
|
822
|
-
];
|
|
823
|
-
var ApplicationEncryptionConfiguration$ = [3, n0, _AEC,
|
|
824
|
-
0,
|
|
825
|
-
[_KT, _KI],
|
|
826
|
-
[0, 0], 1
|
|
827
|
-
];
|
|
828
|
-
var ApplicationEncryptionConfigurationDescription$ = [3, n0, _AECD,
|
|
829
|
-
0,
|
|
830
|
-
[_KT, _KI],
|
|
831
|
-
[0, 0], 1
|
|
832
|
-
];
|
|
833
|
-
var ApplicationEncryptionConfigurationUpdate$ = [3, n0, _AECU,
|
|
834
|
-
0,
|
|
835
|
-
[_KTU, _KIU],
|
|
836
|
-
[0, 0], 1
|
|
837
|
-
];
|
|
838
|
-
var ApplicationMaintenanceConfigurationDescription$ = [3, n0, _AMCD,
|
|
839
|
-
0,
|
|
840
|
-
[_AMWST, _AMWET],
|
|
841
|
-
[0, 0], 2
|
|
842
|
-
];
|
|
843
|
-
var ApplicationMaintenanceConfigurationUpdate$ = [3, n0, _AMCU,
|
|
844
|
-
0,
|
|
845
|
-
[_AMWSTU],
|
|
846
|
-
[0], 1
|
|
847
|
-
];
|
|
848
|
-
var ApplicationOperationInfo$ = [3, n0, _AOI,
|
|
849
|
-
0,
|
|
850
|
-
[_Op, _OI, _ST, _ET, _OS],
|
|
851
|
-
[0, 0, 4, 4, 0]
|
|
852
|
-
];
|
|
853
|
-
var ApplicationOperationInfoDetails$ = [3, n0, _AOID,
|
|
854
|
-
0,
|
|
855
|
-
[_Op, _ST, _ET, _OS, _AVCD, _OFD],
|
|
856
|
-
[0, 4, 4, 0, () => ApplicationVersionChangeDetails$, () => OperationFailureDetails$], 4
|
|
857
|
-
];
|
|
858
|
-
var ApplicationRestoreConfiguration$ = [3, n0, _ARC,
|
|
859
|
-
0,
|
|
860
|
-
[_ART, _SN],
|
|
861
|
-
[0, 0], 1
|
|
862
|
-
];
|
|
863
|
-
var ApplicationSnapshotConfiguration$ = [3, n0, _ASC,
|
|
864
|
-
0,
|
|
865
|
-
[_SE],
|
|
866
|
-
[2], 1
|
|
867
|
-
];
|
|
868
|
-
var ApplicationSnapshotConfigurationDescription$ = [3, n0, _ASCD,
|
|
869
|
-
0,
|
|
870
|
-
[_SE],
|
|
871
|
-
[2], 1
|
|
872
|
-
];
|
|
873
|
-
var ApplicationSnapshotConfigurationUpdate$ = [3, n0, _ASCU,
|
|
874
|
-
0,
|
|
875
|
-
[_SEU],
|
|
876
|
-
[2], 1
|
|
877
|
-
];
|
|
878
|
-
var ApplicationSummary$ = [3, n0, _ASp,
|
|
879
|
-
0,
|
|
880
|
-
[_AN, _AARN, _AS, _AVI, _RE, _AM],
|
|
881
|
-
[0, 0, 0, 1, 0, 0], 5
|
|
882
|
-
];
|
|
883
|
-
var ApplicationSystemRollbackConfiguration$ = [3, n0, _ASRC,
|
|
884
|
-
0,
|
|
885
|
-
[_REo],
|
|
886
|
-
[2], 1
|
|
887
|
-
];
|
|
888
|
-
var ApplicationSystemRollbackConfigurationDescription$ = [3, n0, _ASRCD,
|
|
889
|
-
0,
|
|
890
|
-
[_REo],
|
|
891
|
-
[2], 1
|
|
892
|
-
];
|
|
893
|
-
var ApplicationSystemRollbackConfigurationUpdate$ = [3, n0, _ASRCU,
|
|
894
|
-
0,
|
|
895
|
-
[_REU],
|
|
896
|
-
[2], 1
|
|
897
|
-
];
|
|
898
|
-
var ApplicationVersionChangeDetails$ = [3, n0, _AVCD,
|
|
899
|
-
0,
|
|
900
|
-
[_AVUF, _AVUT],
|
|
901
|
-
[1, 1], 2
|
|
902
|
-
];
|
|
903
|
-
var ApplicationVersionSummary$ = [3, n0, _AVS,
|
|
904
|
-
0,
|
|
905
|
-
[_AVI, _AS],
|
|
906
|
-
[1, 0], 2
|
|
907
|
-
];
|
|
908
|
-
var CatalogConfiguration$ = [3, n0, _CCa,
|
|
909
|
-
0,
|
|
910
|
-
[_GDCC],
|
|
911
|
-
[() => GlueDataCatalogConfiguration$], 1
|
|
912
|
-
];
|
|
913
|
-
var CatalogConfigurationDescription$ = [3, n0, _CCDa,
|
|
914
|
-
0,
|
|
915
|
-
[_GDCCD],
|
|
916
|
-
[() => GlueDataCatalogConfigurationDescription$], 1
|
|
917
|
-
];
|
|
918
|
-
var CatalogConfigurationUpdate$ = [3, n0, _CCUa,
|
|
919
|
-
0,
|
|
920
|
-
[_GDCCU],
|
|
921
|
-
[() => GlueDataCatalogConfigurationUpdate$], 1
|
|
922
|
-
];
|
|
923
|
-
var CheckpointConfiguration$ = [3, n0, _CCh,
|
|
924
|
-
0,
|
|
925
|
-
[_CTo, _CE, _CI, _MPBC],
|
|
926
|
-
[0, 2, 1, 1], 1
|
|
927
|
-
];
|
|
928
|
-
var CheckpointConfigurationDescription$ = [3, n0, _CCDh,
|
|
929
|
-
0,
|
|
930
|
-
[_CTo, _CE, _CI, _MPBC],
|
|
931
|
-
[0, 2, 1, 1]
|
|
932
|
-
];
|
|
933
|
-
var CheckpointConfigurationUpdate$ = [3, n0, _CCUh,
|
|
934
|
-
0,
|
|
935
|
-
[_CTU, _CEU, _CIU, _MPBCU],
|
|
936
|
-
[0, 2, 1, 1]
|
|
937
|
-
];
|
|
938
|
-
var CloudWatchLoggingOption$ = [3, n0, _CWLO,
|
|
939
|
-
0,
|
|
940
|
-
[_LSARN],
|
|
941
|
-
[0], 1
|
|
942
|
-
];
|
|
943
|
-
var CloudWatchLoggingOptionDescription$ = [3, n0, _CWLODl,
|
|
944
|
-
0,
|
|
945
|
-
[_LSARN, _CWLOI, _RARN],
|
|
946
|
-
[0, 0, 0], 1
|
|
947
|
-
];
|
|
948
|
-
var CloudWatchLoggingOptionUpdate$ = [3, n0, _CWLOU,
|
|
949
|
-
0,
|
|
950
|
-
[_CWLOI, _LSARNU],
|
|
951
|
-
[0, 0], 1
|
|
952
|
-
];
|
|
953
|
-
var CodeContent$ = [3, n0, _CC,
|
|
954
|
-
0,
|
|
955
|
-
[_TC, _ZFC, _SCL],
|
|
956
|
-
[0, 21, () => S3ContentLocation$]
|
|
957
|
-
];
|
|
958
|
-
var CodeContentDescription$ = [3, n0, _CCD,
|
|
959
|
-
0,
|
|
960
|
-
[_TC, _CMD, _CS, _SACLD],
|
|
961
|
-
[0, 0, 1, () => S3ApplicationCodeLocationDescription$]
|
|
962
|
-
];
|
|
963
|
-
var CodeContentUpdate$ = [3, n0, _CCU,
|
|
964
|
-
0,
|
|
965
|
-
[_TCU, _ZFCU, _SCLU],
|
|
966
|
-
[0, 21, () => S3ContentLocationUpdate$]
|
|
967
|
-
];
|
|
968
|
-
var CodeValidationException$ = [-3, n0, _CVE,
|
|
969
|
-
{ [_e]: _c },
|
|
970
|
-
[_M],
|
|
971
|
-
[0]
|
|
972
|
-
];
|
|
973
|
-
schema.TypeRegistry.for(n0).registerError(CodeValidationException$, CodeValidationException);
|
|
974
|
-
var ConcurrentModificationException$ = [-3, n0, _CME,
|
|
975
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
976
|
-
[_M],
|
|
977
|
-
[0]
|
|
978
|
-
];
|
|
979
|
-
schema.TypeRegistry.for(n0).registerError(ConcurrentModificationException$, ConcurrentModificationException);
|
|
980
|
-
var CreateApplicationPresignedUrlRequest$ = [3, n0, _CAPUR,
|
|
981
|
-
0,
|
|
982
|
-
[_AN, _UT, _SEDIS],
|
|
983
|
-
[0, 0, 1], 2
|
|
984
|
-
];
|
|
985
|
-
var CreateApplicationPresignedUrlResponse$ = [3, n0, _CAPURr,
|
|
986
|
-
0,
|
|
987
|
-
[_AU],
|
|
988
|
-
[0]
|
|
989
|
-
];
|
|
990
|
-
var CreateApplicationRequest$ = [3, n0, _CAR,
|
|
991
|
-
0,
|
|
992
|
-
[_AN, _RE, _SER, _ADp, _AC, _CWLOl, _T, _AM],
|
|
993
|
-
[0, 0, 0, 0, () => ApplicationConfiguration$, () => CloudWatchLoggingOptions, () => Tags, 0], 3
|
|
994
|
-
];
|
|
995
|
-
var CreateApplicationResponse$ = [3, n0, _CARr,
|
|
996
|
-
0,
|
|
997
|
-
[_AD],
|
|
998
|
-
[() => ApplicationDetail$], 1
|
|
999
|
-
];
|
|
1000
|
-
var CreateApplicationSnapshotRequest$ = [3, n0, _CASR,
|
|
1001
|
-
0,
|
|
1002
|
-
[_AN, _SN],
|
|
1003
|
-
[0, 0], 2
|
|
1004
|
-
];
|
|
1005
|
-
var CreateApplicationSnapshotResponse$ = [3, n0, _CASRr,
|
|
1006
|
-
0,
|
|
1007
|
-
[],
|
|
1008
|
-
[]
|
|
1009
|
-
];
|
|
1010
|
-
var CSVMappingParameters$ = [3, n0, _CSVMP,
|
|
1011
|
-
0,
|
|
1012
|
-
[_RRD, _RCDe],
|
|
1013
|
-
[0, 0], 2
|
|
1014
|
-
];
|
|
1015
|
-
var CustomArtifactConfiguration$ = [3, n0, _CAC,
|
|
1016
|
-
0,
|
|
1017
|
-
[_AT, _SCL, _MR],
|
|
1018
|
-
[0, () => S3ContentLocation$, () => MavenReference$], 1
|
|
1019
|
-
];
|
|
1020
|
-
var CustomArtifactConfigurationDescription$ = [3, n0, _CACD,
|
|
1021
|
-
0,
|
|
1022
|
-
[_AT, _SCLD, _MRD],
|
|
1023
|
-
[0, () => S3ContentLocation$, () => MavenReference$]
|
|
1024
|
-
];
|
|
1025
|
-
var DeleteApplicationCloudWatchLoggingOptionRequest$ = [3, n0, _DACWLOR,
|
|
1026
|
-
0,
|
|
1027
|
-
[_AN, _CWLOI, _CAVI, _CT],
|
|
1028
|
-
[0, 0, 1, 0], 2
|
|
1029
|
-
];
|
|
1030
|
-
var DeleteApplicationCloudWatchLoggingOptionResponse$ = [3, n0, _DACWLORe,
|
|
1031
|
-
0,
|
|
1032
|
-
[_AARN, _AVI, _CWLOD, _OI],
|
|
1033
|
-
[0, 1, () => CloudWatchLoggingOptionDescriptions, 0]
|
|
1034
|
-
];
|
|
1035
|
-
var DeleteApplicationInputProcessingConfigurationRequest$ = [3, n0, _DAIPCR,
|
|
1036
|
-
0,
|
|
1037
|
-
[_AN, _CAVI, _II],
|
|
1038
|
-
[0, 1, 0], 3
|
|
1039
|
-
];
|
|
1040
|
-
var DeleteApplicationInputProcessingConfigurationResponse$ = [3, n0, _DAIPCRe,
|
|
1041
|
-
0,
|
|
1042
|
-
[_AARN, _AVI],
|
|
1043
|
-
[0, 1]
|
|
1044
|
-
];
|
|
1045
|
-
var DeleteApplicationOutputRequest$ = [3, n0, _DAOR,
|
|
1046
|
-
0,
|
|
1047
|
-
[_AN, _CAVI, _OIu],
|
|
1048
|
-
[0, 1, 0], 3
|
|
1049
|
-
];
|
|
1050
|
-
var DeleteApplicationOutputResponse$ = [3, n0, _DAORe,
|
|
1051
|
-
0,
|
|
1052
|
-
[_AARN, _AVI],
|
|
1053
|
-
[0, 1]
|
|
1054
|
-
];
|
|
1055
|
-
var DeleteApplicationReferenceDataSourceRequest$ = [3, n0, _DARDSR,
|
|
1056
|
-
0,
|
|
1057
|
-
[_AN, _CAVI, _RI],
|
|
1058
|
-
[0, 1, 0], 3
|
|
1059
|
-
];
|
|
1060
|
-
var DeleteApplicationReferenceDataSourceResponse$ = [3, n0, _DARDSRe,
|
|
1061
|
-
0,
|
|
1062
|
-
[_AARN, _AVI],
|
|
1063
|
-
[0, 1]
|
|
1064
|
-
];
|
|
1065
|
-
var DeleteApplicationRequest$ = [3, n0, _DAR,
|
|
1066
|
-
0,
|
|
1067
|
-
[_AN, _CTr],
|
|
1068
|
-
[0, 4], 2
|
|
1069
|
-
];
|
|
1070
|
-
var DeleteApplicationResponse$ = [3, n0, _DARe,
|
|
1071
|
-
0,
|
|
1072
|
-
[],
|
|
1073
|
-
[]
|
|
1074
|
-
];
|
|
1075
|
-
var DeleteApplicationSnapshotRequest$ = [3, n0, _DASR,
|
|
1076
|
-
0,
|
|
1077
|
-
[_AN, _SN, _SCT],
|
|
1078
|
-
[0, 0, 4], 3
|
|
1079
|
-
];
|
|
1080
|
-
var DeleteApplicationSnapshotResponse$ = [3, n0, _DASRe,
|
|
1081
|
-
0,
|
|
1082
|
-
[],
|
|
1083
|
-
[]
|
|
1084
|
-
];
|
|
1085
|
-
var DeleteApplicationVpcConfigurationRequest$ = [3, n0, _DAVCR,
|
|
1086
|
-
0,
|
|
1087
|
-
[_AN, _VCI, _CAVI, _CT],
|
|
1088
|
-
[0, 0, 1, 0], 2
|
|
1089
|
-
];
|
|
1090
|
-
var DeleteApplicationVpcConfigurationResponse$ = [3, n0, _DAVCRe,
|
|
1091
|
-
0,
|
|
1092
|
-
[_AARN, _AVI, _OI],
|
|
1093
|
-
[0, 1, 0]
|
|
1094
|
-
];
|
|
1095
|
-
var DeployAsApplicationConfiguration$ = [3, n0, _DAAC,
|
|
1096
|
-
0,
|
|
1097
|
-
[_SCL],
|
|
1098
|
-
[() => S3ContentBaseLocation$], 1
|
|
1099
|
-
];
|
|
1100
|
-
var DeployAsApplicationConfigurationDescription$ = [3, n0, _DAACD,
|
|
1101
|
-
0,
|
|
1102
|
-
[_SCLD],
|
|
1103
|
-
[() => S3ContentBaseLocationDescription$], 1
|
|
1104
|
-
];
|
|
1105
|
-
var DeployAsApplicationConfigurationUpdate$ = [3, n0, _DAACU,
|
|
1106
|
-
0,
|
|
1107
|
-
[_SCLU],
|
|
1108
|
-
[() => S3ContentBaseLocationUpdate$]
|
|
1109
|
-
];
|
|
1110
|
-
var DescribeApplicationOperationRequest$ = [3, n0, _DAORes,
|
|
1111
|
-
0,
|
|
1112
|
-
[_AN, _OI],
|
|
1113
|
-
[0, 0], 2
|
|
1114
|
-
];
|
|
1115
|
-
var DescribeApplicationOperationResponse$ = [3, n0, _DAOResc,
|
|
1116
|
-
0,
|
|
1117
|
-
[_AOID],
|
|
1118
|
-
[() => ApplicationOperationInfoDetails$]
|
|
1119
|
-
];
|
|
1120
|
-
var DescribeApplicationRequest$ = [3, n0, _DARes,
|
|
1121
|
-
0,
|
|
1122
|
-
[_AN, _IAD],
|
|
1123
|
-
[0, 2], 1
|
|
1124
|
-
];
|
|
1125
|
-
var DescribeApplicationResponse$ = [3, n0, _DAResc,
|
|
1126
|
-
0,
|
|
1127
|
-
[_AD],
|
|
1128
|
-
[() => ApplicationDetail$], 1
|
|
1129
|
-
];
|
|
1130
|
-
var DescribeApplicationSnapshotRequest$ = [3, n0, _DASRes,
|
|
1131
|
-
0,
|
|
1132
|
-
[_AN, _SN],
|
|
1133
|
-
[0, 0], 2
|
|
1134
|
-
];
|
|
1135
|
-
var DescribeApplicationSnapshotResponse$ = [3, n0, _DASResc,
|
|
1136
|
-
0,
|
|
1137
|
-
[_SD],
|
|
1138
|
-
[() => SnapshotDetails$], 1
|
|
1139
|
-
];
|
|
1140
|
-
var DescribeApplicationVersionRequest$ = [3, n0, _DAVR,
|
|
1141
|
-
0,
|
|
1142
|
-
[_AN, _AVI],
|
|
1143
|
-
[0, 1], 2
|
|
1144
|
-
];
|
|
1145
|
-
var DescribeApplicationVersionResponse$ = [3, n0, _DAVRe,
|
|
1146
|
-
0,
|
|
1147
|
-
[_AVD],
|
|
1148
|
-
[() => ApplicationDetail$]
|
|
1149
|
-
];
|
|
1150
|
-
var DestinationSchema$ = [3, n0, _DS,
|
|
1151
|
-
0,
|
|
1152
|
-
[_RFT],
|
|
1153
|
-
[0], 1
|
|
1154
|
-
];
|
|
1155
|
-
var DiscoverInputSchemaRequest$ = [3, n0, _DISR,
|
|
1156
|
-
0,
|
|
1157
|
-
[_SER, _RARNe, _ISPC, _SC, _IPC],
|
|
1158
|
-
[0, 0, () => InputStartingPositionConfiguration$, () => S3Configuration$, () => InputProcessingConfiguration$], 1
|
|
1159
|
-
];
|
|
1160
|
-
var DiscoverInputSchemaResponse$ = [3, n0, _DISRi,
|
|
1161
|
-
0,
|
|
1162
|
-
[_IS, _PIR, _PIRr, _RIR],
|
|
1163
|
-
[() => SourceSchema$, [1, n0, _PIR, 0, 64 | 0], 64 | 0, 64 | 0]
|
|
1164
|
-
];
|
|
1165
|
-
var EnvironmentProperties$ = [3, n0, _EP,
|
|
1166
|
-
0,
|
|
1167
|
-
[_PG],
|
|
1168
|
-
[() => PropertyGroups], 1
|
|
1169
|
-
];
|
|
1170
|
-
var EnvironmentPropertyDescriptions$ = [3, n0, _EPD,
|
|
1171
|
-
0,
|
|
1172
|
-
[_PGD],
|
|
1173
|
-
[() => PropertyGroups]
|
|
1174
|
-
];
|
|
1175
|
-
var EnvironmentPropertyUpdates$ = [3, n0, _EPU,
|
|
1176
|
-
0,
|
|
1177
|
-
[_PG],
|
|
1178
|
-
[() => PropertyGroups], 1
|
|
1179
|
-
];
|
|
1180
|
-
var ErrorInfo$ = [3, n0, _EI,
|
|
1181
|
-
0,
|
|
1182
|
-
[_ES],
|
|
1183
|
-
[0]
|
|
1184
|
-
];
|
|
1185
|
-
var FlinkApplicationConfiguration$ = [3, n0, _FAC,
|
|
1186
|
-
0,
|
|
1187
|
-
[_CCh, _MC, _PC],
|
|
1188
|
-
[() => CheckpointConfiguration$, () => MonitoringConfiguration$, () => ParallelismConfiguration$]
|
|
1189
|
-
];
|
|
1190
|
-
var FlinkApplicationConfigurationDescription$ = [3, n0, _FACD,
|
|
1191
|
-
0,
|
|
1192
|
-
[_CCDh, _MCD, _PCD, _JPD],
|
|
1193
|
-
[() => CheckpointConfigurationDescription$, () => MonitoringConfigurationDescription$, () => ParallelismConfigurationDescription$, 0]
|
|
1194
|
-
];
|
|
1195
|
-
var FlinkApplicationConfigurationUpdate$ = [3, n0, _FACU,
|
|
1196
|
-
0,
|
|
1197
|
-
[_CCUh, _MCU, _PCU],
|
|
1198
|
-
[() => CheckpointConfigurationUpdate$, () => MonitoringConfigurationUpdate$, () => ParallelismConfigurationUpdate$]
|
|
1199
|
-
];
|
|
1200
|
-
var FlinkRunConfiguration$ = [3, n0, _FRC,
|
|
1201
|
-
0,
|
|
1202
|
-
[_ANRS],
|
|
1203
|
-
[2]
|
|
1204
|
-
];
|
|
1205
|
-
var GlueDataCatalogConfiguration$ = [3, n0, _GDCC,
|
|
1206
|
-
0,
|
|
1207
|
-
[_DARN],
|
|
1208
|
-
[0], 1
|
|
1209
|
-
];
|
|
1210
|
-
var GlueDataCatalogConfigurationDescription$ = [3, n0, _GDCCD,
|
|
1211
|
-
0,
|
|
1212
|
-
[_DARN],
|
|
1213
|
-
[0], 1
|
|
1214
|
-
];
|
|
1215
|
-
var GlueDataCatalogConfigurationUpdate$ = [3, n0, _GDCCU,
|
|
1216
|
-
0,
|
|
1217
|
-
[_DARNU],
|
|
1218
|
-
[0], 1
|
|
1219
|
-
];
|
|
1220
|
-
var Input$ = [3, n0, _I,
|
|
1221
|
-
0,
|
|
1222
|
-
[_NP, _IS, _IPC, _KSI, _KFI, _IP],
|
|
1223
|
-
[0, () => SourceSchema$, () => InputProcessingConfiguration$, () => KinesisStreamsInput$, () => KinesisFirehoseInput$, () => InputParallelism$], 2
|
|
1224
|
-
];
|
|
1225
|
-
var InputDescription$ = [3, n0, _IDn,
|
|
1226
|
-
0,
|
|
1227
|
-
[_II, _NP, _IASN, _IPCD, _KSID, _KFID, _IS, _IP, _ISPC],
|
|
1228
|
-
[0, 0, 64 | 0, () => InputProcessingConfigurationDescription$, () => KinesisStreamsInputDescription$, () => KinesisFirehoseInputDescription$, () => SourceSchema$, () => InputParallelism$, () => InputStartingPositionConfiguration$]
|
|
1229
|
-
];
|
|
1230
|
-
var InputLambdaProcessor$ = [3, n0, _ILP,
|
|
1231
|
-
0,
|
|
1232
|
-
[_RARNe],
|
|
1233
|
-
[0], 1
|
|
1234
|
-
];
|
|
1235
|
-
var InputLambdaProcessorDescription$ = [3, n0, _ILPD,
|
|
1236
|
-
0,
|
|
1237
|
-
[_RARNe, _RARN],
|
|
1238
|
-
[0, 0], 1
|
|
1239
|
-
];
|
|
1240
|
-
var InputLambdaProcessorUpdate$ = [3, n0, _ILPU,
|
|
1241
|
-
0,
|
|
1242
|
-
[_RARNU],
|
|
1243
|
-
[0], 1
|
|
1244
|
-
];
|
|
1245
|
-
var InputParallelism$ = [3, n0, _IP,
|
|
1246
|
-
0,
|
|
1247
|
-
[_C],
|
|
1248
|
-
[1]
|
|
1249
|
-
];
|
|
1250
|
-
var InputParallelismUpdate$ = [3, n0, _IPU,
|
|
1251
|
-
0,
|
|
1252
|
-
[_CU],
|
|
1253
|
-
[1], 1
|
|
1254
|
-
];
|
|
1255
|
-
var InputProcessingConfiguration$ = [3, n0, _IPC,
|
|
1256
|
-
0,
|
|
1257
|
-
[_ILP],
|
|
1258
|
-
[() => InputLambdaProcessor$], 1
|
|
1259
|
-
];
|
|
1260
|
-
var InputProcessingConfigurationDescription$ = [3, n0, _IPCD,
|
|
1261
|
-
0,
|
|
1262
|
-
[_ILPD],
|
|
1263
|
-
[() => InputLambdaProcessorDescription$]
|
|
1264
|
-
];
|
|
1265
|
-
var InputProcessingConfigurationUpdate$ = [3, n0, _IPCU,
|
|
1266
|
-
0,
|
|
1267
|
-
[_ILPU],
|
|
1268
|
-
[() => InputLambdaProcessorUpdate$], 1
|
|
1269
|
-
];
|
|
1270
|
-
var InputSchemaUpdate$ = [3, n0, _ISU,
|
|
1271
|
-
0,
|
|
1272
|
-
[_RFU, _REUe, _RCU],
|
|
1273
|
-
[() => RecordFormat$, 0, () => RecordColumns]
|
|
1274
|
-
];
|
|
1275
|
-
var InputStartingPositionConfiguration$ = [3, n0, _ISPC,
|
|
1276
|
-
0,
|
|
1277
|
-
[_ISP],
|
|
1278
|
-
[0]
|
|
1279
|
-
];
|
|
1280
|
-
var InputUpdate$ = [3, n0, _IU,
|
|
1281
|
-
0,
|
|
1282
|
-
[_II, _NPU, _IPCU, _KSIU, _KFIU, _ISU, _IPU],
|
|
1283
|
-
[0, 0, () => InputProcessingConfigurationUpdate$, () => KinesisStreamsInputUpdate$, () => KinesisFirehoseInputUpdate$, () => InputSchemaUpdate$, () => InputParallelismUpdate$], 1
|
|
1284
|
-
];
|
|
1285
|
-
var InvalidApplicationConfigurationException$ = [-3, n0, _IACE,
|
|
1286
|
-
{ [_e]: _c },
|
|
1287
|
-
[_M],
|
|
1288
|
-
[0]
|
|
1289
|
-
];
|
|
1290
|
-
schema.TypeRegistry.for(n0).registerError(InvalidApplicationConfigurationException$, InvalidApplicationConfigurationException);
|
|
1291
|
-
var InvalidArgumentException$ = [-3, n0, _IAE,
|
|
1292
|
-
{ [_e]: _c },
|
|
1293
|
-
[_M],
|
|
1294
|
-
[0]
|
|
1295
|
-
];
|
|
1296
|
-
schema.TypeRegistry.for(n0).registerError(InvalidArgumentException$, InvalidArgumentException);
|
|
1297
|
-
var InvalidRequestException$ = [-3, n0, _IRE,
|
|
1298
|
-
{ [_e]: _c },
|
|
1299
|
-
[_M],
|
|
1300
|
-
[0]
|
|
1301
|
-
];
|
|
1302
|
-
schema.TypeRegistry.for(n0).registerError(InvalidRequestException$, InvalidRequestException);
|
|
1303
|
-
var JSONMappingParameters$ = [3, n0, _JSONMP,
|
|
1304
|
-
0,
|
|
1305
|
-
[_RRP],
|
|
1306
|
-
[0], 1
|
|
1307
|
-
];
|
|
1308
|
-
var KinesisFirehoseInput$ = [3, n0, _KFI,
|
|
1309
|
-
0,
|
|
1310
|
-
[_RARNe],
|
|
1311
|
-
[0], 1
|
|
1312
|
-
];
|
|
1313
|
-
var KinesisFirehoseInputDescription$ = [3, n0, _KFID,
|
|
1314
|
-
0,
|
|
1315
|
-
[_RARNe, _RARN],
|
|
1316
|
-
[0, 0], 1
|
|
1317
|
-
];
|
|
1318
|
-
var KinesisFirehoseInputUpdate$ = [3, n0, _KFIU,
|
|
1319
|
-
0,
|
|
1320
|
-
[_RARNU],
|
|
1321
|
-
[0], 1
|
|
1322
|
-
];
|
|
1323
|
-
var KinesisFirehoseOutput$ = [3, n0, _KFO,
|
|
1324
|
-
0,
|
|
1325
|
-
[_RARNe],
|
|
1326
|
-
[0], 1
|
|
1327
|
-
];
|
|
1328
|
-
var KinesisFirehoseOutputDescription$ = [3, n0, _KFOD,
|
|
1329
|
-
0,
|
|
1330
|
-
[_RARNe, _RARN],
|
|
1331
|
-
[0, 0], 1
|
|
1332
|
-
];
|
|
1333
|
-
var KinesisFirehoseOutputUpdate$ = [3, n0, _KFOU,
|
|
1334
|
-
0,
|
|
1335
|
-
[_RARNU],
|
|
1336
|
-
[0], 1
|
|
1337
|
-
];
|
|
1338
|
-
var KinesisStreamsInput$ = [3, n0, _KSI,
|
|
1339
|
-
0,
|
|
1340
|
-
[_RARNe],
|
|
1341
|
-
[0], 1
|
|
1342
|
-
];
|
|
1343
|
-
var KinesisStreamsInputDescription$ = [3, n0, _KSID,
|
|
1344
|
-
0,
|
|
1345
|
-
[_RARNe, _RARN],
|
|
1346
|
-
[0, 0], 1
|
|
1347
|
-
];
|
|
1348
|
-
var KinesisStreamsInputUpdate$ = [3, n0, _KSIU,
|
|
1349
|
-
0,
|
|
1350
|
-
[_RARNU],
|
|
1351
|
-
[0], 1
|
|
1352
|
-
];
|
|
1353
|
-
var KinesisStreamsOutput$ = [3, n0, _KSO,
|
|
1354
|
-
0,
|
|
1355
|
-
[_RARNe],
|
|
1356
|
-
[0], 1
|
|
1357
|
-
];
|
|
1358
|
-
var KinesisStreamsOutputDescription$ = [3, n0, _KSOD,
|
|
1359
|
-
0,
|
|
1360
|
-
[_RARNe, _RARN],
|
|
1361
|
-
[0, 0], 1
|
|
1362
|
-
];
|
|
1363
|
-
var KinesisStreamsOutputUpdate$ = [3, n0, _KSOU,
|
|
1364
|
-
0,
|
|
1365
|
-
[_RARNU],
|
|
1366
|
-
[0], 1
|
|
1367
|
-
];
|
|
1368
|
-
var LambdaOutput$ = [3, n0, _LO,
|
|
1369
|
-
0,
|
|
1370
|
-
[_RARNe],
|
|
1371
|
-
[0], 1
|
|
1372
|
-
];
|
|
1373
|
-
var LambdaOutputDescription$ = [3, n0, _LOD,
|
|
1374
|
-
0,
|
|
1375
|
-
[_RARNe, _RARN],
|
|
1376
|
-
[0, 0], 1
|
|
1377
|
-
];
|
|
1378
|
-
var LambdaOutputUpdate$ = [3, n0, _LOU,
|
|
1379
|
-
0,
|
|
1380
|
-
[_RARNU],
|
|
1381
|
-
[0], 1
|
|
1382
|
-
];
|
|
1383
|
-
var LimitExceededException$ = [-3, n0, _LEE,
|
|
1384
|
-
{ [_e]: _c },
|
|
1385
|
-
[_M],
|
|
1386
|
-
[0]
|
|
1387
|
-
];
|
|
1388
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
1389
|
-
var ListApplicationOperationsRequest$ = [3, n0, _LAOR,
|
|
1390
|
-
0,
|
|
1391
|
-
[_AN, _L, _NT, _Op, _OS],
|
|
1392
|
-
[0, 1, 0, 0, 0], 1
|
|
1393
|
-
];
|
|
1394
|
-
var ListApplicationOperationsResponse$ = [3, n0, _LAORi,
|
|
1395
|
-
0,
|
|
1396
|
-
[_AOIL, _NT],
|
|
1397
|
-
[() => ApplicationOperationInfoList, 0]
|
|
1398
|
-
];
|
|
1399
|
-
var ListApplicationSnapshotsRequest$ = [3, n0, _LASR,
|
|
1400
|
-
0,
|
|
1401
|
-
[_AN, _L, _NT],
|
|
1402
|
-
[0, 1, 0], 1
|
|
1403
|
-
];
|
|
1404
|
-
var ListApplicationSnapshotsResponse$ = [3, n0, _LASRi,
|
|
1405
|
-
0,
|
|
1406
|
-
[_SS, _NT],
|
|
1407
|
-
[() => SnapshotSummaries, 0]
|
|
1408
|
-
];
|
|
1409
|
-
var ListApplicationsRequest$ = [3, n0, _LAR,
|
|
1410
|
-
0,
|
|
1411
|
-
[_L, _NT],
|
|
1412
|
-
[1, 0]
|
|
1413
|
-
];
|
|
1414
|
-
var ListApplicationsResponse$ = [3, n0, _LARi,
|
|
1415
|
-
0,
|
|
1416
|
-
[_ASpp, _NT],
|
|
1417
|
-
[() => ApplicationSummaries, 0], 1
|
|
1418
|
-
];
|
|
1419
|
-
var ListApplicationVersionsRequest$ = [3, n0, _LAVR,
|
|
1420
|
-
0,
|
|
1421
|
-
[_AN, _L, _NT],
|
|
1422
|
-
[0, 1, 0], 1
|
|
1423
|
-
];
|
|
1424
|
-
var ListApplicationVersionsResponse$ = [3, n0, _LAVRi,
|
|
1425
|
-
0,
|
|
1426
|
-
[_AVSp, _NT],
|
|
1427
|
-
[() => ApplicationVersionSummaries, 0]
|
|
1428
|
-
];
|
|
1429
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1430
|
-
0,
|
|
1431
|
-
[_RARNe],
|
|
1432
|
-
[0], 1
|
|
1433
|
-
];
|
|
1434
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1435
|
-
0,
|
|
1436
|
-
[_T],
|
|
1437
|
-
[() => Tags]
|
|
1438
|
-
];
|
|
1439
|
-
var MappingParameters$ = [3, n0, _MP,
|
|
1440
|
-
0,
|
|
1441
|
-
[_JSONMP, _CSVMP],
|
|
1442
|
-
[() => JSONMappingParameters$, () => CSVMappingParameters$]
|
|
1443
|
-
];
|
|
1444
|
-
var MavenReference$ = [3, n0, _MR,
|
|
1445
|
-
0,
|
|
1446
|
-
[_GI, _AI, _V],
|
|
1447
|
-
[0, 0, 0], 3
|
|
1448
|
-
];
|
|
1449
|
-
var MonitoringConfiguration$ = [3, n0, _MC,
|
|
1450
|
-
0,
|
|
1451
|
-
[_CTo, _ML, _LL],
|
|
1452
|
-
[0, 0, 0], 1
|
|
1453
|
-
];
|
|
1454
|
-
var MonitoringConfigurationDescription$ = [3, n0, _MCD,
|
|
1455
|
-
0,
|
|
1456
|
-
[_CTo, _ML, _LL],
|
|
1457
|
-
[0, 0, 0]
|
|
1458
|
-
];
|
|
1459
|
-
var MonitoringConfigurationUpdate$ = [3, n0, _MCU,
|
|
1460
|
-
0,
|
|
1461
|
-
[_CTU, _MLU, _LLU],
|
|
1462
|
-
[0, 0, 0]
|
|
1463
|
-
];
|
|
1464
|
-
var OperationFailureDetails$ = [3, n0, _OFD,
|
|
1465
|
-
0,
|
|
1466
|
-
[_ROI, _EI],
|
|
1467
|
-
[0, () => ErrorInfo$]
|
|
1468
|
-
];
|
|
1469
|
-
var Output$ = [3, n0, _O,
|
|
1470
|
-
0,
|
|
1471
|
-
[_N, _DS, _KSO, _KFO, _LO],
|
|
1472
|
-
[0, () => DestinationSchema$, () => KinesisStreamsOutput$, () => KinesisFirehoseOutput$, () => LambdaOutput$], 2
|
|
1473
|
-
];
|
|
1474
|
-
var OutputDescription$ = [3, n0, _ODu,
|
|
1475
|
-
0,
|
|
1476
|
-
[_OIu, _N, _KSOD, _KFOD, _LOD, _DS],
|
|
1477
|
-
[0, 0, () => KinesisStreamsOutputDescription$, () => KinesisFirehoseOutputDescription$, () => LambdaOutputDescription$, () => DestinationSchema$]
|
|
1478
|
-
];
|
|
1479
|
-
var OutputUpdate$ = [3, n0, _OU,
|
|
1480
|
-
0,
|
|
1481
|
-
[_OIu, _NU, _KSOU, _KFOU, _LOU, _DSU],
|
|
1482
|
-
[0, 0, () => KinesisStreamsOutputUpdate$, () => KinesisFirehoseOutputUpdate$, () => LambdaOutputUpdate$, () => DestinationSchema$], 1
|
|
1483
|
-
];
|
|
1484
|
-
var ParallelismConfiguration$ = [3, n0, _PC,
|
|
1485
|
-
0,
|
|
1486
|
-
[_CTo, _P, _PPKPU, _ASE],
|
|
1487
|
-
[0, 1, 1, 2], 1
|
|
1488
|
-
];
|
|
1489
|
-
var ParallelismConfigurationDescription$ = [3, n0, _PCD,
|
|
1490
|
-
0,
|
|
1491
|
-
[_CTo, _P, _PPKPU, _CP, _ASE],
|
|
1492
|
-
[0, 1, 1, 1, 2]
|
|
1493
|
-
];
|
|
1494
|
-
var ParallelismConfigurationUpdate$ = [3, n0, _PCU,
|
|
1495
|
-
0,
|
|
1496
|
-
[_CTU, _PU, _PPKPUU, _ASEU],
|
|
1497
|
-
[0, 1, 1, 2]
|
|
1498
|
-
];
|
|
1499
|
-
var PropertyGroup$ = [3, n0, _PGr,
|
|
1500
|
-
0,
|
|
1501
|
-
[_PGI, _PM],
|
|
1502
|
-
[0, 128 | 0], 2
|
|
1503
|
-
];
|
|
1504
|
-
var RecordColumn$ = [3, n0, _RC,
|
|
1505
|
-
0,
|
|
1506
|
-
[_N, _STq, _Ma],
|
|
1507
|
-
[0, 0, 0], 2
|
|
1508
|
-
];
|
|
1509
|
-
var RecordFormat$ = [3, n0, _RF,
|
|
1510
|
-
0,
|
|
1511
|
-
[_RFT, _MP],
|
|
1512
|
-
[0, () => MappingParameters$], 1
|
|
1513
|
-
];
|
|
1514
|
-
var ReferenceDataSource$ = [3, n0, _RDS,
|
|
1515
|
-
0,
|
|
1516
|
-
[_TN, _RS, _SRDS],
|
|
1517
|
-
[0, () => SourceSchema$, () => S3ReferenceDataSource$], 2
|
|
1518
|
-
];
|
|
1519
|
-
var ReferenceDataSourceDescription$ = [3, n0, _RDSDe,
|
|
1520
|
-
0,
|
|
1521
|
-
[_RI, _TN, _SRDSD, _RS],
|
|
1522
|
-
[0, 0, () => S3ReferenceDataSourceDescription$, () => SourceSchema$], 3
|
|
1523
|
-
];
|
|
1524
|
-
var ReferenceDataSourceUpdate$ = [3, n0, _RDSU,
|
|
1525
|
-
0,
|
|
1526
|
-
[_RI, _TNU, _SRDSU, _RSU],
|
|
1527
|
-
[0, 0, () => S3ReferenceDataSourceUpdate$, () => SourceSchema$], 1
|
|
1528
|
-
];
|
|
1529
|
-
var ResourceInUseException$ = [-3, n0, _RIUE,
|
|
1530
|
-
{ [_e]: _c },
|
|
1531
|
-
[_M],
|
|
1532
|
-
[0]
|
|
1533
|
-
];
|
|
1534
|
-
schema.TypeRegistry.for(n0).registerError(ResourceInUseException$, ResourceInUseException);
|
|
1535
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1536
|
-
{ [_e]: _c },
|
|
1537
|
-
[_M],
|
|
1538
|
-
[0]
|
|
1539
|
-
];
|
|
1540
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1541
|
-
var ResourceProvisionedThroughputExceededException$ = [-3, n0, _RPTEE,
|
|
1542
|
-
{ [_e]: _c },
|
|
1543
|
-
[_M],
|
|
1544
|
-
[0]
|
|
1545
|
-
];
|
|
1546
|
-
schema.TypeRegistry.for(n0).registerError(ResourceProvisionedThroughputExceededException$, ResourceProvisionedThroughputExceededException);
|
|
1547
|
-
var RollbackApplicationRequest$ = [3, n0, _RAR,
|
|
1548
|
-
0,
|
|
1549
|
-
[_AN, _CAVI],
|
|
1550
|
-
[0, 1], 2
|
|
1551
|
-
];
|
|
1552
|
-
var RollbackApplicationResponse$ = [3, n0, _RARo,
|
|
1553
|
-
0,
|
|
1554
|
-
[_AD, _OI],
|
|
1555
|
-
[() => ApplicationDetail$, 0], 1
|
|
1556
|
-
];
|
|
1557
|
-
var RunConfiguration$ = [3, n0, _RCu,
|
|
1558
|
-
0,
|
|
1559
|
-
[_FRC, _SRC, _ARC],
|
|
1560
|
-
[() => FlinkRunConfiguration$, () => SqlRunConfigurations, () => ApplicationRestoreConfiguration$]
|
|
1561
|
-
];
|
|
1562
|
-
var RunConfigurationDescription$ = [3, n0, _RCD,
|
|
1563
|
-
0,
|
|
1564
|
-
[_ARCD, _FRCD],
|
|
1565
|
-
[() => ApplicationRestoreConfiguration$, () => FlinkRunConfiguration$]
|
|
1566
|
-
];
|
|
1567
|
-
var RunConfigurationUpdate$ = [3, n0, _RCUu,
|
|
1568
|
-
0,
|
|
1569
|
-
[_FRC, _ARC],
|
|
1570
|
-
[() => FlinkRunConfiguration$, () => ApplicationRestoreConfiguration$]
|
|
1571
|
-
];
|
|
1572
|
-
var S3ApplicationCodeLocationDescription$ = [3, n0, _SACLD,
|
|
1573
|
-
0,
|
|
1574
|
-
[_BARN, _FK, _OV],
|
|
1575
|
-
[0, 0, 0], 2
|
|
1576
|
-
];
|
|
1577
|
-
var S3Configuration$ = [3, n0, _SC,
|
|
1578
|
-
0,
|
|
1579
|
-
[_BARN, _FK],
|
|
1580
|
-
[0, 0], 2
|
|
1581
|
-
];
|
|
1582
|
-
var S3ContentBaseLocation$ = [3, n0, _SCBL,
|
|
1583
|
-
0,
|
|
1584
|
-
[_BARN, _BP],
|
|
1585
|
-
[0, 0], 1
|
|
1586
|
-
];
|
|
1587
|
-
var S3ContentBaseLocationDescription$ = [3, n0, _SCBLD,
|
|
1588
|
-
0,
|
|
1589
|
-
[_BARN, _BP],
|
|
1590
|
-
[0, 0], 1
|
|
1591
|
-
];
|
|
1592
|
-
var S3ContentBaseLocationUpdate$ = [3, n0, _SCBLU,
|
|
1593
|
-
0,
|
|
1594
|
-
[_BARNU, _BPU],
|
|
1595
|
-
[0, 0]
|
|
1596
|
-
];
|
|
1597
|
-
var S3ContentLocation$ = [3, n0, _SCL,
|
|
1598
|
-
0,
|
|
1599
|
-
[_BARN, _FK, _OV],
|
|
1600
|
-
[0, 0, 0], 2
|
|
1601
|
-
];
|
|
1602
|
-
var S3ContentLocationUpdate$ = [3, n0, _SCLU,
|
|
1603
|
-
0,
|
|
1604
|
-
[_BARNU, _FKU, _OVU],
|
|
1605
|
-
[0, 0, 0]
|
|
1606
|
-
];
|
|
1607
|
-
var S3ReferenceDataSource$ = [3, n0, _SRDS,
|
|
1608
|
-
0,
|
|
1609
|
-
[_BARN, _FK],
|
|
1610
|
-
[0, 0]
|
|
1611
|
-
];
|
|
1612
|
-
var S3ReferenceDataSourceDescription$ = [3, n0, _SRDSD,
|
|
1613
|
-
0,
|
|
1614
|
-
[_BARN, _FK, _RRARN],
|
|
1615
|
-
[0, 0, 0], 2
|
|
1616
|
-
];
|
|
1617
|
-
var S3ReferenceDataSourceUpdate$ = [3, n0, _SRDSU,
|
|
1618
|
-
0,
|
|
1619
|
-
[_BARNU, _FKU],
|
|
1620
|
-
[0, 0]
|
|
1621
|
-
];
|
|
1622
|
-
var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
1623
|
-
{ [_e]: _s, [_hE]: 503 },
|
|
1624
|
-
[_M],
|
|
1625
|
-
[0]
|
|
1626
|
-
];
|
|
1627
|
-
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
1628
|
-
var SnapshotDetails$ = [3, n0, _SD,
|
|
1629
|
-
0,
|
|
1630
|
-
[_SN, _SSn, _AVI, _SCT, _RE, _AECD],
|
|
1631
|
-
[0, 0, 1, 4, 0, () => ApplicationEncryptionConfigurationDescription$], 3
|
|
1632
|
-
];
|
|
1633
|
-
var SourceSchema$ = [3, n0, _SSo,
|
|
1634
|
-
0,
|
|
1635
|
-
[_RF, _RCe, _REe],
|
|
1636
|
-
[() => RecordFormat$, () => RecordColumns, 0], 2
|
|
1637
|
-
];
|
|
1638
|
-
var SqlApplicationConfiguration$ = [3, n0, _SAC,
|
|
1639
|
-
0,
|
|
1640
|
-
[_In, _Ou, _RDSe],
|
|
1641
|
-
[() => Inputs, () => Outputs, () => ReferenceDataSources]
|
|
1642
|
-
];
|
|
1643
|
-
var SqlApplicationConfigurationDescription$ = [3, n0, _SACD,
|
|
1644
|
-
0,
|
|
1645
|
-
[_ID, _OD, _RDSD],
|
|
1646
|
-
[() => InputDescriptions, () => OutputDescriptions, () => ReferenceDataSourceDescriptions]
|
|
1647
|
-
];
|
|
1648
|
-
var SqlApplicationConfigurationUpdate$ = [3, n0, _SACU,
|
|
1649
|
-
0,
|
|
1650
|
-
[_IUn, _OUu, _RDSUe],
|
|
1651
|
-
[() => InputUpdates, () => OutputUpdates, () => ReferenceDataSourceUpdates]
|
|
1652
|
-
];
|
|
1653
|
-
var SqlRunConfiguration$ = [3, n0, _SRCq,
|
|
1654
|
-
0,
|
|
1655
|
-
[_II, _ISPC],
|
|
1656
|
-
[0, () => InputStartingPositionConfiguration$], 2
|
|
1657
|
-
];
|
|
1658
|
-
var StartApplicationRequest$ = [3, n0, _SAR,
|
|
1659
|
-
0,
|
|
1660
|
-
[_AN, _RCu],
|
|
1661
|
-
[0, () => RunConfiguration$], 1
|
|
1662
|
-
];
|
|
1663
|
-
var StartApplicationResponse$ = [3, n0, _SARt,
|
|
1664
|
-
0,
|
|
1665
|
-
[_OI],
|
|
1666
|
-
[0]
|
|
1667
|
-
];
|
|
1668
|
-
var StopApplicationRequest$ = [3, n0, _SARto,
|
|
1669
|
-
0,
|
|
1670
|
-
[_AN, _F],
|
|
1671
|
-
[0, 2], 1
|
|
1672
|
-
];
|
|
1673
|
-
var StopApplicationResponse$ = [3, n0, _SARtop,
|
|
1674
|
-
0,
|
|
1675
|
-
[_OI],
|
|
1676
|
-
[0]
|
|
1677
|
-
];
|
|
1678
|
-
var Tag$ = [3, n0, _Ta,
|
|
1679
|
-
0,
|
|
1680
|
-
[_K, _Va],
|
|
1681
|
-
[0, 0], 1
|
|
1682
|
-
];
|
|
1683
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1684
|
-
0,
|
|
1685
|
-
[_RARNe, _T],
|
|
1686
|
-
[0, () => Tags], 2
|
|
1687
|
-
];
|
|
1688
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1689
|
-
0,
|
|
1690
|
-
[],
|
|
1691
|
-
[]
|
|
1692
|
-
];
|
|
1693
|
-
var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
1694
|
-
{ [_e]: _c },
|
|
1695
|
-
[_m],
|
|
1696
|
-
[0]
|
|
1697
|
-
];
|
|
1698
|
-
schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
|
|
1699
|
-
var UnableToDetectSchemaException$ = [-3, n0, _UTDSE,
|
|
1700
|
-
{ [_e]: _c },
|
|
1701
|
-
[_M, _RIR, _PIRr],
|
|
1702
|
-
[0, 64 | 0, 64 | 0]
|
|
1703
|
-
];
|
|
1704
|
-
schema.TypeRegistry.for(n0).registerError(UnableToDetectSchemaException$, UnableToDetectSchemaException);
|
|
1705
|
-
var UnsupportedOperationException$ = [-3, n0, _UOE,
|
|
1706
|
-
{ [_e]: _c },
|
|
1707
|
-
[_M],
|
|
1708
|
-
[0]
|
|
1709
|
-
];
|
|
1710
|
-
schema.TypeRegistry.for(n0).registerError(UnsupportedOperationException$, UnsupportedOperationException);
|
|
1711
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1712
|
-
0,
|
|
1713
|
-
[_RARNe, _TK],
|
|
1714
|
-
[0, 64 | 0], 2
|
|
1715
|
-
];
|
|
1716
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1717
|
-
0,
|
|
1718
|
-
[],
|
|
1719
|
-
[]
|
|
1720
|
-
];
|
|
1721
|
-
var UpdateApplicationMaintenanceConfigurationRequest$ = [3, n0, _UAMCR,
|
|
1722
|
-
0,
|
|
1723
|
-
[_AN, _AMCU],
|
|
1724
|
-
[0, () => ApplicationMaintenanceConfigurationUpdate$], 2
|
|
1725
|
-
];
|
|
1726
|
-
var UpdateApplicationMaintenanceConfigurationResponse$ = [3, n0, _UAMCRp,
|
|
1727
|
-
0,
|
|
1728
|
-
[_AARN, _AMCD],
|
|
1729
|
-
[0, () => ApplicationMaintenanceConfigurationDescription$]
|
|
1730
|
-
];
|
|
1731
|
-
var UpdateApplicationRequest$ = [3, n0, _UAR,
|
|
1732
|
-
0,
|
|
1733
|
-
[_AN, _CAVI, _ACU, _SERU, _RCUu, _CWLOUl, _CT, _REUu],
|
|
1734
|
-
[0, 1, () => ApplicationConfigurationUpdate$, 0, () => RunConfigurationUpdate$, () => CloudWatchLoggingOptionUpdates, 0, 0], 1
|
|
1735
|
-
];
|
|
1736
|
-
var UpdateApplicationResponse$ = [3, n0, _UARp,
|
|
1737
|
-
0,
|
|
1738
|
-
[_AD, _OI],
|
|
1739
|
-
[() => ApplicationDetail$, 0], 1
|
|
1740
|
-
];
|
|
1741
|
-
var VpcConfiguration$ = [3, n0, _VC,
|
|
1742
|
-
0,
|
|
1743
|
-
[_SI, _SGI],
|
|
1744
|
-
[64 | 0, 64 | 0], 2
|
|
1745
|
-
];
|
|
1746
|
-
var VpcConfigurationDescription$ = [3, n0, _VCD,
|
|
1747
|
-
0,
|
|
1748
|
-
[_VCI, _VI, _SI, _SGI],
|
|
1749
|
-
[0, 0, 64 | 0, 64 | 0], 4
|
|
1750
|
-
];
|
|
1751
|
-
var VpcConfigurationUpdate$ = [3, n0, _VCUp,
|
|
1752
|
-
0,
|
|
1753
|
-
[_VCI, _SIU, _SGIU],
|
|
1754
|
-
[0, 64 | 0, 64 | 0], 1
|
|
1755
|
-
];
|
|
1756
|
-
var ZeppelinApplicationConfiguration$ = [3, n0, _ZAC,
|
|
1757
|
-
0,
|
|
1758
|
-
[_MC, _CCa, _DAAC, _CACu],
|
|
1759
|
-
[() => ZeppelinMonitoringConfiguration$, () => CatalogConfiguration$, () => DeployAsApplicationConfiguration$, () => CustomArtifactsConfigurationList]
|
|
1760
|
-
];
|
|
1761
|
-
var ZeppelinApplicationConfigurationDescription$ = [3, n0, _ZACD,
|
|
1762
|
-
0,
|
|
1763
|
-
[_MCD, _CCDa, _DAACD, _CACDu],
|
|
1764
|
-
[() => ZeppelinMonitoringConfigurationDescription$, () => CatalogConfigurationDescription$, () => DeployAsApplicationConfigurationDescription$, () => CustomArtifactsConfigurationDescriptionList], 1
|
|
1765
|
-
];
|
|
1766
|
-
var ZeppelinApplicationConfigurationUpdate$ = [3, n0, _ZACU,
|
|
1767
|
-
0,
|
|
1768
|
-
[_MCU, _CCUa, _DAACU, _CACU],
|
|
1769
|
-
[() => ZeppelinMonitoringConfigurationUpdate$, () => CatalogConfigurationUpdate$, () => DeployAsApplicationConfigurationUpdate$, () => CustomArtifactsConfigurationList]
|
|
1770
|
-
];
|
|
1771
|
-
var ZeppelinMonitoringConfiguration$ = [3, n0, _ZMC,
|
|
1772
|
-
0,
|
|
1773
|
-
[_LL],
|
|
1774
|
-
[0], 1
|
|
1775
|
-
];
|
|
1776
|
-
var ZeppelinMonitoringConfigurationDescription$ = [3, n0, _ZMCD,
|
|
1777
|
-
0,
|
|
1778
|
-
[_LL],
|
|
1779
|
-
[0]
|
|
1780
|
-
];
|
|
1781
|
-
var ZeppelinMonitoringConfigurationUpdate$ = [3, n0, _ZMCU,
|
|
1782
|
-
0,
|
|
1783
|
-
[_LLU],
|
|
1784
|
-
[0], 1
|
|
1785
|
-
];
|
|
1786
|
-
var KinesisAnalyticsV2ServiceException$ = [-3, _sm, "KinesisAnalyticsV2ServiceException", 0, [], []];
|
|
1787
|
-
schema.TypeRegistry.for(_sm).registerError(KinesisAnalyticsV2ServiceException$, KinesisAnalyticsV2ServiceException);
|
|
1788
|
-
var ApplicationOperationInfoList = [1, n0, _AOIL,
|
|
1789
|
-
0, () => ApplicationOperationInfo$
|
|
1790
|
-
];
|
|
1791
|
-
var ApplicationSummaries = [1, n0, _ASpp,
|
|
1792
|
-
0, () => ApplicationSummary$
|
|
1793
|
-
];
|
|
1794
|
-
var ApplicationVersionSummaries = [1, n0, _AVSp,
|
|
1795
|
-
0, () => ApplicationVersionSummary$
|
|
1796
|
-
];
|
|
1797
|
-
var CloudWatchLoggingOptionDescriptions = [1, n0, _CWLOD,
|
|
1798
|
-
0, () => CloudWatchLoggingOptionDescription$
|
|
1799
|
-
];
|
|
1800
|
-
var CloudWatchLoggingOptions = [1, n0, _CWLOl,
|
|
1801
|
-
0, () => CloudWatchLoggingOption$
|
|
1802
|
-
];
|
|
1803
|
-
var CloudWatchLoggingOptionUpdates = [1, n0, _CWLOUl,
|
|
1804
|
-
0, () => CloudWatchLoggingOptionUpdate$
|
|
1805
|
-
];
|
|
1806
|
-
var CustomArtifactsConfigurationDescriptionList = [1, n0, _CACDL,
|
|
1807
|
-
0, () => CustomArtifactConfigurationDescription$
|
|
1808
|
-
];
|
|
1809
|
-
var CustomArtifactsConfigurationList = [1, n0, _CACL,
|
|
1810
|
-
0, () => CustomArtifactConfiguration$
|
|
1811
|
-
];
|
|
1812
|
-
var InputDescriptions = [1, n0, _ID,
|
|
1813
|
-
0, () => InputDescription$
|
|
1814
|
-
];
|
|
1815
|
-
var Inputs = [1, n0, _In,
|
|
1816
|
-
0, () => Input$
|
|
1817
|
-
];
|
|
1818
|
-
var InputUpdates = [1, n0, _IUn,
|
|
1819
|
-
0, () => InputUpdate$
|
|
1820
|
-
];
|
|
1821
|
-
var OutputDescriptions = [1, n0, _OD,
|
|
1822
|
-
0, () => OutputDescription$
|
|
1823
|
-
];
|
|
1824
|
-
var Outputs = [1, n0, _Ou,
|
|
1825
|
-
0, () => Output$
|
|
1826
|
-
];
|
|
1827
|
-
var OutputUpdates = [1, n0, _OUu,
|
|
1828
|
-
0, () => OutputUpdate$
|
|
1829
|
-
];
|
|
1830
|
-
var PropertyGroups = [1, n0, _PG,
|
|
1831
|
-
0, () => PropertyGroup$
|
|
1832
|
-
];
|
|
1833
|
-
var RecordColumns = [1, n0, _RCe,
|
|
1834
|
-
0, () => RecordColumn$
|
|
1835
|
-
];
|
|
1836
|
-
var ReferenceDataSourceDescriptions = [1, n0, _RDSD,
|
|
1837
|
-
0, () => ReferenceDataSourceDescription$
|
|
1838
|
-
];
|
|
1839
|
-
var ReferenceDataSources = [1, n0, _RDSe,
|
|
1840
|
-
0, () => ReferenceDataSource$
|
|
1841
|
-
];
|
|
1842
|
-
var ReferenceDataSourceUpdates = [1, n0, _RDSUe,
|
|
1843
|
-
0, () => ReferenceDataSourceUpdate$
|
|
1844
|
-
];
|
|
1845
|
-
var SnapshotSummaries = [1, n0, _SS,
|
|
1846
|
-
0, () => SnapshotDetails$
|
|
1847
|
-
];
|
|
1848
|
-
var SqlRunConfigurations = [1, n0, _SRC,
|
|
1849
|
-
0, () => SqlRunConfiguration$
|
|
1850
|
-
];
|
|
1851
|
-
var Tags = [1, n0, _T,
|
|
1852
|
-
0, () => Tag$
|
|
1853
|
-
];
|
|
1854
|
-
var VpcConfigurationDescriptions = [1, n0, _VCDp,
|
|
1855
|
-
0, () => VpcConfigurationDescription$
|
|
1856
|
-
];
|
|
1857
|
-
var VpcConfigurations = [1, n0, _VCp,
|
|
1858
|
-
0, () => VpcConfiguration$
|
|
1859
|
-
];
|
|
1860
|
-
var VpcConfigurationUpdates = [1, n0, _VCU,
|
|
1861
|
-
0, () => VpcConfigurationUpdate$
|
|
1862
|
-
];
|
|
1863
|
-
var AddApplicationCloudWatchLoggingOption$ = [9, n0, _AACWLO,
|
|
1864
|
-
0, () => AddApplicationCloudWatchLoggingOptionRequest$, () => AddApplicationCloudWatchLoggingOptionResponse$
|
|
1865
|
-
];
|
|
1866
|
-
var AddApplicationInput$ = [9, n0, _AAI,
|
|
1867
|
-
0, () => AddApplicationInputRequest$, () => AddApplicationInputResponse$
|
|
1868
|
-
];
|
|
1869
|
-
var AddApplicationInputProcessingConfiguration$ = [9, n0, _AAIPC,
|
|
1870
|
-
0, () => AddApplicationInputProcessingConfigurationRequest$, () => AddApplicationInputProcessingConfigurationResponse$
|
|
1871
|
-
];
|
|
1872
|
-
var AddApplicationOutput$ = [9, n0, _AAO,
|
|
1873
|
-
0, () => AddApplicationOutputRequest$, () => AddApplicationOutputResponse$
|
|
1874
|
-
];
|
|
1875
|
-
var AddApplicationReferenceDataSource$ = [9, n0, _AARDS,
|
|
1876
|
-
0, () => AddApplicationReferenceDataSourceRequest$, () => AddApplicationReferenceDataSourceResponse$
|
|
1877
|
-
];
|
|
1878
|
-
var AddApplicationVpcConfiguration$ = [9, n0, _AAVC,
|
|
1879
|
-
0, () => AddApplicationVpcConfigurationRequest$, () => AddApplicationVpcConfigurationResponse$
|
|
1880
|
-
];
|
|
1881
|
-
var CreateApplication$ = [9, n0, _CA,
|
|
1882
|
-
0, () => CreateApplicationRequest$, () => CreateApplicationResponse$
|
|
1883
|
-
];
|
|
1884
|
-
var CreateApplicationPresignedUrl$ = [9, n0, _CAPU,
|
|
1885
|
-
0, () => CreateApplicationPresignedUrlRequest$, () => CreateApplicationPresignedUrlResponse$
|
|
1886
|
-
];
|
|
1887
|
-
var CreateApplicationSnapshot$ = [9, n0, _CAS,
|
|
1888
|
-
0, () => CreateApplicationSnapshotRequest$, () => CreateApplicationSnapshotResponse$
|
|
1889
|
-
];
|
|
1890
|
-
var DeleteApplication$ = [9, n0, _DA,
|
|
1891
|
-
0, () => DeleteApplicationRequest$, () => DeleteApplicationResponse$
|
|
1892
|
-
];
|
|
1893
|
-
var DeleteApplicationCloudWatchLoggingOption$ = [9, n0, _DACWLO,
|
|
1894
|
-
0, () => DeleteApplicationCloudWatchLoggingOptionRequest$, () => DeleteApplicationCloudWatchLoggingOptionResponse$
|
|
1895
|
-
];
|
|
1896
|
-
var DeleteApplicationInputProcessingConfiguration$ = [9, n0, _DAIPC,
|
|
1897
|
-
0, () => DeleteApplicationInputProcessingConfigurationRequest$, () => DeleteApplicationInputProcessingConfigurationResponse$
|
|
1898
|
-
];
|
|
1899
|
-
var DeleteApplicationOutput$ = [9, n0, _DAO,
|
|
1900
|
-
0, () => DeleteApplicationOutputRequest$, () => DeleteApplicationOutputResponse$
|
|
1901
|
-
];
|
|
1902
|
-
var DeleteApplicationReferenceDataSource$ = [9, n0, _DARDS,
|
|
1903
|
-
0, () => DeleteApplicationReferenceDataSourceRequest$, () => DeleteApplicationReferenceDataSourceResponse$
|
|
1904
|
-
];
|
|
1905
|
-
var DeleteApplicationSnapshot$ = [9, n0, _DAS,
|
|
1906
|
-
0, () => DeleteApplicationSnapshotRequest$, () => DeleteApplicationSnapshotResponse$
|
|
1907
|
-
];
|
|
1908
|
-
var DeleteApplicationVpcConfiguration$ = [9, n0, _DAVC,
|
|
1909
|
-
0, () => DeleteApplicationVpcConfigurationRequest$, () => DeleteApplicationVpcConfigurationResponse$
|
|
1910
|
-
];
|
|
1911
|
-
var DescribeApplication$ = [9, n0, _DAe,
|
|
1912
|
-
0, () => DescribeApplicationRequest$, () => DescribeApplicationResponse$
|
|
1913
|
-
];
|
|
1914
|
-
var DescribeApplicationOperation$ = [9, n0, _DAOe,
|
|
1915
|
-
0, () => DescribeApplicationOperationRequest$, () => DescribeApplicationOperationResponse$
|
|
1916
|
-
];
|
|
1917
|
-
var DescribeApplicationSnapshot$ = [9, n0, _DASe,
|
|
1918
|
-
0, () => DescribeApplicationSnapshotRequest$, () => DescribeApplicationSnapshotResponse$
|
|
1919
|
-
];
|
|
1920
|
-
var DescribeApplicationVersion$ = [9, n0, _DAV,
|
|
1921
|
-
0, () => DescribeApplicationVersionRequest$, () => DescribeApplicationVersionResponse$
|
|
1922
|
-
];
|
|
1923
|
-
var DiscoverInputSchema$ = [9, n0, _DIS,
|
|
1924
|
-
0, () => DiscoverInputSchemaRequest$, () => DiscoverInputSchemaResponse$
|
|
1925
|
-
];
|
|
1926
|
-
var ListApplicationOperations$ = [9, n0, _LAO,
|
|
1927
|
-
0, () => ListApplicationOperationsRequest$, () => ListApplicationOperationsResponse$
|
|
1928
|
-
];
|
|
1929
|
-
var ListApplications$ = [9, n0, _LA,
|
|
1930
|
-
0, () => ListApplicationsRequest$, () => ListApplicationsResponse$
|
|
1931
|
-
];
|
|
1932
|
-
var ListApplicationSnapshots$ = [9, n0, _LAS,
|
|
1933
|
-
0, () => ListApplicationSnapshotsRequest$, () => ListApplicationSnapshotsResponse$
|
|
1934
|
-
];
|
|
1935
|
-
var ListApplicationVersions$ = [9, n0, _LAV,
|
|
1936
|
-
0, () => ListApplicationVersionsRequest$, () => ListApplicationVersionsResponse$
|
|
1937
|
-
];
|
|
1938
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1939
|
-
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1940
|
-
];
|
|
1941
|
-
var RollbackApplication$ = [9, n0, _RA,
|
|
1942
|
-
0, () => RollbackApplicationRequest$, () => RollbackApplicationResponse$
|
|
1943
|
-
];
|
|
1944
|
-
var StartApplication$ = [9, n0, _SA,
|
|
1945
|
-
0, () => StartApplicationRequest$, () => StartApplicationResponse$
|
|
1946
|
-
];
|
|
1947
|
-
var StopApplication$ = [9, n0, _SAt,
|
|
1948
|
-
0, () => StopApplicationRequest$, () => StopApplicationResponse$
|
|
1949
|
-
];
|
|
1950
|
-
var TagResource$ = [9, n0, _TR,
|
|
1951
|
-
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1952
|
-
];
|
|
1953
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1954
|
-
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1955
|
-
];
|
|
1956
|
-
var UpdateApplication$ = [9, n0, _UA,
|
|
1957
|
-
0, () => UpdateApplicationRequest$, () => UpdateApplicationResponse$
|
|
1958
|
-
];
|
|
1959
|
-
var UpdateApplicationMaintenanceConfiguration$ = [9, n0, _UAMC,
|
|
1960
|
-
0, () => UpdateApplicationMaintenanceConfigurationRequest$, () => UpdateApplicationMaintenanceConfigurationResponse$
|
|
1961
|
-
];
|
|
1962
|
-
|
|
1963
116
|
class AddApplicationCloudWatchLoggingOptionCommand extends smithyClient.Command
|
|
1964
117
|
.classBuilder()
|
|
1965
118
|
.ep(commonParams)
|
|
@@ -1968,7 +121,7 @@ class AddApplicationCloudWatchLoggingOptionCommand extends smithyClient.Command
|
|
|
1968
121
|
})
|
|
1969
122
|
.s("KinesisAnalytics_20180523", "AddApplicationCloudWatchLoggingOption", {})
|
|
1970
123
|
.n("KinesisAnalyticsV2Client", "AddApplicationCloudWatchLoggingOptionCommand")
|
|
1971
|
-
.sc(AddApplicationCloudWatchLoggingOption$)
|
|
124
|
+
.sc(schemas_0.AddApplicationCloudWatchLoggingOption$)
|
|
1972
125
|
.build() {
|
|
1973
126
|
}
|
|
1974
127
|
|
|
@@ -1980,7 +133,7 @@ class AddApplicationInputCommand extends smithyClient.Command
|
|
|
1980
133
|
})
|
|
1981
134
|
.s("KinesisAnalytics_20180523", "AddApplicationInput", {})
|
|
1982
135
|
.n("KinesisAnalyticsV2Client", "AddApplicationInputCommand")
|
|
1983
|
-
.sc(AddApplicationInput$)
|
|
136
|
+
.sc(schemas_0.AddApplicationInput$)
|
|
1984
137
|
.build() {
|
|
1985
138
|
}
|
|
1986
139
|
|
|
@@ -1992,7 +145,7 @@ class AddApplicationInputProcessingConfigurationCommand extends smithyClient.Com
|
|
|
1992
145
|
})
|
|
1993
146
|
.s("KinesisAnalytics_20180523", "AddApplicationInputProcessingConfiguration", {})
|
|
1994
147
|
.n("KinesisAnalyticsV2Client", "AddApplicationInputProcessingConfigurationCommand")
|
|
1995
|
-
.sc(AddApplicationInputProcessingConfiguration$)
|
|
148
|
+
.sc(schemas_0.AddApplicationInputProcessingConfiguration$)
|
|
1996
149
|
.build() {
|
|
1997
150
|
}
|
|
1998
151
|
|
|
@@ -2004,7 +157,7 @@ class AddApplicationOutputCommand extends smithyClient.Command
|
|
|
2004
157
|
})
|
|
2005
158
|
.s("KinesisAnalytics_20180523", "AddApplicationOutput", {})
|
|
2006
159
|
.n("KinesisAnalyticsV2Client", "AddApplicationOutputCommand")
|
|
2007
|
-
.sc(AddApplicationOutput$)
|
|
160
|
+
.sc(schemas_0.AddApplicationOutput$)
|
|
2008
161
|
.build() {
|
|
2009
162
|
}
|
|
2010
163
|
|
|
@@ -2016,7 +169,7 @@ class AddApplicationReferenceDataSourceCommand extends smithyClient.Command
|
|
|
2016
169
|
})
|
|
2017
170
|
.s("KinesisAnalytics_20180523", "AddApplicationReferenceDataSource", {})
|
|
2018
171
|
.n("KinesisAnalyticsV2Client", "AddApplicationReferenceDataSourceCommand")
|
|
2019
|
-
.sc(AddApplicationReferenceDataSource$)
|
|
172
|
+
.sc(schemas_0.AddApplicationReferenceDataSource$)
|
|
2020
173
|
.build() {
|
|
2021
174
|
}
|
|
2022
175
|
|
|
@@ -2028,7 +181,7 @@ class AddApplicationVpcConfigurationCommand extends smithyClient.Command
|
|
|
2028
181
|
})
|
|
2029
182
|
.s("KinesisAnalytics_20180523", "AddApplicationVpcConfiguration", {})
|
|
2030
183
|
.n("KinesisAnalyticsV2Client", "AddApplicationVpcConfigurationCommand")
|
|
2031
|
-
.sc(AddApplicationVpcConfiguration$)
|
|
184
|
+
.sc(schemas_0.AddApplicationVpcConfiguration$)
|
|
2032
185
|
.build() {
|
|
2033
186
|
}
|
|
2034
187
|
|
|
@@ -2040,7 +193,7 @@ class CreateApplicationCommand extends smithyClient.Command
|
|
|
2040
193
|
})
|
|
2041
194
|
.s("KinesisAnalytics_20180523", "CreateApplication", {})
|
|
2042
195
|
.n("KinesisAnalyticsV2Client", "CreateApplicationCommand")
|
|
2043
|
-
.sc(CreateApplication$)
|
|
196
|
+
.sc(schemas_0.CreateApplication$)
|
|
2044
197
|
.build() {
|
|
2045
198
|
}
|
|
2046
199
|
|
|
@@ -2052,7 +205,7 @@ class CreateApplicationPresignedUrlCommand extends smithyClient.Command
|
|
|
2052
205
|
})
|
|
2053
206
|
.s("KinesisAnalytics_20180523", "CreateApplicationPresignedUrl", {})
|
|
2054
207
|
.n("KinesisAnalyticsV2Client", "CreateApplicationPresignedUrlCommand")
|
|
2055
|
-
.sc(CreateApplicationPresignedUrl$)
|
|
208
|
+
.sc(schemas_0.CreateApplicationPresignedUrl$)
|
|
2056
209
|
.build() {
|
|
2057
210
|
}
|
|
2058
211
|
|
|
@@ -2064,7 +217,7 @@ class CreateApplicationSnapshotCommand extends smithyClient.Command
|
|
|
2064
217
|
})
|
|
2065
218
|
.s("KinesisAnalytics_20180523", "CreateApplicationSnapshot", {})
|
|
2066
219
|
.n("KinesisAnalyticsV2Client", "CreateApplicationSnapshotCommand")
|
|
2067
|
-
.sc(CreateApplicationSnapshot$)
|
|
220
|
+
.sc(schemas_0.CreateApplicationSnapshot$)
|
|
2068
221
|
.build() {
|
|
2069
222
|
}
|
|
2070
223
|
|
|
@@ -2076,7 +229,7 @@ class DeleteApplicationCloudWatchLoggingOptionCommand extends smithyClient.Comma
|
|
|
2076
229
|
})
|
|
2077
230
|
.s("KinesisAnalytics_20180523", "DeleteApplicationCloudWatchLoggingOption", {})
|
|
2078
231
|
.n("KinesisAnalyticsV2Client", "DeleteApplicationCloudWatchLoggingOptionCommand")
|
|
2079
|
-
.sc(DeleteApplicationCloudWatchLoggingOption$)
|
|
232
|
+
.sc(schemas_0.DeleteApplicationCloudWatchLoggingOption$)
|
|
2080
233
|
.build() {
|
|
2081
234
|
}
|
|
2082
235
|
|
|
@@ -2088,7 +241,7 @@ class DeleteApplicationCommand extends smithyClient.Command
|
|
|
2088
241
|
})
|
|
2089
242
|
.s("KinesisAnalytics_20180523", "DeleteApplication", {})
|
|
2090
243
|
.n("KinesisAnalyticsV2Client", "DeleteApplicationCommand")
|
|
2091
|
-
.sc(DeleteApplication$)
|
|
244
|
+
.sc(schemas_0.DeleteApplication$)
|
|
2092
245
|
.build() {
|
|
2093
246
|
}
|
|
2094
247
|
|
|
@@ -2100,7 +253,7 @@ class DeleteApplicationInputProcessingConfigurationCommand extends smithyClient.
|
|
|
2100
253
|
})
|
|
2101
254
|
.s("KinesisAnalytics_20180523", "DeleteApplicationInputProcessingConfiguration", {})
|
|
2102
255
|
.n("KinesisAnalyticsV2Client", "DeleteApplicationInputProcessingConfigurationCommand")
|
|
2103
|
-
.sc(DeleteApplicationInputProcessingConfiguration$)
|
|
256
|
+
.sc(schemas_0.DeleteApplicationInputProcessingConfiguration$)
|
|
2104
257
|
.build() {
|
|
2105
258
|
}
|
|
2106
259
|
|
|
@@ -2112,7 +265,7 @@ class DeleteApplicationOutputCommand extends smithyClient.Command
|
|
|
2112
265
|
})
|
|
2113
266
|
.s("KinesisAnalytics_20180523", "DeleteApplicationOutput", {})
|
|
2114
267
|
.n("KinesisAnalyticsV2Client", "DeleteApplicationOutputCommand")
|
|
2115
|
-
.sc(DeleteApplicationOutput$)
|
|
268
|
+
.sc(schemas_0.DeleteApplicationOutput$)
|
|
2116
269
|
.build() {
|
|
2117
270
|
}
|
|
2118
271
|
|
|
@@ -2124,7 +277,7 @@ class DeleteApplicationReferenceDataSourceCommand extends smithyClient.Command
|
|
|
2124
277
|
})
|
|
2125
278
|
.s("KinesisAnalytics_20180523", "DeleteApplicationReferenceDataSource", {})
|
|
2126
279
|
.n("KinesisAnalyticsV2Client", "DeleteApplicationReferenceDataSourceCommand")
|
|
2127
|
-
.sc(DeleteApplicationReferenceDataSource$)
|
|
280
|
+
.sc(schemas_0.DeleteApplicationReferenceDataSource$)
|
|
2128
281
|
.build() {
|
|
2129
282
|
}
|
|
2130
283
|
|
|
@@ -2136,7 +289,7 @@ class DeleteApplicationSnapshotCommand extends smithyClient.Command
|
|
|
2136
289
|
})
|
|
2137
290
|
.s("KinesisAnalytics_20180523", "DeleteApplicationSnapshot", {})
|
|
2138
291
|
.n("KinesisAnalyticsV2Client", "DeleteApplicationSnapshotCommand")
|
|
2139
|
-
.sc(DeleteApplicationSnapshot$)
|
|
292
|
+
.sc(schemas_0.DeleteApplicationSnapshot$)
|
|
2140
293
|
.build() {
|
|
2141
294
|
}
|
|
2142
295
|
|
|
@@ -2148,7 +301,7 @@ class DeleteApplicationVpcConfigurationCommand extends smithyClient.Command
|
|
|
2148
301
|
})
|
|
2149
302
|
.s("KinesisAnalytics_20180523", "DeleteApplicationVpcConfiguration", {})
|
|
2150
303
|
.n("KinesisAnalyticsV2Client", "DeleteApplicationVpcConfigurationCommand")
|
|
2151
|
-
.sc(DeleteApplicationVpcConfiguration$)
|
|
304
|
+
.sc(schemas_0.DeleteApplicationVpcConfiguration$)
|
|
2152
305
|
.build() {
|
|
2153
306
|
}
|
|
2154
307
|
|
|
@@ -2160,7 +313,7 @@ class DescribeApplicationCommand extends smithyClient.Command
|
|
|
2160
313
|
})
|
|
2161
314
|
.s("KinesisAnalytics_20180523", "DescribeApplication", {})
|
|
2162
315
|
.n("KinesisAnalyticsV2Client", "DescribeApplicationCommand")
|
|
2163
|
-
.sc(DescribeApplication$)
|
|
316
|
+
.sc(schemas_0.DescribeApplication$)
|
|
2164
317
|
.build() {
|
|
2165
318
|
}
|
|
2166
319
|
|
|
@@ -2172,7 +325,7 @@ class DescribeApplicationOperationCommand extends smithyClient.Command
|
|
|
2172
325
|
})
|
|
2173
326
|
.s("KinesisAnalytics_20180523", "DescribeApplicationOperation", {})
|
|
2174
327
|
.n("KinesisAnalyticsV2Client", "DescribeApplicationOperationCommand")
|
|
2175
|
-
.sc(DescribeApplicationOperation$)
|
|
328
|
+
.sc(schemas_0.DescribeApplicationOperation$)
|
|
2176
329
|
.build() {
|
|
2177
330
|
}
|
|
2178
331
|
|
|
@@ -2184,7 +337,7 @@ class DescribeApplicationSnapshotCommand extends smithyClient.Command
|
|
|
2184
337
|
})
|
|
2185
338
|
.s("KinesisAnalytics_20180523", "DescribeApplicationSnapshot", {})
|
|
2186
339
|
.n("KinesisAnalyticsV2Client", "DescribeApplicationSnapshotCommand")
|
|
2187
|
-
.sc(DescribeApplicationSnapshot$)
|
|
340
|
+
.sc(schemas_0.DescribeApplicationSnapshot$)
|
|
2188
341
|
.build() {
|
|
2189
342
|
}
|
|
2190
343
|
|
|
@@ -2196,7 +349,7 @@ class DescribeApplicationVersionCommand extends smithyClient.Command
|
|
|
2196
349
|
})
|
|
2197
350
|
.s("KinesisAnalytics_20180523", "DescribeApplicationVersion", {})
|
|
2198
351
|
.n("KinesisAnalyticsV2Client", "DescribeApplicationVersionCommand")
|
|
2199
|
-
.sc(DescribeApplicationVersion$)
|
|
352
|
+
.sc(schemas_0.DescribeApplicationVersion$)
|
|
2200
353
|
.build() {
|
|
2201
354
|
}
|
|
2202
355
|
|
|
@@ -2208,7 +361,7 @@ class DiscoverInputSchemaCommand extends smithyClient.Command
|
|
|
2208
361
|
})
|
|
2209
362
|
.s("KinesisAnalytics_20180523", "DiscoverInputSchema", {})
|
|
2210
363
|
.n("KinesisAnalyticsV2Client", "DiscoverInputSchemaCommand")
|
|
2211
|
-
.sc(DiscoverInputSchema$)
|
|
364
|
+
.sc(schemas_0.DiscoverInputSchema$)
|
|
2212
365
|
.build() {
|
|
2213
366
|
}
|
|
2214
367
|
|
|
@@ -2220,7 +373,7 @@ class ListApplicationOperationsCommand extends smithyClient.Command
|
|
|
2220
373
|
})
|
|
2221
374
|
.s("KinesisAnalytics_20180523", "ListApplicationOperations", {})
|
|
2222
375
|
.n("KinesisAnalyticsV2Client", "ListApplicationOperationsCommand")
|
|
2223
|
-
.sc(ListApplicationOperations$)
|
|
376
|
+
.sc(schemas_0.ListApplicationOperations$)
|
|
2224
377
|
.build() {
|
|
2225
378
|
}
|
|
2226
379
|
|
|
@@ -2232,7 +385,7 @@ class ListApplicationsCommand extends smithyClient.Command
|
|
|
2232
385
|
})
|
|
2233
386
|
.s("KinesisAnalytics_20180523", "ListApplications", {})
|
|
2234
387
|
.n("KinesisAnalyticsV2Client", "ListApplicationsCommand")
|
|
2235
|
-
.sc(ListApplications$)
|
|
388
|
+
.sc(schemas_0.ListApplications$)
|
|
2236
389
|
.build() {
|
|
2237
390
|
}
|
|
2238
391
|
|
|
@@ -2244,7 +397,7 @@ class ListApplicationSnapshotsCommand extends smithyClient.Command
|
|
|
2244
397
|
})
|
|
2245
398
|
.s("KinesisAnalytics_20180523", "ListApplicationSnapshots", {})
|
|
2246
399
|
.n("KinesisAnalyticsV2Client", "ListApplicationSnapshotsCommand")
|
|
2247
|
-
.sc(ListApplicationSnapshots$)
|
|
400
|
+
.sc(schemas_0.ListApplicationSnapshots$)
|
|
2248
401
|
.build() {
|
|
2249
402
|
}
|
|
2250
403
|
|
|
@@ -2256,7 +409,7 @@ class ListApplicationVersionsCommand extends smithyClient.Command
|
|
|
2256
409
|
})
|
|
2257
410
|
.s("KinesisAnalytics_20180523", "ListApplicationVersions", {})
|
|
2258
411
|
.n("KinesisAnalyticsV2Client", "ListApplicationVersionsCommand")
|
|
2259
|
-
.sc(ListApplicationVersions$)
|
|
412
|
+
.sc(schemas_0.ListApplicationVersions$)
|
|
2260
413
|
.build() {
|
|
2261
414
|
}
|
|
2262
415
|
|
|
@@ -2268,7 +421,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
2268
421
|
})
|
|
2269
422
|
.s("KinesisAnalytics_20180523", "ListTagsForResource", {})
|
|
2270
423
|
.n("KinesisAnalyticsV2Client", "ListTagsForResourceCommand")
|
|
2271
|
-
.sc(ListTagsForResource$)
|
|
424
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
2272
425
|
.build() {
|
|
2273
426
|
}
|
|
2274
427
|
|
|
@@ -2280,7 +433,7 @@ class RollbackApplicationCommand extends smithyClient.Command
|
|
|
2280
433
|
})
|
|
2281
434
|
.s("KinesisAnalytics_20180523", "RollbackApplication", {})
|
|
2282
435
|
.n("KinesisAnalyticsV2Client", "RollbackApplicationCommand")
|
|
2283
|
-
.sc(RollbackApplication$)
|
|
436
|
+
.sc(schemas_0.RollbackApplication$)
|
|
2284
437
|
.build() {
|
|
2285
438
|
}
|
|
2286
439
|
|
|
@@ -2292,7 +445,7 @@ class StartApplicationCommand extends smithyClient.Command
|
|
|
2292
445
|
})
|
|
2293
446
|
.s("KinesisAnalytics_20180523", "StartApplication", {})
|
|
2294
447
|
.n("KinesisAnalyticsV2Client", "StartApplicationCommand")
|
|
2295
|
-
.sc(StartApplication$)
|
|
448
|
+
.sc(schemas_0.StartApplication$)
|
|
2296
449
|
.build() {
|
|
2297
450
|
}
|
|
2298
451
|
|
|
@@ -2304,7 +457,7 @@ class StopApplicationCommand extends smithyClient.Command
|
|
|
2304
457
|
})
|
|
2305
458
|
.s("KinesisAnalytics_20180523", "StopApplication", {})
|
|
2306
459
|
.n("KinesisAnalyticsV2Client", "StopApplicationCommand")
|
|
2307
|
-
.sc(StopApplication$)
|
|
460
|
+
.sc(schemas_0.StopApplication$)
|
|
2308
461
|
.build() {
|
|
2309
462
|
}
|
|
2310
463
|
|
|
@@ -2316,7 +469,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
2316
469
|
})
|
|
2317
470
|
.s("KinesisAnalytics_20180523", "TagResource", {})
|
|
2318
471
|
.n("KinesisAnalyticsV2Client", "TagResourceCommand")
|
|
2319
|
-
.sc(TagResource$)
|
|
472
|
+
.sc(schemas_0.TagResource$)
|
|
2320
473
|
.build() {
|
|
2321
474
|
}
|
|
2322
475
|
|
|
@@ -2328,7 +481,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2328
481
|
})
|
|
2329
482
|
.s("KinesisAnalytics_20180523", "UntagResource", {})
|
|
2330
483
|
.n("KinesisAnalyticsV2Client", "UntagResourceCommand")
|
|
2331
|
-
.sc(UntagResource$)
|
|
484
|
+
.sc(schemas_0.UntagResource$)
|
|
2332
485
|
.build() {
|
|
2333
486
|
}
|
|
2334
487
|
|
|
@@ -2340,7 +493,7 @@ class UpdateApplicationCommand extends smithyClient.Command
|
|
|
2340
493
|
})
|
|
2341
494
|
.s("KinesisAnalytics_20180523", "UpdateApplication", {})
|
|
2342
495
|
.n("KinesisAnalyticsV2Client", "UpdateApplicationCommand")
|
|
2343
|
-
.sc(UpdateApplication$)
|
|
496
|
+
.sc(schemas_0.UpdateApplication$)
|
|
2344
497
|
.build() {
|
|
2345
498
|
}
|
|
2346
499
|
|
|
@@ -2352,7 +505,7 @@ class UpdateApplicationMaintenanceConfigurationCommand extends smithyClient.Comm
|
|
|
2352
505
|
})
|
|
2353
506
|
.s("KinesisAnalytics_20180523", "UpdateApplicationMaintenanceConfiguration", {})
|
|
2354
507
|
.n("KinesisAnalyticsV2Client", "UpdateApplicationMaintenanceConfigurationCommand")
|
|
2355
|
-
.sc(UpdateApplicationMaintenanceConfiguration$)
|
|
508
|
+
.sc(schemas_0.UpdateApplicationMaintenanceConfiguration$)
|
|
2356
509
|
.build() {
|
|
2357
510
|
}
|
|
2358
511
|
|
|
@@ -2507,314 +660,73 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2507
660
|
enumerable: true,
|
|
2508
661
|
get: function () { return smithyClient.Client; }
|
|
2509
662
|
});
|
|
2510
|
-
exports
|
|
663
|
+
Object.defineProperty(exports, "KinesisAnalyticsV2ServiceException", {
|
|
664
|
+
enumerable: true,
|
|
665
|
+
get: function () { return KinesisAnalyticsV2ServiceException.KinesisAnalyticsV2ServiceException; }
|
|
666
|
+
});
|
|
2511
667
|
exports.AddApplicationCloudWatchLoggingOptionCommand = AddApplicationCloudWatchLoggingOptionCommand;
|
|
2512
|
-
exports.AddApplicationCloudWatchLoggingOptionRequest$ = AddApplicationCloudWatchLoggingOptionRequest$;
|
|
2513
|
-
exports.AddApplicationCloudWatchLoggingOptionResponse$ = AddApplicationCloudWatchLoggingOptionResponse$;
|
|
2514
|
-
exports.AddApplicationInput$ = AddApplicationInput$;
|
|
2515
668
|
exports.AddApplicationInputCommand = AddApplicationInputCommand;
|
|
2516
|
-
exports.AddApplicationInputProcessingConfiguration$ = AddApplicationInputProcessingConfiguration$;
|
|
2517
669
|
exports.AddApplicationInputProcessingConfigurationCommand = AddApplicationInputProcessingConfigurationCommand;
|
|
2518
|
-
exports.AddApplicationInputProcessingConfigurationRequest$ = AddApplicationInputProcessingConfigurationRequest$;
|
|
2519
|
-
exports.AddApplicationInputProcessingConfigurationResponse$ = AddApplicationInputProcessingConfigurationResponse$;
|
|
2520
|
-
exports.AddApplicationInputRequest$ = AddApplicationInputRequest$;
|
|
2521
|
-
exports.AddApplicationInputResponse$ = AddApplicationInputResponse$;
|
|
2522
|
-
exports.AddApplicationOutput$ = AddApplicationOutput$;
|
|
2523
670
|
exports.AddApplicationOutputCommand = AddApplicationOutputCommand;
|
|
2524
|
-
exports.AddApplicationOutputRequest$ = AddApplicationOutputRequest$;
|
|
2525
|
-
exports.AddApplicationOutputResponse$ = AddApplicationOutputResponse$;
|
|
2526
|
-
exports.AddApplicationReferenceDataSource$ = AddApplicationReferenceDataSource$;
|
|
2527
671
|
exports.AddApplicationReferenceDataSourceCommand = AddApplicationReferenceDataSourceCommand;
|
|
2528
|
-
exports.AddApplicationReferenceDataSourceRequest$ = AddApplicationReferenceDataSourceRequest$;
|
|
2529
|
-
exports.AddApplicationReferenceDataSourceResponse$ = AddApplicationReferenceDataSourceResponse$;
|
|
2530
|
-
exports.AddApplicationVpcConfiguration$ = AddApplicationVpcConfiguration$;
|
|
2531
672
|
exports.AddApplicationVpcConfigurationCommand = AddApplicationVpcConfigurationCommand;
|
|
2532
|
-
exports.AddApplicationVpcConfigurationRequest$ = AddApplicationVpcConfigurationRequest$;
|
|
2533
|
-
exports.AddApplicationVpcConfigurationResponse$ = AddApplicationVpcConfigurationResponse$;
|
|
2534
|
-
exports.ApplicationCodeConfiguration$ = ApplicationCodeConfiguration$;
|
|
2535
|
-
exports.ApplicationCodeConfigurationDescription$ = ApplicationCodeConfigurationDescription$;
|
|
2536
|
-
exports.ApplicationCodeConfigurationUpdate$ = ApplicationCodeConfigurationUpdate$;
|
|
2537
|
-
exports.ApplicationConfiguration$ = ApplicationConfiguration$;
|
|
2538
|
-
exports.ApplicationConfigurationDescription$ = ApplicationConfigurationDescription$;
|
|
2539
|
-
exports.ApplicationConfigurationUpdate$ = ApplicationConfigurationUpdate$;
|
|
2540
|
-
exports.ApplicationDetail$ = ApplicationDetail$;
|
|
2541
|
-
exports.ApplicationEncryptionConfiguration$ = ApplicationEncryptionConfiguration$;
|
|
2542
|
-
exports.ApplicationEncryptionConfigurationDescription$ = ApplicationEncryptionConfigurationDescription$;
|
|
2543
|
-
exports.ApplicationEncryptionConfigurationUpdate$ = ApplicationEncryptionConfigurationUpdate$;
|
|
2544
|
-
exports.ApplicationMaintenanceConfigurationDescription$ = ApplicationMaintenanceConfigurationDescription$;
|
|
2545
|
-
exports.ApplicationMaintenanceConfigurationUpdate$ = ApplicationMaintenanceConfigurationUpdate$;
|
|
2546
673
|
exports.ApplicationMode = ApplicationMode;
|
|
2547
|
-
exports.ApplicationOperationInfo$ = ApplicationOperationInfo$;
|
|
2548
|
-
exports.ApplicationOperationInfoDetails$ = ApplicationOperationInfoDetails$;
|
|
2549
|
-
exports.ApplicationRestoreConfiguration$ = ApplicationRestoreConfiguration$;
|
|
2550
674
|
exports.ApplicationRestoreType = ApplicationRestoreType;
|
|
2551
|
-
exports.ApplicationSnapshotConfiguration$ = ApplicationSnapshotConfiguration$;
|
|
2552
|
-
exports.ApplicationSnapshotConfigurationDescription$ = ApplicationSnapshotConfigurationDescription$;
|
|
2553
|
-
exports.ApplicationSnapshotConfigurationUpdate$ = ApplicationSnapshotConfigurationUpdate$;
|
|
2554
675
|
exports.ApplicationStatus = ApplicationStatus;
|
|
2555
|
-
exports.ApplicationSummary$ = ApplicationSummary$;
|
|
2556
|
-
exports.ApplicationSystemRollbackConfiguration$ = ApplicationSystemRollbackConfiguration$;
|
|
2557
|
-
exports.ApplicationSystemRollbackConfigurationDescription$ = ApplicationSystemRollbackConfigurationDescription$;
|
|
2558
|
-
exports.ApplicationSystemRollbackConfigurationUpdate$ = ApplicationSystemRollbackConfigurationUpdate$;
|
|
2559
|
-
exports.ApplicationVersionChangeDetails$ = ApplicationVersionChangeDetails$;
|
|
2560
|
-
exports.ApplicationVersionSummary$ = ApplicationVersionSummary$;
|
|
2561
676
|
exports.ArtifactType = ArtifactType;
|
|
2562
|
-
exports.CSVMappingParameters$ = CSVMappingParameters$;
|
|
2563
|
-
exports.CatalogConfiguration$ = CatalogConfiguration$;
|
|
2564
|
-
exports.CatalogConfigurationDescription$ = CatalogConfigurationDescription$;
|
|
2565
|
-
exports.CatalogConfigurationUpdate$ = CatalogConfigurationUpdate$;
|
|
2566
|
-
exports.CheckpointConfiguration$ = CheckpointConfiguration$;
|
|
2567
|
-
exports.CheckpointConfigurationDescription$ = CheckpointConfigurationDescription$;
|
|
2568
|
-
exports.CheckpointConfigurationUpdate$ = CheckpointConfigurationUpdate$;
|
|
2569
|
-
exports.CloudWatchLoggingOption$ = CloudWatchLoggingOption$;
|
|
2570
|
-
exports.CloudWatchLoggingOptionDescription$ = CloudWatchLoggingOptionDescription$;
|
|
2571
|
-
exports.CloudWatchLoggingOptionUpdate$ = CloudWatchLoggingOptionUpdate$;
|
|
2572
|
-
exports.CodeContent$ = CodeContent$;
|
|
2573
|
-
exports.CodeContentDescription$ = CodeContentDescription$;
|
|
2574
677
|
exports.CodeContentType = CodeContentType;
|
|
2575
|
-
exports.CodeContentUpdate$ = CodeContentUpdate$;
|
|
2576
|
-
exports.CodeValidationException = CodeValidationException;
|
|
2577
|
-
exports.CodeValidationException$ = CodeValidationException$;
|
|
2578
|
-
exports.ConcurrentModificationException = ConcurrentModificationException;
|
|
2579
|
-
exports.ConcurrentModificationException$ = ConcurrentModificationException$;
|
|
2580
678
|
exports.ConfigurationType = ConfigurationType;
|
|
2581
|
-
exports.CreateApplication$ = CreateApplication$;
|
|
2582
679
|
exports.CreateApplicationCommand = CreateApplicationCommand;
|
|
2583
|
-
exports.CreateApplicationPresignedUrl$ = CreateApplicationPresignedUrl$;
|
|
2584
680
|
exports.CreateApplicationPresignedUrlCommand = CreateApplicationPresignedUrlCommand;
|
|
2585
|
-
exports.CreateApplicationPresignedUrlRequest$ = CreateApplicationPresignedUrlRequest$;
|
|
2586
|
-
exports.CreateApplicationPresignedUrlResponse$ = CreateApplicationPresignedUrlResponse$;
|
|
2587
|
-
exports.CreateApplicationRequest$ = CreateApplicationRequest$;
|
|
2588
|
-
exports.CreateApplicationResponse$ = CreateApplicationResponse$;
|
|
2589
|
-
exports.CreateApplicationSnapshot$ = CreateApplicationSnapshot$;
|
|
2590
681
|
exports.CreateApplicationSnapshotCommand = CreateApplicationSnapshotCommand;
|
|
2591
|
-
exports.CreateApplicationSnapshotRequest$ = CreateApplicationSnapshotRequest$;
|
|
2592
|
-
exports.CreateApplicationSnapshotResponse$ = CreateApplicationSnapshotResponse$;
|
|
2593
|
-
exports.CustomArtifactConfiguration$ = CustomArtifactConfiguration$;
|
|
2594
|
-
exports.CustomArtifactConfigurationDescription$ = CustomArtifactConfigurationDescription$;
|
|
2595
|
-
exports.DeleteApplication$ = DeleteApplication$;
|
|
2596
|
-
exports.DeleteApplicationCloudWatchLoggingOption$ = DeleteApplicationCloudWatchLoggingOption$;
|
|
2597
682
|
exports.DeleteApplicationCloudWatchLoggingOptionCommand = DeleteApplicationCloudWatchLoggingOptionCommand;
|
|
2598
|
-
exports.DeleteApplicationCloudWatchLoggingOptionRequest$ = DeleteApplicationCloudWatchLoggingOptionRequest$;
|
|
2599
|
-
exports.DeleteApplicationCloudWatchLoggingOptionResponse$ = DeleteApplicationCloudWatchLoggingOptionResponse$;
|
|
2600
683
|
exports.DeleteApplicationCommand = DeleteApplicationCommand;
|
|
2601
|
-
exports.DeleteApplicationInputProcessingConfiguration$ = DeleteApplicationInputProcessingConfiguration$;
|
|
2602
684
|
exports.DeleteApplicationInputProcessingConfigurationCommand = DeleteApplicationInputProcessingConfigurationCommand;
|
|
2603
|
-
exports.DeleteApplicationInputProcessingConfigurationRequest$ = DeleteApplicationInputProcessingConfigurationRequest$;
|
|
2604
|
-
exports.DeleteApplicationInputProcessingConfigurationResponse$ = DeleteApplicationInputProcessingConfigurationResponse$;
|
|
2605
|
-
exports.DeleteApplicationOutput$ = DeleteApplicationOutput$;
|
|
2606
685
|
exports.DeleteApplicationOutputCommand = DeleteApplicationOutputCommand;
|
|
2607
|
-
exports.DeleteApplicationOutputRequest$ = DeleteApplicationOutputRequest$;
|
|
2608
|
-
exports.DeleteApplicationOutputResponse$ = DeleteApplicationOutputResponse$;
|
|
2609
|
-
exports.DeleteApplicationReferenceDataSource$ = DeleteApplicationReferenceDataSource$;
|
|
2610
686
|
exports.DeleteApplicationReferenceDataSourceCommand = DeleteApplicationReferenceDataSourceCommand;
|
|
2611
|
-
exports.DeleteApplicationReferenceDataSourceRequest$ = DeleteApplicationReferenceDataSourceRequest$;
|
|
2612
|
-
exports.DeleteApplicationReferenceDataSourceResponse$ = DeleteApplicationReferenceDataSourceResponse$;
|
|
2613
|
-
exports.DeleteApplicationRequest$ = DeleteApplicationRequest$;
|
|
2614
|
-
exports.DeleteApplicationResponse$ = DeleteApplicationResponse$;
|
|
2615
|
-
exports.DeleteApplicationSnapshot$ = DeleteApplicationSnapshot$;
|
|
2616
687
|
exports.DeleteApplicationSnapshotCommand = DeleteApplicationSnapshotCommand;
|
|
2617
|
-
exports.DeleteApplicationSnapshotRequest$ = DeleteApplicationSnapshotRequest$;
|
|
2618
|
-
exports.DeleteApplicationSnapshotResponse$ = DeleteApplicationSnapshotResponse$;
|
|
2619
|
-
exports.DeleteApplicationVpcConfiguration$ = DeleteApplicationVpcConfiguration$;
|
|
2620
688
|
exports.DeleteApplicationVpcConfigurationCommand = DeleteApplicationVpcConfigurationCommand;
|
|
2621
|
-
exports.DeleteApplicationVpcConfigurationRequest$ = DeleteApplicationVpcConfigurationRequest$;
|
|
2622
|
-
exports.DeleteApplicationVpcConfigurationResponse$ = DeleteApplicationVpcConfigurationResponse$;
|
|
2623
|
-
exports.DeployAsApplicationConfiguration$ = DeployAsApplicationConfiguration$;
|
|
2624
|
-
exports.DeployAsApplicationConfigurationDescription$ = DeployAsApplicationConfigurationDescription$;
|
|
2625
|
-
exports.DeployAsApplicationConfigurationUpdate$ = DeployAsApplicationConfigurationUpdate$;
|
|
2626
|
-
exports.DescribeApplication$ = DescribeApplication$;
|
|
2627
689
|
exports.DescribeApplicationCommand = DescribeApplicationCommand;
|
|
2628
|
-
exports.DescribeApplicationOperation$ = DescribeApplicationOperation$;
|
|
2629
690
|
exports.DescribeApplicationOperationCommand = DescribeApplicationOperationCommand;
|
|
2630
|
-
exports.DescribeApplicationOperationRequest$ = DescribeApplicationOperationRequest$;
|
|
2631
|
-
exports.DescribeApplicationOperationResponse$ = DescribeApplicationOperationResponse$;
|
|
2632
|
-
exports.DescribeApplicationRequest$ = DescribeApplicationRequest$;
|
|
2633
|
-
exports.DescribeApplicationResponse$ = DescribeApplicationResponse$;
|
|
2634
|
-
exports.DescribeApplicationSnapshot$ = DescribeApplicationSnapshot$;
|
|
2635
691
|
exports.DescribeApplicationSnapshotCommand = DescribeApplicationSnapshotCommand;
|
|
2636
|
-
exports.DescribeApplicationSnapshotRequest$ = DescribeApplicationSnapshotRequest$;
|
|
2637
|
-
exports.DescribeApplicationSnapshotResponse$ = DescribeApplicationSnapshotResponse$;
|
|
2638
|
-
exports.DescribeApplicationVersion$ = DescribeApplicationVersion$;
|
|
2639
692
|
exports.DescribeApplicationVersionCommand = DescribeApplicationVersionCommand;
|
|
2640
|
-
exports.DescribeApplicationVersionRequest$ = DescribeApplicationVersionRequest$;
|
|
2641
|
-
exports.DescribeApplicationVersionResponse$ = DescribeApplicationVersionResponse$;
|
|
2642
|
-
exports.DestinationSchema$ = DestinationSchema$;
|
|
2643
|
-
exports.DiscoverInputSchema$ = DiscoverInputSchema$;
|
|
2644
693
|
exports.DiscoverInputSchemaCommand = DiscoverInputSchemaCommand;
|
|
2645
|
-
exports.DiscoverInputSchemaRequest$ = DiscoverInputSchemaRequest$;
|
|
2646
|
-
exports.DiscoverInputSchemaResponse$ = DiscoverInputSchemaResponse$;
|
|
2647
|
-
exports.EnvironmentProperties$ = EnvironmentProperties$;
|
|
2648
|
-
exports.EnvironmentPropertyDescriptions$ = EnvironmentPropertyDescriptions$;
|
|
2649
|
-
exports.EnvironmentPropertyUpdates$ = EnvironmentPropertyUpdates$;
|
|
2650
|
-
exports.ErrorInfo$ = ErrorInfo$;
|
|
2651
|
-
exports.FlinkApplicationConfiguration$ = FlinkApplicationConfiguration$;
|
|
2652
|
-
exports.FlinkApplicationConfigurationDescription$ = FlinkApplicationConfigurationDescription$;
|
|
2653
|
-
exports.FlinkApplicationConfigurationUpdate$ = FlinkApplicationConfigurationUpdate$;
|
|
2654
|
-
exports.FlinkRunConfiguration$ = FlinkRunConfiguration$;
|
|
2655
|
-
exports.GlueDataCatalogConfiguration$ = GlueDataCatalogConfiguration$;
|
|
2656
|
-
exports.GlueDataCatalogConfigurationDescription$ = GlueDataCatalogConfigurationDescription$;
|
|
2657
|
-
exports.GlueDataCatalogConfigurationUpdate$ = GlueDataCatalogConfigurationUpdate$;
|
|
2658
|
-
exports.Input$ = Input$;
|
|
2659
|
-
exports.InputDescription$ = InputDescription$;
|
|
2660
|
-
exports.InputLambdaProcessor$ = InputLambdaProcessor$;
|
|
2661
|
-
exports.InputLambdaProcessorDescription$ = InputLambdaProcessorDescription$;
|
|
2662
|
-
exports.InputLambdaProcessorUpdate$ = InputLambdaProcessorUpdate$;
|
|
2663
|
-
exports.InputParallelism$ = InputParallelism$;
|
|
2664
|
-
exports.InputParallelismUpdate$ = InputParallelismUpdate$;
|
|
2665
|
-
exports.InputProcessingConfiguration$ = InputProcessingConfiguration$;
|
|
2666
|
-
exports.InputProcessingConfigurationDescription$ = InputProcessingConfigurationDescription$;
|
|
2667
|
-
exports.InputProcessingConfigurationUpdate$ = InputProcessingConfigurationUpdate$;
|
|
2668
|
-
exports.InputSchemaUpdate$ = InputSchemaUpdate$;
|
|
2669
694
|
exports.InputStartingPosition = InputStartingPosition;
|
|
2670
|
-
exports.InputStartingPositionConfiguration$ = InputStartingPositionConfiguration$;
|
|
2671
|
-
exports.InputUpdate$ = InputUpdate$;
|
|
2672
|
-
exports.InvalidApplicationConfigurationException = InvalidApplicationConfigurationException;
|
|
2673
|
-
exports.InvalidApplicationConfigurationException$ = InvalidApplicationConfigurationException$;
|
|
2674
|
-
exports.InvalidArgumentException = InvalidArgumentException;
|
|
2675
|
-
exports.InvalidArgumentException$ = InvalidArgumentException$;
|
|
2676
|
-
exports.InvalidRequestException = InvalidRequestException;
|
|
2677
|
-
exports.InvalidRequestException$ = InvalidRequestException$;
|
|
2678
|
-
exports.JSONMappingParameters$ = JSONMappingParameters$;
|
|
2679
695
|
exports.KeyType = KeyType;
|
|
2680
696
|
exports.KinesisAnalyticsV2 = KinesisAnalyticsV2;
|
|
2681
697
|
exports.KinesisAnalyticsV2Client = KinesisAnalyticsV2Client;
|
|
2682
|
-
exports.KinesisAnalyticsV2ServiceException = KinesisAnalyticsV2ServiceException;
|
|
2683
|
-
exports.KinesisAnalyticsV2ServiceException$ = KinesisAnalyticsV2ServiceException$;
|
|
2684
|
-
exports.KinesisFirehoseInput$ = KinesisFirehoseInput$;
|
|
2685
|
-
exports.KinesisFirehoseInputDescription$ = KinesisFirehoseInputDescription$;
|
|
2686
|
-
exports.KinesisFirehoseInputUpdate$ = KinesisFirehoseInputUpdate$;
|
|
2687
|
-
exports.KinesisFirehoseOutput$ = KinesisFirehoseOutput$;
|
|
2688
|
-
exports.KinesisFirehoseOutputDescription$ = KinesisFirehoseOutputDescription$;
|
|
2689
|
-
exports.KinesisFirehoseOutputUpdate$ = KinesisFirehoseOutputUpdate$;
|
|
2690
|
-
exports.KinesisStreamsInput$ = KinesisStreamsInput$;
|
|
2691
|
-
exports.KinesisStreamsInputDescription$ = KinesisStreamsInputDescription$;
|
|
2692
|
-
exports.KinesisStreamsInputUpdate$ = KinesisStreamsInputUpdate$;
|
|
2693
|
-
exports.KinesisStreamsOutput$ = KinesisStreamsOutput$;
|
|
2694
|
-
exports.KinesisStreamsOutputDescription$ = KinesisStreamsOutputDescription$;
|
|
2695
|
-
exports.KinesisStreamsOutputUpdate$ = KinesisStreamsOutputUpdate$;
|
|
2696
|
-
exports.LambdaOutput$ = LambdaOutput$;
|
|
2697
|
-
exports.LambdaOutputDescription$ = LambdaOutputDescription$;
|
|
2698
|
-
exports.LambdaOutputUpdate$ = LambdaOutputUpdate$;
|
|
2699
|
-
exports.LimitExceededException = LimitExceededException;
|
|
2700
|
-
exports.LimitExceededException$ = LimitExceededException$;
|
|
2701
|
-
exports.ListApplicationOperations$ = ListApplicationOperations$;
|
|
2702
698
|
exports.ListApplicationOperationsCommand = ListApplicationOperationsCommand;
|
|
2703
|
-
exports.ListApplicationOperationsRequest$ = ListApplicationOperationsRequest$;
|
|
2704
|
-
exports.ListApplicationOperationsResponse$ = ListApplicationOperationsResponse$;
|
|
2705
|
-
exports.ListApplicationSnapshots$ = ListApplicationSnapshots$;
|
|
2706
699
|
exports.ListApplicationSnapshotsCommand = ListApplicationSnapshotsCommand;
|
|
2707
|
-
exports.ListApplicationSnapshotsRequest$ = ListApplicationSnapshotsRequest$;
|
|
2708
|
-
exports.ListApplicationSnapshotsResponse$ = ListApplicationSnapshotsResponse$;
|
|
2709
|
-
exports.ListApplicationVersions$ = ListApplicationVersions$;
|
|
2710
700
|
exports.ListApplicationVersionsCommand = ListApplicationVersionsCommand;
|
|
2711
|
-
exports.ListApplicationVersionsRequest$ = ListApplicationVersionsRequest$;
|
|
2712
|
-
exports.ListApplicationVersionsResponse$ = ListApplicationVersionsResponse$;
|
|
2713
|
-
exports.ListApplications$ = ListApplications$;
|
|
2714
701
|
exports.ListApplicationsCommand = ListApplicationsCommand;
|
|
2715
|
-
exports.ListApplicationsRequest$ = ListApplicationsRequest$;
|
|
2716
|
-
exports.ListApplicationsResponse$ = ListApplicationsResponse$;
|
|
2717
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2718
702
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2719
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2720
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2721
703
|
exports.LogLevel = LogLevel;
|
|
2722
|
-
exports.MappingParameters$ = MappingParameters$;
|
|
2723
|
-
exports.MavenReference$ = MavenReference$;
|
|
2724
704
|
exports.MetricsLevel = MetricsLevel;
|
|
2725
|
-
exports.MonitoringConfiguration$ = MonitoringConfiguration$;
|
|
2726
|
-
exports.MonitoringConfigurationDescription$ = MonitoringConfigurationDescription$;
|
|
2727
|
-
exports.MonitoringConfigurationUpdate$ = MonitoringConfigurationUpdate$;
|
|
2728
|
-
exports.OperationFailureDetails$ = OperationFailureDetails$;
|
|
2729
705
|
exports.OperationStatus = OperationStatus;
|
|
2730
|
-
exports.Output$ = Output$;
|
|
2731
|
-
exports.OutputDescription$ = OutputDescription$;
|
|
2732
|
-
exports.OutputUpdate$ = OutputUpdate$;
|
|
2733
|
-
exports.ParallelismConfiguration$ = ParallelismConfiguration$;
|
|
2734
|
-
exports.ParallelismConfigurationDescription$ = ParallelismConfigurationDescription$;
|
|
2735
|
-
exports.ParallelismConfigurationUpdate$ = ParallelismConfigurationUpdate$;
|
|
2736
|
-
exports.PropertyGroup$ = PropertyGroup$;
|
|
2737
|
-
exports.RecordColumn$ = RecordColumn$;
|
|
2738
|
-
exports.RecordFormat$ = RecordFormat$;
|
|
2739
706
|
exports.RecordFormatType = RecordFormatType;
|
|
2740
|
-
exports.ReferenceDataSource$ = ReferenceDataSource$;
|
|
2741
|
-
exports.ReferenceDataSourceDescription$ = ReferenceDataSourceDescription$;
|
|
2742
|
-
exports.ReferenceDataSourceUpdate$ = ReferenceDataSourceUpdate$;
|
|
2743
|
-
exports.ResourceInUseException = ResourceInUseException;
|
|
2744
|
-
exports.ResourceInUseException$ = ResourceInUseException$;
|
|
2745
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2746
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2747
|
-
exports.ResourceProvisionedThroughputExceededException = ResourceProvisionedThroughputExceededException;
|
|
2748
|
-
exports.ResourceProvisionedThroughputExceededException$ = ResourceProvisionedThroughputExceededException$;
|
|
2749
|
-
exports.RollbackApplication$ = RollbackApplication$;
|
|
2750
707
|
exports.RollbackApplicationCommand = RollbackApplicationCommand;
|
|
2751
|
-
exports.RollbackApplicationRequest$ = RollbackApplicationRequest$;
|
|
2752
|
-
exports.RollbackApplicationResponse$ = RollbackApplicationResponse$;
|
|
2753
|
-
exports.RunConfiguration$ = RunConfiguration$;
|
|
2754
|
-
exports.RunConfigurationDescription$ = RunConfigurationDescription$;
|
|
2755
|
-
exports.RunConfigurationUpdate$ = RunConfigurationUpdate$;
|
|
2756
708
|
exports.RuntimeEnvironment = RuntimeEnvironment;
|
|
2757
|
-
exports.S3ApplicationCodeLocationDescription$ = S3ApplicationCodeLocationDescription$;
|
|
2758
|
-
exports.S3Configuration$ = S3Configuration$;
|
|
2759
|
-
exports.S3ContentBaseLocation$ = S3ContentBaseLocation$;
|
|
2760
|
-
exports.S3ContentBaseLocationDescription$ = S3ContentBaseLocationDescription$;
|
|
2761
|
-
exports.S3ContentBaseLocationUpdate$ = S3ContentBaseLocationUpdate$;
|
|
2762
|
-
exports.S3ContentLocation$ = S3ContentLocation$;
|
|
2763
|
-
exports.S3ContentLocationUpdate$ = S3ContentLocationUpdate$;
|
|
2764
|
-
exports.S3ReferenceDataSource$ = S3ReferenceDataSource$;
|
|
2765
|
-
exports.S3ReferenceDataSourceDescription$ = S3ReferenceDataSourceDescription$;
|
|
2766
|
-
exports.S3ReferenceDataSourceUpdate$ = S3ReferenceDataSourceUpdate$;
|
|
2767
|
-
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
2768
|
-
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
2769
|
-
exports.SnapshotDetails$ = SnapshotDetails$;
|
|
2770
709
|
exports.SnapshotStatus = SnapshotStatus;
|
|
2771
|
-
exports.SourceSchema$ = SourceSchema$;
|
|
2772
|
-
exports.SqlApplicationConfiguration$ = SqlApplicationConfiguration$;
|
|
2773
|
-
exports.SqlApplicationConfigurationDescription$ = SqlApplicationConfigurationDescription$;
|
|
2774
|
-
exports.SqlApplicationConfigurationUpdate$ = SqlApplicationConfigurationUpdate$;
|
|
2775
|
-
exports.SqlRunConfiguration$ = SqlRunConfiguration$;
|
|
2776
|
-
exports.StartApplication$ = StartApplication$;
|
|
2777
710
|
exports.StartApplicationCommand = StartApplicationCommand;
|
|
2778
|
-
exports.StartApplicationRequest$ = StartApplicationRequest$;
|
|
2779
|
-
exports.StartApplicationResponse$ = StartApplicationResponse$;
|
|
2780
|
-
exports.StopApplication$ = StopApplication$;
|
|
2781
711
|
exports.StopApplicationCommand = StopApplicationCommand;
|
|
2782
|
-
exports.StopApplicationRequest$ = StopApplicationRequest$;
|
|
2783
|
-
exports.StopApplicationResponse$ = StopApplicationResponse$;
|
|
2784
|
-
exports.Tag$ = Tag$;
|
|
2785
|
-
exports.TagResource$ = TagResource$;
|
|
2786
712
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2787
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2788
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2789
|
-
exports.TooManyTagsException = TooManyTagsException;
|
|
2790
|
-
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
2791
|
-
exports.UnableToDetectSchemaException = UnableToDetectSchemaException;
|
|
2792
|
-
exports.UnableToDetectSchemaException$ = UnableToDetectSchemaException$;
|
|
2793
|
-
exports.UnsupportedOperationException = UnsupportedOperationException;
|
|
2794
|
-
exports.UnsupportedOperationException$ = UnsupportedOperationException$;
|
|
2795
|
-
exports.UntagResource$ = UntagResource$;
|
|
2796
713
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2797
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2798
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2799
|
-
exports.UpdateApplication$ = UpdateApplication$;
|
|
2800
714
|
exports.UpdateApplicationCommand = UpdateApplicationCommand;
|
|
2801
|
-
exports.UpdateApplicationMaintenanceConfiguration$ = UpdateApplicationMaintenanceConfiguration$;
|
|
2802
715
|
exports.UpdateApplicationMaintenanceConfigurationCommand = UpdateApplicationMaintenanceConfigurationCommand;
|
|
2803
|
-
exports.UpdateApplicationMaintenanceConfigurationRequest$ = UpdateApplicationMaintenanceConfigurationRequest$;
|
|
2804
|
-
exports.UpdateApplicationMaintenanceConfigurationResponse$ = UpdateApplicationMaintenanceConfigurationResponse$;
|
|
2805
|
-
exports.UpdateApplicationRequest$ = UpdateApplicationRequest$;
|
|
2806
|
-
exports.UpdateApplicationResponse$ = UpdateApplicationResponse$;
|
|
2807
716
|
exports.UrlType = UrlType;
|
|
2808
|
-
exports.VpcConfiguration$ = VpcConfiguration$;
|
|
2809
|
-
exports.VpcConfigurationDescription$ = VpcConfigurationDescription$;
|
|
2810
|
-
exports.VpcConfigurationUpdate$ = VpcConfigurationUpdate$;
|
|
2811
|
-
exports.ZeppelinApplicationConfiguration$ = ZeppelinApplicationConfiguration$;
|
|
2812
|
-
exports.ZeppelinApplicationConfigurationDescription$ = ZeppelinApplicationConfigurationDescription$;
|
|
2813
|
-
exports.ZeppelinApplicationConfigurationUpdate$ = ZeppelinApplicationConfigurationUpdate$;
|
|
2814
|
-
exports.ZeppelinMonitoringConfiguration$ = ZeppelinMonitoringConfiguration$;
|
|
2815
|
-
exports.ZeppelinMonitoringConfigurationDescription$ = ZeppelinMonitoringConfigurationDescription$;
|
|
2816
|
-
exports.ZeppelinMonitoringConfigurationUpdate$ = ZeppelinMonitoringConfigurationUpdate$;
|
|
2817
717
|
exports.paginateListApplicationOperations = paginateListApplicationOperations;
|
|
2818
718
|
exports.paginateListApplicationSnapshots = paginateListApplicationSnapshots;
|
|
2819
719
|
exports.paginateListApplicationVersions = paginateListApplicationVersions;
|
|
2820
720
|
exports.paginateListApplications = paginateListApplications;
|
|
721
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
722
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
723
|
+
enumerable: true,
|
|
724
|
+
get: function () { return schemas_0[k]; }
|
|
725
|
+
});
|
|
726
|
+
});
|
|
727
|
+
Object.keys(errors).forEach(function (k) {
|
|
728
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
729
|
+
enumerable: true,
|
|
730
|
+
get: function () { return errors[k]; }
|
|
731
|
+
});
|
|
732
|
+
});
|