@aws-sdk/client-ssm-quicksetup 3.928.0 → 3.930.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +532 -683
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/SSMQuickSetupClient.js +2 -0
- package/dist-es/commands/CreateConfigurationManagerCommand.js +3 -10
- package/dist-es/commands/DeleteConfigurationManagerCommand.js +3 -9
- package/dist-es/commands/GetConfigurationCommand.js +3 -9
- package/dist-es/commands/GetConfigurationManagerCommand.js +3 -10
- package/dist-es/commands/GetServiceSettingsCommand.js +3 -9
- package/dist-es/commands/ListConfigurationManagersCommand.js +3 -9
- package/dist-es/commands/ListConfigurationsCommand.js +3 -9
- package/dist-es/commands/ListQuickSetupTypesCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -10
- package/dist-es/commands/TagResourceCommand.js +3 -10
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateConfigurationDefinitionCommand.js +3 -9
- package/dist-es/commands/UpdateConfigurationManagerCommand.js +3 -9
- package/dist-es/commands/UpdateServiceSettingsCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -20
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +490 -0
- package/dist-types/SSMQuickSetupClient.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 +67 -0
- package/dist-types/ts3.4/SSMQuickSetupClient.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 +73 -0
- package/package.json +33 -33
- package/dist-es/protocols/Aws_restJson1.js +0 -546
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -128
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -173
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 SSMQuickSetupClient 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,14 +110,14 @@ class SSMQuickSetupClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
class SSMQuickSetupServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let SSMQuickSetupServiceException$1 = class SSMQuickSetupServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, SSMQuickSetupServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
};
|
|
119
119
|
|
|
120
|
-
class AccessDeniedException extends SSMQuickSetupServiceException {
|
|
120
|
+
let AccessDeniedException$1 = class AccessDeniedException extends SSMQuickSetupServiceException$1 {
|
|
121
121
|
name = "AccessDeniedException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
Message;
|
|
@@ -130,7 +130,7 @@ class AccessDeniedException extends SSMQuickSetupServiceException {
|
|
|
130
130
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
131
|
this.Message = opts.Message;
|
|
132
132
|
}
|
|
133
|
-
}
|
|
133
|
+
};
|
|
134
134
|
const Status = {
|
|
135
135
|
DELETE_FAILED: "DELETE_FAILED",
|
|
136
136
|
DELETING: "DELETING",
|
|
@@ -147,7 +147,7 @@ const StatusType = {
|
|
|
147
147
|
ASYNC_EXECUTIONS: "AsyncExecutions",
|
|
148
148
|
DEPLOYMENT: "Deployment",
|
|
149
149
|
};
|
|
150
|
-
class ConflictException extends SSMQuickSetupServiceException {
|
|
150
|
+
let ConflictException$1 = class ConflictException extends SSMQuickSetupServiceException$1 {
|
|
151
151
|
name = "ConflictException";
|
|
152
152
|
$fault = "client";
|
|
153
153
|
Message;
|
|
@@ -160,8 +160,8 @@ class ConflictException extends SSMQuickSetupServiceException {
|
|
|
160
160
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
161
161
|
this.Message = opts.Message;
|
|
162
162
|
}
|
|
163
|
-
}
|
|
164
|
-
class InternalServerException extends SSMQuickSetupServiceException {
|
|
163
|
+
};
|
|
164
|
+
let InternalServerException$1 = class InternalServerException extends SSMQuickSetupServiceException$1 {
|
|
165
165
|
name = "InternalServerException";
|
|
166
166
|
$fault = "server";
|
|
167
167
|
$retryable = {};
|
|
@@ -175,8 +175,8 @@ class InternalServerException extends SSMQuickSetupServiceException {
|
|
|
175
175
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
176
176
|
this.Message = opts.Message;
|
|
177
177
|
}
|
|
178
|
-
}
|
|
179
|
-
class ThrottlingException extends SSMQuickSetupServiceException {
|
|
178
|
+
};
|
|
179
|
+
let ThrottlingException$1 = class ThrottlingException extends SSMQuickSetupServiceException$1 {
|
|
180
180
|
name = "ThrottlingException";
|
|
181
181
|
$fault = "client";
|
|
182
182
|
$retryable = {};
|
|
@@ -190,8 +190,8 @@ class ThrottlingException extends SSMQuickSetupServiceException {
|
|
|
190
190
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
191
191
|
this.Message = opts.Message;
|
|
192
192
|
}
|
|
193
|
-
}
|
|
194
|
-
class ValidationException extends SSMQuickSetupServiceException {
|
|
193
|
+
};
|
|
194
|
+
let ValidationException$1 = class ValidationException extends SSMQuickSetupServiceException$1 {
|
|
195
195
|
name = "ValidationException";
|
|
196
196
|
$fault = "client";
|
|
197
197
|
Message;
|
|
@@ -204,8 +204,8 @@ class ValidationException extends SSMQuickSetupServiceException {
|
|
|
204
204
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
205
205
|
this.Message = opts.Message;
|
|
206
206
|
}
|
|
207
|
-
}
|
|
208
|
-
class ResourceNotFoundException extends SSMQuickSetupServiceException {
|
|
207
|
+
};
|
|
208
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends SSMQuickSetupServiceException$1 {
|
|
209
209
|
name = "ResourceNotFoundException";
|
|
210
210
|
$fault = "client";
|
|
211
211
|
Message;
|
|
@@ -218,582 +218,501 @@ class ResourceNotFoundException extends SSMQuickSetupServiceException {
|
|
|
218
218
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
219
219
|
this.Message = opts.Message;
|
|
220
220
|
}
|
|
221
|
-
}
|
|
222
|
-
const CreateConfigurationManagerInputFilterSensitiveLog = (obj) => ({
|
|
223
|
-
...obj,
|
|
224
|
-
...(obj.Tags && { Tags: smithyClient.SENSITIVE_STRING }),
|
|
225
|
-
});
|
|
226
|
-
const GetConfigurationManagerOutputFilterSensitiveLog = (obj) => ({
|
|
227
|
-
...obj,
|
|
228
|
-
...(obj.Tags && { Tags: smithyClient.SENSITIVE_STRING }),
|
|
229
|
-
});
|
|
230
|
-
const TagEntryFilterSensitiveLog = (obj) => ({
|
|
231
|
-
...obj,
|
|
232
|
-
});
|
|
233
|
-
const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
234
|
-
...obj,
|
|
235
|
-
...(obj.Tags && { Tags: smithyClient.SENSITIVE_STRING }),
|
|
236
|
-
});
|
|
237
|
-
const TagResourceInputFilterSensitiveLog = (obj) => ({
|
|
238
|
-
...obj,
|
|
239
|
-
...(obj.Tags && { Tags: smithyClient.SENSITIVE_STRING }),
|
|
240
|
-
});
|
|
241
|
-
|
|
242
|
-
const se_CreateConfigurationManagerCommand = async (input, context) => {
|
|
243
|
-
const b = core.requestBuilder(input, context);
|
|
244
|
-
const headers = {
|
|
245
|
-
"content-type": "application/json",
|
|
246
|
-
};
|
|
247
|
-
b.bp("/configurationManager");
|
|
248
|
-
let body;
|
|
249
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
250
|
-
ConfigurationDefinitions: (_) => smithyClient._json(_),
|
|
251
|
-
Description: [],
|
|
252
|
-
Name: [],
|
|
253
|
-
Tags: (_) => smithyClient._json(_),
|
|
254
|
-
}));
|
|
255
|
-
b.m("POST").h(headers).b(body);
|
|
256
|
-
return b.build();
|
|
257
|
-
};
|
|
258
|
-
const se_DeleteConfigurationManagerCommand = async (input, context) => {
|
|
259
|
-
const b = core.requestBuilder(input, context);
|
|
260
|
-
const headers = {};
|
|
261
|
-
b.bp("/configurationManager/{ManagerArn}");
|
|
262
|
-
b.p("ManagerArn", () => input.ManagerArn, "{ManagerArn}", false);
|
|
263
|
-
let body;
|
|
264
|
-
b.m("DELETE").h(headers).b(body);
|
|
265
|
-
return b.build();
|
|
266
|
-
};
|
|
267
|
-
const se_GetConfigurationCommand = async (input, context) => {
|
|
268
|
-
const b = core.requestBuilder(input, context);
|
|
269
|
-
const headers = {};
|
|
270
|
-
b.bp("/getConfiguration/{ConfigurationId}");
|
|
271
|
-
b.p("ConfigurationId", () => input.ConfigurationId, "{ConfigurationId}", false);
|
|
272
|
-
let body;
|
|
273
|
-
b.m("GET").h(headers).b(body);
|
|
274
|
-
return b.build();
|
|
275
|
-
};
|
|
276
|
-
const se_GetConfigurationManagerCommand = async (input, context) => {
|
|
277
|
-
const b = core.requestBuilder(input, context);
|
|
278
|
-
const headers = {};
|
|
279
|
-
b.bp("/configurationManager/{ManagerArn}");
|
|
280
|
-
b.p("ManagerArn", () => input.ManagerArn, "{ManagerArn}", false);
|
|
281
|
-
let body;
|
|
282
|
-
b.m("GET").h(headers).b(body);
|
|
283
|
-
return b.build();
|
|
284
|
-
};
|
|
285
|
-
const se_GetServiceSettingsCommand = async (input, context) => {
|
|
286
|
-
const b = core.requestBuilder(input, context);
|
|
287
|
-
const headers = {};
|
|
288
|
-
b.bp("/serviceSettings");
|
|
289
|
-
let body;
|
|
290
|
-
b.m("GET").h(headers).b(body);
|
|
291
|
-
return b.build();
|
|
292
|
-
};
|
|
293
|
-
const se_ListConfigurationManagersCommand = async (input, context) => {
|
|
294
|
-
const b = core.requestBuilder(input, context);
|
|
295
|
-
const headers = {
|
|
296
|
-
"content-type": "application/json",
|
|
297
|
-
};
|
|
298
|
-
b.bp("/listConfigurationManagers");
|
|
299
|
-
let body;
|
|
300
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
301
|
-
Filters: (_) => smithyClient._json(_),
|
|
302
|
-
MaxItems: [],
|
|
303
|
-
StartingToken: [],
|
|
304
|
-
}));
|
|
305
|
-
b.m("POST").h(headers).b(body);
|
|
306
|
-
return b.build();
|
|
307
|
-
};
|
|
308
|
-
const se_ListConfigurationsCommand = async (input, context) => {
|
|
309
|
-
const b = core.requestBuilder(input, context);
|
|
310
|
-
const headers = {
|
|
311
|
-
"content-type": "application/json",
|
|
312
|
-
};
|
|
313
|
-
b.bp("/listConfigurations");
|
|
314
|
-
let body;
|
|
315
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
316
|
-
ConfigurationDefinitionId: [],
|
|
317
|
-
Filters: (_) => smithyClient._json(_),
|
|
318
|
-
ManagerArn: [],
|
|
319
|
-
MaxItems: [],
|
|
320
|
-
StartingToken: [],
|
|
321
|
-
}));
|
|
322
|
-
b.m("POST").h(headers).b(body);
|
|
323
|
-
return b.build();
|
|
324
|
-
};
|
|
325
|
-
const se_ListQuickSetupTypesCommand = async (input, context) => {
|
|
326
|
-
const b = core.requestBuilder(input, context);
|
|
327
|
-
const headers = {};
|
|
328
|
-
b.bp("/listQuickSetupTypes");
|
|
329
|
-
let body;
|
|
330
|
-
b.m("GET").h(headers).b(body);
|
|
331
|
-
return b.build();
|
|
332
|
-
};
|
|
333
|
-
const se_ListTagsForResourceCommand = async (input, context) => {
|
|
334
|
-
const b = core.requestBuilder(input, context);
|
|
335
|
-
const headers = {};
|
|
336
|
-
b.bp("/tags/{ResourceArn}");
|
|
337
|
-
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
338
|
-
let body;
|
|
339
|
-
b.m("GET").h(headers).b(body);
|
|
340
|
-
return b.build();
|
|
341
|
-
};
|
|
342
|
-
const se_TagResourceCommand = async (input, context) => {
|
|
343
|
-
const b = core.requestBuilder(input, context);
|
|
344
|
-
const headers = {
|
|
345
|
-
"content-type": "application/json",
|
|
346
|
-
};
|
|
347
|
-
b.bp("/tags/{ResourceArn}");
|
|
348
|
-
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
349
|
-
let body;
|
|
350
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
351
|
-
Tags: (_) => smithyClient._json(_),
|
|
352
|
-
}));
|
|
353
|
-
b.m("PUT").h(headers).b(body);
|
|
354
|
-
return b.build();
|
|
355
|
-
};
|
|
356
|
-
const se_UntagResourceCommand = async (input, context) => {
|
|
357
|
-
const b = core.requestBuilder(input, context);
|
|
358
|
-
const headers = {};
|
|
359
|
-
b.bp("/tags/{ResourceArn}");
|
|
360
|
-
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
361
|
-
const query = smithyClient.map({
|
|
362
|
-
[_tK]: [smithyClient.expectNonNull(input.TagKeys, `TagKeys`) != null, () => input[_TK] || []],
|
|
363
|
-
});
|
|
364
|
-
let body;
|
|
365
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
366
|
-
return b.build();
|
|
367
|
-
};
|
|
368
|
-
const se_UpdateConfigurationDefinitionCommand = async (input, context) => {
|
|
369
|
-
const b = core.requestBuilder(input, context);
|
|
370
|
-
const headers = {
|
|
371
|
-
"content-type": "application/json",
|
|
372
|
-
};
|
|
373
|
-
b.bp("/configurationDefinition/{ManagerArn}/{Id}");
|
|
374
|
-
b.p("ManagerArn", () => input.ManagerArn, "{ManagerArn}", false);
|
|
375
|
-
b.p("Id", () => input.Id, "{Id}", false);
|
|
376
|
-
let body;
|
|
377
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
378
|
-
LocalDeploymentAdministrationRoleArn: [],
|
|
379
|
-
LocalDeploymentExecutionRoleName: [],
|
|
380
|
-
Parameters: (_) => smithyClient._json(_),
|
|
381
|
-
TypeVersion: [],
|
|
382
|
-
}));
|
|
383
|
-
b.m("PUT").h(headers).b(body);
|
|
384
|
-
return b.build();
|
|
385
|
-
};
|
|
386
|
-
const se_UpdateConfigurationManagerCommand = async (input, context) => {
|
|
387
|
-
const b = core.requestBuilder(input, context);
|
|
388
|
-
const headers = {
|
|
389
|
-
"content-type": "application/json",
|
|
390
|
-
};
|
|
391
|
-
b.bp("/configurationManager/{ManagerArn}");
|
|
392
|
-
b.p("ManagerArn", () => input.ManagerArn, "{ManagerArn}", false);
|
|
393
|
-
let body;
|
|
394
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
395
|
-
Description: [],
|
|
396
|
-
Name: [],
|
|
397
|
-
}));
|
|
398
|
-
b.m("PUT").h(headers).b(body);
|
|
399
|
-
return b.build();
|
|
400
|
-
};
|
|
401
|
-
const se_UpdateServiceSettingsCommand = async (input, context) => {
|
|
402
|
-
const b = core.requestBuilder(input, context);
|
|
403
|
-
const headers = {
|
|
404
|
-
"content-type": "application/json",
|
|
405
|
-
};
|
|
406
|
-
b.bp("/serviceSettings");
|
|
407
|
-
let body;
|
|
408
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
409
|
-
ExplorerEnablingRoleArn: [],
|
|
410
|
-
}));
|
|
411
|
-
b.m("PUT").h(headers).b(body);
|
|
412
|
-
return b.build();
|
|
413
|
-
};
|
|
414
|
-
const de_CreateConfigurationManagerCommand = async (output, context) => {
|
|
415
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
416
|
-
return de_CommandError(output, context);
|
|
417
|
-
}
|
|
418
|
-
const contents = smithyClient.map({
|
|
419
|
-
$metadata: deserializeMetadata(output),
|
|
420
|
-
});
|
|
421
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
422
|
-
const doc = smithyClient.take(data, {
|
|
423
|
-
ManagerArn: smithyClient.expectString,
|
|
424
|
-
});
|
|
425
|
-
Object.assign(contents, doc);
|
|
426
|
-
return contents;
|
|
427
|
-
};
|
|
428
|
-
const de_DeleteConfigurationManagerCommand = async (output, context) => {
|
|
429
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
430
|
-
return de_CommandError(output, context);
|
|
431
|
-
}
|
|
432
|
-
const contents = smithyClient.map({
|
|
433
|
-
$metadata: deserializeMetadata(output),
|
|
434
|
-
});
|
|
435
|
-
await smithyClient.collectBody(output.body, context);
|
|
436
|
-
return contents;
|
|
437
|
-
};
|
|
438
|
-
const de_GetConfigurationCommand = async (output, context) => {
|
|
439
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
440
|
-
return de_CommandError(output, context);
|
|
441
|
-
}
|
|
442
|
-
const contents = smithyClient.map({
|
|
443
|
-
$metadata: deserializeMetadata(output),
|
|
444
|
-
});
|
|
445
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
446
|
-
const doc = smithyClient.take(data, {
|
|
447
|
-
Account: smithyClient.expectString,
|
|
448
|
-
ConfigurationDefinitionId: smithyClient.expectString,
|
|
449
|
-
CreatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
450
|
-
Id: smithyClient.expectString,
|
|
451
|
-
LastModifiedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
452
|
-
ManagerArn: smithyClient.expectString,
|
|
453
|
-
Parameters: smithyClient._json,
|
|
454
|
-
Region: smithyClient.expectString,
|
|
455
|
-
StatusSummaries: (_) => de_StatusSummariesList(_),
|
|
456
|
-
Type: smithyClient.expectString,
|
|
457
|
-
TypeVersion: smithyClient.expectString,
|
|
458
|
-
});
|
|
459
|
-
Object.assign(contents, doc);
|
|
460
|
-
return contents;
|
|
461
|
-
};
|
|
462
|
-
const de_GetConfigurationManagerCommand = async (output, context) => {
|
|
463
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
464
|
-
return de_CommandError(output, context);
|
|
465
|
-
}
|
|
466
|
-
const contents = smithyClient.map({
|
|
467
|
-
$metadata: deserializeMetadata(output),
|
|
468
|
-
});
|
|
469
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
470
|
-
const doc = smithyClient.take(data, {
|
|
471
|
-
ConfigurationDefinitions: smithyClient._json,
|
|
472
|
-
CreatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
473
|
-
Description: smithyClient.expectString,
|
|
474
|
-
LastModifiedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
475
|
-
ManagerArn: smithyClient.expectString,
|
|
476
|
-
Name: smithyClient.expectString,
|
|
477
|
-
StatusSummaries: (_) => de_StatusSummariesList(_),
|
|
478
|
-
Tags: smithyClient._json,
|
|
479
|
-
});
|
|
480
|
-
Object.assign(contents, doc);
|
|
481
|
-
return contents;
|
|
482
|
-
};
|
|
483
|
-
const de_GetServiceSettingsCommand = async (output, context) => {
|
|
484
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
485
|
-
return de_CommandError(output, context);
|
|
486
|
-
}
|
|
487
|
-
const contents = smithyClient.map({
|
|
488
|
-
$metadata: deserializeMetadata(output),
|
|
489
|
-
});
|
|
490
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
491
|
-
const doc = smithyClient.take(data, {
|
|
492
|
-
ServiceSettings: smithyClient._json,
|
|
493
|
-
});
|
|
494
|
-
Object.assign(contents, doc);
|
|
495
|
-
return contents;
|
|
496
|
-
};
|
|
497
|
-
const de_ListConfigurationManagersCommand = async (output, context) => {
|
|
498
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
499
|
-
return de_CommandError(output, context);
|
|
500
|
-
}
|
|
501
|
-
const contents = smithyClient.map({
|
|
502
|
-
$metadata: deserializeMetadata(output),
|
|
503
|
-
});
|
|
504
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
505
|
-
const doc = smithyClient.take(data, {
|
|
506
|
-
ConfigurationManagersList: (_) => de_ConfigurationManagerList(_),
|
|
507
|
-
NextToken: smithyClient.expectString,
|
|
508
|
-
});
|
|
509
|
-
Object.assign(contents, doc);
|
|
510
|
-
return contents;
|
|
511
221
|
};
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
const
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
const
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
const
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
const
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
const
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
const
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
return contents;
|
|
594
|
-
};
|
|
595
|
-
const de_UpdateServiceSettingsCommand = async (output, context) => {
|
|
596
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
597
|
-
return de_CommandError(output, context);
|
|
598
|
-
}
|
|
599
|
-
const contents = smithyClient.map({
|
|
600
|
-
$metadata: deserializeMetadata(output),
|
|
601
|
-
});
|
|
602
|
-
await smithyClient.collectBody(output.body, context);
|
|
603
|
-
return contents;
|
|
604
|
-
};
|
|
605
|
-
const de_CommandError = async (output, context) => {
|
|
606
|
-
const parsedOutput = {
|
|
607
|
-
...output,
|
|
608
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
609
|
-
};
|
|
610
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
611
|
-
switch (errorCode) {
|
|
612
|
-
case "AccessDeniedException":
|
|
613
|
-
case "com.amazonaws.ssmquicksetup#AccessDeniedException":
|
|
614
|
-
throw await de_AccessDeniedExceptionRes(parsedOutput);
|
|
615
|
-
case "ConflictException":
|
|
616
|
-
case "com.amazonaws.ssmquicksetup#ConflictException":
|
|
617
|
-
throw await de_ConflictExceptionRes(parsedOutput);
|
|
618
|
-
case "InternalServerException":
|
|
619
|
-
case "com.amazonaws.ssmquicksetup#InternalServerException":
|
|
620
|
-
throw await de_InternalServerExceptionRes(parsedOutput);
|
|
621
|
-
case "ThrottlingException":
|
|
622
|
-
case "com.amazonaws.ssmquicksetup#ThrottlingException":
|
|
623
|
-
throw await de_ThrottlingExceptionRes(parsedOutput);
|
|
624
|
-
case "ValidationException":
|
|
625
|
-
case "com.amazonaws.ssmquicksetup#ValidationException":
|
|
626
|
-
throw await de_ValidationExceptionRes(parsedOutput);
|
|
627
|
-
case "ResourceNotFoundException":
|
|
628
|
-
case "com.amazonaws.ssmquicksetup#ResourceNotFoundException":
|
|
629
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
630
|
-
default:
|
|
631
|
-
const parsedBody = parsedOutput.body;
|
|
632
|
-
return throwDefaultError({
|
|
633
|
-
output,
|
|
634
|
-
parsedBody,
|
|
635
|
-
errorCode,
|
|
636
|
-
});
|
|
637
|
-
}
|
|
638
|
-
};
|
|
639
|
-
const throwDefaultError = smithyClient.withBaseException(SSMQuickSetupServiceException);
|
|
640
|
-
const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
|
|
641
|
-
const contents = smithyClient.map({});
|
|
642
|
-
const data = parsedOutput.body;
|
|
643
|
-
const doc = smithyClient.take(data, {
|
|
644
|
-
Message: smithyClient.expectString,
|
|
645
|
-
});
|
|
646
|
-
Object.assign(contents, doc);
|
|
647
|
-
const exception = new AccessDeniedException({
|
|
648
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
649
|
-
...contents,
|
|
650
|
-
});
|
|
651
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
652
|
-
};
|
|
653
|
-
const de_ConflictExceptionRes = async (parsedOutput, context) => {
|
|
654
|
-
const contents = smithyClient.map({});
|
|
655
|
-
const data = parsedOutput.body;
|
|
656
|
-
const doc = smithyClient.take(data, {
|
|
657
|
-
Message: smithyClient.expectString,
|
|
658
|
-
});
|
|
659
|
-
Object.assign(contents, doc);
|
|
660
|
-
const exception = new ConflictException({
|
|
661
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
662
|
-
...contents,
|
|
663
|
-
});
|
|
664
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
665
|
-
};
|
|
666
|
-
const de_InternalServerExceptionRes = async (parsedOutput, context) => {
|
|
667
|
-
const contents = smithyClient.map({});
|
|
668
|
-
const data = parsedOutput.body;
|
|
669
|
-
const doc = smithyClient.take(data, {
|
|
670
|
-
Message: smithyClient.expectString,
|
|
671
|
-
});
|
|
672
|
-
Object.assign(contents, doc);
|
|
673
|
-
const exception = new InternalServerException({
|
|
674
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
675
|
-
...contents,
|
|
676
|
-
});
|
|
677
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
678
|
-
};
|
|
679
|
-
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
680
|
-
const contents = smithyClient.map({});
|
|
681
|
-
const data = parsedOutput.body;
|
|
682
|
-
const doc = smithyClient.take(data, {
|
|
683
|
-
Message: smithyClient.expectString,
|
|
684
|
-
});
|
|
685
|
-
Object.assign(contents, doc);
|
|
686
|
-
const exception = new ResourceNotFoundException({
|
|
687
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
688
|
-
...contents,
|
|
689
|
-
});
|
|
690
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
691
|
-
};
|
|
692
|
-
const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
|
|
693
|
-
const contents = smithyClient.map({});
|
|
694
|
-
const data = parsedOutput.body;
|
|
695
|
-
const doc = smithyClient.take(data, {
|
|
696
|
-
Message: smithyClient.expectString,
|
|
697
|
-
});
|
|
698
|
-
Object.assign(contents, doc);
|
|
699
|
-
const exception = new ThrottlingException({
|
|
700
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
701
|
-
...contents,
|
|
702
|
-
});
|
|
703
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
704
|
-
};
|
|
705
|
-
const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
706
|
-
const contents = smithyClient.map({});
|
|
707
|
-
const data = parsedOutput.body;
|
|
708
|
-
const doc = smithyClient.take(data, {
|
|
709
|
-
Message: smithyClient.expectString,
|
|
710
|
-
});
|
|
711
|
-
Object.assign(contents, doc);
|
|
712
|
-
const exception = new ValidationException({
|
|
713
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
714
|
-
...contents,
|
|
715
|
-
});
|
|
716
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
717
|
-
};
|
|
718
|
-
const de_ConfigurationManagerList = (output, context) => {
|
|
719
|
-
const retVal = (output || [])
|
|
720
|
-
.filter((e) => e != null)
|
|
721
|
-
.map((entry) => {
|
|
722
|
-
return de_ConfigurationManagerSummary(entry);
|
|
723
|
-
});
|
|
724
|
-
return retVal;
|
|
725
|
-
};
|
|
726
|
-
const de_ConfigurationManagerSummary = (output, context) => {
|
|
727
|
-
return smithyClient.take(output, {
|
|
728
|
-
ConfigurationDefinitionSummaries: smithyClient._json,
|
|
729
|
-
Description: smithyClient.expectString,
|
|
730
|
-
ManagerArn: smithyClient.expectString,
|
|
731
|
-
Name: smithyClient.expectString,
|
|
732
|
-
StatusSummaries: (_) => de_StatusSummariesList(_),
|
|
733
|
-
});
|
|
734
|
-
};
|
|
735
|
-
const de_ConfigurationsList = (output, context) => {
|
|
736
|
-
const retVal = (output || [])
|
|
737
|
-
.filter((e) => e != null)
|
|
738
|
-
.map((entry) => {
|
|
739
|
-
return de_ConfigurationSummary(entry);
|
|
740
|
-
});
|
|
741
|
-
return retVal;
|
|
742
|
-
};
|
|
743
|
-
const de_ConfigurationSummary = (output, context) => {
|
|
744
|
-
return smithyClient.take(output, {
|
|
745
|
-
Account: smithyClient.expectString,
|
|
746
|
-
ConfigurationDefinitionId: smithyClient.expectString,
|
|
747
|
-
CreatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
748
|
-
FirstClassParameters: smithyClient._json,
|
|
749
|
-
Id: smithyClient.expectString,
|
|
750
|
-
ManagerArn: smithyClient.expectString,
|
|
751
|
-
Region: smithyClient.expectString,
|
|
752
|
-
StatusSummaries: (_) => de_StatusSummariesList(_),
|
|
753
|
-
Type: smithyClient.expectString,
|
|
754
|
-
TypeVersion: smithyClient.expectString,
|
|
755
|
-
});
|
|
756
|
-
};
|
|
757
|
-
const de_StatusSummariesList = (output, context) => {
|
|
758
|
-
const retVal = (output || [])
|
|
759
|
-
.filter((e) => e != null)
|
|
760
|
-
.map((entry) => {
|
|
761
|
-
return de_StatusSummary(entry);
|
|
762
|
-
});
|
|
763
|
-
return retVal;
|
|
764
|
-
};
|
|
765
|
-
const de_StatusSummary = (output, context) => {
|
|
766
|
-
return smithyClient.take(output, {
|
|
767
|
-
LastUpdatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
768
|
-
Status: smithyClient.expectString,
|
|
769
|
-
StatusDetails: smithyClient._json,
|
|
770
|
-
StatusMessage: smithyClient.expectString,
|
|
771
|
-
StatusType: smithyClient.expectString,
|
|
772
|
-
});
|
|
773
|
-
};
|
|
774
|
-
const deserializeMetadata = (output) => ({
|
|
775
|
-
httpStatusCode: output.statusCode,
|
|
776
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
777
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
778
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
779
|
-
});
|
|
222
|
+
|
|
223
|
+
const _A = "Account";
|
|
224
|
+
const _ADE = "AccessDeniedException";
|
|
225
|
+
const _CA = "CreatedAt";
|
|
226
|
+
const _CCM = "CreateConfigurationManager";
|
|
227
|
+
const _CCMI = "CreateConfigurationManagerInput";
|
|
228
|
+
const _CCMO = "CreateConfigurationManagerOutput";
|
|
229
|
+
const _CD = "ConfigurationDefinition";
|
|
230
|
+
const _CDI = "ConfigurationDefinitionInput";
|
|
231
|
+
const _CDIL = "ConfigurationDefinitionsInputList";
|
|
232
|
+
const _CDIo = "ConfigurationDefinitionId";
|
|
233
|
+
const _CDL = "ConfigurationDefinitionsList";
|
|
234
|
+
const _CDS = "ConfigurationDefinitionSummary";
|
|
235
|
+
const _CDSL = "ConfigurationDefinitionSummariesList";
|
|
236
|
+
const _CDSo = "ConfigurationDefinitionSummaries";
|
|
237
|
+
const _CDo = "ConfigurationDefinitions";
|
|
238
|
+
const _CE = "ConflictException";
|
|
239
|
+
const _CI = "ConfigurationId";
|
|
240
|
+
const _CL = "ConfigurationsList";
|
|
241
|
+
const _CML = "ConfigurationManagersList";
|
|
242
|
+
const _CMLo = "ConfigurationManagerList";
|
|
243
|
+
const _CMS = "ConfigurationManagerSummary";
|
|
244
|
+
const _CS = "ConfigurationSummary";
|
|
245
|
+
const _D = "Description";
|
|
246
|
+
const _DCM = "DeleteConfigurationManager";
|
|
247
|
+
const _DCMI = "DeleteConfigurationManagerInput";
|
|
248
|
+
const _EERA = "ExplorerEnablingRoleArn";
|
|
249
|
+
const _F = "Filter";
|
|
250
|
+
const _FCP = "FirstClassParameters";
|
|
251
|
+
const _FL = "FiltersList";
|
|
252
|
+
const _Fi = "Filters";
|
|
253
|
+
const _GC = "GetConfiguration";
|
|
254
|
+
const _GCI = "GetConfigurationInput";
|
|
255
|
+
const _GCM = "GetConfigurationManager";
|
|
256
|
+
const _GCMI = "GetConfigurationManagerInput";
|
|
257
|
+
const _GCMO = "GetConfigurationManagerOutput";
|
|
258
|
+
const _GCO = "GetConfigurationOutput";
|
|
259
|
+
const _GSS = "GetServiceSettings";
|
|
260
|
+
const _GSSO = "GetServiceSettingsOutput";
|
|
261
|
+
const _I = "Id";
|
|
262
|
+
const _ISE = "InternalServerException";
|
|
263
|
+
const _K = "Key";
|
|
264
|
+
const _LC = "ListConfigurations";
|
|
265
|
+
const _LCI = "ListConfigurationsInput";
|
|
266
|
+
const _LCM = "ListConfigurationManagers";
|
|
267
|
+
const _LCMI = "ListConfigurationManagersInput";
|
|
268
|
+
const _LCMO = "ListConfigurationManagersOutput";
|
|
269
|
+
const _LCO = "ListConfigurationsOutput";
|
|
270
|
+
const _LDARA = "LocalDeploymentAdministrationRoleArn";
|
|
271
|
+
const _LDERN = "LocalDeploymentExecutionRoleName";
|
|
272
|
+
const _LMA = "LastModifiedAt";
|
|
273
|
+
const _LQST = "ListQuickSetupTypes";
|
|
274
|
+
const _LQSTO = "ListQuickSetupTypesOutput";
|
|
275
|
+
const _LTFR = "ListTagsForResource";
|
|
276
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
277
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
278
|
+
const _LUA = "LastUpdatedAt";
|
|
279
|
+
const _LV = "LatestVersion";
|
|
280
|
+
const _M = "Message";
|
|
281
|
+
const _MA = "ManagerArn";
|
|
282
|
+
const _MI = "MaxItems";
|
|
283
|
+
const _N = "Name";
|
|
284
|
+
const _NT = "NextToken";
|
|
285
|
+
const _P = "Parameters";
|
|
286
|
+
const _QSTL = "QuickSetupTypeList";
|
|
287
|
+
const _QSTO = "QuickSetupTypeOutput";
|
|
288
|
+
const _R = "Region";
|
|
289
|
+
const _RA = "ResourceArn";
|
|
290
|
+
const _RNFE = "ResourceNotFoundException";
|
|
291
|
+
const _S = "Status";
|
|
292
|
+
const _SD = "StatusDetails";
|
|
293
|
+
const _SM = "StatusMessage";
|
|
294
|
+
const _SS = "StatusSummaries";
|
|
295
|
+
const _SSL = "StatusSummariesList";
|
|
296
|
+
const _SSe = "ServiceSettings";
|
|
297
|
+
const _SSt = "StatusSummary";
|
|
298
|
+
const _ST = "StartingToken";
|
|
299
|
+
const _STt = "StatusType";
|
|
300
|
+
const _T = "Type";
|
|
301
|
+
const _TE = "TagEntry";
|
|
302
|
+
const _TEh = "ThrottlingException";
|
|
780
303
|
const _TK = "TagKeys";
|
|
304
|
+
const _TM = "TagsMap";
|
|
305
|
+
const _TR = "TagResource";
|
|
306
|
+
const _TRI = "TagResourceInput";
|
|
307
|
+
const _TV = "TypeVersion";
|
|
308
|
+
const _Ta = "Tags";
|
|
309
|
+
const _UCD = "UpdateConfigurationDefinition";
|
|
310
|
+
const _UCDI = "UpdateConfigurationDefinitionInput";
|
|
311
|
+
const _UCM = "UpdateConfigurationManager";
|
|
312
|
+
const _UCMI = "UpdateConfigurationManagerInput";
|
|
313
|
+
const _UR = "UntagResource";
|
|
314
|
+
const _URI = "UntagResourceInput";
|
|
315
|
+
const _USS = "UpdateServiceSettings";
|
|
316
|
+
const _USSI = "UpdateServiceSettingsInput";
|
|
317
|
+
const _V = "Values";
|
|
318
|
+
const _VE = "ValidationException";
|
|
319
|
+
const _Va = "Value";
|
|
320
|
+
const _c = "client";
|
|
321
|
+
const _e = "error";
|
|
322
|
+
const _h = "http";
|
|
323
|
+
const _hE = "httpError";
|
|
324
|
+
const _hQ = "httpQuery";
|
|
325
|
+
const _s = "server";
|
|
326
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.ssmquicksetup";
|
|
781
327
|
const _tK = "tagKeys";
|
|
328
|
+
const n0 = "com.amazonaws.ssmquicksetup";
|
|
329
|
+
var AccessDeniedException = [
|
|
330
|
+
-3,
|
|
331
|
+
n0,
|
|
332
|
+
_ADE,
|
|
333
|
+
{
|
|
334
|
+
[_e]: _c,
|
|
335
|
+
[_hE]: 403,
|
|
336
|
+
},
|
|
337
|
+
[_M],
|
|
338
|
+
[0],
|
|
339
|
+
];
|
|
340
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
341
|
+
var ConfigurationDefinition = [
|
|
342
|
+
3,
|
|
343
|
+
n0,
|
|
344
|
+
_CD,
|
|
345
|
+
0,
|
|
346
|
+
[_T, _P, _TV, _LDERN, _LDARA, _I],
|
|
347
|
+
[0, 128 | 0, 0, 0, 0, 0],
|
|
348
|
+
];
|
|
349
|
+
var ConfigurationDefinitionInput = [
|
|
350
|
+
3,
|
|
351
|
+
n0,
|
|
352
|
+
_CDI,
|
|
353
|
+
0,
|
|
354
|
+
[_T, _P, _TV, _LDERN, _LDARA],
|
|
355
|
+
[0, 128 | 0, 0, 0, 0],
|
|
356
|
+
];
|
|
357
|
+
var ConfigurationDefinitionSummary = [
|
|
358
|
+
3,
|
|
359
|
+
n0,
|
|
360
|
+
_CDS,
|
|
361
|
+
0,
|
|
362
|
+
[_I, _T, _TV, _FCP],
|
|
363
|
+
[0, 0, 0, 128 | 0],
|
|
364
|
+
];
|
|
365
|
+
var ConfigurationManagerSummary = [
|
|
366
|
+
3,
|
|
367
|
+
n0,
|
|
368
|
+
_CMS,
|
|
369
|
+
0,
|
|
370
|
+
[_MA, _D, _N, _SS, _CDSo],
|
|
371
|
+
[0, 0, 0, () => StatusSummariesList, () => ConfigurationDefinitionSummariesList],
|
|
372
|
+
];
|
|
373
|
+
var ConfigurationSummary = [
|
|
374
|
+
3,
|
|
375
|
+
n0,
|
|
376
|
+
_CS,
|
|
377
|
+
0,
|
|
378
|
+
[_I, _MA, _CDIo, _T, _TV, _R, _A, _CA, _FCP, _SS],
|
|
379
|
+
[0, 0, 0, 0, 0, 0, 0, 5, 128 | 0, () => StatusSummariesList],
|
|
380
|
+
];
|
|
381
|
+
var ConflictException = [
|
|
382
|
+
-3,
|
|
383
|
+
n0,
|
|
384
|
+
_CE,
|
|
385
|
+
{
|
|
386
|
+
[_e]: _c,
|
|
387
|
+
[_hE]: 409,
|
|
388
|
+
},
|
|
389
|
+
[_M],
|
|
390
|
+
[0],
|
|
391
|
+
];
|
|
392
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
|
|
393
|
+
var CreateConfigurationManagerInput = [
|
|
394
|
+
3,
|
|
395
|
+
n0,
|
|
396
|
+
_CCMI,
|
|
397
|
+
0,
|
|
398
|
+
[_N, _D, _CDo, _Ta],
|
|
399
|
+
[0, 0, () => ConfigurationDefinitionsInputList, [() => TagsMap, 0]],
|
|
400
|
+
];
|
|
401
|
+
var CreateConfigurationManagerOutput = [3, n0, _CCMO, 0, [_MA], [0]];
|
|
402
|
+
var DeleteConfigurationManagerInput = [3, n0, _DCMI, 0, [_MA], [[0, 1]]];
|
|
403
|
+
var Filter = [3, n0, _F, 0, [_K, _V], [0, 64 | 0]];
|
|
404
|
+
var GetConfigurationInput = [3, n0, _GCI, 0, [_CI], [[0, 1]]];
|
|
405
|
+
var GetConfigurationManagerInput = [3, n0, _GCMI, 0, [_MA], [[0, 1]]];
|
|
406
|
+
var GetConfigurationManagerOutput = [
|
|
407
|
+
3,
|
|
408
|
+
n0,
|
|
409
|
+
_GCMO,
|
|
410
|
+
0,
|
|
411
|
+
[_MA, _D, _N, _CA, _LMA, _SS, _CDo, _Ta],
|
|
412
|
+
[0, 0, 0, 5, 5, () => StatusSummariesList, () => ConfigurationDefinitionsList, [() => TagsMap, 0]],
|
|
413
|
+
];
|
|
414
|
+
var GetConfigurationOutput = [
|
|
415
|
+
3,
|
|
416
|
+
n0,
|
|
417
|
+
_GCO,
|
|
418
|
+
0,
|
|
419
|
+
[_I, _MA, _CDIo, _T, _TV, _A, _R, _CA, _LMA, _SS, _P],
|
|
420
|
+
[0, 0, 0, 0, 0, 0, 0, 5, 5, () => StatusSummariesList, 128 | 0],
|
|
421
|
+
];
|
|
422
|
+
var GetServiceSettingsOutput = [3, n0, _GSSO, 0, [_SSe], [() => ServiceSettings]];
|
|
423
|
+
var InternalServerException = [
|
|
424
|
+
-3,
|
|
425
|
+
n0,
|
|
426
|
+
_ISE,
|
|
427
|
+
{
|
|
428
|
+
[_e]: _s,
|
|
429
|
+
[_hE]: 500,
|
|
430
|
+
},
|
|
431
|
+
[_M],
|
|
432
|
+
[0],
|
|
433
|
+
];
|
|
434
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
435
|
+
var ListConfigurationManagersInput = [
|
|
436
|
+
3,
|
|
437
|
+
n0,
|
|
438
|
+
_LCMI,
|
|
439
|
+
0,
|
|
440
|
+
[_ST, _MI, _Fi],
|
|
441
|
+
[0, 1, () => FiltersList],
|
|
442
|
+
];
|
|
443
|
+
var ListConfigurationManagersOutput = [
|
|
444
|
+
3,
|
|
445
|
+
n0,
|
|
446
|
+
_LCMO,
|
|
447
|
+
0,
|
|
448
|
+
[_CML, _NT],
|
|
449
|
+
[() => ConfigurationManagerList, 0],
|
|
450
|
+
];
|
|
451
|
+
var ListConfigurationsInput = [
|
|
452
|
+
3,
|
|
453
|
+
n0,
|
|
454
|
+
_LCI,
|
|
455
|
+
0,
|
|
456
|
+
[_ST, _MI, _Fi, _MA, _CDIo],
|
|
457
|
+
[0, 1, () => FiltersList, 0, 0],
|
|
458
|
+
];
|
|
459
|
+
var ListConfigurationsOutput = [
|
|
460
|
+
3,
|
|
461
|
+
n0,
|
|
462
|
+
_LCO,
|
|
463
|
+
0,
|
|
464
|
+
[_CL, _NT],
|
|
465
|
+
[() => ConfigurationsList, 0],
|
|
466
|
+
];
|
|
467
|
+
var ListQuickSetupTypesOutput = [3, n0, _LQSTO, 0, [_QSTL], [() => QuickSetupTypeList]];
|
|
468
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RA], [[0, 1]]];
|
|
469
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_Ta], [[() => Tags, 0]]];
|
|
470
|
+
var QuickSetupTypeOutput = [3, n0, _QSTO, 0, [_T, _LV], [0, 0]];
|
|
471
|
+
var ResourceNotFoundException = [
|
|
472
|
+
-3,
|
|
473
|
+
n0,
|
|
474
|
+
_RNFE,
|
|
475
|
+
{
|
|
476
|
+
[_e]: _c,
|
|
477
|
+
[_hE]: 404,
|
|
478
|
+
},
|
|
479
|
+
[_M],
|
|
480
|
+
[0],
|
|
481
|
+
];
|
|
482
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
483
|
+
var ServiceSettings = [3, n0, _SSe, 0, [_EERA], [0]];
|
|
484
|
+
var StatusSummary = [3, n0, _SSt, 0, [_STt, _S, _SM, _LUA, _SD], [0, 0, 0, 5, 128 | 0]];
|
|
485
|
+
var TagEntry = [3, n0, _TE, 8, [_K, _Va], [0, 0]];
|
|
486
|
+
var TagResourceInput = [
|
|
487
|
+
3,
|
|
488
|
+
n0,
|
|
489
|
+
_TRI,
|
|
490
|
+
0,
|
|
491
|
+
[_RA, _Ta],
|
|
492
|
+
[
|
|
493
|
+
[0, 1],
|
|
494
|
+
[() => TagsMap, 0],
|
|
495
|
+
],
|
|
496
|
+
];
|
|
497
|
+
var ThrottlingException = [
|
|
498
|
+
-3,
|
|
499
|
+
n0,
|
|
500
|
+
_TEh,
|
|
501
|
+
{
|
|
502
|
+
[_e]: _c,
|
|
503
|
+
[_hE]: 429,
|
|
504
|
+
},
|
|
505
|
+
[_M],
|
|
506
|
+
[0],
|
|
507
|
+
];
|
|
508
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
|
|
509
|
+
var UntagResourceInput = [
|
|
510
|
+
3,
|
|
511
|
+
n0,
|
|
512
|
+
_URI,
|
|
513
|
+
0,
|
|
514
|
+
[_RA, _TK],
|
|
515
|
+
[
|
|
516
|
+
[0, 1],
|
|
517
|
+
[
|
|
518
|
+
64 | 0,
|
|
519
|
+
{
|
|
520
|
+
[_hQ]: _tK,
|
|
521
|
+
},
|
|
522
|
+
],
|
|
523
|
+
],
|
|
524
|
+
];
|
|
525
|
+
var UpdateConfigurationDefinitionInput = [
|
|
526
|
+
3,
|
|
527
|
+
n0,
|
|
528
|
+
_UCDI,
|
|
529
|
+
0,
|
|
530
|
+
[_MA, _I, _TV, _P, _LDERN, _LDARA],
|
|
531
|
+
[[0, 1], [0, 1], 0, 128 | 0, 0, 0],
|
|
532
|
+
];
|
|
533
|
+
var UpdateConfigurationManagerInput = [3, n0, _UCMI, 0, [_MA, _N, _D], [[0, 1], 0, 0]];
|
|
534
|
+
var UpdateServiceSettingsInput = [3, n0, _USSI, 0, [_EERA], [0]];
|
|
535
|
+
var ValidationException = [
|
|
536
|
+
-3,
|
|
537
|
+
n0,
|
|
538
|
+
_VE,
|
|
539
|
+
{
|
|
540
|
+
[_e]: _c,
|
|
541
|
+
[_hE]: 400,
|
|
542
|
+
},
|
|
543
|
+
[_M],
|
|
544
|
+
[0],
|
|
545
|
+
];
|
|
546
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
|
|
547
|
+
var __Unit = "unit";
|
|
548
|
+
var SSMQuickSetupServiceException = [-3, _sm, "SSMQuickSetupServiceException", 0, [], []];
|
|
549
|
+
schema.TypeRegistry.for(_sm).registerError(SSMQuickSetupServiceException, SSMQuickSetupServiceException$1);
|
|
550
|
+
var ConfigurationDefinitionsInputList = [1, n0, _CDIL, 0, () => ConfigurationDefinitionInput];
|
|
551
|
+
var ConfigurationDefinitionsList = [1, n0, _CDL, 0, () => ConfigurationDefinition];
|
|
552
|
+
var ConfigurationDefinitionSummariesList = [
|
|
553
|
+
1,
|
|
554
|
+
n0,
|
|
555
|
+
_CDSL,
|
|
556
|
+
0,
|
|
557
|
+
() => ConfigurationDefinitionSummary,
|
|
558
|
+
];
|
|
559
|
+
var ConfigurationManagerList = [1, n0, _CMLo, 0, () => ConfigurationManagerSummary];
|
|
560
|
+
var ConfigurationsList = [1, n0, _CL, 0, () => ConfigurationSummary];
|
|
561
|
+
var FiltersList = [1, n0, _FL, 0, () => Filter];
|
|
562
|
+
var QuickSetupTypeList = [1, n0, _QSTL, 0, () => QuickSetupTypeOutput];
|
|
563
|
+
var StatusSummariesList = [1, n0, _SSL, 0, () => StatusSummary];
|
|
564
|
+
var Tags = [1, n0, _Ta, 8, [() => TagEntry, 0]];
|
|
565
|
+
var TagsMap = [2, n0, _TM, 8, 0, 0];
|
|
566
|
+
var CreateConfigurationManager = [
|
|
567
|
+
9,
|
|
568
|
+
n0,
|
|
569
|
+
_CCM,
|
|
570
|
+
{
|
|
571
|
+
[_h]: ["POST", "/configurationManager", 200],
|
|
572
|
+
},
|
|
573
|
+
() => CreateConfigurationManagerInput,
|
|
574
|
+
() => CreateConfigurationManagerOutput,
|
|
575
|
+
];
|
|
576
|
+
var DeleteConfigurationManager = [
|
|
577
|
+
9,
|
|
578
|
+
n0,
|
|
579
|
+
_DCM,
|
|
580
|
+
{
|
|
581
|
+
[_h]: ["DELETE", "/configurationManager/{ManagerArn}", 200],
|
|
582
|
+
},
|
|
583
|
+
() => DeleteConfigurationManagerInput,
|
|
584
|
+
() => __Unit,
|
|
585
|
+
];
|
|
586
|
+
var GetConfiguration = [
|
|
587
|
+
9,
|
|
588
|
+
n0,
|
|
589
|
+
_GC,
|
|
590
|
+
{
|
|
591
|
+
[_h]: ["GET", "/getConfiguration/{ConfigurationId}", 200],
|
|
592
|
+
},
|
|
593
|
+
() => GetConfigurationInput,
|
|
594
|
+
() => GetConfigurationOutput,
|
|
595
|
+
];
|
|
596
|
+
var GetConfigurationManager = [
|
|
597
|
+
9,
|
|
598
|
+
n0,
|
|
599
|
+
_GCM,
|
|
600
|
+
{
|
|
601
|
+
[_h]: ["GET", "/configurationManager/{ManagerArn}", 200],
|
|
602
|
+
},
|
|
603
|
+
() => GetConfigurationManagerInput,
|
|
604
|
+
() => GetConfigurationManagerOutput,
|
|
605
|
+
];
|
|
606
|
+
var GetServiceSettings = [
|
|
607
|
+
9,
|
|
608
|
+
n0,
|
|
609
|
+
_GSS,
|
|
610
|
+
{
|
|
611
|
+
[_h]: ["GET", "/serviceSettings", 200],
|
|
612
|
+
},
|
|
613
|
+
() => __Unit,
|
|
614
|
+
() => GetServiceSettingsOutput,
|
|
615
|
+
];
|
|
616
|
+
var ListConfigurationManagers = [
|
|
617
|
+
9,
|
|
618
|
+
n0,
|
|
619
|
+
_LCM,
|
|
620
|
+
{
|
|
621
|
+
[_h]: ["POST", "/listConfigurationManagers", 200],
|
|
622
|
+
},
|
|
623
|
+
() => ListConfigurationManagersInput,
|
|
624
|
+
() => ListConfigurationManagersOutput,
|
|
625
|
+
];
|
|
626
|
+
var ListConfigurations = [
|
|
627
|
+
9,
|
|
628
|
+
n0,
|
|
629
|
+
_LC,
|
|
630
|
+
{
|
|
631
|
+
[_h]: ["POST", "/listConfigurations", 200],
|
|
632
|
+
},
|
|
633
|
+
() => ListConfigurationsInput,
|
|
634
|
+
() => ListConfigurationsOutput,
|
|
635
|
+
];
|
|
636
|
+
var ListQuickSetupTypes = [
|
|
637
|
+
9,
|
|
638
|
+
n0,
|
|
639
|
+
_LQST,
|
|
640
|
+
{
|
|
641
|
+
[_h]: ["GET", "/listQuickSetupTypes", 200],
|
|
642
|
+
},
|
|
643
|
+
() => __Unit,
|
|
644
|
+
() => ListQuickSetupTypesOutput,
|
|
645
|
+
];
|
|
646
|
+
var ListTagsForResource = [
|
|
647
|
+
9,
|
|
648
|
+
n0,
|
|
649
|
+
_LTFR,
|
|
650
|
+
{
|
|
651
|
+
[_h]: ["GET", "/tags/{ResourceArn}", 200],
|
|
652
|
+
},
|
|
653
|
+
() => ListTagsForResourceRequest,
|
|
654
|
+
() => ListTagsForResourceResponse,
|
|
655
|
+
];
|
|
656
|
+
var TagResource = [
|
|
657
|
+
9,
|
|
658
|
+
n0,
|
|
659
|
+
_TR,
|
|
660
|
+
{
|
|
661
|
+
[_h]: ["PUT", "/tags/{ResourceArn}", 200],
|
|
662
|
+
},
|
|
663
|
+
() => TagResourceInput,
|
|
664
|
+
() => __Unit,
|
|
665
|
+
];
|
|
666
|
+
var UntagResource = [
|
|
667
|
+
9,
|
|
668
|
+
n0,
|
|
669
|
+
_UR,
|
|
670
|
+
{
|
|
671
|
+
[_h]: ["DELETE", "/tags/{ResourceArn}", 200],
|
|
672
|
+
},
|
|
673
|
+
() => UntagResourceInput,
|
|
674
|
+
() => __Unit,
|
|
675
|
+
];
|
|
676
|
+
var UpdateConfigurationDefinition = [
|
|
677
|
+
9,
|
|
678
|
+
n0,
|
|
679
|
+
_UCD,
|
|
680
|
+
{
|
|
681
|
+
[_h]: ["PUT", "/configurationDefinition/{ManagerArn}/{Id}", 200],
|
|
682
|
+
},
|
|
683
|
+
() => UpdateConfigurationDefinitionInput,
|
|
684
|
+
() => __Unit,
|
|
685
|
+
];
|
|
686
|
+
var UpdateConfigurationManager = [
|
|
687
|
+
9,
|
|
688
|
+
n0,
|
|
689
|
+
_UCM,
|
|
690
|
+
{
|
|
691
|
+
[_h]: ["PUT", "/configurationManager/{ManagerArn}", 200],
|
|
692
|
+
},
|
|
693
|
+
() => UpdateConfigurationManagerInput,
|
|
694
|
+
() => __Unit,
|
|
695
|
+
];
|
|
696
|
+
var UpdateServiceSettings = [
|
|
697
|
+
9,
|
|
698
|
+
n0,
|
|
699
|
+
_USS,
|
|
700
|
+
{
|
|
701
|
+
[_h]: ["PUT", "/serviceSettings", 200],
|
|
702
|
+
},
|
|
703
|
+
() => UpdateServiceSettingsInput,
|
|
704
|
+
() => __Unit,
|
|
705
|
+
];
|
|
782
706
|
|
|
783
707
|
class CreateConfigurationManagerCommand extends smithyClient.Command
|
|
784
708
|
.classBuilder()
|
|
785
709
|
.ep(commonParams)
|
|
786
710
|
.m(function (Command, cs, config, o) {
|
|
787
|
-
return [
|
|
788
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
789
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
790
|
-
];
|
|
711
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
791
712
|
})
|
|
792
713
|
.s("QuickSetup", "CreateConfigurationManager", {})
|
|
793
714
|
.n("SSMQuickSetupClient", "CreateConfigurationManagerCommand")
|
|
794
|
-
.
|
|
795
|
-
.ser(se_CreateConfigurationManagerCommand)
|
|
796
|
-
.de(de_CreateConfigurationManagerCommand)
|
|
715
|
+
.sc(CreateConfigurationManager)
|
|
797
716
|
.build() {
|
|
798
717
|
}
|
|
799
718
|
|
|
@@ -801,16 +720,11 @@ class DeleteConfigurationManagerCommand extends smithyClient.Command
|
|
|
801
720
|
.classBuilder()
|
|
802
721
|
.ep(commonParams)
|
|
803
722
|
.m(function (Command, cs, config, o) {
|
|
804
|
-
return [
|
|
805
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
806
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
807
|
-
];
|
|
723
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
808
724
|
})
|
|
809
725
|
.s("QuickSetup", "DeleteConfigurationManager", {})
|
|
810
726
|
.n("SSMQuickSetupClient", "DeleteConfigurationManagerCommand")
|
|
811
|
-
.
|
|
812
|
-
.ser(se_DeleteConfigurationManagerCommand)
|
|
813
|
-
.de(de_DeleteConfigurationManagerCommand)
|
|
727
|
+
.sc(DeleteConfigurationManager)
|
|
814
728
|
.build() {
|
|
815
729
|
}
|
|
816
730
|
|
|
@@ -818,16 +732,11 @@ class GetConfigurationCommand extends smithyClient.Command
|
|
|
818
732
|
.classBuilder()
|
|
819
733
|
.ep(commonParams)
|
|
820
734
|
.m(function (Command, cs, config, o) {
|
|
821
|
-
return [
|
|
822
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
823
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
824
|
-
];
|
|
735
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
825
736
|
})
|
|
826
737
|
.s("QuickSetup", "GetConfiguration", {})
|
|
827
738
|
.n("SSMQuickSetupClient", "GetConfigurationCommand")
|
|
828
|
-
.
|
|
829
|
-
.ser(se_GetConfigurationCommand)
|
|
830
|
-
.de(de_GetConfigurationCommand)
|
|
739
|
+
.sc(GetConfiguration)
|
|
831
740
|
.build() {
|
|
832
741
|
}
|
|
833
742
|
|
|
@@ -835,16 +744,11 @@ class GetConfigurationManagerCommand extends smithyClient.Command
|
|
|
835
744
|
.classBuilder()
|
|
836
745
|
.ep(commonParams)
|
|
837
746
|
.m(function (Command, cs, config, o) {
|
|
838
|
-
return [
|
|
839
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
840
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
841
|
-
];
|
|
747
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
842
748
|
})
|
|
843
749
|
.s("QuickSetup", "GetConfigurationManager", {})
|
|
844
750
|
.n("SSMQuickSetupClient", "GetConfigurationManagerCommand")
|
|
845
|
-
.
|
|
846
|
-
.ser(se_GetConfigurationManagerCommand)
|
|
847
|
-
.de(de_GetConfigurationManagerCommand)
|
|
751
|
+
.sc(GetConfigurationManager)
|
|
848
752
|
.build() {
|
|
849
753
|
}
|
|
850
754
|
|
|
@@ -852,16 +756,11 @@ class GetServiceSettingsCommand extends smithyClient.Command
|
|
|
852
756
|
.classBuilder()
|
|
853
757
|
.ep(commonParams)
|
|
854
758
|
.m(function (Command, cs, config, o) {
|
|
855
|
-
return [
|
|
856
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
857
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
858
|
-
];
|
|
759
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
859
760
|
})
|
|
860
761
|
.s("QuickSetup", "GetServiceSettings", {})
|
|
861
762
|
.n("SSMQuickSetupClient", "GetServiceSettingsCommand")
|
|
862
|
-
.
|
|
863
|
-
.ser(se_GetServiceSettingsCommand)
|
|
864
|
-
.de(de_GetServiceSettingsCommand)
|
|
763
|
+
.sc(GetServiceSettings)
|
|
865
764
|
.build() {
|
|
866
765
|
}
|
|
867
766
|
|
|
@@ -869,16 +768,11 @@ class ListConfigurationManagersCommand extends smithyClient.Command
|
|
|
869
768
|
.classBuilder()
|
|
870
769
|
.ep(commonParams)
|
|
871
770
|
.m(function (Command, cs, config, o) {
|
|
872
|
-
return [
|
|
873
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
874
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
875
|
-
];
|
|
771
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
876
772
|
})
|
|
877
773
|
.s("QuickSetup", "ListConfigurationManagers", {})
|
|
878
774
|
.n("SSMQuickSetupClient", "ListConfigurationManagersCommand")
|
|
879
|
-
.
|
|
880
|
-
.ser(se_ListConfigurationManagersCommand)
|
|
881
|
-
.de(de_ListConfigurationManagersCommand)
|
|
775
|
+
.sc(ListConfigurationManagers)
|
|
882
776
|
.build() {
|
|
883
777
|
}
|
|
884
778
|
|
|
@@ -886,16 +780,11 @@ class ListConfigurationsCommand extends smithyClient.Command
|
|
|
886
780
|
.classBuilder()
|
|
887
781
|
.ep(commonParams)
|
|
888
782
|
.m(function (Command, cs, config, o) {
|
|
889
|
-
return [
|
|
890
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
891
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
892
|
-
];
|
|
783
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
893
784
|
})
|
|
894
785
|
.s("QuickSetup", "ListConfigurations", {})
|
|
895
786
|
.n("SSMQuickSetupClient", "ListConfigurationsCommand")
|
|
896
|
-
.
|
|
897
|
-
.ser(se_ListConfigurationsCommand)
|
|
898
|
-
.de(de_ListConfigurationsCommand)
|
|
787
|
+
.sc(ListConfigurations)
|
|
899
788
|
.build() {
|
|
900
789
|
}
|
|
901
790
|
|
|
@@ -903,16 +792,11 @@ class ListQuickSetupTypesCommand extends smithyClient.Command
|
|
|
903
792
|
.classBuilder()
|
|
904
793
|
.ep(commonParams)
|
|
905
794
|
.m(function (Command, cs, config, o) {
|
|
906
|
-
return [
|
|
907
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
908
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
909
|
-
];
|
|
795
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
910
796
|
})
|
|
911
797
|
.s("QuickSetup", "ListQuickSetupTypes", {})
|
|
912
798
|
.n("SSMQuickSetupClient", "ListQuickSetupTypesCommand")
|
|
913
|
-
.
|
|
914
|
-
.ser(se_ListQuickSetupTypesCommand)
|
|
915
|
-
.de(de_ListQuickSetupTypesCommand)
|
|
799
|
+
.sc(ListQuickSetupTypes)
|
|
916
800
|
.build() {
|
|
917
801
|
}
|
|
918
802
|
|
|
@@ -920,16 +804,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
920
804
|
.classBuilder()
|
|
921
805
|
.ep(commonParams)
|
|
922
806
|
.m(function (Command, cs, config, o) {
|
|
923
|
-
return [
|
|
924
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
925
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
926
|
-
];
|
|
807
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
927
808
|
})
|
|
928
809
|
.s("QuickSetup", "ListTagsForResource", {})
|
|
929
810
|
.n("SSMQuickSetupClient", "ListTagsForResourceCommand")
|
|
930
|
-
.
|
|
931
|
-
.ser(se_ListTagsForResourceCommand)
|
|
932
|
-
.de(de_ListTagsForResourceCommand)
|
|
811
|
+
.sc(ListTagsForResource)
|
|
933
812
|
.build() {
|
|
934
813
|
}
|
|
935
814
|
|
|
@@ -937,16 +816,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
937
816
|
.classBuilder()
|
|
938
817
|
.ep(commonParams)
|
|
939
818
|
.m(function (Command, cs, config, o) {
|
|
940
|
-
return [
|
|
941
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
942
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
943
|
-
];
|
|
819
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
944
820
|
})
|
|
945
821
|
.s("QuickSetup", "TagResource", {})
|
|
946
822
|
.n("SSMQuickSetupClient", "TagResourceCommand")
|
|
947
|
-
.
|
|
948
|
-
.ser(se_TagResourceCommand)
|
|
949
|
-
.de(de_TagResourceCommand)
|
|
823
|
+
.sc(TagResource)
|
|
950
824
|
.build() {
|
|
951
825
|
}
|
|
952
826
|
|
|
@@ -954,16 +828,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
954
828
|
.classBuilder()
|
|
955
829
|
.ep(commonParams)
|
|
956
830
|
.m(function (Command, cs, config, o) {
|
|
957
|
-
return [
|
|
958
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
959
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
960
|
-
];
|
|
831
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
961
832
|
})
|
|
962
833
|
.s("QuickSetup", "UntagResource", {})
|
|
963
834
|
.n("SSMQuickSetupClient", "UntagResourceCommand")
|
|
964
|
-
.
|
|
965
|
-
.ser(se_UntagResourceCommand)
|
|
966
|
-
.de(de_UntagResourceCommand)
|
|
835
|
+
.sc(UntagResource)
|
|
967
836
|
.build() {
|
|
968
837
|
}
|
|
969
838
|
|
|
@@ -971,16 +840,11 @@ class UpdateConfigurationDefinitionCommand extends smithyClient.Command
|
|
|
971
840
|
.classBuilder()
|
|
972
841
|
.ep(commonParams)
|
|
973
842
|
.m(function (Command, cs, config, o) {
|
|
974
|
-
return [
|
|
975
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
976
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
977
|
-
];
|
|
843
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
978
844
|
})
|
|
979
845
|
.s("QuickSetup", "UpdateConfigurationDefinition", {})
|
|
980
846
|
.n("SSMQuickSetupClient", "UpdateConfigurationDefinitionCommand")
|
|
981
|
-
.
|
|
982
|
-
.ser(se_UpdateConfigurationDefinitionCommand)
|
|
983
|
-
.de(de_UpdateConfigurationDefinitionCommand)
|
|
847
|
+
.sc(UpdateConfigurationDefinition)
|
|
984
848
|
.build() {
|
|
985
849
|
}
|
|
986
850
|
|
|
@@ -988,16 +852,11 @@ class UpdateConfigurationManagerCommand extends smithyClient.Command
|
|
|
988
852
|
.classBuilder()
|
|
989
853
|
.ep(commonParams)
|
|
990
854
|
.m(function (Command, cs, config, o) {
|
|
991
|
-
return [
|
|
992
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
993
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
994
|
-
];
|
|
855
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
995
856
|
})
|
|
996
857
|
.s("QuickSetup", "UpdateConfigurationManager", {})
|
|
997
858
|
.n("SSMQuickSetupClient", "UpdateConfigurationManagerCommand")
|
|
998
|
-
.
|
|
999
|
-
.ser(se_UpdateConfigurationManagerCommand)
|
|
1000
|
-
.de(de_UpdateConfigurationManagerCommand)
|
|
859
|
+
.sc(UpdateConfigurationManager)
|
|
1001
860
|
.build() {
|
|
1002
861
|
}
|
|
1003
862
|
|
|
@@ -1005,16 +864,11 @@ class UpdateServiceSettingsCommand extends smithyClient.Command
|
|
|
1005
864
|
.classBuilder()
|
|
1006
865
|
.ep(commonParams)
|
|
1007
866
|
.m(function (Command, cs, config, o) {
|
|
1008
|
-
return [
|
|
1009
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1010
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1011
|
-
];
|
|
867
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1012
868
|
})
|
|
1013
869
|
.s("QuickSetup", "UpdateServiceSettings", {})
|
|
1014
870
|
.n("SSMQuickSetupClient", "UpdateServiceSettingsCommand")
|
|
1015
|
-
.
|
|
1016
|
-
.ser(se_UpdateServiceSettingsCommand)
|
|
1017
|
-
.de(de_UpdateServiceSettingsCommand)
|
|
871
|
+
.sc(UpdateServiceSettings)
|
|
1018
872
|
.build() {
|
|
1019
873
|
}
|
|
1020
874
|
|
|
@@ -1050,35 +904,30 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1050
904
|
enumerable: true,
|
|
1051
905
|
get: function () { return smithyClient.Client; }
|
|
1052
906
|
});
|
|
1053
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
1054
|
-
exports.ConflictException = ConflictException;
|
|
907
|
+
exports.AccessDeniedException = AccessDeniedException$1;
|
|
908
|
+
exports.ConflictException = ConflictException$1;
|
|
1055
909
|
exports.CreateConfigurationManagerCommand = CreateConfigurationManagerCommand;
|
|
1056
|
-
exports.CreateConfigurationManagerInputFilterSensitiveLog = CreateConfigurationManagerInputFilterSensitiveLog;
|
|
1057
910
|
exports.DeleteConfigurationManagerCommand = DeleteConfigurationManagerCommand;
|
|
1058
911
|
exports.GetConfigurationCommand = GetConfigurationCommand;
|
|
1059
912
|
exports.GetConfigurationManagerCommand = GetConfigurationManagerCommand;
|
|
1060
|
-
exports.GetConfigurationManagerOutputFilterSensitiveLog = GetConfigurationManagerOutputFilterSensitiveLog;
|
|
1061
913
|
exports.GetServiceSettingsCommand = GetServiceSettingsCommand;
|
|
1062
|
-
exports.InternalServerException = InternalServerException;
|
|
914
|
+
exports.InternalServerException = InternalServerException$1;
|
|
1063
915
|
exports.ListConfigurationManagersCommand = ListConfigurationManagersCommand;
|
|
1064
916
|
exports.ListConfigurationsCommand = ListConfigurationsCommand;
|
|
1065
917
|
exports.ListQuickSetupTypesCommand = ListQuickSetupTypesCommand;
|
|
1066
918
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1067
|
-
exports.
|
|
1068
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
919
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
1069
920
|
exports.SSMQuickSetup = SSMQuickSetup;
|
|
1070
921
|
exports.SSMQuickSetupClient = SSMQuickSetupClient;
|
|
1071
|
-
exports.SSMQuickSetupServiceException = SSMQuickSetupServiceException;
|
|
922
|
+
exports.SSMQuickSetupServiceException = SSMQuickSetupServiceException$1;
|
|
1072
923
|
exports.Status = Status;
|
|
1073
924
|
exports.StatusType = StatusType;
|
|
1074
|
-
exports.TagEntryFilterSensitiveLog = TagEntryFilterSensitiveLog;
|
|
1075
925
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1076
|
-
exports.
|
|
1077
|
-
exports.ThrottlingException = ThrottlingException;
|
|
926
|
+
exports.ThrottlingException = ThrottlingException$1;
|
|
1078
927
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1079
928
|
exports.UpdateConfigurationDefinitionCommand = UpdateConfigurationDefinitionCommand;
|
|
1080
929
|
exports.UpdateConfigurationManagerCommand = UpdateConfigurationManagerCommand;
|
|
1081
930
|
exports.UpdateServiceSettingsCommand = UpdateServiceSettingsCommand;
|
|
1082
|
-
exports.ValidationException = ValidationException;
|
|
931
|
+
exports.ValidationException = ValidationException$1;
|
|
1083
932
|
exports.paginateListConfigurationManagers = paginateListConfigurationManagers;
|
|
1084
933
|
exports.paginateListConfigurations = paginateListConfigurations;
|