@aws-sdk/client-ssm-quicksetup 3.987.0 → 3.989.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 +33 -535
- package/dist-cjs/models/SSMQuickSetupServiceException.js +12 -0
- package/dist-cjs/models/errors.js +96 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +385 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +44 -38
- 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 SSMQuickSetupServiceException = require('./models/SSMQuickSetupServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,469 +113,6 @@ class SSMQuickSetupClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class SSMQuickSetupServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, SSMQuickSetupServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends SSMQuickSetupServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
Message;
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "AccessDeniedException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
|
-
this.Message = opts.Message;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
class ConflictException extends SSMQuickSetupServiceException {
|
|
135
|
-
name = "ConflictException";
|
|
136
|
-
$fault = "client";
|
|
137
|
-
Message;
|
|
138
|
-
constructor(opts) {
|
|
139
|
-
super({
|
|
140
|
-
name: "ConflictException",
|
|
141
|
-
$fault: "client",
|
|
142
|
-
...opts,
|
|
143
|
-
});
|
|
144
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
145
|
-
this.Message = opts.Message;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
class InternalServerException extends SSMQuickSetupServiceException {
|
|
149
|
-
name = "InternalServerException";
|
|
150
|
-
$fault = "server";
|
|
151
|
-
$retryable = {};
|
|
152
|
-
Message;
|
|
153
|
-
constructor(opts) {
|
|
154
|
-
super({
|
|
155
|
-
name: "InternalServerException",
|
|
156
|
-
$fault: "server",
|
|
157
|
-
...opts,
|
|
158
|
-
});
|
|
159
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
160
|
-
this.Message = opts.Message;
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
class ThrottlingException extends SSMQuickSetupServiceException {
|
|
164
|
-
name = "ThrottlingException";
|
|
165
|
-
$fault = "client";
|
|
166
|
-
$retryable = {};
|
|
167
|
-
Message;
|
|
168
|
-
constructor(opts) {
|
|
169
|
-
super({
|
|
170
|
-
name: "ThrottlingException",
|
|
171
|
-
$fault: "client",
|
|
172
|
-
...opts,
|
|
173
|
-
});
|
|
174
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
175
|
-
this.Message = opts.Message;
|
|
176
|
-
}
|
|
177
|
-
}
|
|
178
|
-
class ValidationException extends SSMQuickSetupServiceException {
|
|
179
|
-
name = "ValidationException";
|
|
180
|
-
$fault = "client";
|
|
181
|
-
Message;
|
|
182
|
-
constructor(opts) {
|
|
183
|
-
super({
|
|
184
|
-
name: "ValidationException",
|
|
185
|
-
$fault: "client",
|
|
186
|
-
...opts,
|
|
187
|
-
});
|
|
188
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
189
|
-
this.Message = opts.Message;
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
class ResourceNotFoundException extends SSMQuickSetupServiceException {
|
|
193
|
-
name = "ResourceNotFoundException";
|
|
194
|
-
$fault = "client";
|
|
195
|
-
Message;
|
|
196
|
-
constructor(opts) {
|
|
197
|
-
super({
|
|
198
|
-
name: "ResourceNotFoundException",
|
|
199
|
-
$fault: "client",
|
|
200
|
-
...opts,
|
|
201
|
-
});
|
|
202
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
203
|
-
this.Message = opts.Message;
|
|
204
|
-
}
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
const _A = "Account";
|
|
208
|
-
const _ADE = "AccessDeniedException";
|
|
209
|
-
const _CA = "CreatedAt";
|
|
210
|
-
const _CCM = "CreateConfigurationManager";
|
|
211
|
-
const _CCMI = "CreateConfigurationManagerInput";
|
|
212
|
-
const _CCMO = "CreateConfigurationManagerOutput";
|
|
213
|
-
const _CD = "ConfigurationDefinition";
|
|
214
|
-
const _CDI = "ConfigurationDefinitionInput";
|
|
215
|
-
const _CDIL = "ConfigurationDefinitionsInputList";
|
|
216
|
-
const _CDIo = "ConfigurationDefinitionId";
|
|
217
|
-
const _CDL = "ConfigurationDefinitionsList";
|
|
218
|
-
const _CDS = "ConfigurationDefinitionSummary";
|
|
219
|
-
const _CDSL = "ConfigurationDefinitionSummariesList";
|
|
220
|
-
const _CDSo = "ConfigurationDefinitionSummaries";
|
|
221
|
-
const _CDo = "ConfigurationDefinitions";
|
|
222
|
-
const _CE = "ConflictException";
|
|
223
|
-
const _CI = "ConfigurationId";
|
|
224
|
-
const _CL = "ConfigurationsList";
|
|
225
|
-
const _CML = "ConfigurationManagersList";
|
|
226
|
-
const _CMLo = "ConfigurationManagerList";
|
|
227
|
-
const _CMS = "ConfigurationManagerSummary";
|
|
228
|
-
const _CS = "ConfigurationSummary";
|
|
229
|
-
const _D = "Description";
|
|
230
|
-
const _DCM = "DeleteConfigurationManager";
|
|
231
|
-
const _DCMI = "DeleteConfigurationManagerInput";
|
|
232
|
-
const _EERA = "ExplorerEnablingRoleArn";
|
|
233
|
-
const _F = "Filter";
|
|
234
|
-
const _FCP = "FirstClassParameters";
|
|
235
|
-
const _FL = "FiltersList";
|
|
236
|
-
const _Fi = "Filters";
|
|
237
|
-
const _GC = "GetConfiguration";
|
|
238
|
-
const _GCI = "GetConfigurationInput";
|
|
239
|
-
const _GCM = "GetConfigurationManager";
|
|
240
|
-
const _GCMI = "GetConfigurationManagerInput";
|
|
241
|
-
const _GCMO = "GetConfigurationManagerOutput";
|
|
242
|
-
const _GCO = "GetConfigurationOutput";
|
|
243
|
-
const _GSS = "GetServiceSettings";
|
|
244
|
-
const _GSSO = "GetServiceSettingsOutput";
|
|
245
|
-
const _I = "Id";
|
|
246
|
-
const _ISE = "InternalServerException";
|
|
247
|
-
const _K = "Key";
|
|
248
|
-
const _LC = "ListConfigurations";
|
|
249
|
-
const _LCI = "ListConfigurationsInput";
|
|
250
|
-
const _LCM = "ListConfigurationManagers";
|
|
251
|
-
const _LCMI = "ListConfigurationManagersInput";
|
|
252
|
-
const _LCMO = "ListConfigurationManagersOutput";
|
|
253
|
-
const _LCO = "ListConfigurationsOutput";
|
|
254
|
-
const _LDARA = "LocalDeploymentAdministrationRoleArn";
|
|
255
|
-
const _LDERN = "LocalDeploymentExecutionRoleName";
|
|
256
|
-
const _LMA = "LastModifiedAt";
|
|
257
|
-
const _LQST = "ListQuickSetupTypes";
|
|
258
|
-
const _LQSTO = "ListQuickSetupTypesOutput";
|
|
259
|
-
const _LTFR = "ListTagsForResource";
|
|
260
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
261
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
262
|
-
const _LUA = "LastUpdatedAt";
|
|
263
|
-
const _LV = "LatestVersion";
|
|
264
|
-
const _M = "Message";
|
|
265
|
-
const _MA = "ManagerArn";
|
|
266
|
-
const _MI = "MaxItems";
|
|
267
|
-
const _N = "Name";
|
|
268
|
-
const _NT = "NextToken";
|
|
269
|
-
const _P = "Parameters";
|
|
270
|
-
const _QSTL = "QuickSetupTypeList";
|
|
271
|
-
const _QSTO = "QuickSetupTypeOutput";
|
|
272
|
-
const _R = "Region";
|
|
273
|
-
const _RA = "ResourceArn";
|
|
274
|
-
const _RNFE = "ResourceNotFoundException";
|
|
275
|
-
const _S = "Status";
|
|
276
|
-
const _SD = "StatusDetails";
|
|
277
|
-
const _SM = "StatusMessage";
|
|
278
|
-
const _SS = "StatusSummaries";
|
|
279
|
-
const _SSL = "StatusSummariesList";
|
|
280
|
-
const _SSe = "ServiceSettings";
|
|
281
|
-
const _SSt = "StatusSummary";
|
|
282
|
-
const _ST = "StartingToken";
|
|
283
|
-
const _STt = "StatusType";
|
|
284
|
-
const _T = "Type";
|
|
285
|
-
const _TE = "TagEntry";
|
|
286
|
-
const _TEh = "ThrottlingException";
|
|
287
|
-
const _TK = "TagKeys";
|
|
288
|
-
const _TM = "TagsMap";
|
|
289
|
-
const _TR = "TagResource";
|
|
290
|
-
const _TRI = "TagResourceInput";
|
|
291
|
-
const _TV = "TypeVersion";
|
|
292
|
-
const _Ta = "Tags";
|
|
293
|
-
const _UCD = "UpdateConfigurationDefinition";
|
|
294
|
-
const _UCDI = "UpdateConfigurationDefinitionInput";
|
|
295
|
-
const _UCM = "UpdateConfigurationManager";
|
|
296
|
-
const _UCMI = "UpdateConfigurationManagerInput";
|
|
297
|
-
const _UR = "UntagResource";
|
|
298
|
-
const _URI = "UntagResourceInput";
|
|
299
|
-
const _USS = "UpdateServiceSettings";
|
|
300
|
-
const _USSI = "UpdateServiceSettingsInput";
|
|
301
|
-
const _V = "Values";
|
|
302
|
-
const _VE = "ValidationException";
|
|
303
|
-
const _Va = "Value";
|
|
304
|
-
const _c = "client";
|
|
305
|
-
const _e = "error";
|
|
306
|
-
const _h = "http";
|
|
307
|
-
const _hE = "httpError";
|
|
308
|
-
const _hQ = "httpQuery";
|
|
309
|
-
const _s = "server";
|
|
310
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.ssmquicksetup";
|
|
311
|
-
const _tK = "tagKeys";
|
|
312
|
-
const n0 = "com.amazonaws.ssmquicksetup";
|
|
313
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
314
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
315
|
-
[_M],
|
|
316
|
-
[0]
|
|
317
|
-
];
|
|
318
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
319
|
-
var ConfigurationDefinition$ = [3, n0, _CD,
|
|
320
|
-
0,
|
|
321
|
-
[_T, _P, _TV, _LDERN, _LDARA, _I],
|
|
322
|
-
[0, 128 | 0, 0, 0, 0, 0], 2
|
|
323
|
-
];
|
|
324
|
-
var ConfigurationDefinitionInput$ = [3, n0, _CDI,
|
|
325
|
-
0,
|
|
326
|
-
[_T, _P, _TV, _LDERN, _LDARA],
|
|
327
|
-
[0, 128 | 0, 0, 0, 0], 2
|
|
328
|
-
];
|
|
329
|
-
var ConfigurationDefinitionSummary$ = [3, n0, _CDS,
|
|
330
|
-
0,
|
|
331
|
-
[_I, _T, _TV, _FCP],
|
|
332
|
-
[0, 0, 0, 128 | 0]
|
|
333
|
-
];
|
|
334
|
-
var ConfigurationManagerSummary$ = [3, n0, _CMS,
|
|
335
|
-
0,
|
|
336
|
-
[_MA, _D, _N, _SS, _CDSo],
|
|
337
|
-
[0, 0, 0, () => StatusSummariesList, () => ConfigurationDefinitionSummariesList], 1
|
|
338
|
-
];
|
|
339
|
-
var ConfigurationSummary$ = [3, n0, _CS,
|
|
340
|
-
0,
|
|
341
|
-
[_I, _MA, _CDIo, _T, _TV, _R, _A, _CA, _FCP, _SS],
|
|
342
|
-
[0, 0, 0, 0, 0, 0, 0, 5, 128 | 0, () => StatusSummariesList]
|
|
343
|
-
];
|
|
344
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
345
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
346
|
-
[_M],
|
|
347
|
-
[0]
|
|
348
|
-
];
|
|
349
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
350
|
-
var CreateConfigurationManagerInput$ = [3, n0, _CCMI,
|
|
351
|
-
0,
|
|
352
|
-
[_CDo, _N, _D, _Ta],
|
|
353
|
-
[() => ConfigurationDefinitionsInputList, 0, 0, [() => TagsMap, 0]], 1
|
|
354
|
-
];
|
|
355
|
-
var CreateConfigurationManagerOutput$ = [3, n0, _CCMO,
|
|
356
|
-
0,
|
|
357
|
-
[_MA],
|
|
358
|
-
[0], 1
|
|
359
|
-
];
|
|
360
|
-
var DeleteConfigurationManagerInput$ = [3, n0, _DCMI,
|
|
361
|
-
0,
|
|
362
|
-
[_MA],
|
|
363
|
-
[[0, 1]], 1
|
|
364
|
-
];
|
|
365
|
-
var Filter$ = [3, n0, _F,
|
|
366
|
-
0,
|
|
367
|
-
[_K, _V],
|
|
368
|
-
[0, 64 | 0], 2
|
|
369
|
-
];
|
|
370
|
-
var GetConfigurationInput$ = [3, n0, _GCI,
|
|
371
|
-
0,
|
|
372
|
-
[_CI],
|
|
373
|
-
[[0, 1]], 1
|
|
374
|
-
];
|
|
375
|
-
var GetConfigurationManagerInput$ = [3, n0, _GCMI,
|
|
376
|
-
0,
|
|
377
|
-
[_MA],
|
|
378
|
-
[[0, 1]], 1
|
|
379
|
-
];
|
|
380
|
-
var GetConfigurationManagerOutput$ = [3, n0, _GCMO,
|
|
381
|
-
0,
|
|
382
|
-
[_MA, _D, _N, _CA, _LMA, _SS, _CDo, _Ta],
|
|
383
|
-
[0, 0, 0, 5, 5, () => StatusSummariesList, () => ConfigurationDefinitionsList, [() => TagsMap, 0]], 1
|
|
384
|
-
];
|
|
385
|
-
var GetConfigurationOutput$ = [3, n0, _GCO,
|
|
386
|
-
0,
|
|
387
|
-
[_I, _MA, _CDIo, _T, _TV, _A, _R, _CA, _LMA, _SS, _P],
|
|
388
|
-
[0, 0, 0, 0, 0, 0, 0, 5, 5, () => StatusSummariesList, 128 | 0]
|
|
389
|
-
];
|
|
390
|
-
var GetServiceSettingsOutput$ = [3, n0, _GSSO,
|
|
391
|
-
0,
|
|
392
|
-
[_SSe],
|
|
393
|
-
[() => ServiceSettings$]
|
|
394
|
-
];
|
|
395
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
396
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
397
|
-
[_M],
|
|
398
|
-
[0]
|
|
399
|
-
];
|
|
400
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
401
|
-
var ListConfigurationManagersInput$ = [3, n0, _LCMI,
|
|
402
|
-
0,
|
|
403
|
-
[_ST, _MI, _Fi],
|
|
404
|
-
[0, 1, () => FiltersList]
|
|
405
|
-
];
|
|
406
|
-
var ListConfigurationManagersOutput$ = [3, n0, _LCMO,
|
|
407
|
-
0,
|
|
408
|
-
[_CML, _NT],
|
|
409
|
-
[() => ConfigurationManagerList, 0]
|
|
410
|
-
];
|
|
411
|
-
var ListConfigurationsInput$ = [3, n0, _LCI,
|
|
412
|
-
0,
|
|
413
|
-
[_ST, _MI, _Fi, _MA, _CDIo],
|
|
414
|
-
[0, 1, () => FiltersList, 0, 0]
|
|
415
|
-
];
|
|
416
|
-
var ListConfigurationsOutput$ = [3, n0, _LCO,
|
|
417
|
-
0,
|
|
418
|
-
[_CL, _NT],
|
|
419
|
-
[() => ConfigurationsList, 0]
|
|
420
|
-
];
|
|
421
|
-
var ListQuickSetupTypesOutput$ = [3, n0, _LQSTO,
|
|
422
|
-
0,
|
|
423
|
-
[_QSTL],
|
|
424
|
-
[() => QuickSetupTypeList]
|
|
425
|
-
];
|
|
426
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
427
|
-
0,
|
|
428
|
-
[_RA],
|
|
429
|
-
[[0, 1]], 1
|
|
430
|
-
];
|
|
431
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
432
|
-
0,
|
|
433
|
-
[_Ta],
|
|
434
|
-
[[() => Tags, 0]]
|
|
435
|
-
];
|
|
436
|
-
var QuickSetupTypeOutput$ = [3, n0, _QSTO,
|
|
437
|
-
0,
|
|
438
|
-
[_T, _LV],
|
|
439
|
-
[0, 0]
|
|
440
|
-
];
|
|
441
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
442
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
443
|
-
[_M],
|
|
444
|
-
[0]
|
|
445
|
-
];
|
|
446
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
447
|
-
var ServiceSettings$ = [3, n0, _SSe,
|
|
448
|
-
0,
|
|
449
|
-
[_EERA],
|
|
450
|
-
[0]
|
|
451
|
-
];
|
|
452
|
-
var StatusSummary$ = [3, n0, _SSt,
|
|
453
|
-
0,
|
|
454
|
-
[_STt, _LUA, _S, _SM, _SD],
|
|
455
|
-
[0, 5, 0, 0, 128 | 0], 2
|
|
456
|
-
];
|
|
457
|
-
var TagEntry$ = [3, n0, _TE,
|
|
458
|
-
8,
|
|
459
|
-
[_K, _Va],
|
|
460
|
-
[0, 0]
|
|
461
|
-
];
|
|
462
|
-
var TagResourceInput$ = [3, n0, _TRI,
|
|
463
|
-
0,
|
|
464
|
-
[_RA, _Ta],
|
|
465
|
-
[[0, 1], [() => TagsMap, 0]], 2
|
|
466
|
-
];
|
|
467
|
-
var ThrottlingException$ = [-3, n0, _TEh,
|
|
468
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
469
|
-
[_M],
|
|
470
|
-
[0], 1
|
|
471
|
-
];
|
|
472
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
473
|
-
var UntagResourceInput$ = [3, n0, _URI,
|
|
474
|
-
0,
|
|
475
|
-
[_RA, _TK],
|
|
476
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
477
|
-
];
|
|
478
|
-
var UpdateConfigurationDefinitionInput$ = [3, n0, _UCDI,
|
|
479
|
-
0,
|
|
480
|
-
[_MA, _I, _TV, _P, _LDERN, _LDARA],
|
|
481
|
-
[[0, 1], [0, 1], 0, 128 | 0, 0, 0], 2
|
|
482
|
-
];
|
|
483
|
-
var UpdateConfigurationManagerInput$ = [3, n0, _UCMI,
|
|
484
|
-
0,
|
|
485
|
-
[_MA, _N, _D],
|
|
486
|
-
[[0, 1], 0, 0], 1
|
|
487
|
-
];
|
|
488
|
-
var UpdateServiceSettingsInput$ = [3, n0, _USSI,
|
|
489
|
-
0,
|
|
490
|
-
[_EERA],
|
|
491
|
-
[0]
|
|
492
|
-
];
|
|
493
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
494
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
495
|
-
[_M],
|
|
496
|
-
[0]
|
|
497
|
-
];
|
|
498
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
499
|
-
var __Unit = "unit";
|
|
500
|
-
var SSMQuickSetupServiceException$ = [-3, _sm, "SSMQuickSetupServiceException", 0, [], []];
|
|
501
|
-
schema.TypeRegistry.for(_sm).registerError(SSMQuickSetupServiceException$, SSMQuickSetupServiceException);
|
|
502
|
-
var ConfigurationDefinitionsInputList = [1, n0, _CDIL,
|
|
503
|
-
0, () => ConfigurationDefinitionInput$
|
|
504
|
-
];
|
|
505
|
-
var ConfigurationDefinitionsList = [1, n0, _CDL,
|
|
506
|
-
0, () => ConfigurationDefinition$
|
|
507
|
-
];
|
|
508
|
-
var ConfigurationDefinitionSummariesList = [1, n0, _CDSL,
|
|
509
|
-
0, () => ConfigurationDefinitionSummary$
|
|
510
|
-
];
|
|
511
|
-
var ConfigurationManagerList = [1, n0, _CMLo,
|
|
512
|
-
0, () => ConfigurationManagerSummary$
|
|
513
|
-
];
|
|
514
|
-
var ConfigurationsList = [1, n0, _CL,
|
|
515
|
-
0, () => ConfigurationSummary$
|
|
516
|
-
];
|
|
517
|
-
var FiltersList = [1, n0, _FL,
|
|
518
|
-
0, () => Filter$
|
|
519
|
-
];
|
|
520
|
-
var QuickSetupTypeList = [1, n0, _QSTL,
|
|
521
|
-
0, () => QuickSetupTypeOutput$
|
|
522
|
-
];
|
|
523
|
-
var StatusSummariesList = [1, n0, _SSL,
|
|
524
|
-
0, () => StatusSummary$
|
|
525
|
-
];
|
|
526
|
-
var Tags = [1, n0, _Ta,
|
|
527
|
-
8, [() => TagEntry$,
|
|
528
|
-
0]
|
|
529
|
-
];
|
|
530
|
-
var TagsMap = [2, n0, _TM,
|
|
531
|
-
8, 0, 0
|
|
532
|
-
];
|
|
533
|
-
var CreateConfigurationManager$ = [9, n0, _CCM,
|
|
534
|
-
{ [_h]: ["POST", "/configurationManager", 200] }, () => CreateConfigurationManagerInput$, () => CreateConfigurationManagerOutput$
|
|
535
|
-
];
|
|
536
|
-
var DeleteConfigurationManager$ = [9, n0, _DCM,
|
|
537
|
-
{ [_h]: ["DELETE", "/configurationManager/{ManagerArn}", 200] }, () => DeleteConfigurationManagerInput$, () => __Unit
|
|
538
|
-
];
|
|
539
|
-
var GetConfiguration$ = [9, n0, _GC,
|
|
540
|
-
{ [_h]: ["GET", "/getConfiguration/{ConfigurationId}", 200] }, () => GetConfigurationInput$, () => GetConfigurationOutput$
|
|
541
|
-
];
|
|
542
|
-
var GetConfigurationManager$ = [9, n0, _GCM,
|
|
543
|
-
{ [_h]: ["GET", "/configurationManager/{ManagerArn}", 200] }, () => GetConfigurationManagerInput$, () => GetConfigurationManagerOutput$
|
|
544
|
-
];
|
|
545
|
-
var GetServiceSettings$ = [9, n0, _GSS,
|
|
546
|
-
{ [_h]: ["GET", "/serviceSettings", 200] }, () => __Unit, () => GetServiceSettingsOutput$
|
|
547
|
-
];
|
|
548
|
-
var ListConfigurationManagers$ = [9, n0, _LCM,
|
|
549
|
-
{ [_h]: ["POST", "/listConfigurationManagers", 200] }, () => ListConfigurationManagersInput$, () => ListConfigurationManagersOutput$
|
|
550
|
-
];
|
|
551
|
-
var ListConfigurations$ = [9, n0, _LC,
|
|
552
|
-
{ [_h]: ["POST", "/listConfigurations", 200] }, () => ListConfigurationsInput$, () => ListConfigurationsOutput$
|
|
553
|
-
];
|
|
554
|
-
var ListQuickSetupTypes$ = [9, n0, _LQST,
|
|
555
|
-
{ [_h]: ["GET", "/listQuickSetupTypes", 200] }, () => __Unit, () => ListQuickSetupTypesOutput$
|
|
556
|
-
];
|
|
557
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
558
|
-
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
559
|
-
];
|
|
560
|
-
var TagResource$ = [9, n0, _TR,
|
|
561
|
-
{ [_h]: ["PUT", "/tags/{ResourceArn}", 200] }, () => TagResourceInput$, () => __Unit
|
|
562
|
-
];
|
|
563
|
-
var UntagResource$ = [9, n0, _UR,
|
|
564
|
-
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 200] }, () => UntagResourceInput$, () => __Unit
|
|
565
|
-
];
|
|
566
|
-
var UpdateConfigurationDefinition$ = [9, n0, _UCD,
|
|
567
|
-
{ [_h]: ["PUT", "/configurationDefinition/{ManagerArn}/{Id}", 200] }, () => UpdateConfigurationDefinitionInput$, () => __Unit
|
|
568
|
-
];
|
|
569
|
-
var UpdateConfigurationManager$ = [9, n0, _UCM,
|
|
570
|
-
{ [_h]: ["PUT", "/configurationManager/{ManagerArn}", 200] }, () => UpdateConfigurationManagerInput$, () => __Unit
|
|
571
|
-
];
|
|
572
|
-
var UpdateServiceSettings$ = [9, n0, _USS,
|
|
573
|
-
{ [_h]: ["PUT", "/serviceSettings", 200] }, () => UpdateServiceSettingsInput$, () => __Unit
|
|
574
|
-
];
|
|
575
|
-
|
|
576
116
|
class CreateConfigurationManagerCommand extends smithyClient.Command
|
|
577
117
|
.classBuilder()
|
|
578
118
|
.ep(commonParams)
|
|
@@ -581,7 +121,7 @@ class CreateConfigurationManagerCommand extends smithyClient.Command
|
|
|
581
121
|
})
|
|
582
122
|
.s("QuickSetup", "CreateConfigurationManager", {})
|
|
583
123
|
.n("SSMQuickSetupClient", "CreateConfigurationManagerCommand")
|
|
584
|
-
.sc(CreateConfigurationManager$)
|
|
124
|
+
.sc(schemas_0.CreateConfigurationManager$)
|
|
585
125
|
.build() {
|
|
586
126
|
}
|
|
587
127
|
|
|
@@ -593,7 +133,7 @@ class DeleteConfigurationManagerCommand extends smithyClient.Command
|
|
|
593
133
|
})
|
|
594
134
|
.s("QuickSetup", "DeleteConfigurationManager", {})
|
|
595
135
|
.n("SSMQuickSetupClient", "DeleteConfigurationManagerCommand")
|
|
596
|
-
.sc(DeleteConfigurationManager$)
|
|
136
|
+
.sc(schemas_0.DeleteConfigurationManager$)
|
|
597
137
|
.build() {
|
|
598
138
|
}
|
|
599
139
|
|
|
@@ -605,7 +145,7 @@ class GetConfigurationCommand extends smithyClient.Command
|
|
|
605
145
|
})
|
|
606
146
|
.s("QuickSetup", "GetConfiguration", {})
|
|
607
147
|
.n("SSMQuickSetupClient", "GetConfigurationCommand")
|
|
608
|
-
.sc(GetConfiguration$)
|
|
148
|
+
.sc(schemas_0.GetConfiguration$)
|
|
609
149
|
.build() {
|
|
610
150
|
}
|
|
611
151
|
|
|
@@ -617,7 +157,7 @@ class GetConfigurationManagerCommand extends smithyClient.Command
|
|
|
617
157
|
})
|
|
618
158
|
.s("QuickSetup", "GetConfigurationManager", {})
|
|
619
159
|
.n("SSMQuickSetupClient", "GetConfigurationManagerCommand")
|
|
620
|
-
.sc(GetConfigurationManager$)
|
|
160
|
+
.sc(schemas_0.GetConfigurationManager$)
|
|
621
161
|
.build() {
|
|
622
162
|
}
|
|
623
163
|
|
|
@@ -629,7 +169,7 @@ class GetServiceSettingsCommand extends smithyClient.Command
|
|
|
629
169
|
})
|
|
630
170
|
.s("QuickSetup", "GetServiceSettings", {})
|
|
631
171
|
.n("SSMQuickSetupClient", "GetServiceSettingsCommand")
|
|
632
|
-
.sc(GetServiceSettings$)
|
|
172
|
+
.sc(schemas_0.GetServiceSettings$)
|
|
633
173
|
.build() {
|
|
634
174
|
}
|
|
635
175
|
|
|
@@ -641,7 +181,7 @@ class ListConfigurationManagersCommand extends smithyClient.Command
|
|
|
641
181
|
})
|
|
642
182
|
.s("QuickSetup", "ListConfigurationManagers", {})
|
|
643
183
|
.n("SSMQuickSetupClient", "ListConfigurationManagersCommand")
|
|
644
|
-
.sc(ListConfigurationManagers$)
|
|
184
|
+
.sc(schemas_0.ListConfigurationManagers$)
|
|
645
185
|
.build() {
|
|
646
186
|
}
|
|
647
187
|
|
|
@@ -653,7 +193,7 @@ class ListConfigurationsCommand extends smithyClient.Command
|
|
|
653
193
|
})
|
|
654
194
|
.s("QuickSetup", "ListConfigurations", {})
|
|
655
195
|
.n("SSMQuickSetupClient", "ListConfigurationsCommand")
|
|
656
|
-
.sc(ListConfigurations$)
|
|
196
|
+
.sc(schemas_0.ListConfigurations$)
|
|
657
197
|
.build() {
|
|
658
198
|
}
|
|
659
199
|
|
|
@@ -665,7 +205,7 @@ class ListQuickSetupTypesCommand extends smithyClient.Command
|
|
|
665
205
|
})
|
|
666
206
|
.s("QuickSetup", "ListQuickSetupTypes", {})
|
|
667
207
|
.n("SSMQuickSetupClient", "ListQuickSetupTypesCommand")
|
|
668
|
-
.sc(ListQuickSetupTypes$)
|
|
208
|
+
.sc(schemas_0.ListQuickSetupTypes$)
|
|
669
209
|
.build() {
|
|
670
210
|
}
|
|
671
211
|
|
|
@@ -677,7 +217,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
677
217
|
})
|
|
678
218
|
.s("QuickSetup", "ListTagsForResource", {})
|
|
679
219
|
.n("SSMQuickSetupClient", "ListTagsForResourceCommand")
|
|
680
|
-
.sc(ListTagsForResource$)
|
|
220
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
681
221
|
.build() {
|
|
682
222
|
}
|
|
683
223
|
|
|
@@ -689,7 +229,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
689
229
|
})
|
|
690
230
|
.s("QuickSetup", "TagResource", {})
|
|
691
231
|
.n("SSMQuickSetupClient", "TagResourceCommand")
|
|
692
|
-
.sc(TagResource$)
|
|
232
|
+
.sc(schemas_0.TagResource$)
|
|
693
233
|
.build() {
|
|
694
234
|
}
|
|
695
235
|
|
|
@@ -701,7 +241,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
701
241
|
})
|
|
702
242
|
.s("QuickSetup", "UntagResource", {})
|
|
703
243
|
.n("SSMQuickSetupClient", "UntagResourceCommand")
|
|
704
|
-
.sc(UntagResource$)
|
|
244
|
+
.sc(schemas_0.UntagResource$)
|
|
705
245
|
.build() {
|
|
706
246
|
}
|
|
707
247
|
|
|
@@ -713,7 +253,7 @@ class UpdateConfigurationDefinitionCommand extends smithyClient.Command
|
|
|
713
253
|
})
|
|
714
254
|
.s("QuickSetup", "UpdateConfigurationDefinition", {})
|
|
715
255
|
.n("SSMQuickSetupClient", "UpdateConfigurationDefinitionCommand")
|
|
716
|
-
.sc(UpdateConfigurationDefinition$)
|
|
256
|
+
.sc(schemas_0.UpdateConfigurationDefinition$)
|
|
717
257
|
.build() {
|
|
718
258
|
}
|
|
719
259
|
|
|
@@ -725,7 +265,7 @@ class UpdateConfigurationManagerCommand extends smithyClient.Command
|
|
|
725
265
|
})
|
|
726
266
|
.s("QuickSetup", "UpdateConfigurationManager", {})
|
|
727
267
|
.n("SSMQuickSetupClient", "UpdateConfigurationManagerCommand")
|
|
728
|
-
.sc(UpdateConfigurationManager$)
|
|
268
|
+
.sc(schemas_0.UpdateConfigurationManager$)
|
|
729
269
|
.build() {
|
|
730
270
|
}
|
|
731
271
|
|
|
@@ -737,7 +277,7 @@ class UpdateServiceSettingsCommand extends smithyClient.Command
|
|
|
737
277
|
})
|
|
738
278
|
.s("QuickSetup", "UpdateServiceSettings", {})
|
|
739
279
|
.n("SSMQuickSetupClient", "UpdateServiceSettingsCommand")
|
|
740
|
-
.sc(UpdateServiceSettings$)
|
|
280
|
+
.sc(schemas_0.UpdateServiceSettings$)
|
|
741
281
|
.build() {
|
|
742
282
|
}
|
|
743
283
|
|
|
@@ -794,81 +334,39 @@ Object.defineProperty(exports, "__Client", {
|
|
|
794
334
|
enumerable: true,
|
|
795
335
|
get: function () { return smithyClient.Client; }
|
|
796
336
|
});
|
|
797
|
-
exports
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
exports.ConfigurationDefinitionSummary$ = ConfigurationDefinitionSummary$;
|
|
802
|
-
exports.ConfigurationManagerSummary$ = ConfigurationManagerSummary$;
|
|
803
|
-
exports.ConfigurationSummary$ = ConfigurationSummary$;
|
|
804
|
-
exports.ConflictException = ConflictException;
|
|
805
|
-
exports.ConflictException$ = ConflictException$;
|
|
806
|
-
exports.CreateConfigurationManager$ = CreateConfigurationManager$;
|
|
337
|
+
Object.defineProperty(exports, "SSMQuickSetupServiceException", {
|
|
338
|
+
enumerable: true,
|
|
339
|
+
get: function () { return SSMQuickSetupServiceException.SSMQuickSetupServiceException; }
|
|
340
|
+
});
|
|
807
341
|
exports.CreateConfigurationManagerCommand = CreateConfigurationManagerCommand;
|
|
808
|
-
exports.CreateConfigurationManagerInput$ = CreateConfigurationManagerInput$;
|
|
809
|
-
exports.CreateConfigurationManagerOutput$ = CreateConfigurationManagerOutput$;
|
|
810
|
-
exports.DeleteConfigurationManager$ = DeleteConfigurationManager$;
|
|
811
342
|
exports.DeleteConfigurationManagerCommand = DeleteConfigurationManagerCommand;
|
|
812
|
-
exports.DeleteConfigurationManagerInput$ = DeleteConfigurationManagerInput$;
|
|
813
|
-
exports.Filter$ = Filter$;
|
|
814
|
-
exports.GetConfiguration$ = GetConfiguration$;
|
|
815
343
|
exports.GetConfigurationCommand = GetConfigurationCommand;
|
|
816
|
-
exports.GetConfigurationInput$ = GetConfigurationInput$;
|
|
817
|
-
exports.GetConfigurationManager$ = GetConfigurationManager$;
|
|
818
344
|
exports.GetConfigurationManagerCommand = GetConfigurationManagerCommand;
|
|
819
|
-
exports.GetConfigurationManagerInput$ = GetConfigurationManagerInput$;
|
|
820
|
-
exports.GetConfigurationManagerOutput$ = GetConfigurationManagerOutput$;
|
|
821
|
-
exports.GetConfigurationOutput$ = GetConfigurationOutput$;
|
|
822
|
-
exports.GetServiceSettings$ = GetServiceSettings$;
|
|
823
345
|
exports.GetServiceSettingsCommand = GetServiceSettingsCommand;
|
|
824
|
-
exports.GetServiceSettingsOutput$ = GetServiceSettingsOutput$;
|
|
825
|
-
exports.InternalServerException = InternalServerException;
|
|
826
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
827
|
-
exports.ListConfigurationManagers$ = ListConfigurationManagers$;
|
|
828
346
|
exports.ListConfigurationManagersCommand = ListConfigurationManagersCommand;
|
|
829
|
-
exports.ListConfigurationManagersInput$ = ListConfigurationManagersInput$;
|
|
830
|
-
exports.ListConfigurationManagersOutput$ = ListConfigurationManagersOutput$;
|
|
831
|
-
exports.ListConfigurations$ = ListConfigurations$;
|
|
832
347
|
exports.ListConfigurationsCommand = ListConfigurationsCommand;
|
|
833
|
-
exports.ListConfigurationsInput$ = ListConfigurationsInput$;
|
|
834
|
-
exports.ListConfigurationsOutput$ = ListConfigurationsOutput$;
|
|
835
|
-
exports.ListQuickSetupTypes$ = ListQuickSetupTypes$;
|
|
836
348
|
exports.ListQuickSetupTypesCommand = ListQuickSetupTypesCommand;
|
|
837
|
-
exports.ListQuickSetupTypesOutput$ = ListQuickSetupTypesOutput$;
|
|
838
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
839
349
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
840
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
841
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
842
|
-
exports.QuickSetupTypeOutput$ = QuickSetupTypeOutput$;
|
|
843
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
844
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
845
350
|
exports.SSMQuickSetup = SSMQuickSetup;
|
|
846
351
|
exports.SSMQuickSetupClient = SSMQuickSetupClient;
|
|
847
|
-
exports.SSMQuickSetupServiceException = SSMQuickSetupServiceException;
|
|
848
|
-
exports.SSMQuickSetupServiceException$ = SSMQuickSetupServiceException$;
|
|
849
|
-
exports.ServiceSettings$ = ServiceSettings$;
|
|
850
352
|
exports.Status = Status;
|
|
851
|
-
exports.StatusSummary$ = StatusSummary$;
|
|
852
353
|
exports.StatusType = StatusType;
|
|
853
|
-
exports.TagEntry$ = TagEntry$;
|
|
854
|
-
exports.TagResource$ = TagResource$;
|
|
855
354
|
exports.TagResourceCommand = TagResourceCommand;
|
|
856
|
-
exports.TagResourceInput$ = TagResourceInput$;
|
|
857
|
-
exports.ThrottlingException = ThrottlingException;
|
|
858
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
859
|
-
exports.UntagResource$ = UntagResource$;
|
|
860
355
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
861
|
-
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
862
|
-
exports.UpdateConfigurationDefinition$ = UpdateConfigurationDefinition$;
|
|
863
356
|
exports.UpdateConfigurationDefinitionCommand = UpdateConfigurationDefinitionCommand;
|
|
864
|
-
exports.UpdateConfigurationDefinitionInput$ = UpdateConfigurationDefinitionInput$;
|
|
865
|
-
exports.UpdateConfigurationManager$ = UpdateConfigurationManager$;
|
|
866
357
|
exports.UpdateConfigurationManagerCommand = UpdateConfigurationManagerCommand;
|
|
867
|
-
exports.UpdateConfigurationManagerInput$ = UpdateConfigurationManagerInput$;
|
|
868
|
-
exports.UpdateServiceSettings$ = UpdateServiceSettings$;
|
|
869
358
|
exports.UpdateServiceSettingsCommand = UpdateServiceSettingsCommand;
|
|
870
|
-
exports.UpdateServiceSettingsInput$ = UpdateServiceSettingsInput$;
|
|
871
|
-
exports.ValidationException = ValidationException;
|
|
872
|
-
exports.ValidationException$ = ValidationException$;
|
|
873
359
|
exports.paginateListConfigurationManagers = paginateListConfigurationManagers;
|
|
874
360
|
exports.paginateListConfigurations = paginateListConfigurations;
|
|
361
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
362
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
363
|
+
enumerable: true,
|
|
364
|
+
get: function () { return schemas_0[k]; }
|
|
365
|
+
});
|
|
366
|
+
});
|
|
367
|
+
Object.keys(errors).forEach(function (k) {
|
|
368
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
369
|
+
enumerable: true,
|
|
370
|
+
get: function () { return errors[k]; }
|
|
371
|
+
});
|
|
372
|
+
});
|