@aws-sdk/client-ssm-sap 3.928.0 → 3.929.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 +940 -1243
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/SsmSapClient.js +2 -0
- package/dist-es/commands/DeleteResourcePermissionCommand.js +3 -9
- package/dist-es/commands/DeregisterApplicationCommand.js +3 -9
- package/dist-es/commands/GetApplicationCommand.js +3 -9
- package/dist-es/commands/GetComponentCommand.js +3 -9
- package/dist-es/commands/GetConfigurationCheckOperationCommand.js +3 -9
- package/dist-es/commands/GetDatabaseCommand.js +3 -10
- package/dist-es/commands/GetOperationCommand.js +3 -9
- package/dist-es/commands/GetResourcePermissionCommand.js +3 -9
- package/dist-es/commands/ListApplicationsCommand.js +3 -9
- package/dist-es/commands/ListComponentsCommand.js +3 -9
- package/dist-es/commands/ListConfigurationCheckDefinitionsCommand.js +3 -9
- package/dist-es/commands/ListConfigurationCheckOperationsCommand.js +3 -9
- package/dist-es/commands/ListDatabasesCommand.js +3 -9
- package/dist-es/commands/ListOperationEventsCommand.js +3 -9
- package/dist-es/commands/ListOperationsCommand.js +3 -9
- package/dist-es/commands/ListSubCheckResultsCommand.js +3 -9
- package/dist-es/commands/ListSubCheckRuleResultsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/PutResourcePermissionCommand.js +3 -9
- package/dist-es/commands/RegisterApplicationCommand.js +3 -10
- package/dist-es/commands/StartApplicationCommand.js +3 -9
- package/dist-es/commands/StartApplicationRefreshCommand.js +3 -9
- package/dist-es/commands/StartConfigurationChecksCommand.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/UpdateApplicationSettingsCommand.js +3 -10
- package/dist-es/models/models_0.js +0 -26
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +883 -0
- package/dist-types/SsmSapClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -20
- 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 +140 -0
- package/dist-types/ts3.4/SsmSapClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -13
- 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 +147 -0
- package/package.json +2 -2
- package/dist-es/protocols/Aws_restJson1.js +0 -1011
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -245
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -329
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,8 +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
18
|
|
|
20
19
|
const resolveClientEndpointParameters = (options) => {
|
|
21
20
|
return Object.assign(options, {
|
|
@@ -91,6 +90,7 @@ class SsmSapClient extends smithyClient.Client {
|
|
|
91
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
92
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
93
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
94
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
95
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
96
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -110,12 +110,12 @@ class SsmSapClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
class SsmSapServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let SsmSapServiceException$1 = class SsmSapServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, SsmSapServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
};
|
|
119
119
|
|
|
120
120
|
const AllocationType = {
|
|
121
121
|
ELASTIC_IP: "ELASTIC_IP",
|
|
@@ -214,7 +214,7 @@ const ConfigurationCheckOperationListingMode = {
|
|
|
214
214
|
ALL_OPERATIONS: "ALL_OPERATIONS",
|
|
215
215
|
LATEST_PER_CHECK: "LATEST_PER_CHECK",
|
|
216
216
|
};
|
|
217
|
-
class ConflictException extends SsmSapServiceException {
|
|
217
|
+
let ConflictException$1 = class ConflictException extends SsmSapServiceException$1 {
|
|
218
218
|
name = "ConflictException";
|
|
219
219
|
$fault = "client";
|
|
220
220
|
Message;
|
|
@@ -227,7 +227,7 @@ class ConflictException extends SsmSapServiceException {
|
|
|
227
227
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
228
228
|
this.Message = opts.Message;
|
|
229
229
|
}
|
|
230
|
-
}
|
|
230
|
+
};
|
|
231
231
|
const ConnectedEntityType = {
|
|
232
232
|
DBMS: "DBMS",
|
|
233
233
|
};
|
|
@@ -246,7 +246,7 @@ const DatabaseStatus = {
|
|
|
246
246
|
const PermissionActionType = {
|
|
247
247
|
RESTORE: "RESTORE",
|
|
248
248
|
};
|
|
249
|
-
class InternalServerException extends SsmSapServiceException {
|
|
249
|
+
let InternalServerException$1 = class InternalServerException extends SsmSapServiceException$1 {
|
|
250
250
|
name = "InternalServerException";
|
|
251
251
|
$fault = "server";
|
|
252
252
|
Message;
|
|
@@ -259,8 +259,8 @@ class InternalServerException extends SsmSapServiceException {
|
|
|
259
259
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
260
260
|
this.Message = opts.Message;
|
|
261
261
|
}
|
|
262
|
-
}
|
|
263
|
-
class ResourceNotFoundException extends SsmSapServiceException {
|
|
262
|
+
};
|
|
263
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends SsmSapServiceException$1 {
|
|
264
264
|
name = "ResourceNotFoundException";
|
|
265
265
|
$fault = "client";
|
|
266
266
|
Message;
|
|
@@ -273,8 +273,8 @@ class ResourceNotFoundException extends SsmSapServiceException {
|
|
|
273
273
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
274
274
|
this.Message = opts.Message;
|
|
275
275
|
}
|
|
276
|
-
}
|
|
277
|
-
class ValidationException extends SsmSapServiceException {
|
|
276
|
+
};
|
|
277
|
+
let ValidationException$1 = class ValidationException extends SsmSapServiceException$1 {
|
|
278
278
|
name = "ValidationException";
|
|
279
279
|
$fault = "client";
|
|
280
280
|
Message;
|
|
@@ -287,8 +287,8 @@ class ValidationException extends SsmSapServiceException {
|
|
|
287
287
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
288
288
|
this.Message = opts.Message;
|
|
289
289
|
}
|
|
290
|
-
}
|
|
291
|
-
class UnauthorizedException extends SsmSapServiceException {
|
|
290
|
+
};
|
|
291
|
+
let UnauthorizedException$1 = class UnauthorizedException extends SsmSapServiceException$1 {
|
|
292
292
|
name = "UnauthorizedException";
|
|
293
293
|
$fault = "client";
|
|
294
294
|
Message;
|
|
@@ -301,7 +301,7 @@ class UnauthorizedException extends SsmSapServiceException {
|
|
|
301
301
|
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
302
302
|
this.Message = opts.Message;
|
|
303
303
|
}
|
|
304
|
-
}
|
|
304
|
+
};
|
|
305
305
|
const FilterOperator = {
|
|
306
306
|
EQUALS: "Equals",
|
|
307
307
|
GREATER_THAN_OR_EQUALS: "GreaterThanOrEquals",
|
|
@@ -319,1052 +319,884 @@ const RuleResultStatus = {
|
|
|
319
319
|
UNKNOWN: "UNKNOWN",
|
|
320
320
|
WARNING: "WARNING",
|
|
321
321
|
};
|
|
322
|
-
const ApplicationCredentialFilterSensitiveLog = (obj) => ({
|
|
323
|
-
...obj,
|
|
324
|
-
...(obj.SecretId && { SecretId: smithyClient.SENSITIVE_STRING }),
|
|
325
|
-
});
|
|
326
|
-
const DatabaseFilterSensitiveLog = (obj) => ({
|
|
327
|
-
...obj,
|
|
328
|
-
...(obj.Credentials && { Credentials: obj.Credentials.map((item) => ApplicationCredentialFilterSensitiveLog(item)) }),
|
|
329
|
-
});
|
|
330
|
-
const GetDatabaseOutputFilterSensitiveLog = (obj) => ({
|
|
331
|
-
...obj,
|
|
332
|
-
...(obj.Database && { Database: DatabaseFilterSensitiveLog(obj.Database) }),
|
|
333
|
-
});
|
|
334
|
-
const RegisterApplicationInputFilterSensitiveLog = (obj) => ({
|
|
335
|
-
...obj,
|
|
336
|
-
...(obj.Credentials && { Credentials: obj.Credentials.map((item) => ApplicationCredentialFilterSensitiveLog(item)) }),
|
|
337
|
-
});
|
|
338
|
-
const UpdateApplicationSettingsInputFilterSensitiveLog = (obj) => ({
|
|
339
|
-
...obj,
|
|
340
|
-
...(obj.CredentialsToAddOrUpdate && {
|
|
341
|
-
CredentialsToAddOrUpdate: obj.CredentialsToAddOrUpdate.map((item) => ApplicationCredentialFilterSensitiveLog(item)),
|
|
342
|
-
}),
|
|
343
|
-
...(obj.CredentialsToRemove && {
|
|
344
|
-
CredentialsToRemove: obj.CredentialsToRemove.map((item) => ApplicationCredentialFilterSensitiveLog(item)),
|
|
345
|
-
}),
|
|
346
|
-
});
|
|
347
322
|
|
|
348
|
-
const
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
const
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
const
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
const
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
const
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
const
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
const
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
const
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
const
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
const
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
const
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
const
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
const
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
const
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
const
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
const
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
const
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
};
|
|
590
|
-
b.bp("/list-sub-check-rule-results");
|
|
591
|
-
let body;
|
|
592
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
593
|
-
MaxResults: [],
|
|
594
|
-
NextToken: [],
|
|
595
|
-
SubCheckResultId: [],
|
|
596
|
-
}));
|
|
597
|
-
b.m("POST").h(headers).b(body);
|
|
598
|
-
return b.build();
|
|
599
|
-
};
|
|
600
|
-
const se_ListTagsForResourceCommand = async (input, context) => {
|
|
601
|
-
const b = core.requestBuilder(input, context);
|
|
602
|
-
const headers = {};
|
|
603
|
-
b.bp("/tags/{resourceArn}");
|
|
604
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
605
|
-
let body;
|
|
606
|
-
b.m("GET").h(headers).b(body);
|
|
607
|
-
return b.build();
|
|
608
|
-
};
|
|
609
|
-
const se_PutResourcePermissionCommand = async (input, context) => {
|
|
610
|
-
const b = core.requestBuilder(input, context);
|
|
611
|
-
const headers = {
|
|
612
|
-
"content-type": "application/json",
|
|
613
|
-
};
|
|
614
|
-
b.bp("/put-resource-permission");
|
|
615
|
-
let body;
|
|
616
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
617
|
-
ActionType: [],
|
|
618
|
-
ResourceArn: [],
|
|
619
|
-
SourceResourceArn: [],
|
|
620
|
-
}));
|
|
621
|
-
b.m("POST").h(headers).b(body);
|
|
622
|
-
return b.build();
|
|
623
|
-
};
|
|
624
|
-
const se_RegisterApplicationCommand = async (input, context) => {
|
|
625
|
-
const b = core.requestBuilder(input, context);
|
|
626
|
-
const headers = {
|
|
627
|
-
"content-type": "application/json",
|
|
628
|
-
};
|
|
629
|
-
b.bp("/register-application");
|
|
630
|
-
let body;
|
|
631
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
632
|
-
ApplicationId: [],
|
|
633
|
-
ApplicationType: [],
|
|
634
|
-
ComponentsInfo: (_) => smithyClient._json(_),
|
|
635
|
-
Credentials: (_) => smithyClient._json(_),
|
|
636
|
-
DatabaseArn: [],
|
|
637
|
-
Instances: (_) => smithyClient._json(_),
|
|
638
|
-
SapInstanceNumber: [],
|
|
639
|
-
Sid: [],
|
|
640
|
-
Tags: (_) => smithyClient._json(_),
|
|
641
|
-
}));
|
|
642
|
-
b.m("POST").h(headers).b(body);
|
|
643
|
-
return b.build();
|
|
644
|
-
};
|
|
645
|
-
const se_StartApplicationCommand = async (input, context) => {
|
|
646
|
-
const b = core.requestBuilder(input, context);
|
|
647
|
-
const headers = {
|
|
648
|
-
"content-type": "application/json",
|
|
649
|
-
};
|
|
650
|
-
b.bp("/start-application");
|
|
651
|
-
let body;
|
|
652
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
653
|
-
ApplicationId: [],
|
|
654
|
-
}));
|
|
655
|
-
b.m("POST").h(headers).b(body);
|
|
656
|
-
return b.build();
|
|
657
|
-
};
|
|
658
|
-
const se_StartApplicationRefreshCommand = async (input, context) => {
|
|
659
|
-
const b = core.requestBuilder(input, context);
|
|
660
|
-
const headers = {
|
|
661
|
-
"content-type": "application/json",
|
|
662
|
-
};
|
|
663
|
-
b.bp("/start-application-refresh");
|
|
664
|
-
let body;
|
|
665
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
666
|
-
ApplicationId: [],
|
|
667
|
-
}));
|
|
668
|
-
b.m("POST").h(headers).b(body);
|
|
669
|
-
return b.build();
|
|
670
|
-
};
|
|
671
|
-
const se_StartConfigurationChecksCommand = async (input, context) => {
|
|
672
|
-
const b = core.requestBuilder(input, context);
|
|
673
|
-
const headers = {
|
|
674
|
-
"content-type": "application/json",
|
|
675
|
-
};
|
|
676
|
-
b.bp("/start-configuration-checks");
|
|
677
|
-
let body;
|
|
678
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
679
|
-
ApplicationId: [],
|
|
680
|
-
ConfigurationCheckIds: (_) => smithyClient._json(_),
|
|
681
|
-
}));
|
|
682
|
-
b.m("POST").h(headers).b(body);
|
|
683
|
-
return b.build();
|
|
684
|
-
};
|
|
685
|
-
const se_StopApplicationCommand = async (input, context) => {
|
|
686
|
-
const b = core.requestBuilder(input, context);
|
|
687
|
-
const headers = {
|
|
688
|
-
"content-type": "application/json",
|
|
689
|
-
};
|
|
690
|
-
b.bp("/stop-application");
|
|
691
|
-
let body;
|
|
692
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
693
|
-
ApplicationId: [],
|
|
694
|
-
IncludeEc2InstanceShutdown: [],
|
|
695
|
-
StopConnectedEntity: [],
|
|
696
|
-
}));
|
|
697
|
-
b.m("POST").h(headers).b(body);
|
|
698
|
-
return b.build();
|
|
699
|
-
};
|
|
700
|
-
const se_TagResourceCommand = async (input, context) => {
|
|
701
|
-
const b = core.requestBuilder(input, context);
|
|
702
|
-
const headers = {
|
|
703
|
-
"content-type": "application/json",
|
|
704
|
-
};
|
|
705
|
-
b.bp("/tags/{resourceArn}");
|
|
706
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
707
|
-
let body;
|
|
708
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
709
|
-
tags: (_) => smithyClient._json(_),
|
|
710
|
-
}));
|
|
711
|
-
b.m("POST").h(headers).b(body);
|
|
712
|
-
return b.build();
|
|
713
|
-
};
|
|
714
|
-
const se_UntagResourceCommand = async (input, context) => {
|
|
715
|
-
const b = core.requestBuilder(input, context);
|
|
716
|
-
const headers = {};
|
|
717
|
-
b.bp("/tags/{resourceArn}");
|
|
718
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
719
|
-
const query = smithyClient.map({
|
|
720
|
-
[_tK]: [smithyClient.expectNonNull(input.tagKeys, `tagKeys`) != null, () => input[_tK] || []],
|
|
721
|
-
});
|
|
722
|
-
let body;
|
|
723
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
724
|
-
return b.build();
|
|
725
|
-
};
|
|
726
|
-
const se_UpdateApplicationSettingsCommand = async (input, context) => {
|
|
727
|
-
const b = core.requestBuilder(input, context);
|
|
728
|
-
const headers = {
|
|
729
|
-
"content-type": "application/json",
|
|
730
|
-
};
|
|
731
|
-
b.bp("/update-application-settings");
|
|
732
|
-
let body;
|
|
733
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
734
|
-
ApplicationId: [],
|
|
735
|
-
Backint: (_) => smithyClient._json(_),
|
|
736
|
-
CredentialsToAddOrUpdate: (_) => smithyClient._json(_),
|
|
737
|
-
CredentialsToRemove: (_) => smithyClient._json(_),
|
|
738
|
-
DatabaseArn: [],
|
|
739
|
-
}));
|
|
740
|
-
b.m("POST").h(headers).b(body);
|
|
741
|
-
return b.build();
|
|
742
|
-
};
|
|
743
|
-
const de_DeleteResourcePermissionCommand = async (output, context) => {
|
|
744
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
745
|
-
return de_CommandError(output, context);
|
|
746
|
-
}
|
|
747
|
-
const contents = smithyClient.map({
|
|
748
|
-
$metadata: deserializeMetadata(output),
|
|
749
|
-
});
|
|
750
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
751
|
-
const doc = smithyClient.take(data, {
|
|
752
|
-
Policy: smithyClient.expectString,
|
|
753
|
-
});
|
|
754
|
-
Object.assign(contents, doc);
|
|
755
|
-
return contents;
|
|
756
|
-
};
|
|
757
|
-
const de_DeregisterApplicationCommand = async (output, context) => {
|
|
758
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
759
|
-
return de_CommandError(output, context);
|
|
760
|
-
}
|
|
761
|
-
const contents = smithyClient.map({
|
|
762
|
-
$metadata: deserializeMetadata(output),
|
|
763
|
-
});
|
|
764
|
-
await smithyClient.collectBody(output.body, context);
|
|
765
|
-
return contents;
|
|
766
|
-
};
|
|
767
|
-
const de_GetApplicationCommand = async (output, context) => {
|
|
768
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
769
|
-
return de_CommandError(output, context);
|
|
770
|
-
}
|
|
771
|
-
const contents = smithyClient.map({
|
|
772
|
-
$metadata: deserializeMetadata(output),
|
|
773
|
-
});
|
|
774
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
775
|
-
const doc = smithyClient.take(data, {
|
|
776
|
-
Application: (_) => de_Application(_),
|
|
777
|
-
Tags: smithyClient._json,
|
|
778
|
-
});
|
|
779
|
-
Object.assign(contents, doc);
|
|
780
|
-
return contents;
|
|
781
|
-
};
|
|
782
|
-
const de_GetComponentCommand = async (output, context) => {
|
|
783
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
784
|
-
return de_CommandError(output, context);
|
|
785
|
-
}
|
|
786
|
-
const contents = smithyClient.map({
|
|
787
|
-
$metadata: deserializeMetadata(output),
|
|
788
|
-
});
|
|
789
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
790
|
-
const doc = smithyClient.take(data, {
|
|
791
|
-
Component: (_) => de_Component(_),
|
|
792
|
-
Tags: smithyClient._json,
|
|
793
|
-
});
|
|
794
|
-
Object.assign(contents, doc);
|
|
795
|
-
return contents;
|
|
796
|
-
};
|
|
797
|
-
const de_GetConfigurationCheckOperationCommand = async (output, context) => {
|
|
798
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
799
|
-
return de_CommandError(output, context);
|
|
800
|
-
}
|
|
801
|
-
const contents = smithyClient.map({
|
|
802
|
-
$metadata: deserializeMetadata(output),
|
|
803
|
-
});
|
|
804
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
805
|
-
const doc = smithyClient.take(data, {
|
|
806
|
-
ConfigurationCheckOperation: (_) => de_ConfigurationCheckOperation(_),
|
|
807
|
-
});
|
|
808
|
-
Object.assign(contents, doc);
|
|
809
|
-
return contents;
|
|
810
|
-
};
|
|
811
|
-
const de_GetDatabaseCommand = async (output, context) => {
|
|
812
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
813
|
-
return de_CommandError(output, context);
|
|
814
|
-
}
|
|
815
|
-
const contents = smithyClient.map({
|
|
816
|
-
$metadata: deserializeMetadata(output),
|
|
817
|
-
});
|
|
818
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
819
|
-
const doc = smithyClient.take(data, {
|
|
820
|
-
Database: (_) => de_Database(_),
|
|
821
|
-
Tags: smithyClient._json,
|
|
822
|
-
});
|
|
823
|
-
Object.assign(contents, doc);
|
|
824
|
-
return contents;
|
|
825
|
-
};
|
|
826
|
-
const de_GetOperationCommand = async (output, context) => {
|
|
827
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
828
|
-
return de_CommandError(output, context);
|
|
829
|
-
}
|
|
830
|
-
const contents = smithyClient.map({
|
|
831
|
-
$metadata: deserializeMetadata(output),
|
|
832
|
-
});
|
|
833
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
834
|
-
const doc = smithyClient.take(data, {
|
|
835
|
-
Operation: (_) => de_Operation(_),
|
|
836
|
-
});
|
|
837
|
-
Object.assign(contents, doc);
|
|
838
|
-
return contents;
|
|
839
|
-
};
|
|
840
|
-
const de_GetResourcePermissionCommand = async (output, context) => {
|
|
841
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
842
|
-
return de_CommandError(output, context);
|
|
843
|
-
}
|
|
844
|
-
const contents = smithyClient.map({
|
|
845
|
-
$metadata: deserializeMetadata(output),
|
|
846
|
-
});
|
|
847
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
848
|
-
const doc = smithyClient.take(data, {
|
|
849
|
-
Policy: smithyClient.expectString,
|
|
850
|
-
});
|
|
851
|
-
Object.assign(contents, doc);
|
|
852
|
-
return contents;
|
|
853
|
-
};
|
|
854
|
-
const de_ListApplicationsCommand = async (output, context) => {
|
|
855
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
856
|
-
return de_CommandError(output, context);
|
|
857
|
-
}
|
|
858
|
-
const contents = smithyClient.map({
|
|
859
|
-
$metadata: deserializeMetadata(output),
|
|
860
|
-
});
|
|
861
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
862
|
-
const doc = smithyClient.take(data, {
|
|
863
|
-
Applications: smithyClient._json,
|
|
864
|
-
NextToken: smithyClient.expectString,
|
|
865
|
-
});
|
|
866
|
-
Object.assign(contents, doc);
|
|
867
|
-
return contents;
|
|
868
|
-
};
|
|
869
|
-
const de_ListComponentsCommand = async (output, context) => {
|
|
870
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
871
|
-
return de_CommandError(output, context);
|
|
872
|
-
}
|
|
873
|
-
const contents = smithyClient.map({
|
|
874
|
-
$metadata: deserializeMetadata(output),
|
|
875
|
-
});
|
|
876
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
877
|
-
const doc = smithyClient.take(data, {
|
|
878
|
-
Components: smithyClient._json,
|
|
879
|
-
NextToken: smithyClient.expectString,
|
|
880
|
-
});
|
|
881
|
-
Object.assign(contents, doc);
|
|
882
|
-
return contents;
|
|
883
|
-
};
|
|
884
|
-
const de_ListConfigurationCheckDefinitionsCommand = async (output, context) => {
|
|
885
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
886
|
-
return de_CommandError(output, context);
|
|
887
|
-
}
|
|
888
|
-
const contents = smithyClient.map({
|
|
889
|
-
$metadata: deserializeMetadata(output),
|
|
890
|
-
});
|
|
891
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
892
|
-
const doc = smithyClient.take(data, {
|
|
893
|
-
ConfigurationChecks: smithyClient._json,
|
|
894
|
-
NextToken: smithyClient.expectString,
|
|
895
|
-
});
|
|
896
|
-
Object.assign(contents, doc);
|
|
897
|
-
return contents;
|
|
898
|
-
};
|
|
899
|
-
const de_ListConfigurationCheckOperationsCommand = async (output, context) => {
|
|
900
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
901
|
-
return de_CommandError(output, context);
|
|
902
|
-
}
|
|
903
|
-
const contents = smithyClient.map({
|
|
904
|
-
$metadata: deserializeMetadata(output),
|
|
905
|
-
});
|
|
906
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
907
|
-
const doc = smithyClient.take(data, {
|
|
908
|
-
ConfigurationCheckOperations: (_) => de_ConfigurationCheckOperationList(_),
|
|
909
|
-
NextToken: smithyClient.expectString,
|
|
910
|
-
});
|
|
911
|
-
Object.assign(contents, doc);
|
|
912
|
-
return contents;
|
|
913
|
-
};
|
|
914
|
-
const de_ListDatabasesCommand = async (output, context) => {
|
|
915
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
916
|
-
return de_CommandError(output, context);
|
|
917
|
-
}
|
|
918
|
-
const contents = smithyClient.map({
|
|
919
|
-
$metadata: deserializeMetadata(output),
|
|
920
|
-
});
|
|
921
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
922
|
-
const doc = smithyClient.take(data, {
|
|
923
|
-
Databases: smithyClient._json,
|
|
924
|
-
NextToken: smithyClient.expectString,
|
|
925
|
-
});
|
|
926
|
-
Object.assign(contents, doc);
|
|
927
|
-
return contents;
|
|
928
|
-
};
|
|
929
|
-
const de_ListOperationEventsCommand = async (output, context) => {
|
|
930
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
931
|
-
return de_CommandError(output, context);
|
|
932
|
-
}
|
|
933
|
-
const contents = smithyClient.map({
|
|
934
|
-
$metadata: deserializeMetadata(output),
|
|
935
|
-
});
|
|
936
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
937
|
-
const doc = smithyClient.take(data, {
|
|
938
|
-
NextToken: smithyClient.expectString,
|
|
939
|
-
OperationEvents: (_) => de_OperationEventList(_),
|
|
940
|
-
});
|
|
941
|
-
Object.assign(contents, doc);
|
|
942
|
-
return contents;
|
|
943
|
-
};
|
|
944
|
-
const de_ListOperationsCommand = 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
|
-
NextToken: smithyClient.expectString,
|
|
954
|
-
Operations: (_) => de_OperationList(_),
|
|
955
|
-
});
|
|
956
|
-
Object.assign(contents, doc);
|
|
957
|
-
return contents;
|
|
958
|
-
};
|
|
959
|
-
const de_ListSubCheckResultsCommand = async (output, context) => {
|
|
960
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
961
|
-
return de_CommandError(output, context);
|
|
962
|
-
}
|
|
963
|
-
const contents = smithyClient.map({
|
|
964
|
-
$metadata: deserializeMetadata(output),
|
|
965
|
-
});
|
|
966
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
967
|
-
const doc = smithyClient.take(data, {
|
|
968
|
-
NextToken: smithyClient.expectString,
|
|
969
|
-
SubCheckResults: smithyClient._json,
|
|
970
|
-
});
|
|
971
|
-
Object.assign(contents, doc);
|
|
972
|
-
return contents;
|
|
973
|
-
};
|
|
974
|
-
const de_ListSubCheckRuleResultsCommand = 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
|
-
NextToken: smithyClient.expectString,
|
|
984
|
-
RuleResults: smithyClient._json,
|
|
985
|
-
});
|
|
986
|
-
Object.assign(contents, doc);
|
|
987
|
-
return contents;
|
|
988
|
-
};
|
|
989
|
-
const de_ListTagsForResourceCommand = async (output, context) => {
|
|
990
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
991
|
-
return de_CommandError(output, context);
|
|
992
|
-
}
|
|
993
|
-
const contents = smithyClient.map({
|
|
994
|
-
$metadata: deserializeMetadata(output),
|
|
995
|
-
});
|
|
996
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
997
|
-
const doc = smithyClient.take(data, {
|
|
998
|
-
tags: smithyClient._json,
|
|
999
|
-
});
|
|
1000
|
-
Object.assign(contents, doc);
|
|
1001
|
-
return contents;
|
|
1002
|
-
};
|
|
1003
|
-
const de_PutResourcePermissionCommand = async (output, context) => {
|
|
1004
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1005
|
-
return de_CommandError(output, context);
|
|
1006
|
-
}
|
|
1007
|
-
const contents = smithyClient.map({
|
|
1008
|
-
$metadata: deserializeMetadata(output),
|
|
1009
|
-
});
|
|
1010
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1011
|
-
const doc = smithyClient.take(data, {
|
|
1012
|
-
Policy: smithyClient.expectString,
|
|
1013
|
-
});
|
|
1014
|
-
Object.assign(contents, doc);
|
|
1015
|
-
return contents;
|
|
1016
|
-
};
|
|
1017
|
-
const de_RegisterApplicationCommand = async (output, context) => {
|
|
1018
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1019
|
-
return de_CommandError(output, context);
|
|
1020
|
-
}
|
|
1021
|
-
const contents = smithyClient.map({
|
|
1022
|
-
$metadata: deserializeMetadata(output),
|
|
1023
|
-
});
|
|
1024
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1025
|
-
const doc = smithyClient.take(data, {
|
|
1026
|
-
Application: (_) => de_Application(_),
|
|
1027
|
-
OperationId: smithyClient.expectString,
|
|
1028
|
-
});
|
|
1029
|
-
Object.assign(contents, doc);
|
|
1030
|
-
return contents;
|
|
1031
|
-
};
|
|
1032
|
-
const de_StartApplicationCommand = async (output, context) => {
|
|
1033
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1034
|
-
return de_CommandError(output, context);
|
|
1035
|
-
}
|
|
1036
|
-
const contents = smithyClient.map({
|
|
1037
|
-
$metadata: deserializeMetadata(output),
|
|
1038
|
-
});
|
|
1039
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1040
|
-
const doc = smithyClient.take(data, {
|
|
1041
|
-
OperationId: smithyClient.expectString,
|
|
1042
|
-
});
|
|
1043
|
-
Object.assign(contents, doc);
|
|
1044
|
-
return contents;
|
|
1045
|
-
};
|
|
1046
|
-
const de_StartApplicationRefreshCommand = 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
|
-
OperationId: smithyClient.expectString,
|
|
1056
|
-
});
|
|
1057
|
-
Object.assign(contents, doc);
|
|
1058
|
-
return contents;
|
|
1059
|
-
};
|
|
1060
|
-
const de_StartConfigurationChecksCommand = async (output, context) => {
|
|
1061
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1062
|
-
return de_CommandError(output, context);
|
|
1063
|
-
}
|
|
1064
|
-
const contents = smithyClient.map({
|
|
1065
|
-
$metadata: deserializeMetadata(output),
|
|
1066
|
-
});
|
|
1067
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1068
|
-
const doc = smithyClient.take(data, {
|
|
1069
|
-
ConfigurationCheckOperations: (_) => de_ConfigurationCheckOperationList(_),
|
|
1070
|
-
});
|
|
1071
|
-
Object.assign(contents, doc);
|
|
1072
|
-
return contents;
|
|
1073
|
-
};
|
|
1074
|
-
const de_StopApplicationCommand = async (output, context) => {
|
|
1075
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1076
|
-
return de_CommandError(output, context);
|
|
1077
|
-
}
|
|
1078
|
-
const contents = smithyClient.map({
|
|
1079
|
-
$metadata: deserializeMetadata(output),
|
|
1080
|
-
});
|
|
1081
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1082
|
-
const doc = smithyClient.take(data, {
|
|
1083
|
-
OperationId: smithyClient.expectString,
|
|
1084
|
-
});
|
|
1085
|
-
Object.assign(contents, doc);
|
|
1086
|
-
return contents;
|
|
1087
|
-
};
|
|
1088
|
-
const de_TagResourceCommand = async (output, context) => {
|
|
1089
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1090
|
-
return de_CommandError(output, context);
|
|
1091
|
-
}
|
|
1092
|
-
const contents = smithyClient.map({
|
|
1093
|
-
$metadata: deserializeMetadata(output),
|
|
1094
|
-
});
|
|
1095
|
-
await smithyClient.collectBody(output.body, context);
|
|
1096
|
-
return contents;
|
|
1097
|
-
};
|
|
1098
|
-
const de_UntagResourceCommand = async (output, context) => {
|
|
1099
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1100
|
-
return de_CommandError(output, context);
|
|
1101
|
-
}
|
|
1102
|
-
const contents = smithyClient.map({
|
|
1103
|
-
$metadata: deserializeMetadata(output),
|
|
1104
|
-
});
|
|
1105
|
-
await smithyClient.collectBody(output.body, context);
|
|
1106
|
-
return contents;
|
|
1107
|
-
};
|
|
1108
|
-
const de_UpdateApplicationSettingsCommand = async (output, context) => {
|
|
1109
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1110
|
-
return de_CommandError(output, context);
|
|
1111
|
-
}
|
|
1112
|
-
const contents = smithyClient.map({
|
|
1113
|
-
$metadata: deserializeMetadata(output),
|
|
1114
|
-
});
|
|
1115
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1116
|
-
const doc = smithyClient.take(data, {
|
|
1117
|
-
Message: smithyClient.expectString,
|
|
1118
|
-
OperationIds: smithyClient._json,
|
|
1119
|
-
});
|
|
1120
|
-
Object.assign(contents, doc);
|
|
1121
|
-
return contents;
|
|
1122
|
-
};
|
|
1123
|
-
const de_CommandError = async (output, context) => {
|
|
1124
|
-
const parsedOutput = {
|
|
1125
|
-
...output,
|
|
1126
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
1127
|
-
};
|
|
1128
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1129
|
-
switch (errorCode) {
|
|
1130
|
-
case "InternalServerException":
|
|
1131
|
-
case "com.amazonaws.ssmsap#InternalServerException":
|
|
1132
|
-
throw await de_InternalServerExceptionRes(parsedOutput);
|
|
1133
|
-
case "ResourceNotFoundException":
|
|
1134
|
-
case "com.amazonaws.ssmsap#ResourceNotFoundException":
|
|
1135
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
1136
|
-
case "ValidationException":
|
|
1137
|
-
case "com.amazonaws.ssmsap#ValidationException":
|
|
1138
|
-
throw await de_ValidationExceptionRes(parsedOutput);
|
|
1139
|
-
case "UnauthorizedException":
|
|
1140
|
-
case "com.amazonaws.ssmsap#UnauthorizedException":
|
|
1141
|
-
throw await de_UnauthorizedExceptionRes(parsedOutput);
|
|
1142
|
-
case "ConflictException":
|
|
1143
|
-
case "com.amazonaws.ssmsap#ConflictException":
|
|
1144
|
-
throw await de_ConflictExceptionRes(parsedOutput);
|
|
1145
|
-
default:
|
|
1146
|
-
const parsedBody = parsedOutput.body;
|
|
1147
|
-
return throwDefaultError({
|
|
1148
|
-
output,
|
|
1149
|
-
parsedBody,
|
|
1150
|
-
errorCode,
|
|
1151
|
-
});
|
|
1152
|
-
}
|
|
1153
|
-
};
|
|
1154
|
-
const throwDefaultError = smithyClient.withBaseException(SsmSapServiceException);
|
|
1155
|
-
const de_ConflictExceptionRes = async (parsedOutput, context) => {
|
|
1156
|
-
const contents = smithyClient.map({});
|
|
1157
|
-
const data = parsedOutput.body;
|
|
1158
|
-
const doc = smithyClient.take(data, {
|
|
1159
|
-
Message: smithyClient.expectString,
|
|
1160
|
-
});
|
|
1161
|
-
Object.assign(contents, doc);
|
|
1162
|
-
const exception = new ConflictException({
|
|
1163
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1164
|
-
...contents,
|
|
1165
|
-
});
|
|
1166
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1167
|
-
};
|
|
1168
|
-
const de_InternalServerExceptionRes = async (parsedOutput, context) => {
|
|
1169
|
-
const contents = smithyClient.map({});
|
|
1170
|
-
const data = parsedOutput.body;
|
|
1171
|
-
const doc = smithyClient.take(data, {
|
|
1172
|
-
Message: smithyClient.expectString,
|
|
1173
|
-
});
|
|
1174
|
-
Object.assign(contents, doc);
|
|
1175
|
-
const exception = new InternalServerException({
|
|
1176
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1177
|
-
...contents,
|
|
1178
|
-
});
|
|
1179
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1180
|
-
};
|
|
1181
|
-
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
1182
|
-
const contents = smithyClient.map({});
|
|
1183
|
-
const data = parsedOutput.body;
|
|
1184
|
-
const doc = smithyClient.take(data, {
|
|
1185
|
-
Message: smithyClient.expectString,
|
|
1186
|
-
});
|
|
1187
|
-
Object.assign(contents, doc);
|
|
1188
|
-
const exception = new ResourceNotFoundException({
|
|
1189
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1190
|
-
...contents,
|
|
1191
|
-
});
|
|
1192
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1193
|
-
};
|
|
1194
|
-
const de_UnauthorizedExceptionRes = async (parsedOutput, context) => {
|
|
1195
|
-
const contents = smithyClient.map({});
|
|
1196
|
-
const data = parsedOutput.body;
|
|
1197
|
-
const doc = smithyClient.take(data, {
|
|
1198
|
-
Message: smithyClient.expectString,
|
|
1199
|
-
});
|
|
1200
|
-
Object.assign(contents, doc);
|
|
1201
|
-
const exception = new UnauthorizedException({
|
|
1202
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1203
|
-
...contents,
|
|
1204
|
-
});
|
|
1205
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1206
|
-
};
|
|
1207
|
-
const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
1208
|
-
const contents = smithyClient.map({});
|
|
1209
|
-
const data = parsedOutput.body;
|
|
1210
|
-
const doc = smithyClient.take(data, {
|
|
1211
|
-
Message: smithyClient.expectString,
|
|
1212
|
-
});
|
|
1213
|
-
Object.assign(contents, doc);
|
|
1214
|
-
const exception = new ValidationException({
|
|
1215
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1216
|
-
...contents,
|
|
1217
|
-
});
|
|
1218
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1219
|
-
};
|
|
1220
|
-
const de_Application = (output, context) => {
|
|
1221
|
-
return smithyClient.take(output, {
|
|
1222
|
-
AppRegistryArn: smithyClient.expectString,
|
|
1223
|
-
Arn: smithyClient.expectString,
|
|
1224
|
-
AssociatedApplicationArns: smithyClient._json,
|
|
1225
|
-
Components: smithyClient._json,
|
|
1226
|
-
DiscoveryStatus: smithyClient.expectString,
|
|
1227
|
-
Id: smithyClient.expectString,
|
|
1228
|
-
LastUpdated: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1229
|
-
Status: smithyClient.expectString,
|
|
1230
|
-
StatusMessage: smithyClient.expectString,
|
|
1231
|
-
Type: smithyClient.expectString,
|
|
1232
|
-
});
|
|
1233
|
-
};
|
|
1234
|
-
const de_Component = (output, context) => {
|
|
1235
|
-
return smithyClient.take(output, {
|
|
1236
|
-
ApplicationId: smithyClient.expectString,
|
|
1237
|
-
Arn: smithyClient.expectString,
|
|
1238
|
-
AssociatedHost: smithyClient._json,
|
|
1239
|
-
ChildComponents: smithyClient._json,
|
|
1240
|
-
ComponentId: smithyClient.expectString,
|
|
1241
|
-
ComponentType: smithyClient.expectString,
|
|
1242
|
-
DatabaseConnection: smithyClient._json,
|
|
1243
|
-
Databases: smithyClient._json,
|
|
1244
|
-
HdbVersion: smithyClient.expectString,
|
|
1245
|
-
Hosts: smithyClient._json,
|
|
1246
|
-
LastUpdated: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1247
|
-
ParentComponent: smithyClient.expectString,
|
|
1248
|
-
PrimaryHost: smithyClient.expectString,
|
|
1249
|
-
Resilience: smithyClient._json,
|
|
1250
|
-
SapFeature: smithyClient.expectString,
|
|
1251
|
-
SapHostname: smithyClient.expectString,
|
|
1252
|
-
SapKernelVersion: smithyClient.expectString,
|
|
1253
|
-
Sid: smithyClient.expectString,
|
|
1254
|
-
Status: smithyClient.expectString,
|
|
1255
|
-
SystemNumber: smithyClient.expectString,
|
|
1256
|
-
});
|
|
1257
|
-
};
|
|
1258
|
-
const de_ConfigurationCheckOperation = (output, context) => {
|
|
1259
|
-
return smithyClient.take(output, {
|
|
1260
|
-
ApplicationId: smithyClient.expectString,
|
|
1261
|
-
ConfigurationCheckDescription: smithyClient.expectString,
|
|
1262
|
-
ConfigurationCheckId: smithyClient.expectString,
|
|
1263
|
-
ConfigurationCheckName: smithyClient.expectString,
|
|
1264
|
-
EndTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1265
|
-
Id: smithyClient.expectString,
|
|
1266
|
-
RuleStatusCounts: smithyClient._json,
|
|
1267
|
-
StartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1268
|
-
Status: smithyClient.expectString,
|
|
1269
|
-
StatusMessage: smithyClient.expectString,
|
|
1270
|
-
});
|
|
1271
|
-
};
|
|
1272
|
-
const de_ConfigurationCheckOperationList = (output, context) => {
|
|
1273
|
-
const retVal = (output || [])
|
|
1274
|
-
.filter((e) => e != null)
|
|
1275
|
-
.map((entry) => {
|
|
1276
|
-
return de_ConfigurationCheckOperation(entry);
|
|
1277
|
-
});
|
|
1278
|
-
return retVal;
|
|
1279
|
-
};
|
|
1280
|
-
const de_Database = (output, context) => {
|
|
1281
|
-
return smithyClient.take(output, {
|
|
1282
|
-
ApplicationId: smithyClient.expectString,
|
|
1283
|
-
Arn: smithyClient.expectString,
|
|
1284
|
-
ComponentId: smithyClient.expectString,
|
|
1285
|
-
ConnectedComponentArns: smithyClient._json,
|
|
1286
|
-
Credentials: smithyClient._json,
|
|
1287
|
-
DatabaseId: smithyClient.expectString,
|
|
1288
|
-
DatabaseName: smithyClient.expectString,
|
|
1289
|
-
DatabaseType: smithyClient.expectString,
|
|
1290
|
-
LastUpdated: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1291
|
-
PrimaryHost: smithyClient.expectString,
|
|
1292
|
-
SQLPort: smithyClient.expectInt32,
|
|
1293
|
-
Status: smithyClient.expectString,
|
|
1294
|
-
});
|
|
1295
|
-
};
|
|
1296
|
-
const de_Operation = (output, context) => {
|
|
1297
|
-
return smithyClient.take(output, {
|
|
1298
|
-
EndTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1299
|
-
Id: smithyClient.expectString,
|
|
1300
|
-
LastUpdatedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1301
|
-
Properties: (_) => de_OperationProperties(_),
|
|
1302
|
-
ResourceArn: smithyClient.expectString,
|
|
1303
|
-
ResourceId: smithyClient.expectString,
|
|
1304
|
-
ResourceType: smithyClient.expectString,
|
|
1305
|
-
StartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1306
|
-
Status: smithyClient.expectString,
|
|
1307
|
-
StatusMessage: smithyClient.expectString,
|
|
1308
|
-
Type: smithyClient.expectString,
|
|
1309
|
-
});
|
|
1310
|
-
};
|
|
1311
|
-
const de_OperationEvent = (output, context) => {
|
|
1312
|
-
return smithyClient.take(output, {
|
|
1313
|
-
Description: smithyClient.expectString,
|
|
1314
|
-
Resource: smithyClient._json,
|
|
1315
|
-
Status: smithyClient.expectString,
|
|
1316
|
-
StatusMessage: smithyClient.expectString,
|
|
1317
|
-
Timestamp: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1318
|
-
});
|
|
1319
|
-
};
|
|
1320
|
-
const de_OperationEventList = (output, context) => {
|
|
1321
|
-
const retVal = (output || [])
|
|
1322
|
-
.filter((e) => e != null)
|
|
1323
|
-
.map((entry) => {
|
|
1324
|
-
return de_OperationEvent(entry);
|
|
1325
|
-
});
|
|
1326
|
-
return retVal;
|
|
1327
|
-
};
|
|
1328
|
-
const de_OperationList = (output, context) => {
|
|
1329
|
-
const retVal = (output || [])
|
|
1330
|
-
.filter((e) => e != null)
|
|
1331
|
-
.map((entry) => {
|
|
1332
|
-
return de_Operation(entry);
|
|
1333
|
-
});
|
|
1334
|
-
return retVal;
|
|
1335
|
-
};
|
|
1336
|
-
const de_OperationProperties = (output, context) => {
|
|
1337
|
-
return Object.entries(output).reduce((acc, [key, value]) => {
|
|
1338
|
-
if (value === null) {
|
|
1339
|
-
acc[key] = null;
|
|
1340
|
-
return acc;
|
|
1341
|
-
}
|
|
1342
|
-
acc[key] = smithyClient.expectString(value);
|
|
1343
|
-
return acc;
|
|
1344
|
-
}, {});
|
|
1345
|
-
};
|
|
1346
|
-
const deserializeMetadata = (output) => ({
|
|
1347
|
-
httpStatusCode: output.statusCode,
|
|
1348
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1349
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1350
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
1351
|
-
});
|
|
323
|
+
const _A = "Application";
|
|
324
|
+
const _AA = "ApplicationArn";
|
|
325
|
+
const _AAA = "AssociatedApplicationArns";
|
|
326
|
+
const _AAT = "ApplicableApplicationTypes";
|
|
327
|
+
const _AC = "ApplicationCredential";
|
|
328
|
+
const _ACL = "ApplicationCredentialList";
|
|
329
|
+
const _AH = "AssociatedHost";
|
|
330
|
+
const _AI = "ApplicationId";
|
|
331
|
+
const _ARA = "AppRegistryArn";
|
|
332
|
+
const _AS = "ApplicationSummary";
|
|
333
|
+
const _ASL = "ApplicationSummaryList";
|
|
334
|
+
const _AT = "ActionType";
|
|
335
|
+
const _ATl = "AllocationType";
|
|
336
|
+
const _ATp = "ApplicationType";
|
|
337
|
+
const _Ap = "Applications";
|
|
338
|
+
const _Ar = "Arn";
|
|
339
|
+
const _B = "Backint";
|
|
340
|
+
const _BC = "BackintConfig";
|
|
341
|
+
const _BM = "BackintMode";
|
|
342
|
+
const _C = "Components";
|
|
343
|
+
const _CC = "ChildComponents";
|
|
344
|
+
const _CCA = "ConnectedComponentArns";
|
|
345
|
+
const _CCD = "ConfigurationCheckDefinition";
|
|
346
|
+
const _CCDL = "ConfigurationCheckDefinitionList";
|
|
347
|
+
const _CCDo = "ConfigurationCheckDescription";
|
|
348
|
+
const _CCI = "ConfigurationCheckId";
|
|
349
|
+
const _CCIo = "ConfigurationCheckIds";
|
|
350
|
+
const _CCN = "ConfigurationCheckName";
|
|
351
|
+
const _CCO = "ConfigurationCheckOperation";
|
|
352
|
+
const _CCOL = "ConfigurationCheckOperationList";
|
|
353
|
+
const _CCOo = "ConfigurationCheckOperations";
|
|
354
|
+
const _CCo = "ConfigurationChecks";
|
|
355
|
+
const _CE = "ConflictException";
|
|
356
|
+
const _CI = "ComponentId";
|
|
357
|
+
const _CIL = "ComponentInfoList";
|
|
358
|
+
const _CIo = "ComponentInfo";
|
|
359
|
+
const _CIom = "ComponentsInfo";
|
|
360
|
+
const _CIon = "ConnectionIp";
|
|
361
|
+
const _CS = "ComponentSummary";
|
|
362
|
+
const _CSL = "ComponentSummaryList";
|
|
363
|
+
const _CSl = "ClusterStatus";
|
|
364
|
+
const _CT = "CredentialType";
|
|
365
|
+
const _CTAOU = "CredentialsToAddOrUpdate";
|
|
366
|
+
const _CTR = "CredentialsToRemove";
|
|
367
|
+
const _CTo = "ComponentType";
|
|
368
|
+
const _Co = "Component";
|
|
369
|
+
const _Cr = "Credentials";
|
|
370
|
+
const _D = "Databases";
|
|
371
|
+
const _DA = "DatabaseArn";
|
|
372
|
+
const _DAI = "DeregisterApplicationInput";
|
|
373
|
+
const _DAO = "DeregisterApplicationOutput";
|
|
374
|
+
const _DAe = "DeregisterApplication";
|
|
375
|
+
const _DC = "DatabaseConnection";
|
|
376
|
+
const _DCM = "DatabaseConnectionMethod";
|
|
377
|
+
const _DI = "DatabaseId";
|
|
378
|
+
const _DN = "DatabaseName";
|
|
379
|
+
const _DRP = "DeleteResourcePermission";
|
|
380
|
+
const _DRPI = "DeleteResourcePermissionInput";
|
|
381
|
+
const _DRPO = "DeleteResourcePermissionOutput";
|
|
382
|
+
const _DS = "DiscoveryStatus";
|
|
383
|
+
const _DSL = "DatabaseSummaryList";
|
|
384
|
+
const _DSa = "DatabaseSummary";
|
|
385
|
+
const _DT = "DatabaseType";
|
|
386
|
+
const _Da = "Database";
|
|
387
|
+
const _De = "Description";
|
|
388
|
+
const _ECII = "EC2InstanceId";
|
|
389
|
+
const _EII = "Ec2InstanceId";
|
|
390
|
+
const _ENBIP = "EnsureNoBackupInProcess";
|
|
391
|
+
const _ER = "EnqueueReplication";
|
|
392
|
+
const _ET = "EndTime";
|
|
393
|
+
const _F = "Filter";
|
|
394
|
+
const _FL = "FilterList";
|
|
395
|
+
const _Fa = "Failed";
|
|
396
|
+
const _Fi = "Filters";
|
|
397
|
+
const _GA = "GetApplication";
|
|
398
|
+
const _GAI = "GetApplicationInput";
|
|
399
|
+
const _GAO = "GetApplicationOutput";
|
|
400
|
+
const _GC = "GetComponent";
|
|
401
|
+
const _GCCO = "GetConfigurationCheckOperation";
|
|
402
|
+
const _GCCOI = "GetConfigurationCheckOperationInput";
|
|
403
|
+
const _GCCOO = "GetConfigurationCheckOperationOutput";
|
|
404
|
+
const _GCI = "GetComponentInput";
|
|
405
|
+
const _GCO = "GetComponentOutput";
|
|
406
|
+
const _GD = "GetDatabase";
|
|
407
|
+
const _GDI = "GetDatabaseInput";
|
|
408
|
+
const _GDO = "GetDatabaseOutput";
|
|
409
|
+
const _GO = "GetOperation";
|
|
410
|
+
const _GOI = "GetOperationInput";
|
|
411
|
+
const _GOO = "GetOperationOutput";
|
|
412
|
+
const _GRP = "GetResourcePermission";
|
|
413
|
+
const _GRPI = "GetResourcePermissionInput";
|
|
414
|
+
const _GRPO = "GetResourcePermissionOutput";
|
|
415
|
+
const _H = "Hostname";
|
|
416
|
+
const _HI = "HostIp";
|
|
417
|
+
const _HL = "HostList";
|
|
418
|
+
const _HN = "HostName";
|
|
419
|
+
const _HOM = "HsrOperationMode";
|
|
420
|
+
const _HR = "HostRole";
|
|
421
|
+
const _HRM = "HsrReplicationMode";
|
|
422
|
+
const _HT = "HsrTier";
|
|
423
|
+
const _HV = "HdbVersion";
|
|
424
|
+
const _Ho = "Hosts";
|
|
425
|
+
const _Hos = "Host";
|
|
426
|
+
const _I = "Id";
|
|
427
|
+
const _IA = "IpAddresses";
|
|
428
|
+
const _IAL = "IpAddressList";
|
|
429
|
+
const _IAM = "IpAddressMember";
|
|
430
|
+
const _IAp = "IpAddress";
|
|
431
|
+
const _IEIS = "IncludeEc2InstanceShutdown";
|
|
432
|
+
const _II = "InstanceId";
|
|
433
|
+
const _ISE = "InternalServerException";
|
|
434
|
+
const _In = "Instances";
|
|
435
|
+
const _Inf = "Info";
|
|
436
|
+
const _LA = "ListApplications";
|
|
437
|
+
const _LAI = "ListApplicationsInput";
|
|
438
|
+
const _LAO = "ListApplicationsOutput";
|
|
439
|
+
const _LC = "ListComponents";
|
|
440
|
+
const _LCCD = "ListConfigurationCheckDefinitions";
|
|
441
|
+
const _LCCDI = "ListConfigurationCheckDefinitionsInput";
|
|
442
|
+
const _LCCDO = "ListConfigurationCheckDefinitionsOutput";
|
|
443
|
+
const _LCCO = "ListConfigurationCheckOperations";
|
|
444
|
+
const _LCCOI = "ListConfigurationCheckOperationsInput";
|
|
445
|
+
const _LCCOO = "ListConfigurationCheckOperationsOutput";
|
|
446
|
+
const _LCI = "ListComponentsInput";
|
|
447
|
+
const _LCO = "ListComponentsOutput";
|
|
448
|
+
const _LD = "ListDatabases";
|
|
449
|
+
const _LDI = "ListDatabasesInput";
|
|
450
|
+
const _LDO = "ListDatabasesOutput";
|
|
451
|
+
const _LM = "ListMode";
|
|
452
|
+
const _LO = "ListOperations";
|
|
453
|
+
const _LOE = "ListOperationEvents";
|
|
454
|
+
const _LOEI = "ListOperationEventsInput";
|
|
455
|
+
const _LOEO = "ListOperationEventsOutput";
|
|
456
|
+
const _LOI = "ListOperationsInput";
|
|
457
|
+
const _LOO = "ListOperationsOutput";
|
|
458
|
+
const _LSCR = "ListSubCheckResults";
|
|
459
|
+
const _LSCRI = "ListSubCheckResultsInput";
|
|
460
|
+
const _LSCRO = "ListSubCheckResultsOutput";
|
|
461
|
+
const _LSCRR = "ListSubCheckRuleResults";
|
|
462
|
+
const _LSCRRI = "ListSubCheckRuleResultsInput";
|
|
463
|
+
const _LSCRRO = "ListSubCheckRuleResultsOutput";
|
|
464
|
+
const _LTFR = "ListTagsForResource";
|
|
465
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
466
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
467
|
+
const _LU = "LastUpdated";
|
|
468
|
+
const _LUT = "LastUpdatedTime";
|
|
469
|
+
const _M = "Message";
|
|
470
|
+
const _MR = "MaxResults";
|
|
471
|
+
const _Me = "Metadata";
|
|
472
|
+
const _N = "Name";
|
|
473
|
+
const _NT = "NextToken";
|
|
474
|
+
const _O = "Operator";
|
|
475
|
+
const _OE = "OperationEvents";
|
|
476
|
+
const _OEL = "OperationEventList";
|
|
477
|
+
const _OEp = "OperationEvent";
|
|
478
|
+
const _OI = "OperationId";
|
|
479
|
+
const _OIp = "OperationIds";
|
|
480
|
+
const _OL = "OperationList";
|
|
481
|
+
const _OP = "OperationProperties";
|
|
482
|
+
const _OV = "OsVersion";
|
|
483
|
+
const _Op = "Operation";
|
|
484
|
+
const _Ope = "Operations";
|
|
485
|
+
const _P = "Policy";
|
|
486
|
+
const _PC = "ParentComponent";
|
|
487
|
+
const _PH = "PrimaryHost";
|
|
488
|
+
const _PRP = "PutResourcePermission";
|
|
489
|
+
const _PRPI = "PutResourcePermissionInput";
|
|
490
|
+
const _PRPO = "PutResourcePermissionOutput";
|
|
491
|
+
const _Pa = "Passed";
|
|
492
|
+
const _Pr = "Primary";
|
|
493
|
+
const _Pro = "Properties";
|
|
494
|
+
const _R = "Resilience";
|
|
495
|
+
const _RA = "ResourceArn";
|
|
496
|
+
const _RAI = "RegisterApplicationInput";
|
|
497
|
+
const _RAO = "RegisterApplicationOutput";
|
|
498
|
+
const _RAe = "RegisterApplication";
|
|
499
|
+
const _RI = "ResourceId";
|
|
500
|
+
const _RNFE = "ResourceNotFoundException";
|
|
501
|
+
const _RR = "RuleResults";
|
|
502
|
+
const _RRL = "RuleResultList";
|
|
503
|
+
const _RRu = "RuleResult";
|
|
504
|
+
const _RSC = "RuleStatusCounts";
|
|
505
|
+
const _RT = "ResourceType";
|
|
506
|
+
const _Re = "Resource";
|
|
507
|
+
const _Ref = "References";
|
|
508
|
+
const _S = "Status";
|
|
509
|
+
const _SA = "StartApplication";
|
|
510
|
+
const _SAI = "StartApplicationInput";
|
|
511
|
+
const _SAIt = "StopApplicationInput";
|
|
512
|
+
const _SAO = "StartApplicationOutput";
|
|
513
|
+
const _SAOt = "StopApplicationOutput";
|
|
514
|
+
const _SAR = "StartApplicationRefresh";
|
|
515
|
+
const _SARI = "StartApplicationRefreshInput";
|
|
516
|
+
const _SARO = "StartApplicationRefreshOutput";
|
|
517
|
+
const _SAt = "StopApplication";
|
|
518
|
+
const _SCC = "StartConfigurationChecks";
|
|
519
|
+
const _SCCI = "StartConfigurationChecksInput";
|
|
520
|
+
const _SCCO = "StartConfigurationChecksOutput";
|
|
521
|
+
const _SCE = "StopConnectedEntity";
|
|
522
|
+
const _SCR = "SubCheckResults";
|
|
523
|
+
const _SCRI = "SubCheckResultId";
|
|
524
|
+
const _SCRL = "SubCheckResultList";
|
|
525
|
+
const _SCRu = "SubCheckResult";
|
|
526
|
+
const _SF = "SapFeature";
|
|
527
|
+
const _SH = "SapHostname";
|
|
528
|
+
const _SI = "SecretId";
|
|
529
|
+
const _SIN = "SapInstanceNumber";
|
|
530
|
+
const _SKV = "SapKernelVersion";
|
|
531
|
+
const _SM = "StatusMessage";
|
|
532
|
+
const _SN = "SystemNumber";
|
|
533
|
+
const _SQLP = "SQLPort";
|
|
534
|
+
const _SRA = "SourceResourceArn";
|
|
535
|
+
const _ST = "StartTime";
|
|
536
|
+
const _Si = "Sid";
|
|
537
|
+
const _T = "Type";
|
|
538
|
+
const _TR = "TagResource";
|
|
539
|
+
const _TRR = "TagResourceRequest";
|
|
540
|
+
const _TRRa = "TagResourceResponse";
|
|
541
|
+
const _Ta = "Tags";
|
|
542
|
+
const _Ti = "Timestamp";
|
|
543
|
+
const _U = "Unknown";
|
|
544
|
+
const _UAS = "UpdateApplicationSettings";
|
|
545
|
+
const _UASI = "UpdateApplicationSettingsInput";
|
|
546
|
+
const _UASO = "UpdateApplicationSettingsOutput";
|
|
547
|
+
const _UE = "UnauthorizedException";
|
|
548
|
+
const _UR = "UntagResource";
|
|
549
|
+
const _URR = "UntagResourceRequest";
|
|
550
|
+
const _URRn = "UntagResourceResponse";
|
|
551
|
+
const _V = "Value";
|
|
552
|
+
const _VE = "ValidationException";
|
|
553
|
+
const _W = "Warning";
|
|
554
|
+
const _c = "client";
|
|
555
|
+
const _e = "error";
|
|
556
|
+
const _h = "http";
|
|
557
|
+
const _hE = "httpError";
|
|
558
|
+
const _hQ = "httpQuery";
|
|
559
|
+
const _rA = "resourceArn";
|
|
560
|
+
const _s = "server";
|
|
561
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.ssmsap";
|
|
562
|
+
const _sp = "sparse";
|
|
563
|
+
const _t = "tags";
|
|
1352
564
|
const _tK = "tagKeys";
|
|
565
|
+
const n0 = "com.amazonaws.ssmsap";
|
|
566
|
+
var SecretId = [0, n0, _SI, 8, 0];
|
|
567
|
+
var Application = [
|
|
568
|
+
3,
|
|
569
|
+
n0,
|
|
570
|
+
_A,
|
|
571
|
+
0,
|
|
572
|
+
[_I, _T, _Ar, _ARA, _S, _DS, _C, _LU, _SM, _AAA],
|
|
573
|
+
[0, 0, 0, 0, 0, 0, 64 | 0, 4, 0, 64 | 0],
|
|
574
|
+
];
|
|
575
|
+
var ApplicationCredential = [3, n0, _AC, 0, [_DN, _CT, _SI], [0, 0, [() => SecretId, 0]]];
|
|
576
|
+
var ApplicationSummary = [3, n0, _AS, 0, [_I, _DS, _T, _Ar, _Ta], [0, 0, 0, 0, 128 | 0]];
|
|
577
|
+
var AssociatedHost = [
|
|
578
|
+
3,
|
|
579
|
+
n0,
|
|
580
|
+
_AH,
|
|
581
|
+
0,
|
|
582
|
+
[_H, _EII, _IA, _OV],
|
|
583
|
+
[0, 0, () => IpAddressList, 0],
|
|
584
|
+
];
|
|
585
|
+
var BackintConfig = [3, n0, _BC, 0, [_BM, _ENBIP], [0, 2]];
|
|
586
|
+
var Component = [
|
|
587
|
+
3,
|
|
588
|
+
n0,
|
|
589
|
+
_Co,
|
|
590
|
+
0,
|
|
591
|
+
[_CI, _Si, _SN, _PC, _CC, _AI, _CTo, _S, _SH, _SF, _SKV, _HV, _R, _AH, _D, _Ho, _PH, _DC, _LU, _Ar],
|
|
592
|
+
[
|
|
593
|
+
0,
|
|
594
|
+
0,
|
|
595
|
+
0,
|
|
596
|
+
0,
|
|
597
|
+
64 | 0,
|
|
598
|
+
0,
|
|
599
|
+
0,
|
|
600
|
+
0,
|
|
601
|
+
0,
|
|
602
|
+
0,
|
|
603
|
+
0,
|
|
604
|
+
0,
|
|
605
|
+
() => Resilience,
|
|
606
|
+
() => AssociatedHost,
|
|
607
|
+
64 | 0,
|
|
608
|
+
() => HostList,
|
|
609
|
+
0,
|
|
610
|
+
() => DatabaseConnection,
|
|
611
|
+
4,
|
|
612
|
+
0,
|
|
613
|
+
],
|
|
614
|
+
];
|
|
615
|
+
var ComponentInfo = [3, n0, _CIo, 0, [_CTo, _Si, _EII], [0, 0, 0]];
|
|
616
|
+
var ComponentSummary = [3, n0, _CS, 0, [_AI, _CI, _CTo, _Ta, _Ar], [0, 0, 0, 128 | 0, 0]];
|
|
617
|
+
var ConfigurationCheckDefinition = [
|
|
618
|
+
3,
|
|
619
|
+
n0,
|
|
620
|
+
_CCD,
|
|
621
|
+
0,
|
|
622
|
+
[_I, _N, _De, _AAT],
|
|
623
|
+
[0, 0, 0, 64 | 0],
|
|
624
|
+
];
|
|
625
|
+
var ConfigurationCheckOperation = [
|
|
626
|
+
3,
|
|
627
|
+
n0,
|
|
628
|
+
_CCO,
|
|
629
|
+
0,
|
|
630
|
+
[_I, _AI, _S, _SM, _CCI, _CCN, _CCDo, _ST, _ET, _RSC],
|
|
631
|
+
[0, 0, 0, 0, 0, 0, 0, 4, 4, () => RuleStatusCounts],
|
|
632
|
+
];
|
|
633
|
+
var ConflictException = [
|
|
634
|
+
-3,
|
|
635
|
+
n0,
|
|
636
|
+
_CE,
|
|
637
|
+
{
|
|
638
|
+
[_e]: _c,
|
|
639
|
+
[_hE]: 409,
|
|
640
|
+
},
|
|
641
|
+
[_M],
|
|
642
|
+
[0],
|
|
643
|
+
];
|
|
644
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
|
|
645
|
+
var Database = [
|
|
646
|
+
3,
|
|
647
|
+
n0,
|
|
648
|
+
_Da,
|
|
649
|
+
0,
|
|
650
|
+
[_AI, _CI, _Cr, _DI, _DN, _DT, _Ar, _S, _PH, _SQLP, _LU, _CCA],
|
|
651
|
+
[0, 0, [() => ApplicationCredentialList, 0], 0, 0, 0, 0, 0, 0, 1, 4, 64 | 0],
|
|
652
|
+
];
|
|
653
|
+
var DatabaseConnection = [3, n0, _DC, 0, [_DCM, _DA, _CIon], [0, 0, 0]];
|
|
654
|
+
var DatabaseSummary = [
|
|
655
|
+
3,
|
|
656
|
+
n0,
|
|
657
|
+
_DSa,
|
|
658
|
+
0,
|
|
659
|
+
[_AI, _CI, _DI, _DT, _Ar, _Ta],
|
|
660
|
+
[0, 0, 0, 0, 0, 128 | 0],
|
|
661
|
+
];
|
|
662
|
+
var DeleteResourcePermissionInput = [3, n0, _DRPI, 0, [_AT, _SRA, _RA], [0, 0, 0]];
|
|
663
|
+
var DeleteResourcePermissionOutput = [3, n0, _DRPO, 0, [_P], [0]];
|
|
664
|
+
var DeregisterApplicationInput = [3, n0, _DAI, 0, [_AI], [0]];
|
|
665
|
+
var DeregisterApplicationOutput = [3, n0, _DAO, 0, [], []];
|
|
666
|
+
var Filter = [3, n0, _F, 0, [_N, _V, _O], [0, 0, 0]];
|
|
667
|
+
var GetApplicationInput = [3, n0, _GAI, 0, [_AI, _AA, _ARA], [0, 0, 0]];
|
|
668
|
+
var GetApplicationOutput = [3, n0, _GAO, 0, [_A, _Ta], [() => Application, 128 | 0]];
|
|
669
|
+
var GetComponentInput = [3, n0, _GCI, 0, [_AI, _CI], [0, 0]];
|
|
670
|
+
var GetComponentOutput = [3, n0, _GCO, 0, [_Co, _Ta], [() => Component, 128 | 0]];
|
|
671
|
+
var GetConfigurationCheckOperationInput = [3, n0, _GCCOI, 0, [_OI], [0]];
|
|
672
|
+
var GetConfigurationCheckOperationOutput = [
|
|
673
|
+
3,
|
|
674
|
+
n0,
|
|
675
|
+
_GCCOO,
|
|
676
|
+
0,
|
|
677
|
+
[_CCO],
|
|
678
|
+
[() => ConfigurationCheckOperation],
|
|
679
|
+
];
|
|
680
|
+
var GetDatabaseInput = [3, n0, _GDI, 0, [_AI, _CI, _DI, _DA], [0, 0, 0, 0]];
|
|
681
|
+
var GetDatabaseOutput = [3, n0, _GDO, 0, [_Da, _Ta], [[() => Database, 0], 128 | 0]];
|
|
682
|
+
var GetOperationInput = [3, n0, _GOI, 0, [_OI], [0]];
|
|
683
|
+
var GetOperationOutput = [3, n0, _GOO, 0, [_Op], [[() => Operation, 0]]];
|
|
684
|
+
var GetResourcePermissionInput = [3, n0, _GRPI, 0, [_AT, _RA], [0, 0]];
|
|
685
|
+
var GetResourcePermissionOutput = [3, n0, _GRPO, 0, [_P], [0]];
|
|
686
|
+
var Host = [3, n0, _Hos, 0, [_HN, _HI, _ECII, _II, _HR, _OV], [0, 0, 0, 0, 0, 0]];
|
|
687
|
+
var InternalServerException = [
|
|
688
|
+
-3,
|
|
689
|
+
n0,
|
|
690
|
+
_ISE,
|
|
691
|
+
{
|
|
692
|
+
[_e]: _s,
|
|
693
|
+
[_hE]: 500,
|
|
694
|
+
},
|
|
695
|
+
[_M],
|
|
696
|
+
[0],
|
|
697
|
+
];
|
|
698
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
699
|
+
var IpAddressMember = [3, n0, _IAM, 0, [_IAp, _Pr, _ATl], [0, 2, 0]];
|
|
700
|
+
var ListApplicationsInput = [3, n0, _LAI, 0, [_NT, _MR, _Fi], [0, 1, () => FilterList]];
|
|
701
|
+
var ListApplicationsOutput = [
|
|
702
|
+
3,
|
|
703
|
+
n0,
|
|
704
|
+
_LAO,
|
|
705
|
+
0,
|
|
706
|
+
[_Ap, _NT],
|
|
707
|
+
[() => ApplicationSummaryList, 0],
|
|
708
|
+
];
|
|
709
|
+
var ListComponentsInput = [3, n0, _LCI, 0, [_AI, _NT, _MR], [0, 0, 1]];
|
|
710
|
+
var ListComponentsOutput = [3, n0, _LCO, 0, [_C, _NT], [() => ComponentSummaryList, 0]];
|
|
711
|
+
var ListConfigurationCheckDefinitionsInput = [3, n0, _LCCDI, 0, [_MR, _NT], [1, 0]];
|
|
712
|
+
var ListConfigurationCheckDefinitionsOutput = [
|
|
713
|
+
3,
|
|
714
|
+
n0,
|
|
715
|
+
_LCCDO,
|
|
716
|
+
0,
|
|
717
|
+
[_CCo, _NT],
|
|
718
|
+
[() => ConfigurationCheckDefinitionList, 0],
|
|
719
|
+
];
|
|
720
|
+
var ListConfigurationCheckOperationsInput = [
|
|
721
|
+
3,
|
|
722
|
+
n0,
|
|
723
|
+
_LCCOI,
|
|
724
|
+
0,
|
|
725
|
+
[_AI, _LM, _MR, _NT, _Fi],
|
|
726
|
+
[0, 0, 1, 0, () => FilterList],
|
|
727
|
+
];
|
|
728
|
+
var ListConfigurationCheckOperationsOutput = [
|
|
729
|
+
3,
|
|
730
|
+
n0,
|
|
731
|
+
_LCCOO,
|
|
732
|
+
0,
|
|
733
|
+
[_CCOo, _NT],
|
|
734
|
+
[() => ConfigurationCheckOperationList, 0],
|
|
735
|
+
];
|
|
736
|
+
var ListDatabasesInput = [3, n0, _LDI, 0, [_AI, _CI, _NT, _MR], [0, 0, 0, 1]];
|
|
737
|
+
var ListDatabasesOutput = [3, n0, _LDO, 0, [_D, _NT], [() => DatabaseSummaryList, 0]];
|
|
738
|
+
var ListOperationEventsInput = [
|
|
739
|
+
3,
|
|
740
|
+
n0,
|
|
741
|
+
_LOEI,
|
|
742
|
+
0,
|
|
743
|
+
[_OI, _MR, _NT, _Fi],
|
|
744
|
+
[0, 1, 0, () => FilterList],
|
|
745
|
+
];
|
|
746
|
+
var ListOperationEventsOutput = [
|
|
747
|
+
3,
|
|
748
|
+
n0,
|
|
749
|
+
_LOEO,
|
|
750
|
+
0,
|
|
751
|
+
[_OE, _NT],
|
|
752
|
+
[() => OperationEventList, 0],
|
|
753
|
+
];
|
|
754
|
+
var ListOperationsInput = [
|
|
755
|
+
3,
|
|
756
|
+
n0,
|
|
757
|
+
_LOI,
|
|
758
|
+
0,
|
|
759
|
+
[_AI, _MR, _NT, _Fi],
|
|
760
|
+
[0, 1, 0, () => FilterList],
|
|
761
|
+
];
|
|
762
|
+
var ListOperationsOutput = [3, n0, _LOO, 0, [_Ope, _NT], [[() => OperationList, 0], 0]];
|
|
763
|
+
var ListSubCheckResultsInput = [3, n0, _LSCRI, 0, [_OI, _MR, _NT], [0, 1, 0]];
|
|
764
|
+
var ListSubCheckResultsOutput = [
|
|
765
|
+
3,
|
|
766
|
+
n0,
|
|
767
|
+
_LSCRO,
|
|
768
|
+
0,
|
|
769
|
+
[_SCR, _NT],
|
|
770
|
+
[() => SubCheckResultList, 0],
|
|
771
|
+
];
|
|
772
|
+
var ListSubCheckRuleResultsInput = [3, n0, _LSCRRI, 0, [_SCRI, _MR, _NT], [0, 1, 0]];
|
|
773
|
+
var ListSubCheckRuleResultsOutput = [
|
|
774
|
+
3,
|
|
775
|
+
n0,
|
|
776
|
+
_LSCRRO,
|
|
777
|
+
0,
|
|
778
|
+
[_RR, _NT],
|
|
779
|
+
[() => RuleResultList, 0],
|
|
780
|
+
];
|
|
781
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
|
|
782
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
|
|
783
|
+
var Operation = [
|
|
784
|
+
3,
|
|
785
|
+
n0,
|
|
786
|
+
_Op,
|
|
787
|
+
0,
|
|
788
|
+
[_I, _T, _S, _SM, _Pro, _RT, _RI, _RA, _ST, _ET, _LUT],
|
|
789
|
+
[0, 0, 0, 0, [() => OperationProperties, 0], 0, 0, 0, 4, 4, 4],
|
|
790
|
+
];
|
|
791
|
+
var OperationEvent = [
|
|
792
|
+
3,
|
|
793
|
+
n0,
|
|
794
|
+
_OEp,
|
|
795
|
+
0,
|
|
796
|
+
[_De, _Re, _S, _SM, _Ti],
|
|
797
|
+
[0, () => Resource, 0, 0, 4],
|
|
798
|
+
];
|
|
799
|
+
var PutResourcePermissionInput = [3, n0, _PRPI, 0, [_AT, _SRA, _RA], [0, 0, 0]];
|
|
800
|
+
var PutResourcePermissionOutput = [3, n0, _PRPO, 0, [_P], [0]];
|
|
801
|
+
var RegisterApplicationInput = [
|
|
802
|
+
3,
|
|
803
|
+
n0,
|
|
804
|
+
_RAI,
|
|
805
|
+
0,
|
|
806
|
+
[_AI, _ATp, _In, _SIN, _Si, _Ta, _Cr, _DA, _CIom],
|
|
807
|
+
[0, 0, 64 | 0, 0, 0, 128 | 0, [() => ApplicationCredentialList, 0], 0, () => ComponentInfoList],
|
|
808
|
+
];
|
|
809
|
+
var RegisterApplicationOutput = [3, n0, _RAO, 0, [_A, _OI], [() => Application, 0]];
|
|
810
|
+
var Resilience = [3, n0, _R, 0, [_HT, _HRM, _HOM, _CSl, _ER], [0, 0, 0, 0, 2]];
|
|
811
|
+
var Resource = [3, n0, _Re, 0, [_RA, _RT], [0, 0]];
|
|
812
|
+
var ResourceNotFoundException = [
|
|
813
|
+
-3,
|
|
814
|
+
n0,
|
|
815
|
+
_RNFE,
|
|
816
|
+
{
|
|
817
|
+
[_e]: _c,
|
|
818
|
+
[_hE]: 404,
|
|
819
|
+
},
|
|
820
|
+
[_M],
|
|
821
|
+
[0],
|
|
822
|
+
];
|
|
823
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
824
|
+
var RuleResult = [3, n0, _RRu, 0, [_I, _De, _S, _M, _Me], [0, 0, 0, 0, 128 | 0]];
|
|
825
|
+
var RuleStatusCounts = [3, n0, _RSC, 0, [_Fa, _W, _Inf, _Pa, _U], [1, 1, 1, 1, 1]];
|
|
826
|
+
var StartApplicationInput = [3, n0, _SAI, 0, [_AI], [0]];
|
|
827
|
+
var StartApplicationOutput = [3, n0, _SAO, 0, [_OI], [0]];
|
|
828
|
+
var StartApplicationRefreshInput = [3, n0, _SARI, 0, [_AI], [0]];
|
|
829
|
+
var StartApplicationRefreshOutput = [3, n0, _SARO, 0, [_OI], [0]];
|
|
830
|
+
var StartConfigurationChecksInput = [3, n0, _SCCI, 0, [_AI, _CCIo], [0, 64 | 0]];
|
|
831
|
+
var StartConfigurationChecksOutput = [
|
|
832
|
+
3,
|
|
833
|
+
n0,
|
|
834
|
+
_SCCO,
|
|
835
|
+
0,
|
|
836
|
+
[_CCOo],
|
|
837
|
+
[() => ConfigurationCheckOperationList],
|
|
838
|
+
];
|
|
839
|
+
var StopApplicationInput = [3, n0, _SAIt, 0, [_AI, _SCE, _IEIS], [0, 0, 2]];
|
|
840
|
+
var StopApplicationOutput = [3, n0, _SAOt, 0, [_OI], [0]];
|
|
841
|
+
var SubCheckResult = [3, n0, _SCRu, 0, [_I, _N, _De, _Ref], [0, 0, 0, 64 | 0]];
|
|
842
|
+
var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _t], [[0, 1], 128 | 0]];
|
|
843
|
+
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
844
|
+
var UnauthorizedException = [
|
|
845
|
+
-3,
|
|
846
|
+
n0,
|
|
847
|
+
_UE,
|
|
848
|
+
{
|
|
849
|
+
[_e]: _c,
|
|
850
|
+
[_hE]: 401,
|
|
851
|
+
},
|
|
852
|
+
[_M],
|
|
853
|
+
[0],
|
|
854
|
+
];
|
|
855
|
+
schema.TypeRegistry.for(n0).registerError(UnauthorizedException, UnauthorizedException$1);
|
|
856
|
+
var UntagResourceRequest = [
|
|
857
|
+
3,
|
|
858
|
+
n0,
|
|
859
|
+
_URR,
|
|
860
|
+
0,
|
|
861
|
+
[_rA, _tK],
|
|
862
|
+
[
|
|
863
|
+
[0, 1],
|
|
864
|
+
[
|
|
865
|
+
64 | 0,
|
|
866
|
+
{
|
|
867
|
+
[_hQ]: _tK,
|
|
868
|
+
},
|
|
869
|
+
],
|
|
870
|
+
],
|
|
871
|
+
];
|
|
872
|
+
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
873
|
+
var UpdateApplicationSettingsInput = [
|
|
874
|
+
3,
|
|
875
|
+
n0,
|
|
876
|
+
_UASI,
|
|
877
|
+
0,
|
|
878
|
+
[_AI, _CTAOU, _CTR, _B, _DA],
|
|
879
|
+
[0, [() => ApplicationCredentialList, 0], [() => ApplicationCredentialList, 0], () => BackintConfig, 0],
|
|
880
|
+
];
|
|
881
|
+
var UpdateApplicationSettingsOutput = [3, n0, _UASO, 0, [_M, _OIp], [0, 64 | 0]];
|
|
882
|
+
var ValidationException = [
|
|
883
|
+
-3,
|
|
884
|
+
n0,
|
|
885
|
+
_VE,
|
|
886
|
+
{
|
|
887
|
+
[_e]: _c,
|
|
888
|
+
[_hE]: 400,
|
|
889
|
+
},
|
|
890
|
+
[_M],
|
|
891
|
+
[0],
|
|
892
|
+
];
|
|
893
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
|
|
894
|
+
var SsmSapServiceException = [-3, _sm, "SsmSapServiceException", 0, [], []];
|
|
895
|
+
schema.TypeRegistry.for(_sm).registerError(SsmSapServiceException, SsmSapServiceException$1);
|
|
896
|
+
var ApplicationCredentialList = [1, n0, _ACL, 0, [() => ApplicationCredential, 0]];
|
|
897
|
+
var ApplicationSummaryList = [1, n0, _ASL, 0, () => ApplicationSummary];
|
|
898
|
+
var ComponentInfoList = [1, n0, _CIL, 0, () => ComponentInfo];
|
|
899
|
+
var ComponentSummaryList = [1, n0, _CSL, 0, () => ComponentSummary];
|
|
900
|
+
var ConfigurationCheckDefinitionList = [1, n0, _CCDL, 0, () => ConfigurationCheckDefinition];
|
|
901
|
+
var ConfigurationCheckOperationList = [1, n0, _CCOL, 0, () => ConfigurationCheckOperation];
|
|
902
|
+
var DatabaseSummaryList = [1, n0, _DSL, 0, () => DatabaseSummary];
|
|
903
|
+
var FilterList = [1, n0, _FL, 0, () => Filter];
|
|
904
|
+
var HostList = [1, n0, _HL, 0, () => Host];
|
|
905
|
+
var IpAddressList = [1, n0, _IAL, 0, () => IpAddressMember];
|
|
906
|
+
var OperationEventList = [1, n0, _OEL, 0, () => OperationEvent];
|
|
907
|
+
var OperationList = [1, n0, _OL, 0, [() => Operation, 0]];
|
|
908
|
+
var RuleResultList = [1, n0, _RRL, 0, () => RuleResult];
|
|
909
|
+
var SubCheckResultList = [1, n0, _SCRL, 0, () => SubCheckResult];
|
|
910
|
+
var OperationProperties = [
|
|
911
|
+
2,
|
|
912
|
+
n0,
|
|
913
|
+
_OP,
|
|
914
|
+
{
|
|
915
|
+
[_sp]: 1,
|
|
916
|
+
},
|
|
917
|
+
0,
|
|
918
|
+
0,
|
|
919
|
+
];
|
|
920
|
+
var DeleteResourcePermission = [
|
|
921
|
+
9,
|
|
922
|
+
n0,
|
|
923
|
+
_DRP,
|
|
924
|
+
{
|
|
925
|
+
[_h]: ["POST", "/delete-resource-permission", 200],
|
|
926
|
+
},
|
|
927
|
+
() => DeleteResourcePermissionInput,
|
|
928
|
+
() => DeleteResourcePermissionOutput,
|
|
929
|
+
];
|
|
930
|
+
var DeregisterApplication = [
|
|
931
|
+
9,
|
|
932
|
+
n0,
|
|
933
|
+
_DAe,
|
|
934
|
+
{
|
|
935
|
+
[_h]: ["POST", "/deregister-application", 200],
|
|
936
|
+
},
|
|
937
|
+
() => DeregisterApplicationInput,
|
|
938
|
+
() => DeregisterApplicationOutput,
|
|
939
|
+
];
|
|
940
|
+
var GetApplication = [
|
|
941
|
+
9,
|
|
942
|
+
n0,
|
|
943
|
+
_GA,
|
|
944
|
+
{
|
|
945
|
+
[_h]: ["POST", "/get-application", 200],
|
|
946
|
+
},
|
|
947
|
+
() => GetApplicationInput,
|
|
948
|
+
() => GetApplicationOutput,
|
|
949
|
+
];
|
|
950
|
+
var GetComponent = [
|
|
951
|
+
9,
|
|
952
|
+
n0,
|
|
953
|
+
_GC,
|
|
954
|
+
{
|
|
955
|
+
[_h]: ["POST", "/get-component", 200],
|
|
956
|
+
},
|
|
957
|
+
() => GetComponentInput,
|
|
958
|
+
() => GetComponentOutput,
|
|
959
|
+
];
|
|
960
|
+
var GetConfigurationCheckOperation = [
|
|
961
|
+
9,
|
|
962
|
+
n0,
|
|
963
|
+
_GCCO,
|
|
964
|
+
{
|
|
965
|
+
[_h]: ["POST", "/get-configuration-check-operation", 200],
|
|
966
|
+
},
|
|
967
|
+
() => GetConfigurationCheckOperationInput,
|
|
968
|
+
() => GetConfigurationCheckOperationOutput,
|
|
969
|
+
];
|
|
970
|
+
var GetDatabase = [
|
|
971
|
+
9,
|
|
972
|
+
n0,
|
|
973
|
+
_GD,
|
|
974
|
+
{
|
|
975
|
+
[_h]: ["POST", "/get-database", 200],
|
|
976
|
+
},
|
|
977
|
+
() => GetDatabaseInput,
|
|
978
|
+
() => GetDatabaseOutput,
|
|
979
|
+
];
|
|
980
|
+
var GetOperation = [
|
|
981
|
+
9,
|
|
982
|
+
n0,
|
|
983
|
+
_GO,
|
|
984
|
+
{
|
|
985
|
+
[_h]: ["POST", "/get-operation", 200],
|
|
986
|
+
},
|
|
987
|
+
() => GetOperationInput,
|
|
988
|
+
() => GetOperationOutput,
|
|
989
|
+
];
|
|
990
|
+
var GetResourcePermission = [
|
|
991
|
+
9,
|
|
992
|
+
n0,
|
|
993
|
+
_GRP,
|
|
994
|
+
{
|
|
995
|
+
[_h]: ["POST", "/get-resource-permission", 200],
|
|
996
|
+
},
|
|
997
|
+
() => GetResourcePermissionInput,
|
|
998
|
+
() => GetResourcePermissionOutput,
|
|
999
|
+
];
|
|
1000
|
+
var ListApplications = [
|
|
1001
|
+
9,
|
|
1002
|
+
n0,
|
|
1003
|
+
_LA,
|
|
1004
|
+
{
|
|
1005
|
+
[_h]: ["POST", "/list-applications", 200],
|
|
1006
|
+
},
|
|
1007
|
+
() => ListApplicationsInput,
|
|
1008
|
+
() => ListApplicationsOutput,
|
|
1009
|
+
];
|
|
1010
|
+
var ListComponents = [
|
|
1011
|
+
9,
|
|
1012
|
+
n0,
|
|
1013
|
+
_LC,
|
|
1014
|
+
{
|
|
1015
|
+
[_h]: ["POST", "/list-components", 200],
|
|
1016
|
+
},
|
|
1017
|
+
() => ListComponentsInput,
|
|
1018
|
+
() => ListComponentsOutput,
|
|
1019
|
+
];
|
|
1020
|
+
var ListConfigurationCheckDefinitions = [
|
|
1021
|
+
9,
|
|
1022
|
+
n0,
|
|
1023
|
+
_LCCD,
|
|
1024
|
+
{
|
|
1025
|
+
[_h]: ["POST", "/list-configuration-check-definitions", 200],
|
|
1026
|
+
},
|
|
1027
|
+
() => ListConfigurationCheckDefinitionsInput,
|
|
1028
|
+
() => ListConfigurationCheckDefinitionsOutput,
|
|
1029
|
+
];
|
|
1030
|
+
var ListConfigurationCheckOperations = [
|
|
1031
|
+
9,
|
|
1032
|
+
n0,
|
|
1033
|
+
_LCCO,
|
|
1034
|
+
{
|
|
1035
|
+
[_h]: ["POST", "/list-configuration-check-operations", 200],
|
|
1036
|
+
},
|
|
1037
|
+
() => ListConfigurationCheckOperationsInput,
|
|
1038
|
+
() => ListConfigurationCheckOperationsOutput,
|
|
1039
|
+
];
|
|
1040
|
+
var ListDatabases = [
|
|
1041
|
+
9,
|
|
1042
|
+
n0,
|
|
1043
|
+
_LD,
|
|
1044
|
+
{
|
|
1045
|
+
[_h]: ["POST", "/list-databases", 200],
|
|
1046
|
+
},
|
|
1047
|
+
() => ListDatabasesInput,
|
|
1048
|
+
() => ListDatabasesOutput,
|
|
1049
|
+
];
|
|
1050
|
+
var ListOperationEvents = [
|
|
1051
|
+
9,
|
|
1052
|
+
n0,
|
|
1053
|
+
_LOE,
|
|
1054
|
+
{
|
|
1055
|
+
[_h]: ["POST", "/list-operation-events", 200],
|
|
1056
|
+
},
|
|
1057
|
+
() => ListOperationEventsInput,
|
|
1058
|
+
() => ListOperationEventsOutput,
|
|
1059
|
+
];
|
|
1060
|
+
var ListOperations = [
|
|
1061
|
+
9,
|
|
1062
|
+
n0,
|
|
1063
|
+
_LO,
|
|
1064
|
+
{
|
|
1065
|
+
[_h]: ["POST", "/list-operations", 200],
|
|
1066
|
+
},
|
|
1067
|
+
() => ListOperationsInput,
|
|
1068
|
+
() => ListOperationsOutput,
|
|
1069
|
+
];
|
|
1070
|
+
var ListSubCheckResults = [
|
|
1071
|
+
9,
|
|
1072
|
+
n0,
|
|
1073
|
+
_LSCR,
|
|
1074
|
+
{
|
|
1075
|
+
[_h]: ["POST", "/list-sub-check-results", 200],
|
|
1076
|
+
},
|
|
1077
|
+
() => ListSubCheckResultsInput,
|
|
1078
|
+
() => ListSubCheckResultsOutput,
|
|
1079
|
+
];
|
|
1080
|
+
var ListSubCheckRuleResults = [
|
|
1081
|
+
9,
|
|
1082
|
+
n0,
|
|
1083
|
+
_LSCRR,
|
|
1084
|
+
{
|
|
1085
|
+
[_h]: ["POST", "/list-sub-check-rule-results", 200],
|
|
1086
|
+
},
|
|
1087
|
+
() => ListSubCheckRuleResultsInput,
|
|
1088
|
+
() => ListSubCheckRuleResultsOutput,
|
|
1089
|
+
];
|
|
1090
|
+
var ListTagsForResource = [
|
|
1091
|
+
9,
|
|
1092
|
+
n0,
|
|
1093
|
+
_LTFR,
|
|
1094
|
+
{
|
|
1095
|
+
[_h]: ["GET", "/tags/{resourceArn}", 200],
|
|
1096
|
+
},
|
|
1097
|
+
() => ListTagsForResourceRequest,
|
|
1098
|
+
() => ListTagsForResourceResponse,
|
|
1099
|
+
];
|
|
1100
|
+
var PutResourcePermission = [
|
|
1101
|
+
9,
|
|
1102
|
+
n0,
|
|
1103
|
+
_PRP,
|
|
1104
|
+
{
|
|
1105
|
+
[_h]: ["POST", "/put-resource-permission", 200],
|
|
1106
|
+
},
|
|
1107
|
+
() => PutResourcePermissionInput,
|
|
1108
|
+
() => PutResourcePermissionOutput,
|
|
1109
|
+
];
|
|
1110
|
+
var RegisterApplication = [
|
|
1111
|
+
9,
|
|
1112
|
+
n0,
|
|
1113
|
+
_RAe,
|
|
1114
|
+
{
|
|
1115
|
+
[_h]: ["POST", "/register-application", 200],
|
|
1116
|
+
},
|
|
1117
|
+
() => RegisterApplicationInput,
|
|
1118
|
+
() => RegisterApplicationOutput,
|
|
1119
|
+
];
|
|
1120
|
+
var StartApplication = [
|
|
1121
|
+
9,
|
|
1122
|
+
n0,
|
|
1123
|
+
_SA,
|
|
1124
|
+
{
|
|
1125
|
+
[_h]: ["POST", "/start-application", 200],
|
|
1126
|
+
},
|
|
1127
|
+
() => StartApplicationInput,
|
|
1128
|
+
() => StartApplicationOutput,
|
|
1129
|
+
];
|
|
1130
|
+
var StartApplicationRefresh = [
|
|
1131
|
+
9,
|
|
1132
|
+
n0,
|
|
1133
|
+
_SAR,
|
|
1134
|
+
{
|
|
1135
|
+
[_h]: ["POST", "/start-application-refresh", 200],
|
|
1136
|
+
},
|
|
1137
|
+
() => StartApplicationRefreshInput,
|
|
1138
|
+
() => StartApplicationRefreshOutput,
|
|
1139
|
+
];
|
|
1140
|
+
var StartConfigurationChecks = [
|
|
1141
|
+
9,
|
|
1142
|
+
n0,
|
|
1143
|
+
_SCC,
|
|
1144
|
+
{
|
|
1145
|
+
[_h]: ["POST", "/start-configuration-checks", 200],
|
|
1146
|
+
},
|
|
1147
|
+
() => StartConfigurationChecksInput,
|
|
1148
|
+
() => StartConfigurationChecksOutput,
|
|
1149
|
+
];
|
|
1150
|
+
var StopApplication = [
|
|
1151
|
+
9,
|
|
1152
|
+
n0,
|
|
1153
|
+
_SAt,
|
|
1154
|
+
{
|
|
1155
|
+
[_h]: ["POST", "/stop-application", 200],
|
|
1156
|
+
},
|
|
1157
|
+
() => StopApplicationInput,
|
|
1158
|
+
() => StopApplicationOutput,
|
|
1159
|
+
];
|
|
1160
|
+
var TagResource = [
|
|
1161
|
+
9,
|
|
1162
|
+
n0,
|
|
1163
|
+
_TR,
|
|
1164
|
+
{
|
|
1165
|
+
[_h]: ["POST", "/tags/{resourceArn}", 200],
|
|
1166
|
+
},
|
|
1167
|
+
() => TagResourceRequest,
|
|
1168
|
+
() => TagResourceResponse,
|
|
1169
|
+
];
|
|
1170
|
+
var UntagResource = [
|
|
1171
|
+
9,
|
|
1172
|
+
n0,
|
|
1173
|
+
_UR,
|
|
1174
|
+
{
|
|
1175
|
+
[_h]: ["DELETE", "/tags/{resourceArn}", 200],
|
|
1176
|
+
},
|
|
1177
|
+
() => UntagResourceRequest,
|
|
1178
|
+
() => UntagResourceResponse,
|
|
1179
|
+
];
|
|
1180
|
+
var UpdateApplicationSettings = [
|
|
1181
|
+
9,
|
|
1182
|
+
n0,
|
|
1183
|
+
_UAS,
|
|
1184
|
+
{
|
|
1185
|
+
[_h]: ["POST", "/update-application-settings", 200],
|
|
1186
|
+
},
|
|
1187
|
+
() => UpdateApplicationSettingsInput,
|
|
1188
|
+
() => UpdateApplicationSettingsOutput,
|
|
1189
|
+
];
|
|
1353
1190
|
|
|
1354
1191
|
class DeleteResourcePermissionCommand extends smithyClient.Command
|
|
1355
1192
|
.classBuilder()
|
|
1356
1193
|
.ep(commonParams)
|
|
1357
1194
|
.m(function (Command, cs, config, o) {
|
|
1358
|
-
return [
|
|
1359
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1360
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1361
|
-
];
|
|
1195
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1362
1196
|
})
|
|
1363
1197
|
.s("SsmSap", "DeleteResourcePermission", {})
|
|
1364
1198
|
.n("SsmSapClient", "DeleteResourcePermissionCommand")
|
|
1365
|
-
.
|
|
1366
|
-
.ser(se_DeleteResourcePermissionCommand)
|
|
1367
|
-
.de(de_DeleteResourcePermissionCommand)
|
|
1199
|
+
.sc(DeleteResourcePermission)
|
|
1368
1200
|
.build() {
|
|
1369
1201
|
}
|
|
1370
1202
|
|
|
@@ -1372,16 +1204,11 @@ class DeregisterApplicationCommand extends smithyClient.Command
|
|
|
1372
1204
|
.classBuilder()
|
|
1373
1205
|
.ep(commonParams)
|
|
1374
1206
|
.m(function (Command, cs, config, o) {
|
|
1375
|
-
return [
|
|
1376
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1377
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1378
|
-
];
|
|
1207
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1379
1208
|
})
|
|
1380
1209
|
.s("SsmSap", "DeregisterApplication", {})
|
|
1381
1210
|
.n("SsmSapClient", "DeregisterApplicationCommand")
|
|
1382
|
-
.
|
|
1383
|
-
.ser(se_DeregisterApplicationCommand)
|
|
1384
|
-
.de(de_DeregisterApplicationCommand)
|
|
1211
|
+
.sc(DeregisterApplication)
|
|
1385
1212
|
.build() {
|
|
1386
1213
|
}
|
|
1387
1214
|
|
|
@@ -1389,16 +1216,11 @@ class GetApplicationCommand extends smithyClient.Command
|
|
|
1389
1216
|
.classBuilder()
|
|
1390
1217
|
.ep(commonParams)
|
|
1391
1218
|
.m(function (Command, cs, config, o) {
|
|
1392
|
-
return [
|
|
1393
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1394
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1395
|
-
];
|
|
1219
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1396
1220
|
})
|
|
1397
1221
|
.s("SsmSap", "GetApplication", {})
|
|
1398
1222
|
.n("SsmSapClient", "GetApplicationCommand")
|
|
1399
|
-
.
|
|
1400
|
-
.ser(se_GetApplicationCommand)
|
|
1401
|
-
.de(de_GetApplicationCommand)
|
|
1223
|
+
.sc(GetApplication)
|
|
1402
1224
|
.build() {
|
|
1403
1225
|
}
|
|
1404
1226
|
|
|
@@ -1406,16 +1228,11 @@ class GetComponentCommand extends smithyClient.Command
|
|
|
1406
1228
|
.classBuilder()
|
|
1407
1229
|
.ep(commonParams)
|
|
1408
1230
|
.m(function (Command, cs, config, o) {
|
|
1409
|
-
return [
|
|
1410
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1411
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1412
|
-
];
|
|
1231
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1413
1232
|
})
|
|
1414
1233
|
.s("SsmSap", "GetComponent", {})
|
|
1415
1234
|
.n("SsmSapClient", "GetComponentCommand")
|
|
1416
|
-
.
|
|
1417
|
-
.ser(se_GetComponentCommand)
|
|
1418
|
-
.de(de_GetComponentCommand)
|
|
1235
|
+
.sc(GetComponent)
|
|
1419
1236
|
.build() {
|
|
1420
1237
|
}
|
|
1421
1238
|
|
|
@@ -1423,16 +1240,11 @@ class GetConfigurationCheckOperationCommand extends smithyClient.Command
|
|
|
1423
1240
|
.classBuilder()
|
|
1424
1241
|
.ep(commonParams)
|
|
1425
1242
|
.m(function (Command, cs, config, o) {
|
|
1426
|
-
return [
|
|
1427
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1428
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1429
|
-
];
|
|
1243
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1430
1244
|
})
|
|
1431
1245
|
.s("SsmSap", "GetConfigurationCheckOperation", {})
|
|
1432
1246
|
.n("SsmSapClient", "GetConfigurationCheckOperationCommand")
|
|
1433
|
-
.
|
|
1434
|
-
.ser(se_GetConfigurationCheckOperationCommand)
|
|
1435
|
-
.de(de_GetConfigurationCheckOperationCommand)
|
|
1247
|
+
.sc(GetConfigurationCheckOperation)
|
|
1436
1248
|
.build() {
|
|
1437
1249
|
}
|
|
1438
1250
|
|
|
@@ -1440,16 +1252,11 @@ class GetDatabaseCommand extends smithyClient.Command
|
|
|
1440
1252
|
.classBuilder()
|
|
1441
1253
|
.ep(commonParams)
|
|
1442
1254
|
.m(function (Command, cs, config, o) {
|
|
1443
|
-
return [
|
|
1444
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1445
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1446
|
-
];
|
|
1255
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1447
1256
|
})
|
|
1448
1257
|
.s("SsmSap", "GetDatabase", {})
|
|
1449
1258
|
.n("SsmSapClient", "GetDatabaseCommand")
|
|
1450
|
-
.
|
|
1451
|
-
.ser(se_GetDatabaseCommand)
|
|
1452
|
-
.de(de_GetDatabaseCommand)
|
|
1259
|
+
.sc(GetDatabase)
|
|
1453
1260
|
.build() {
|
|
1454
1261
|
}
|
|
1455
1262
|
|
|
@@ -1457,16 +1264,11 @@ class GetOperationCommand extends smithyClient.Command
|
|
|
1457
1264
|
.classBuilder()
|
|
1458
1265
|
.ep(commonParams)
|
|
1459
1266
|
.m(function (Command, cs, config, o) {
|
|
1460
|
-
return [
|
|
1461
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1462
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1463
|
-
];
|
|
1267
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1464
1268
|
})
|
|
1465
1269
|
.s("SsmSap", "GetOperation", {})
|
|
1466
1270
|
.n("SsmSapClient", "GetOperationCommand")
|
|
1467
|
-
.
|
|
1468
|
-
.ser(se_GetOperationCommand)
|
|
1469
|
-
.de(de_GetOperationCommand)
|
|
1271
|
+
.sc(GetOperation)
|
|
1470
1272
|
.build() {
|
|
1471
1273
|
}
|
|
1472
1274
|
|
|
@@ -1474,16 +1276,11 @@ class GetResourcePermissionCommand extends smithyClient.Command
|
|
|
1474
1276
|
.classBuilder()
|
|
1475
1277
|
.ep(commonParams)
|
|
1476
1278
|
.m(function (Command, cs, config, o) {
|
|
1477
|
-
return [
|
|
1478
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1479
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1480
|
-
];
|
|
1279
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1481
1280
|
})
|
|
1482
1281
|
.s("SsmSap", "GetResourcePermission", {})
|
|
1483
1282
|
.n("SsmSapClient", "GetResourcePermissionCommand")
|
|
1484
|
-
.
|
|
1485
|
-
.ser(se_GetResourcePermissionCommand)
|
|
1486
|
-
.de(de_GetResourcePermissionCommand)
|
|
1283
|
+
.sc(GetResourcePermission)
|
|
1487
1284
|
.build() {
|
|
1488
1285
|
}
|
|
1489
1286
|
|
|
@@ -1491,16 +1288,11 @@ class ListApplicationsCommand extends smithyClient.Command
|
|
|
1491
1288
|
.classBuilder()
|
|
1492
1289
|
.ep(commonParams)
|
|
1493
1290
|
.m(function (Command, cs, config, o) {
|
|
1494
|
-
return [
|
|
1495
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1496
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1497
|
-
];
|
|
1291
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1498
1292
|
})
|
|
1499
1293
|
.s("SsmSap", "ListApplications", {})
|
|
1500
1294
|
.n("SsmSapClient", "ListApplicationsCommand")
|
|
1501
|
-
.
|
|
1502
|
-
.ser(se_ListApplicationsCommand)
|
|
1503
|
-
.de(de_ListApplicationsCommand)
|
|
1295
|
+
.sc(ListApplications)
|
|
1504
1296
|
.build() {
|
|
1505
1297
|
}
|
|
1506
1298
|
|
|
@@ -1508,16 +1300,11 @@ class ListComponentsCommand extends smithyClient.Command
|
|
|
1508
1300
|
.classBuilder()
|
|
1509
1301
|
.ep(commonParams)
|
|
1510
1302
|
.m(function (Command, cs, config, o) {
|
|
1511
|
-
return [
|
|
1512
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1513
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1514
|
-
];
|
|
1303
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1515
1304
|
})
|
|
1516
1305
|
.s("SsmSap", "ListComponents", {})
|
|
1517
1306
|
.n("SsmSapClient", "ListComponentsCommand")
|
|
1518
|
-
.
|
|
1519
|
-
.ser(se_ListComponentsCommand)
|
|
1520
|
-
.de(de_ListComponentsCommand)
|
|
1307
|
+
.sc(ListComponents)
|
|
1521
1308
|
.build() {
|
|
1522
1309
|
}
|
|
1523
1310
|
|
|
@@ -1525,16 +1312,11 @@ class ListConfigurationCheckDefinitionsCommand extends smithyClient.Command
|
|
|
1525
1312
|
.classBuilder()
|
|
1526
1313
|
.ep(commonParams)
|
|
1527
1314
|
.m(function (Command, cs, config, o) {
|
|
1528
|
-
return [
|
|
1529
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1530
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1531
|
-
];
|
|
1315
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1532
1316
|
})
|
|
1533
1317
|
.s("SsmSap", "ListConfigurationCheckDefinitions", {})
|
|
1534
1318
|
.n("SsmSapClient", "ListConfigurationCheckDefinitionsCommand")
|
|
1535
|
-
.
|
|
1536
|
-
.ser(se_ListConfigurationCheckDefinitionsCommand)
|
|
1537
|
-
.de(de_ListConfigurationCheckDefinitionsCommand)
|
|
1319
|
+
.sc(ListConfigurationCheckDefinitions)
|
|
1538
1320
|
.build() {
|
|
1539
1321
|
}
|
|
1540
1322
|
|
|
@@ -1542,16 +1324,11 @@ class ListConfigurationCheckOperationsCommand extends smithyClient.Command
|
|
|
1542
1324
|
.classBuilder()
|
|
1543
1325
|
.ep(commonParams)
|
|
1544
1326
|
.m(function (Command, cs, config, o) {
|
|
1545
|
-
return [
|
|
1546
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1547
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1548
|
-
];
|
|
1327
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1549
1328
|
})
|
|
1550
1329
|
.s("SsmSap", "ListConfigurationCheckOperations", {})
|
|
1551
1330
|
.n("SsmSapClient", "ListConfigurationCheckOperationsCommand")
|
|
1552
|
-
.
|
|
1553
|
-
.ser(se_ListConfigurationCheckOperationsCommand)
|
|
1554
|
-
.de(de_ListConfigurationCheckOperationsCommand)
|
|
1331
|
+
.sc(ListConfigurationCheckOperations)
|
|
1555
1332
|
.build() {
|
|
1556
1333
|
}
|
|
1557
1334
|
|
|
@@ -1559,16 +1336,11 @@ class ListDatabasesCommand extends smithyClient.Command
|
|
|
1559
1336
|
.classBuilder()
|
|
1560
1337
|
.ep(commonParams)
|
|
1561
1338
|
.m(function (Command, cs, config, o) {
|
|
1562
|
-
return [
|
|
1563
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1564
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1565
|
-
];
|
|
1339
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1566
1340
|
})
|
|
1567
1341
|
.s("SsmSap", "ListDatabases", {})
|
|
1568
1342
|
.n("SsmSapClient", "ListDatabasesCommand")
|
|
1569
|
-
.
|
|
1570
|
-
.ser(se_ListDatabasesCommand)
|
|
1571
|
-
.de(de_ListDatabasesCommand)
|
|
1343
|
+
.sc(ListDatabases)
|
|
1572
1344
|
.build() {
|
|
1573
1345
|
}
|
|
1574
1346
|
|
|
@@ -1576,16 +1348,11 @@ class ListOperationEventsCommand extends smithyClient.Command
|
|
|
1576
1348
|
.classBuilder()
|
|
1577
1349
|
.ep(commonParams)
|
|
1578
1350
|
.m(function (Command, cs, config, o) {
|
|
1579
|
-
return [
|
|
1580
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1581
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1582
|
-
];
|
|
1351
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1583
1352
|
})
|
|
1584
1353
|
.s("SsmSap", "ListOperationEvents", {})
|
|
1585
1354
|
.n("SsmSapClient", "ListOperationEventsCommand")
|
|
1586
|
-
.
|
|
1587
|
-
.ser(se_ListOperationEventsCommand)
|
|
1588
|
-
.de(de_ListOperationEventsCommand)
|
|
1355
|
+
.sc(ListOperationEvents)
|
|
1589
1356
|
.build() {
|
|
1590
1357
|
}
|
|
1591
1358
|
|
|
@@ -1593,16 +1360,11 @@ class ListOperationsCommand extends smithyClient.Command
|
|
|
1593
1360
|
.classBuilder()
|
|
1594
1361
|
.ep(commonParams)
|
|
1595
1362
|
.m(function (Command, cs, config, o) {
|
|
1596
|
-
return [
|
|
1597
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1598
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1599
|
-
];
|
|
1363
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1600
1364
|
})
|
|
1601
1365
|
.s("SsmSap", "ListOperations", {})
|
|
1602
1366
|
.n("SsmSapClient", "ListOperationsCommand")
|
|
1603
|
-
.
|
|
1604
|
-
.ser(se_ListOperationsCommand)
|
|
1605
|
-
.de(de_ListOperationsCommand)
|
|
1367
|
+
.sc(ListOperations)
|
|
1606
1368
|
.build() {
|
|
1607
1369
|
}
|
|
1608
1370
|
|
|
@@ -1610,16 +1372,11 @@ class ListSubCheckResultsCommand extends smithyClient.Command
|
|
|
1610
1372
|
.classBuilder()
|
|
1611
1373
|
.ep(commonParams)
|
|
1612
1374
|
.m(function (Command, cs, config, o) {
|
|
1613
|
-
return [
|
|
1614
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1615
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1616
|
-
];
|
|
1375
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1617
1376
|
})
|
|
1618
1377
|
.s("SsmSap", "ListSubCheckResults", {})
|
|
1619
1378
|
.n("SsmSapClient", "ListSubCheckResultsCommand")
|
|
1620
|
-
.
|
|
1621
|
-
.ser(se_ListSubCheckResultsCommand)
|
|
1622
|
-
.de(de_ListSubCheckResultsCommand)
|
|
1379
|
+
.sc(ListSubCheckResults)
|
|
1623
1380
|
.build() {
|
|
1624
1381
|
}
|
|
1625
1382
|
|
|
@@ -1627,16 +1384,11 @@ class ListSubCheckRuleResultsCommand extends smithyClient.Command
|
|
|
1627
1384
|
.classBuilder()
|
|
1628
1385
|
.ep(commonParams)
|
|
1629
1386
|
.m(function (Command, cs, config, o) {
|
|
1630
|
-
return [
|
|
1631
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1632
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1633
|
-
];
|
|
1387
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1634
1388
|
})
|
|
1635
1389
|
.s("SsmSap", "ListSubCheckRuleResults", {})
|
|
1636
1390
|
.n("SsmSapClient", "ListSubCheckRuleResultsCommand")
|
|
1637
|
-
.
|
|
1638
|
-
.ser(se_ListSubCheckRuleResultsCommand)
|
|
1639
|
-
.de(de_ListSubCheckRuleResultsCommand)
|
|
1391
|
+
.sc(ListSubCheckRuleResults)
|
|
1640
1392
|
.build() {
|
|
1641
1393
|
}
|
|
1642
1394
|
|
|
@@ -1644,16 +1396,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1644
1396
|
.classBuilder()
|
|
1645
1397
|
.ep(commonParams)
|
|
1646
1398
|
.m(function (Command, cs, config, o) {
|
|
1647
|
-
return [
|
|
1648
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1649
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1650
|
-
];
|
|
1399
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1651
1400
|
})
|
|
1652
1401
|
.s("SsmSap", "ListTagsForResource", {})
|
|
1653
1402
|
.n("SsmSapClient", "ListTagsForResourceCommand")
|
|
1654
|
-
.
|
|
1655
|
-
.ser(se_ListTagsForResourceCommand)
|
|
1656
|
-
.de(de_ListTagsForResourceCommand)
|
|
1403
|
+
.sc(ListTagsForResource)
|
|
1657
1404
|
.build() {
|
|
1658
1405
|
}
|
|
1659
1406
|
|
|
@@ -1661,16 +1408,11 @@ class PutResourcePermissionCommand extends smithyClient.Command
|
|
|
1661
1408
|
.classBuilder()
|
|
1662
1409
|
.ep(commonParams)
|
|
1663
1410
|
.m(function (Command, cs, config, o) {
|
|
1664
|
-
return [
|
|
1665
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1666
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1667
|
-
];
|
|
1411
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1668
1412
|
})
|
|
1669
1413
|
.s("SsmSap", "PutResourcePermission", {})
|
|
1670
1414
|
.n("SsmSapClient", "PutResourcePermissionCommand")
|
|
1671
|
-
.
|
|
1672
|
-
.ser(se_PutResourcePermissionCommand)
|
|
1673
|
-
.de(de_PutResourcePermissionCommand)
|
|
1415
|
+
.sc(PutResourcePermission)
|
|
1674
1416
|
.build() {
|
|
1675
1417
|
}
|
|
1676
1418
|
|
|
@@ -1678,16 +1420,11 @@ class RegisterApplicationCommand extends smithyClient.Command
|
|
|
1678
1420
|
.classBuilder()
|
|
1679
1421
|
.ep(commonParams)
|
|
1680
1422
|
.m(function (Command, cs, config, o) {
|
|
1681
|
-
return [
|
|
1682
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1683
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1684
|
-
];
|
|
1423
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1685
1424
|
})
|
|
1686
1425
|
.s("SsmSap", "RegisterApplication", {})
|
|
1687
1426
|
.n("SsmSapClient", "RegisterApplicationCommand")
|
|
1688
|
-
.
|
|
1689
|
-
.ser(se_RegisterApplicationCommand)
|
|
1690
|
-
.de(de_RegisterApplicationCommand)
|
|
1427
|
+
.sc(RegisterApplication)
|
|
1691
1428
|
.build() {
|
|
1692
1429
|
}
|
|
1693
1430
|
|
|
@@ -1695,16 +1432,11 @@ class StartApplicationCommand extends smithyClient.Command
|
|
|
1695
1432
|
.classBuilder()
|
|
1696
1433
|
.ep(commonParams)
|
|
1697
1434
|
.m(function (Command, cs, config, o) {
|
|
1698
|
-
return [
|
|
1699
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1700
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1701
|
-
];
|
|
1435
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1702
1436
|
})
|
|
1703
1437
|
.s("SsmSap", "StartApplication", {})
|
|
1704
1438
|
.n("SsmSapClient", "StartApplicationCommand")
|
|
1705
|
-
.
|
|
1706
|
-
.ser(se_StartApplicationCommand)
|
|
1707
|
-
.de(de_StartApplicationCommand)
|
|
1439
|
+
.sc(StartApplication)
|
|
1708
1440
|
.build() {
|
|
1709
1441
|
}
|
|
1710
1442
|
|
|
@@ -1712,16 +1444,11 @@ class StartApplicationRefreshCommand extends smithyClient.Command
|
|
|
1712
1444
|
.classBuilder()
|
|
1713
1445
|
.ep(commonParams)
|
|
1714
1446
|
.m(function (Command, cs, config, o) {
|
|
1715
|
-
return [
|
|
1716
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1717
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1718
|
-
];
|
|
1447
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1719
1448
|
})
|
|
1720
1449
|
.s("SsmSap", "StartApplicationRefresh", {})
|
|
1721
1450
|
.n("SsmSapClient", "StartApplicationRefreshCommand")
|
|
1722
|
-
.
|
|
1723
|
-
.ser(se_StartApplicationRefreshCommand)
|
|
1724
|
-
.de(de_StartApplicationRefreshCommand)
|
|
1451
|
+
.sc(StartApplicationRefresh)
|
|
1725
1452
|
.build() {
|
|
1726
1453
|
}
|
|
1727
1454
|
|
|
@@ -1729,16 +1456,11 @@ class StartConfigurationChecksCommand extends smithyClient.Command
|
|
|
1729
1456
|
.classBuilder()
|
|
1730
1457
|
.ep(commonParams)
|
|
1731
1458
|
.m(function (Command, cs, config, o) {
|
|
1732
|
-
return [
|
|
1733
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1734
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1735
|
-
];
|
|
1459
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1736
1460
|
})
|
|
1737
1461
|
.s("SsmSap", "StartConfigurationChecks", {})
|
|
1738
1462
|
.n("SsmSapClient", "StartConfigurationChecksCommand")
|
|
1739
|
-
.
|
|
1740
|
-
.ser(se_StartConfigurationChecksCommand)
|
|
1741
|
-
.de(de_StartConfigurationChecksCommand)
|
|
1463
|
+
.sc(StartConfigurationChecks)
|
|
1742
1464
|
.build() {
|
|
1743
1465
|
}
|
|
1744
1466
|
|
|
@@ -1746,16 +1468,11 @@ class StopApplicationCommand extends smithyClient.Command
|
|
|
1746
1468
|
.classBuilder()
|
|
1747
1469
|
.ep(commonParams)
|
|
1748
1470
|
.m(function (Command, cs, config, o) {
|
|
1749
|
-
return [
|
|
1750
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1751
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1752
|
-
];
|
|
1471
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1753
1472
|
})
|
|
1754
1473
|
.s("SsmSap", "StopApplication", {})
|
|
1755
1474
|
.n("SsmSapClient", "StopApplicationCommand")
|
|
1756
|
-
.
|
|
1757
|
-
.ser(se_StopApplicationCommand)
|
|
1758
|
-
.de(de_StopApplicationCommand)
|
|
1475
|
+
.sc(StopApplication)
|
|
1759
1476
|
.build() {
|
|
1760
1477
|
}
|
|
1761
1478
|
|
|
@@ -1763,16 +1480,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1763
1480
|
.classBuilder()
|
|
1764
1481
|
.ep(commonParams)
|
|
1765
1482
|
.m(function (Command, cs, config, o) {
|
|
1766
|
-
return [
|
|
1767
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1768
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1769
|
-
];
|
|
1483
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1770
1484
|
})
|
|
1771
1485
|
.s("SsmSap", "TagResource", {})
|
|
1772
1486
|
.n("SsmSapClient", "TagResourceCommand")
|
|
1773
|
-
.
|
|
1774
|
-
.ser(se_TagResourceCommand)
|
|
1775
|
-
.de(de_TagResourceCommand)
|
|
1487
|
+
.sc(TagResource)
|
|
1776
1488
|
.build() {
|
|
1777
1489
|
}
|
|
1778
1490
|
|
|
@@ -1780,16 +1492,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1780
1492
|
.classBuilder()
|
|
1781
1493
|
.ep(commonParams)
|
|
1782
1494
|
.m(function (Command, cs, config, o) {
|
|
1783
|
-
return [
|
|
1784
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1785
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1786
|
-
];
|
|
1495
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1787
1496
|
})
|
|
1788
1497
|
.s("SsmSap", "UntagResource", {})
|
|
1789
1498
|
.n("SsmSapClient", "UntagResourceCommand")
|
|
1790
|
-
.
|
|
1791
|
-
.ser(se_UntagResourceCommand)
|
|
1792
|
-
.de(de_UntagResourceCommand)
|
|
1499
|
+
.sc(UntagResource)
|
|
1793
1500
|
.build() {
|
|
1794
1501
|
}
|
|
1795
1502
|
|
|
@@ -1797,16 +1504,11 @@ class UpdateApplicationSettingsCommand extends smithyClient.Command
|
|
|
1797
1504
|
.classBuilder()
|
|
1798
1505
|
.ep(commonParams)
|
|
1799
1506
|
.m(function (Command, cs, config, o) {
|
|
1800
|
-
return [
|
|
1801
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1802
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1803
|
-
];
|
|
1507
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1804
1508
|
})
|
|
1805
1509
|
.s("SsmSap", "UpdateApplicationSettings", {})
|
|
1806
1510
|
.n("SsmSapClient", "UpdateApplicationSettingsCommand")
|
|
1807
|
-
.
|
|
1808
|
-
.ser(se_UpdateApplicationSettingsCommand)
|
|
1809
|
-
.de(de_UpdateApplicationSettingsCommand)
|
|
1511
|
+
.sc(UpdateApplicationSettings)
|
|
1810
1512
|
.build() {
|
|
1811
1513
|
}
|
|
1812
1514
|
|
|
@@ -1870,7 +1572,6 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1870
1572
|
get: function () { return smithyClient.Client; }
|
|
1871
1573
|
});
|
|
1872
1574
|
exports.AllocationType = AllocationType;
|
|
1873
|
-
exports.ApplicationCredentialFilterSensitiveLog = ApplicationCredentialFilterSensitiveLog;
|
|
1874
1575
|
exports.ApplicationDiscoveryStatus = ApplicationDiscoveryStatus;
|
|
1875
1576
|
exports.ApplicationStatus = ApplicationStatus;
|
|
1876
1577
|
exports.ApplicationType = ApplicationType;
|
|
@@ -1880,11 +1581,10 @@ exports.ComponentStatus = ComponentStatus;
|
|
|
1880
1581
|
exports.ComponentType = ComponentType;
|
|
1881
1582
|
exports.ConfigurationCheckOperationListingMode = ConfigurationCheckOperationListingMode;
|
|
1882
1583
|
exports.ConfigurationCheckType = ConfigurationCheckType;
|
|
1883
|
-
exports.ConflictException = ConflictException;
|
|
1584
|
+
exports.ConflictException = ConflictException$1;
|
|
1884
1585
|
exports.ConnectedEntityType = ConnectedEntityType;
|
|
1885
1586
|
exports.CredentialType = CredentialType;
|
|
1886
1587
|
exports.DatabaseConnectionMethod = DatabaseConnectionMethod;
|
|
1887
|
-
exports.DatabaseFilterSensitiveLog = DatabaseFilterSensitiveLog;
|
|
1888
1588
|
exports.DatabaseStatus = DatabaseStatus;
|
|
1889
1589
|
exports.DatabaseType = DatabaseType;
|
|
1890
1590
|
exports.DeleteResourcePermissionCommand = DeleteResourcePermissionCommand;
|
|
@@ -1894,11 +1594,10 @@ exports.GetApplicationCommand = GetApplicationCommand;
|
|
|
1894
1594
|
exports.GetComponentCommand = GetComponentCommand;
|
|
1895
1595
|
exports.GetConfigurationCheckOperationCommand = GetConfigurationCheckOperationCommand;
|
|
1896
1596
|
exports.GetDatabaseCommand = GetDatabaseCommand;
|
|
1897
|
-
exports.GetDatabaseOutputFilterSensitiveLog = GetDatabaseOutputFilterSensitiveLog;
|
|
1898
1597
|
exports.GetOperationCommand = GetOperationCommand;
|
|
1899
1598
|
exports.GetResourcePermissionCommand = GetResourcePermissionCommand;
|
|
1900
1599
|
exports.HostRole = HostRole;
|
|
1901
|
-
exports.InternalServerException = InternalServerException;
|
|
1600
|
+
exports.InternalServerException = InternalServerException$1;
|
|
1902
1601
|
exports.ListApplicationsCommand = ListApplicationsCommand;
|
|
1903
1602
|
exports.ListComponentsCommand = ListComponentsCommand;
|
|
1904
1603
|
exports.ListConfigurationCheckDefinitionsCommand = ListConfigurationCheckDefinitionsCommand;
|
|
@@ -1915,23 +1614,21 @@ exports.OperationStatus = OperationStatus;
|
|
|
1915
1614
|
exports.PermissionActionType = PermissionActionType;
|
|
1916
1615
|
exports.PutResourcePermissionCommand = PutResourcePermissionCommand;
|
|
1917
1616
|
exports.RegisterApplicationCommand = RegisterApplicationCommand;
|
|
1918
|
-
exports.RegisterApplicationInputFilterSensitiveLog = RegisterApplicationInputFilterSensitiveLog;
|
|
1919
1617
|
exports.ReplicationMode = ReplicationMode;
|
|
1920
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1618
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
1921
1619
|
exports.RuleResultStatus = RuleResultStatus;
|
|
1922
1620
|
exports.SsmSap = SsmSap;
|
|
1923
1621
|
exports.SsmSapClient = SsmSapClient;
|
|
1924
|
-
exports.SsmSapServiceException = SsmSapServiceException;
|
|
1622
|
+
exports.SsmSapServiceException = SsmSapServiceException$1;
|
|
1925
1623
|
exports.StartApplicationCommand = StartApplicationCommand;
|
|
1926
1624
|
exports.StartApplicationRefreshCommand = StartApplicationRefreshCommand;
|
|
1927
1625
|
exports.StartConfigurationChecksCommand = StartConfigurationChecksCommand;
|
|
1928
1626
|
exports.StopApplicationCommand = StopApplicationCommand;
|
|
1929
1627
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1930
|
-
exports.UnauthorizedException = UnauthorizedException;
|
|
1628
|
+
exports.UnauthorizedException = UnauthorizedException$1;
|
|
1931
1629
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1932
1630
|
exports.UpdateApplicationSettingsCommand = UpdateApplicationSettingsCommand;
|
|
1933
|
-
exports.
|
|
1934
|
-
exports.ValidationException = ValidationException;
|
|
1631
|
+
exports.ValidationException = ValidationException$1;
|
|
1935
1632
|
exports.paginateListApplications = paginateListApplications;
|
|
1936
1633
|
exports.paginateListComponents = paginateListComponents;
|
|
1937
1634
|
exports.paginateListConfigurationCheckDefinitions = paginateListConfigurationCheckDefinitions;
|