@aws-sdk/client-m2 3.928.0 → 3.930.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 +1918 -1865
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/M2Client.js +2 -0
- package/dist-es/commands/CancelBatchJobExecutionCommand.js +3 -9
- package/dist-es/commands/CreateApplicationCommand.js +3 -9
- package/dist-es/commands/CreateDataSetExportTaskCommand.js +3 -9
- package/dist-es/commands/CreateDataSetImportTaskCommand.js +3 -9
- package/dist-es/commands/CreateDeploymentCommand.js +3 -9
- package/dist-es/commands/CreateEnvironmentCommand.js +3 -9
- package/dist-es/commands/DeleteApplicationCommand.js +3 -9
- package/dist-es/commands/DeleteApplicationFromEnvironmentCommand.js +3 -9
- package/dist-es/commands/DeleteEnvironmentCommand.js +3 -9
- package/dist-es/commands/GetApplicationCommand.js +3 -9
- package/dist-es/commands/GetApplicationVersionCommand.js +3 -9
- package/dist-es/commands/GetBatchJobExecutionCommand.js +3 -9
- package/dist-es/commands/GetDataSetDetailsCommand.js +3 -9
- package/dist-es/commands/GetDataSetExportTaskCommand.js +3 -9
- package/dist-es/commands/GetDataSetImportTaskCommand.js +3 -9
- package/dist-es/commands/GetDeploymentCommand.js +3 -9
- package/dist-es/commands/GetEnvironmentCommand.js +3 -9
- package/dist-es/commands/GetSignedBluinsightsUrlCommand.js +3 -9
- package/dist-es/commands/ListApplicationVersionsCommand.js +3 -9
- package/dist-es/commands/ListApplicationsCommand.js +3 -9
- package/dist-es/commands/ListBatchJobDefinitionsCommand.js +3 -9
- package/dist-es/commands/ListBatchJobExecutionsCommand.js +3 -9
- package/dist-es/commands/ListBatchJobRestartPointsCommand.js +3 -9
- package/dist-es/commands/ListDataSetExportHistoryCommand.js +3 -9
- package/dist-es/commands/ListDataSetImportHistoryCommand.js +3 -9
- package/dist-es/commands/ListDataSetsCommand.js +3 -9
- package/dist-es/commands/ListDeploymentsCommand.js +3 -9
- package/dist-es/commands/ListEngineVersionsCommand.js +3 -9
- package/dist-es/commands/ListEnvironmentsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/StartApplicationCommand.js +3 -9
- package/dist-es/commands/StartBatchJobCommand.js +3 -9
- package/dist-es/commands/StopApplicationCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateApplicationCommand.js +3 -9
- package/dist-es/commands/UpdateEnvironmentCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -110
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1835 -0
- package/dist-types/M2Client.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +40 -10
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +199 -0
- package/dist-types/ts3.4/M2Client.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -10
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +204 -0
- package/package.json +33 -34
- package/dist-es/protocols/Aws_restJson1.js +0 -1481
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -335
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -449
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,9 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
|
-
var uuid = require('@smithy/uuid');
|
|
20
18
|
|
|
21
19
|
const resolveClientEndpointParameters = (options) => {
|
|
22
20
|
return Object.assign(options, {
|
|
@@ -92,6 +90,7 @@ class M2Client extends smithyClient.Client {
|
|
|
92
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
93
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
94
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
95
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
96
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
97
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -111,14 +110,14 @@ class M2Client extends smithyClient.Client {
|
|
|
111
110
|
}
|
|
112
111
|
}
|
|
113
112
|
|
|
114
|
-
class M2ServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let M2ServiceException$1 = class M2ServiceException extends smithyClient.ServiceException {
|
|
115
114
|
constructor(options) {
|
|
116
115
|
super(options);
|
|
117
116
|
Object.setPrototypeOf(this, M2ServiceException.prototype);
|
|
118
117
|
}
|
|
119
|
-
}
|
|
118
|
+
};
|
|
120
119
|
|
|
121
|
-
class AccessDeniedException extends M2ServiceException {
|
|
120
|
+
let AccessDeniedException$1 = class AccessDeniedException extends M2ServiceException$1 {
|
|
122
121
|
name = "AccessDeniedException";
|
|
123
122
|
$fault = "client";
|
|
124
123
|
constructor(opts) {
|
|
@@ -129,8 +128,8 @@ class AccessDeniedException extends M2ServiceException {
|
|
|
129
128
|
});
|
|
130
129
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
130
|
}
|
|
132
|
-
}
|
|
133
|
-
class ConflictException extends M2ServiceException {
|
|
131
|
+
};
|
|
132
|
+
let ConflictException$1 = class ConflictException extends M2ServiceException$1 {
|
|
134
133
|
name = "ConflictException";
|
|
135
134
|
$fault = "client";
|
|
136
135
|
resourceId;
|
|
@@ -145,8 +144,8 @@ class ConflictException extends M2ServiceException {
|
|
|
145
144
|
this.resourceId = opts.resourceId;
|
|
146
145
|
this.resourceType = opts.resourceType;
|
|
147
146
|
}
|
|
148
|
-
}
|
|
149
|
-
class InternalServerException extends M2ServiceException {
|
|
147
|
+
};
|
|
148
|
+
let InternalServerException$1 = class InternalServerException extends M2ServiceException$1 {
|
|
150
149
|
name = "InternalServerException";
|
|
151
150
|
$fault = "server";
|
|
152
151
|
$retryable = {};
|
|
@@ -160,8 +159,8 @@ class InternalServerException extends M2ServiceException {
|
|
|
160
159
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
161
160
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
162
161
|
}
|
|
163
|
-
}
|
|
164
|
-
class ResourceNotFoundException extends M2ServiceException {
|
|
162
|
+
};
|
|
163
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends M2ServiceException$1 {
|
|
165
164
|
name = "ResourceNotFoundException";
|
|
166
165
|
$fault = "client";
|
|
167
166
|
resourceId;
|
|
@@ -176,8 +175,8 @@ class ResourceNotFoundException extends M2ServiceException {
|
|
|
176
175
|
this.resourceId = opts.resourceId;
|
|
177
176
|
this.resourceType = opts.resourceType;
|
|
178
177
|
}
|
|
179
|
-
}
|
|
180
|
-
class ThrottlingException extends M2ServiceException {
|
|
178
|
+
};
|
|
179
|
+
let ThrottlingException$1 = class ThrottlingException extends M2ServiceException$1 {
|
|
181
180
|
name = "ThrottlingException";
|
|
182
181
|
$fault = "client";
|
|
183
182
|
$retryable = {
|
|
@@ -197,7 +196,7 @@ class ThrottlingException extends M2ServiceException {
|
|
|
197
196
|
this.quotaCode = opts.quotaCode;
|
|
198
197
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
199
198
|
}
|
|
200
|
-
}
|
|
199
|
+
};
|
|
201
200
|
const ValidationExceptionReason = {
|
|
202
201
|
CANNOT_PARSE: "cannotParse",
|
|
203
202
|
FEATURE_NOT_AVAILABLE: "featureNotAvailable",
|
|
@@ -206,7 +205,7 @@ const ValidationExceptionReason = {
|
|
|
206
205
|
UNKNOWN_OPERATION: "unknownOperation",
|
|
207
206
|
UNSUPPORTED_ENGINE_VERSION: "unsupportedEngineVersion",
|
|
208
207
|
};
|
|
209
|
-
class ValidationException extends M2ServiceException {
|
|
208
|
+
let ValidationException$1 = class ValidationException extends M2ServiceException$1 {
|
|
210
209
|
name = "ValidationException";
|
|
211
210
|
$fault = "client";
|
|
212
211
|
reason;
|
|
@@ -221,22 +220,12 @@ class ValidationException extends M2ServiceException {
|
|
|
221
220
|
this.reason = opts.reason;
|
|
222
221
|
this.fieldList = opts.fieldList;
|
|
223
222
|
}
|
|
224
|
-
}
|
|
225
|
-
exports.Definition = void 0;
|
|
226
|
-
(function (Definition) {
|
|
227
|
-
Definition.visit = (value, visitor) => {
|
|
228
|
-
if (value.s3Location !== undefined)
|
|
229
|
-
return visitor.s3Location(value.s3Location);
|
|
230
|
-
if (value.content !== undefined)
|
|
231
|
-
return visitor.content(value.content);
|
|
232
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
233
|
-
};
|
|
234
|
-
})(exports.Definition || (exports.Definition = {}));
|
|
223
|
+
};
|
|
235
224
|
const EngineType = {
|
|
236
225
|
BLUAGE: "bluage",
|
|
237
226
|
MICROFOCUS: "microfocus",
|
|
238
227
|
};
|
|
239
|
-
class ServiceQuotaExceededException extends M2ServiceException {
|
|
228
|
+
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends M2ServiceException$1 {
|
|
240
229
|
name = "ServiceQuotaExceededException";
|
|
241
230
|
$fault = "client";
|
|
242
231
|
resourceId;
|
|
@@ -255,49 +244,7 @@ class ServiceQuotaExceededException extends M2ServiceException {
|
|
|
255
244
|
this.serviceCode = opts.serviceCode;
|
|
256
245
|
this.quotaCode = opts.quotaCode;
|
|
257
246
|
}
|
|
258
|
-
}
|
|
259
|
-
exports.ExternalLocation = void 0;
|
|
260
|
-
(function (ExternalLocation) {
|
|
261
|
-
ExternalLocation.visit = (value, visitor) => {
|
|
262
|
-
if (value.s3Location !== undefined)
|
|
263
|
-
return visitor.s3Location(value.s3Location);
|
|
264
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
265
|
-
};
|
|
266
|
-
})(exports.ExternalLocation || (exports.ExternalLocation = {}));
|
|
267
|
-
exports.DataSetExportConfig = void 0;
|
|
268
|
-
(function (DataSetExportConfig) {
|
|
269
|
-
DataSetExportConfig.visit = (value, visitor) => {
|
|
270
|
-
if (value.s3Location !== undefined)
|
|
271
|
-
return visitor.s3Location(value.s3Location);
|
|
272
|
-
if (value.dataSets !== undefined)
|
|
273
|
-
return visitor.dataSets(value.dataSets);
|
|
274
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
275
|
-
};
|
|
276
|
-
})(exports.DataSetExportConfig || (exports.DataSetExportConfig = {}));
|
|
277
|
-
exports.DatasetOrgAttributes = void 0;
|
|
278
|
-
(function (DatasetOrgAttributes) {
|
|
279
|
-
DatasetOrgAttributes.visit = (value, visitor) => {
|
|
280
|
-
if (value.vsam !== undefined)
|
|
281
|
-
return visitor.vsam(value.vsam);
|
|
282
|
-
if (value.gdg !== undefined)
|
|
283
|
-
return visitor.gdg(value.gdg);
|
|
284
|
-
if (value.po !== undefined)
|
|
285
|
-
return visitor.po(value.po);
|
|
286
|
-
if (value.ps !== undefined)
|
|
287
|
-
return visitor.ps(value.ps);
|
|
288
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
289
|
-
};
|
|
290
|
-
})(exports.DatasetOrgAttributes || (exports.DatasetOrgAttributes = {}));
|
|
291
|
-
exports.DataSetImportConfig = void 0;
|
|
292
|
-
(function (DataSetImportConfig) {
|
|
293
|
-
DataSetImportConfig.visit = (value, visitor) => {
|
|
294
|
-
if (value.s3Location !== undefined)
|
|
295
|
-
return visitor.s3Location(value.s3Location);
|
|
296
|
-
if (value.dataSets !== undefined)
|
|
297
|
-
return visitor.dataSets(value.dataSets);
|
|
298
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
299
|
-
};
|
|
300
|
-
})(exports.DataSetImportConfig || (exports.DataSetImportConfig = {}));
|
|
247
|
+
};
|
|
301
248
|
const DeploymentLifecycle = {
|
|
302
249
|
DEPLOYING: "Deploying",
|
|
303
250
|
DEPLOY_UPDATE: "Updating Deployment",
|
|
@@ -322,30 +269,6 @@ const ApplicationLifecycle = {
|
|
|
322
269
|
STOPPED: "Stopped",
|
|
323
270
|
STOPPING: "Stopping",
|
|
324
271
|
};
|
|
325
|
-
exports.JobIdentifier = void 0;
|
|
326
|
-
(function (JobIdentifier) {
|
|
327
|
-
JobIdentifier.visit = (value, visitor) => {
|
|
328
|
-
if (value.fileName !== undefined)
|
|
329
|
-
return visitor.fileName(value.fileName);
|
|
330
|
-
if (value.scriptName !== undefined)
|
|
331
|
-
return visitor.scriptName(value.scriptName);
|
|
332
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
333
|
-
};
|
|
334
|
-
})(exports.JobIdentifier || (exports.JobIdentifier = {}));
|
|
335
|
-
exports.BatchJobIdentifier = void 0;
|
|
336
|
-
(function (BatchJobIdentifier) {
|
|
337
|
-
BatchJobIdentifier.visit = (value, visitor) => {
|
|
338
|
-
if (value.fileBatchJobIdentifier !== undefined)
|
|
339
|
-
return visitor.fileBatchJobIdentifier(value.fileBatchJobIdentifier);
|
|
340
|
-
if (value.scriptBatchJobIdentifier !== undefined)
|
|
341
|
-
return visitor.scriptBatchJobIdentifier(value.scriptBatchJobIdentifier);
|
|
342
|
-
if (value.s3BatchJobIdentifier !== undefined)
|
|
343
|
-
return visitor.s3BatchJobIdentifier(value.s3BatchJobIdentifier);
|
|
344
|
-
if (value.restartBatchJobIdentifier !== undefined)
|
|
345
|
-
return visitor.restartBatchJobIdentifier(value.restartBatchJobIdentifier);
|
|
346
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
347
|
-
};
|
|
348
|
-
})(exports.BatchJobIdentifier || (exports.BatchJobIdentifier = {}));
|
|
349
272
|
const BatchJobType = {
|
|
350
273
|
JES2: "JES2",
|
|
351
274
|
JES3: "JES3",
|
|
@@ -363,7 +286,7 @@ const BatchJobExecutionStatus = {
|
|
|
363
286
|
SUCCEEDED: "Succeeded",
|
|
364
287
|
SUCCEEDED_WITH_WARNING: "Succeeded With Warning",
|
|
365
288
|
};
|
|
366
|
-
class ExecutionTimeoutException extends M2ServiceException {
|
|
289
|
+
let ExecutionTimeoutException$1 = class ExecutionTimeoutException extends M2ServiceException$1 {
|
|
367
290
|
name = "ExecutionTimeoutException";
|
|
368
291
|
$fault = "server";
|
|
369
292
|
$retryable = {};
|
|
@@ -375,22 +298,8 @@ class ExecutionTimeoutException extends M2ServiceException {
|
|
|
375
298
|
});
|
|
376
299
|
Object.setPrototypeOf(this, ExecutionTimeoutException.prototype);
|
|
377
300
|
}
|
|
378
|
-
}
|
|
379
|
-
|
|
380
|
-
(function (DatasetDetailOrgAttributes) {
|
|
381
|
-
DatasetDetailOrgAttributes.visit = (value, visitor) => {
|
|
382
|
-
if (value.vsam !== undefined)
|
|
383
|
-
return visitor.vsam(value.vsam);
|
|
384
|
-
if (value.gdg !== undefined)
|
|
385
|
-
return visitor.gdg(value.gdg);
|
|
386
|
-
if (value.po !== undefined)
|
|
387
|
-
return visitor.po(value.po);
|
|
388
|
-
if (value.ps !== undefined)
|
|
389
|
-
return visitor.ps(value.ps);
|
|
390
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
391
|
-
};
|
|
392
|
-
})(exports.DatasetDetailOrgAttributes || (exports.DatasetDetailOrgAttributes = {}));
|
|
393
|
-
class ServiceUnavailableException extends M2ServiceException {
|
|
301
|
+
};
|
|
302
|
+
let ServiceUnavailableException$1 = class ServiceUnavailableException extends M2ServiceException$1 {
|
|
394
303
|
name = "ServiceUnavailableException";
|
|
395
304
|
$fault = "server";
|
|
396
305
|
$retryable = {};
|
|
@@ -402,7 +311,7 @@ class ServiceUnavailableException extends M2ServiceException {
|
|
|
402
311
|
});
|
|
403
312
|
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
404
313
|
}
|
|
405
|
-
}
|
|
314
|
+
};
|
|
406
315
|
const DataSetTaskLifecycle = {
|
|
407
316
|
COMPLETED: "Completed",
|
|
408
317
|
CREATING: "Creating",
|
|
@@ -413,30 +322,10 @@ const ApplicationDeploymentLifecycle = {
|
|
|
413
322
|
DEPLOYED: "Deployed",
|
|
414
323
|
DEPLOYING: "Deploying",
|
|
415
324
|
};
|
|
416
|
-
exports.BatchJobDefinition = void 0;
|
|
417
|
-
(function (BatchJobDefinition) {
|
|
418
|
-
BatchJobDefinition.visit = (value, visitor) => {
|
|
419
|
-
if (value.fileBatchJobDefinition !== undefined)
|
|
420
|
-
return visitor.fileBatchJobDefinition(value.fileBatchJobDefinition);
|
|
421
|
-
if (value.scriptBatchJobDefinition !== undefined)
|
|
422
|
-
return visitor.scriptBatchJobDefinition(value.scriptBatchJobDefinition);
|
|
423
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
424
|
-
};
|
|
425
|
-
})(exports.BatchJobDefinition || (exports.BatchJobDefinition = {}));
|
|
426
325
|
const NetworkType = {
|
|
427
326
|
DUAL: "dual",
|
|
428
327
|
IPV4: "ipv4",
|
|
429
328
|
};
|
|
430
|
-
exports.StorageConfiguration = void 0;
|
|
431
|
-
(function (StorageConfiguration) {
|
|
432
|
-
StorageConfiguration.visit = (value, visitor) => {
|
|
433
|
-
if (value.efs !== undefined)
|
|
434
|
-
return visitor.efs(value.efs);
|
|
435
|
-
if (value.fsx !== undefined)
|
|
436
|
-
return visitor.fsx(value.fsx);
|
|
437
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
438
|
-
};
|
|
439
|
-
})(exports.StorageConfiguration || (exports.StorageConfiguration = {}));
|
|
440
329
|
const EnvironmentLifecycle = {
|
|
441
330
|
AVAILABLE: "Available",
|
|
442
331
|
CREATING: "Creating",
|
|
@@ -446,1495 +335,1839 @@ const EnvironmentLifecycle = {
|
|
|
446
335
|
UPDATING: "Updating",
|
|
447
336
|
};
|
|
448
337
|
|
|
449
|
-
const
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
const
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
const
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
const
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
const
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
const
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
const
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
const
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
const
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
const
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
const
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
const
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
const
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
const
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
const
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
};
|
|
645
|
-
const se_GetDeploymentCommand = async (input, context) => {
|
|
646
|
-
const b = core.requestBuilder(input, context);
|
|
647
|
-
const headers = {};
|
|
648
|
-
b.bp("/applications/{applicationId}/deployments/{deploymentId}");
|
|
649
|
-
b.p("deploymentId", () => input.deploymentId, "{deploymentId}", false);
|
|
650
|
-
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
651
|
-
let body;
|
|
652
|
-
b.m("GET").h(headers).b(body);
|
|
653
|
-
return b.build();
|
|
654
|
-
};
|
|
655
|
-
const se_GetEnvironmentCommand = async (input, context) => {
|
|
656
|
-
const b = core.requestBuilder(input, context);
|
|
657
|
-
const headers = {};
|
|
658
|
-
b.bp("/environments/{environmentId}");
|
|
659
|
-
b.p("environmentId", () => input.environmentId, "{environmentId}", false);
|
|
660
|
-
let body;
|
|
661
|
-
b.m("GET").h(headers).b(body);
|
|
662
|
-
return b.build();
|
|
663
|
-
};
|
|
664
|
-
const se_GetSignedBluinsightsUrlCommand = async (input, context) => {
|
|
665
|
-
const b = core.requestBuilder(input, context);
|
|
666
|
-
const headers = {};
|
|
667
|
-
b.bp("/signed-bi-url");
|
|
668
|
-
let body;
|
|
669
|
-
b.m("GET").h(headers).b(body);
|
|
670
|
-
return b.build();
|
|
671
|
-
};
|
|
672
|
-
const se_ListApplicationsCommand = async (input, context) => {
|
|
673
|
-
const b = core.requestBuilder(input, context);
|
|
674
|
-
const headers = {};
|
|
675
|
-
b.bp("/applications");
|
|
676
|
-
const query = smithyClient.map({
|
|
677
|
-
[_nT]: [, input[_nT]],
|
|
678
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
679
|
-
[_n]: [() => input.names !== void 0, () => input[_n] || []],
|
|
680
|
-
[_eI]: [, input[_eI]],
|
|
681
|
-
});
|
|
682
|
-
let body;
|
|
683
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
684
|
-
return b.build();
|
|
685
|
-
};
|
|
686
|
-
const se_ListApplicationVersionsCommand = async (input, context) => {
|
|
687
|
-
const b = core.requestBuilder(input, context);
|
|
688
|
-
const headers = {};
|
|
689
|
-
b.bp("/applications/{applicationId}/versions");
|
|
690
|
-
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
691
|
-
const query = smithyClient.map({
|
|
692
|
-
[_nT]: [, input[_nT]],
|
|
693
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
694
|
-
});
|
|
695
|
-
let body;
|
|
696
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
697
|
-
return b.build();
|
|
698
|
-
};
|
|
699
|
-
const se_ListBatchJobDefinitionsCommand = async (input, context) => {
|
|
700
|
-
const b = core.requestBuilder(input, context);
|
|
701
|
-
const headers = {};
|
|
702
|
-
b.bp("/applications/{applicationId}/batch-job-definitions");
|
|
703
|
-
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
704
|
-
const query = smithyClient.map({
|
|
705
|
-
[_nT]: [, input[_nT]],
|
|
706
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
707
|
-
[_p]: [, input[_p]],
|
|
708
|
-
});
|
|
709
|
-
let body;
|
|
710
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
711
|
-
return b.build();
|
|
712
|
-
};
|
|
713
|
-
const se_ListBatchJobExecutionsCommand = async (input, context) => {
|
|
714
|
-
const b = core.requestBuilder(input, context);
|
|
715
|
-
const headers = {};
|
|
716
|
-
b.bp("/applications/{applicationId}/batch-job-executions");
|
|
717
|
-
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
718
|
-
const query = smithyClient.map({
|
|
719
|
-
[_nT]: [, input[_nT]],
|
|
720
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
721
|
-
[_eIx]: [() => input.executionIds !== void 0, () => input[_eIx] || []],
|
|
722
|
-
[_jN]: [, input[_jN]],
|
|
723
|
-
[_s]: [, input[_s]],
|
|
724
|
-
[_sA]: [() => input.startedAfter !== void 0, () => smithyClient.serializeDateTime(input[_sA]).toString()],
|
|
725
|
-
[_sB]: [() => input.startedBefore !== void 0, () => smithyClient.serializeDateTime(input[_sB]).toString()],
|
|
726
|
-
});
|
|
727
|
-
let body;
|
|
728
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
729
|
-
return b.build();
|
|
730
|
-
};
|
|
731
|
-
const se_ListBatchJobRestartPointsCommand = async (input, context) => {
|
|
732
|
-
const b = core.requestBuilder(input, context);
|
|
733
|
-
const headers = {};
|
|
734
|
-
b.bp("/applications/{applicationId}/batch-job-executions/{executionId}/steps");
|
|
735
|
-
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
736
|
-
b.p("executionId", () => input.executionId, "{executionId}", false);
|
|
737
|
-
const query = smithyClient.map({
|
|
738
|
-
[_aSMA]: [, input[_aSMA]],
|
|
739
|
-
});
|
|
740
|
-
let body;
|
|
741
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
742
|
-
return b.build();
|
|
743
|
-
};
|
|
744
|
-
const se_ListDataSetExportHistoryCommand = async (input, context) => {
|
|
745
|
-
const b = core.requestBuilder(input, context);
|
|
746
|
-
const headers = {};
|
|
747
|
-
b.bp("/applications/{applicationId}/dataset-export-tasks");
|
|
748
|
-
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
749
|
-
const query = smithyClient.map({
|
|
750
|
-
[_nT]: [, input[_nT]],
|
|
751
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
752
|
-
});
|
|
753
|
-
let body;
|
|
754
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
755
|
-
return b.build();
|
|
756
|
-
};
|
|
757
|
-
const se_ListDataSetImportHistoryCommand = async (input, context) => {
|
|
758
|
-
const b = core.requestBuilder(input, context);
|
|
759
|
-
const headers = {};
|
|
760
|
-
b.bp("/applications/{applicationId}/dataset-import-tasks");
|
|
761
|
-
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
762
|
-
const query = smithyClient.map({
|
|
763
|
-
[_nT]: [, input[_nT]],
|
|
764
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
765
|
-
});
|
|
766
|
-
let body;
|
|
767
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
768
|
-
return b.build();
|
|
769
|
-
};
|
|
770
|
-
const se_ListDataSetsCommand = async (input, context) => {
|
|
771
|
-
const b = core.requestBuilder(input, context);
|
|
772
|
-
const headers = {};
|
|
773
|
-
b.bp("/applications/{applicationId}/datasets");
|
|
774
|
-
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
775
|
-
const query = smithyClient.map({
|
|
776
|
-
[_nT]: [, input[_nT]],
|
|
777
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
778
|
-
[_p]: [, input[_p]],
|
|
779
|
-
[_nF]: [, input[_nF]],
|
|
780
|
-
});
|
|
781
|
-
let body;
|
|
782
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
783
|
-
return b.build();
|
|
784
|
-
};
|
|
785
|
-
const se_ListDeploymentsCommand = async (input, context) => {
|
|
786
|
-
const b = core.requestBuilder(input, context);
|
|
787
|
-
const headers = {};
|
|
788
|
-
b.bp("/applications/{applicationId}/deployments");
|
|
789
|
-
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
790
|
-
const query = smithyClient.map({
|
|
791
|
-
[_nT]: [, input[_nT]],
|
|
792
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
793
|
-
});
|
|
794
|
-
let body;
|
|
795
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
796
|
-
return b.build();
|
|
797
|
-
};
|
|
798
|
-
const se_ListEngineVersionsCommand = async (input, context) => {
|
|
799
|
-
const b = core.requestBuilder(input, context);
|
|
800
|
-
const headers = {};
|
|
801
|
-
b.bp("/engine-versions");
|
|
802
|
-
const query = smithyClient.map({
|
|
803
|
-
[_eT]: [, input[_eT]],
|
|
804
|
-
[_nT]: [, input[_nT]],
|
|
805
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
806
|
-
});
|
|
807
|
-
let body;
|
|
808
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
809
|
-
return b.build();
|
|
810
|
-
};
|
|
811
|
-
const se_ListEnvironmentsCommand = async (input, context) => {
|
|
812
|
-
const b = core.requestBuilder(input, context);
|
|
813
|
-
const headers = {};
|
|
814
|
-
b.bp("/environments");
|
|
815
|
-
const query = smithyClient.map({
|
|
816
|
-
[_nT]: [, input[_nT]],
|
|
817
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
818
|
-
[_n]: [() => input.names !== void 0, () => input[_n] || []],
|
|
819
|
-
[_eT]: [, input[_eT]],
|
|
820
|
-
});
|
|
821
|
-
let body;
|
|
822
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
823
|
-
return b.build();
|
|
824
|
-
};
|
|
825
|
-
const se_ListTagsForResourceCommand = async (input, context) => {
|
|
826
|
-
const b = core.requestBuilder(input, context);
|
|
827
|
-
const headers = {};
|
|
828
|
-
b.bp("/tags/{resourceArn}");
|
|
829
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
830
|
-
let body;
|
|
831
|
-
b.m("GET").h(headers).b(body);
|
|
832
|
-
return b.build();
|
|
833
|
-
};
|
|
834
|
-
const se_StartApplicationCommand = async (input, context) => {
|
|
835
|
-
const b = core.requestBuilder(input, context);
|
|
836
|
-
const headers = {};
|
|
837
|
-
b.bp("/applications/{applicationId}/start");
|
|
838
|
-
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
839
|
-
let body;
|
|
840
|
-
b.m("POST").h(headers).b(body);
|
|
841
|
-
return b.build();
|
|
842
|
-
};
|
|
843
|
-
const se_StartBatchJobCommand = async (input, context) => {
|
|
844
|
-
const b = core.requestBuilder(input, context);
|
|
845
|
-
const headers = {
|
|
846
|
-
"content-type": "application/json",
|
|
847
|
-
};
|
|
848
|
-
b.bp("/applications/{applicationId}/batch-job");
|
|
849
|
-
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
850
|
-
let body;
|
|
851
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
852
|
-
authSecretsManagerArn: [],
|
|
853
|
-
batchJobIdentifier: (_) => smithyClient._json(_),
|
|
854
|
-
jobParams: (_) => smithyClient._json(_),
|
|
855
|
-
}));
|
|
856
|
-
b.m("POST").h(headers).b(body);
|
|
857
|
-
return b.build();
|
|
858
|
-
};
|
|
859
|
-
const se_StopApplicationCommand = async (input, context) => {
|
|
860
|
-
const b = core.requestBuilder(input, context);
|
|
861
|
-
const headers = {
|
|
862
|
-
"content-type": "application/json",
|
|
863
|
-
};
|
|
864
|
-
b.bp("/applications/{applicationId}/stop");
|
|
865
|
-
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
866
|
-
let body;
|
|
867
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
868
|
-
forceStop: [],
|
|
869
|
-
}));
|
|
870
|
-
b.m("POST").h(headers).b(body);
|
|
871
|
-
return b.build();
|
|
872
|
-
};
|
|
873
|
-
const se_TagResourceCommand = async (input, context) => {
|
|
874
|
-
const b = core.requestBuilder(input, context);
|
|
875
|
-
const headers = {
|
|
876
|
-
"content-type": "application/json",
|
|
877
|
-
};
|
|
878
|
-
b.bp("/tags/{resourceArn}");
|
|
879
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
880
|
-
let body;
|
|
881
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
882
|
-
tags: (_) => smithyClient._json(_),
|
|
883
|
-
}));
|
|
884
|
-
b.m("POST").h(headers).b(body);
|
|
885
|
-
return b.build();
|
|
886
|
-
};
|
|
887
|
-
const se_UntagResourceCommand = async (input, context) => {
|
|
888
|
-
const b = core.requestBuilder(input, context);
|
|
889
|
-
const headers = {};
|
|
890
|
-
b.bp("/tags/{resourceArn}");
|
|
891
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
892
|
-
const query = smithyClient.map({
|
|
893
|
-
[_tK]: [smithyClient.expectNonNull(input.tagKeys, `tagKeys`) != null, () => input[_tK] || []],
|
|
894
|
-
});
|
|
895
|
-
let body;
|
|
896
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
897
|
-
return b.build();
|
|
898
|
-
};
|
|
899
|
-
const se_UpdateApplicationCommand = async (input, context) => {
|
|
900
|
-
const b = core.requestBuilder(input, context);
|
|
901
|
-
const headers = {
|
|
902
|
-
"content-type": "application/json",
|
|
903
|
-
};
|
|
904
|
-
b.bp("/applications/{applicationId}");
|
|
905
|
-
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
906
|
-
let body;
|
|
907
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
908
|
-
currentApplicationVersion: [],
|
|
909
|
-
definition: (_) => smithyClient._json(_),
|
|
910
|
-
description: [],
|
|
911
|
-
}));
|
|
912
|
-
b.m("PATCH").h(headers).b(body);
|
|
913
|
-
return b.build();
|
|
914
|
-
};
|
|
915
|
-
const se_UpdateEnvironmentCommand = async (input, context) => {
|
|
916
|
-
const b = core.requestBuilder(input, context);
|
|
917
|
-
const headers = {
|
|
918
|
-
"content-type": "application/json",
|
|
919
|
-
};
|
|
920
|
-
b.bp("/environments/{environmentId}");
|
|
921
|
-
b.p("environmentId", () => input.environmentId, "{environmentId}", false);
|
|
922
|
-
let body;
|
|
923
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
924
|
-
applyDuringMaintenanceWindow: [],
|
|
925
|
-
desiredCapacity: [],
|
|
926
|
-
engineVersion: [],
|
|
927
|
-
forceUpdate: [],
|
|
928
|
-
instanceType: [],
|
|
929
|
-
preferredMaintenanceWindow: [],
|
|
930
|
-
}));
|
|
931
|
-
b.m("PATCH").h(headers).b(body);
|
|
932
|
-
return b.build();
|
|
933
|
-
};
|
|
934
|
-
const de_CancelBatchJobExecutionCommand = async (output, context) => {
|
|
935
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
936
|
-
return de_CommandError(output, context);
|
|
937
|
-
}
|
|
938
|
-
const contents = smithyClient.map({
|
|
939
|
-
$metadata: deserializeMetadata(output),
|
|
940
|
-
});
|
|
941
|
-
await smithyClient.collectBody(output.body, context);
|
|
942
|
-
return contents;
|
|
943
|
-
};
|
|
944
|
-
const de_CreateApplicationCommand = async (output, context) => {
|
|
945
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
946
|
-
return de_CommandError(output, context);
|
|
947
|
-
}
|
|
948
|
-
const contents = smithyClient.map({
|
|
949
|
-
$metadata: deserializeMetadata(output),
|
|
950
|
-
});
|
|
951
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
952
|
-
const doc = smithyClient.take(data, {
|
|
953
|
-
applicationArn: smithyClient.expectString,
|
|
954
|
-
applicationId: smithyClient.expectString,
|
|
955
|
-
applicationVersion: smithyClient.expectInt32,
|
|
956
|
-
});
|
|
957
|
-
Object.assign(contents, doc);
|
|
958
|
-
return contents;
|
|
959
|
-
};
|
|
960
|
-
const de_CreateDataSetExportTaskCommand = async (output, context) => {
|
|
961
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
962
|
-
return de_CommandError(output, context);
|
|
963
|
-
}
|
|
964
|
-
const contents = smithyClient.map({
|
|
965
|
-
$metadata: deserializeMetadata(output),
|
|
966
|
-
});
|
|
967
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
968
|
-
const doc = smithyClient.take(data, {
|
|
969
|
-
taskId: smithyClient.expectString,
|
|
970
|
-
});
|
|
971
|
-
Object.assign(contents, doc);
|
|
972
|
-
return contents;
|
|
973
|
-
};
|
|
974
|
-
const de_CreateDataSetImportTaskCommand = async (output, context) => {
|
|
975
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
976
|
-
return de_CommandError(output, context);
|
|
977
|
-
}
|
|
978
|
-
const contents = smithyClient.map({
|
|
979
|
-
$metadata: deserializeMetadata(output),
|
|
980
|
-
});
|
|
981
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
982
|
-
const doc = smithyClient.take(data, {
|
|
983
|
-
taskId: smithyClient.expectString,
|
|
984
|
-
});
|
|
985
|
-
Object.assign(contents, doc);
|
|
986
|
-
return contents;
|
|
987
|
-
};
|
|
988
|
-
const de_CreateDeploymentCommand = async (output, context) => {
|
|
989
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
990
|
-
return de_CommandError(output, context);
|
|
991
|
-
}
|
|
992
|
-
const contents = smithyClient.map({
|
|
993
|
-
$metadata: deserializeMetadata(output),
|
|
994
|
-
});
|
|
995
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
996
|
-
const doc = smithyClient.take(data, {
|
|
997
|
-
deploymentId: smithyClient.expectString,
|
|
998
|
-
});
|
|
999
|
-
Object.assign(contents, doc);
|
|
1000
|
-
return contents;
|
|
1001
|
-
};
|
|
1002
|
-
const de_CreateEnvironmentCommand = async (output, context) => {
|
|
1003
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1004
|
-
return de_CommandError(output, context);
|
|
1005
|
-
}
|
|
1006
|
-
const contents = smithyClient.map({
|
|
1007
|
-
$metadata: deserializeMetadata(output),
|
|
1008
|
-
});
|
|
1009
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1010
|
-
const doc = smithyClient.take(data, {
|
|
1011
|
-
environmentId: smithyClient.expectString,
|
|
1012
|
-
});
|
|
1013
|
-
Object.assign(contents, doc);
|
|
1014
|
-
return contents;
|
|
1015
|
-
};
|
|
1016
|
-
const de_DeleteApplicationCommand = async (output, context) => {
|
|
1017
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1018
|
-
return de_CommandError(output, context);
|
|
1019
|
-
}
|
|
1020
|
-
const contents = smithyClient.map({
|
|
1021
|
-
$metadata: deserializeMetadata(output),
|
|
1022
|
-
});
|
|
1023
|
-
await smithyClient.collectBody(output.body, context);
|
|
1024
|
-
return contents;
|
|
1025
|
-
};
|
|
1026
|
-
const de_DeleteApplicationFromEnvironmentCommand = async (output, context) => {
|
|
1027
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1028
|
-
return de_CommandError(output, context);
|
|
1029
|
-
}
|
|
1030
|
-
const contents = smithyClient.map({
|
|
1031
|
-
$metadata: deserializeMetadata(output),
|
|
1032
|
-
});
|
|
1033
|
-
await smithyClient.collectBody(output.body, context);
|
|
1034
|
-
return contents;
|
|
1035
|
-
};
|
|
1036
|
-
const de_DeleteEnvironmentCommand = async (output, context) => {
|
|
1037
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1038
|
-
return de_CommandError(output, context);
|
|
1039
|
-
}
|
|
1040
|
-
const contents = smithyClient.map({
|
|
1041
|
-
$metadata: deserializeMetadata(output),
|
|
1042
|
-
});
|
|
1043
|
-
await smithyClient.collectBody(output.body, context);
|
|
1044
|
-
return contents;
|
|
1045
|
-
};
|
|
1046
|
-
const de_GetApplicationCommand = async (output, context) => {
|
|
1047
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1048
|
-
return de_CommandError(output, context);
|
|
1049
|
-
}
|
|
1050
|
-
const contents = smithyClient.map({
|
|
1051
|
-
$metadata: deserializeMetadata(output),
|
|
1052
|
-
});
|
|
1053
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1054
|
-
const doc = smithyClient.take(data, {
|
|
1055
|
-
applicationArn: smithyClient.expectString,
|
|
1056
|
-
applicationId: smithyClient.expectString,
|
|
1057
|
-
creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1058
|
-
deployedVersion: smithyClient._json,
|
|
1059
|
-
description: smithyClient.expectString,
|
|
1060
|
-
engineType: smithyClient.expectString,
|
|
1061
|
-
environmentId: smithyClient.expectString,
|
|
1062
|
-
kmsKeyId: smithyClient.expectString,
|
|
1063
|
-
lastStartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1064
|
-
latestVersion: (_) => de_ApplicationVersionSummary(_),
|
|
1065
|
-
listenerArns: smithyClient._json,
|
|
1066
|
-
listenerPorts: smithyClient._json,
|
|
1067
|
-
loadBalancerDnsName: smithyClient.expectString,
|
|
1068
|
-
logGroups: smithyClient._json,
|
|
1069
|
-
name: smithyClient.expectString,
|
|
1070
|
-
roleArn: smithyClient.expectString,
|
|
1071
|
-
status: smithyClient.expectString,
|
|
1072
|
-
statusReason: smithyClient.expectString,
|
|
1073
|
-
tags: smithyClient._json,
|
|
1074
|
-
targetGroupArns: smithyClient._json,
|
|
1075
|
-
});
|
|
1076
|
-
Object.assign(contents, doc);
|
|
1077
|
-
return contents;
|
|
1078
|
-
};
|
|
1079
|
-
const de_GetApplicationVersionCommand = async (output, context) => {
|
|
1080
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1081
|
-
return de_CommandError(output, context);
|
|
1082
|
-
}
|
|
1083
|
-
const contents = smithyClient.map({
|
|
1084
|
-
$metadata: deserializeMetadata(output),
|
|
1085
|
-
});
|
|
1086
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1087
|
-
const doc = smithyClient.take(data, {
|
|
1088
|
-
applicationVersion: smithyClient.expectInt32,
|
|
1089
|
-
creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1090
|
-
definitionContent: smithyClient.expectString,
|
|
1091
|
-
description: smithyClient.expectString,
|
|
1092
|
-
name: smithyClient.expectString,
|
|
1093
|
-
status: smithyClient.expectString,
|
|
1094
|
-
statusReason: smithyClient.expectString,
|
|
1095
|
-
});
|
|
1096
|
-
Object.assign(contents, doc);
|
|
1097
|
-
return contents;
|
|
1098
|
-
};
|
|
1099
|
-
const de_GetBatchJobExecutionCommand = async (output, context) => {
|
|
1100
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1101
|
-
return de_CommandError(output, context);
|
|
1102
|
-
}
|
|
1103
|
-
const contents = smithyClient.map({
|
|
1104
|
-
$metadata: deserializeMetadata(output),
|
|
1105
|
-
});
|
|
1106
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1107
|
-
const doc = smithyClient.take(data, {
|
|
1108
|
-
applicationId: smithyClient.expectString,
|
|
1109
|
-
batchJobIdentifier: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
|
|
1110
|
-
endTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1111
|
-
executionId: smithyClient.expectString,
|
|
1112
|
-
jobId: smithyClient.expectString,
|
|
1113
|
-
jobName: smithyClient.expectString,
|
|
1114
|
-
jobStepRestartMarker: smithyClient._json,
|
|
1115
|
-
jobType: smithyClient.expectString,
|
|
1116
|
-
jobUser: smithyClient.expectString,
|
|
1117
|
-
returnCode: smithyClient.expectString,
|
|
1118
|
-
startTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1119
|
-
status: smithyClient.expectString,
|
|
1120
|
-
statusReason: smithyClient.expectString,
|
|
1121
|
-
});
|
|
1122
|
-
Object.assign(contents, doc);
|
|
1123
|
-
return contents;
|
|
1124
|
-
};
|
|
1125
|
-
const de_GetDataSetDetailsCommand = async (output, context) => {
|
|
1126
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1127
|
-
return de_CommandError(output, context);
|
|
1128
|
-
}
|
|
1129
|
-
const contents = smithyClient.map({
|
|
1130
|
-
$metadata: deserializeMetadata(output),
|
|
1131
|
-
});
|
|
1132
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1133
|
-
const doc = smithyClient.take(data, {
|
|
1134
|
-
blocksize: smithyClient.expectInt32,
|
|
1135
|
-
creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1136
|
-
dataSetName: smithyClient.expectString,
|
|
1137
|
-
dataSetOrg: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
|
|
1138
|
-
fileSize: smithyClient.expectLong,
|
|
1139
|
-
lastReferencedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1140
|
-
lastUpdatedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1141
|
-
location: smithyClient.expectString,
|
|
1142
|
-
recordLength: smithyClient.expectInt32,
|
|
1143
|
-
});
|
|
1144
|
-
Object.assign(contents, doc);
|
|
1145
|
-
return contents;
|
|
1146
|
-
};
|
|
1147
|
-
const de_GetDataSetExportTaskCommand = async (output, context) => {
|
|
1148
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1149
|
-
return de_CommandError(output, context);
|
|
1150
|
-
}
|
|
1151
|
-
const contents = smithyClient.map({
|
|
1152
|
-
$metadata: deserializeMetadata(output),
|
|
1153
|
-
});
|
|
1154
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1155
|
-
const doc = smithyClient.take(data, {
|
|
1156
|
-
kmsKeyArn: smithyClient.expectString,
|
|
1157
|
-
status: smithyClient.expectString,
|
|
1158
|
-
statusReason: smithyClient.expectString,
|
|
1159
|
-
summary: smithyClient._json,
|
|
1160
|
-
taskId: smithyClient.expectString,
|
|
1161
|
-
});
|
|
1162
|
-
Object.assign(contents, doc);
|
|
1163
|
-
return contents;
|
|
1164
|
-
};
|
|
1165
|
-
const de_GetDataSetImportTaskCommand = async (output, context) => {
|
|
1166
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1167
|
-
return de_CommandError(output, context);
|
|
1168
|
-
}
|
|
1169
|
-
const contents = smithyClient.map({
|
|
1170
|
-
$metadata: deserializeMetadata(output),
|
|
1171
|
-
});
|
|
1172
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1173
|
-
const doc = smithyClient.take(data, {
|
|
1174
|
-
status: smithyClient.expectString,
|
|
1175
|
-
summary: smithyClient._json,
|
|
1176
|
-
taskId: smithyClient.expectString,
|
|
1177
|
-
});
|
|
1178
|
-
Object.assign(contents, doc);
|
|
1179
|
-
return contents;
|
|
1180
|
-
};
|
|
1181
|
-
const de_GetDeploymentCommand = async (output, context) => {
|
|
1182
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1183
|
-
return de_CommandError(output, context);
|
|
1184
|
-
}
|
|
1185
|
-
const contents = smithyClient.map({
|
|
1186
|
-
$metadata: deserializeMetadata(output),
|
|
1187
|
-
});
|
|
1188
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1189
|
-
const doc = smithyClient.take(data, {
|
|
1190
|
-
applicationId: smithyClient.expectString,
|
|
1191
|
-
applicationVersion: smithyClient.expectInt32,
|
|
1192
|
-
creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1193
|
-
deploymentId: smithyClient.expectString,
|
|
1194
|
-
environmentId: smithyClient.expectString,
|
|
1195
|
-
status: smithyClient.expectString,
|
|
1196
|
-
statusReason: smithyClient.expectString,
|
|
1197
|
-
});
|
|
1198
|
-
Object.assign(contents, doc);
|
|
1199
|
-
return contents;
|
|
1200
|
-
};
|
|
1201
|
-
const de_GetEnvironmentCommand = async (output, context) => {
|
|
1202
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1203
|
-
return de_CommandError(output, context);
|
|
1204
|
-
}
|
|
1205
|
-
const contents = smithyClient.map({
|
|
1206
|
-
$metadata: deserializeMetadata(output),
|
|
1207
|
-
});
|
|
1208
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1209
|
-
const doc = smithyClient.take(data, {
|
|
1210
|
-
actualCapacity: smithyClient.expectInt32,
|
|
1211
|
-
creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1212
|
-
description: smithyClient.expectString,
|
|
1213
|
-
engineType: smithyClient.expectString,
|
|
1214
|
-
engineVersion: smithyClient.expectString,
|
|
1215
|
-
environmentArn: smithyClient.expectString,
|
|
1216
|
-
environmentId: smithyClient.expectString,
|
|
1217
|
-
highAvailabilityConfig: smithyClient._json,
|
|
1218
|
-
instanceType: smithyClient.expectString,
|
|
1219
|
-
kmsKeyId: smithyClient.expectString,
|
|
1220
|
-
loadBalancerArn: smithyClient.expectString,
|
|
1221
|
-
name: smithyClient.expectString,
|
|
1222
|
-
networkType: smithyClient.expectString,
|
|
1223
|
-
pendingMaintenance: (_) => de_PendingMaintenance(_),
|
|
1224
|
-
preferredMaintenanceWindow: smithyClient.expectString,
|
|
1225
|
-
publiclyAccessible: smithyClient.expectBoolean,
|
|
1226
|
-
securityGroupIds: smithyClient._json,
|
|
1227
|
-
status: smithyClient.expectString,
|
|
1228
|
-
statusReason: smithyClient.expectString,
|
|
1229
|
-
storageConfigurations: (_) => de_StorageConfigurationList(_),
|
|
1230
|
-
subnetIds: smithyClient._json,
|
|
1231
|
-
tags: smithyClient._json,
|
|
1232
|
-
vpcId: smithyClient.expectString,
|
|
1233
|
-
});
|
|
1234
|
-
Object.assign(contents, doc);
|
|
1235
|
-
return contents;
|
|
1236
|
-
};
|
|
1237
|
-
const de_GetSignedBluinsightsUrlCommand = async (output, context) => {
|
|
1238
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1239
|
-
return de_CommandError(output, context);
|
|
1240
|
-
}
|
|
1241
|
-
const contents = smithyClient.map({
|
|
1242
|
-
$metadata: deserializeMetadata(output),
|
|
1243
|
-
});
|
|
1244
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1245
|
-
const doc = smithyClient.take(data, {
|
|
1246
|
-
signedBiUrl: smithyClient.expectString,
|
|
1247
|
-
});
|
|
1248
|
-
Object.assign(contents, doc);
|
|
1249
|
-
return contents;
|
|
1250
|
-
};
|
|
1251
|
-
const de_ListApplicationsCommand = async (output, context) => {
|
|
1252
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1253
|
-
return de_CommandError(output, context);
|
|
1254
|
-
}
|
|
1255
|
-
const contents = smithyClient.map({
|
|
1256
|
-
$metadata: deserializeMetadata(output),
|
|
1257
|
-
});
|
|
1258
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1259
|
-
const doc = smithyClient.take(data, {
|
|
1260
|
-
applications: (_) => de_ApplicationSummaryList(_),
|
|
1261
|
-
nextToken: smithyClient.expectString,
|
|
1262
|
-
});
|
|
1263
|
-
Object.assign(contents, doc);
|
|
1264
|
-
return contents;
|
|
1265
|
-
};
|
|
1266
|
-
const de_ListApplicationVersionsCommand = async (output, context) => {
|
|
1267
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1268
|
-
return de_CommandError(output, context);
|
|
1269
|
-
}
|
|
1270
|
-
const contents = smithyClient.map({
|
|
1271
|
-
$metadata: deserializeMetadata(output),
|
|
1272
|
-
});
|
|
1273
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1274
|
-
const doc = smithyClient.take(data, {
|
|
1275
|
-
applicationVersions: (_) => de_ApplicationVersionSummaryList(_),
|
|
1276
|
-
nextToken: smithyClient.expectString,
|
|
1277
|
-
});
|
|
1278
|
-
Object.assign(contents, doc);
|
|
1279
|
-
return contents;
|
|
1280
|
-
};
|
|
1281
|
-
const de_ListBatchJobDefinitionsCommand = async (output, context) => {
|
|
1282
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1283
|
-
return de_CommandError(output, context);
|
|
1284
|
-
}
|
|
1285
|
-
const contents = smithyClient.map({
|
|
1286
|
-
$metadata: deserializeMetadata(output),
|
|
1287
|
-
});
|
|
1288
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1289
|
-
const doc = smithyClient.take(data, {
|
|
1290
|
-
batchJobDefinitions: smithyClient._json,
|
|
1291
|
-
nextToken: smithyClient.expectString,
|
|
1292
|
-
});
|
|
1293
|
-
Object.assign(contents, doc);
|
|
1294
|
-
return contents;
|
|
1295
|
-
};
|
|
1296
|
-
const de_ListBatchJobExecutionsCommand = async (output, context) => {
|
|
1297
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1298
|
-
return de_CommandError(output, context);
|
|
1299
|
-
}
|
|
1300
|
-
const contents = smithyClient.map({
|
|
1301
|
-
$metadata: deserializeMetadata(output),
|
|
1302
|
-
});
|
|
1303
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1304
|
-
const doc = smithyClient.take(data, {
|
|
1305
|
-
batchJobExecutions: (_) => de_BatchJobExecutionSummaryList(_),
|
|
1306
|
-
nextToken: smithyClient.expectString,
|
|
1307
|
-
});
|
|
1308
|
-
Object.assign(contents, doc);
|
|
1309
|
-
return contents;
|
|
1310
|
-
};
|
|
1311
|
-
const de_ListBatchJobRestartPointsCommand = async (output, context) => {
|
|
1312
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1313
|
-
return de_CommandError(output, context);
|
|
1314
|
-
}
|
|
1315
|
-
const contents = smithyClient.map({
|
|
1316
|
-
$metadata: deserializeMetadata(output),
|
|
1317
|
-
});
|
|
1318
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1319
|
-
const doc = smithyClient.take(data, {
|
|
1320
|
-
batchJobSteps: (_) => de_BatchJobStepList(_),
|
|
1321
|
-
});
|
|
1322
|
-
Object.assign(contents, doc);
|
|
1323
|
-
return contents;
|
|
1324
|
-
};
|
|
1325
|
-
const de_ListDataSetExportHistoryCommand = async (output, context) => {
|
|
1326
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1327
|
-
return de_CommandError(output, context);
|
|
1328
|
-
}
|
|
1329
|
-
const contents = smithyClient.map({
|
|
1330
|
-
$metadata: deserializeMetadata(output),
|
|
1331
|
-
});
|
|
1332
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1333
|
-
const doc = smithyClient.take(data, {
|
|
1334
|
-
dataSetExportTasks: smithyClient._json,
|
|
1335
|
-
nextToken: smithyClient.expectString,
|
|
1336
|
-
});
|
|
1337
|
-
Object.assign(contents, doc);
|
|
1338
|
-
return contents;
|
|
1339
|
-
};
|
|
1340
|
-
const de_ListDataSetImportHistoryCommand = async (output, context) => {
|
|
1341
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1342
|
-
return de_CommandError(output, context);
|
|
1343
|
-
}
|
|
1344
|
-
const contents = smithyClient.map({
|
|
1345
|
-
$metadata: deserializeMetadata(output),
|
|
1346
|
-
});
|
|
1347
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1348
|
-
const doc = smithyClient.take(data, {
|
|
1349
|
-
dataSetImportTasks: smithyClient._json,
|
|
1350
|
-
nextToken: smithyClient.expectString,
|
|
1351
|
-
});
|
|
1352
|
-
Object.assign(contents, doc);
|
|
1353
|
-
return contents;
|
|
1354
|
-
};
|
|
1355
|
-
const de_ListDataSetsCommand = async (output, context) => {
|
|
1356
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1357
|
-
return de_CommandError(output, context);
|
|
1358
|
-
}
|
|
1359
|
-
const contents = smithyClient.map({
|
|
1360
|
-
$metadata: deserializeMetadata(output),
|
|
1361
|
-
});
|
|
1362
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1363
|
-
const doc = smithyClient.take(data, {
|
|
1364
|
-
dataSets: (_) => de_DataSetsSummaryList(_),
|
|
1365
|
-
nextToken: smithyClient.expectString,
|
|
1366
|
-
});
|
|
1367
|
-
Object.assign(contents, doc);
|
|
1368
|
-
return contents;
|
|
1369
|
-
};
|
|
1370
|
-
const de_ListDeploymentsCommand = async (output, context) => {
|
|
1371
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1372
|
-
return de_CommandError(output, context);
|
|
1373
|
-
}
|
|
1374
|
-
const contents = smithyClient.map({
|
|
1375
|
-
$metadata: deserializeMetadata(output),
|
|
1376
|
-
});
|
|
1377
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1378
|
-
const doc = smithyClient.take(data, {
|
|
1379
|
-
deployments: (_) => de_DeploymentList(_),
|
|
1380
|
-
nextToken: smithyClient.expectString,
|
|
1381
|
-
});
|
|
1382
|
-
Object.assign(contents, doc);
|
|
1383
|
-
return contents;
|
|
1384
|
-
};
|
|
1385
|
-
const de_ListEngineVersionsCommand = async (output, context) => {
|
|
1386
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1387
|
-
return de_CommandError(output, context);
|
|
1388
|
-
}
|
|
1389
|
-
const contents = smithyClient.map({
|
|
1390
|
-
$metadata: deserializeMetadata(output),
|
|
1391
|
-
});
|
|
1392
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1393
|
-
const doc = smithyClient.take(data, {
|
|
1394
|
-
engineVersions: smithyClient._json,
|
|
1395
|
-
nextToken: smithyClient.expectString,
|
|
1396
|
-
});
|
|
1397
|
-
Object.assign(contents, doc);
|
|
1398
|
-
return contents;
|
|
1399
|
-
};
|
|
1400
|
-
const de_ListEnvironmentsCommand = async (output, context) => {
|
|
1401
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1402
|
-
return de_CommandError(output, context);
|
|
1403
|
-
}
|
|
1404
|
-
const contents = smithyClient.map({
|
|
1405
|
-
$metadata: deserializeMetadata(output),
|
|
1406
|
-
});
|
|
1407
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1408
|
-
const doc = smithyClient.take(data, {
|
|
1409
|
-
environments: (_) => de_EnvironmentSummaryList(_),
|
|
1410
|
-
nextToken: smithyClient.expectString,
|
|
1411
|
-
});
|
|
1412
|
-
Object.assign(contents, doc);
|
|
1413
|
-
return contents;
|
|
1414
|
-
};
|
|
1415
|
-
const de_ListTagsForResourceCommand = async (output, context) => {
|
|
1416
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1417
|
-
return de_CommandError(output, context);
|
|
1418
|
-
}
|
|
1419
|
-
const contents = smithyClient.map({
|
|
1420
|
-
$metadata: deserializeMetadata(output),
|
|
1421
|
-
});
|
|
1422
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1423
|
-
const doc = smithyClient.take(data, {
|
|
1424
|
-
tags: smithyClient._json,
|
|
1425
|
-
});
|
|
1426
|
-
Object.assign(contents, doc);
|
|
1427
|
-
return contents;
|
|
1428
|
-
};
|
|
1429
|
-
const de_StartApplicationCommand = async (output, context) => {
|
|
1430
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1431
|
-
return de_CommandError(output, context);
|
|
1432
|
-
}
|
|
1433
|
-
const contents = smithyClient.map({
|
|
1434
|
-
$metadata: deserializeMetadata(output),
|
|
1435
|
-
});
|
|
1436
|
-
await smithyClient.collectBody(output.body, context);
|
|
1437
|
-
return contents;
|
|
1438
|
-
};
|
|
1439
|
-
const de_StartBatchJobCommand = async (output, context) => {
|
|
1440
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1441
|
-
return de_CommandError(output, context);
|
|
1442
|
-
}
|
|
1443
|
-
const contents = smithyClient.map({
|
|
1444
|
-
$metadata: deserializeMetadata(output),
|
|
1445
|
-
});
|
|
1446
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1447
|
-
const doc = smithyClient.take(data, {
|
|
1448
|
-
executionId: smithyClient.expectString,
|
|
1449
|
-
});
|
|
1450
|
-
Object.assign(contents, doc);
|
|
1451
|
-
return contents;
|
|
1452
|
-
};
|
|
1453
|
-
const de_StopApplicationCommand = async (output, context) => {
|
|
1454
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1455
|
-
return de_CommandError(output, context);
|
|
1456
|
-
}
|
|
1457
|
-
const contents = smithyClient.map({
|
|
1458
|
-
$metadata: deserializeMetadata(output),
|
|
1459
|
-
});
|
|
1460
|
-
await smithyClient.collectBody(output.body, context);
|
|
1461
|
-
return contents;
|
|
1462
|
-
};
|
|
1463
|
-
const de_TagResourceCommand = async (output, context) => {
|
|
1464
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1465
|
-
return de_CommandError(output, context);
|
|
1466
|
-
}
|
|
1467
|
-
const contents = smithyClient.map({
|
|
1468
|
-
$metadata: deserializeMetadata(output),
|
|
1469
|
-
});
|
|
1470
|
-
await smithyClient.collectBody(output.body, context);
|
|
1471
|
-
return contents;
|
|
1472
|
-
};
|
|
1473
|
-
const de_UntagResourceCommand = async (output, context) => {
|
|
1474
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1475
|
-
return de_CommandError(output, context);
|
|
1476
|
-
}
|
|
1477
|
-
const contents = smithyClient.map({
|
|
1478
|
-
$metadata: deserializeMetadata(output),
|
|
1479
|
-
});
|
|
1480
|
-
await smithyClient.collectBody(output.body, context);
|
|
1481
|
-
return contents;
|
|
1482
|
-
};
|
|
1483
|
-
const de_UpdateApplicationCommand = async (output, context) => {
|
|
1484
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1485
|
-
return de_CommandError(output, context);
|
|
1486
|
-
}
|
|
1487
|
-
const contents = smithyClient.map({
|
|
1488
|
-
$metadata: deserializeMetadata(output),
|
|
1489
|
-
});
|
|
1490
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1491
|
-
const doc = smithyClient.take(data, {
|
|
1492
|
-
applicationVersion: smithyClient.expectInt32,
|
|
1493
|
-
});
|
|
1494
|
-
Object.assign(contents, doc);
|
|
1495
|
-
return contents;
|
|
1496
|
-
};
|
|
1497
|
-
const de_UpdateEnvironmentCommand = async (output, context) => {
|
|
1498
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1499
|
-
return de_CommandError(output, context);
|
|
1500
|
-
}
|
|
1501
|
-
const contents = smithyClient.map({
|
|
1502
|
-
$metadata: deserializeMetadata(output),
|
|
1503
|
-
});
|
|
1504
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1505
|
-
const doc = smithyClient.take(data, {
|
|
1506
|
-
environmentId: smithyClient.expectString,
|
|
1507
|
-
});
|
|
1508
|
-
Object.assign(contents, doc);
|
|
1509
|
-
return contents;
|
|
1510
|
-
};
|
|
1511
|
-
const de_CommandError = async (output, context) => {
|
|
1512
|
-
const parsedOutput = {
|
|
1513
|
-
...output,
|
|
1514
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
1515
|
-
};
|
|
1516
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1517
|
-
switch (errorCode) {
|
|
1518
|
-
case "AccessDeniedException":
|
|
1519
|
-
case "com.amazonaws.m2#AccessDeniedException":
|
|
1520
|
-
throw await de_AccessDeniedExceptionRes(parsedOutput);
|
|
1521
|
-
case "ConflictException":
|
|
1522
|
-
case "com.amazonaws.m2#ConflictException":
|
|
1523
|
-
throw await de_ConflictExceptionRes(parsedOutput);
|
|
1524
|
-
case "InternalServerException":
|
|
1525
|
-
case "com.amazonaws.m2#InternalServerException":
|
|
1526
|
-
throw await de_InternalServerExceptionRes(parsedOutput);
|
|
1527
|
-
case "ResourceNotFoundException":
|
|
1528
|
-
case "com.amazonaws.m2#ResourceNotFoundException":
|
|
1529
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
1530
|
-
case "ThrottlingException":
|
|
1531
|
-
case "com.amazonaws.m2#ThrottlingException":
|
|
1532
|
-
throw await de_ThrottlingExceptionRes(parsedOutput);
|
|
1533
|
-
case "ValidationException":
|
|
1534
|
-
case "com.amazonaws.m2#ValidationException":
|
|
1535
|
-
throw await de_ValidationExceptionRes(parsedOutput);
|
|
1536
|
-
case "ServiceQuotaExceededException":
|
|
1537
|
-
case "com.amazonaws.m2#ServiceQuotaExceededException":
|
|
1538
|
-
throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
|
|
1539
|
-
case "ExecutionTimeoutException":
|
|
1540
|
-
case "com.amazonaws.m2#ExecutionTimeoutException":
|
|
1541
|
-
throw await de_ExecutionTimeoutExceptionRes(parsedOutput);
|
|
1542
|
-
case "ServiceUnavailableException":
|
|
1543
|
-
case "com.amazonaws.m2#ServiceUnavailableException":
|
|
1544
|
-
throw await de_ServiceUnavailableExceptionRes(parsedOutput);
|
|
1545
|
-
default:
|
|
1546
|
-
const parsedBody = parsedOutput.body;
|
|
1547
|
-
return throwDefaultError({
|
|
1548
|
-
output,
|
|
1549
|
-
parsedBody,
|
|
1550
|
-
errorCode,
|
|
1551
|
-
});
|
|
1552
|
-
}
|
|
1553
|
-
};
|
|
1554
|
-
const throwDefaultError = smithyClient.withBaseException(M2ServiceException);
|
|
1555
|
-
const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
|
|
1556
|
-
const contents = smithyClient.map({});
|
|
1557
|
-
const data = parsedOutput.body;
|
|
1558
|
-
const doc = smithyClient.take(data, {
|
|
1559
|
-
message: smithyClient.expectString,
|
|
1560
|
-
});
|
|
1561
|
-
Object.assign(contents, doc);
|
|
1562
|
-
const exception = new AccessDeniedException({
|
|
1563
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1564
|
-
...contents,
|
|
1565
|
-
});
|
|
1566
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1567
|
-
};
|
|
1568
|
-
const de_ConflictExceptionRes = async (parsedOutput, context) => {
|
|
1569
|
-
const contents = smithyClient.map({});
|
|
1570
|
-
const data = parsedOutput.body;
|
|
1571
|
-
const doc = smithyClient.take(data, {
|
|
1572
|
-
message: smithyClient.expectString,
|
|
1573
|
-
resourceId: smithyClient.expectString,
|
|
1574
|
-
resourceType: smithyClient.expectString,
|
|
1575
|
-
});
|
|
1576
|
-
Object.assign(contents, doc);
|
|
1577
|
-
const exception = new ConflictException({
|
|
1578
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1579
|
-
...contents,
|
|
1580
|
-
});
|
|
1581
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1582
|
-
};
|
|
1583
|
-
const de_ExecutionTimeoutExceptionRes = async (parsedOutput, context) => {
|
|
1584
|
-
const contents = smithyClient.map({});
|
|
1585
|
-
const data = parsedOutput.body;
|
|
1586
|
-
const doc = smithyClient.take(data, {
|
|
1587
|
-
message: smithyClient.expectString,
|
|
1588
|
-
});
|
|
1589
|
-
Object.assign(contents, doc);
|
|
1590
|
-
const exception = new ExecutionTimeoutException({
|
|
1591
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1592
|
-
...contents,
|
|
1593
|
-
});
|
|
1594
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1595
|
-
};
|
|
1596
|
-
const de_InternalServerExceptionRes = async (parsedOutput, context) => {
|
|
1597
|
-
const contents = smithyClient.map({
|
|
1598
|
-
[_rAS]: [() => void 0 !== parsedOutput.headers[_ra], () => smithyClient.strictParseInt32(parsedOutput.headers[_ra])],
|
|
1599
|
-
});
|
|
1600
|
-
const data = parsedOutput.body;
|
|
1601
|
-
const doc = smithyClient.take(data, {
|
|
1602
|
-
message: smithyClient.expectString,
|
|
1603
|
-
});
|
|
1604
|
-
Object.assign(contents, doc);
|
|
1605
|
-
const exception = new InternalServerException({
|
|
1606
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1607
|
-
...contents,
|
|
1608
|
-
});
|
|
1609
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1610
|
-
};
|
|
1611
|
-
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
1612
|
-
const contents = smithyClient.map({});
|
|
1613
|
-
const data = parsedOutput.body;
|
|
1614
|
-
const doc = smithyClient.take(data, {
|
|
1615
|
-
message: smithyClient.expectString,
|
|
1616
|
-
resourceId: smithyClient.expectString,
|
|
1617
|
-
resourceType: smithyClient.expectString,
|
|
1618
|
-
});
|
|
1619
|
-
Object.assign(contents, doc);
|
|
1620
|
-
const exception = new ResourceNotFoundException({
|
|
1621
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1622
|
-
...contents,
|
|
1623
|
-
});
|
|
1624
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1625
|
-
};
|
|
1626
|
-
const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
|
|
1627
|
-
const contents = smithyClient.map({});
|
|
1628
|
-
const data = parsedOutput.body;
|
|
1629
|
-
const doc = smithyClient.take(data, {
|
|
1630
|
-
message: smithyClient.expectString,
|
|
1631
|
-
quotaCode: smithyClient.expectString,
|
|
1632
|
-
resourceId: smithyClient.expectString,
|
|
1633
|
-
resourceType: smithyClient.expectString,
|
|
1634
|
-
serviceCode: smithyClient.expectString,
|
|
1635
|
-
});
|
|
1636
|
-
Object.assign(contents, doc);
|
|
1637
|
-
const exception = new ServiceQuotaExceededException({
|
|
1638
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1639
|
-
...contents,
|
|
1640
|
-
});
|
|
1641
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1642
|
-
};
|
|
1643
|
-
const de_ServiceUnavailableExceptionRes = async (parsedOutput, context) => {
|
|
1644
|
-
const contents = smithyClient.map({});
|
|
1645
|
-
const data = parsedOutput.body;
|
|
1646
|
-
const doc = smithyClient.take(data, {
|
|
1647
|
-
message: smithyClient.expectString,
|
|
1648
|
-
});
|
|
1649
|
-
Object.assign(contents, doc);
|
|
1650
|
-
const exception = new ServiceUnavailableException({
|
|
1651
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1652
|
-
...contents,
|
|
1653
|
-
});
|
|
1654
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1655
|
-
};
|
|
1656
|
-
const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
|
|
1657
|
-
const contents = smithyClient.map({
|
|
1658
|
-
[_rAS]: [() => void 0 !== parsedOutput.headers[_ra], () => smithyClient.strictParseInt32(parsedOutput.headers[_ra])],
|
|
1659
|
-
});
|
|
1660
|
-
const data = parsedOutput.body;
|
|
1661
|
-
const doc = smithyClient.take(data, {
|
|
1662
|
-
message: smithyClient.expectString,
|
|
1663
|
-
quotaCode: smithyClient.expectString,
|
|
1664
|
-
serviceCode: smithyClient.expectString,
|
|
1665
|
-
});
|
|
1666
|
-
Object.assign(contents, doc);
|
|
1667
|
-
const exception = new ThrottlingException({
|
|
1668
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1669
|
-
...contents,
|
|
1670
|
-
});
|
|
1671
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1672
|
-
};
|
|
1673
|
-
const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
1674
|
-
const contents = smithyClient.map({});
|
|
1675
|
-
const data = parsedOutput.body;
|
|
1676
|
-
const doc = smithyClient.take(data, {
|
|
1677
|
-
fieldList: smithyClient._json,
|
|
1678
|
-
message: smithyClient.expectString,
|
|
1679
|
-
reason: smithyClient.expectString,
|
|
1680
|
-
});
|
|
1681
|
-
Object.assign(contents, doc);
|
|
1682
|
-
const exception = new ValidationException({
|
|
1683
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1684
|
-
...contents,
|
|
1685
|
-
});
|
|
1686
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1687
|
-
};
|
|
1688
|
-
const se_EfsStorageConfiguration = (input, context) => {
|
|
1689
|
-
return smithyClient.take(input, {
|
|
1690
|
-
"file-system-id": [, , `fileSystemId`],
|
|
1691
|
-
"mount-point": [, , `mountPoint`],
|
|
1692
|
-
});
|
|
1693
|
-
};
|
|
1694
|
-
const se_FsxStorageConfiguration = (input, context) => {
|
|
1695
|
-
return smithyClient.take(input, {
|
|
1696
|
-
"file-system-id": [, , `fileSystemId`],
|
|
1697
|
-
"mount-point": [, , `mountPoint`],
|
|
1698
|
-
});
|
|
1699
|
-
};
|
|
1700
|
-
const se_StorageConfiguration = (input, context) => {
|
|
1701
|
-
return exports.StorageConfiguration.visit(input, {
|
|
1702
|
-
efs: (value) => ({ efs: se_EfsStorageConfiguration(value) }),
|
|
1703
|
-
fsx: (value) => ({ fsx: se_FsxStorageConfiguration(value) }),
|
|
1704
|
-
_: (name, value) => ({ [name]: value }),
|
|
1705
|
-
});
|
|
1706
|
-
};
|
|
1707
|
-
const se_StorageConfigurationList = (input, context) => {
|
|
1708
|
-
return input
|
|
1709
|
-
.filter((e) => e != null)
|
|
1710
|
-
.map((entry) => {
|
|
1711
|
-
return se_StorageConfiguration(entry);
|
|
1712
|
-
});
|
|
1713
|
-
};
|
|
1714
|
-
const de_ApplicationSummary = (output, context) => {
|
|
1715
|
-
return smithyClient.take(output, {
|
|
1716
|
-
applicationArn: smithyClient.expectString,
|
|
1717
|
-
applicationId: smithyClient.expectString,
|
|
1718
|
-
applicationVersion: smithyClient.expectInt32,
|
|
1719
|
-
creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1720
|
-
deploymentStatus: smithyClient.expectString,
|
|
1721
|
-
description: smithyClient.expectString,
|
|
1722
|
-
engineType: smithyClient.expectString,
|
|
1723
|
-
environmentId: smithyClient.expectString,
|
|
1724
|
-
lastStartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1725
|
-
name: smithyClient.expectString,
|
|
1726
|
-
roleArn: smithyClient.expectString,
|
|
1727
|
-
status: smithyClient.expectString,
|
|
1728
|
-
versionStatus: smithyClient.expectString,
|
|
1729
|
-
});
|
|
1730
|
-
};
|
|
1731
|
-
const de_ApplicationSummaryList = (output, context) => {
|
|
1732
|
-
const retVal = (output || [])
|
|
1733
|
-
.filter((e) => e != null)
|
|
1734
|
-
.map((entry) => {
|
|
1735
|
-
return de_ApplicationSummary(entry);
|
|
1736
|
-
});
|
|
1737
|
-
return retVal;
|
|
1738
|
-
};
|
|
1739
|
-
const de_ApplicationVersionSummary = (output, context) => {
|
|
1740
|
-
return smithyClient.take(output, {
|
|
1741
|
-
applicationVersion: smithyClient.expectInt32,
|
|
1742
|
-
creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1743
|
-
status: smithyClient.expectString,
|
|
1744
|
-
statusReason: smithyClient.expectString,
|
|
1745
|
-
});
|
|
1746
|
-
};
|
|
1747
|
-
const de_ApplicationVersionSummaryList = (output, context) => {
|
|
1748
|
-
const retVal = (output || [])
|
|
1749
|
-
.filter((e) => e != null)
|
|
1750
|
-
.map((entry) => {
|
|
1751
|
-
return de_ApplicationVersionSummary(entry);
|
|
1752
|
-
});
|
|
1753
|
-
return retVal;
|
|
1754
|
-
};
|
|
1755
|
-
const de_BatchJobExecutionSummary = (output, context) => {
|
|
1756
|
-
return smithyClient.take(output, {
|
|
1757
|
-
applicationId: smithyClient.expectString,
|
|
1758
|
-
batchJobIdentifier: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
|
|
1759
|
-
endTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1760
|
-
executionId: smithyClient.expectString,
|
|
1761
|
-
jobId: smithyClient.expectString,
|
|
1762
|
-
jobName: smithyClient.expectString,
|
|
1763
|
-
jobType: smithyClient.expectString,
|
|
1764
|
-
returnCode: smithyClient.expectString,
|
|
1765
|
-
startTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1766
|
-
status: smithyClient.expectString,
|
|
1767
|
-
});
|
|
1768
|
-
};
|
|
1769
|
-
const de_BatchJobExecutionSummaryList = (output, context) => {
|
|
1770
|
-
const retVal = (output || [])
|
|
1771
|
-
.filter((e) => e != null)
|
|
1772
|
-
.map((entry) => {
|
|
1773
|
-
return de_BatchJobExecutionSummary(entry);
|
|
1774
|
-
});
|
|
1775
|
-
return retVal;
|
|
1776
|
-
};
|
|
1777
|
-
const de_BatchJobStepList = (output, context) => {
|
|
1778
|
-
const retVal = (output || [])
|
|
1779
|
-
.filter((e) => e != null)
|
|
1780
|
-
.map((entry) => {
|
|
1781
|
-
return de_JobStep(entry);
|
|
1782
|
-
});
|
|
1783
|
-
return retVal;
|
|
1784
|
-
};
|
|
1785
|
-
const de_DataSetsSummaryList = (output, context) => {
|
|
1786
|
-
const retVal = (output || [])
|
|
1787
|
-
.filter((e) => e != null)
|
|
1788
|
-
.map((entry) => {
|
|
1789
|
-
return de_DataSetSummary(entry);
|
|
1790
|
-
});
|
|
1791
|
-
return retVal;
|
|
1792
|
-
};
|
|
1793
|
-
const de_DataSetSummary = (output, context) => {
|
|
1794
|
-
return smithyClient.take(output, {
|
|
1795
|
-
creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1796
|
-
dataSetName: smithyClient.expectString,
|
|
1797
|
-
dataSetOrg: smithyClient.expectString,
|
|
1798
|
-
format: smithyClient.expectString,
|
|
1799
|
-
lastReferencedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1800
|
-
lastUpdatedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1801
|
-
});
|
|
1802
|
-
};
|
|
1803
|
-
const de_DeploymentList = (output, context) => {
|
|
1804
|
-
const retVal = (output || [])
|
|
1805
|
-
.filter((e) => e != null)
|
|
1806
|
-
.map((entry) => {
|
|
1807
|
-
return de_DeploymentSummary(entry);
|
|
1808
|
-
});
|
|
1809
|
-
return retVal;
|
|
1810
|
-
};
|
|
1811
|
-
const de_DeploymentSummary = (output, context) => {
|
|
1812
|
-
return smithyClient.take(output, {
|
|
1813
|
-
applicationId: smithyClient.expectString,
|
|
1814
|
-
applicationVersion: smithyClient.expectInt32,
|
|
1815
|
-
creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1816
|
-
deploymentId: smithyClient.expectString,
|
|
1817
|
-
environmentId: smithyClient.expectString,
|
|
1818
|
-
status: smithyClient.expectString,
|
|
1819
|
-
statusReason: smithyClient.expectString,
|
|
1820
|
-
});
|
|
1821
|
-
};
|
|
1822
|
-
const de_EfsStorageConfiguration = (output, context) => {
|
|
1823
|
-
return smithyClient.take(output, {
|
|
1824
|
-
fileSystemId: [, smithyClient.expectString, `file-system-id`],
|
|
1825
|
-
mountPoint: [, smithyClient.expectString, `mount-point`],
|
|
1826
|
-
});
|
|
1827
|
-
};
|
|
1828
|
-
const de_EnvironmentSummary = (output, context) => {
|
|
1829
|
-
return smithyClient.take(output, {
|
|
1830
|
-
creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1831
|
-
engineType: smithyClient.expectString,
|
|
1832
|
-
engineVersion: smithyClient.expectString,
|
|
1833
|
-
environmentArn: smithyClient.expectString,
|
|
1834
|
-
environmentId: smithyClient.expectString,
|
|
1835
|
-
instanceType: smithyClient.expectString,
|
|
1836
|
-
name: smithyClient.expectString,
|
|
1837
|
-
networkType: smithyClient.expectString,
|
|
1838
|
-
status: smithyClient.expectString,
|
|
1839
|
-
});
|
|
1840
|
-
};
|
|
1841
|
-
const de_EnvironmentSummaryList = (output, context) => {
|
|
1842
|
-
const retVal = (output || [])
|
|
1843
|
-
.filter((e) => e != null)
|
|
1844
|
-
.map((entry) => {
|
|
1845
|
-
return de_EnvironmentSummary(entry);
|
|
1846
|
-
});
|
|
1847
|
-
return retVal;
|
|
1848
|
-
};
|
|
1849
|
-
const de_FsxStorageConfiguration = (output, context) => {
|
|
1850
|
-
return smithyClient.take(output, {
|
|
1851
|
-
fileSystemId: [, smithyClient.expectString, `file-system-id`],
|
|
1852
|
-
mountPoint: [, smithyClient.expectString, `mount-point`],
|
|
1853
|
-
});
|
|
1854
|
-
};
|
|
1855
|
-
const de_JobStep = (output, context) => {
|
|
1856
|
-
return smithyClient.take(output, {
|
|
1857
|
-
procStepName: smithyClient.expectString,
|
|
1858
|
-
procStepNumber: smithyClient.expectInt32,
|
|
1859
|
-
stepCheckpoint: smithyClient.expectInt32,
|
|
1860
|
-
stepCheckpointStatus: smithyClient.expectString,
|
|
1861
|
-
stepCheckpointTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1862
|
-
stepCondCode: smithyClient.expectString,
|
|
1863
|
-
stepName: smithyClient.expectString,
|
|
1864
|
-
stepNumber: smithyClient.expectInt32,
|
|
1865
|
-
stepRestartable: smithyClient.expectBoolean,
|
|
1866
|
-
});
|
|
1867
|
-
};
|
|
1868
|
-
const de_MaintenanceSchedule = (output, context) => {
|
|
1869
|
-
return smithyClient.take(output, {
|
|
1870
|
-
endTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1871
|
-
startTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1872
|
-
});
|
|
1873
|
-
};
|
|
1874
|
-
const de_PendingMaintenance = (output, context) => {
|
|
1875
|
-
return smithyClient.take(output, {
|
|
1876
|
-
engineVersion: smithyClient.expectString,
|
|
1877
|
-
schedule: (_) => de_MaintenanceSchedule(_),
|
|
1878
|
-
});
|
|
1879
|
-
};
|
|
1880
|
-
const de_StorageConfiguration = (output, context) => {
|
|
1881
|
-
if (output.efs != null) {
|
|
1882
|
-
return {
|
|
1883
|
-
efs: de_EfsStorageConfiguration(output.efs),
|
|
1884
|
-
};
|
|
1885
|
-
}
|
|
1886
|
-
if (output.fsx != null) {
|
|
1887
|
-
return {
|
|
1888
|
-
fsx: de_FsxStorageConfiguration(output.fsx),
|
|
1889
|
-
};
|
|
1890
|
-
}
|
|
1891
|
-
return { $unknown: Object.entries(output)[0] };
|
|
1892
|
-
};
|
|
1893
|
-
const de_StorageConfigurationList = (output, context) => {
|
|
1894
|
-
const retVal = (output || [])
|
|
1895
|
-
.filter((e) => e != null)
|
|
1896
|
-
.map((entry) => {
|
|
1897
|
-
return de_StorageConfiguration(core$1.awsExpectUnion(entry));
|
|
1898
|
-
});
|
|
1899
|
-
return retVal;
|
|
1900
|
-
};
|
|
1901
|
-
const deserializeMetadata = (output) => ({
|
|
1902
|
-
httpStatusCode: output.statusCode,
|
|
1903
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1904
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1905
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
1906
|
-
});
|
|
338
|
+
const _ADE = "AccessDeniedException";
|
|
339
|
+
const _AK = "AlternateKey";
|
|
340
|
+
const _AKL = "AlternateKeyList";
|
|
341
|
+
const _AS = "ApplicationSummary";
|
|
342
|
+
const _ASL = "ApplicationSummaryList";
|
|
343
|
+
const _AVS = "ApplicationVersionSummary";
|
|
344
|
+
const _AVSL = "ApplicationVersionSummaryList";
|
|
345
|
+
const _BJD = "BatchJobDefinitions";
|
|
346
|
+
const _BJDa = "BatchJobDefinition";
|
|
347
|
+
const _BJES = "BatchJobExecutionSummary";
|
|
348
|
+
const _BJESL = "BatchJobExecutionSummaryList";
|
|
349
|
+
const _BJI = "BatchJobIdentifier";
|
|
350
|
+
const _BJSL = "BatchJobStepList";
|
|
351
|
+
const _CA = "CreateApplication";
|
|
352
|
+
const _CAR = "CreateApplicationRequest";
|
|
353
|
+
const _CARr = "CreateApplicationResponse";
|
|
354
|
+
const _CBJE = "CancelBatchJobExecution";
|
|
355
|
+
const _CBJER = "CancelBatchJobExecutionRequest";
|
|
356
|
+
const _CBJERa = "CancelBatchJobExecutionResponse";
|
|
357
|
+
const _CD = "CreateDeployment";
|
|
358
|
+
const _CDR = "CreateDeploymentRequest";
|
|
359
|
+
const _CDRr = "CreateDeploymentResponse";
|
|
360
|
+
const _CDSET = "CreateDataSetExportTask";
|
|
361
|
+
const _CDSETR = "CreateDataSetExportTaskRequest";
|
|
362
|
+
const _CDSETRr = "CreateDataSetExportTaskResponse";
|
|
363
|
+
const _CDSIT = "CreateDataSetImportTask";
|
|
364
|
+
const _CDSITR = "CreateDataSetImportTaskRequest";
|
|
365
|
+
const _CDSITRr = "CreateDataSetImportTaskResponse";
|
|
366
|
+
const _CE = "ConflictException";
|
|
367
|
+
const _CER = "CreateEnvironmentRequest";
|
|
368
|
+
const _CERr = "CreateEnvironmentResponse";
|
|
369
|
+
const _CEr = "CreateEnvironment";
|
|
370
|
+
const _D = "Definition";
|
|
371
|
+
const _DA = "DeleteApplication";
|
|
372
|
+
const _DAFE = "DeleteApplicationFromEnvironment";
|
|
373
|
+
const _DAFER = "DeleteApplicationFromEnvironmentRequest";
|
|
374
|
+
const _DAFERe = "DeleteApplicationFromEnvironmentResponse";
|
|
375
|
+
const _DAR = "DeleteApplicationRequest";
|
|
376
|
+
const _DARe = "DeleteApplicationResponse";
|
|
377
|
+
const _DDOA = "DatasetDetailOrgAttributes";
|
|
378
|
+
const _DE = "DeleteEnvironment";
|
|
379
|
+
const _DER = "DeleteEnvironmentRequest";
|
|
380
|
+
const _DERe = "DeleteEnvironmentResponse";
|
|
381
|
+
const _DL = "DeploymentList";
|
|
382
|
+
const _DOA = "DatasetOrgAttributes";
|
|
383
|
+
const _DS = "DataSet";
|
|
384
|
+
const _DSEC = "DataSetExportConfig";
|
|
385
|
+
const _DSEI = "DataSetExportItem";
|
|
386
|
+
const _DSEL = "DataSetExportList";
|
|
387
|
+
const _DSES = "DataSetExportSummary";
|
|
388
|
+
const _DSET = "DataSetExportTask";
|
|
389
|
+
const _DSETL = "DataSetExportTaskList";
|
|
390
|
+
const _DSIC = "DataSetImportConfig";
|
|
391
|
+
const _DSII = "DataSetImportItem";
|
|
392
|
+
const _DSIL = "DataSetImportList";
|
|
393
|
+
const _DSIS = "DataSetImportSummary";
|
|
394
|
+
const _DSIT = "DataSetImportTask";
|
|
395
|
+
const _DSITL = "DataSetImportTaskList";
|
|
396
|
+
const _DSS = "DataSetSummary";
|
|
397
|
+
const _DSSL = "DataSetsSummaryList";
|
|
398
|
+
const _DSe = "DeploymentSummary";
|
|
399
|
+
const _DVS = "DeployedVersionSummary";
|
|
400
|
+
const _EL = "ExternalLocation";
|
|
401
|
+
const _ES = "EnvironmentSummary";
|
|
402
|
+
const _ESC = "EfsStorageConfiguration";
|
|
403
|
+
const _ESL = "EnvironmentSummaryList";
|
|
404
|
+
const _ETE = "ExecutionTimeoutException";
|
|
405
|
+
const _EVS = "EngineVersionsSummary";
|
|
406
|
+
const _EVSL = "EngineVersionsSummaryList";
|
|
407
|
+
const _FBJD = "FileBatchJobDefinition";
|
|
408
|
+
const _FBJI = "FileBatchJobIdentifier";
|
|
409
|
+
const _FSC = "FsxStorageConfiguration";
|
|
410
|
+
const _GA = "GdgAttributes";
|
|
411
|
+
const _GAR = "GetApplicationRequest";
|
|
412
|
+
const _GARe = "GetApplicationResponse";
|
|
413
|
+
const _GAV = "GetApplicationVersion";
|
|
414
|
+
const _GAVR = "GetApplicationVersionRequest";
|
|
415
|
+
const _GAVRe = "GetApplicationVersionResponse";
|
|
416
|
+
const _GAe = "GetApplication";
|
|
417
|
+
const _GBJE = "GetBatchJobExecution";
|
|
418
|
+
const _GBJER = "GetBatchJobExecutionRequest";
|
|
419
|
+
const _GBJERe = "GetBatchJobExecutionResponse";
|
|
420
|
+
const _GD = "GetDeployment";
|
|
421
|
+
const _GDA = "GdgDetailAttributes";
|
|
422
|
+
const _GDR = "GetDeploymentRequest";
|
|
423
|
+
const _GDRe = "GetDeploymentResponse";
|
|
424
|
+
const _GDSD = "GetDataSetDetails";
|
|
425
|
+
const _GDSDR = "GetDataSetDetailsRequest";
|
|
426
|
+
const _GDSDRe = "GetDataSetDetailsResponse";
|
|
427
|
+
const _GDSET = "GetDataSetExportTask";
|
|
428
|
+
const _GDSETR = "GetDataSetExportTaskRequest";
|
|
429
|
+
const _GDSETRe = "GetDataSetExportTaskResponse";
|
|
430
|
+
const _GDSIT = "GetDataSetImportTask";
|
|
431
|
+
const _GDSITR = "GetDataSetImportTaskRequest";
|
|
432
|
+
const _GDSITRe = "GetDataSetImportTaskResponse";
|
|
433
|
+
const _GE = "GetEnvironment";
|
|
434
|
+
const _GER = "GetEnvironmentRequest";
|
|
435
|
+
const _GERe = "GetEnvironmentResponse";
|
|
436
|
+
const _GSBU = "GetSignedBluinsightsUrl";
|
|
437
|
+
const _GSBUR = "GetSignedBluinsightsUrlResponse";
|
|
438
|
+
const _HAC = "HighAvailabilityConfig";
|
|
439
|
+
const _ISE = "InternalServerException";
|
|
440
|
+
const _JI = "JobIdentifier";
|
|
441
|
+
const _JS = "JobStep";
|
|
442
|
+
const _JSRM = "JobStepRestartMarker";
|
|
443
|
+
const _LA = "ListApplications";
|
|
444
|
+
const _LAR = "ListApplicationsRequest";
|
|
445
|
+
const _LARi = "ListApplicationsResponse";
|
|
446
|
+
const _LAV = "ListApplicationVersions";
|
|
447
|
+
const _LAVR = "ListApplicationVersionsRequest";
|
|
448
|
+
const _LAVRi = "ListApplicationVersionsResponse";
|
|
449
|
+
const _LBJD = "ListBatchJobDefinitions";
|
|
450
|
+
const _LBJDR = "ListBatchJobDefinitionsRequest";
|
|
451
|
+
const _LBJDRi = "ListBatchJobDefinitionsResponse";
|
|
452
|
+
const _LBJE = "ListBatchJobExecutions";
|
|
453
|
+
const _LBJER = "ListBatchJobExecutionsRequest";
|
|
454
|
+
const _LBJERi = "ListBatchJobExecutionsResponse";
|
|
455
|
+
const _LBJRP = "ListBatchJobRestartPoints";
|
|
456
|
+
const _LBJRPR = "ListBatchJobRestartPointsRequest";
|
|
457
|
+
const _LBJRPRi = "ListBatchJobRestartPointsResponse";
|
|
458
|
+
const _LD = "ListDeployments";
|
|
459
|
+
const _LDR = "ListDeploymentsRequest";
|
|
460
|
+
const _LDRi = "ListDeploymentsResponse";
|
|
461
|
+
const _LDS = "ListDataSets";
|
|
462
|
+
const _LDSEH = "ListDataSetExportHistory";
|
|
463
|
+
const _LDSEHR = "ListDataSetExportHistoryRequest";
|
|
464
|
+
const _LDSEHRi = "ListDataSetExportHistoryResponse";
|
|
465
|
+
const _LDSIH = "ListDataSetImportHistory";
|
|
466
|
+
const _LDSIHR = "ListDataSetImportHistoryRequest";
|
|
467
|
+
const _LDSIHRi = "ListDataSetImportHistoryResponse";
|
|
468
|
+
const _LDSR = "ListDataSetsRequest";
|
|
469
|
+
const _LDSRi = "ListDataSetsResponse";
|
|
470
|
+
const _LE = "ListEnvironments";
|
|
471
|
+
const _LER = "ListEnvironmentsRequest";
|
|
472
|
+
const _LERi = "ListEnvironmentsResponse";
|
|
473
|
+
const _LEV = "ListEngineVersions";
|
|
474
|
+
const _LEVR = "ListEngineVersionsRequest";
|
|
475
|
+
const _LEVRi = "ListEngineVersionsResponse";
|
|
476
|
+
const _LGS = "LogGroupSummary";
|
|
477
|
+
const _LGSo = "LogGroupSummaries";
|
|
478
|
+
const _LTFR = "ListTagsForResource";
|
|
479
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
480
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
481
|
+
const _MS = "MaintenanceSchedule";
|
|
482
|
+
const _PA = "PoAttributes";
|
|
483
|
+
const _PAs = "PsAttributes";
|
|
484
|
+
const _PDA = "PoDetailAttributes";
|
|
485
|
+
const _PDAs = "PsDetailAttributes";
|
|
486
|
+
const _PK = "PrimaryKey";
|
|
487
|
+
const _PM = "PendingMaintenance";
|
|
488
|
+
const _RA = "Retry-After";
|
|
489
|
+
const _RBJI = "RestartBatchJobIdentifier";
|
|
490
|
+
const _RL = "RecordLength";
|
|
491
|
+
const _RNFE = "ResourceNotFoundException";
|
|
492
|
+
const _SA = "StartApplication";
|
|
493
|
+
const _SAR = "StartApplicationRequest";
|
|
494
|
+
const _SARt = "StartApplicationResponse";
|
|
495
|
+
const _SARto = "StopApplicationRequest";
|
|
496
|
+
const _SARtop = "StopApplicationResponse";
|
|
497
|
+
const _SAt = "StopApplication";
|
|
498
|
+
const _SBJ = "StartBatchJob";
|
|
499
|
+
const _SBJD = "ScriptBatchJobDefinition";
|
|
500
|
+
const _SBJI = "S3BatchJobIdentifier";
|
|
501
|
+
const _SBJIc = "ScriptBatchJobIdentifier";
|
|
502
|
+
const _SBJR = "StartBatchJobRequest";
|
|
503
|
+
const _SBJRt = "StartBatchJobResponse";
|
|
504
|
+
const _SC = "StorageConfiguration";
|
|
505
|
+
const _SCL = "StorageConfigurationList";
|
|
506
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
507
|
+
const _SUE = "ServiceUnavailableException";
|
|
508
|
+
const _TE = "ThrottlingException";
|
|
509
|
+
const _TR = "TagResource";
|
|
510
|
+
const _TRR = "TagResourceRequest";
|
|
511
|
+
const _TRRa = "TagResourceResponse";
|
|
512
|
+
const _UA = "UpdateApplication";
|
|
513
|
+
const _UAR = "UpdateApplicationRequest";
|
|
514
|
+
const _UARp = "UpdateApplicationResponse";
|
|
515
|
+
const _UE = "UpdateEnvironment";
|
|
516
|
+
const _UER = "UpdateEnvironmentRequest";
|
|
517
|
+
const _UERp = "UpdateEnvironmentResponse";
|
|
518
|
+
const _UR = "UntagResource";
|
|
519
|
+
const _URR = "UntagResourceRequest";
|
|
520
|
+
const _URRn = "UntagResourceResponse";
|
|
521
|
+
const _VA = "VsamAttributes";
|
|
522
|
+
const _VDA = "VsamDetailAttributes";
|
|
523
|
+
const _VE = "ValidationException";
|
|
524
|
+
const _VEF = "ValidationExceptionField";
|
|
525
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
526
|
+
const _a = "applications";
|
|
527
|
+
const _aA = "applicationArn";
|
|
528
|
+
const _aC = "actualCapacity";
|
|
529
|
+
const _aD = "allowDuplicates";
|
|
530
|
+
const _aDMW = "applyDuringMaintenanceWindow";
|
|
531
|
+
const _aI = "applicationId";
|
|
532
|
+
const _aK = "alternateKeys";
|
|
1907
533
|
const _aSMA = "authSecretsManagerArn";
|
|
534
|
+
const _aV = "applicationVersion";
|
|
535
|
+
const _aVp = "applicationVersions";
|
|
536
|
+
const _b = "blocksize";
|
|
537
|
+
const _bJD = "batchJobDefinitions";
|
|
538
|
+
const _bJE = "batchJobExecutions";
|
|
539
|
+
const _bJI = "batchJobIdentifier";
|
|
540
|
+
const _bJS = "batchJobSteps";
|
|
541
|
+
const _bu = "bucket";
|
|
542
|
+
const _c = "client";
|
|
543
|
+
const _cAS = "cacheAtStartup";
|
|
544
|
+
const _cAV = "currentApplicationVersion";
|
|
545
|
+
const _cT = "creationTime";
|
|
546
|
+
const _cTl = "clientToken";
|
|
547
|
+
const _co = "compressed";
|
|
548
|
+
const _con = "content";
|
|
549
|
+
const _d = "description";
|
|
550
|
+
const _dC = "definitionContent";
|
|
551
|
+
const _dCe = "desiredCapacity";
|
|
552
|
+
const _dI = "deploymentId";
|
|
553
|
+
const _dN = "datasetName";
|
|
554
|
+
const _dO = "datasetOrg";
|
|
555
|
+
const _dS = "deploymentStatus";
|
|
556
|
+
const _dSET = "dataSetExportTasks";
|
|
557
|
+
const _dSIT = "dataSetImportTasks";
|
|
558
|
+
const _dSN = "dataSetName";
|
|
559
|
+
const _dSO = "dataSetOrg";
|
|
560
|
+
const _dSa = "dataSet";
|
|
561
|
+
const _dSat = "dataSets";
|
|
562
|
+
const _dV = "deployedVersion";
|
|
563
|
+
const _de = "definition";
|
|
564
|
+
const _dep = "deployments";
|
|
565
|
+
const _e = "error";
|
|
566
|
+
const _eA = "environmentArn";
|
|
567
|
+
const _eC = "exportConfig";
|
|
1908
568
|
const _eI = "environmentId";
|
|
1909
|
-
const _eIx = "
|
|
569
|
+
const _eIx = "executionId";
|
|
570
|
+
const _eIxe = "executionIds";
|
|
571
|
+
const _eL = "externalLocation";
|
|
1910
572
|
const _eT = "engineType";
|
|
573
|
+
const _eTn = "endTime";
|
|
574
|
+
const _eV = "engineVersion";
|
|
575
|
+
const _eVn = "engineVersions";
|
|
576
|
+
const _ef = "efs";
|
|
577
|
+
const _en = "environments";
|
|
578
|
+
const _enc = "encoding";
|
|
579
|
+
const _f = "failed";
|
|
580
|
+
const _fBJD = "fileBatchJobDefinition";
|
|
581
|
+
const _fBJI = "fileBatchJobIdentifier";
|
|
582
|
+
const _fL = "fieldList";
|
|
583
|
+
const _fN = "fileName";
|
|
584
|
+
const _fP = "folderPath";
|
|
585
|
+
const _fPS = "fromProcStep";
|
|
586
|
+
const _fS = "fileSize";
|
|
587
|
+
const _fSI = "fileSystemId";
|
|
588
|
+
const _fSo = "forceStop";
|
|
589
|
+
const _fSr = "fromStep";
|
|
590
|
+
const _fU = "forceUpdate";
|
|
591
|
+
const _fo = "format";
|
|
592
|
+
const _fs = "fsx";
|
|
593
|
+
const _fsi = "file-system-id";
|
|
594
|
+
const _g = "gdg";
|
|
595
|
+
const _h = "http";
|
|
596
|
+
const _hAC = "highAvailabilityConfig";
|
|
597
|
+
const _hE = "httpError";
|
|
598
|
+
const _hH = "httpHeader";
|
|
599
|
+
const _hQ = "httpQuery";
|
|
600
|
+
const _i = "identifier";
|
|
601
|
+
const _iC = "importConfig";
|
|
602
|
+
const _iP = "inProgress";
|
|
603
|
+
const _iT = "instanceType";
|
|
604
|
+
const _jI = "jobId";
|
|
1911
605
|
const _jN = "jobName";
|
|
606
|
+
const _jNs = "jsonName";
|
|
607
|
+
const _jP = "jobParams";
|
|
608
|
+
const _jSRM = "jobStepRestartMarker";
|
|
609
|
+
const _jT = "jobType";
|
|
610
|
+
const _jU = "jobUser";
|
|
611
|
+
const _kKA = "kmsKeyArn";
|
|
612
|
+
const _kKI = "kmsKeyId";
|
|
613
|
+
const _kP = "keyPrefix";
|
|
614
|
+
const _l = "length";
|
|
615
|
+
const _lA = "listenerArns";
|
|
616
|
+
const _lBA = "loadBalancerArn";
|
|
617
|
+
const _lBDN = "loadBalancerDnsName";
|
|
618
|
+
const _lG = "logGroups";
|
|
619
|
+
const _lGN = "logGroupName";
|
|
620
|
+
const _lP = "listenerPorts";
|
|
621
|
+
const _lRT = "lastReferencedTime";
|
|
622
|
+
const _lST = "lastStartTime";
|
|
623
|
+
const _lT = "logType";
|
|
624
|
+
const _lUT = "lastUpdatedTime";
|
|
625
|
+
const _lV = "latestVersion";
|
|
626
|
+
const _li = "limit";
|
|
627
|
+
const _lo = "location";
|
|
628
|
+
const _m = "message";
|
|
629
|
+
const _mFE = "memberFileExtensions";
|
|
630
|
+
const _mP = "mountPoint";
|
|
1912
631
|
const _mR = "maxResults";
|
|
1913
|
-
const
|
|
632
|
+
const _ma = "max";
|
|
633
|
+
const _mi = "min";
|
|
634
|
+
const _mp = "mount-point";
|
|
635
|
+
const _n = "name";
|
|
1914
636
|
const _nF = "nameFilter";
|
|
1915
|
-
const _nT = "
|
|
1916
|
-
const
|
|
637
|
+
const _nT = "networkType";
|
|
638
|
+
const _nTe = "nextToken";
|
|
639
|
+
const _na = "names";
|
|
640
|
+
const _o = "offset";
|
|
641
|
+
const _p = "pending";
|
|
642
|
+
const _pA = "publiclyAccessible";
|
|
643
|
+
const _pK = "primaryKey";
|
|
644
|
+
const _pM = "pendingMaintenance";
|
|
645
|
+
const _pMW = "preferredMaintenanceWindow";
|
|
646
|
+
const _pSN = "procStepNumber";
|
|
647
|
+
const _pSNr = "procStepName";
|
|
648
|
+
const _po = "po";
|
|
649
|
+
const _pr = "prefix";
|
|
650
|
+
const _ps = "ps";
|
|
651
|
+
const _qC = "quotaCode";
|
|
652
|
+
const _r = "reason";
|
|
653
|
+
const _rA = "roleArn";
|
|
1917
654
|
const _rAS = "retryAfterSeconds";
|
|
1918
|
-
const
|
|
655
|
+
const _rAe = "resourceArn";
|
|
656
|
+
const _rBJI = "restartBatchJobIdentifier";
|
|
657
|
+
const _rC = "returnCode";
|
|
658
|
+
const _rD = "rollDisposition";
|
|
659
|
+
const _rF = "recordFormat";
|
|
660
|
+
const _rI = "resourceId";
|
|
661
|
+
const _rL = "recordLength";
|
|
662
|
+
const _rP = "relativePath";
|
|
663
|
+
const _rT = "resourceType";
|
|
1919
664
|
const _s = "status";
|
|
1920
665
|
const _sA = "startedAfter";
|
|
1921
666
|
const _sB = "startedBefore";
|
|
667
|
+
const _sBJD = "scriptBatchJobDefinition";
|
|
668
|
+
const _sBJI = "scriptBatchJobIdentifier";
|
|
669
|
+
const _sBJIa = "s3BatchJobIdentifier";
|
|
670
|
+
const _sBU = "signedBiUrl";
|
|
671
|
+
const _sC = "storageConfigurations";
|
|
672
|
+
const _sCC = "stepCondCode";
|
|
673
|
+
const _sCS = "stepCheckpointStatus";
|
|
674
|
+
const _sCT = "stepCheckpointTime";
|
|
675
|
+
const _sCe = "serviceCode";
|
|
676
|
+
const _sCt = "stepCheckpoint";
|
|
677
|
+
const _sGI = "securityGroupIds";
|
|
678
|
+
const _sI = "subnetIds";
|
|
679
|
+
const _sL = "s3Location";
|
|
680
|
+
const _sN = "stepNumber";
|
|
681
|
+
const _sNc = "scriptName";
|
|
682
|
+
const _sNt = "stepName";
|
|
683
|
+
const _sR = "statusReason";
|
|
684
|
+
const _sRt = "stepRestartable";
|
|
685
|
+
const _sT = "startTime";
|
|
686
|
+
const _sTt = "storageType";
|
|
687
|
+
const _sc = "schedule";
|
|
688
|
+
const _se = "server";
|
|
689
|
+
const _sk = "skip";
|
|
690
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.m2";
|
|
691
|
+
const _su = "succeeded";
|
|
692
|
+
const _sum = "summary";
|
|
693
|
+
const _t = "tags";
|
|
694
|
+
const _tGA = "targetGroupArns";
|
|
695
|
+
const _tI = "taskId";
|
|
1922
696
|
const _tK = "tagKeys";
|
|
697
|
+
const _tPS = "toProcStep";
|
|
698
|
+
const _tS = "toStep";
|
|
699
|
+
const _to = "total";
|
|
700
|
+
const _v = "vsam";
|
|
701
|
+
const _vI = "vpcId";
|
|
702
|
+
const _vS = "versionStatus";
|
|
703
|
+
const n0 = "com.amazonaws.m2";
|
|
704
|
+
var AccessDeniedException = [
|
|
705
|
+
-3,
|
|
706
|
+
n0,
|
|
707
|
+
_ADE,
|
|
708
|
+
{
|
|
709
|
+
[_e]: _c,
|
|
710
|
+
[_hE]: 403,
|
|
711
|
+
},
|
|
712
|
+
[_m],
|
|
713
|
+
[0],
|
|
714
|
+
];
|
|
715
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
716
|
+
var AlternateKey = [3, n0, _AK, 0, [_n, _o, _l, _aD], [0, 1, 1, 2]];
|
|
717
|
+
var ApplicationSummary = [
|
|
718
|
+
3,
|
|
719
|
+
n0,
|
|
720
|
+
_AS,
|
|
721
|
+
0,
|
|
722
|
+
[_n, _d, _aI, _aA, _aV, _s, _eT, _cT, _eI, _lST, _vS, _dS, _rA],
|
|
723
|
+
[0, 0, 0, 0, 1, 0, 0, 4, 0, 4, 0, 0, 0],
|
|
724
|
+
];
|
|
725
|
+
var ApplicationVersionSummary = [3, n0, _AVS, 0, [_aV, _s, _sR, _cT], [1, 0, 0, 4]];
|
|
726
|
+
var BatchJobExecutionSummary = [
|
|
727
|
+
3,
|
|
728
|
+
n0,
|
|
729
|
+
_BJES,
|
|
730
|
+
0,
|
|
731
|
+
[_eIx, _aI, _jI, _jN, _jT, _s, _sT, _eTn, _rC, _bJI],
|
|
732
|
+
[0, 0, 0, 0, 0, 0, 4, 4, 0, () => BatchJobIdentifier],
|
|
733
|
+
];
|
|
734
|
+
var CancelBatchJobExecutionRequest = [
|
|
735
|
+
3,
|
|
736
|
+
n0,
|
|
737
|
+
_CBJER,
|
|
738
|
+
0,
|
|
739
|
+
[_aI, _eIx, _aSMA],
|
|
740
|
+
[[0, 1], [0, 1], 0],
|
|
741
|
+
];
|
|
742
|
+
var CancelBatchJobExecutionResponse = [3, n0, _CBJERa, 0, [], []];
|
|
743
|
+
var ConflictException = [
|
|
744
|
+
-3,
|
|
745
|
+
n0,
|
|
746
|
+
_CE,
|
|
747
|
+
{
|
|
748
|
+
[_e]: _c,
|
|
749
|
+
[_hE]: 409,
|
|
750
|
+
},
|
|
751
|
+
[_m, _rI, _rT],
|
|
752
|
+
[0, 0, 0],
|
|
753
|
+
];
|
|
754
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
|
|
755
|
+
var CreateApplicationRequest = [
|
|
756
|
+
3,
|
|
757
|
+
n0,
|
|
758
|
+
_CAR,
|
|
759
|
+
0,
|
|
760
|
+
[_n, _d, _eT, _de, _t, _cTl, _kKI, _rA],
|
|
761
|
+
[0, 0, 0, () => Definition, 128 | 0, [0, 4], 0, 0],
|
|
762
|
+
];
|
|
763
|
+
var CreateApplicationResponse = [3, n0, _CARr, 0, [_aA, _aI, _aV], [0, 0, 1]];
|
|
764
|
+
var CreateDataSetExportTaskRequest = [
|
|
765
|
+
3,
|
|
766
|
+
n0,
|
|
767
|
+
_CDSETR,
|
|
768
|
+
0,
|
|
769
|
+
[_aI, _eC, _cTl, _kKI],
|
|
770
|
+
[[0, 1], () => DataSetExportConfig, [0, 4], 0],
|
|
771
|
+
];
|
|
772
|
+
var CreateDataSetExportTaskResponse = [3, n0, _CDSETRr, 0, [_tI], [0]];
|
|
773
|
+
var CreateDataSetImportTaskRequest = [
|
|
774
|
+
3,
|
|
775
|
+
n0,
|
|
776
|
+
_CDSITR,
|
|
777
|
+
0,
|
|
778
|
+
[_aI, _iC, _cTl],
|
|
779
|
+
[[0, 1], () => DataSetImportConfig, [0, 4]],
|
|
780
|
+
];
|
|
781
|
+
var CreateDataSetImportTaskResponse = [3, n0, _CDSITRr, 0, [_tI], [0]];
|
|
782
|
+
var CreateDeploymentRequest = [
|
|
783
|
+
3,
|
|
784
|
+
n0,
|
|
785
|
+
_CDR,
|
|
786
|
+
0,
|
|
787
|
+
[_eI, _aI, _aV, _cTl],
|
|
788
|
+
[0, [0, 1], 1, [0, 4]],
|
|
789
|
+
];
|
|
790
|
+
var CreateDeploymentResponse = [3, n0, _CDRr, 0, [_dI], [0]];
|
|
791
|
+
var CreateEnvironmentRequest = [
|
|
792
|
+
3,
|
|
793
|
+
n0,
|
|
794
|
+
_CER,
|
|
795
|
+
0,
|
|
796
|
+
[_n, _iT, _d, _eT, _eV, _sI, _sGI, _sC, _pA, _hAC, _t, _pMW, _nT, _cTl, _kKI],
|
|
797
|
+
[
|
|
798
|
+
0,
|
|
799
|
+
0,
|
|
800
|
+
0,
|
|
801
|
+
0,
|
|
802
|
+
0,
|
|
803
|
+
64 | 0,
|
|
804
|
+
64 | 0,
|
|
805
|
+
[() => StorageConfigurationList, 0],
|
|
806
|
+
2,
|
|
807
|
+
() => HighAvailabilityConfig,
|
|
808
|
+
128 | 0,
|
|
809
|
+
0,
|
|
810
|
+
0,
|
|
811
|
+
[0, 4],
|
|
812
|
+
0,
|
|
813
|
+
],
|
|
814
|
+
];
|
|
815
|
+
var CreateEnvironmentResponse = [3, n0, _CERr, 0, [_eI], [0]];
|
|
816
|
+
var DataSet = [
|
|
817
|
+
3,
|
|
818
|
+
n0,
|
|
819
|
+
_DS,
|
|
820
|
+
0,
|
|
821
|
+
[_sTt, _dN, _dO, _rP, _rL],
|
|
822
|
+
[0, 0, () => DatasetOrgAttributes, 0, () => RecordLength],
|
|
823
|
+
];
|
|
824
|
+
var DataSetExportItem = [3, n0, _DSEI, 0, [_dN, _eL], [0, () => ExternalLocation]];
|
|
825
|
+
var DataSetExportSummary = [3, n0, _DSES, 0, [_to, _su, _f, _p, _iP], [1, 1, 1, 1, 1]];
|
|
826
|
+
var DataSetExportTask = [
|
|
827
|
+
3,
|
|
828
|
+
n0,
|
|
829
|
+
_DSET,
|
|
830
|
+
0,
|
|
831
|
+
[_tI, _s, _sum, _sR],
|
|
832
|
+
[0, 0, () => DataSetExportSummary, 0],
|
|
833
|
+
];
|
|
834
|
+
var DataSetImportItem = [
|
|
835
|
+
3,
|
|
836
|
+
n0,
|
|
837
|
+
_DSII,
|
|
838
|
+
0,
|
|
839
|
+
[_dSa, _eL],
|
|
840
|
+
[() => DataSet, () => ExternalLocation],
|
|
841
|
+
];
|
|
842
|
+
var DataSetImportSummary = [3, n0, _DSIS, 0, [_to, _su, _f, _p, _iP], [1, 1, 1, 1, 1]];
|
|
843
|
+
var DataSetImportTask = [
|
|
844
|
+
3,
|
|
845
|
+
n0,
|
|
846
|
+
_DSIT,
|
|
847
|
+
0,
|
|
848
|
+
[_tI, _s, _sum, _sR],
|
|
849
|
+
[0, 0, () => DataSetImportSummary, 0],
|
|
850
|
+
];
|
|
851
|
+
var DataSetSummary = [
|
|
852
|
+
3,
|
|
853
|
+
n0,
|
|
854
|
+
_DSS,
|
|
855
|
+
0,
|
|
856
|
+
[_dSN, _dSO, _fo, _cT, _lUT, _lRT],
|
|
857
|
+
[0, 0, 0, 4, 4, 4],
|
|
858
|
+
];
|
|
859
|
+
var DeleteApplicationFromEnvironmentRequest = [
|
|
860
|
+
3,
|
|
861
|
+
n0,
|
|
862
|
+
_DAFER,
|
|
863
|
+
0,
|
|
864
|
+
[_aI, _eI],
|
|
865
|
+
[
|
|
866
|
+
[0, 1],
|
|
867
|
+
[0, 1],
|
|
868
|
+
],
|
|
869
|
+
];
|
|
870
|
+
var DeleteApplicationFromEnvironmentResponse = [3, n0, _DAFERe, 0, [], []];
|
|
871
|
+
var DeleteApplicationRequest = [3, n0, _DAR, 0, [_aI], [[0, 1]]];
|
|
872
|
+
var DeleteApplicationResponse = [3, n0, _DARe, 0, [], []];
|
|
873
|
+
var DeleteEnvironmentRequest = [3, n0, _DER, 0, [_eI], [[0, 1]]];
|
|
874
|
+
var DeleteEnvironmentResponse = [3, n0, _DERe, 0, [], []];
|
|
875
|
+
var DeployedVersionSummary = [3, n0, _DVS, 0, [_aV, _s, _sR], [1, 0, 0]];
|
|
876
|
+
var DeploymentSummary = [
|
|
877
|
+
3,
|
|
878
|
+
n0,
|
|
879
|
+
_DSe,
|
|
880
|
+
0,
|
|
881
|
+
[_dI, _aI, _eI, _aV, _s, _cT, _sR],
|
|
882
|
+
[0, 0, 0, 1, 0, 4, 0],
|
|
883
|
+
];
|
|
884
|
+
var EfsStorageConfiguration = [
|
|
885
|
+
3,
|
|
886
|
+
n0,
|
|
887
|
+
_ESC,
|
|
888
|
+
0,
|
|
889
|
+
[_fSI, _mP],
|
|
890
|
+
[
|
|
891
|
+
[
|
|
892
|
+
0,
|
|
893
|
+
{
|
|
894
|
+
[_jNs]: _fsi,
|
|
895
|
+
},
|
|
896
|
+
],
|
|
897
|
+
[
|
|
898
|
+
0,
|
|
899
|
+
{
|
|
900
|
+
[_jNs]: _mp,
|
|
901
|
+
},
|
|
902
|
+
],
|
|
903
|
+
],
|
|
904
|
+
];
|
|
905
|
+
var EngineVersionsSummary = [3, n0, _EVS, 0, [_eT, _eV], [0, 0]];
|
|
906
|
+
var EnvironmentSummary = [
|
|
907
|
+
3,
|
|
908
|
+
n0,
|
|
909
|
+
_ES,
|
|
910
|
+
0,
|
|
911
|
+
[_n, _eA, _eI, _iT, _s, _eT, _eV, _cT, _nT],
|
|
912
|
+
[0, 0, 0, 0, 0, 0, 0, 4, 0],
|
|
913
|
+
];
|
|
914
|
+
var ExecutionTimeoutException = [
|
|
915
|
+
-3,
|
|
916
|
+
n0,
|
|
917
|
+
_ETE,
|
|
918
|
+
{
|
|
919
|
+
[_e]: _se,
|
|
920
|
+
[_hE]: 504,
|
|
921
|
+
},
|
|
922
|
+
[_m],
|
|
923
|
+
[0],
|
|
924
|
+
];
|
|
925
|
+
schema.TypeRegistry.for(n0).registerError(ExecutionTimeoutException, ExecutionTimeoutException$1);
|
|
926
|
+
var FileBatchJobDefinition = [3, n0, _FBJD, 0, [_fN, _fP], [0, 0]];
|
|
927
|
+
var FileBatchJobIdentifier = [3, n0, _FBJI, 0, [_fN, _fP], [0, 0]];
|
|
928
|
+
var FsxStorageConfiguration = [
|
|
929
|
+
3,
|
|
930
|
+
n0,
|
|
931
|
+
_FSC,
|
|
932
|
+
0,
|
|
933
|
+
[_fSI, _mP],
|
|
934
|
+
[
|
|
935
|
+
[
|
|
936
|
+
0,
|
|
937
|
+
{
|
|
938
|
+
[_jNs]: _fsi,
|
|
939
|
+
},
|
|
940
|
+
],
|
|
941
|
+
[
|
|
942
|
+
0,
|
|
943
|
+
{
|
|
944
|
+
[_jNs]: _mp,
|
|
945
|
+
},
|
|
946
|
+
],
|
|
947
|
+
],
|
|
948
|
+
];
|
|
949
|
+
var GdgAttributes = [3, n0, _GA, 0, [_li, _rD], [1, 0]];
|
|
950
|
+
var GdgDetailAttributes = [3, n0, _GDA, 0, [_li, _rD], [1, 0]];
|
|
951
|
+
var GetApplicationRequest = [3, n0, _GAR, 0, [_aI], [[0, 1]]];
|
|
952
|
+
var GetApplicationResponse = [
|
|
953
|
+
3,
|
|
954
|
+
n0,
|
|
955
|
+
_GARe,
|
|
956
|
+
0,
|
|
957
|
+
[_n, _d, _aI, _aA, _s, _lV, _dV, _eT, _lG, _cT, _lST, _t, _eI, _tGA, _lA, _lP, _lBDN, _sR, _kKI, _rA],
|
|
958
|
+
[
|
|
959
|
+
0,
|
|
960
|
+
0,
|
|
961
|
+
0,
|
|
962
|
+
0,
|
|
963
|
+
0,
|
|
964
|
+
() => ApplicationVersionSummary,
|
|
965
|
+
() => DeployedVersionSummary,
|
|
966
|
+
0,
|
|
967
|
+
() => LogGroupSummaries,
|
|
968
|
+
4,
|
|
969
|
+
4,
|
|
970
|
+
128 | 0,
|
|
971
|
+
0,
|
|
972
|
+
64 | 0,
|
|
973
|
+
64 | 0,
|
|
974
|
+
64 | 1,
|
|
975
|
+
0,
|
|
976
|
+
0,
|
|
977
|
+
0,
|
|
978
|
+
0,
|
|
979
|
+
],
|
|
980
|
+
];
|
|
981
|
+
var GetApplicationVersionRequest = [
|
|
982
|
+
3,
|
|
983
|
+
n0,
|
|
984
|
+
_GAVR,
|
|
985
|
+
0,
|
|
986
|
+
[_aI, _aV],
|
|
987
|
+
[
|
|
988
|
+
[0, 1],
|
|
989
|
+
[1, 1],
|
|
990
|
+
],
|
|
991
|
+
];
|
|
992
|
+
var GetApplicationVersionResponse = [
|
|
993
|
+
3,
|
|
994
|
+
n0,
|
|
995
|
+
_GAVRe,
|
|
996
|
+
0,
|
|
997
|
+
[_n, _aV, _d, _dC, _s, _cT, _sR],
|
|
998
|
+
[0, 1, 0, 0, 0, 4, 0],
|
|
999
|
+
];
|
|
1000
|
+
var GetBatchJobExecutionRequest = [
|
|
1001
|
+
3,
|
|
1002
|
+
n0,
|
|
1003
|
+
_GBJER,
|
|
1004
|
+
0,
|
|
1005
|
+
[_aI, _eIx],
|
|
1006
|
+
[
|
|
1007
|
+
[0, 1],
|
|
1008
|
+
[0, 1],
|
|
1009
|
+
],
|
|
1010
|
+
];
|
|
1011
|
+
var GetBatchJobExecutionResponse = [
|
|
1012
|
+
3,
|
|
1013
|
+
n0,
|
|
1014
|
+
_GBJERe,
|
|
1015
|
+
0,
|
|
1016
|
+
[_eIx, _aI, _jI, _jN, _jU, _jT, _s, _sT, _eTn, _sR, _rC, _bJI, _jSRM],
|
|
1017
|
+
[0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, () => BatchJobIdentifier, () => JobStepRestartMarker],
|
|
1018
|
+
];
|
|
1019
|
+
var GetDataSetDetailsRequest = [
|
|
1020
|
+
3,
|
|
1021
|
+
n0,
|
|
1022
|
+
_GDSDR,
|
|
1023
|
+
0,
|
|
1024
|
+
[_aI, _dSN],
|
|
1025
|
+
[
|
|
1026
|
+
[0, 1],
|
|
1027
|
+
[0, 1],
|
|
1028
|
+
],
|
|
1029
|
+
];
|
|
1030
|
+
var GetDataSetDetailsResponse = [
|
|
1031
|
+
3,
|
|
1032
|
+
n0,
|
|
1033
|
+
_GDSDRe,
|
|
1034
|
+
0,
|
|
1035
|
+
[_dSN, _dSO, _rL, _lo, _b, _cT, _lUT, _lRT, _fS],
|
|
1036
|
+
[0, () => DatasetDetailOrgAttributes, 1, 0, 1, 4, 4, 4, 1],
|
|
1037
|
+
];
|
|
1038
|
+
var GetDataSetExportTaskRequest = [
|
|
1039
|
+
3,
|
|
1040
|
+
n0,
|
|
1041
|
+
_GDSETR,
|
|
1042
|
+
0,
|
|
1043
|
+
[_aI, _tI],
|
|
1044
|
+
[
|
|
1045
|
+
[0, 1],
|
|
1046
|
+
[0, 1],
|
|
1047
|
+
],
|
|
1048
|
+
];
|
|
1049
|
+
var GetDataSetExportTaskResponse = [
|
|
1050
|
+
3,
|
|
1051
|
+
n0,
|
|
1052
|
+
_GDSETRe,
|
|
1053
|
+
0,
|
|
1054
|
+
[_tI, _s, _sum, _sR, _kKA],
|
|
1055
|
+
[0, 0, () => DataSetExportSummary, 0, 0],
|
|
1056
|
+
];
|
|
1057
|
+
var GetDataSetImportTaskRequest = [
|
|
1058
|
+
3,
|
|
1059
|
+
n0,
|
|
1060
|
+
_GDSITR,
|
|
1061
|
+
0,
|
|
1062
|
+
[_aI, _tI],
|
|
1063
|
+
[
|
|
1064
|
+
[0, 1],
|
|
1065
|
+
[0, 1],
|
|
1066
|
+
],
|
|
1067
|
+
];
|
|
1068
|
+
var GetDataSetImportTaskResponse = [
|
|
1069
|
+
3,
|
|
1070
|
+
n0,
|
|
1071
|
+
_GDSITRe,
|
|
1072
|
+
0,
|
|
1073
|
+
[_tI, _s, _sum],
|
|
1074
|
+
[0, 0, () => DataSetImportSummary],
|
|
1075
|
+
];
|
|
1076
|
+
var GetDeploymentRequest = [
|
|
1077
|
+
3,
|
|
1078
|
+
n0,
|
|
1079
|
+
_GDR,
|
|
1080
|
+
0,
|
|
1081
|
+
[_dI, _aI],
|
|
1082
|
+
[
|
|
1083
|
+
[0, 1],
|
|
1084
|
+
[0, 1],
|
|
1085
|
+
],
|
|
1086
|
+
];
|
|
1087
|
+
var GetDeploymentResponse = [
|
|
1088
|
+
3,
|
|
1089
|
+
n0,
|
|
1090
|
+
_GDRe,
|
|
1091
|
+
0,
|
|
1092
|
+
[_dI, _aI, _eI, _aV, _s, _cT, _sR],
|
|
1093
|
+
[0, 0, 0, 1, 0, 4, 0],
|
|
1094
|
+
];
|
|
1095
|
+
var GetEnvironmentRequest = [3, n0, _GER, 0, [_eI], [[0, 1]]];
|
|
1096
|
+
var GetEnvironmentResponse = [
|
|
1097
|
+
3,
|
|
1098
|
+
n0,
|
|
1099
|
+
_GERe,
|
|
1100
|
+
0,
|
|
1101
|
+
[_n, _d, _eA, _eI, _iT, _s, _eT, _eV, _vI, _sI, _sGI, _cT, _sC, _t, _hAC, _pA, _aC, _lBA, _sR, _pMW, _pM, _kKI, _nT],
|
|
1102
|
+
[
|
|
1103
|
+
0,
|
|
1104
|
+
0,
|
|
1105
|
+
0,
|
|
1106
|
+
0,
|
|
1107
|
+
0,
|
|
1108
|
+
0,
|
|
1109
|
+
0,
|
|
1110
|
+
0,
|
|
1111
|
+
0,
|
|
1112
|
+
64 | 0,
|
|
1113
|
+
64 | 0,
|
|
1114
|
+
4,
|
|
1115
|
+
[() => StorageConfigurationList, 0],
|
|
1116
|
+
128 | 0,
|
|
1117
|
+
() => HighAvailabilityConfig,
|
|
1118
|
+
2,
|
|
1119
|
+
1,
|
|
1120
|
+
0,
|
|
1121
|
+
0,
|
|
1122
|
+
0,
|
|
1123
|
+
() => PendingMaintenance,
|
|
1124
|
+
0,
|
|
1125
|
+
0,
|
|
1126
|
+
],
|
|
1127
|
+
];
|
|
1128
|
+
var GetSignedBluinsightsUrlResponse = [3, n0, _GSBUR, 0, [_sBU], [0]];
|
|
1129
|
+
var HighAvailabilityConfig = [3, n0, _HAC, 0, [_dCe], [1]];
|
|
1130
|
+
var InternalServerException = [
|
|
1131
|
+
-3,
|
|
1132
|
+
n0,
|
|
1133
|
+
_ISE,
|
|
1134
|
+
{
|
|
1135
|
+
[_e]: _se,
|
|
1136
|
+
[_hE]: 500,
|
|
1137
|
+
},
|
|
1138
|
+
[_m, _rAS],
|
|
1139
|
+
[
|
|
1140
|
+
0,
|
|
1141
|
+
[
|
|
1142
|
+
1,
|
|
1143
|
+
{
|
|
1144
|
+
[_hH]: _RA,
|
|
1145
|
+
},
|
|
1146
|
+
],
|
|
1147
|
+
],
|
|
1148
|
+
];
|
|
1149
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
1150
|
+
var JobStep = [
|
|
1151
|
+
3,
|
|
1152
|
+
n0,
|
|
1153
|
+
_JS,
|
|
1154
|
+
0,
|
|
1155
|
+
[_sN, _sNt, _pSN, _pSNr, _sCC, _sRt, _sCt, _sCS, _sCT],
|
|
1156
|
+
[1, 0, 1, 0, 0, 2, 1, 0, 4],
|
|
1157
|
+
];
|
|
1158
|
+
var JobStepRestartMarker = [
|
|
1159
|
+
3,
|
|
1160
|
+
n0,
|
|
1161
|
+
_JSRM,
|
|
1162
|
+
0,
|
|
1163
|
+
[_fSr, _fPS, _tS, _tPS, _sCt, _sk],
|
|
1164
|
+
[0, 0, 0, 0, 1, 2],
|
|
1165
|
+
];
|
|
1166
|
+
var ListApplicationsRequest = [
|
|
1167
|
+
3,
|
|
1168
|
+
n0,
|
|
1169
|
+
_LAR,
|
|
1170
|
+
0,
|
|
1171
|
+
[_nTe, _mR, _na, _eI],
|
|
1172
|
+
[
|
|
1173
|
+
[
|
|
1174
|
+
0,
|
|
1175
|
+
{
|
|
1176
|
+
[_hQ]: _nTe,
|
|
1177
|
+
},
|
|
1178
|
+
],
|
|
1179
|
+
[
|
|
1180
|
+
1,
|
|
1181
|
+
{
|
|
1182
|
+
[_hQ]: _mR,
|
|
1183
|
+
},
|
|
1184
|
+
],
|
|
1185
|
+
[
|
|
1186
|
+
64 | 0,
|
|
1187
|
+
{
|
|
1188
|
+
[_hQ]: _na,
|
|
1189
|
+
},
|
|
1190
|
+
],
|
|
1191
|
+
[
|
|
1192
|
+
0,
|
|
1193
|
+
{
|
|
1194
|
+
[_hQ]: _eI,
|
|
1195
|
+
},
|
|
1196
|
+
],
|
|
1197
|
+
],
|
|
1198
|
+
];
|
|
1199
|
+
var ListApplicationsResponse = [
|
|
1200
|
+
3,
|
|
1201
|
+
n0,
|
|
1202
|
+
_LARi,
|
|
1203
|
+
0,
|
|
1204
|
+
[_a, _nTe],
|
|
1205
|
+
[() => ApplicationSummaryList, 0],
|
|
1206
|
+
];
|
|
1207
|
+
var ListApplicationVersionsRequest = [
|
|
1208
|
+
3,
|
|
1209
|
+
n0,
|
|
1210
|
+
_LAVR,
|
|
1211
|
+
0,
|
|
1212
|
+
[_nTe, _mR, _aI],
|
|
1213
|
+
[
|
|
1214
|
+
[
|
|
1215
|
+
0,
|
|
1216
|
+
{
|
|
1217
|
+
[_hQ]: _nTe,
|
|
1218
|
+
},
|
|
1219
|
+
],
|
|
1220
|
+
[
|
|
1221
|
+
1,
|
|
1222
|
+
{
|
|
1223
|
+
[_hQ]: _mR,
|
|
1224
|
+
},
|
|
1225
|
+
],
|
|
1226
|
+
[0, 1],
|
|
1227
|
+
],
|
|
1228
|
+
];
|
|
1229
|
+
var ListApplicationVersionsResponse = [
|
|
1230
|
+
3,
|
|
1231
|
+
n0,
|
|
1232
|
+
_LAVRi,
|
|
1233
|
+
0,
|
|
1234
|
+
[_aVp, _nTe],
|
|
1235
|
+
[() => ApplicationVersionSummaryList, 0],
|
|
1236
|
+
];
|
|
1237
|
+
var ListBatchJobDefinitionsRequest = [
|
|
1238
|
+
3,
|
|
1239
|
+
n0,
|
|
1240
|
+
_LBJDR,
|
|
1241
|
+
0,
|
|
1242
|
+
[_nTe, _mR, _aI, _pr],
|
|
1243
|
+
[
|
|
1244
|
+
[
|
|
1245
|
+
0,
|
|
1246
|
+
{
|
|
1247
|
+
[_hQ]: _nTe,
|
|
1248
|
+
},
|
|
1249
|
+
],
|
|
1250
|
+
[
|
|
1251
|
+
1,
|
|
1252
|
+
{
|
|
1253
|
+
[_hQ]: _mR,
|
|
1254
|
+
},
|
|
1255
|
+
],
|
|
1256
|
+
[0, 1],
|
|
1257
|
+
[
|
|
1258
|
+
0,
|
|
1259
|
+
{
|
|
1260
|
+
[_hQ]: _pr,
|
|
1261
|
+
},
|
|
1262
|
+
],
|
|
1263
|
+
],
|
|
1264
|
+
];
|
|
1265
|
+
var ListBatchJobDefinitionsResponse = [
|
|
1266
|
+
3,
|
|
1267
|
+
n0,
|
|
1268
|
+
_LBJDRi,
|
|
1269
|
+
0,
|
|
1270
|
+
[_bJD, _nTe],
|
|
1271
|
+
[() => BatchJobDefinitions, 0],
|
|
1272
|
+
];
|
|
1273
|
+
var ListBatchJobExecutionsRequest = [
|
|
1274
|
+
3,
|
|
1275
|
+
n0,
|
|
1276
|
+
_LBJER,
|
|
1277
|
+
0,
|
|
1278
|
+
[_nTe, _mR, _aI, _eIxe, _jN, _s, _sA, _sB],
|
|
1279
|
+
[
|
|
1280
|
+
[
|
|
1281
|
+
0,
|
|
1282
|
+
{
|
|
1283
|
+
[_hQ]: _nTe,
|
|
1284
|
+
},
|
|
1285
|
+
],
|
|
1286
|
+
[
|
|
1287
|
+
1,
|
|
1288
|
+
{
|
|
1289
|
+
[_hQ]: _mR,
|
|
1290
|
+
},
|
|
1291
|
+
],
|
|
1292
|
+
[0, 1],
|
|
1293
|
+
[
|
|
1294
|
+
64 | 0,
|
|
1295
|
+
{
|
|
1296
|
+
[_hQ]: _eIxe,
|
|
1297
|
+
},
|
|
1298
|
+
],
|
|
1299
|
+
[
|
|
1300
|
+
0,
|
|
1301
|
+
{
|
|
1302
|
+
[_hQ]: _jN,
|
|
1303
|
+
},
|
|
1304
|
+
],
|
|
1305
|
+
[
|
|
1306
|
+
0,
|
|
1307
|
+
{
|
|
1308
|
+
[_hQ]: _s,
|
|
1309
|
+
},
|
|
1310
|
+
],
|
|
1311
|
+
[
|
|
1312
|
+
4,
|
|
1313
|
+
{
|
|
1314
|
+
[_hQ]: _sA,
|
|
1315
|
+
},
|
|
1316
|
+
],
|
|
1317
|
+
[
|
|
1318
|
+
4,
|
|
1319
|
+
{
|
|
1320
|
+
[_hQ]: _sB,
|
|
1321
|
+
},
|
|
1322
|
+
],
|
|
1323
|
+
],
|
|
1324
|
+
];
|
|
1325
|
+
var ListBatchJobExecutionsResponse = [
|
|
1326
|
+
3,
|
|
1327
|
+
n0,
|
|
1328
|
+
_LBJERi,
|
|
1329
|
+
0,
|
|
1330
|
+
[_bJE, _nTe],
|
|
1331
|
+
[() => BatchJobExecutionSummaryList, 0],
|
|
1332
|
+
];
|
|
1333
|
+
var ListBatchJobRestartPointsRequest = [
|
|
1334
|
+
3,
|
|
1335
|
+
n0,
|
|
1336
|
+
_LBJRPR,
|
|
1337
|
+
0,
|
|
1338
|
+
[_aI, _eIx, _aSMA],
|
|
1339
|
+
[
|
|
1340
|
+
[0, 1],
|
|
1341
|
+
[0, 1],
|
|
1342
|
+
[
|
|
1343
|
+
0,
|
|
1344
|
+
{
|
|
1345
|
+
[_hQ]: _aSMA,
|
|
1346
|
+
},
|
|
1347
|
+
],
|
|
1348
|
+
],
|
|
1349
|
+
];
|
|
1350
|
+
var ListBatchJobRestartPointsResponse = [
|
|
1351
|
+
3,
|
|
1352
|
+
n0,
|
|
1353
|
+
_LBJRPRi,
|
|
1354
|
+
0,
|
|
1355
|
+
[_bJS],
|
|
1356
|
+
[() => BatchJobStepList],
|
|
1357
|
+
];
|
|
1358
|
+
var ListDataSetExportHistoryRequest = [
|
|
1359
|
+
3,
|
|
1360
|
+
n0,
|
|
1361
|
+
_LDSEHR,
|
|
1362
|
+
0,
|
|
1363
|
+
[_nTe, _mR, _aI],
|
|
1364
|
+
[
|
|
1365
|
+
[
|
|
1366
|
+
0,
|
|
1367
|
+
{
|
|
1368
|
+
[_hQ]: _nTe,
|
|
1369
|
+
},
|
|
1370
|
+
],
|
|
1371
|
+
[
|
|
1372
|
+
1,
|
|
1373
|
+
{
|
|
1374
|
+
[_hQ]: _mR,
|
|
1375
|
+
},
|
|
1376
|
+
],
|
|
1377
|
+
[0, 1],
|
|
1378
|
+
],
|
|
1379
|
+
];
|
|
1380
|
+
var ListDataSetExportHistoryResponse = [
|
|
1381
|
+
3,
|
|
1382
|
+
n0,
|
|
1383
|
+
_LDSEHRi,
|
|
1384
|
+
0,
|
|
1385
|
+
[_dSET, _nTe],
|
|
1386
|
+
[() => DataSetExportTaskList, 0],
|
|
1387
|
+
];
|
|
1388
|
+
var ListDataSetImportHistoryRequest = [
|
|
1389
|
+
3,
|
|
1390
|
+
n0,
|
|
1391
|
+
_LDSIHR,
|
|
1392
|
+
0,
|
|
1393
|
+
[_nTe, _mR, _aI],
|
|
1394
|
+
[
|
|
1395
|
+
[
|
|
1396
|
+
0,
|
|
1397
|
+
{
|
|
1398
|
+
[_hQ]: _nTe,
|
|
1399
|
+
},
|
|
1400
|
+
],
|
|
1401
|
+
[
|
|
1402
|
+
1,
|
|
1403
|
+
{
|
|
1404
|
+
[_hQ]: _mR,
|
|
1405
|
+
},
|
|
1406
|
+
],
|
|
1407
|
+
[0, 1],
|
|
1408
|
+
],
|
|
1409
|
+
];
|
|
1410
|
+
var ListDataSetImportHistoryResponse = [
|
|
1411
|
+
3,
|
|
1412
|
+
n0,
|
|
1413
|
+
_LDSIHRi,
|
|
1414
|
+
0,
|
|
1415
|
+
[_dSIT, _nTe],
|
|
1416
|
+
[() => DataSetImportTaskList, 0],
|
|
1417
|
+
];
|
|
1418
|
+
var ListDataSetsRequest = [
|
|
1419
|
+
3,
|
|
1420
|
+
n0,
|
|
1421
|
+
_LDSR,
|
|
1422
|
+
0,
|
|
1423
|
+
[_aI, _nTe, _mR, _pr, _nF],
|
|
1424
|
+
[
|
|
1425
|
+
[0, 1],
|
|
1426
|
+
[
|
|
1427
|
+
0,
|
|
1428
|
+
{
|
|
1429
|
+
[_hQ]: _nTe,
|
|
1430
|
+
},
|
|
1431
|
+
],
|
|
1432
|
+
[
|
|
1433
|
+
1,
|
|
1434
|
+
{
|
|
1435
|
+
[_hQ]: _mR,
|
|
1436
|
+
},
|
|
1437
|
+
],
|
|
1438
|
+
[
|
|
1439
|
+
0,
|
|
1440
|
+
{
|
|
1441
|
+
[_hQ]: _pr,
|
|
1442
|
+
},
|
|
1443
|
+
],
|
|
1444
|
+
[
|
|
1445
|
+
0,
|
|
1446
|
+
{
|
|
1447
|
+
[_hQ]: _nF,
|
|
1448
|
+
},
|
|
1449
|
+
],
|
|
1450
|
+
],
|
|
1451
|
+
];
|
|
1452
|
+
var ListDataSetsResponse = [
|
|
1453
|
+
3,
|
|
1454
|
+
n0,
|
|
1455
|
+
_LDSRi,
|
|
1456
|
+
0,
|
|
1457
|
+
[_dSat, _nTe],
|
|
1458
|
+
[() => DataSetsSummaryList, 0],
|
|
1459
|
+
];
|
|
1460
|
+
var ListDeploymentsRequest = [
|
|
1461
|
+
3,
|
|
1462
|
+
n0,
|
|
1463
|
+
_LDR,
|
|
1464
|
+
0,
|
|
1465
|
+
[_nTe, _mR, _aI],
|
|
1466
|
+
[
|
|
1467
|
+
[
|
|
1468
|
+
0,
|
|
1469
|
+
{
|
|
1470
|
+
[_hQ]: _nTe,
|
|
1471
|
+
},
|
|
1472
|
+
],
|
|
1473
|
+
[
|
|
1474
|
+
1,
|
|
1475
|
+
{
|
|
1476
|
+
[_hQ]: _mR,
|
|
1477
|
+
},
|
|
1478
|
+
],
|
|
1479
|
+
[0, 1],
|
|
1480
|
+
],
|
|
1481
|
+
];
|
|
1482
|
+
var ListDeploymentsResponse = [3, n0, _LDRi, 0, [_dep, _nTe], [() => DeploymentList, 0]];
|
|
1483
|
+
var ListEngineVersionsRequest = [
|
|
1484
|
+
3,
|
|
1485
|
+
n0,
|
|
1486
|
+
_LEVR,
|
|
1487
|
+
0,
|
|
1488
|
+
[_eT, _nTe, _mR],
|
|
1489
|
+
[
|
|
1490
|
+
[
|
|
1491
|
+
0,
|
|
1492
|
+
{
|
|
1493
|
+
[_hQ]: _eT,
|
|
1494
|
+
},
|
|
1495
|
+
],
|
|
1496
|
+
[
|
|
1497
|
+
0,
|
|
1498
|
+
{
|
|
1499
|
+
[_hQ]: _nTe,
|
|
1500
|
+
},
|
|
1501
|
+
],
|
|
1502
|
+
[
|
|
1503
|
+
1,
|
|
1504
|
+
{
|
|
1505
|
+
[_hQ]: _mR,
|
|
1506
|
+
},
|
|
1507
|
+
],
|
|
1508
|
+
],
|
|
1509
|
+
];
|
|
1510
|
+
var ListEngineVersionsResponse = [
|
|
1511
|
+
3,
|
|
1512
|
+
n0,
|
|
1513
|
+
_LEVRi,
|
|
1514
|
+
0,
|
|
1515
|
+
[_eVn, _nTe],
|
|
1516
|
+
[() => EngineVersionsSummaryList, 0],
|
|
1517
|
+
];
|
|
1518
|
+
var ListEnvironmentsRequest = [
|
|
1519
|
+
3,
|
|
1520
|
+
n0,
|
|
1521
|
+
_LER,
|
|
1522
|
+
0,
|
|
1523
|
+
[_nTe, _mR, _na, _eT],
|
|
1524
|
+
[
|
|
1525
|
+
[
|
|
1526
|
+
0,
|
|
1527
|
+
{
|
|
1528
|
+
[_hQ]: _nTe,
|
|
1529
|
+
},
|
|
1530
|
+
],
|
|
1531
|
+
[
|
|
1532
|
+
1,
|
|
1533
|
+
{
|
|
1534
|
+
[_hQ]: _mR,
|
|
1535
|
+
},
|
|
1536
|
+
],
|
|
1537
|
+
[
|
|
1538
|
+
64 | 0,
|
|
1539
|
+
{
|
|
1540
|
+
[_hQ]: _na,
|
|
1541
|
+
},
|
|
1542
|
+
],
|
|
1543
|
+
[
|
|
1544
|
+
0,
|
|
1545
|
+
{
|
|
1546
|
+
[_hQ]: _eT,
|
|
1547
|
+
},
|
|
1548
|
+
],
|
|
1549
|
+
],
|
|
1550
|
+
];
|
|
1551
|
+
var ListEnvironmentsResponse = [
|
|
1552
|
+
3,
|
|
1553
|
+
n0,
|
|
1554
|
+
_LERi,
|
|
1555
|
+
0,
|
|
1556
|
+
[_en, _nTe],
|
|
1557
|
+
[() => EnvironmentSummaryList, 0],
|
|
1558
|
+
];
|
|
1559
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rAe], [[0, 1]]];
|
|
1560
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
|
|
1561
|
+
var LogGroupSummary = [3, n0, _LGS, 0, [_lT, _lGN], [0, 0]];
|
|
1562
|
+
var MaintenanceSchedule = [3, n0, _MS, 0, [_sT, _eTn], [4, 4]];
|
|
1563
|
+
var PendingMaintenance = [3, n0, _PM, 0, [_sc, _eV], [() => MaintenanceSchedule, 0]];
|
|
1564
|
+
var PoAttributes = [3, n0, _PA, 0, [_fo, _enc, _mFE], [0, 0, 64 | 0]];
|
|
1565
|
+
var PoDetailAttributes = [3, n0, _PDA, 0, [_fo, _enc], [0, 0]];
|
|
1566
|
+
var PrimaryKey = [3, n0, _PK, 0, [_n, _o, _l], [0, 1, 1]];
|
|
1567
|
+
var PsAttributes = [3, n0, _PAs, 0, [_fo, _enc], [0, 0]];
|
|
1568
|
+
var PsDetailAttributes = [3, n0, _PDAs, 0, [_fo, _enc], [0, 0]];
|
|
1569
|
+
var RecordLength = [3, n0, _RL, 0, [_mi, _ma], [1, 1]];
|
|
1570
|
+
var ResourceNotFoundException = [
|
|
1571
|
+
-3,
|
|
1572
|
+
n0,
|
|
1573
|
+
_RNFE,
|
|
1574
|
+
{
|
|
1575
|
+
[_e]: _c,
|
|
1576
|
+
[_hE]: 404,
|
|
1577
|
+
},
|
|
1578
|
+
[_m, _rI, _rT],
|
|
1579
|
+
[0, 0, 0],
|
|
1580
|
+
];
|
|
1581
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
1582
|
+
var RestartBatchJobIdentifier = [
|
|
1583
|
+
3,
|
|
1584
|
+
n0,
|
|
1585
|
+
_RBJI,
|
|
1586
|
+
0,
|
|
1587
|
+
[_eIx, _jSRM],
|
|
1588
|
+
[0, () => JobStepRestartMarker],
|
|
1589
|
+
];
|
|
1590
|
+
var S3BatchJobIdentifier = [3, n0, _SBJI, 0, [_bu, _kP, _i], [0, 0, () => JobIdentifier]];
|
|
1591
|
+
var ScriptBatchJobDefinition = [3, n0, _SBJD, 0, [_sNc], [0]];
|
|
1592
|
+
var ScriptBatchJobIdentifier = [3, n0, _SBJIc, 0, [_sNc], [0]];
|
|
1593
|
+
var ServiceQuotaExceededException = [
|
|
1594
|
+
-3,
|
|
1595
|
+
n0,
|
|
1596
|
+
_SQEE,
|
|
1597
|
+
{
|
|
1598
|
+
[_e]: _c,
|
|
1599
|
+
[_hE]: 402,
|
|
1600
|
+
},
|
|
1601
|
+
[_m, _rI, _rT, _sCe, _qC],
|
|
1602
|
+
[0, 0, 0, 0, 0],
|
|
1603
|
+
];
|
|
1604
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
|
|
1605
|
+
var ServiceUnavailableException = [
|
|
1606
|
+
-3,
|
|
1607
|
+
n0,
|
|
1608
|
+
_SUE,
|
|
1609
|
+
{
|
|
1610
|
+
[_e]: _se,
|
|
1611
|
+
[_hE]: 503,
|
|
1612
|
+
},
|
|
1613
|
+
[_m],
|
|
1614
|
+
[0],
|
|
1615
|
+
];
|
|
1616
|
+
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException, ServiceUnavailableException$1);
|
|
1617
|
+
var StartApplicationRequest = [3, n0, _SAR, 0, [_aI], [[0, 1]]];
|
|
1618
|
+
var StartApplicationResponse = [3, n0, _SARt, 0, [], []];
|
|
1619
|
+
var StartBatchJobRequest = [
|
|
1620
|
+
3,
|
|
1621
|
+
n0,
|
|
1622
|
+
_SBJR,
|
|
1623
|
+
0,
|
|
1624
|
+
[_aI, _bJI, _jP, _aSMA],
|
|
1625
|
+
[[0, 1], () => BatchJobIdentifier, 128 | 0, 0],
|
|
1626
|
+
];
|
|
1627
|
+
var StartBatchJobResponse = [3, n0, _SBJRt, 0, [_eIx], [0]];
|
|
1628
|
+
var StopApplicationRequest = [3, n0, _SARto, 0, [_aI, _fSo], [[0, 1], 2]];
|
|
1629
|
+
var StopApplicationResponse = [3, n0, _SARtop, 0, [], []];
|
|
1630
|
+
var TagResourceRequest = [3, n0, _TRR, 0, [_rAe, _t], [[0, 1], 128 | 0]];
|
|
1631
|
+
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
1632
|
+
var ThrottlingException = [
|
|
1633
|
+
-3,
|
|
1634
|
+
n0,
|
|
1635
|
+
_TE,
|
|
1636
|
+
{
|
|
1637
|
+
[_e]: _c,
|
|
1638
|
+
[_hE]: 429,
|
|
1639
|
+
},
|
|
1640
|
+
[_m, _sCe, _qC, _rAS],
|
|
1641
|
+
[
|
|
1642
|
+
0,
|
|
1643
|
+
0,
|
|
1644
|
+
0,
|
|
1645
|
+
[
|
|
1646
|
+
1,
|
|
1647
|
+
{
|
|
1648
|
+
[_hH]: _RA,
|
|
1649
|
+
},
|
|
1650
|
+
],
|
|
1651
|
+
],
|
|
1652
|
+
];
|
|
1653
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
|
|
1654
|
+
var UntagResourceRequest = [
|
|
1655
|
+
3,
|
|
1656
|
+
n0,
|
|
1657
|
+
_URR,
|
|
1658
|
+
0,
|
|
1659
|
+
[_rAe, _tK],
|
|
1660
|
+
[
|
|
1661
|
+
[0, 1],
|
|
1662
|
+
[
|
|
1663
|
+
64 | 0,
|
|
1664
|
+
{
|
|
1665
|
+
[_hQ]: _tK,
|
|
1666
|
+
},
|
|
1667
|
+
],
|
|
1668
|
+
],
|
|
1669
|
+
];
|
|
1670
|
+
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
1671
|
+
var UpdateApplicationRequest = [
|
|
1672
|
+
3,
|
|
1673
|
+
n0,
|
|
1674
|
+
_UAR,
|
|
1675
|
+
0,
|
|
1676
|
+
[_aI, _d, _cAV, _de],
|
|
1677
|
+
[[0, 1], 0, 1, () => Definition],
|
|
1678
|
+
];
|
|
1679
|
+
var UpdateApplicationResponse = [3, n0, _UARp, 0, [_aV], [1]];
|
|
1680
|
+
var UpdateEnvironmentRequest = [
|
|
1681
|
+
3,
|
|
1682
|
+
n0,
|
|
1683
|
+
_UER,
|
|
1684
|
+
0,
|
|
1685
|
+
[_eI, _dCe, _iT, _eV, _pMW, _aDMW, _fU],
|
|
1686
|
+
[[0, 1], 1, 0, 0, 0, 2, 2],
|
|
1687
|
+
];
|
|
1688
|
+
var UpdateEnvironmentResponse = [3, n0, _UERp, 0, [_eI], [0]];
|
|
1689
|
+
var ValidationException = [
|
|
1690
|
+
-3,
|
|
1691
|
+
n0,
|
|
1692
|
+
_VE,
|
|
1693
|
+
{
|
|
1694
|
+
[_e]: _c,
|
|
1695
|
+
[_hE]: 400,
|
|
1696
|
+
},
|
|
1697
|
+
[_m, _r, _fL],
|
|
1698
|
+
[0, 0, () => ValidationExceptionFieldList],
|
|
1699
|
+
];
|
|
1700
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
|
|
1701
|
+
var ValidationExceptionField = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
|
|
1702
|
+
var VsamAttributes = [
|
|
1703
|
+
3,
|
|
1704
|
+
n0,
|
|
1705
|
+
_VA,
|
|
1706
|
+
0,
|
|
1707
|
+
[_fo, _enc, _co, _pK, _aK],
|
|
1708
|
+
[0, 0, 2, () => PrimaryKey, () => AlternateKeyList],
|
|
1709
|
+
];
|
|
1710
|
+
var VsamDetailAttributes = [
|
|
1711
|
+
3,
|
|
1712
|
+
n0,
|
|
1713
|
+
_VDA,
|
|
1714
|
+
0,
|
|
1715
|
+
[_enc, _rF, _co, _cAS, _pK, _aK],
|
|
1716
|
+
[0, 0, 2, 2, () => PrimaryKey, () => AlternateKeyList],
|
|
1717
|
+
];
|
|
1718
|
+
var __Unit = "unit";
|
|
1719
|
+
var M2ServiceException = [-3, _sm, "M2ServiceException", 0, [], []];
|
|
1720
|
+
schema.TypeRegistry.for(_sm).registerError(M2ServiceException, M2ServiceException$1);
|
|
1721
|
+
var AlternateKeyList = [1, n0, _AKL, 0, () => AlternateKey];
|
|
1722
|
+
var ApplicationSummaryList = [1, n0, _ASL, 0, () => ApplicationSummary];
|
|
1723
|
+
var ApplicationVersionSummaryList = [1, n0, _AVSL, 0, () => ApplicationVersionSummary];
|
|
1724
|
+
var BatchJobDefinitions = [1, n0, _BJD, 0, () => BatchJobDefinition];
|
|
1725
|
+
var BatchJobExecutionSummaryList = [1, n0, _BJESL, 0, () => BatchJobExecutionSummary];
|
|
1726
|
+
var BatchJobStepList = [1, n0, _BJSL, 0, () => JobStep];
|
|
1727
|
+
var DataSetExportList = [1, n0, _DSEL, 0, () => DataSetExportItem];
|
|
1728
|
+
var DataSetExportTaskList = [1, n0, _DSETL, 0, () => DataSetExportTask];
|
|
1729
|
+
var DataSetImportList = [1, n0, _DSIL, 0, () => DataSetImportItem];
|
|
1730
|
+
var DataSetImportTaskList = [1, n0, _DSITL, 0, () => DataSetImportTask];
|
|
1731
|
+
var DataSetsSummaryList = [1, n0, _DSSL, 0, () => DataSetSummary];
|
|
1732
|
+
var DeploymentList = [1, n0, _DL, 0, () => DeploymentSummary];
|
|
1733
|
+
var EngineVersionsSummaryList = [1, n0, _EVSL, 0, () => EngineVersionsSummary];
|
|
1734
|
+
var EnvironmentSummaryList = [1, n0, _ESL, 0, () => EnvironmentSummary];
|
|
1735
|
+
var LogGroupSummaries = [1, n0, _LGSo, 0, () => LogGroupSummary];
|
|
1736
|
+
var StorageConfigurationList = [1, n0, _SCL, 0, [() => StorageConfiguration, 0]];
|
|
1737
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
|
|
1738
|
+
var BatchJobDefinition = [
|
|
1739
|
+
3,
|
|
1740
|
+
n0,
|
|
1741
|
+
_BJDa,
|
|
1742
|
+
0,
|
|
1743
|
+
[_fBJD, _sBJD],
|
|
1744
|
+
[() => FileBatchJobDefinition, () => ScriptBatchJobDefinition],
|
|
1745
|
+
];
|
|
1746
|
+
var BatchJobIdentifier = [
|
|
1747
|
+
3,
|
|
1748
|
+
n0,
|
|
1749
|
+
_BJI,
|
|
1750
|
+
0,
|
|
1751
|
+
[_fBJI, _sBJI, _sBJIa, _rBJI],
|
|
1752
|
+
[
|
|
1753
|
+
() => FileBatchJobIdentifier,
|
|
1754
|
+
() => ScriptBatchJobIdentifier,
|
|
1755
|
+
() => S3BatchJobIdentifier,
|
|
1756
|
+
() => RestartBatchJobIdentifier,
|
|
1757
|
+
],
|
|
1758
|
+
];
|
|
1759
|
+
var DatasetDetailOrgAttributes = [
|
|
1760
|
+
3,
|
|
1761
|
+
n0,
|
|
1762
|
+
_DDOA,
|
|
1763
|
+
0,
|
|
1764
|
+
[_v, _g, _po, _ps],
|
|
1765
|
+
[() => VsamDetailAttributes, () => GdgDetailAttributes, () => PoDetailAttributes, () => PsDetailAttributes],
|
|
1766
|
+
];
|
|
1767
|
+
var DataSetExportConfig = [3, n0, _DSEC, 0, [_sL, _dSat], [0, () => DataSetExportList]];
|
|
1768
|
+
var DataSetImportConfig = [3, n0, _DSIC, 0, [_sL, _dSat], [0, () => DataSetImportList]];
|
|
1769
|
+
var DatasetOrgAttributes = [
|
|
1770
|
+
3,
|
|
1771
|
+
n0,
|
|
1772
|
+
_DOA,
|
|
1773
|
+
0,
|
|
1774
|
+
[_v, _g, _po, _ps],
|
|
1775
|
+
[() => VsamAttributes, () => GdgAttributes, () => PoAttributes, () => PsAttributes],
|
|
1776
|
+
];
|
|
1777
|
+
var Definition = [3, n0, _D, 0, [_sL, _con], [0, 0]];
|
|
1778
|
+
var ExternalLocation = [3, n0, _EL, 0, [_sL], [0]];
|
|
1779
|
+
var JobIdentifier = [3, n0, _JI, 0, [_fN, _sNc], [0, 0]];
|
|
1780
|
+
var StorageConfiguration = [
|
|
1781
|
+
3,
|
|
1782
|
+
n0,
|
|
1783
|
+
_SC,
|
|
1784
|
+
0,
|
|
1785
|
+
[_ef, _fs],
|
|
1786
|
+
[
|
|
1787
|
+
[() => EfsStorageConfiguration, 0],
|
|
1788
|
+
[() => FsxStorageConfiguration, 0],
|
|
1789
|
+
],
|
|
1790
|
+
];
|
|
1791
|
+
var CancelBatchJobExecution = [
|
|
1792
|
+
9,
|
|
1793
|
+
n0,
|
|
1794
|
+
_CBJE,
|
|
1795
|
+
{
|
|
1796
|
+
[_h]: ["POST", "/applications/{applicationId}/batch-job-executions/{executionId}/cancel", 200],
|
|
1797
|
+
},
|
|
1798
|
+
() => CancelBatchJobExecutionRequest,
|
|
1799
|
+
() => CancelBatchJobExecutionResponse,
|
|
1800
|
+
];
|
|
1801
|
+
var CreateApplication = [
|
|
1802
|
+
9,
|
|
1803
|
+
n0,
|
|
1804
|
+
_CA,
|
|
1805
|
+
{
|
|
1806
|
+
[_h]: ["POST", "/applications", 200],
|
|
1807
|
+
},
|
|
1808
|
+
() => CreateApplicationRequest,
|
|
1809
|
+
() => CreateApplicationResponse,
|
|
1810
|
+
];
|
|
1811
|
+
var CreateDataSetExportTask = [
|
|
1812
|
+
9,
|
|
1813
|
+
n0,
|
|
1814
|
+
_CDSET,
|
|
1815
|
+
{
|
|
1816
|
+
[_h]: ["POST", "/applications/{applicationId}/dataset-export-task", 200],
|
|
1817
|
+
},
|
|
1818
|
+
() => CreateDataSetExportTaskRequest,
|
|
1819
|
+
() => CreateDataSetExportTaskResponse,
|
|
1820
|
+
];
|
|
1821
|
+
var CreateDataSetImportTask = [
|
|
1822
|
+
9,
|
|
1823
|
+
n0,
|
|
1824
|
+
_CDSIT,
|
|
1825
|
+
{
|
|
1826
|
+
[_h]: ["POST", "/applications/{applicationId}/dataset-import-task", 200],
|
|
1827
|
+
},
|
|
1828
|
+
() => CreateDataSetImportTaskRequest,
|
|
1829
|
+
() => CreateDataSetImportTaskResponse,
|
|
1830
|
+
];
|
|
1831
|
+
var CreateDeployment = [
|
|
1832
|
+
9,
|
|
1833
|
+
n0,
|
|
1834
|
+
_CD,
|
|
1835
|
+
{
|
|
1836
|
+
[_h]: ["POST", "/applications/{applicationId}/deployments", 200],
|
|
1837
|
+
},
|
|
1838
|
+
() => CreateDeploymentRequest,
|
|
1839
|
+
() => CreateDeploymentResponse,
|
|
1840
|
+
];
|
|
1841
|
+
var CreateEnvironment = [
|
|
1842
|
+
9,
|
|
1843
|
+
n0,
|
|
1844
|
+
_CEr,
|
|
1845
|
+
{
|
|
1846
|
+
[_h]: ["POST", "/environments", 200],
|
|
1847
|
+
},
|
|
1848
|
+
() => CreateEnvironmentRequest,
|
|
1849
|
+
() => CreateEnvironmentResponse,
|
|
1850
|
+
];
|
|
1851
|
+
var DeleteApplication = [
|
|
1852
|
+
9,
|
|
1853
|
+
n0,
|
|
1854
|
+
_DA,
|
|
1855
|
+
{
|
|
1856
|
+
[_h]: ["DELETE", "/applications/{applicationId}", 200],
|
|
1857
|
+
},
|
|
1858
|
+
() => DeleteApplicationRequest,
|
|
1859
|
+
() => DeleteApplicationResponse,
|
|
1860
|
+
];
|
|
1861
|
+
var DeleteApplicationFromEnvironment = [
|
|
1862
|
+
9,
|
|
1863
|
+
n0,
|
|
1864
|
+
_DAFE,
|
|
1865
|
+
{
|
|
1866
|
+
[_h]: ["DELETE", "/applications/{applicationId}/environment/{environmentId}", 200],
|
|
1867
|
+
},
|
|
1868
|
+
() => DeleteApplicationFromEnvironmentRequest,
|
|
1869
|
+
() => DeleteApplicationFromEnvironmentResponse,
|
|
1870
|
+
];
|
|
1871
|
+
var DeleteEnvironment = [
|
|
1872
|
+
9,
|
|
1873
|
+
n0,
|
|
1874
|
+
_DE,
|
|
1875
|
+
{
|
|
1876
|
+
[_h]: ["DELETE", "/environments/{environmentId}", 200],
|
|
1877
|
+
},
|
|
1878
|
+
() => DeleteEnvironmentRequest,
|
|
1879
|
+
() => DeleteEnvironmentResponse,
|
|
1880
|
+
];
|
|
1881
|
+
var GetApplication = [
|
|
1882
|
+
9,
|
|
1883
|
+
n0,
|
|
1884
|
+
_GAe,
|
|
1885
|
+
{
|
|
1886
|
+
[_h]: ["GET", "/applications/{applicationId}", 200],
|
|
1887
|
+
},
|
|
1888
|
+
() => GetApplicationRequest,
|
|
1889
|
+
() => GetApplicationResponse,
|
|
1890
|
+
];
|
|
1891
|
+
var GetApplicationVersion = [
|
|
1892
|
+
9,
|
|
1893
|
+
n0,
|
|
1894
|
+
_GAV,
|
|
1895
|
+
{
|
|
1896
|
+
[_h]: ["GET", "/applications/{applicationId}/versions/{applicationVersion}", 200],
|
|
1897
|
+
},
|
|
1898
|
+
() => GetApplicationVersionRequest,
|
|
1899
|
+
() => GetApplicationVersionResponse,
|
|
1900
|
+
];
|
|
1901
|
+
var GetBatchJobExecution = [
|
|
1902
|
+
9,
|
|
1903
|
+
n0,
|
|
1904
|
+
_GBJE,
|
|
1905
|
+
{
|
|
1906
|
+
[_h]: ["GET", "/applications/{applicationId}/batch-job-executions/{executionId}", 200],
|
|
1907
|
+
},
|
|
1908
|
+
() => GetBatchJobExecutionRequest,
|
|
1909
|
+
() => GetBatchJobExecutionResponse,
|
|
1910
|
+
];
|
|
1911
|
+
var GetDataSetDetails = [
|
|
1912
|
+
9,
|
|
1913
|
+
n0,
|
|
1914
|
+
_GDSD,
|
|
1915
|
+
{
|
|
1916
|
+
[_h]: ["GET", "/applications/{applicationId}/datasets/{dataSetName}", 200],
|
|
1917
|
+
},
|
|
1918
|
+
() => GetDataSetDetailsRequest,
|
|
1919
|
+
() => GetDataSetDetailsResponse,
|
|
1920
|
+
];
|
|
1921
|
+
var GetDataSetExportTask = [
|
|
1922
|
+
9,
|
|
1923
|
+
n0,
|
|
1924
|
+
_GDSET,
|
|
1925
|
+
{
|
|
1926
|
+
[_h]: ["GET", "/applications/{applicationId}/dataset-export-tasks/{taskId}", 200],
|
|
1927
|
+
},
|
|
1928
|
+
() => GetDataSetExportTaskRequest,
|
|
1929
|
+
() => GetDataSetExportTaskResponse,
|
|
1930
|
+
];
|
|
1931
|
+
var GetDataSetImportTask = [
|
|
1932
|
+
9,
|
|
1933
|
+
n0,
|
|
1934
|
+
_GDSIT,
|
|
1935
|
+
{
|
|
1936
|
+
[_h]: ["GET", "/applications/{applicationId}/dataset-import-tasks/{taskId}", 200],
|
|
1937
|
+
},
|
|
1938
|
+
() => GetDataSetImportTaskRequest,
|
|
1939
|
+
() => GetDataSetImportTaskResponse,
|
|
1940
|
+
];
|
|
1941
|
+
var GetDeployment = [
|
|
1942
|
+
9,
|
|
1943
|
+
n0,
|
|
1944
|
+
_GD,
|
|
1945
|
+
{
|
|
1946
|
+
[_h]: ["GET", "/applications/{applicationId}/deployments/{deploymentId}", 200],
|
|
1947
|
+
},
|
|
1948
|
+
() => GetDeploymentRequest,
|
|
1949
|
+
() => GetDeploymentResponse,
|
|
1950
|
+
];
|
|
1951
|
+
var GetEnvironment = [
|
|
1952
|
+
9,
|
|
1953
|
+
n0,
|
|
1954
|
+
_GE,
|
|
1955
|
+
{
|
|
1956
|
+
[_h]: ["GET", "/environments/{environmentId}", 200],
|
|
1957
|
+
},
|
|
1958
|
+
() => GetEnvironmentRequest,
|
|
1959
|
+
() => GetEnvironmentResponse,
|
|
1960
|
+
];
|
|
1961
|
+
var GetSignedBluinsightsUrl = [
|
|
1962
|
+
9,
|
|
1963
|
+
n0,
|
|
1964
|
+
_GSBU,
|
|
1965
|
+
{
|
|
1966
|
+
[_h]: ["GET", "/signed-bi-url", 200],
|
|
1967
|
+
},
|
|
1968
|
+
() => __Unit,
|
|
1969
|
+
() => GetSignedBluinsightsUrlResponse,
|
|
1970
|
+
];
|
|
1971
|
+
var ListApplications = [
|
|
1972
|
+
9,
|
|
1973
|
+
n0,
|
|
1974
|
+
_LA,
|
|
1975
|
+
{
|
|
1976
|
+
[_h]: ["GET", "/applications", 200],
|
|
1977
|
+
},
|
|
1978
|
+
() => ListApplicationsRequest,
|
|
1979
|
+
() => ListApplicationsResponse,
|
|
1980
|
+
];
|
|
1981
|
+
var ListApplicationVersions = [
|
|
1982
|
+
9,
|
|
1983
|
+
n0,
|
|
1984
|
+
_LAV,
|
|
1985
|
+
{
|
|
1986
|
+
[_h]: ["GET", "/applications/{applicationId}/versions", 200],
|
|
1987
|
+
},
|
|
1988
|
+
() => ListApplicationVersionsRequest,
|
|
1989
|
+
() => ListApplicationVersionsResponse,
|
|
1990
|
+
];
|
|
1991
|
+
var ListBatchJobDefinitions = [
|
|
1992
|
+
9,
|
|
1993
|
+
n0,
|
|
1994
|
+
_LBJD,
|
|
1995
|
+
{
|
|
1996
|
+
[_h]: ["GET", "/applications/{applicationId}/batch-job-definitions", 200],
|
|
1997
|
+
},
|
|
1998
|
+
() => ListBatchJobDefinitionsRequest,
|
|
1999
|
+
() => ListBatchJobDefinitionsResponse,
|
|
2000
|
+
];
|
|
2001
|
+
var ListBatchJobExecutions = [
|
|
2002
|
+
9,
|
|
2003
|
+
n0,
|
|
2004
|
+
_LBJE,
|
|
2005
|
+
{
|
|
2006
|
+
[_h]: ["GET", "/applications/{applicationId}/batch-job-executions", 200],
|
|
2007
|
+
},
|
|
2008
|
+
() => ListBatchJobExecutionsRequest,
|
|
2009
|
+
() => ListBatchJobExecutionsResponse,
|
|
2010
|
+
];
|
|
2011
|
+
var ListBatchJobRestartPoints = [
|
|
2012
|
+
9,
|
|
2013
|
+
n0,
|
|
2014
|
+
_LBJRP,
|
|
2015
|
+
{
|
|
2016
|
+
[_h]: ["GET", "/applications/{applicationId}/batch-job-executions/{executionId}/steps", 200],
|
|
2017
|
+
},
|
|
2018
|
+
() => ListBatchJobRestartPointsRequest,
|
|
2019
|
+
() => ListBatchJobRestartPointsResponse,
|
|
2020
|
+
];
|
|
2021
|
+
var ListDataSetExportHistory = [
|
|
2022
|
+
9,
|
|
2023
|
+
n0,
|
|
2024
|
+
_LDSEH,
|
|
2025
|
+
{
|
|
2026
|
+
[_h]: ["GET", "/applications/{applicationId}/dataset-export-tasks", 200],
|
|
2027
|
+
},
|
|
2028
|
+
() => ListDataSetExportHistoryRequest,
|
|
2029
|
+
() => ListDataSetExportHistoryResponse,
|
|
2030
|
+
];
|
|
2031
|
+
var ListDataSetImportHistory = [
|
|
2032
|
+
9,
|
|
2033
|
+
n0,
|
|
2034
|
+
_LDSIH,
|
|
2035
|
+
{
|
|
2036
|
+
[_h]: ["GET", "/applications/{applicationId}/dataset-import-tasks", 200],
|
|
2037
|
+
},
|
|
2038
|
+
() => ListDataSetImportHistoryRequest,
|
|
2039
|
+
() => ListDataSetImportHistoryResponse,
|
|
2040
|
+
];
|
|
2041
|
+
var ListDataSets = [
|
|
2042
|
+
9,
|
|
2043
|
+
n0,
|
|
2044
|
+
_LDS,
|
|
2045
|
+
{
|
|
2046
|
+
[_h]: ["GET", "/applications/{applicationId}/datasets", 200],
|
|
2047
|
+
},
|
|
2048
|
+
() => ListDataSetsRequest,
|
|
2049
|
+
() => ListDataSetsResponse,
|
|
2050
|
+
];
|
|
2051
|
+
var ListDeployments = [
|
|
2052
|
+
9,
|
|
2053
|
+
n0,
|
|
2054
|
+
_LD,
|
|
2055
|
+
{
|
|
2056
|
+
[_h]: ["GET", "/applications/{applicationId}/deployments", 200],
|
|
2057
|
+
},
|
|
2058
|
+
() => ListDeploymentsRequest,
|
|
2059
|
+
() => ListDeploymentsResponse,
|
|
2060
|
+
];
|
|
2061
|
+
var ListEngineVersions = [
|
|
2062
|
+
9,
|
|
2063
|
+
n0,
|
|
2064
|
+
_LEV,
|
|
2065
|
+
{
|
|
2066
|
+
[_h]: ["GET", "/engine-versions", 200],
|
|
2067
|
+
},
|
|
2068
|
+
() => ListEngineVersionsRequest,
|
|
2069
|
+
() => ListEngineVersionsResponse,
|
|
2070
|
+
];
|
|
2071
|
+
var ListEnvironments = [
|
|
2072
|
+
9,
|
|
2073
|
+
n0,
|
|
2074
|
+
_LE,
|
|
2075
|
+
{
|
|
2076
|
+
[_h]: ["GET", "/environments", 200],
|
|
2077
|
+
},
|
|
2078
|
+
() => ListEnvironmentsRequest,
|
|
2079
|
+
() => ListEnvironmentsResponse,
|
|
2080
|
+
];
|
|
2081
|
+
var ListTagsForResource = [
|
|
2082
|
+
9,
|
|
2083
|
+
n0,
|
|
2084
|
+
_LTFR,
|
|
2085
|
+
{
|
|
2086
|
+
[_h]: ["GET", "/tags/{resourceArn}", 200],
|
|
2087
|
+
},
|
|
2088
|
+
() => ListTagsForResourceRequest,
|
|
2089
|
+
() => ListTagsForResourceResponse,
|
|
2090
|
+
];
|
|
2091
|
+
var StartApplication = [
|
|
2092
|
+
9,
|
|
2093
|
+
n0,
|
|
2094
|
+
_SA,
|
|
2095
|
+
{
|
|
2096
|
+
[_h]: ["POST", "/applications/{applicationId}/start", 200],
|
|
2097
|
+
},
|
|
2098
|
+
() => StartApplicationRequest,
|
|
2099
|
+
() => StartApplicationResponse,
|
|
2100
|
+
];
|
|
2101
|
+
var StartBatchJob = [
|
|
2102
|
+
9,
|
|
2103
|
+
n0,
|
|
2104
|
+
_SBJ,
|
|
2105
|
+
{
|
|
2106
|
+
[_h]: ["POST", "/applications/{applicationId}/batch-job", 200],
|
|
2107
|
+
},
|
|
2108
|
+
() => StartBatchJobRequest,
|
|
2109
|
+
() => StartBatchJobResponse,
|
|
2110
|
+
];
|
|
2111
|
+
var StopApplication = [
|
|
2112
|
+
9,
|
|
2113
|
+
n0,
|
|
2114
|
+
_SAt,
|
|
2115
|
+
{
|
|
2116
|
+
[_h]: ["POST", "/applications/{applicationId}/stop", 200],
|
|
2117
|
+
},
|
|
2118
|
+
() => StopApplicationRequest,
|
|
2119
|
+
() => StopApplicationResponse,
|
|
2120
|
+
];
|
|
2121
|
+
var TagResource = [
|
|
2122
|
+
9,
|
|
2123
|
+
n0,
|
|
2124
|
+
_TR,
|
|
2125
|
+
{
|
|
2126
|
+
[_h]: ["POST", "/tags/{resourceArn}", 200],
|
|
2127
|
+
},
|
|
2128
|
+
() => TagResourceRequest,
|
|
2129
|
+
() => TagResourceResponse,
|
|
2130
|
+
];
|
|
2131
|
+
var UntagResource = [
|
|
2132
|
+
9,
|
|
2133
|
+
n0,
|
|
2134
|
+
_UR,
|
|
2135
|
+
{
|
|
2136
|
+
[_h]: ["DELETE", "/tags/{resourceArn}", 200],
|
|
2137
|
+
},
|
|
2138
|
+
() => UntagResourceRequest,
|
|
2139
|
+
() => UntagResourceResponse,
|
|
2140
|
+
];
|
|
2141
|
+
var UpdateApplication = [
|
|
2142
|
+
9,
|
|
2143
|
+
n0,
|
|
2144
|
+
_UA,
|
|
2145
|
+
{
|
|
2146
|
+
[_h]: ["PATCH", "/applications/{applicationId}", 200],
|
|
2147
|
+
},
|
|
2148
|
+
() => UpdateApplicationRequest,
|
|
2149
|
+
() => UpdateApplicationResponse,
|
|
2150
|
+
];
|
|
2151
|
+
var UpdateEnvironment = [
|
|
2152
|
+
9,
|
|
2153
|
+
n0,
|
|
2154
|
+
_UE,
|
|
2155
|
+
{
|
|
2156
|
+
[_h]: ["PATCH", "/environments/{environmentId}", 200],
|
|
2157
|
+
},
|
|
2158
|
+
() => UpdateEnvironmentRequest,
|
|
2159
|
+
() => UpdateEnvironmentResponse,
|
|
2160
|
+
];
|
|
1923
2161
|
|
|
1924
2162
|
class CancelBatchJobExecutionCommand extends smithyClient.Command
|
|
1925
2163
|
.classBuilder()
|
|
1926
2164
|
.ep(commonParams)
|
|
1927
2165
|
.m(function (Command, cs, config, o) {
|
|
1928
|
-
return [
|
|
1929
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1930
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1931
|
-
];
|
|
2166
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1932
2167
|
})
|
|
1933
2168
|
.s("AwsSupernovaControlPlaneService", "CancelBatchJobExecution", {})
|
|
1934
2169
|
.n("M2Client", "CancelBatchJobExecutionCommand")
|
|
1935
|
-
.
|
|
1936
|
-
.ser(se_CancelBatchJobExecutionCommand)
|
|
1937
|
-
.de(de_CancelBatchJobExecutionCommand)
|
|
2170
|
+
.sc(CancelBatchJobExecution)
|
|
1938
2171
|
.build() {
|
|
1939
2172
|
}
|
|
1940
2173
|
|
|
@@ -1942,16 +2175,11 @@ class CreateApplicationCommand extends smithyClient.Command
|
|
|
1942
2175
|
.classBuilder()
|
|
1943
2176
|
.ep(commonParams)
|
|
1944
2177
|
.m(function (Command, cs, config, o) {
|
|
1945
|
-
return [
|
|
1946
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1947
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1948
|
-
];
|
|
2178
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1949
2179
|
})
|
|
1950
2180
|
.s("AwsSupernovaControlPlaneService", "CreateApplication", {})
|
|
1951
2181
|
.n("M2Client", "CreateApplicationCommand")
|
|
1952
|
-
.
|
|
1953
|
-
.ser(se_CreateApplicationCommand)
|
|
1954
|
-
.de(de_CreateApplicationCommand)
|
|
2182
|
+
.sc(CreateApplication)
|
|
1955
2183
|
.build() {
|
|
1956
2184
|
}
|
|
1957
2185
|
|
|
@@ -1959,16 +2187,11 @@ class CreateDataSetExportTaskCommand extends smithyClient.Command
|
|
|
1959
2187
|
.classBuilder()
|
|
1960
2188
|
.ep(commonParams)
|
|
1961
2189
|
.m(function (Command, cs, config, o) {
|
|
1962
|
-
return [
|
|
1963
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1964
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1965
|
-
];
|
|
2190
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1966
2191
|
})
|
|
1967
2192
|
.s("AwsSupernovaControlPlaneService", "CreateDataSetExportTask", {})
|
|
1968
2193
|
.n("M2Client", "CreateDataSetExportTaskCommand")
|
|
1969
|
-
.
|
|
1970
|
-
.ser(se_CreateDataSetExportTaskCommand)
|
|
1971
|
-
.de(de_CreateDataSetExportTaskCommand)
|
|
2194
|
+
.sc(CreateDataSetExportTask)
|
|
1972
2195
|
.build() {
|
|
1973
2196
|
}
|
|
1974
2197
|
|
|
@@ -1976,16 +2199,11 @@ class CreateDataSetImportTaskCommand extends smithyClient.Command
|
|
|
1976
2199
|
.classBuilder()
|
|
1977
2200
|
.ep(commonParams)
|
|
1978
2201
|
.m(function (Command, cs, config, o) {
|
|
1979
|
-
return [
|
|
1980
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1981
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1982
|
-
];
|
|
2202
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1983
2203
|
})
|
|
1984
2204
|
.s("AwsSupernovaControlPlaneService", "CreateDataSetImportTask", {})
|
|
1985
2205
|
.n("M2Client", "CreateDataSetImportTaskCommand")
|
|
1986
|
-
.
|
|
1987
|
-
.ser(se_CreateDataSetImportTaskCommand)
|
|
1988
|
-
.de(de_CreateDataSetImportTaskCommand)
|
|
2206
|
+
.sc(CreateDataSetImportTask)
|
|
1989
2207
|
.build() {
|
|
1990
2208
|
}
|
|
1991
2209
|
|
|
@@ -1993,16 +2211,11 @@ class CreateDeploymentCommand extends smithyClient.Command
|
|
|
1993
2211
|
.classBuilder()
|
|
1994
2212
|
.ep(commonParams)
|
|
1995
2213
|
.m(function (Command, cs, config, o) {
|
|
1996
|
-
return [
|
|
1997
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1998
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1999
|
-
];
|
|
2214
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2000
2215
|
})
|
|
2001
2216
|
.s("AwsSupernovaControlPlaneService", "CreateDeployment", {})
|
|
2002
2217
|
.n("M2Client", "CreateDeploymentCommand")
|
|
2003
|
-
.
|
|
2004
|
-
.ser(se_CreateDeploymentCommand)
|
|
2005
|
-
.de(de_CreateDeploymentCommand)
|
|
2218
|
+
.sc(CreateDeployment)
|
|
2006
2219
|
.build() {
|
|
2007
2220
|
}
|
|
2008
2221
|
|
|
@@ -2010,16 +2223,11 @@ class CreateEnvironmentCommand extends smithyClient.Command
|
|
|
2010
2223
|
.classBuilder()
|
|
2011
2224
|
.ep(commonParams)
|
|
2012
2225
|
.m(function (Command, cs, config, o) {
|
|
2013
|
-
return [
|
|
2014
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2015
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2016
|
-
];
|
|
2226
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2017
2227
|
})
|
|
2018
2228
|
.s("AwsSupernovaControlPlaneService", "CreateEnvironment", {})
|
|
2019
2229
|
.n("M2Client", "CreateEnvironmentCommand")
|
|
2020
|
-
.
|
|
2021
|
-
.ser(se_CreateEnvironmentCommand)
|
|
2022
|
-
.de(de_CreateEnvironmentCommand)
|
|
2230
|
+
.sc(CreateEnvironment)
|
|
2023
2231
|
.build() {
|
|
2024
2232
|
}
|
|
2025
2233
|
|
|
@@ -2027,16 +2235,11 @@ class DeleteApplicationCommand extends smithyClient.Command
|
|
|
2027
2235
|
.classBuilder()
|
|
2028
2236
|
.ep(commonParams)
|
|
2029
2237
|
.m(function (Command, cs, config, o) {
|
|
2030
|
-
return [
|
|
2031
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2032
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2033
|
-
];
|
|
2238
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2034
2239
|
})
|
|
2035
2240
|
.s("AwsSupernovaControlPlaneService", "DeleteApplication", {})
|
|
2036
2241
|
.n("M2Client", "DeleteApplicationCommand")
|
|
2037
|
-
.
|
|
2038
|
-
.ser(se_DeleteApplicationCommand)
|
|
2039
|
-
.de(de_DeleteApplicationCommand)
|
|
2242
|
+
.sc(DeleteApplication)
|
|
2040
2243
|
.build() {
|
|
2041
2244
|
}
|
|
2042
2245
|
|
|
@@ -2044,16 +2247,11 @@ class DeleteApplicationFromEnvironmentCommand extends smithyClient.Command
|
|
|
2044
2247
|
.classBuilder()
|
|
2045
2248
|
.ep(commonParams)
|
|
2046
2249
|
.m(function (Command, cs, config, o) {
|
|
2047
|
-
return [
|
|
2048
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2049
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2050
|
-
];
|
|
2250
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2051
2251
|
})
|
|
2052
2252
|
.s("AwsSupernovaControlPlaneService", "DeleteApplicationFromEnvironment", {})
|
|
2053
2253
|
.n("M2Client", "DeleteApplicationFromEnvironmentCommand")
|
|
2054
|
-
.
|
|
2055
|
-
.ser(se_DeleteApplicationFromEnvironmentCommand)
|
|
2056
|
-
.de(de_DeleteApplicationFromEnvironmentCommand)
|
|
2254
|
+
.sc(DeleteApplicationFromEnvironment)
|
|
2057
2255
|
.build() {
|
|
2058
2256
|
}
|
|
2059
2257
|
|
|
@@ -2061,16 +2259,11 @@ class DeleteEnvironmentCommand extends smithyClient.Command
|
|
|
2061
2259
|
.classBuilder()
|
|
2062
2260
|
.ep(commonParams)
|
|
2063
2261
|
.m(function (Command, cs, config, o) {
|
|
2064
|
-
return [
|
|
2065
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2066
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2067
|
-
];
|
|
2262
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2068
2263
|
})
|
|
2069
2264
|
.s("AwsSupernovaControlPlaneService", "DeleteEnvironment", {})
|
|
2070
2265
|
.n("M2Client", "DeleteEnvironmentCommand")
|
|
2071
|
-
.
|
|
2072
|
-
.ser(se_DeleteEnvironmentCommand)
|
|
2073
|
-
.de(de_DeleteEnvironmentCommand)
|
|
2266
|
+
.sc(DeleteEnvironment)
|
|
2074
2267
|
.build() {
|
|
2075
2268
|
}
|
|
2076
2269
|
|
|
@@ -2078,16 +2271,11 @@ class GetApplicationCommand extends smithyClient.Command
|
|
|
2078
2271
|
.classBuilder()
|
|
2079
2272
|
.ep(commonParams)
|
|
2080
2273
|
.m(function (Command, cs, config, o) {
|
|
2081
|
-
return [
|
|
2082
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2083
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2084
|
-
];
|
|
2274
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2085
2275
|
})
|
|
2086
2276
|
.s("AwsSupernovaControlPlaneService", "GetApplication", {})
|
|
2087
2277
|
.n("M2Client", "GetApplicationCommand")
|
|
2088
|
-
.
|
|
2089
|
-
.ser(se_GetApplicationCommand)
|
|
2090
|
-
.de(de_GetApplicationCommand)
|
|
2278
|
+
.sc(GetApplication)
|
|
2091
2279
|
.build() {
|
|
2092
2280
|
}
|
|
2093
2281
|
|
|
@@ -2095,16 +2283,11 @@ class GetApplicationVersionCommand extends smithyClient.Command
|
|
|
2095
2283
|
.classBuilder()
|
|
2096
2284
|
.ep(commonParams)
|
|
2097
2285
|
.m(function (Command, cs, config, o) {
|
|
2098
|
-
return [
|
|
2099
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2100
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2101
|
-
];
|
|
2286
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2102
2287
|
})
|
|
2103
2288
|
.s("AwsSupernovaControlPlaneService", "GetApplicationVersion", {})
|
|
2104
2289
|
.n("M2Client", "GetApplicationVersionCommand")
|
|
2105
|
-
.
|
|
2106
|
-
.ser(se_GetApplicationVersionCommand)
|
|
2107
|
-
.de(de_GetApplicationVersionCommand)
|
|
2290
|
+
.sc(GetApplicationVersion)
|
|
2108
2291
|
.build() {
|
|
2109
2292
|
}
|
|
2110
2293
|
|
|
@@ -2112,16 +2295,11 @@ class GetBatchJobExecutionCommand extends smithyClient.Command
|
|
|
2112
2295
|
.classBuilder()
|
|
2113
2296
|
.ep(commonParams)
|
|
2114
2297
|
.m(function (Command, cs, config, o) {
|
|
2115
|
-
return [
|
|
2116
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2117
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2118
|
-
];
|
|
2298
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2119
2299
|
})
|
|
2120
2300
|
.s("AwsSupernovaControlPlaneService", "GetBatchJobExecution", {})
|
|
2121
2301
|
.n("M2Client", "GetBatchJobExecutionCommand")
|
|
2122
|
-
.
|
|
2123
|
-
.ser(se_GetBatchJobExecutionCommand)
|
|
2124
|
-
.de(de_GetBatchJobExecutionCommand)
|
|
2302
|
+
.sc(GetBatchJobExecution)
|
|
2125
2303
|
.build() {
|
|
2126
2304
|
}
|
|
2127
2305
|
|
|
@@ -2129,16 +2307,11 @@ class GetDataSetDetailsCommand extends smithyClient.Command
|
|
|
2129
2307
|
.classBuilder()
|
|
2130
2308
|
.ep(commonParams)
|
|
2131
2309
|
.m(function (Command, cs, config, o) {
|
|
2132
|
-
return [
|
|
2133
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2134
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2135
|
-
];
|
|
2310
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2136
2311
|
})
|
|
2137
2312
|
.s("AwsSupernovaControlPlaneService", "GetDataSetDetails", {})
|
|
2138
2313
|
.n("M2Client", "GetDataSetDetailsCommand")
|
|
2139
|
-
.
|
|
2140
|
-
.ser(se_GetDataSetDetailsCommand)
|
|
2141
|
-
.de(de_GetDataSetDetailsCommand)
|
|
2314
|
+
.sc(GetDataSetDetails)
|
|
2142
2315
|
.build() {
|
|
2143
2316
|
}
|
|
2144
2317
|
|
|
@@ -2146,16 +2319,11 @@ class GetDataSetExportTaskCommand extends smithyClient.Command
|
|
|
2146
2319
|
.classBuilder()
|
|
2147
2320
|
.ep(commonParams)
|
|
2148
2321
|
.m(function (Command, cs, config, o) {
|
|
2149
|
-
return [
|
|
2150
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2151
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2152
|
-
];
|
|
2322
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2153
2323
|
})
|
|
2154
2324
|
.s("AwsSupernovaControlPlaneService", "GetDataSetExportTask", {})
|
|
2155
2325
|
.n("M2Client", "GetDataSetExportTaskCommand")
|
|
2156
|
-
.
|
|
2157
|
-
.ser(se_GetDataSetExportTaskCommand)
|
|
2158
|
-
.de(de_GetDataSetExportTaskCommand)
|
|
2326
|
+
.sc(GetDataSetExportTask)
|
|
2159
2327
|
.build() {
|
|
2160
2328
|
}
|
|
2161
2329
|
|
|
@@ -2163,16 +2331,11 @@ class GetDataSetImportTaskCommand extends smithyClient.Command
|
|
|
2163
2331
|
.classBuilder()
|
|
2164
2332
|
.ep(commonParams)
|
|
2165
2333
|
.m(function (Command, cs, config, o) {
|
|
2166
|
-
return [
|
|
2167
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2168
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2169
|
-
];
|
|
2334
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2170
2335
|
})
|
|
2171
2336
|
.s("AwsSupernovaControlPlaneService", "GetDataSetImportTask", {})
|
|
2172
2337
|
.n("M2Client", "GetDataSetImportTaskCommand")
|
|
2173
|
-
.
|
|
2174
|
-
.ser(se_GetDataSetImportTaskCommand)
|
|
2175
|
-
.de(de_GetDataSetImportTaskCommand)
|
|
2338
|
+
.sc(GetDataSetImportTask)
|
|
2176
2339
|
.build() {
|
|
2177
2340
|
}
|
|
2178
2341
|
|
|
@@ -2180,16 +2343,11 @@ class GetDeploymentCommand extends smithyClient.Command
|
|
|
2180
2343
|
.classBuilder()
|
|
2181
2344
|
.ep(commonParams)
|
|
2182
2345
|
.m(function (Command, cs, config, o) {
|
|
2183
|
-
return [
|
|
2184
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2185
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2186
|
-
];
|
|
2346
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2187
2347
|
})
|
|
2188
2348
|
.s("AwsSupernovaControlPlaneService", "GetDeployment", {})
|
|
2189
2349
|
.n("M2Client", "GetDeploymentCommand")
|
|
2190
|
-
.
|
|
2191
|
-
.ser(se_GetDeploymentCommand)
|
|
2192
|
-
.de(de_GetDeploymentCommand)
|
|
2350
|
+
.sc(GetDeployment)
|
|
2193
2351
|
.build() {
|
|
2194
2352
|
}
|
|
2195
2353
|
|
|
@@ -2197,16 +2355,11 @@ class GetEnvironmentCommand extends smithyClient.Command
|
|
|
2197
2355
|
.classBuilder()
|
|
2198
2356
|
.ep(commonParams)
|
|
2199
2357
|
.m(function (Command, cs, config, o) {
|
|
2200
|
-
return [
|
|
2201
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2202
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2203
|
-
];
|
|
2358
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2204
2359
|
})
|
|
2205
2360
|
.s("AwsSupernovaControlPlaneService", "GetEnvironment", {})
|
|
2206
2361
|
.n("M2Client", "GetEnvironmentCommand")
|
|
2207
|
-
.
|
|
2208
|
-
.ser(se_GetEnvironmentCommand)
|
|
2209
|
-
.de(de_GetEnvironmentCommand)
|
|
2362
|
+
.sc(GetEnvironment)
|
|
2210
2363
|
.build() {
|
|
2211
2364
|
}
|
|
2212
2365
|
|
|
@@ -2214,16 +2367,11 @@ class GetSignedBluinsightsUrlCommand extends smithyClient.Command
|
|
|
2214
2367
|
.classBuilder()
|
|
2215
2368
|
.ep(commonParams)
|
|
2216
2369
|
.m(function (Command, cs, config, o) {
|
|
2217
|
-
return [
|
|
2218
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2219
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2220
|
-
];
|
|
2370
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2221
2371
|
})
|
|
2222
2372
|
.s("AwsSupernovaControlPlaneService", "GetSignedBluinsightsUrl", {})
|
|
2223
2373
|
.n("M2Client", "GetSignedBluinsightsUrlCommand")
|
|
2224
|
-
.
|
|
2225
|
-
.ser(se_GetSignedBluinsightsUrlCommand)
|
|
2226
|
-
.de(de_GetSignedBluinsightsUrlCommand)
|
|
2374
|
+
.sc(GetSignedBluinsightsUrl)
|
|
2227
2375
|
.build() {
|
|
2228
2376
|
}
|
|
2229
2377
|
|
|
@@ -2231,16 +2379,11 @@ class ListApplicationsCommand extends smithyClient.Command
|
|
|
2231
2379
|
.classBuilder()
|
|
2232
2380
|
.ep(commonParams)
|
|
2233
2381
|
.m(function (Command, cs, config, o) {
|
|
2234
|
-
return [
|
|
2235
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2236
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2237
|
-
];
|
|
2382
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2238
2383
|
})
|
|
2239
2384
|
.s("AwsSupernovaControlPlaneService", "ListApplications", {})
|
|
2240
2385
|
.n("M2Client", "ListApplicationsCommand")
|
|
2241
|
-
.
|
|
2242
|
-
.ser(se_ListApplicationsCommand)
|
|
2243
|
-
.de(de_ListApplicationsCommand)
|
|
2386
|
+
.sc(ListApplications)
|
|
2244
2387
|
.build() {
|
|
2245
2388
|
}
|
|
2246
2389
|
|
|
@@ -2248,16 +2391,11 @@ class ListApplicationVersionsCommand extends smithyClient.Command
|
|
|
2248
2391
|
.classBuilder()
|
|
2249
2392
|
.ep(commonParams)
|
|
2250
2393
|
.m(function (Command, cs, config, o) {
|
|
2251
|
-
return [
|
|
2252
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2253
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2254
|
-
];
|
|
2394
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2255
2395
|
})
|
|
2256
2396
|
.s("AwsSupernovaControlPlaneService", "ListApplicationVersions", {})
|
|
2257
2397
|
.n("M2Client", "ListApplicationVersionsCommand")
|
|
2258
|
-
.
|
|
2259
|
-
.ser(se_ListApplicationVersionsCommand)
|
|
2260
|
-
.de(de_ListApplicationVersionsCommand)
|
|
2398
|
+
.sc(ListApplicationVersions)
|
|
2261
2399
|
.build() {
|
|
2262
2400
|
}
|
|
2263
2401
|
|
|
@@ -2265,16 +2403,11 @@ class ListBatchJobDefinitionsCommand extends smithyClient.Command
|
|
|
2265
2403
|
.classBuilder()
|
|
2266
2404
|
.ep(commonParams)
|
|
2267
2405
|
.m(function (Command, cs, config, o) {
|
|
2268
|
-
return [
|
|
2269
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2270
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2271
|
-
];
|
|
2406
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2272
2407
|
})
|
|
2273
2408
|
.s("AwsSupernovaControlPlaneService", "ListBatchJobDefinitions", {})
|
|
2274
2409
|
.n("M2Client", "ListBatchJobDefinitionsCommand")
|
|
2275
|
-
.
|
|
2276
|
-
.ser(se_ListBatchJobDefinitionsCommand)
|
|
2277
|
-
.de(de_ListBatchJobDefinitionsCommand)
|
|
2410
|
+
.sc(ListBatchJobDefinitions)
|
|
2278
2411
|
.build() {
|
|
2279
2412
|
}
|
|
2280
2413
|
|
|
@@ -2282,16 +2415,11 @@ class ListBatchJobExecutionsCommand extends smithyClient.Command
|
|
|
2282
2415
|
.classBuilder()
|
|
2283
2416
|
.ep(commonParams)
|
|
2284
2417
|
.m(function (Command, cs, config, o) {
|
|
2285
|
-
return [
|
|
2286
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2287
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2288
|
-
];
|
|
2418
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2289
2419
|
})
|
|
2290
2420
|
.s("AwsSupernovaControlPlaneService", "ListBatchJobExecutions", {})
|
|
2291
2421
|
.n("M2Client", "ListBatchJobExecutionsCommand")
|
|
2292
|
-
.
|
|
2293
|
-
.ser(se_ListBatchJobExecutionsCommand)
|
|
2294
|
-
.de(de_ListBatchJobExecutionsCommand)
|
|
2422
|
+
.sc(ListBatchJobExecutions)
|
|
2295
2423
|
.build() {
|
|
2296
2424
|
}
|
|
2297
2425
|
|
|
@@ -2299,16 +2427,11 @@ class ListBatchJobRestartPointsCommand extends smithyClient.Command
|
|
|
2299
2427
|
.classBuilder()
|
|
2300
2428
|
.ep(commonParams)
|
|
2301
2429
|
.m(function (Command, cs, config, o) {
|
|
2302
|
-
return [
|
|
2303
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2304
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2305
|
-
];
|
|
2430
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2306
2431
|
})
|
|
2307
2432
|
.s("AwsSupernovaControlPlaneService", "ListBatchJobRestartPoints", {})
|
|
2308
2433
|
.n("M2Client", "ListBatchJobRestartPointsCommand")
|
|
2309
|
-
.
|
|
2310
|
-
.ser(se_ListBatchJobRestartPointsCommand)
|
|
2311
|
-
.de(de_ListBatchJobRestartPointsCommand)
|
|
2434
|
+
.sc(ListBatchJobRestartPoints)
|
|
2312
2435
|
.build() {
|
|
2313
2436
|
}
|
|
2314
2437
|
|
|
@@ -2316,16 +2439,11 @@ class ListDataSetExportHistoryCommand extends smithyClient.Command
|
|
|
2316
2439
|
.classBuilder()
|
|
2317
2440
|
.ep(commonParams)
|
|
2318
2441
|
.m(function (Command, cs, config, o) {
|
|
2319
|
-
return [
|
|
2320
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2321
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2322
|
-
];
|
|
2442
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2323
2443
|
})
|
|
2324
2444
|
.s("AwsSupernovaControlPlaneService", "ListDataSetExportHistory", {})
|
|
2325
2445
|
.n("M2Client", "ListDataSetExportHistoryCommand")
|
|
2326
|
-
.
|
|
2327
|
-
.ser(se_ListDataSetExportHistoryCommand)
|
|
2328
|
-
.de(de_ListDataSetExportHistoryCommand)
|
|
2446
|
+
.sc(ListDataSetExportHistory)
|
|
2329
2447
|
.build() {
|
|
2330
2448
|
}
|
|
2331
2449
|
|
|
@@ -2333,16 +2451,11 @@ class ListDataSetImportHistoryCommand extends smithyClient.Command
|
|
|
2333
2451
|
.classBuilder()
|
|
2334
2452
|
.ep(commonParams)
|
|
2335
2453
|
.m(function (Command, cs, config, o) {
|
|
2336
|
-
return [
|
|
2337
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2338
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2339
|
-
];
|
|
2454
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2340
2455
|
})
|
|
2341
2456
|
.s("AwsSupernovaControlPlaneService", "ListDataSetImportHistory", {})
|
|
2342
2457
|
.n("M2Client", "ListDataSetImportHistoryCommand")
|
|
2343
|
-
.
|
|
2344
|
-
.ser(se_ListDataSetImportHistoryCommand)
|
|
2345
|
-
.de(de_ListDataSetImportHistoryCommand)
|
|
2458
|
+
.sc(ListDataSetImportHistory)
|
|
2346
2459
|
.build() {
|
|
2347
2460
|
}
|
|
2348
2461
|
|
|
@@ -2350,16 +2463,11 @@ class ListDataSetsCommand extends smithyClient.Command
|
|
|
2350
2463
|
.classBuilder()
|
|
2351
2464
|
.ep(commonParams)
|
|
2352
2465
|
.m(function (Command, cs, config, o) {
|
|
2353
|
-
return [
|
|
2354
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2355
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2356
|
-
];
|
|
2466
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2357
2467
|
})
|
|
2358
2468
|
.s("AwsSupernovaControlPlaneService", "ListDataSets", {})
|
|
2359
2469
|
.n("M2Client", "ListDataSetsCommand")
|
|
2360
|
-
.
|
|
2361
|
-
.ser(se_ListDataSetsCommand)
|
|
2362
|
-
.de(de_ListDataSetsCommand)
|
|
2470
|
+
.sc(ListDataSets)
|
|
2363
2471
|
.build() {
|
|
2364
2472
|
}
|
|
2365
2473
|
|
|
@@ -2367,16 +2475,11 @@ class ListDeploymentsCommand extends smithyClient.Command
|
|
|
2367
2475
|
.classBuilder()
|
|
2368
2476
|
.ep(commonParams)
|
|
2369
2477
|
.m(function (Command, cs, config, o) {
|
|
2370
|
-
return [
|
|
2371
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2372
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2373
|
-
];
|
|
2478
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2374
2479
|
})
|
|
2375
2480
|
.s("AwsSupernovaControlPlaneService", "ListDeployments", {})
|
|
2376
2481
|
.n("M2Client", "ListDeploymentsCommand")
|
|
2377
|
-
.
|
|
2378
|
-
.ser(se_ListDeploymentsCommand)
|
|
2379
|
-
.de(de_ListDeploymentsCommand)
|
|
2482
|
+
.sc(ListDeployments)
|
|
2380
2483
|
.build() {
|
|
2381
2484
|
}
|
|
2382
2485
|
|
|
@@ -2384,16 +2487,11 @@ class ListEngineVersionsCommand extends smithyClient.Command
|
|
|
2384
2487
|
.classBuilder()
|
|
2385
2488
|
.ep(commonParams)
|
|
2386
2489
|
.m(function (Command, cs, config, o) {
|
|
2387
|
-
return [
|
|
2388
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2389
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2390
|
-
];
|
|
2490
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2391
2491
|
})
|
|
2392
2492
|
.s("AwsSupernovaControlPlaneService", "ListEngineVersions", {})
|
|
2393
2493
|
.n("M2Client", "ListEngineVersionsCommand")
|
|
2394
|
-
.
|
|
2395
|
-
.ser(se_ListEngineVersionsCommand)
|
|
2396
|
-
.de(de_ListEngineVersionsCommand)
|
|
2494
|
+
.sc(ListEngineVersions)
|
|
2397
2495
|
.build() {
|
|
2398
2496
|
}
|
|
2399
2497
|
|
|
@@ -2401,16 +2499,11 @@ class ListEnvironmentsCommand extends smithyClient.Command
|
|
|
2401
2499
|
.classBuilder()
|
|
2402
2500
|
.ep(commonParams)
|
|
2403
2501
|
.m(function (Command, cs, config, o) {
|
|
2404
|
-
return [
|
|
2405
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2406
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2407
|
-
];
|
|
2502
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2408
2503
|
})
|
|
2409
2504
|
.s("AwsSupernovaControlPlaneService", "ListEnvironments", {})
|
|
2410
2505
|
.n("M2Client", "ListEnvironmentsCommand")
|
|
2411
|
-
.
|
|
2412
|
-
.ser(se_ListEnvironmentsCommand)
|
|
2413
|
-
.de(de_ListEnvironmentsCommand)
|
|
2506
|
+
.sc(ListEnvironments)
|
|
2414
2507
|
.build() {
|
|
2415
2508
|
}
|
|
2416
2509
|
|
|
@@ -2418,16 +2511,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
2418
2511
|
.classBuilder()
|
|
2419
2512
|
.ep(commonParams)
|
|
2420
2513
|
.m(function (Command, cs, config, o) {
|
|
2421
|
-
return [
|
|
2422
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2423
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2424
|
-
];
|
|
2514
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2425
2515
|
})
|
|
2426
2516
|
.s("AwsSupernovaControlPlaneService", "ListTagsForResource", {})
|
|
2427
2517
|
.n("M2Client", "ListTagsForResourceCommand")
|
|
2428
|
-
.
|
|
2429
|
-
.ser(se_ListTagsForResourceCommand)
|
|
2430
|
-
.de(de_ListTagsForResourceCommand)
|
|
2518
|
+
.sc(ListTagsForResource)
|
|
2431
2519
|
.build() {
|
|
2432
2520
|
}
|
|
2433
2521
|
|
|
@@ -2435,16 +2523,11 @@ class StartApplicationCommand extends smithyClient.Command
|
|
|
2435
2523
|
.classBuilder()
|
|
2436
2524
|
.ep(commonParams)
|
|
2437
2525
|
.m(function (Command, cs, config, o) {
|
|
2438
|
-
return [
|
|
2439
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2440
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2441
|
-
];
|
|
2526
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2442
2527
|
})
|
|
2443
2528
|
.s("AwsSupernovaControlPlaneService", "StartApplication", {})
|
|
2444
2529
|
.n("M2Client", "StartApplicationCommand")
|
|
2445
|
-
.
|
|
2446
|
-
.ser(se_StartApplicationCommand)
|
|
2447
|
-
.de(de_StartApplicationCommand)
|
|
2530
|
+
.sc(StartApplication)
|
|
2448
2531
|
.build() {
|
|
2449
2532
|
}
|
|
2450
2533
|
|
|
@@ -2452,16 +2535,11 @@ class StartBatchJobCommand extends smithyClient.Command
|
|
|
2452
2535
|
.classBuilder()
|
|
2453
2536
|
.ep(commonParams)
|
|
2454
2537
|
.m(function (Command, cs, config, o) {
|
|
2455
|
-
return [
|
|
2456
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2457
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2458
|
-
];
|
|
2538
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2459
2539
|
})
|
|
2460
2540
|
.s("AwsSupernovaControlPlaneService", "StartBatchJob", {})
|
|
2461
2541
|
.n("M2Client", "StartBatchJobCommand")
|
|
2462
|
-
.
|
|
2463
|
-
.ser(se_StartBatchJobCommand)
|
|
2464
|
-
.de(de_StartBatchJobCommand)
|
|
2542
|
+
.sc(StartBatchJob)
|
|
2465
2543
|
.build() {
|
|
2466
2544
|
}
|
|
2467
2545
|
|
|
@@ -2469,16 +2547,11 @@ class StopApplicationCommand extends smithyClient.Command
|
|
|
2469
2547
|
.classBuilder()
|
|
2470
2548
|
.ep(commonParams)
|
|
2471
2549
|
.m(function (Command, cs, config, o) {
|
|
2472
|
-
return [
|
|
2473
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2474
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2475
|
-
];
|
|
2550
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2476
2551
|
})
|
|
2477
2552
|
.s("AwsSupernovaControlPlaneService", "StopApplication", {})
|
|
2478
2553
|
.n("M2Client", "StopApplicationCommand")
|
|
2479
|
-
.
|
|
2480
|
-
.ser(se_StopApplicationCommand)
|
|
2481
|
-
.de(de_StopApplicationCommand)
|
|
2554
|
+
.sc(StopApplication)
|
|
2482
2555
|
.build() {
|
|
2483
2556
|
}
|
|
2484
2557
|
|
|
@@ -2486,16 +2559,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
2486
2559
|
.classBuilder()
|
|
2487
2560
|
.ep(commonParams)
|
|
2488
2561
|
.m(function (Command, cs, config, o) {
|
|
2489
|
-
return [
|
|
2490
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2491
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2492
|
-
];
|
|
2562
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2493
2563
|
})
|
|
2494
2564
|
.s("AwsSupernovaControlPlaneService", "TagResource", {})
|
|
2495
2565
|
.n("M2Client", "TagResourceCommand")
|
|
2496
|
-
.
|
|
2497
|
-
.ser(se_TagResourceCommand)
|
|
2498
|
-
.de(de_TagResourceCommand)
|
|
2566
|
+
.sc(TagResource)
|
|
2499
2567
|
.build() {
|
|
2500
2568
|
}
|
|
2501
2569
|
|
|
@@ -2503,16 +2571,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2503
2571
|
.classBuilder()
|
|
2504
2572
|
.ep(commonParams)
|
|
2505
2573
|
.m(function (Command, cs, config, o) {
|
|
2506
|
-
return [
|
|
2507
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2508
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2509
|
-
];
|
|
2574
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2510
2575
|
})
|
|
2511
2576
|
.s("AwsSupernovaControlPlaneService", "UntagResource", {})
|
|
2512
2577
|
.n("M2Client", "UntagResourceCommand")
|
|
2513
|
-
.
|
|
2514
|
-
.ser(se_UntagResourceCommand)
|
|
2515
|
-
.de(de_UntagResourceCommand)
|
|
2578
|
+
.sc(UntagResource)
|
|
2516
2579
|
.build() {
|
|
2517
2580
|
}
|
|
2518
2581
|
|
|
@@ -2520,16 +2583,11 @@ class UpdateApplicationCommand extends smithyClient.Command
|
|
|
2520
2583
|
.classBuilder()
|
|
2521
2584
|
.ep(commonParams)
|
|
2522
2585
|
.m(function (Command, cs, config, o) {
|
|
2523
|
-
return [
|
|
2524
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2525
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2526
|
-
];
|
|
2586
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2527
2587
|
})
|
|
2528
2588
|
.s("AwsSupernovaControlPlaneService", "UpdateApplication", {})
|
|
2529
2589
|
.n("M2Client", "UpdateApplicationCommand")
|
|
2530
|
-
.
|
|
2531
|
-
.ser(se_UpdateApplicationCommand)
|
|
2532
|
-
.de(de_UpdateApplicationCommand)
|
|
2590
|
+
.sc(UpdateApplication)
|
|
2533
2591
|
.build() {
|
|
2534
2592
|
}
|
|
2535
2593
|
|
|
@@ -2537,16 +2595,11 @@ class UpdateEnvironmentCommand extends smithyClient.Command
|
|
|
2537
2595
|
.classBuilder()
|
|
2538
2596
|
.ep(commonParams)
|
|
2539
2597
|
.m(function (Command, cs, config, o) {
|
|
2540
|
-
return [
|
|
2541
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2542
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2543
|
-
];
|
|
2598
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2544
2599
|
})
|
|
2545
2600
|
.s("AwsSupernovaControlPlaneService", "UpdateEnvironment", {})
|
|
2546
2601
|
.n("M2Client", "UpdateEnvironmentCommand")
|
|
2547
|
-
.
|
|
2548
|
-
.ser(se_UpdateEnvironmentCommand)
|
|
2549
|
-
.de(de_UpdateEnvironmentCommand)
|
|
2602
|
+
.sc(UpdateEnvironment)
|
|
2550
2603
|
.build() {
|
|
2551
2604
|
}
|
|
2552
2605
|
|
|
@@ -2621,14 +2674,14 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2621
2674
|
enumerable: true,
|
|
2622
2675
|
get: function () { return smithyClient.Client; }
|
|
2623
2676
|
});
|
|
2624
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
2677
|
+
exports.AccessDeniedException = AccessDeniedException$1;
|
|
2625
2678
|
exports.ApplicationDeploymentLifecycle = ApplicationDeploymentLifecycle;
|
|
2626
2679
|
exports.ApplicationLifecycle = ApplicationLifecycle;
|
|
2627
2680
|
exports.ApplicationVersionLifecycle = ApplicationVersionLifecycle;
|
|
2628
2681
|
exports.BatchJobExecutionStatus = BatchJobExecutionStatus;
|
|
2629
2682
|
exports.BatchJobType = BatchJobType;
|
|
2630
2683
|
exports.CancelBatchJobExecutionCommand = CancelBatchJobExecutionCommand;
|
|
2631
|
-
exports.ConflictException = ConflictException;
|
|
2684
|
+
exports.ConflictException = ConflictException$1;
|
|
2632
2685
|
exports.CreateApplicationCommand = CreateApplicationCommand;
|
|
2633
2686
|
exports.CreateDataSetExportTaskCommand = CreateDataSetExportTaskCommand;
|
|
2634
2687
|
exports.CreateDataSetImportTaskCommand = CreateDataSetImportTaskCommand;
|
|
@@ -2641,7 +2694,7 @@ exports.DeleteEnvironmentCommand = DeleteEnvironmentCommand;
|
|
|
2641
2694
|
exports.DeploymentLifecycle = DeploymentLifecycle;
|
|
2642
2695
|
exports.EngineType = EngineType;
|
|
2643
2696
|
exports.EnvironmentLifecycle = EnvironmentLifecycle;
|
|
2644
|
-
exports.ExecutionTimeoutException = ExecutionTimeoutException;
|
|
2697
|
+
exports.ExecutionTimeoutException = ExecutionTimeoutException$1;
|
|
2645
2698
|
exports.GetApplicationCommand = GetApplicationCommand;
|
|
2646
2699
|
exports.GetApplicationVersionCommand = GetApplicationVersionCommand;
|
|
2647
2700
|
exports.GetBatchJobExecutionCommand = GetBatchJobExecutionCommand;
|
|
@@ -2651,7 +2704,7 @@ exports.GetDataSetImportTaskCommand = GetDataSetImportTaskCommand;
|
|
|
2651
2704
|
exports.GetDeploymentCommand = GetDeploymentCommand;
|
|
2652
2705
|
exports.GetEnvironmentCommand = GetEnvironmentCommand;
|
|
2653
2706
|
exports.GetSignedBluinsightsUrlCommand = GetSignedBluinsightsUrlCommand;
|
|
2654
|
-
exports.InternalServerException = InternalServerException;
|
|
2707
|
+
exports.InternalServerException = InternalServerException$1;
|
|
2655
2708
|
exports.ListApplicationVersionsCommand = ListApplicationVersionsCommand;
|
|
2656
2709
|
exports.ListApplicationsCommand = ListApplicationsCommand;
|
|
2657
2710
|
exports.ListBatchJobDefinitionsCommand = ListBatchJobDefinitionsCommand;
|
|
@@ -2666,20 +2719,20 @@ exports.ListEnvironmentsCommand = ListEnvironmentsCommand;
|
|
|
2666
2719
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2667
2720
|
exports.M2 = M2;
|
|
2668
2721
|
exports.M2Client = M2Client;
|
|
2669
|
-
exports.M2ServiceException = M2ServiceException;
|
|
2722
|
+
exports.M2ServiceException = M2ServiceException$1;
|
|
2670
2723
|
exports.NetworkType = NetworkType;
|
|
2671
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2672
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2673
|
-
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
2724
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
2725
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
2726
|
+
exports.ServiceUnavailableException = ServiceUnavailableException$1;
|
|
2674
2727
|
exports.StartApplicationCommand = StartApplicationCommand;
|
|
2675
2728
|
exports.StartBatchJobCommand = StartBatchJobCommand;
|
|
2676
2729
|
exports.StopApplicationCommand = StopApplicationCommand;
|
|
2677
2730
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2678
|
-
exports.ThrottlingException = ThrottlingException;
|
|
2731
|
+
exports.ThrottlingException = ThrottlingException$1;
|
|
2679
2732
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2680
2733
|
exports.UpdateApplicationCommand = UpdateApplicationCommand;
|
|
2681
2734
|
exports.UpdateEnvironmentCommand = UpdateEnvironmentCommand;
|
|
2682
|
-
exports.ValidationException = ValidationException;
|
|
2735
|
+
exports.ValidationException = ValidationException$1;
|
|
2683
2736
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
2684
2737
|
exports.paginateListApplicationVersions = paginateListApplicationVersions;
|
|
2685
2738
|
exports.paginateListApplications = paginateListApplications;
|