@aws-sdk/client-ssm-sap 3.986.0 → 3.988.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +46 -1011
- package/dist-cjs/models/SsmSapServiceException.js +12 -0
- package/dist-cjs/models/errors.js +79 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +815 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +40 -34
- package/dist-types/schemas/schemas_0.d.ts +13 -6
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +8 -6
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var SsmSapServiceException = require('./models/SsmSapServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,874 +113,6 @@ class SsmSapClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class SsmSapServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, SsmSapServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class ConflictException extends SsmSapServiceException {
|
|
121
|
-
name = "ConflictException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
Message;
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "ConflictException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
131
|
-
this.Message = opts.Message;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
class InternalServerException extends SsmSapServiceException {
|
|
135
|
-
name = "InternalServerException";
|
|
136
|
-
$fault = "server";
|
|
137
|
-
Message;
|
|
138
|
-
constructor(opts) {
|
|
139
|
-
super({
|
|
140
|
-
name: "InternalServerException",
|
|
141
|
-
$fault: "server",
|
|
142
|
-
...opts,
|
|
143
|
-
});
|
|
144
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
145
|
-
this.Message = opts.Message;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
class ResourceNotFoundException extends SsmSapServiceException {
|
|
149
|
-
name = "ResourceNotFoundException";
|
|
150
|
-
$fault = "client";
|
|
151
|
-
Message;
|
|
152
|
-
constructor(opts) {
|
|
153
|
-
super({
|
|
154
|
-
name: "ResourceNotFoundException",
|
|
155
|
-
$fault: "client",
|
|
156
|
-
...opts,
|
|
157
|
-
});
|
|
158
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
159
|
-
this.Message = opts.Message;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
class ValidationException extends SsmSapServiceException {
|
|
163
|
-
name = "ValidationException";
|
|
164
|
-
$fault = "client";
|
|
165
|
-
Message;
|
|
166
|
-
constructor(opts) {
|
|
167
|
-
super({
|
|
168
|
-
name: "ValidationException",
|
|
169
|
-
$fault: "client",
|
|
170
|
-
...opts,
|
|
171
|
-
});
|
|
172
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
173
|
-
this.Message = opts.Message;
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
class UnauthorizedException extends SsmSapServiceException {
|
|
177
|
-
name = "UnauthorizedException";
|
|
178
|
-
$fault = "client";
|
|
179
|
-
Message;
|
|
180
|
-
constructor(opts) {
|
|
181
|
-
super({
|
|
182
|
-
name: "UnauthorizedException",
|
|
183
|
-
$fault: "client",
|
|
184
|
-
...opts,
|
|
185
|
-
});
|
|
186
|
-
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
187
|
-
this.Message = opts.Message;
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
const _A = "Application";
|
|
192
|
-
const _AA = "ApplicationArn";
|
|
193
|
-
const _AAA = "AssociatedApplicationArns";
|
|
194
|
-
const _AAT = "ApplicableApplicationTypes";
|
|
195
|
-
const _AC = "ApplicationCredential";
|
|
196
|
-
const _ACL = "ApplicationCredentialList";
|
|
197
|
-
const _AH = "AssociatedHost";
|
|
198
|
-
const _AI = "ApplicationId";
|
|
199
|
-
const _ARA = "AppRegistryArn";
|
|
200
|
-
const _AS = "ApplicationSummary";
|
|
201
|
-
const _ASL = "ApplicationSummaryList";
|
|
202
|
-
const _AT = "ActionType";
|
|
203
|
-
const _ATl = "AllocationType";
|
|
204
|
-
const _ATp = "ApplicationType";
|
|
205
|
-
const _Ap = "Applications";
|
|
206
|
-
const _Ar = "Arn";
|
|
207
|
-
const _B = "Backint";
|
|
208
|
-
const _BC = "BackintConfig";
|
|
209
|
-
const _BM = "BackintMode";
|
|
210
|
-
const _C = "Components";
|
|
211
|
-
const _CC = "ChildComponents";
|
|
212
|
-
const _CCA = "ConnectedComponentArns";
|
|
213
|
-
const _CCD = "ConfigurationCheckDefinition";
|
|
214
|
-
const _CCDL = "ConfigurationCheckDefinitionList";
|
|
215
|
-
const _CCDo = "ConfigurationCheckDescription";
|
|
216
|
-
const _CCI = "ConfigurationCheckId";
|
|
217
|
-
const _CCIo = "ConfigurationCheckIds";
|
|
218
|
-
const _CCN = "ConfigurationCheckName";
|
|
219
|
-
const _CCO = "ConfigurationCheckOperation";
|
|
220
|
-
const _CCOL = "ConfigurationCheckOperationList";
|
|
221
|
-
const _CCOo = "ConfigurationCheckOperations";
|
|
222
|
-
const _CCo = "ConfigurationChecks";
|
|
223
|
-
const _CE = "ConflictException";
|
|
224
|
-
const _CI = "ComponentId";
|
|
225
|
-
const _CIL = "ComponentInfoList";
|
|
226
|
-
const _CIo = "ComponentInfo";
|
|
227
|
-
const _CIom = "ComponentsInfo";
|
|
228
|
-
const _CIon = "ConnectionIp";
|
|
229
|
-
const _CS = "ComponentSummary";
|
|
230
|
-
const _CSL = "ComponentSummaryList";
|
|
231
|
-
const _CSl = "ClusterStatus";
|
|
232
|
-
const _CT = "CredentialType";
|
|
233
|
-
const _CTAOU = "CredentialsToAddOrUpdate";
|
|
234
|
-
const _CTR = "CredentialsToRemove";
|
|
235
|
-
const _CTo = "ComponentType";
|
|
236
|
-
const _Co = "Component";
|
|
237
|
-
const _Cr = "Credentials";
|
|
238
|
-
const _D = "Databases";
|
|
239
|
-
const _DA = "DatabaseArn";
|
|
240
|
-
const _DAI = "DeregisterApplicationInput";
|
|
241
|
-
const _DAO = "DeregisterApplicationOutput";
|
|
242
|
-
const _DAe = "DeregisterApplication";
|
|
243
|
-
const _DC = "DatabaseConnection";
|
|
244
|
-
const _DCM = "DatabaseConnectionMethod";
|
|
245
|
-
const _DI = "DatabaseId";
|
|
246
|
-
const _DN = "DatabaseName";
|
|
247
|
-
const _DRP = "DeleteResourcePermission";
|
|
248
|
-
const _DRPI = "DeleteResourcePermissionInput";
|
|
249
|
-
const _DRPO = "DeleteResourcePermissionOutput";
|
|
250
|
-
const _DS = "DiscoveryStatus";
|
|
251
|
-
const _DSL = "DatabaseSummaryList";
|
|
252
|
-
const _DSa = "DatabaseSummary";
|
|
253
|
-
const _DT = "DatabaseType";
|
|
254
|
-
const _Da = "Database";
|
|
255
|
-
const _De = "Description";
|
|
256
|
-
const _ECII = "EC2InstanceId";
|
|
257
|
-
const _EII = "Ec2InstanceId";
|
|
258
|
-
const _ENBIP = "EnsureNoBackupInProcess";
|
|
259
|
-
const _ER = "EnqueueReplication";
|
|
260
|
-
const _ET = "EndTime";
|
|
261
|
-
const _F = "Filter";
|
|
262
|
-
const _FL = "FilterList";
|
|
263
|
-
const _Fa = "Failed";
|
|
264
|
-
const _Fi = "Filters";
|
|
265
|
-
const _GA = "GetApplication";
|
|
266
|
-
const _GAI = "GetApplicationInput";
|
|
267
|
-
const _GAO = "GetApplicationOutput";
|
|
268
|
-
const _GC = "GetComponent";
|
|
269
|
-
const _GCCO = "GetConfigurationCheckOperation";
|
|
270
|
-
const _GCCOI = "GetConfigurationCheckOperationInput";
|
|
271
|
-
const _GCCOO = "GetConfigurationCheckOperationOutput";
|
|
272
|
-
const _GCI = "GetComponentInput";
|
|
273
|
-
const _GCO = "GetComponentOutput";
|
|
274
|
-
const _GD = "GetDatabase";
|
|
275
|
-
const _GDI = "GetDatabaseInput";
|
|
276
|
-
const _GDO = "GetDatabaseOutput";
|
|
277
|
-
const _GO = "GetOperation";
|
|
278
|
-
const _GOI = "GetOperationInput";
|
|
279
|
-
const _GOO = "GetOperationOutput";
|
|
280
|
-
const _GRP = "GetResourcePermission";
|
|
281
|
-
const _GRPI = "GetResourcePermissionInput";
|
|
282
|
-
const _GRPO = "GetResourcePermissionOutput";
|
|
283
|
-
const _H = "Hostname";
|
|
284
|
-
const _HI = "HostIp";
|
|
285
|
-
const _HL = "HostList";
|
|
286
|
-
const _HN = "HostName";
|
|
287
|
-
const _HOM = "HsrOperationMode";
|
|
288
|
-
const _HR = "HostRole";
|
|
289
|
-
const _HRM = "HsrReplicationMode";
|
|
290
|
-
const _HT = "HsrTier";
|
|
291
|
-
const _HV = "HdbVersion";
|
|
292
|
-
const _Ho = "Hosts";
|
|
293
|
-
const _Hos = "Host";
|
|
294
|
-
const _I = "Id";
|
|
295
|
-
const _IA = "IpAddresses";
|
|
296
|
-
const _IAL = "IpAddressList";
|
|
297
|
-
const _IAM = "IpAddressMember";
|
|
298
|
-
const _IAp = "IpAddress";
|
|
299
|
-
const _IEIS = "IncludeEc2InstanceShutdown";
|
|
300
|
-
const _II = "InstanceId";
|
|
301
|
-
const _ISE = "InternalServerException";
|
|
302
|
-
const _In = "Instances";
|
|
303
|
-
const _Inf = "Info";
|
|
304
|
-
const _LA = "ListApplications";
|
|
305
|
-
const _LAI = "ListApplicationsInput";
|
|
306
|
-
const _LAO = "ListApplicationsOutput";
|
|
307
|
-
const _LC = "ListComponents";
|
|
308
|
-
const _LCCD = "ListConfigurationCheckDefinitions";
|
|
309
|
-
const _LCCDI = "ListConfigurationCheckDefinitionsInput";
|
|
310
|
-
const _LCCDO = "ListConfigurationCheckDefinitionsOutput";
|
|
311
|
-
const _LCCO = "ListConfigurationCheckOperations";
|
|
312
|
-
const _LCCOI = "ListConfigurationCheckOperationsInput";
|
|
313
|
-
const _LCCOO = "ListConfigurationCheckOperationsOutput";
|
|
314
|
-
const _LCI = "ListComponentsInput";
|
|
315
|
-
const _LCO = "ListComponentsOutput";
|
|
316
|
-
const _LD = "ListDatabases";
|
|
317
|
-
const _LDI = "ListDatabasesInput";
|
|
318
|
-
const _LDO = "ListDatabasesOutput";
|
|
319
|
-
const _LM = "ListMode";
|
|
320
|
-
const _LO = "ListOperations";
|
|
321
|
-
const _LOE = "ListOperationEvents";
|
|
322
|
-
const _LOEI = "ListOperationEventsInput";
|
|
323
|
-
const _LOEO = "ListOperationEventsOutput";
|
|
324
|
-
const _LOI = "ListOperationsInput";
|
|
325
|
-
const _LOO = "ListOperationsOutput";
|
|
326
|
-
const _LSCR = "ListSubCheckResults";
|
|
327
|
-
const _LSCRI = "ListSubCheckResultsInput";
|
|
328
|
-
const _LSCRO = "ListSubCheckResultsOutput";
|
|
329
|
-
const _LSCRR = "ListSubCheckRuleResults";
|
|
330
|
-
const _LSCRRI = "ListSubCheckRuleResultsInput";
|
|
331
|
-
const _LSCRRO = "ListSubCheckRuleResultsOutput";
|
|
332
|
-
const _LTFR = "ListTagsForResource";
|
|
333
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
334
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
335
|
-
const _LU = "LastUpdated";
|
|
336
|
-
const _LUT = "LastUpdatedTime";
|
|
337
|
-
const _M = "Message";
|
|
338
|
-
const _MR = "MaxResults";
|
|
339
|
-
const _Me = "Metadata";
|
|
340
|
-
const _N = "Name";
|
|
341
|
-
const _NT = "NextToken";
|
|
342
|
-
const _O = "Operator";
|
|
343
|
-
const _OE = "OperationEvents";
|
|
344
|
-
const _OEL = "OperationEventList";
|
|
345
|
-
const _OEp = "OperationEvent";
|
|
346
|
-
const _OI = "OperationId";
|
|
347
|
-
const _OIp = "OperationIds";
|
|
348
|
-
const _OL = "OperationList";
|
|
349
|
-
const _OP = "OperationProperties";
|
|
350
|
-
const _OV = "OsVersion";
|
|
351
|
-
const _Op = "Operation";
|
|
352
|
-
const _Ope = "Operations";
|
|
353
|
-
const _P = "Policy";
|
|
354
|
-
const _PC = "ParentComponent";
|
|
355
|
-
const _PH = "PrimaryHost";
|
|
356
|
-
const _PRP = "PutResourcePermission";
|
|
357
|
-
const _PRPI = "PutResourcePermissionInput";
|
|
358
|
-
const _PRPO = "PutResourcePermissionOutput";
|
|
359
|
-
const _Pa = "Passed";
|
|
360
|
-
const _Pr = "Primary";
|
|
361
|
-
const _Pro = "Properties";
|
|
362
|
-
const _R = "Resilience";
|
|
363
|
-
const _RA = "ResourceArn";
|
|
364
|
-
const _RAI = "RegisterApplicationInput";
|
|
365
|
-
const _RAO = "RegisterApplicationOutput";
|
|
366
|
-
const _RAe = "RegisterApplication";
|
|
367
|
-
const _RI = "ResourceId";
|
|
368
|
-
const _RNFE = "ResourceNotFoundException";
|
|
369
|
-
const _RR = "RuleResults";
|
|
370
|
-
const _RRL = "RuleResultList";
|
|
371
|
-
const _RRu = "RuleResult";
|
|
372
|
-
const _RSC = "RuleStatusCounts";
|
|
373
|
-
const _RT = "ResourceType";
|
|
374
|
-
const _Re = "Resource";
|
|
375
|
-
const _Ref = "References";
|
|
376
|
-
const _S = "Status";
|
|
377
|
-
const _SA = "StartApplication";
|
|
378
|
-
const _SAI = "StartApplicationInput";
|
|
379
|
-
const _SAIt = "StopApplicationInput";
|
|
380
|
-
const _SAO = "StartApplicationOutput";
|
|
381
|
-
const _SAOt = "StopApplicationOutput";
|
|
382
|
-
const _SAR = "StartApplicationRefresh";
|
|
383
|
-
const _SARI = "StartApplicationRefreshInput";
|
|
384
|
-
const _SARO = "StartApplicationRefreshOutput";
|
|
385
|
-
const _SAt = "StopApplication";
|
|
386
|
-
const _SCC = "StartConfigurationChecks";
|
|
387
|
-
const _SCCI = "StartConfigurationChecksInput";
|
|
388
|
-
const _SCCO = "StartConfigurationChecksOutput";
|
|
389
|
-
const _SCE = "StopConnectedEntity";
|
|
390
|
-
const _SCR = "SubCheckResults";
|
|
391
|
-
const _SCRI = "SubCheckResultId";
|
|
392
|
-
const _SCRL = "SubCheckResultList";
|
|
393
|
-
const _SCRu = "SubCheckResult";
|
|
394
|
-
const _SF = "SapFeature";
|
|
395
|
-
const _SH = "SapHostname";
|
|
396
|
-
const _SI = "SecretId";
|
|
397
|
-
const _SIN = "SapInstanceNumber";
|
|
398
|
-
const _SKV = "SapKernelVersion";
|
|
399
|
-
const _SM = "StatusMessage";
|
|
400
|
-
const _SN = "SystemNumber";
|
|
401
|
-
const _SQLP = "SQLPort";
|
|
402
|
-
const _SRA = "SourceResourceArn";
|
|
403
|
-
const _ST = "StartTime";
|
|
404
|
-
const _Si = "Sid";
|
|
405
|
-
const _T = "Type";
|
|
406
|
-
const _TR = "TagResource";
|
|
407
|
-
const _TRR = "TagResourceRequest";
|
|
408
|
-
const _TRRa = "TagResourceResponse";
|
|
409
|
-
const _Ta = "Tags";
|
|
410
|
-
const _Ti = "Timestamp";
|
|
411
|
-
const _U = "Unknown";
|
|
412
|
-
const _UAS = "UpdateApplicationSettings";
|
|
413
|
-
const _UASI = "UpdateApplicationSettingsInput";
|
|
414
|
-
const _UASO = "UpdateApplicationSettingsOutput";
|
|
415
|
-
const _UE = "UnauthorizedException";
|
|
416
|
-
const _UR = "UntagResource";
|
|
417
|
-
const _URR = "UntagResourceRequest";
|
|
418
|
-
const _URRn = "UntagResourceResponse";
|
|
419
|
-
const _V = "Value";
|
|
420
|
-
const _VE = "ValidationException";
|
|
421
|
-
const _W = "Warning";
|
|
422
|
-
const _c = "client";
|
|
423
|
-
const _e = "error";
|
|
424
|
-
const _h = "http";
|
|
425
|
-
const _hE = "httpError";
|
|
426
|
-
const _hQ = "httpQuery";
|
|
427
|
-
const _rA = "resourceArn";
|
|
428
|
-
const _s = "server";
|
|
429
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.ssmsap";
|
|
430
|
-
const _sp = "sparse";
|
|
431
|
-
const _t = "tags";
|
|
432
|
-
const _tK = "tagKeys";
|
|
433
|
-
const n0 = "com.amazonaws.ssmsap";
|
|
434
|
-
var SecretId = [0, n0, _SI, 8, 0];
|
|
435
|
-
var Application$ = [3, n0, _A,
|
|
436
|
-
0,
|
|
437
|
-
[_I, _T, _Ar, _ARA, _S, _DS, _C, _LU, _SM, _AAA],
|
|
438
|
-
[0, 0, 0, 0, 0, 0, 64 | 0, 4, 0, 64 | 0]
|
|
439
|
-
];
|
|
440
|
-
var ApplicationCredential$ = [3, n0, _AC,
|
|
441
|
-
0,
|
|
442
|
-
[_DN, _CT, _SI],
|
|
443
|
-
[0, 0, [() => SecretId, 0]], 3
|
|
444
|
-
];
|
|
445
|
-
var ApplicationSummary$ = [3, n0, _AS,
|
|
446
|
-
0,
|
|
447
|
-
[_I, _DS, _T, _Ar, _Ta],
|
|
448
|
-
[0, 0, 0, 0, 128 | 0]
|
|
449
|
-
];
|
|
450
|
-
var AssociatedHost$ = [3, n0, _AH,
|
|
451
|
-
0,
|
|
452
|
-
[_H, _EII, _IA, _OV],
|
|
453
|
-
[0, 0, () => IpAddressList, 0]
|
|
454
|
-
];
|
|
455
|
-
var BackintConfig$ = [3, n0, _BC,
|
|
456
|
-
0,
|
|
457
|
-
[_BM, _ENBIP],
|
|
458
|
-
[0, 2], 2
|
|
459
|
-
];
|
|
460
|
-
var Component$ = [3, n0, _Co,
|
|
461
|
-
0,
|
|
462
|
-
[_CI, _Si, _SN, _PC, _CC, _AI, _CTo, _S, _SH, _SF, _SKV, _HV, _R, _AH, _D, _Ho, _PH, _DC, _LU, _Ar],
|
|
463
|
-
[0, 0, 0, 0, 64 | 0, 0, 0, 0, 0, 0, 0, 0, () => Resilience$, () => AssociatedHost$, 64 | 0, () => HostList, 0, () => DatabaseConnection$, 4, 0]
|
|
464
|
-
];
|
|
465
|
-
var ComponentInfo$ = [3, n0, _CIo,
|
|
466
|
-
0,
|
|
467
|
-
[_CTo, _Si, _EII],
|
|
468
|
-
[0, 0, 0], 3
|
|
469
|
-
];
|
|
470
|
-
var ComponentSummary$ = [3, n0, _CS,
|
|
471
|
-
0,
|
|
472
|
-
[_AI, _CI, _CTo, _Ta, _Ar],
|
|
473
|
-
[0, 0, 0, 128 | 0, 0]
|
|
474
|
-
];
|
|
475
|
-
var ConfigurationCheckDefinition$ = [3, n0, _CCD,
|
|
476
|
-
0,
|
|
477
|
-
[_I, _N, _De, _AAT],
|
|
478
|
-
[0, 0, 0, 64 | 0]
|
|
479
|
-
];
|
|
480
|
-
var ConfigurationCheckOperation$ = [3, n0, _CCO,
|
|
481
|
-
0,
|
|
482
|
-
[_I, _AI, _S, _SM, _CCI, _CCN, _CCDo, _ST, _ET, _RSC],
|
|
483
|
-
[0, 0, 0, 0, 0, 0, 0, 4, 4, () => RuleStatusCounts$]
|
|
484
|
-
];
|
|
485
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
486
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
487
|
-
[_M],
|
|
488
|
-
[0]
|
|
489
|
-
];
|
|
490
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
491
|
-
var Database$ = [3, n0, _Da,
|
|
492
|
-
0,
|
|
493
|
-
[_AI, _CI, _Cr, _DI, _DN, _DT, _Ar, _S, _PH, _SQLP, _LU, _CCA],
|
|
494
|
-
[0, 0, [() => ApplicationCredentialList, 0], 0, 0, 0, 0, 0, 0, 1, 4, 64 | 0]
|
|
495
|
-
];
|
|
496
|
-
var DatabaseConnection$ = [3, n0, _DC,
|
|
497
|
-
0,
|
|
498
|
-
[_DCM, _DA, _CIon],
|
|
499
|
-
[0, 0, 0]
|
|
500
|
-
];
|
|
501
|
-
var DatabaseSummary$ = [3, n0, _DSa,
|
|
502
|
-
0,
|
|
503
|
-
[_AI, _CI, _DI, _DT, _Ar, _Ta],
|
|
504
|
-
[0, 0, 0, 0, 0, 128 | 0]
|
|
505
|
-
];
|
|
506
|
-
var DeleteResourcePermissionInput$ = [3, n0, _DRPI,
|
|
507
|
-
0,
|
|
508
|
-
[_RA, _AT, _SRA],
|
|
509
|
-
[0, 0, 0], 1
|
|
510
|
-
];
|
|
511
|
-
var DeleteResourcePermissionOutput$ = [3, n0, _DRPO,
|
|
512
|
-
0,
|
|
513
|
-
[_P],
|
|
514
|
-
[0]
|
|
515
|
-
];
|
|
516
|
-
var DeregisterApplicationInput$ = [3, n0, _DAI,
|
|
517
|
-
0,
|
|
518
|
-
[_AI],
|
|
519
|
-
[0], 1
|
|
520
|
-
];
|
|
521
|
-
var DeregisterApplicationOutput$ = [3, n0, _DAO,
|
|
522
|
-
0,
|
|
523
|
-
[],
|
|
524
|
-
[]
|
|
525
|
-
];
|
|
526
|
-
var Filter$ = [3, n0, _F,
|
|
527
|
-
0,
|
|
528
|
-
[_N, _V, _O],
|
|
529
|
-
[0, 0, 0], 3
|
|
530
|
-
];
|
|
531
|
-
var GetApplicationInput$ = [3, n0, _GAI,
|
|
532
|
-
0,
|
|
533
|
-
[_AI, _AA, _ARA],
|
|
534
|
-
[0, 0, 0]
|
|
535
|
-
];
|
|
536
|
-
var GetApplicationOutput$ = [3, n0, _GAO,
|
|
537
|
-
0,
|
|
538
|
-
[_A, _Ta],
|
|
539
|
-
[() => Application$, 128 | 0]
|
|
540
|
-
];
|
|
541
|
-
var GetComponentInput$ = [3, n0, _GCI,
|
|
542
|
-
0,
|
|
543
|
-
[_AI, _CI],
|
|
544
|
-
[0, 0], 2
|
|
545
|
-
];
|
|
546
|
-
var GetComponentOutput$ = [3, n0, _GCO,
|
|
547
|
-
0,
|
|
548
|
-
[_Co, _Ta],
|
|
549
|
-
[() => Component$, 128 | 0]
|
|
550
|
-
];
|
|
551
|
-
var GetConfigurationCheckOperationInput$ = [3, n0, _GCCOI,
|
|
552
|
-
0,
|
|
553
|
-
[_OI],
|
|
554
|
-
[0], 1
|
|
555
|
-
];
|
|
556
|
-
var GetConfigurationCheckOperationOutput$ = [3, n0, _GCCOO,
|
|
557
|
-
0,
|
|
558
|
-
[_CCO],
|
|
559
|
-
[() => ConfigurationCheckOperation$]
|
|
560
|
-
];
|
|
561
|
-
var GetDatabaseInput$ = [3, n0, _GDI,
|
|
562
|
-
0,
|
|
563
|
-
[_AI, _CI, _DI, _DA],
|
|
564
|
-
[0, 0, 0, 0]
|
|
565
|
-
];
|
|
566
|
-
var GetDatabaseOutput$ = [3, n0, _GDO,
|
|
567
|
-
0,
|
|
568
|
-
[_Da, _Ta],
|
|
569
|
-
[[() => Database$, 0], 128 | 0]
|
|
570
|
-
];
|
|
571
|
-
var GetOperationInput$ = [3, n0, _GOI,
|
|
572
|
-
0,
|
|
573
|
-
[_OI],
|
|
574
|
-
[0], 1
|
|
575
|
-
];
|
|
576
|
-
var GetOperationOutput$ = [3, n0, _GOO,
|
|
577
|
-
0,
|
|
578
|
-
[_Op],
|
|
579
|
-
[[() => Operation$, 0]]
|
|
580
|
-
];
|
|
581
|
-
var GetResourcePermissionInput$ = [3, n0, _GRPI,
|
|
582
|
-
0,
|
|
583
|
-
[_RA, _AT],
|
|
584
|
-
[0, 0], 1
|
|
585
|
-
];
|
|
586
|
-
var GetResourcePermissionOutput$ = [3, n0, _GRPO,
|
|
587
|
-
0,
|
|
588
|
-
[_P],
|
|
589
|
-
[0]
|
|
590
|
-
];
|
|
591
|
-
var Host$ = [3, n0, _Hos,
|
|
592
|
-
0,
|
|
593
|
-
[_HN, _HI, _ECII, _II, _HR, _OV],
|
|
594
|
-
[0, 0, 0, 0, 0, 0]
|
|
595
|
-
];
|
|
596
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
597
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
598
|
-
[_M],
|
|
599
|
-
[0]
|
|
600
|
-
];
|
|
601
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
602
|
-
var IpAddressMember$ = [3, n0, _IAM,
|
|
603
|
-
0,
|
|
604
|
-
[_IAp, _Pr, _ATl],
|
|
605
|
-
[0, 2, 0]
|
|
606
|
-
];
|
|
607
|
-
var ListApplicationsInput$ = [3, n0, _LAI,
|
|
608
|
-
0,
|
|
609
|
-
[_NT, _MR, _Fi],
|
|
610
|
-
[0, 1, () => FilterList]
|
|
611
|
-
];
|
|
612
|
-
var ListApplicationsOutput$ = [3, n0, _LAO,
|
|
613
|
-
0,
|
|
614
|
-
[_Ap, _NT],
|
|
615
|
-
[() => ApplicationSummaryList, 0]
|
|
616
|
-
];
|
|
617
|
-
var ListComponentsInput$ = [3, n0, _LCI,
|
|
618
|
-
0,
|
|
619
|
-
[_AI, _NT, _MR],
|
|
620
|
-
[0, 0, 1]
|
|
621
|
-
];
|
|
622
|
-
var ListComponentsOutput$ = [3, n0, _LCO,
|
|
623
|
-
0,
|
|
624
|
-
[_C, _NT],
|
|
625
|
-
[() => ComponentSummaryList, 0]
|
|
626
|
-
];
|
|
627
|
-
var ListConfigurationCheckDefinitionsInput$ = [3, n0, _LCCDI,
|
|
628
|
-
0,
|
|
629
|
-
[_MR, _NT],
|
|
630
|
-
[1, 0]
|
|
631
|
-
];
|
|
632
|
-
var ListConfigurationCheckDefinitionsOutput$ = [3, n0, _LCCDO,
|
|
633
|
-
0,
|
|
634
|
-
[_CCo, _NT],
|
|
635
|
-
[() => ConfigurationCheckDefinitionList, 0]
|
|
636
|
-
];
|
|
637
|
-
var ListConfigurationCheckOperationsInput$ = [3, n0, _LCCOI,
|
|
638
|
-
0,
|
|
639
|
-
[_AI, _LM, _MR, _NT, _Fi],
|
|
640
|
-
[0, 0, 1, 0, () => FilterList], 1
|
|
641
|
-
];
|
|
642
|
-
var ListConfigurationCheckOperationsOutput$ = [3, n0, _LCCOO,
|
|
643
|
-
0,
|
|
644
|
-
[_CCOo, _NT],
|
|
645
|
-
[() => ConfigurationCheckOperationList, 0]
|
|
646
|
-
];
|
|
647
|
-
var ListDatabasesInput$ = [3, n0, _LDI,
|
|
648
|
-
0,
|
|
649
|
-
[_AI, _CI, _NT, _MR],
|
|
650
|
-
[0, 0, 0, 1]
|
|
651
|
-
];
|
|
652
|
-
var ListDatabasesOutput$ = [3, n0, _LDO,
|
|
653
|
-
0,
|
|
654
|
-
[_D, _NT],
|
|
655
|
-
[() => DatabaseSummaryList, 0]
|
|
656
|
-
];
|
|
657
|
-
var ListOperationEventsInput$ = [3, n0, _LOEI,
|
|
658
|
-
0,
|
|
659
|
-
[_OI, _MR, _NT, _Fi],
|
|
660
|
-
[0, 1, 0, () => FilterList], 1
|
|
661
|
-
];
|
|
662
|
-
var ListOperationEventsOutput$ = [3, n0, _LOEO,
|
|
663
|
-
0,
|
|
664
|
-
[_OE, _NT],
|
|
665
|
-
[() => OperationEventList, 0]
|
|
666
|
-
];
|
|
667
|
-
var ListOperationsInput$ = [3, n0, _LOI,
|
|
668
|
-
0,
|
|
669
|
-
[_AI, _MR, _NT, _Fi],
|
|
670
|
-
[0, 1, 0, () => FilterList], 1
|
|
671
|
-
];
|
|
672
|
-
var ListOperationsOutput$ = [3, n0, _LOO,
|
|
673
|
-
0,
|
|
674
|
-
[_Ope, _NT],
|
|
675
|
-
[[() => OperationList, 0], 0]
|
|
676
|
-
];
|
|
677
|
-
var ListSubCheckResultsInput$ = [3, n0, _LSCRI,
|
|
678
|
-
0,
|
|
679
|
-
[_OI, _MR, _NT],
|
|
680
|
-
[0, 1, 0], 1
|
|
681
|
-
];
|
|
682
|
-
var ListSubCheckResultsOutput$ = [3, n0, _LSCRO,
|
|
683
|
-
0,
|
|
684
|
-
[_SCR, _NT],
|
|
685
|
-
[() => SubCheckResultList, 0]
|
|
686
|
-
];
|
|
687
|
-
var ListSubCheckRuleResultsInput$ = [3, n0, _LSCRRI,
|
|
688
|
-
0,
|
|
689
|
-
[_SCRI, _MR, _NT],
|
|
690
|
-
[0, 1, 0], 1
|
|
691
|
-
];
|
|
692
|
-
var ListSubCheckRuleResultsOutput$ = [3, n0, _LSCRRO,
|
|
693
|
-
0,
|
|
694
|
-
[_RR, _NT],
|
|
695
|
-
[() => RuleResultList, 0]
|
|
696
|
-
];
|
|
697
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
698
|
-
0,
|
|
699
|
-
[_rA],
|
|
700
|
-
[[0, 1]], 1
|
|
701
|
-
];
|
|
702
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
703
|
-
0,
|
|
704
|
-
[_t],
|
|
705
|
-
[128 | 0]
|
|
706
|
-
];
|
|
707
|
-
var Operation$ = [3, n0, _Op,
|
|
708
|
-
0,
|
|
709
|
-
[_I, _T, _S, _SM, _Pro, _RT, _RI, _RA, _ST, _ET, _LUT],
|
|
710
|
-
[0, 0, 0, 0, [() => OperationProperties, 0], 0, 0, 0, 4, 4, 4]
|
|
711
|
-
];
|
|
712
|
-
var OperationEvent$ = [3, n0, _OEp,
|
|
713
|
-
0,
|
|
714
|
-
[_De, _Re, _S, _SM, _Ti],
|
|
715
|
-
[0, () => Resource$, 0, 0, 4]
|
|
716
|
-
];
|
|
717
|
-
var PutResourcePermissionInput$ = [3, n0, _PRPI,
|
|
718
|
-
0,
|
|
719
|
-
[_AT, _SRA, _RA],
|
|
720
|
-
[0, 0, 0], 3
|
|
721
|
-
];
|
|
722
|
-
var PutResourcePermissionOutput$ = [3, n0, _PRPO,
|
|
723
|
-
0,
|
|
724
|
-
[_P],
|
|
725
|
-
[0]
|
|
726
|
-
];
|
|
727
|
-
var RegisterApplicationInput$ = [3, n0, _RAI,
|
|
728
|
-
0,
|
|
729
|
-
[_AI, _ATp, _In, _SIN, _Si, _Ta, _Cr, _DA, _CIom],
|
|
730
|
-
[0, 0, 64 | 0, 0, 0, 128 | 0, [() => ApplicationCredentialList, 0], 0, () => ComponentInfoList], 3
|
|
731
|
-
];
|
|
732
|
-
var RegisterApplicationOutput$ = [3, n0, _RAO,
|
|
733
|
-
0,
|
|
734
|
-
[_A, _OI],
|
|
735
|
-
[() => Application$, 0]
|
|
736
|
-
];
|
|
737
|
-
var Resilience$ = [3, n0, _R,
|
|
738
|
-
0,
|
|
739
|
-
[_HT, _HRM, _HOM, _CSl, _ER],
|
|
740
|
-
[0, 0, 0, 0, 2]
|
|
741
|
-
];
|
|
742
|
-
var Resource$ = [3, n0, _Re,
|
|
743
|
-
0,
|
|
744
|
-
[_RA, _RT],
|
|
745
|
-
[0, 0]
|
|
746
|
-
];
|
|
747
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
748
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
749
|
-
[_M],
|
|
750
|
-
[0]
|
|
751
|
-
];
|
|
752
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
753
|
-
var RuleResult$ = [3, n0, _RRu,
|
|
754
|
-
0,
|
|
755
|
-
[_I, _De, _S, _M, _Me],
|
|
756
|
-
[0, 0, 0, 0, 128 | 0]
|
|
757
|
-
];
|
|
758
|
-
var RuleStatusCounts$ = [3, n0, _RSC,
|
|
759
|
-
0,
|
|
760
|
-
[_Fa, _W, _Inf, _Pa, _U],
|
|
761
|
-
[1, 1, 1, 1, 1]
|
|
762
|
-
];
|
|
763
|
-
var StartApplicationInput$ = [3, n0, _SAI,
|
|
764
|
-
0,
|
|
765
|
-
[_AI],
|
|
766
|
-
[0], 1
|
|
767
|
-
];
|
|
768
|
-
var StartApplicationOutput$ = [3, n0, _SAO,
|
|
769
|
-
0,
|
|
770
|
-
[_OI],
|
|
771
|
-
[0]
|
|
772
|
-
];
|
|
773
|
-
var StartApplicationRefreshInput$ = [3, n0, _SARI,
|
|
774
|
-
0,
|
|
775
|
-
[_AI],
|
|
776
|
-
[0], 1
|
|
777
|
-
];
|
|
778
|
-
var StartApplicationRefreshOutput$ = [3, n0, _SARO,
|
|
779
|
-
0,
|
|
780
|
-
[_OI],
|
|
781
|
-
[0]
|
|
782
|
-
];
|
|
783
|
-
var StartConfigurationChecksInput$ = [3, n0, _SCCI,
|
|
784
|
-
0,
|
|
785
|
-
[_AI, _CCIo],
|
|
786
|
-
[0, 64 | 0], 1
|
|
787
|
-
];
|
|
788
|
-
var StartConfigurationChecksOutput$ = [3, n0, _SCCO,
|
|
789
|
-
0,
|
|
790
|
-
[_CCOo],
|
|
791
|
-
[() => ConfigurationCheckOperationList]
|
|
792
|
-
];
|
|
793
|
-
var StopApplicationInput$ = [3, n0, _SAIt,
|
|
794
|
-
0,
|
|
795
|
-
[_AI, _SCE, _IEIS],
|
|
796
|
-
[0, 0, 2], 1
|
|
797
|
-
];
|
|
798
|
-
var StopApplicationOutput$ = [3, n0, _SAOt,
|
|
799
|
-
0,
|
|
800
|
-
[_OI],
|
|
801
|
-
[0]
|
|
802
|
-
];
|
|
803
|
-
var SubCheckResult$ = [3, n0, _SCRu,
|
|
804
|
-
0,
|
|
805
|
-
[_I, _N, _De, _Ref],
|
|
806
|
-
[0, 0, 0, 64 | 0]
|
|
807
|
-
];
|
|
808
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
809
|
-
0,
|
|
810
|
-
[_rA, _t],
|
|
811
|
-
[[0, 1], 128 | 0], 2
|
|
812
|
-
];
|
|
813
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
814
|
-
0,
|
|
815
|
-
[],
|
|
816
|
-
[]
|
|
817
|
-
];
|
|
818
|
-
var UnauthorizedException$ = [-3, n0, _UE,
|
|
819
|
-
{ [_e]: _c, [_hE]: 401 },
|
|
820
|
-
[_M],
|
|
821
|
-
[0]
|
|
822
|
-
];
|
|
823
|
-
schema.TypeRegistry.for(n0).registerError(UnauthorizedException$, UnauthorizedException);
|
|
824
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
825
|
-
0,
|
|
826
|
-
[_rA, _tK],
|
|
827
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
828
|
-
];
|
|
829
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
830
|
-
0,
|
|
831
|
-
[],
|
|
832
|
-
[]
|
|
833
|
-
];
|
|
834
|
-
var UpdateApplicationSettingsInput$ = [3, n0, _UASI,
|
|
835
|
-
0,
|
|
836
|
-
[_AI, _CTAOU, _CTR, _B, _DA],
|
|
837
|
-
[0, [() => ApplicationCredentialList, 0], [() => ApplicationCredentialList, 0], () => BackintConfig$, 0], 1
|
|
838
|
-
];
|
|
839
|
-
var UpdateApplicationSettingsOutput$ = [3, n0, _UASO,
|
|
840
|
-
0,
|
|
841
|
-
[_M, _OIp],
|
|
842
|
-
[0, 64 | 0]
|
|
843
|
-
];
|
|
844
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
845
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
846
|
-
[_M],
|
|
847
|
-
[0]
|
|
848
|
-
];
|
|
849
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
850
|
-
var SsmSapServiceException$ = [-3, _sm, "SsmSapServiceException", 0, [], []];
|
|
851
|
-
schema.TypeRegistry.for(_sm).registerError(SsmSapServiceException$, SsmSapServiceException);
|
|
852
|
-
var ApplicationCredentialList = [1, n0, _ACL,
|
|
853
|
-
0, [() => ApplicationCredential$,
|
|
854
|
-
0]
|
|
855
|
-
];
|
|
856
|
-
var ApplicationSummaryList = [1, n0, _ASL,
|
|
857
|
-
0, () => ApplicationSummary$
|
|
858
|
-
];
|
|
859
|
-
var ComponentInfoList = [1, n0, _CIL,
|
|
860
|
-
0, () => ComponentInfo$
|
|
861
|
-
];
|
|
862
|
-
var ComponentSummaryList = [1, n0, _CSL,
|
|
863
|
-
0, () => ComponentSummary$
|
|
864
|
-
];
|
|
865
|
-
var ConfigurationCheckDefinitionList = [1, n0, _CCDL,
|
|
866
|
-
0, () => ConfigurationCheckDefinition$
|
|
867
|
-
];
|
|
868
|
-
var ConfigurationCheckOperationList = [1, n0, _CCOL,
|
|
869
|
-
0, () => ConfigurationCheckOperation$
|
|
870
|
-
];
|
|
871
|
-
var DatabaseSummaryList = [1, n0, _DSL,
|
|
872
|
-
0, () => DatabaseSummary$
|
|
873
|
-
];
|
|
874
|
-
var FilterList = [1, n0, _FL,
|
|
875
|
-
0, () => Filter$
|
|
876
|
-
];
|
|
877
|
-
var HostList = [1, n0, _HL,
|
|
878
|
-
0, () => Host$
|
|
879
|
-
];
|
|
880
|
-
var IpAddressList = [1, n0, _IAL,
|
|
881
|
-
0, () => IpAddressMember$
|
|
882
|
-
];
|
|
883
|
-
var OperationEventList = [1, n0, _OEL,
|
|
884
|
-
0, () => OperationEvent$
|
|
885
|
-
];
|
|
886
|
-
var OperationList = [1, n0, _OL,
|
|
887
|
-
0, [() => Operation$,
|
|
888
|
-
0]
|
|
889
|
-
];
|
|
890
|
-
var RuleResultList = [1, n0, _RRL,
|
|
891
|
-
0, () => RuleResult$
|
|
892
|
-
];
|
|
893
|
-
var SubCheckResultList = [1, n0, _SCRL,
|
|
894
|
-
0, () => SubCheckResult$
|
|
895
|
-
];
|
|
896
|
-
var OperationProperties = [2, n0, _OP,
|
|
897
|
-
{ [_sp]: 1 }, 0, 0
|
|
898
|
-
];
|
|
899
|
-
var DeleteResourcePermission$ = [9, n0, _DRP,
|
|
900
|
-
{ [_h]: ["POST", "/delete-resource-permission", 200] }, () => DeleteResourcePermissionInput$, () => DeleteResourcePermissionOutput$
|
|
901
|
-
];
|
|
902
|
-
var DeregisterApplication$ = [9, n0, _DAe,
|
|
903
|
-
{ [_h]: ["POST", "/deregister-application", 200] }, () => DeregisterApplicationInput$, () => DeregisterApplicationOutput$
|
|
904
|
-
];
|
|
905
|
-
var GetApplication$ = [9, n0, _GA,
|
|
906
|
-
{ [_h]: ["POST", "/get-application", 200] }, () => GetApplicationInput$, () => GetApplicationOutput$
|
|
907
|
-
];
|
|
908
|
-
var GetComponent$ = [9, n0, _GC,
|
|
909
|
-
{ [_h]: ["POST", "/get-component", 200] }, () => GetComponentInput$, () => GetComponentOutput$
|
|
910
|
-
];
|
|
911
|
-
var GetConfigurationCheckOperation$ = [9, n0, _GCCO,
|
|
912
|
-
{ [_h]: ["POST", "/get-configuration-check-operation", 200] }, () => GetConfigurationCheckOperationInput$, () => GetConfigurationCheckOperationOutput$
|
|
913
|
-
];
|
|
914
|
-
var GetDatabase$ = [9, n0, _GD,
|
|
915
|
-
{ [_h]: ["POST", "/get-database", 200] }, () => GetDatabaseInput$, () => GetDatabaseOutput$
|
|
916
|
-
];
|
|
917
|
-
var GetOperation$ = [9, n0, _GO,
|
|
918
|
-
{ [_h]: ["POST", "/get-operation", 200] }, () => GetOperationInput$, () => GetOperationOutput$
|
|
919
|
-
];
|
|
920
|
-
var GetResourcePermission$ = [9, n0, _GRP,
|
|
921
|
-
{ [_h]: ["POST", "/get-resource-permission", 200] }, () => GetResourcePermissionInput$, () => GetResourcePermissionOutput$
|
|
922
|
-
];
|
|
923
|
-
var ListApplications$ = [9, n0, _LA,
|
|
924
|
-
{ [_h]: ["POST", "/list-applications", 200] }, () => ListApplicationsInput$, () => ListApplicationsOutput$
|
|
925
|
-
];
|
|
926
|
-
var ListComponents$ = [9, n0, _LC,
|
|
927
|
-
{ [_h]: ["POST", "/list-components", 200] }, () => ListComponentsInput$, () => ListComponentsOutput$
|
|
928
|
-
];
|
|
929
|
-
var ListConfigurationCheckDefinitions$ = [9, n0, _LCCD,
|
|
930
|
-
{ [_h]: ["POST", "/list-configuration-check-definitions", 200] }, () => ListConfigurationCheckDefinitionsInput$, () => ListConfigurationCheckDefinitionsOutput$
|
|
931
|
-
];
|
|
932
|
-
var ListConfigurationCheckOperations$ = [9, n0, _LCCO,
|
|
933
|
-
{ [_h]: ["POST", "/list-configuration-check-operations", 200] }, () => ListConfigurationCheckOperationsInput$, () => ListConfigurationCheckOperationsOutput$
|
|
934
|
-
];
|
|
935
|
-
var ListDatabases$ = [9, n0, _LD,
|
|
936
|
-
{ [_h]: ["POST", "/list-databases", 200] }, () => ListDatabasesInput$, () => ListDatabasesOutput$
|
|
937
|
-
];
|
|
938
|
-
var ListOperationEvents$ = [9, n0, _LOE,
|
|
939
|
-
{ [_h]: ["POST", "/list-operation-events", 200] }, () => ListOperationEventsInput$, () => ListOperationEventsOutput$
|
|
940
|
-
];
|
|
941
|
-
var ListOperations$ = [9, n0, _LO,
|
|
942
|
-
{ [_h]: ["POST", "/list-operations", 200] }, () => ListOperationsInput$, () => ListOperationsOutput$
|
|
943
|
-
];
|
|
944
|
-
var ListSubCheckResults$ = [9, n0, _LSCR,
|
|
945
|
-
{ [_h]: ["POST", "/list-sub-check-results", 200] }, () => ListSubCheckResultsInput$, () => ListSubCheckResultsOutput$
|
|
946
|
-
];
|
|
947
|
-
var ListSubCheckRuleResults$ = [9, n0, _LSCRR,
|
|
948
|
-
{ [_h]: ["POST", "/list-sub-check-rule-results", 200] }, () => ListSubCheckRuleResultsInput$, () => ListSubCheckRuleResultsOutput$
|
|
949
|
-
];
|
|
950
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
951
|
-
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
952
|
-
];
|
|
953
|
-
var PutResourcePermission$ = [9, n0, _PRP,
|
|
954
|
-
{ [_h]: ["POST", "/put-resource-permission", 200] }, () => PutResourcePermissionInput$, () => PutResourcePermissionOutput$
|
|
955
|
-
];
|
|
956
|
-
var RegisterApplication$ = [9, n0, _RAe,
|
|
957
|
-
{ [_h]: ["POST", "/register-application", 200] }, () => RegisterApplicationInput$, () => RegisterApplicationOutput$
|
|
958
|
-
];
|
|
959
|
-
var StartApplication$ = [9, n0, _SA,
|
|
960
|
-
{ [_h]: ["POST", "/start-application", 200] }, () => StartApplicationInput$, () => StartApplicationOutput$
|
|
961
|
-
];
|
|
962
|
-
var StartApplicationRefresh$ = [9, n0, _SAR,
|
|
963
|
-
{ [_h]: ["POST", "/start-application-refresh", 200] }, () => StartApplicationRefreshInput$, () => StartApplicationRefreshOutput$
|
|
964
|
-
];
|
|
965
|
-
var StartConfigurationChecks$ = [9, n0, _SCC,
|
|
966
|
-
{ [_h]: ["POST", "/start-configuration-checks", 200] }, () => StartConfigurationChecksInput$, () => StartConfigurationChecksOutput$
|
|
967
|
-
];
|
|
968
|
-
var StopApplication$ = [9, n0, _SAt,
|
|
969
|
-
{ [_h]: ["POST", "/stop-application", 200] }, () => StopApplicationInput$, () => StopApplicationOutput$
|
|
970
|
-
];
|
|
971
|
-
var TagResource$ = [9, n0, _TR,
|
|
972
|
-
{ [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
973
|
-
];
|
|
974
|
-
var UntagResource$ = [9, n0, _UR,
|
|
975
|
-
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
976
|
-
];
|
|
977
|
-
var UpdateApplicationSettings$ = [9, n0, _UAS,
|
|
978
|
-
{ [_h]: ["POST", "/update-application-settings", 200] }, () => UpdateApplicationSettingsInput$, () => UpdateApplicationSettingsOutput$
|
|
979
|
-
];
|
|
980
|
-
|
|
981
116
|
class DeleteResourcePermissionCommand extends smithyClient.Command
|
|
982
117
|
.classBuilder()
|
|
983
118
|
.ep(commonParams)
|
|
@@ -986,7 +121,7 @@ class DeleteResourcePermissionCommand extends smithyClient.Command
|
|
|
986
121
|
})
|
|
987
122
|
.s("SsmSap", "DeleteResourcePermission", {})
|
|
988
123
|
.n("SsmSapClient", "DeleteResourcePermissionCommand")
|
|
989
|
-
.sc(DeleteResourcePermission$)
|
|
124
|
+
.sc(schemas_0.DeleteResourcePermission$)
|
|
990
125
|
.build() {
|
|
991
126
|
}
|
|
992
127
|
|
|
@@ -998,7 +133,7 @@ class DeregisterApplicationCommand extends smithyClient.Command
|
|
|
998
133
|
})
|
|
999
134
|
.s("SsmSap", "DeregisterApplication", {})
|
|
1000
135
|
.n("SsmSapClient", "DeregisterApplicationCommand")
|
|
1001
|
-
.sc(DeregisterApplication$)
|
|
136
|
+
.sc(schemas_0.DeregisterApplication$)
|
|
1002
137
|
.build() {
|
|
1003
138
|
}
|
|
1004
139
|
|
|
@@ -1010,7 +145,7 @@ class GetApplicationCommand extends smithyClient.Command
|
|
|
1010
145
|
})
|
|
1011
146
|
.s("SsmSap", "GetApplication", {})
|
|
1012
147
|
.n("SsmSapClient", "GetApplicationCommand")
|
|
1013
|
-
.sc(GetApplication$)
|
|
148
|
+
.sc(schemas_0.GetApplication$)
|
|
1014
149
|
.build() {
|
|
1015
150
|
}
|
|
1016
151
|
|
|
@@ -1022,7 +157,7 @@ class GetComponentCommand extends smithyClient.Command
|
|
|
1022
157
|
})
|
|
1023
158
|
.s("SsmSap", "GetComponent", {})
|
|
1024
159
|
.n("SsmSapClient", "GetComponentCommand")
|
|
1025
|
-
.sc(GetComponent$)
|
|
160
|
+
.sc(schemas_0.GetComponent$)
|
|
1026
161
|
.build() {
|
|
1027
162
|
}
|
|
1028
163
|
|
|
@@ -1034,7 +169,7 @@ class GetConfigurationCheckOperationCommand extends smithyClient.Command
|
|
|
1034
169
|
})
|
|
1035
170
|
.s("SsmSap", "GetConfigurationCheckOperation", {})
|
|
1036
171
|
.n("SsmSapClient", "GetConfigurationCheckOperationCommand")
|
|
1037
|
-
.sc(GetConfigurationCheckOperation$)
|
|
172
|
+
.sc(schemas_0.GetConfigurationCheckOperation$)
|
|
1038
173
|
.build() {
|
|
1039
174
|
}
|
|
1040
175
|
|
|
@@ -1046,7 +181,7 @@ class GetDatabaseCommand extends smithyClient.Command
|
|
|
1046
181
|
})
|
|
1047
182
|
.s("SsmSap", "GetDatabase", {})
|
|
1048
183
|
.n("SsmSapClient", "GetDatabaseCommand")
|
|
1049
|
-
.sc(GetDatabase$)
|
|
184
|
+
.sc(schemas_0.GetDatabase$)
|
|
1050
185
|
.build() {
|
|
1051
186
|
}
|
|
1052
187
|
|
|
@@ -1058,7 +193,7 @@ class GetOperationCommand extends smithyClient.Command
|
|
|
1058
193
|
})
|
|
1059
194
|
.s("SsmSap", "GetOperation", {})
|
|
1060
195
|
.n("SsmSapClient", "GetOperationCommand")
|
|
1061
|
-
.sc(GetOperation$)
|
|
196
|
+
.sc(schemas_0.GetOperation$)
|
|
1062
197
|
.build() {
|
|
1063
198
|
}
|
|
1064
199
|
|
|
@@ -1070,7 +205,7 @@ class GetResourcePermissionCommand extends smithyClient.Command
|
|
|
1070
205
|
})
|
|
1071
206
|
.s("SsmSap", "GetResourcePermission", {})
|
|
1072
207
|
.n("SsmSapClient", "GetResourcePermissionCommand")
|
|
1073
|
-
.sc(GetResourcePermission$)
|
|
208
|
+
.sc(schemas_0.GetResourcePermission$)
|
|
1074
209
|
.build() {
|
|
1075
210
|
}
|
|
1076
211
|
|
|
@@ -1082,7 +217,7 @@ class ListApplicationsCommand extends smithyClient.Command
|
|
|
1082
217
|
})
|
|
1083
218
|
.s("SsmSap", "ListApplications", {})
|
|
1084
219
|
.n("SsmSapClient", "ListApplicationsCommand")
|
|
1085
|
-
.sc(ListApplications$)
|
|
220
|
+
.sc(schemas_0.ListApplications$)
|
|
1086
221
|
.build() {
|
|
1087
222
|
}
|
|
1088
223
|
|
|
@@ -1094,7 +229,7 @@ class ListComponentsCommand extends smithyClient.Command
|
|
|
1094
229
|
})
|
|
1095
230
|
.s("SsmSap", "ListComponents", {})
|
|
1096
231
|
.n("SsmSapClient", "ListComponentsCommand")
|
|
1097
|
-
.sc(ListComponents$)
|
|
232
|
+
.sc(schemas_0.ListComponents$)
|
|
1098
233
|
.build() {
|
|
1099
234
|
}
|
|
1100
235
|
|
|
@@ -1106,7 +241,7 @@ class ListConfigurationCheckDefinitionsCommand extends smithyClient.Command
|
|
|
1106
241
|
})
|
|
1107
242
|
.s("SsmSap", "ListConfigurationCheckDefinitions", {})
|
|
1108
243
|
.n("SsmSapClient", "ListConfigurationCheckDefinitionsCommand")
|
|
1109
|
-
.sc(ListConfigurationCheckDefinitions$)
|
|
244
|
+
.sc(schemas_0.ListConfigurationCheckDefinitions$)
|
|
1110
245
|
.build() {
|
|
1111
246
|
}
|
|
1112
247
|
|
|
@@ -1118,7 +253,7 @@ class ListConfigurationCheckOperationsCommand extends smithyClient.Command
|
|
|
1118
253
|
})
|
|
1119
254
|
.s("SsmSap", "ListConfigurationCheckOperations", {})
|
|
1120
255
|
.n("SsmSapClient", "ListConfigurationCheckOperationsCommand")
|
|
1121
|
-
.sc(ListConfigurationCheckOperations$)
|
|
256
|
+
.sc(schemas_0.ListConfigurationCheckOperations$)
|
|
1122
257
|
.build() {
|
|
1123
258
|
}
|
|
1124
259
|
|
|
@@ -1130,7 +265,7 @@ class ListDatabasesCommand extends smithyClient.Command
|
|
|
1130
265
|
})
|
|
1131
266
|
.s("SsmSap", "ListDatabases", {})
|
|
1132
267
|
.n("SsmSapClient", "ListDatabasesCommand")
|
|
1133
|
-
.sc(ListDatabases$)
|
|
268
|
+
.sc(schemas_0.ListDatabases$)
|
|
1134
269
|
.build() {
|
|
1135
270
|
}
|
|
1136
271
|
|
|
@@ -1142,7 +277,7 @@ class ListOperationEventsCommand extends smithyClient.Command
|
|
|
1142
277
|
})
|
|
1143
278
|
.s("SsmSap", "ListOperationEvents", {})
|
|
1144
279
|
.n("SsmSapClient", "ListOperationEventsCommand")
|
|
1145
|
-
.sc(ListOperationEvents$)
|
|
280
|
+
.sc(schemas_0.ListOperationEvents$)
|
|
1146
281
|
.build() {
|
|
1147
282
|
}
|
|
1148
283
|
|
|
@@ -1154,7 +289,7 @@ class ListOperationsCommand extends smithyClient.Command
|
|
|
1154
289
|
})
|
|
1155
290
|
.s("SsmSap", "ListOperations", {})
|
|
1156
291
|
.n("SsmSapClient", "ListOperationsCommand")
|
|
1157
|
-
.sc(ListOperations$)
|
|
292
|
+
.sc(schemas_0.ListOperations$)
|
|
1158
293
|
.build() {
|
|
1159
294
|
}
|
|
1160
295
|
|
|
@@ -1166,7 +301,7 @@ class ListSubCheckResultsCommand extends smithyClient.Command
|
|
|
1166
301
|
})
|
|
1167
302
|
.s("SsmSap", "ListSubCheckResults", {})
|
|
1168
303
|
.n("SsmSapClient", "ListSubCheckResultsCommand")
|
|
1169
|
-
.sc(ListSubCheckResults$)
|
|
304
|
+
.sc(schemas_0.ListSubCheckResults$)
|
|
1170
305
|
.build() {
|
|
1171
306
|
}
|
|
1172
307
|
|
|
@@ -1178,7 +313,7 @@ class ListSubCheckRuleResultsCommand extends smithyClient.Command
|
|
|
1178
313
|
})
|
|
1179
314
|
.s("SsmSap", "ListSubCheckRuleResults", {})
|
|
1180
315
|
.n("SsmSapClient", "ListSubCheckRuleResultsCommand")
|
|
1181
|
-
.sc(ListSubCheckRuleResults$)
|
|
316
|
+
.sc(schemas_0.ListSubCheckRuleResults$)
|
|
1182
317
|
.build() {
|
|
1183
318
|
}
|
|
1184
319
|
|
|
@@ -1190,7 +325,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1190
325
|
})
|
|
1191
326
|
.s("SsmSap", "ListTagsForResource", {})
|
|
1192
327
|
.n("SsmSapClient", "ListTagsForResourceCommand")
|
|
1193
|
-
.sc(ListTagsForResource$)
|
|
328
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1194
329
|
.build() {
|
|
1195
330
|
}
|
|
1196
331
|
|
|
@@ -1202,7 +337,7 @@ class PutResourcePermissionCommand extends smithyClient.Command
|
|
|
1202
337
|
})
|
|
1203
338
|
.s("SsmSap", "PutResourcePermission", {})
|
|
1204
339
|
.n("SsmSapClient", "PutResourcePermissionCommand")
|
|
1205
|
-
.sc(PutResourcePermission$)
|
|
340
|
+
.sc(schemas_0.PutResourcePermission$)
|
|
1206
341
|
.build() {
|
|
1207
342
|
}
|
|
1208
343
|
|
|
@@ -1214,7 +349,7 @@ class RegisterApplicationCommand extends smithyClient.Command
|
|
|
1214
349
|
})
|
|
1215
350
|
.s("SsmSap", "RegisterApplication", {})
|
|
1216
351
|
.n("SsmSapClient", "RegisterApplicationCommand")
|
|
1217
|
-
.sc(RegisterApplication$)
|
|
352
|
+
.sc(schemas_0.RegisterApplication$)
|
|
1218
353
|
.build() {
|
|
1219
354
|
}
|
|
1220
355
|
|
|
@@ -1226,7 +361,7 @@ class StartApplicationCommand extends smithyClient.Command
|
|
|
1226
361
|
})
|
|
1227
362
|
.s("SsmSap", "StartApplication", {})
|
|
1228
363
|
.n("SsmSapClient", "StartApplicationCommand")
|
|
1229
|
-
.sc(StartApplication$)
|
|
364
|
+
.sc(schemas_0.StartApplication$)
|
|
1230
365
|
.build() {
|
|
1231
366
|
}
|
|
1232
367
|
|
|
@@ -1238,7 +373,7 @@ class StartApplicationRefreshCommand extends smithyClient.Command
|
|
|
1238
373
|
})
|
|
1239
374
|
.s("SsmSap", "StartApplicationRefresh", {})
|
|
1240
375
|
.n("SsmSapClient", "StartApplicationRefreshCommand")
|
|
1241
|
-
.sc(StartApplicationRefresh$)
|
|
376
|
+
.sc(schemas_0.StartApplicationRefresh$)
|
|
1242
377
|
.build() {
|
|
1243
378
|
}
|
|
1244
379
|
|
|
@@ -1250,7 +385,7 @@ class StartConfigurationChecksCommand extends smithyClient.Command
|
|
|
1250
385
|
})
|
|
1251
386
|
.s("SsmSap", "StartConfigurationChecks", {})
|
|
1252
387
|
.n("SsmSapClient", "StartConfigurationChecksCommand")
|
|
1253
|
-
.sc(StartConfigurationChecks$)
|
|
388
|
+
.sc(schemas_0.StartConfigurationChecks$)
|
|
1254
389
|
.build() {
|
|
1255
390
|
}
|
|
1256
391
|
|
|
@@ -1262,7 +397,7 @@ class StopApplicationCommand extends smithyClient.Command
|
|
|
1262
397
|
})
|
|
1263
398
|
.s("SsmSap", "StopApplication", {})
|
|
1264
399
|
.n("SsmSapClient", "StopApplicationCommand")
|
|
1265
|
-
.sc(StopApplication$)
|
|
400
|
+
.sc(schemas_0.StopApplication$)
|
|
1266
401
|
.build() {
|
|
1267
402
|
}
|
|
1268
403
|
|
|
@@ -1274,7 +409,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1274
409
|
})
|
|
1275
410
|
.s("SsmSap", "TagResource", {})
|
|
1276
411
|
.n("SsmSapClient", "TagResourceCommand")
|
|
1277
|
-
.sc(TagResource$)
|
|
412
|
+
.sc(schemas_0.TagResource$)
|
|
1278
413
|
.build() {
|
|
1279
414
|
}
|
|
1280
415
|
|
|
@@ -1286,7 +421,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1286
421
|
})
|
|
1287
422
|
.s("SsmSap", "UntagResource", {})
|
|
1288
423
|
.n("SsmSapClient", "UntagResourceCommand")
|
|
1289
|
-
.sc(UntagResource$)
|
|
424
|
+
.sc(schemas_0.UntagResource$)
|
|
1290
425
|
.build() {
|
|
1291
426
|
}
|
|
1292
427
|
|
|
@@ -1298,7 +433,7 @@ class UpdateApplicationSettingsCommand extends smithyClient.Command
|
|
|
1298
433
|
})
|
|
1299
434
|
.s("SsmSap", "UpdateApplicationSettings", {})
|
|
1300
435
|
.n("SsmSapClient", "UpdateApplicationSettingsCommand")
|
|
1301
|
-
.sc(UpdateApplicationSettings$)
|
|
436
|
+
.sc(schemas_0.UpdateApplicationSettings$)
|
|
1302
437
|
.build() {
|
|
1303
438
|
}
|
|
1304
439
|
|
|
@@ -1506,174 +641,62 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1506
641
|
enumerable: true,
|
|
1507
642
|
get: function () { return smithyClient.Client; }
|
|
1508
643
|
});
|
|
644
|
+
Object.defineProperty(exports, "SsmSapServiceException", {
|
|
645
|
+
enumerable: true,
|
|
646
|
+
get: function () { return SsmSapServiceException.SsmSapServiceException; }
|
|
647
|
+
});
|
|
1509
648
|
exports.AllocationType = AllocationType;
|
|
1510
|
-
exports.Application$ = Application$;
|
|
1511
|
-
exports.ApplicationCredential$ = ApplicationCredential$;
|
|
1512
649
|
exports.ApplicationDiscoveryStatus = ApplicationDiscoveryStatus;
|
|
1513
650
|
exports.ApplicationStatus = ApplicationStatus;
|
|
1514
|
-
exports.ApplicationSummary$ = ApplicationSummary$;
|
|
1515
651
|
exports.ApplicationType = ApplicationType;
|
|
1516
|
-
exports.AssociatedHost$ = AssociatedHost$;
|
|
1517
|
-
exports.BackintConfig$ = BackintConfig$;
|
|
1518
652
|
exports.BackintMode = BackintMode;
|
|
1519
653
|
exports.ClusterStatus = ClusterStatus;
|
|
1520
|
-
exports.Component$ = Component$;
|
|
1521
|
-
exports.ComponentInfo$ = ComponentInfo$;
|
|
1522
654
|
exports.ComponentStatus = ComponentStatus;
|
|
1523
|
-
exports.ComponentSummary$ = ComponentSummary$;
|
|
1524
655
|
exports.ComponentType = ComponentType;
|
|
1525
|
-
exports.ConfigurationCheckDefinition$ = ConfigurationCheckDefinition$;
|
|
1526
|
-
exports.ConfigurationCheckOperation$ = ConfigurationCheckOperation$;
|
|
1527
656
|
exports.ConfigurationCheckOperationListingMode = ConfigurationCheckOperationListingMode;
|
|
1528
657
|
exports.ConfigurationCheckType = ConfigurationCheckType;
|
|
1529
|
-
exports.ConflictException = ConflictException;
|
|
1530
|
-
exports.ConflictException$ = ConflictException$;
|
|
1531
658
|
exports.ConnectedEntityType = ConnectedEntityType;
|
|
1532
659
|
exports.CredentialType = CredentialType;
|
|
1533
|
-
exports.Database$ = Database$;
|
|
1534
|
-
exports.DatabaseConnection$ = DatabaseConnection$;
|
|
1535
660
|
exports.DatabaseConnectionMethod = DatabaseConnectionMethod;
|
|
1536
661
|
exports.DatabaseStatus = DatabaseStatus;
|
|
1537
|
-
exports.DatabaseSummary$ = DatabaseSummary$;
|
|
1538
662
|
exports.DatabaseType = DatabaseType;
|
|
1539
|
-
exports.DeleteResourcePermission$ = DeleteResourcePermission$;
|
|
1540
663
|
exports.DeleteResourcePermissionCommand = DeleteResourcePermissionCommand;
|
|
1541
|
-
exports.DeleteResourcePermissionInput$ = DeleteResourcePermissionInput$;
|
|
1542
|
-
exports.DeleteResourcePermissionOutput$ = DeleteResourcePermissionOutput$;
|
|
1543
|
-
exports.DeregisterApplication$ = DeregisterApplication$;
|
|
1544
664
|
exports.DeregisterApplicationCommand = DeregisterApplicationCommand;
|
|
1545
|
-
exports.DeregisterApplicationInput$ = DeregisterApplicationInput$;
|
|
1546
|
-
exports.DeregisterApplicationOutput$ = DeregisterApplicationOutput$;
|
|
1547
|
-
exports.Filter$ = Filter$;
|
|
1548
665
|
exports.FilterOperator = FilterOperator;
|
|
1549
|
-
exports.GetApplication$ = GetApplication$;
|
|
1550
666
|
exports.GetApplicationCommand = GetApplicationCommand;
|
|
1551
|
-
exports.GetApplicationInput$ = GetApplicationInput$;
|
|
1552
|
-
exports.GetApplicationOutput$ = GetApplicationOutput$;
|
|
1553
|
-
exports.GetComponent$ = GetComponent$;
|
|
1554
667
|
exports.GetComponentCommand = GetComponentCommand;
|
|
1555
|
-
exports.GetComponentInput$ = GetComponentInput$;
|
|
1556
|
-
exports.GetComponentOutput$ = GetComponentOutput$;
|
|
1557
|
-
exports.GetConfigurationCheckOperation$ = GetConfigurationCheckOperation$;
|
|
1558
668
|
exports.GetConfigurationCheckOperationCommand = GetConfigurationCheckOperationCommand;
|
|
1559
|
-
exports.GetConfigurationCheckOperationInput$ = GetConfigurationCheckOperationInput$;
|
|
1560
|
-
exports.GetConfigurationCheckOperationOutput$ = GetConfigurationCheckOperationOutput$;
|
|
1561
|
-
exports.GetDatabase$ = GetDatabase$;
|
|
1562
669
|
exports.GetDatabaseCommand = GetDatabaseCommand;
|
|
1563
|
-
exports.GetDatabaseInput$ = GetDatabaseInput$;
|
|
1564
|
-
exports.GetDatabaseOutput$ = GetDatabaseOutput$;
|
|
1565
|
-
exports.GetOperation$ = GetOperation$;
|
|
1566
670
|
exports.GetOperationCommand = GetOperationCommand;
|
|
1567
|
-
exports.GetOperationInput$ = GetOperationInput$;
|
|
1568
|
-
exports.GetOperationOutput$ = GetOperationOutput$;
|
|
1569
|
-
exports.GetResourcePermission$ = GetResourcePermission$;
|
|
1570
671
|
exports.GetResourcePermissionCommand = GetResourcePermissionCommand;
|
|
1571
|
-
exports.GetResourcePermissionInput$ = GetResourcePermissionInput$;
|
|
1572
|
-
exports.GetResourcePermissionOutput$ = GetResourcePermissionOutput$;
|
|
1573
|
-
exports.Host$ = Host$;
|
|
1574
672
|
exports.HostRole = HostRole;
|
|
1575
|
-
exports.InternalServerException = InternalServerException;
|
|
1576
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1577
|
-
exports.IpAddressMember$ = IpAddressMember$;
|
|
1578
|
-
exports.ListApplications$ = ListApplications$;
|
|
1579
673
|
exports.ListApplicationsCommand = ListApplicationsCommand;
|
|
1580
|
-
exports.ListApplicationsInput$ = ListApplicationsInput$;
|
|
1581
|
-
exports.ListApplicationsOutput$ = ListApplicationsOutput$;
|
|
1582
|
-
exports.ListComponents$ = ListComponents$;
|
|
1583
674
|
exports.ListComponentsCommand = ListComponentsCommand;
|
|
1584
|
-
exports.ListComponentsInput$ = ListComponentsInput$;
|
|
1585
|
-
exports.ListComponentsOutput$ = ListComponentsOutput$;
|
|
1586
|
-
exports.ListConfigurationCheckDefinitions$ = ListConfigurationCheckDefinitions$;
|
|
1587
675
|
exports.ListConfigurationCheckDefinitionsCommand = ListConfigurationCheckDefinitionsCommand;
|
|
1588
|
-
exports.ListConfigurationCheckDefinitionsInput$ = ListConfigurationCheckDefinitionsInput$;
|
|
1589
|
-
exports.ListConfigurationCheckDefinitionsOutput$ = ListConfigurationCheckDefinitionsOutput$;
|
|
1590
|
-
exports.ListConfigurationCheckOperations$ = ListConfigurationCheckOperations$;
|
|
1591
676
|
exports.ListConfigurationCheckOperationsCommand = ListConfigurationCheckOperationsCommand;
|
|
1592
|
-
exports.ListConfigurationCheckOperationsInput$ = ListConfigurationCheckOperationsInput$;
|
|
1593
|
-
exports.ListConfigurationCheckOperationsOutput$ = ListConfigurationCheckOperationsOutput$;
|
|
1594
|
-
exports.ListDatabases$ = ListDatabases$;
|
|
1595
677
|
exports.ListDatabasesCommand = ListDatabasesCommand;
|
|
1596
|
-
exports.ListDatabasesInput$ = ListDatabasesInput$;
|
|
1597
|
-
exports.ListDatabasesOutput$ = ListDatabasesOutput$;
|
|
1598
|
-
exports.ListOperationEvents$ = ListOperationEvents$;
|
|
1599
678
|
exports.ListOperationEventsCommand = ListOperationEventsCommand;
|
|
1600
|
-
exports.ListOperationEventsInput$ = ListOperationEventsInput$;
|
|
1601
|
-
exports.ListOperationEventsOutput$ = ListOperationEventsOutput$;
|
|
1602
|
-
exports.ListOperations$ = ListOperations$;
|
|
1603
679
|
exports.ListOperationsCommand = ListOperationsCommand;
|
|
1604
|
-
exports.ListOperationsInput$ = ListOperationsInput$;
|
|
1605
|
-
exports.ListOperationsOutput$ = ListOperationsOutput$;
|
|
1606
|
-
exports.ListSubCheckResults$ = ListSubCheckResults$;
|
|
1607
680
|
exports.ListSubCheckResultsCommand = ListSubCheckResultsCommand;
|
|
1608
|
-
exports.ListSubCheckResultsInput$ = ListSubCheckResultsInput$;
|
|
1609
|
-
exports.ListSubCheckResultsOutput$ = ListSubCheckResultsOutput$;
|
|
1610
|
-
exports.ListSubCheckRuleResults$ = ListSubCheckRuleResults$;
|
|
1611
681
|
exports.ListSubCheckRuleResultsCommand = ListSubCheckRuleResultsCommand;
|
|
1612
|
-
exports.ListSubCheckRuleResultsInput$ = ListSubCheckRuleResultsInput$;
|
|
1613
|
-
exports.ListSubCheckRuleResultsOutput$ = ListSubCheckRuleResultsOutput$;
|
|
1614
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1615
682
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1616
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1617
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1618
|
-
exports.Operation$ = Operation$;
|
|
1619
|
-
exports.OperationEvent$ = OperationEvent$;
|
|
1620
683
|
exports.OperationEventStatus = OperationEventStatus;
|
|
1621
684
|
exports.OperationMode = OperationMode;
|
|
1622
685
|
exports.OperationStatus = OperationStatus;
|
|
1623
686
|
exports.PermissionActionType = PermissionActionType;
|
|
1624
|
-
exports.PutResourcePermission$ = PutResourcePermission$;
|
|
1625
687
|
exports.PutResourcePermissionCommand = PutResourcePermissionCommand;
|
|
1626
|
-
exports.PutResourcePermissionInput$ = PutResourcePermissionInput$;
|
|
1627
|
-
exports.PutResourcePermissionOutput$ = PutResourcePermissionOutput$;
|
|
1628
|
-
exports.RegisterApplication$ = RegisterApplication$;
|
|
1629
688
|
exports.RegisterApplicationCommand = RegisterApplicationCommand;
|
|
1630
|
-
exports.RegisterApplicationInput$ = RegisterApplicationInput$;
|
|
1631
|
-
exports.RegisterApplicationOutput$ = RegisterApplicationOutput$;
|
|
1632
689
|
exports.ReplicationMode = ReplicationMode;
|
|
1633
|
-
exports.Resilience$ = Resilience$;
|
|
1634
|
-
exports.Resource$ = Resource$;
|
|
1635
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1636
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1637
|
-
exports.RuleResult$ = RuleResult$;
|
|
1638
690
|
exports.RuleResultStatus = RuleResultStatus;
|
|
1639
|
-
exports.RuleStatusCounts$ = RuleStatusCounts$;
|
|
1640
691
|
exports.SsmSap = SsmSap;
|
|
1641
692
|
exports.SsmSapClient = SsmSapClient;
|
|
1642
|
-
exports.SsmSapServiceException = SsmSapServiceException;
|
|
1643
|
-
exports.SsmSapServiceException$ = SsmSapServiceException$;
|
|
1644
|
-
exports.StartApplication$ = StartApplication$;
|
|
1645
693
|
exports.StartApplicationCommand = StartApplicationCommand;
|
|
1646
|
-
exports.StartApplicationInput$ = StartApplicationInput$;
|
|
1647
|
-
exports.StartApplicationOutput$ = StartApplicationOutput$;
|
|
1648
|
-
exports.StartApplicationRefresh$ = StartApplicationRefresh$;
|
|
1649
694
|
exports.StartApplicationRefreshCommand = StartApplicationRefreshCommand;
|
|
1650
|
-
exports.StartApplicationRefreshInput$ = StartApplicationRefreshInput$;
|
|
1651
|
-
exports.StartApplicationRefreshOutput$ = StartApplicationRefreshOutput$;
|
|
1652
|
-
exports.StartConfigurationChecks$ = StartConfigurationChecks$;
|
|
1653
695
|
exports.StartConfigurationChecksCommand = StartConfigurationChecksCommand;
|
|
1654
|
-
exports.StartConfigurationChecksInput$ = StartConfigurationChecksInput$;
|
|
1655
|
-
exports.StartConfigurationChecksOutput$ = StartConfigurationChecksOutput$;
|
|
1656
|
-
exports.StopApplication$ = StopApplication$;
|
|
1657
696
|
exports.StopApplicationCommand = StopApplicationCommand;
|
|
1658
|
-
exports.StopApplicationInput$ = StopApplicationInput$;
|
|
1659
|
-
exports.StopApplicationOutput$ = StopApplicationOutput$;
|
|
1660
|
-
exports.SubCheckResult$ = SubCheckResult$;
|
|
1661
|
-
exports.TagResource$ = TagResource$;
|
|
1662
697
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1663
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1664
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1665
|
-
exports.UnauthorizedException = UnauthorizedException;
|
|
1666
|
-
exports.UnauthorizedException$ = UnauthorizedException$;
|
|
1667
|
-
exports.UntagResource$ = UntagResource$;
|
|
1668
698
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1669
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1670
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1671
|
-
exports.UpdateApplicationSettings$ = UpdateApplicationSettings$;
|
|
1672
699
|
exports.UpdateApplicationSettingsCommand = UpdateApplicationSettingsCommand;
|
|
1673
|
-
exports.UpdateApplicationSettingsInput$ = UpdateApplicationSettingsInput$;
|
|
1674
|
-
exports.UpdateApplicationSettingsOutput$ = UpdateApplicationSettingsOutput$;
|
|
1675
|
-
exports.ValidationException = ValidationException;
|
|
1676
|
-
exports.ValidationException$ = ValidationException$;
|
|
1677
700
|
exports.paginateListApplications = paginateListApplications;
|
|
1678
701
|
exports.paginateListComponents = paginateListComponents;
|
|
1679
702
|
exports.paginateListConfigurationCheckDefinitions = paginateListConfigurationCheckDefinitions;
|
|
@@ -1683,3 +706,15 @@ exports.paginateListOperationEvents = paginateListOperationEvents;
|
|
|
1683
706
|
exports.paginateListOperations = paginateListOperations;
|
|
1684
707
|
exports.paginateListSubCheckResults = paginateListSubCheckResults;
|
|
1685
708
|
exports.paginateListSubCheckRuleResults = paginateListSubCheckRuleResults;
|
|
709
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
710
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
711
|
+
enumerable: true,
|
|
712
|
+
get: function () { return schemas_0[k]; }
|
|
713
|
+
});
|
|
714
|
+
});
|
|
715
|
+
Object.keys(errors).forEach(function (k) {
|
|
716
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
717
|
+
enumerable: true,
|
|
718
|
+
get: function () { return errors[k]; }
|
|
719
|
+
});
|
|
720
|
+
});
|