@aws-sdk/client-service-catalog-appregistry 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.
Files changed (45) hide show
  1. package/dist-cjs/index.js +912 -1028
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/ServiceCatalogAppRegistryClient.js +2 -0
  4. package/dist-es/commands/AssociateAttributeGroupCommand.js +3 -9
  5. package/dist-es/commands/AssociateResourceCommand.js +3 -9
  6. package/dist-es/commands/CreateApplicationCommand.js +3 -9
  7. package/dist-es/commands/CreateAttributeGroupCommand.js +3 -9
  8. package/dist-es/commands/DeleteApplicationCommand.js +3 -9
  9. package/dist-es/commands/DeleteAttributeGroupCommand.js +3 -9
  10. package/dist-es/commands/DisassociateAttributeGroupCommand.js +3 -9
  11. package/dist-es/commands/DisassociateResourceCommand.js +3 -9
  12. package/dist-es/commands/GetApplicationCommand.js +3 -9
  13. package/dist-es/commands/GetAssociatedResourceCommand.js +3 -9
  14. package/dist-es/commands/GetAttributeGroupCommand.js +3 -9
  15. package/dist-es/commands/GetConfigurationCommand.js +3 -9
  16. package/dist-es/commands/ListApplicationsCommand.js +3 -9
  17. package/dist-es/commands/ListAssociatedAttributeGroupsCommand.js +3 -9
  18. package/dist-es/commands/ListAssociatedResourcesCommand.js +3 -9
  19. package/dist-es/commands/ListAttributeGroupsCommand.js +3 -9
  20. package/dist-es/commands/ListAttributeGroupsForApplicationCommand.js +3 -9
  21. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  22. package/dist-es/commands/PutConfigurationCommand.js +3 -9
  23. package/dist-es/commands/SyncResourceCommand.js +3 -9
  24. package/dist-es/commands/TagResourceCommand.js +3 -9
  25. package/dist-es/commands/UntagResourceCommand.js +3 -9
  26. package/dist-es/commands/UpdateApplicationCommand.js +3 -9
  27. package/dist-es/commands/UpdateAttributeGroupCommand.js +3 -9
  28. package/dist-es/runtimeConfig.shared.js +2 -0
  29. package/dist-es/schemas/schemas_0.js +853 -0
  30. package/dist-types/ServiceCatalogAppRegistryClient.d.ts +10 -1
  31. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  32. package/dist-types/runtimeConfig.d.ts +1 -0
  33. package/dist-types/runtimeConfig.native.d.ts +1 -0
  34. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  35. package/dist-types/schemas/schemas_0.d.ts +105 -0
  36. package/dist-types/ts3.4/ServiceCatalogAppRegistryClient.d.ts +4 -0
  37. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  38. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  39. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  40. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  41. package/dist-types/ts3.4/schemas/schemas_0.d.ts +110 -0
  42. package/package.json +33 -34
  43. package/dist-es/protocols/Aws_restJson1.js +0 -846
  44. package/dist-types/protocols/Aws_restJson1.d.ts +0 -218
  45. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -293
package/dist-cjs/index.js CHANGED
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
6
6
  var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
7
7
  var configResolver = require('@smithy/config-resolver');
8
8
  var core = require('@smithy/core');
9
+ var schema = require('@smithy/core/schema');
9
10
  var middlewareContentLength = require('@smithy/middleware-content-length');
10
11
  var middlewareEndpoint = require('@smithy/middleware-endpoint');
11
12
  var middlewareRetry = require('@smithy/middleware-retry');
@@ -14,9 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
14
15
  var runtimeConfig = require('./runtimeConfig');
15
16
  var regionConfigResolver = require('@aws-sdk/region-config-resolver');
16
17
  var protocolHttp = require('@smithy/protocol-http');
17
- var middlewareSerde = require('@smithy/middleware-serde');
18
- var core$1 = require('@aws-sdk/core');
19
- var uuid = require('@smithy/uuid');
20
18
 
21
19
  const resolveClientEndpointParameters = (options) => {
22
20
  return Object.assign(options, {
@@ -92,6 +90,7 @@ class ServiceCatalogAppRegistryClient extends smithyClient.Client {
92
90
  const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
93
91
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
94
92
  this.config = _config_8;
93
+ this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
95
94
  this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
96
95
  this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
97
96
  this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
@@ -111,19 +110,19 @@ class ServiceCatalogAppRegistryClient extends smithyClient.Client {
111
110
  }
112
111
  }
113
112
 
114
- class ServiceCatalogAppRegistryServiceException extends smithyClient.ServiceException {
113
+ let ServiceCatalogAppRegistryServiceException$1 = class ServiceCatalogAppRegistryServiceException extends smithyClient.ServiceException {
115
114
  constructor(options) {
116
115
  super(options);
117
116
  Object.setPrototypeOf(this, ServiceCatalogAppRegistryServiceException.prototype);
118
117
  }
119
- }
118
+ };
120
119
 
121
120
  const ApplicationTagStatus = {
122
121
  FAILURE: "FAILURE",
123
122
  IN_PROGRESS: "IN_PROGRESS",
124
123
  SUCCESS: "SUCCESS",
125
124
  };
126
- class ConflictException extends ServiceCatalogAppRegistryServiceException {
125
+ let ConflictException$1 = class ConflictException extends ServiceCatalogAppRegistryServiceException$1 {
127
126
  name = "ConflictException";
128
127
  $fault = "client";
129
128
  constructor(opts) {
@@ -134,8 +133,8 @@ class ConflictException extends ServiceCatalogAppRegistryServiceException {
134
133
  });
135
134
  Object.setPrototypeOf(this, ConflictException.prototype);
136
135
  }
137
- }
138
- class InternalServerException extends ServiceCatalogAppRegistryServiceException {
136
+ };
137
+ let InternalServerException$1 = class InternalServerException extends ServiceCatalogAppRegistryServiceException$1 {
139
138
  name = "InternalServerException";
140
139
  $fault = "server";
141
140
  constructor(opts) {
@@ -146,8 +145,8 @@ class InternalServerException extends ServiceCatalogAppRegistryServiceException
146
145
  });
147
146
  Object.setPrototypeOf(this, InternalServerException.prototype);
148
147
  }
149
- }
150
- class ResourceNotFoundException extends ServiceCatalogAppRegistryServiceException {
148
+ };
149
+ let ResourceNotFoundException$1 = class ResourceNotFoundException extends ServiceCatalogAppRegistryServiceException$1 {
151
150
  name = "ResourceNotFoundException";
152
151
  $fault = "client";
153
152
  constructor(opts) {
@@ -158,8 +157,8 @@ class ResourceNotFoundException extends ServiceCatalogAppRegistryServiceExceptio
158
157
  });
159
158
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
160
159
  }
161
- }
162
- class ServiceQuotaExceededException extends ServiceCatalogAppRegistryServiceException {
160
+ };
161
+ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends ServiceCatalogAppRegistryServiceException$1 {
163
162
  name = "ServiceQuotaExceededException";
164
163
  $fault = "client";
165
164
  constructor(opts) {
@@ -170,8 +169,8 @@ class ServiceQuotaExceededException extends ServiceCatalogAppRegistryServiceExce
170
169
  });
171
170
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
172
171
  }
173
- }
174
- class ValidationException extends ServiceCatalogAppRegistryServiceException {
172
+ };
173
+ let ValidationException$1 = class ValidationException extends ServiceCatalogAppRegistryServiceException$1 {
175
174
  name = "ValidationException";
176
175
  $fault = "client";
177
176
  constructor(opts) {
@@ -182,7 +181,7 @@ class ValidationException extends ServiceCatalogAppRegistryServiceException {
182
181
  });
183
182
  Object.setPrototypeOf(this, ValidationException.prototype);
184
183
  }
185
- }
184
+ };
186
185
  const AssociationOption = {
187
186
  APPLY_APPLICATION_TAG: "APPLY_APPLICATION_TAG",
188
187
  SKIP_APPLICATION_TAG: "SKIP_APPLICATION_TAG",
@@ -191,7 +190,7 @@ const ResourceType = {
191
190
  CFN_STACK: "CFN_STACK",
192
191
  RESOURCE_TAG_VALUE: "RESOURCE_TAG_VALUE",
193
192
  };
194
- class ThrottlingException extends ServiceCatalogAppRegistryServiceException {
193
+ let ThrottlingException$1 = class ThrottlingException extends ServiceCatalogAppRegistryServiceException$1 {
195
194
  name = "ThrottlingException";
196
195
  $fault = "client";
197
196
  serviceCode;
@@ -204,7 +203,7 @@ class ThrottlingException extends ServiceCatalogAppRegistryServiceException {
204
203
  Object.setPrototypeOf(this, ThrottlingException.prototype);
205
204
  this.serviceCode = opts.serviceCode;
206
205
  }
207
- }
206
+ };
208
207
  const ResourceGroupState = {
209
208
  CREATE_COMPLETE: "CREATE_COMPLETE",
210
209
  CREATE_FAILED: "CREATE_FAILED",
@@ -224,860 +223,860 @@ const SyncAction = {
224
223
  START_SYNC: "START_SYNC",
225
224
  };
226
225
 
227
- const se_AssociateAttributeGroupCommand = async (input, context) => {
228
- const b = core.requestBuilder(input, context);
229
- const headers = {};
230
- b.bp("/applications/{application}/attribute-groups/{attributeGroup}");
231
- b.p("application", () => input.application, "{application}", false);
232
- b.p("attributeGroup", () => input.attributeGroup, "{attributeGroup}", false);
233
- let body;
234
- b.m("PUT").h(headers).b(body);
235
- return b.build();
236
- };
237
- const se_AssociateResourceCommand = async (input, context) => {
238
- const b = core.requestBuilder(input, context);
239
- const headers = {
240
- "content-type": "application/json",
241
- };
242
- b.bp("/applications/{application}/resources/{resourceType}/{resource}");
243
- b.p("application", () => input.application, "{application}", false);
244
- b.p("resourceType", () => input.resourceType, "{resourceType}", false);
245
- b.p("resource", () => input.resource, "{resource}", false);
246
- let body;
247
- body = JSON.stringify(smithyClient.take(input, {
248
- options: (_) => smithyClient._json(_),
249
- }));
250
- b.m("PUT").h(headers).b(body);
251
- return b.build();
252
- };
253
- const se_CreateApplicationCommand = async (input, context) => {
254
- const b = core.requestBuilder(input, context);
255
- const headers = {
256
- "content-type": "application/json",
257
- };
258
- b.bp("/applications");
259
- let body;
260
- body = JSON.stringify(smithyClient.take(input, {
261
- clientToken: [true, (_) => _ ?? uuid.v4()],
262
- description: [],
263
- name: [],
264
- tags: (_) => smithyClient._json(_),
265
- }));
266
- b.m("POST").h(headers).b(body);
267
- return b.build();
268
- };
269
- const se_CreateAttributeGroupCommand = async (input, context) => {
270
- const b = core.requestBuilder(input, context);
271
- const headers = {
272
- "content-type": "application/json",
273
- };
274
- b.bp("/attribute-groups");
275
- let body;
276
- body = JSON.stringify(smithyClient.take(input, {
277
- attributes: [],
278
- clientToken: [true, (_) => _ ?? uuid.v4()],
279
- description: [],
280
- name: [],
281
- tags: (_) => smithyClient._json(_),
282
- }));
283
- b.m("POST").h(headers).b(body);
284
- return b.build();
285
- };
286
- const se_DeleteApplicationCommand = async (input, context) => {
287
- const b = core.requestBuilder(input, context);
288
- const headers = {};
289
- b.bp("/applications/{application}");
290
- b.p("application", () => input.application, "{application}", false);
291
- let body;
292
- b.m("DELETE").h(headers).b(body);
293
- return b.build();
294
- };
295
- const se_DeleteAttributeGroupCommand = async (input, context) => {
296
- const b = core.requestBuilder(input, context);
297
- const headers = {};
298
- b.bp("/attribute-groups/{attributeGroup}");
299
- b.p("attributeGroup", () => input.attributeGroup, "{attributeGroup}", false);
300
- let body;
301
- b.m("DELETE").h(headers).b(body);
302
- return b.build();
303
- };
304
- const se_DisassociateAttributeGroupCommand = async (input, context) => {
305
- const b = core.requestBuilder(input, context);
306
- const headers = {};
307
- b.bp("/applications/{application}/attribute-groups/{attributeGroup}");
308
- b.p("application", () => input.application, "{application}", false);
309
- b.p("attributeGroup", () => input.attributeGroup, "{attributeGroup}", false);
310
- let body;
311
- b.m("DELETE").h(headers).b(body);
312
- return b.build();
313
- };
314
- const se_DisassociateResourceCommand = async (input, context) => {
315
- const b = core.requestBuilder(input, context);
316
- const headers = {};
317
- b.bp("/applications/{application}/resources/{resourceType}/{resource}");
318
- b.p("application", () => input.application, "{application}", false);
319
- b.p("resourceType", () => input.resourceType, "{resourceType}", false);
320
- b.p("resource", () => input.resource, "{resource}", false);
321
- let body;
322
- b.m("DELETE").h(headers).b(body);
323
- return b.build();
324
- };
325
- const se_GetApplicationCommand = async (input, context) => {
326
- const b = core.requestBuilder(input, context);
327
- const headers = {};
328
- b.bp("/applications/{application}");
329
- b.p("application", () => input.application, "{application}", false);
330
- let body;
331
- b.m("GET").h(headers).b(body);
332
- return b.build();
333
- };
334
- const se_GetAssociatedResourceCommand = async (input, context) => {
335
- const b = core.requestBuilder(input, context);
336
- const headers = {};
337
- b.bp("/applications/{application}/resources/{resourceType}/{resource}");
338
- b.p("application", () => input.application, "{application}", false);
339
- b.p("resourceType", () => input.resourceType, "{resourceType}", false);
340
- b.p("resource", () => input.resource, "{resource}", false);
341
- const query = smithyClient.map({
342
- [_nT]: [, input[_nT]],
343
- [_rTS]: [() => input.resourceTagStatus !== void 0, () => input[_rTS] || []],
344
- [_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
345
- });
346
- let body;
347
- b.m("GET").h(headers).q(query).b(body);
348
- return b.build();
349
- };
350
- const se_GetAttributeGroupCommand = async (input, context) => {
351
- const b = core.requestBuilder(input, context);
352
- const headers = {};
353
- b.bp("/attribute-groups/{attributeGroup}");
354
- b.p("attributeGroup", () => input.attributeGroup, "{attributeGroup}", false);
355
- let body;
356
- b.m("GET").h(headers).b(body);
357
- return b.build();
358
- };
359
- const se_GetConfigurationCommand = async (input, context) => {
360
- const b = core.requestBuilder(input, context);
361
- const headers = {};
362
- b.bp("/configuration");
363
- let body;
364
- b.m("GET").h(headers).b(body);
365
- return b.build();
366
- };
367
- const se_ListApplicationsCommand = async (input, context) => {
368
- const b = core.requestBuilder(input, context);
369
- const headers = {};
370
- b.bp("/applications");
371
- const query = smithyClient.map({
372
- [_nT]: [, input[_nT]],
373
- [_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
374
- });
375
- let body;
376
- b.m("GET").h(headers).q(query).b(body);
377
- return b.build();
378
- };
379
- const se_ListAssociatedAttributeGroupsCommand = async (input, context) => {
380
- const b = core.requestBuilder(input, context);
381
- const headers = {};
382
- b.bp("/applications/{application}/attribute-groups");
383
- b.p("application", () => input.application, "{application}", false);
384
- const query = smithyClient.map({
385
- [_nT]: [, input[_nT]],
386
- [_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
387
- });
388
- let body;
389
- b.m("GET").h(headers).q(query).b(body);
390
- return b.build();
391
- };
392
- const se_ListAssociatedResourcesCommand = async (input, context) => {
393
- const b = core.requestBuilder(input, context);
394
- const headers = {};
395
- b.bp("/applications/{application}/resources");
396
- b.p("application", () => input.application, "{application}", false);
397
- const query = smithyClient.map({
398
- [_nT]: [, input[_nT]],
399
- [_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
400
- });
401
- let body;
402
- b.m("GET").h(headers).q(query).b(body);
403
- return b.build();
404
- };
405
- const se_ListAttributeGroupsCommand = async (input, context) => {
406
- const b = core.requestBuilder(input, context);
407
- const headers = {};
408
- b.bp("/attribute-groups");
409
- const query = smithyClient.map({
410
- [_nT]: [, input[_nT]],
411
- [_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
412
- });
413
- let body;
414
- b.m("GET").h(headers).q(query).b(body);
415
- return b.build();
416
- };
417
- const se_ListAttributeGroupsForApplicationCommand = async (input, context) => {
418
- const b = core.requestBuilder(input, context);
419
- const headers = {};
420
- b.bp("/applications/{application}/attribute-group-details");
421
- b.p("application", () => input.application, "{application}", false);
422
- const query = smithyClient.map({
423
- [_nT]: [, input[_nT]],
424
- [_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
425
- });
426
- let body;
427
- b.m("GET").h(headers).q(query).b(body);
428
- return b.build();
429
- };
430
- const se_ListTagsForResourceCommand = async (input, context) => {
431
- const b = core.requestBuilder(input, context);
432
- const headers = {};
433
- b.bp("/tags/{resourceArn}");
434
- b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
435
- let body;
436
- b.m("GET").h(headers).b(body);
437
- return b.build();
438
- };
439
- const se_PutConfigurationCommand = async (input, context) => {
440
- const b = core.requestBuilder(input, context);
441
- const headers = {
442
- "content-type": "application/json",
443
- };
444
- b.bp("/configuration");
445
- let body;
446
- body = JSON.stringify(smithyClient.take(input, {
447
- configuration: (_) => smithyClient._json(_),
448
- }));
449
- b.m("PUT").h(headers).b(body);
450
- return b.build();
451
- };
452
- const se_SyncResourceCommand = async (input, context) => {
453
- const b = core.requestBuilder(input, context);
454
- const headers = {};
455
- b.bp("/sync/{resourceType}/{resource}");
456
- b.p("resourceType", () => input.resourceType, "{resourceType}", false);
457
- b.p("resource", () => input.resource, "{resource}", false);
458
- let body;
459
- b.m("POST").h(headers).b(body);
460
- return b.build();
461
- };
462
- const se_TagResourceCommand = async (input, context) => {
463
- const b = core.requestBuilder(input, context);
464
- const headers = {
465
- "content-type": "application/json",
466
- };
467
- b.bp("/tags/{resourceArn}");
468
- b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
469
- let body;
470
- body = JSON.stringify(smithyClient.take(input, {
471
- tags: (_) => smithyClient._json(_),
472
- }));
473
- b.m("POST").h(headers).b(body);
474
- return b.build();
475
- };
476
- const se_UntagResourceCommand = async (input, context) => {
477
- const b = core.requestBuilder(input, context);
478
- const headers = {};
479
- b.bp("/tags/{resourceArn}");
480
- b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
481
- const query = smithyClient.map({
482
- [_tK]: [smithyClient.expectNonNull(input.tagKeys, `tagKeys`) != null, () => input[_tK] || []],
483
- });
484
- let body;
485
- b.m("DELETE").h(headers).q(query).b(body);
486
- return b.build();
487
- };
488
- const se_UpdateApplicationCommand = async (input, context) => {
489
- const b = core.requestBuilder(input, context);
490
- const headers = {
491
- "content-type": "application/json",
492
- };
493
- b.bp("/applications/{application}");
494
- b.p("application", () => input.application, "{application}", false);
495
- let body;
496
- body = JSON.stringify(smithyClient.take(input, {
497
- description: [],
498
- name: [],
499
- }));
500
- b.m("PATCH").h(headers).b(body);
501
- return b.build();
502
- };
503
- const se_UpdateAttributeGroupCommand = async (input, context) => {
504
- const b = core.requestBuilder(input, context);
505
- const headers = {
506
- "content-type": "application/json",
507
- };
508
- b.bp("/attribute-groups/{attributeGroup}");
509
- b.p("attributeGroup", () => input.attributeGroup, "{attributeGroup}", false);
510
- let body;
511
- body = JSON.stringify(smithyClient.take(input, {
512
- attributes: [],
513
- description: [],
514
- name: [],
515
- }));
516
- b.m("PATCH").h(headers).b(body);
517
- return b.build();
518
- };
519
- const de_AssociateAttributeGroupCommand = async (output, context) => {
520
- if (output.statusCode !== 200 && output.statusCode >= 300) {
521
- return de_CommandError(output, context);
522
- }
523
- const contents = smithyClient.map({
524
- $metadata: deserializeMetadata(output),
525
- });
526
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
527
- const doc = smithyClient.take(data, {
528
- applicationArn: smithyClient.expectString,
529
- attributeGroupArn: smithyClient.expectString,
530
- });
531
- Object.assign(contents, doc);
532
- return contents;
533
- };
534
- const de_AssociateResourceCommand = async (output, context) => {
535
- if (output.statusCode !== 200 && output.statusCode >= 300) {
536
- return de_CommandError(output, context);
537
- }
538
- const contents = smithyClient.map({
539
- $metadata: deserializeMetadata(output),
540
- });
541
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
542
- const doc = smithyClient.take(data, {
543
- applicationArn: smithyClient.expectString,
544
- options: smithyClient._json,
545
- resourceArn: smithyClient.expectString,
546
- });
547
- Object.assign(contents, doc);
548
- return contents;
549
- };
550
- const de_CreateApplicationCommand = async (output, context) => {
551
- if (output.statusCode !== 201 && output.statusCode >= 300) {
552
- return de_CommandError(output, context);
553
- }
554
- const contents = smithyClient.map({
555
- $metadata: deserializeMetadata(output),
556
- });
557
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
558
- const doc = smithyClient.take(data, {
559
- application: (_) => de_Application(_),
560
- });
561
- Object.assign(contents, doc);
562
- return contents;
563
- };
564
- const de_CreateAttributeGroupCommand = async (output, context) => {
565
- if (output.statusCode !== 201 && output.statusCode >= 300) {
566
- return de_CommandError(output, context);
567
- }
568
- const contents = smithyClient.map({
569
- $metadata: deserializeMetadata(output),
570
- });
571
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
572
- const doc = smithyClient.take(data, {
573
- attributeGroup: (_) => de_AttributeGroup(_),
574
- });
575
- Object.assign(contents, doc);
576
- return contents;
577
- };
578
- const de_DeleteApplicationCommand = async (output, context) => {
579
- if (output.statusCode !== 200 && output.statusCode >= 300) {
580
- return de_CommandError(output, context);
581
- }
582
- const contents = smithyClient.map({
583
- $metadata: deserializeMetadata(output),
584
- });
585
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
586
- const doc = smithyClient.take(data, {
587
- application: (_) => de_ApplicationSummary(_),
588
- });
589
- Object.assign(contents, doc);
590
- return contents;
591
- };
592
- const de_DeleteAttributeGroupCommand = async (output, context) => {
593
- if (output.statusCode !== 200 && output.statusCode >= 300) {
594
- return de_CommandError(output, context);
595
- }
596
- const contents = smithyClient.map({
597
- $metadata: deserializeMetadata(output),
598
- });
599
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
600
- const doc = smithyClient.take(data, {
601
- attributeGroup: (_) => de_AttributeGroupSummary(_),
602
- });
603
- Object.assign(contents, doc);
604
- return contents;
605
- };
606
- const de_DisassociateAttributeGroupCommand = async (output, context) => {
607
- if (output.statusCode !== 200 && output.statusCode >= 300) {
608
- return de_CommandError(output, context);
609
- }
610
- const contents = smithyClient.map({
611
- $metadata: deserializeMetadata(output),
612
- });
613
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
614
- const doc = smithyClient.take(data, {
615
- applicationArn: smithyClient.expectString,
616
- attributeGroupArn: smithyClient.expectString,
617
- });
618
- Object.assign(contents, doc);
619
- return contents;
620
- };
621
- const de_DisassociateResourceCommand = async (output, context) => {
622
- if (output.statusCode !== 200 && output.statusCode >= 300) {
623
- return de_CommandError(output, context);
624
- }
625
- const contents = smithyClient.map({
626
- $metadata: deserializeMetadata(output),
627
- });
628
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
629
- const doc = smithyClient.take(data, {
630
- applicationArn: smithyClient.expectString,
631
- resourceArn: smithyClient.expectString,
632
- });
633
- Object.assign(contents, doc);
634
- return contents;
635
- };
636
- const de_GetApplicationCommand = async (output, context) => {
637
- if (output.statusCode !== 200 && output.statusCode >= 300) {
638
- return de_CommandError(output, context);
639
- }
640
- const contents = smithyClient.map({
641
- $metadata: deserializeMetadata(output),
642
- });
643
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
644
- const doc = smithyClient.take(data, {
645
- applicationTag: smithyClient._json,
646
- arn: smithyClient.expectString,
647
- associatedResourceCount: smithyClient.expectInt32,
648
- creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
649
- description: smithyClient.expectString,
650
- id: smithyClient.expectString,
651
- integrations: smithyClient._json,
652
- lastUpdateTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
653
- name: smithyClient.expectString,
654
- tags: smithyClient._json,
655
- });
656
- Object.assign(contents, doc);
657
- return contents;
658
- };
659
- const de_GetAssociatedResourceCommand = async (output, context) => {
660
- if (output.statusCode !== 200 && output.statusCode >= 300) {
661
- return de_CommandError(output, context);
662
- }
663
- const contents = smithyClient.map({
664
- $metadata: deserializeMetadata(output),
665
- });
666
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
667
- const doc = smithyClient.take(data, {
668
- applicationTagResult: smithyClient._json,
669
- options: smithyClient._json,
670
- resource: (_) => de_Resource(_),
671
- });
672
- Object.assign(contents, doc);
673
- return contents;
674
- };
675
- const de_GetAttributeGroupCommand = async (output, context) => {
676
- if (output.statusCode !== 200 && output.statusCode >= 300) {
677
- return de_CommandError(output, context);
678
- }
679
- const contents = smithyClient.map({
680
- $metadata: deserializeMetadata(output),
681
- });
682
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
683
- const doc = smithyClient.take(data, {
684
- arn: smithyClient.expectString,
685
- attributes: smithyClient.expectString,
686
- createdBy: smithyClient.expectString,
687
- creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
688
- description: smithyClient.expectString,
689
- id: smithyClient.expectString,
690
- lastUpdateTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
691
- name: smithyClient.expectString,
692
- tags: smithyClient._json,
693
- });
694
- Object.assign(contents, doc);
695
- return contents;
696
- };
697
- const de_GetConfigurationCommand = async (output, context) => {
698
- if (output.statusCode !== 200 && output.statusCode >= 300) {
699
- return de_CommandError(output, context);
700
- }
701
- const contents = smithyClient.map({
702
- $metadata: deserializeMetadata(output),
703
- });
704
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
705
- const doc = smithyClient.take(data, {
706
- configuration: smithyClient._json,
707
- });
708
- Object.assign(contents, doc);
709
- return contents;
710
- };
711
- const de_ListApplicationsCommand = async (output, context) => {
712
- if (output.statusCode !== 200 && output.statusCode >= 300) {
713
- return de_CommandError(output, context);
714
- }
715
- const contents = smithyClient.map({
716
- $metadata: deserializeMetadata(output),
717
- });
718
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
719
- const doc = smithyClient.take(data, {
720
- applications: (_) => de_ApplicationSummaries(_),
721
- nextToken: smithyClient.expectString,
722
- });
723
- Object.assign(contents, doc);
724
- return contents;
725
- };
726
- const de_ListAssociatedAttributeGroupsCommand = async (output, context) => {
727
- if (output.statusCode !== 200 && output.statusCode >= 300) {
728
- return de_CommandError(output, context);
729
- }
730
- const contents = smithyClient.map({
731
- $metadata: deserializeMetadata(output),
732
- });
733
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
734
- const doc = smithyClient.take(data, {
735
- attributeGroups: smithyClient._json,
736
- nextToken: smithyClient.expectString,
737
- });
738
- Object.assign(contents, doc);
739
- return contents;
740
- };
741
- const de_ListAssociatedResourcesCommand = async (output, context) => {
742
- if (output.statusCode !== 200 && output.statusCode >= 300) {
743
- return de_CommandError(output, context);
744
- }
745
- const contents = smithyClient.map({
746
- $metadata: deserializeMetadata(output),
747
- });
748
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
749
- const doc = smithyClient.take(data, {
750
- nextToken: smithyClient.expectString,
751
- resources: smithyClient._json,
752
- });
753
- Object.assign(contents, doc);
754
- return contents;
755
- };
756
- const de_ListAttributeGroupsCommand = async (output, context) => {
757
- if (output.statusCode !== 200 && output.statusCode >= 300) {
758
- return de_CommandError(output, context);
759
- }
760
- const contents = smithyClient.map({
761
- $metadata: deserializeMetadata(output),
762
- });
763
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
764
- const doc = smithyClient.take(data, {
765
- attributeGroups: (_) => de_AttributeGroupSummaries(_),
766
- nextToken: smithyClient.expectString,
767
- });
768
- Object.assign(contents, doc);
769
- return contents;
770
- };
771
- const de_ListAttributeGroupsForApplicationCommand = async (output, context) => {
772
- if (output.statusCode !== 200 && output.statusCode >= 300) {
773
- return de_CommandError(output, context);
774
- }
775
- const contents = smithyClient.map({
776
- $metadata: deserializeMetadata(output),
777
- });
778
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
779
- const doc = smithyClient.take(data, {
780
- attributeGroupsDetails: smithyClient._json,
781
- nextToken: smithyClient.expectString,
782
- });
783
- Object.assign(contents, doc);
784
- return contents;
785
- };
786
- const de_ListTagsForResourceCommand = async (output, context) => {
787
- if (output.statusCode !== 200 && output.statusCode >= 300) {
788
- return de_CommandError(output, context);
789
- }
790
- const contents = smithyClient.map({
791
- $metadata: deserializeMetadata(output),
792
- });
793
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
794
- const doc = smithyClient.take(data, {
795
- tags: smithyClient._json,
796
- });
797
- Object.assign(contents, doc);
798
- return contents;
799
- };
800
- const de_PutConfigurationCommand = async (output, context) => {
801
- if (output.statusCode !== 200 && output.statusCode >= 300) {
802
- return de_CommandError(output, context);
803
- }
804
- const contents = smithyClient.map({
805
- $metadata: deserializeMetadata(output),
806
- });
807
- await smithyClient.collectBody(output.body, context);
808
- return contents;
809
- };
810
- const de_SyncResourceCommand = async (output, context) => {
811
- if (output.statusCode !== 200 && output.statusCode >= 300) {
812
- return de_CommandError(output, context);
813
- }
814
- const contents = smithyClient.map({
815
- $metadata: deserializeMetadata(output),
816
- });
817
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
818
- const doc = smithyClient.take(data, {
819
- actionTaken: smithyClient.expectString,
820
- applicationArn: smithyClient.expectString,
821
- resourceArn: smithyClient.expectString,
822
- });
823
- Object.assign(contents, doc);
824
- return contents;
825
- };
826
- const de_TagResourceCommand = async (output, context) => {
827
- if (output.statusCode !== 200 && output.statusCode >= 300) {
828
- return de_CommandError(output, context);
829
- }
830
- const contents = smithyClient.map({
831
- $metadata: deserializeMetadata(output),
832
- });
833
- await smithyClient.collectBody(output.body, context);
834
- return contents;
835
- };
836
- const de_UntagResourceCommand = async (output, context) => {
837
- if (output.statusCode !== 200 && output.statusCode >= 300) {
838
- return de_CommandError(output, context);
839
- }
840
- const contents = smithyClient.map({
841
- $metadata: deserializeMetadata(output),
842
- });
843
- await smithyClient.collectBody(output.body, context);
844
- return contents;
845
- };
846
- const de_UpdateApplicationCommand = async (output, context) => {
847
- if (output.statusCode !== 200 && output.statusCode >= 300) {
848
- return de_CommandError(output, context);
849
- }
850
- const contents = smithyClient.map({
851
- $metadata: deserializeMetadata(output),
852
- });
853
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
854
- const doc = smithyClient.take(data, {
855
- application: (_) => de_Application(_),
856
- });
857
- Object.assign(contents, doc);
858
- return contents;
859
- };
860
- const de_UpdateAttributeGroupCommand = async (output, context) => {
861
- if (output.statusCode !== 200 && output.statusCode >= 300) {
862
- return de_CommandError(output, context);
863
- }
864
- const contents = smithyClient.map({
865
- $metadata: deserializeMetadata(output),
866
- });
867
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
868
- const doc = smithyClient.take(data, {
869
- attributeGroup: (_) => de_AttributeGroup(_),
870
- });
871
- Object.assign(contents, doc);
872
- return contents;
873
- };
874
- const de_CommandError = async (output, context) => {
875
- const parsedOutput = {
876
- ...output,
877
- body: await core$1.parseJsonErrorBody(output.body, context),
878
- };
879
- const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
880
- switch (errorCode) {
881
- case "ConflictException":
882
- case "com.amazonaws.servicecatalogappregistry#ConflictException":
883
- throw await de_ConflictExceptionRes(parsedOutput);
884
- case "InternalServerException":
885
- case "com.amazonaws.servicecatalogappregistry#InternalServerException":
886
- throw await de_InternalServerExceptionRes(parsedOutput);
887
- case "ResourceNotFoundException":
888
- case "com.amazonaws.servicecatalogappregistry#ResourceNotFoundException":
889
- throw await de_ResourceNotFoundExceptionRes(parsedOutput);
890
- case "ServiceQuotaExceededException":
891
- case "com.amazonaws.servicecatalogappregistry#ServiceQuotaExceededException":
892
- throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
893
- case "ValidationException":
894
- case "com.amazonaws.servicecatalogappregistry#ValidationException":
895
- throw await de_ValidationExceptionRes(parsedOutput);
896
- case "ThrottlingException":
897
- case "com.amazonaws.servicecatalogappregistry#ThrottlingException":
898
- throw await de_ThrottlingExceptionRes(parsedOutput);
899
- default:
900
- const parsedBody = parsedOutput.body;
901
- return throwDefaultError({
902
- output,
903
- parsedBody,
904
- errorCode,
905
- });
906
- }
907
- };
908
- const throwDefaultError = smithyClient.withBaseException(ServiceCatalogAppRegistryServiceException);
909
- const de_ConflictExceptionRes = async (parsedOutput, context) => {
910
- const contents = smithyClient.map({});
911
- const data = parsedOutput.body;
912
- const doc = smithyClient.take(data, {
913
- message: smithyClient.expectString,
914
- });
915
- Object.assign(contents, doc);
916
- const exception = new ConflictException({
917
- $metadata: deserializeMetadata(parsedOutput),
918
- ...contents,
919
- });
920
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
921
- };
922
- const de_InternalServerExceptionRes = async (parsedOutput, context) => {
923
- const contents = smithyClient.map({});
924
- const data = parsedOutput.body;
925
- const doc = smithyClient.take(data, {
926
- message: smithyClient.expectString,
927
- });
928
- Object.assign(contents, doc);
929
- const exception = new InternalServerException({
930
- $metadata: deserializeMetadata(parsedOutput),
931
- ...contents,
932
- });
933
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
934
- };
935
- const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
936
- const contents = smithyClient.map({});
937
- const data = parsedOutput.body;
938
- const doc = smithyClient.take(data, {
939
- message: smithyClient.expectString,
940
- });
941
- Object.assign(contents, doc);
942
- const exception = new ResourceNotFoundException({
943
- $metadata: deserializeMetadata(parsedOutput),
944
- ...contents,
945
- });
946
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
947
- };
948
- const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
949
- const contents = smithyClient.map({});
950
- const data = parsedOutput.body;
951
- const doc = smithyClient.take(data, {
952
- message: smithyClient.expectString,
953
- });
954
- Object.assign(contents, doc);
955
- const exception = new ServiceQuotaExceededException({
956
- $metadata: deserializeMetadata(parsedOutput),
957
- ...contents,
958
- });
959
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
960
- };
961
- const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
962
- const contents = smithyClient.map({});
963
- const data = parsedOutput.body;
964
- const doc = smithyClient.take(data, {
965
- message: smithyClient.expectString,
966
- serviceCode: smithyClient.expectString,
967
- });
968
- Object.assign(contents, doc);
969
- const exception = new ThrottlingException({
970
- $metadata: deserializeMetadata(parsedOutput),
971
- ...contents,
972
- });
973
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
974
- };
975
- const de_ValidationExceptionRes = async (parsedOutput, context) => {
976
- const contents = smithyClient.map({});
977
- const data = parsedOutput.body;
978
- const doc = smithyClient.take(data, {
979
- message: smithyClient.expectString,
980
- });
981
- Object.assign(contents, doc);
982
- const exception = new ValidationException({
983
- $metadata: deserializeMetadata(parsedOutput),
984
- ...contents,
985
- });
986
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
987
- };
988
- const de_Application = (output, context) => {
989
- return smithyClient.take(output, {
990
- applicationTag: smithyClient._json,
991
- arn: smithyClient.expectString,
992
- creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
993
- description: smithyClient.expectString,
994
- id: smithyClient.expectString,
995
- lastUpdateTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
996
- name: smithyClient.expectString,
997
- tags: smithyClient._json,
998
- });
999
- };
1000
- const de_ApplicationSummaries = (output, context) => {
1001
- const retVal = (output || [])
1002
- .filter((e) => e != null)
1003
- .map((entry) => {
1004
- return de_ApplicationSummary(entry);
1005
- });
1006
- return retVal;
1007
- };
1008
- const de_ApplicationSummary = (output, context) => {
1009
- return smithyClient.take(output, {
1010
- arn: smithyClient.expectString,
1011
- creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
1012
- description: smithyClient.expectString,
1013
- id: smithyClient.expectString,
1014
- lastUpdateTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
1015
- name: smithyClient.expectString,
1016
- });
1017
- };
1018
- const de_AttributeGroup = (output, context) => {
1019
- return smithyClient.take(output, {
1020
- arn: smithyClient.expectString,
1021
- creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
1022
- description: smithyClient.expectString,
1023
- id: smithyClient.expectString,
1024
- lastUpdateTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
1025
- name: smithyClient.expectString,
1026
- tags: smithyClient._json,
1027
- });
1028
- };
1029
- const de_AttributeGroupSummaries = (output, context) => {
1030
- const retVal = (output || [])
1031
- .filter((e) => e != null)
1032
- .map((entry) => {
1033
- return de_AttributeGroupSummary(entry);
1034
- });
1035
- return retVal;
1036
- };
1037
- const de_AttributeGroupSummary = (output, context) => {
1038
- return smithyClient.take(output, {
1039
- arn: smithyClient.expectString,
1040
- createdBy: smithyClient.expectString,
1041
- creationTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
1042
- description: smithyClient.expectString,
1043
- id: smithyClient.expectString,
1044
- lastUpdateTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
1045
- name: smithyClient.expectString,
1046
- });
1047
- };
1048
- const de_Resource = (output, context) => {
1049
- return smithyClient.take(output, {
1050
- arn: smithyClient.expectString,
1051
- associationTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
1052
- integrations: smithyClient._json,
1053
- name: smithyClient.expectString,
1054
- });
1055
- };
1056
- const deserializeMetadata = (output) => ({
1057
- httpStatusCode: output.statusCode,
1058
- requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
1059
- extendedRequestId: output.headers["x-amz-id-2"],
1060
- cfId: output.headers["x-amz-cf-id"],
1061
- });
226
+ const _A = "Application";
227
+ const _AAG = "AssociateAttributeGroup";
228
+ const _AAGR = "AssociateAttributeGroupRequest";
229
+ const _AAGRs = "AssociateAttributeGroupResponse";
230
+ const _AG = "AttributeGroup";
231
+ const _AGD = "AttributeGroupDetails";
232
+ const _AGDL = "AttributeGroupDetailsList";
233
+ const _AGS = "AttributeGroupSummary";
234
+ const _AGSt = "AttributeGroupSummaries";
235
+ const _AR = "AssociateResource";
236
+ const _ARC = "AppRegistryConfiguration";
237
+ const _ARR = "AssociateResourceRequest";
238
+ const _ARRs = "AssociateResourceResponse";
239
+ const _AS = "ApplicationSummary";
240
+ const _ASp = "ApplicationSummaries";
241
+ const _ATR = "ApplicationTagResult";
242
+ const _CA = "CreateApplication";
243
+ const _CAG = "CreateAttributeGroup";
244
+ const _CAGR = "CreateAttributeGroupRequest";
245
+ const _CAGRr = "CreateAttributeGroupResponse";
246
+ const _CAR = "CreateApplicationRequest";
247
+ const _CARr = "CreateApplicationResponse";
248
+ const _CE = "ConflictException";
249
+ const _DA = "DeleteApplication";
250
+ const _DAG = "DeleteAttributeGroup";
251
+ const _DAGR = "DeleteAttributeGroupRequest";
252
+ const _DAGRe = "DeleteAttributeGroupResponse";
253
+ const _DAGRi = "DisassociateAttributeGroupRequest";
254
+ const _DAGRis = "DisassociateAttributeGroupResponse";
255
+ const _DAGi = "DisassociateAttributeGroup";
256
+ const _DAR = "DeleteApplicationRequest";
257
+ const _DARe = "DeleteApplicationResponse";
258
+ const _DR = "DisassociateResource";
259
+ const _DRR = "DisassociateResourceRequest";
260
+ const _DRRi = "DisassociateResourceResponse";
261
+ const _GA = "GetApplication";
262
+ const _GAG = "GetAttributeGroup";
263
+ const _GAGR = "GetAttributeGroupRequest";
264
+ const _GAGRe = "GetAttributeGroupResponse";
265
+ const _GAR = "GetApplicationRequest";
266
+ const _GARR = "GetAssociatedResourceRequest";
267
+ const _GARRe = "GetAssociatedResourceResponse";
268
+ const _GARe = "GetApplicationResponse";
269
+ const _GARet = "GetAssociatedResource";
270
+ const _GC = "GetConfiguration";
271
+ const _GCR = "GetConfigurationResponse";
272
+ const _I = "Integrations";
273
+ const _ISE = "InternalServerException";
274
+ const _LA = "ListApplications";
275
+ const _LAAG = "ListAssociatedAttributeGroups";
276
+ const _LAAGR = "ListAssociatedAttributeGroupsRequest";
277
+ const _LAAGRi = "ListAssociatedAttributeGroupsResponse";
278
+ const _LAG = "ListAttributeGroups";
279
+ const _LAGFA = "ListAttributeGroupsForApplication";
280
+ const _LAGFAR = "ListAttributeGroupsForApplicationRequest";
281
+ const _LAGFARi = "ListAttributeGroupsForApplicationResponse";
282
+ const _LAGR = "ListAttributeGroupsRequest";
283
+ const _LAGRi = "ListAttributeGroupsResponse";
284
+ const _LAR = "ListApplicationsRequest";
285
+ const _LARR = "ListAssociatedResourcesRequest";
286
+ const _LARRi = "ListAssociatedResourcesResponse";
287
+ const _LARi = "ListApplicationsResponse";
288
+ const _LARis = "ListAssociatedResources";
289
+ const _LTFR = "ListTagsForResource";
290
+ const _LTFRR = "ListTagsForResourceRequest";
291
+ const _LTFRRi = "ListTagsForResourceResponse";
292
+ const _PC = "PutConfiguration";
293
+ const _PCR = "PutConfigurationRequest";
294
+ const _R = "Resource";
295
+ const _RD = "ResourceDetails";
296
+ const _RG = "ResourceGroup";
297
+ const _RI = "ResourceInfo";
298
+ const _RIe = "ResourceIntegrations";
299
+ const _RL = "ResourcesList";
300
+ const _RLI = "ResourcesListItem";
301
+ const _RNFE = "ResourceNotFoundException";
302
+ const _Re = "Resources";
303
+ const _SQEE = "ServiceQuotaExceededException";
304
+ const _SR = "SyncResource";
305
+ const _SRR = "SyncResourceRequest";
306
+ const _SRRy = "SyncResourceResponse";
307
+ const _TE = "ThrottlingException";
308
+ const _TQC = "TagQueryConfiguration";
309
+ const _TR = "TagResource";
310
+ const _TRR = "TagResourceRequest";
311
+ const _TRRa = "TagResourceResponse";
312
+ const _UA = "UpdateApplication";
313
+ const _UAG = "UpdateAttributeGroup";
314
+ const _UAGR = "UpdateAttributeGroupRequest";
315
+ const _UAGRp = "UpdateAttributeGroupResponse";
316
+ const _UAR = "UpdateApplicationRequest";
317
+ const _UARp = "UpdateApplicationResponse";
318
+ const _UR = "UntagResource";
319
+ const _URR = "UntagResourceRequest";
320
+ const _URRn = "UntagResourceResponse";
321
+ const _VE = "ValidationException";
322
+ const _a = "arn";
323
+ const _aA = "applicationArn";
324
+ const _aG = "attributeGroup";
325
+ const _aGA = "attributeGroupArn";
326
+ const _aGD = "attributeGroupsDetails";
327
+ const _aGt = "attributeGroups";
328
+ const _aRC = "associatedResourceCount";
329
+ const _aT = "applicationTag";
330
+ const _aTR = "applicationTagResult";
331
+ const _aTRG = "applicationTagResourceGroup";
332
+ const _aTS = "applicationTagStatus";
333
+ const _aTc = "actionTaken";
334
+ const _aTs = "associationTime";
335
+ const _ap = "application";
336
+ const _app = "applications";
337
+ const _at = "attributes";
338
+ const _c = "client";
339
+ const _cB = "createdBy";
340
+ const _cT = "creationTime";
341
+ const _cTl = "clientToken";
342
+ const _co = "configuration";
343
+ const _d = "description";
344
+ const _e = "error";
345
+ const _eM = "errorMessage";
346
+ const _h = "http";
347
+ const _hE = "httpError";
348
+ const _hQ = "httpQuery";
349
+ const _i = "id";
350
+ const _in = "integrations";
351
+ const _lUT = "lastUpdateTime";
352
+ const _m = "message";
1062
353
  const _mR = "maxResults";
354
+ const _n = "name";
1063
355
  const _nT = "nextToken";
356
+ const _o = "options";
357
+ const _r = "resources";
358
+ const _rA = "resourceArn";
359
+ const _rD = "resourceDetails";
360
+ const _rG = "resourceGroup";
361
+ const _rT = "resourceType";
1064
362
  const _rTS = "resourceTagStatus";
1065
- const _tK = "tagKeys";
363
+ const _re = "resource";
364
+ const _s = "server";
365
+ const _sC = "serviceCode";
366
+ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.servicecatalogappregistry";
367
+ const _st = "state";
368
+ const _sta = "status";
369
+ const _t = "tags";
370
+ const _tK = "tagKey";
371
+ const _tKa = "tagKeys";
372
+ const _tQC = "tagQueryConfiguration";
373
+ const _tV = "tagValue";
374
+ const n0 = "com.amazonaws.servicecatalogappregistry";
375
+ var Application = [
376
+ 3,
377
+ n0,
378
+ _A,
379
+ 0,
380
+ [_i, _a, _n, _d, _cT, _lUT, _t, _aT],
381
+ [0, 0, 0, 0, 5, 5, 128 | 0, 128 | 0],
382
+ ];
383
+ var ApplicationSummary = [3, n0, _AS, 0, [_i, _a, _n, _d, _cT, _lUT], [0, 0, 0, 0, 5, 5]];
384
+ var ApplicationTagResult = [
385
+ 3,
386
+ n0,
387
+ _ATR,
388
+ 0,
389
+ [_aTS, _eM, _r, _nT],
390
+ [0, 0, () => ResourcesList, 0],
391
+ ];
392
+ var AppRegistryConfiguration = [3, n0, _ARC, 0, [_tQC], [() => TagQueryConfiguration]];
393
+ var AssociateAttributeGroupRequest = [
394
+ 3,
395
+ n0,
396
+ _AAGR,
397
+ 0,
398
+ [_ap, _aG],
399
+ [
400
+ [0, 1],
401
+ [0, 1],
402
+ ],
403
+ ];
404
+ var AssociateAttributeGroupResponse = [3, n0, _AAGRs, 0, [_aA, _aGA], [0, 0]];
405
+ var AssociateResourceRequest = [
406
+ 3,
407
+ n0,
408
+ _ARR,
409
+ 0,
410
+ [_ap, _rT, _re, _o],
411
+ [[0, 1], [0, 1], [0, 1], 64 | 0],
412
+ ];
413
+ var AssociateResourceResponse = [3, n0, _ARRs, 0, [_aA, _rA, _o], [0, 0, 64 | 0]];
414
+ var AttributeGroup = [
415
+ 3,
416
+ n0,
417
+ _AG,
418
+ 0,
419
+ [_i, _a, _n, _d, _cT, _lUT, _t],
420
+ [0, 0, 0, 0, 5, 5, 128 | 0],
421
+ ];
422
+ var AttributeGroupDetails = [3, n0, _AGD, 0, [_i, _a, _n, _cB], [0, 0, 0, 0]];
423
+ var AttributeGroupSummary = [
424
+ 3,
425
+ n0,
426
+ _AGS,
427
+ 0,
428
+ [_i, _a, _n, _d, _cT, _lUT, _cB],
429
+ [0, 0, 0, 0, 5, 5, 0],
430
+ ];
431
+ var ConflictException = [
432
+ -3,
433
+ n0,
434
+ _CE,
435
+ {
436
+ [_e]: _c,
437
+ [_hE]: 409,
438
+ },
439
+ [_m],
440
+ [0],
441
+ ];
442
+ schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
443
+ var CreateApplicationRequest = [
444
+ 3,
445
+ n0,
446
+ _CAR,
447
+ 0,
448
+ [_n, _d, _t, _cTl],
449
+ [0, 0, 128 | 0, [0, 4]],
450
+ ];
451
+ var CreateApplicationResponse = [3, n0, _CARr, 0, [_ap], [() => Application]];
452
+ var CreateAttributeGroupRequest = [
453
+ 3,
454
+ n0,
455
+ _CAGR,
456
+ 0,
457
+ [_n, _d, _at, _t, _cTl],
458
+ [0, 0, 0, 128 | 0, [0, 4]],
459
+ ];
460
+ var CreateAttributeGroupResponse = [3, n0, _CAGRr, 0, [_aG], [() => AttributeGroup]];
461
+ var DeleteApplicationRequest = [3, n0, _DAR, 0, [_ap], [[0, 1]]];
462
+ var DeleteApplicationResponse = [3, n0, _DARe, 0, [_ap], [() => ApplicationSummary]];
463
+ var DeleteAttributeGroupRequest = [3, n0, _DAGR, 0, [_aG], [[0, 1]]];
464
+ var DeleteAttributeGroupResponse = [
465
+ 3,
466
+ n0,
467
+ _DAGRe,
468
+ 0,
469
+ [_aG],
470
+ [() => AttributeGroupSummary],
471
+ ];
472
+ var DisassociateAttributeGroupRequest = [
473
+ 3,
474
+ n0,
475
+ _DAGRi,
476
+ 0,
477
+ [_ap, _aG],
478
+ [
479
+ [0, 1],
480
+ [0, 1],
481
+ ],
482
+ ];
483
+ var DisassociateAttributeGroupResponse = [3, n0, _DAGRis, 0, [_aA, _aGA], [0, 0]];
484
+ var DisassociateResourceRequest = [
485
+ 3,
486
+ n0,
487
+ _DRR,
488
+ 0,
489
+ [_ap, _rT, _re],
490
+ [
491
+ [0, 1],
492
+ [0, 1],
493
+ [0, 1],
494
+ ],
495
+ ];
496
+ var DisassociateResourceResponse = [3, n0, _DRRi, 0, [_aA, _rA], [0, 0]];
497
+ var GetApplicationRequest = [3, n0, _GAR, 0, [_ap], [[0, 1]]];
498
+ var GetApplicationResponse = [
499
+ 3,
500
+ n0,
501
+ _GARe,
502
+ 0,
503
+ [_i, _a, _n, _d, _cT, _lUT, _aRC, _t, _in, _aT],
504
+ [0, 0, 0, 0, 5, 5, 1, 128 | 0, () => Integrations, 128 | 0],
505
+ ];
506
+ var GetAssociatedResourceRequest = [
507
+ 3,
508
+ n0,
509
+ _GARR,
510
+ 0,
511
+ [_ap, _rT, _re, _nT, _rTS, _mR],
512
+ [
513
+ [0, 1],
514
+ [0, 1],
515
+ [0, 1],
516
+ [
517
+ 0,
518
+ {
519
+ [_hQ]: _nT,
520
+ },
521
+ ],
522
+ [
523
+ 64 | 0,
524
+ {
525
+ [_hQ]: _rTS,
526
+ },
527
+ ],
528
+ [
529
+ 1,
530
+ {
531
+ [_hQ]: _mR,
532
+ },
533
+ ],
534
+ ],
535
+ ];
536
+ var GetAssociatedResourceResponse = [
537
+ 3,
538
+ n0,
539
+ _GARRe,
540
+ 0,
541
+ [_re, _o, _aTR],
542
+ [() => Resource, 64 | 0, () => ApplicationTagResult],
543
+ ];
544
+ var GetAttributeGroupRequest = [3, n0, _GAGR, 0, [_aG], [[0, 1]]];
545
+ var GetAttributeGroupResponse = [
546
+ 3,
547
+ n0,
548
+ _GAGRe,
549
+ 0,
550
+ [_i, _a, _n, _d, _at, _cT, _lUT, _t, _cB],
551
+ [0, 0, 0, 0, 0, 5, 5, 128 | 0, 0],
552
+ ];
553
+ var GetConfigurationResponse = [3, n0, _GCR, 0, [_co], [() => AppRegistryConfiguration]];
554
+ var Integrations = [
555
+ 3,
556
+ n0,
557
+ _I,
558
+ 0,
559
+ [_rG, _aTRG],
560
+ [() => ResourceGroup, () => ResourceGroup],
561
+ ];
562
+ var InternalServerException = [
563
+ -3,
564
+ n0,
565
+ _ISE,
566
+ {
567
+ [_e]: _s,
568
+ [_hE]: 500,
569
+ },
570
+ [_m],
571
+ [0],
572
+ ];
573
+ schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
574
+ var ListApplicationsRequest = [
575
+ 3,
576
+ n0,
577
+ _LAR,
578
+ 0,
579
+ [_nT, _mR],
580
+ [
581
+ [
582
+ 0,
583
+ {
584
+ [_hQ]: _nT,
585
+ },
586
+ ],
587
+ [
588
+ 1,
589
+ {
590
+ [_hQ]: _mR,
591
+ },
592
+ ],
593
+ ],
594
+ ];
595
+ var ListApplicationsResponse = [
596
+ 3,
597
+ n0,
598
+ _LARi,
599
+ 0,
600
+ [_app, _nT],
601
+ [() => ApplicationSummaries, 0],
602
+ ];
603
+ var ListAssociatedAttributeGroupsRequest = [
604
+ 3,
605
+ n0,
606
+ _LAAGR,
607
+ 0,
608
+ [_ap, _nT, _mR],
609
+ [
610
+ [0, 1],
611
+ [
612
+ 0,
613
+ {
614
+ [_hQ]: _nT,
615
+ },
616
+ ],
617
+ [
618
+ 1,
619
+ {
620
+ [_hQ]: _mR,
621
+ },
622
+ ],
623
+ ],
624
+ ];
625
+ var ListAssociatedAttributeGroupsResponse = [3, n0, _LAAGRi, 0, [_aGt, _nT], [64 | 0, 0]];
626
+ var ListAssociatedResourcesRequest = [
627
+ 3,
628
+ n0,
629
+ _LARR,
630
+ 0,
631
+ [_ap, _nT, _mR],
632
+ [
633
+ [0, 1],
634
+ [
635
+ 0,
636
+ {
637
+ [_hQ]: _nT,
638
+ },
639
+ ],
640
+ [
641
+ 1,
642
+ {
643
+ [_hQ]: _mR,
644
+ },
645
+ ],
646
+ ],
647
+ ];
648
+ var ListAssociatedResourcesResponse = [3, n0, _LARRi, 0, [_r, _nT], [() => Resources, 0]];
649
+ var ListAttributeGroupsForApplicationRequest = [
650
+ 3,
651
+ n0,
652
+ _LAGFAR,
653
+ 0,
654
+ [_ap, _nT, _mR],
655
+ [
656
+ [0, 1],
657
+ [
658
+ 0,
659
+ {
660
+ [_hQ]: _nT,
661
+ },
662
+ ],
663
+ [
664
+ 1,
665
+ {
666
+ [_hQ]: _mR,
667
+ },
668
+ ],
669
+ ],
670
+ ];
671
+ var ListAttributeGroupsForApplicationResponse = [
672
+ 3,
673
+ n0,
674
+ _LAGFARi,
675
+ 0,
676
+ [_aGD, _nT],
677
+ [() => AttributeGroupDetailsList, 0],
678
+ ];
679
+ var ListAttributeGroupsRequest = [
680
+ 3,
681
+ n0,
682
+ _LAGR,
683
+ 0,
684
+ [_nT, _mR],
685
+ [
686
+ [
687
+ 0,
688
+ {
689
+ [_hQ]: _nT,
690
+ },
691
+ ],
692
+ [
693
+ 1,
694
+ {
695
+ [_hQ]: _mR,
696
+ },
697
+ ],
698
+ ],
699
+ ];
700
+ var ListAttributeGroupsResponse = [
701
+ 3,
702
+ n0,
703
+ _LAGRi,
704
+ 0,
705
+ [_aGt, _nT],
706
+ [() => AttributeGroupSummaries, 0],
707
+ ];
708
+ var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
709
+ var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
710
+ var PutConfigurationRequest = [3, n0, _PCR, 0, [_co], [() => AppRegistryConfiguration]];
711
+ var Resource = [3, n0, _R, 0, [_n, _a, _aTs, _in], [0, 0, 5, () => ResourceIntegrations]];
712
+ var ResourceDetails = [3, n0, _RD, 0, [_tV], [0]];
713
+ var ResourceGroup = [3, n0, _RG, 0, [_st, _a, _eM], [0, 0, 0]];
714
+ var ResourceInfo = [
715
+ 3,
716
+ n0,
717
+ _RI,
718
+ 0,
719
+ [_n, _a, _rT, _rD, _o],
720
+ [0, 0, 0, () => ResourceDetails, 64 | 0],
721
+ ];
722
+ var ResourceIntegrations = [3, n0, _RIe, 0, [_rG], [() => ResourceGroup]];
723
+ var ResourceNotFoundException = [
724
+ -3,
725
+ n0,
726
+ _RNFE,
727
+ {
728
+ [_e]: _c,
729
+ [_hE]: 404,
730
+ },
731
+ [_m],
732
+ [0],
733
+ ];
734
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
735
+ var ResourcesListItem = [3, n0, _RLI, 0, [_rA, _eM, _sta, _rT], [0, 0, 0, 0]];
736
+ var ServiceQuotaExceededException = [
737
+ -3,
738
+ n0,
739
+ _SQEE,
740
+ {
741
+ [_e]: _c,
742
+ [_hE]: 402,
743
+ },
744
+ [_m],
745
+ [0],
746
+ ];
747
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
748
+ var SyncResourceRequest = [
749
+ 3,
750
+ n0,
751
+ _SRR,
752
+ 0,
753
+ [_rT, _re],
754
+ [
755
+ [0, 1],
756
+ [0, 1],
757
+ ],
758
+ ];
759
+ var SyncResourceResponse = [3, n0, _SRRy, 0, [_aA, _rA, _aTc], [0, 0, 0]];
760
+ var TagQueryConfiguration = [3, n0, _TQC, 0, [_tK], [0]];
761
+ var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _t], [[0, 1], 128 | 0]];
762
+ var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
763
+ var ThrottlingException = [
764
+ -3,
765
+ n0,
766
+ _TE,
767
+ {
768
+ [_e]: _c,
769
+ [_hE]: 429,
770
+ },
771
+ [_m, _sC],
772
+ [0, 0],
773
+ ];
774
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
775
+ var UntagResourceRequest = [
776
+ 3,
777
+ n0,
778
+ _URR,
779
+ 0,
780
+ [_rA, _tKa],
781
+ [
782
+ [0, 1],
783
+ [
784
+ 64 | 0,
785
+ {
786
+ [_hQ]: _tKa,
787
+ },
788
+ ],
789
+ ],
790
+ ];
791
+ var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
792
+ var UpdateApplicationRequest = [3, n0, _UAR, 0, [_ap, _n, _d], [[0, 1], 0, 0]];
793
+ var UpdateApplicationResponse = [3, n0, _UARp, 0, [_ap], [() => Application]];
794
+ var UpdateAttributeGroupRequest = [
795
+ 3,
796
+ n0,
797
+ _UAGR,
798
+ 0,
799
+ [_aG, _n, _d, _at],
800
+ [[0, 1], 0, 0, 0],
801
+ ];
802
+ var UpdateAttributeGroupResponse = [3, n0, _UAGRp, 0, [_aG], [() => AttributeGroup]];
803
+ var ValidationException = [
804
+ -3,
805
+ n0,
806
+ _VE,
807
+ {
808
+ [_e]: _c,
809
+ [_hE]: 400,
810
+ },
811
+ [_m],
812
+ [0],
813
+ ];
814
+ schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
815
+ var __Unit = "unit";
816
+ var ServiceCatalogAppRegistryServiceException = [
817
+ -3,
818
+ _sm,
819
+ "ServiceCatalogAppRegistryServiceException",
820
+ 0,
821
+ [],
822
+ [],
823
+ ];
824
+ schema.TypeRegistry.for(_sm).registerError(ServiceCatalogAppRegistryServiceException, ServiceCatalogAppRegistryServiceException$1);
825
+ var ApplicationSummaries = [1, n0, _ASp, 0, () => ApplicationSummary];
826
+ var AttributeGroupDetailsList = [1, n0, _AGDL, 0, () => AttributeGroupDetails];
827
+ var AttributeGroupSummaries = [1, n0, _AGSt, 0, () => AttributeGroupSummary];
828
+ var Resources = [1, n0, _Re, 0, () => ResourceInfo];
829
+ var ResourcesList = [1, n0, _RL, 0, () => ResourcesListItem];
830
+ var AssociateAttributeGroup = [
831
+ 9,
832
+ n0,
833
+ _AAG,
834
+ {
835
+ [_h]: ["PUT", "/applications/{application}/attribute-groups/{attributeGroup}", 200],
836
+ },
837
+ () => AssociateAttributeGroupRequest,
838
+ () => AssociateAttributeGroupResponse,
839
+ ];
840
+ var AssociateResource = [
841
+ 9,
842
+ n0,
843
+ _AR,
844
+ {
845
+ [_h]: ["PUT", "/applications/{application}/resources/{resourceType}/{resource}", 200],
846
+ },
847
+ () => AssociateResourceRequest,
848
+ () => AssociateResourceResponse,
849
+ ];
850
+ var CreateApplication = [
851
+ 9,
852
+ n0,
853
+ _CA,
854
+ {
855
+ [_h]: ["POST", "/applications", 201],
856
+ },
857
+ () => CreateApplicationRequest,
858
+ () => CreateApplicationResponse,
859
+ ];
860
+ var CreateAttributeGroup = [
861
+ 9,
862
+ n0,
863
+ _CAG,
864
+ {
865
+ [_h]: ["POST", "/attribute-groups", 201],
866
+ },
867
+ () => CreateAttributeGroupRequest,
868
+ () => CreateAttributeGroupResponse,
869
+ ];
870
+ var DeleteApplication = [
871
+ 9,
872
+ n0,
873
+ _DA,
874
+ {
875
+ [_h]: ["DELETE", "/applications/{application}", 200],
876
+ },
877
+ () => DeleteApplicationRequest,
878
+ () => DeleteApplicationResponse,
879
+ ];
880
+ var DeleteAttributeGroup = [
881
+ 9,
882
+ n0,
883
+ _DAG,
884
+ {
885
+ [_h]: ["DELETE", "/attribute-groups/{attributeGroup}", 200],
886
+ },
887
+ () => DeleteAttributeGroupRequest,
888
+ () => DeleteAttributeGroupResponse,
889
+ ];
890
+ var DisassociateAttributeGroup = [
891
+ 9,
892
+ n0,
893
+ _DAGi,
894
+ {
895
+ [_h]: ["DELETE", "/applications/{application}/attribute-groups/{attributeGroup}", 200],
896
+ },
897
+ () => DisassociateAttributeGroupRequest,
898
+ () => DisassociateAttributeGroupResponse,
899
+ ];
900
+ var DisassociateResource = [
901
+ 9,
902
+ n0,
903
+ _DR,
904
+ {
905
+ [_h]: ["DELETE", "/applications/{application}/resources/{resourceType}/{resource}", 200],
906
+ },
907
+ () => DisassociateResourceRequest,
908
+ () => DisassociateResourceResponse,
909
+ ];
910
+ var GetApplication = [
911
+ 9,
912
+ n0,
913
+ _GA,
914
+ {
915
+ [_h]: ["GET", "/applications/{application}", 200],
916
+ },
917
+ () => GetApplicationRequest,
918
+ () => GetApplicationResponse,
919
+ ];
920
+ var GetAssociatedResource = [
921
+ 9,
922
+ n0,
923
+ _GARet,
924
+ {
925
+ [_h]: ["GET", "/applications/{application}/resources/{resourceType}/{resource}", 200],
926
+ },
927
+ () => GetAssociatedResourceRequest,
928
+ () => GetAssociatedResourceResponse,
929
+ ];
930
+ var GetAttributeGroup = [
931
+ 9,
932
+ n0,
933
+ _GAG,
934
+ {
935
+ [_h]: ["GET", "/attribute-groups/{attributeGroup}", 200],
936
+ },
937
+ () => GetAttributeGroupRequest,
938
+ () => GetAttributeGroupResponse,
939
+ ];
940
+ var GetConfiguration = [
941
+ 9,
942
+ n0,
943
+ _GC,
944
+ {
945
+ [_h]: ["GET", "/configuration", 200],
946
+ },
947
+ () => __Unit,
948
+ () => GetConfigurationResponse,
949
+ ];
950
+ var ListApplications = [
951
+ 9,
952
+ n0,
953
+ _LA,
954
+ {
955
+ [_h]: ["GET", "/applications", 200],
956
+ },
957
+ () => ListApplicationsRequest,
958
+ () => ListApplicationsResponse,
959
+ ];
960
+ var ListAssociatedAttributeGroups = [
961
+ 9,
962
+ n0,
963
+ _LAAG,
964
+ {
965
+ [_h]: ["GET", "/applications/{application}/attribute-groups", 200],
966
+ },
967
+ () => ListAssociatedAttributeGroupsRequest,
968
+ () => ListAssociatedAttributeGroupsResponse,
969
+ ];
970
+ var ListAssociatedResources = [
971
+ 9,
972
+ n0,
973
+ _LARis,
974
+ {
975
+ [_h]: ["GET", "/applications/{application}/resources", 200],
976
+ },
977
+ () => ListAssociatedResourcesRequest,
978
+ () => ListAssociatedResourcesResponse,
979
+ ];
980
+ var ListAttributeGroups = [
981
+ 9,
982
+ n0,
983
+ _LAG,
984
+ {
985
+ [_h]: ["GET", "/attribute-groups", 200],
986
+ },
987
+ () => ListAttributeGroupsRequest,
988
+ () => ListAttributeGroupsResponse,
989
+ ];
990
+ var ListAttributeGroupsForApplication = [
991
+ 9,
992
+ n0,
993
+ _LAGFA,
994
+ {
995
+ [_h]: ["GET", "/applications/{application}/attribute-group-details", 200],
996
+ },
997
+ () => ListAttributeGroupsForApplicationRequest,
998
+ () => ListAttributeGroupsForApplicationResponse,
999
+ ];
1000
+ var ListTagsForResource = [
1001
+ 9,
1002
+ n0,
1003
+ _LTFR,
1004
+ {
1005
+ [_h]: ["GET", "/tags/{resourceArn}", 200],
1006
+ },
1007
+ () => ListTagsForResourceRequest,
1008
+ () => ListTagsForResourceResponse,
1009
+ ];
1010
+ var PutConfiguration = [
1011
+ 9,
1012
+ n0,
1013
+ _PC,
1014
+ {
1015
+ [_h]: ["PUT", "/configuration", 200],
1016
+ },
1017
+ () => PutConfigurationRequest,
1018
+ () => __Unit,
1019
+ ];
1020
+ var SyncResource = [
1021
+ 9,
1022
+ n0,
1023
+ _SR,
1024
+ {
1025
+ [_h]: ["POST", "/sync/{resourceType}/{resource}", 200],
1026
+ },
1027
+ () => SyncResourceRequest,
1028
+ () => SyncResourceResponse,
1029
+ ];
1030
+ var TagResource = [
1031
+ 9,
1032
+ n0,
1033
+ _TR,
1034
+ {
1035
+ [_h]: ["POST", "/tags/{resourceArn}", 200],
1036
+ },
1037
+ () => TagResourceRequest,
1038
+ () => TagResourceResponse,
1039
+ ];
1040
+ var UntagResource = [
1041
+ 9,
1042
+ n0,
1043
+ _UR,
1044
+ {
1045
+ [_h]: ["DELETE", "/tags/{resourceArn}", 200],
1046
+ },
1047
+ () => UntagResourceRequest,
1048
+ () => UntagResourceResponse,
1049
+ ];
1050
+ var UpdateApplication = [
1051
+ 9,
1052
+ n0,
1053
+ _UA,
1054
+ {
1055
+ [_h]: ["PATCH", "/applications/{application}", 200],
1056
+ },
1057
+ () => UpdateApplicationRequest,
1058
+ () => UpdateApplicationResponse,
1059
+ ];
1060
+ var UpdateAttributeGroup = [
1061
+ 9,
1062
+ n0,
1063
+ _UAG,
1064
+ {
1065
+ [_h]: ["PATCH", "/attribute-groups/{attributeGroup}", 200],
1066
+ },
1067
+ () => UpdateAttributeGroupRequest,
1068
+ () => UpdateAttributeGroupResponse,
1069
+ ];
1066
1070
 
1067
1071
  class AssociateAttributeGroupCommand extends smithyClient.Command
1068
1072
  .classBuilder()
1069
1073
  .ep(commonParams)
1070
1074
  .m(function (Command, cs, config, o) {
1071
- return [
1072
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1073
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1074
- ];
1075
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1075
1076
  })
1076
1077
  .s("AWS242AppRegistry", "AssociateAttributeGroup", {})
1077
1078
  .n("ServiceCatalogAppRegistryClient", "AssociateAttributeGroupCommand")
1078
- .f(void 0, void 0)
1079
- .ser(se_AssociateAttributeGroupCommand)
1080
- .de(de_AssociateAttributeGroupCommand)
1079
+ .sc(AssociateAttributeGroup)
1081
1080
  .build() {
1082
1081
  }
1083
1082
 
@@ -1085,16 +1084,11 @@ class AssociateResourceCommand extends smithyClient.Command
1085
1084
  .classBuilder()
1086
1085
  .ep(commonParams)
1087
1086
  .m(function (Command, cs, config, o) {
1088
- return [
1089
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1090
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1091
- ];
1087
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1092
1088
  })
1093
1089
  .s("AWS242AppRegistry", "AssociateResource", {})
1094
1090
  .n("ServiceCatalogAppRegistryClient", "AssociateResourceCommand")
1095
- .f(void 0, void 0)
1096
- .ser(se_AssociateResourceCommand)
1097
- .de(de_AssociateResourceCommand)
1091
+ .sc(AssociateResource)
1098
1092
  .build() {
1099
1093
  }
1100
1094
 
@@ -1102,16 +1096,11 @@ class CreateApplicationCommand extends smithyClient.Command
1102
1096
  .classBuilder()
1103
1097
  .ep(commonParams)
1104
1098
  .m(function (Command, cs, config, o) {
1105
- return [
1106
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1107
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1108
- ];
1099
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1109
1100
  })
1110
1101
  .s("AWS242AppRegistry", "CreateApplication", {})
1111
1102
  .n("ServiceCatalogAppRegistryClient", "CreateApplicationCommand")
1112
- .f(void 0, void 0)
1113
- .ser(se_CreateApplicationCommand)
1114
- .de(de_CreateApplicationCommand)
1103
+ .sc(CreateApplication)
1115
1104
  .build() {
1116
1105
  }
1117
1106
 
@@ -1119,16 +1108,11 @@ class CreateAttributeGroupCommand extends smithyClient.Command
1119
1108
  .classBuilder()
1120
1109
  .ep(commonParams)
1121
1110
  .m(function (Command, cs, config, o) {
1122
- return [
1123
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1124
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1125
- ];
1111
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1126
1112
  })
1127
1113
  .s("AWS242AppRegistry", "CreateAttributeGroup", {})
1128
1114
  .n("ServiceCatalogAppRegistryClient", "CreateAttributeGroupCommand")
1129
- .f(void 0, void 0)
1130
- .ser(se_CreateAttributeGroupCommand)
1131
- .de(de_CreateAttributeGroupCommand)
1115
+ .sc(CreateAttributeGroup)
1132
1116
  .build() {
1133
1117
  }
1134
1118
 
@@ -1136,16 +1120,11 @@ class DeleteApplicationCommand extends smithyClient.Command
1136
1120
  .classBuilder()
1137
1121
  .ep(commonParams)
1138
1122
  .m(function (Command, cs, config, o) {
1139
- return [
1140
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1141
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1142
- ];
1123
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1143
1124
  })
1144
1125
  .s("AWS242AppRegistry", "DeleteApplication", {})
1145
1126
  .n("ServiceCatalogAppRegistryClient", "DeleteApplicationCommand")
1146
- .f(void 0, void 0)
1147
- .ser(se_DeleteApplicationCommand)
1148
- .de(de_DeleteApplicationCommand)
1127
+ .sc(DeleteApplication)
1149
1128
  .build() {
1150
1129
  }
1151
1130
 
@@ -1153,16 +1132,11 @@ class DeleteAttributeGroupCommand extends smithyClient.Command
1153
1132
  .classBuilder()
1154
1133
  .ep(commonParams)
1155
1134
  .m(function (Command, cs, config, o) {
1156
- return [
1157
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1158
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1159
- ];
1135
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1160
1136
  })
1161
1137
  .s("AWS242AppRegistry", "DeleteAttributeGroup", {})
1162
1138
  .n("ServiceCatalogAppRegistryClient", "DeleteAttributeGroupCommand")
1163
- .f(void 0, void 0)
1164
- .ser(se_DeleteAttributeGroupCommand)
1165
- .de(de_DeleteAttributeGroupCommand)
1139
+ .sc(DeleteAttributeGroup)
1166
1140
  .build() {
1167
1141
  }
1168
1142
 
@@ -1170,16 +1144,11 @@ class DisassociateAttributeGroupCommand extends smithyClient.Command
1170
1144
  .classBuilder()
1171
1145
  .ep(commonParams)
1172
1146
  .m(function (Command, cs, config, o) {
1173
- return [
1174
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1175
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1176
- ];
1147
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1177
1148
  })
1178
1149
  .s("AWS242AppRegistry", "DisassociateAttributeGroup", {})
1179
1150
  .n("ServiceCatalogAppRegistryClient", "DisassociateAttributeGroupCommand")
1180
- .f(void 0, void 0)
1181
- .ser(se_DisassociateAttributeGroupCommand)
1182
- .de(de_DisassociateAttributeGroupCommand)
1151
+ .sc(DisassociateAttributeGroup)
1183
1152
  .build() {
1184
1153
  }
1185
1154
 
@@ -1187,16 +1156,11 @@ class DisassociateResourceCommand extends smithyClient.Command
1187
1156
  .classBuilder()
1188
1157
  .ep(commonParams)
1189
1158
  .m(function (Command, cs, config, o) {
1190
- return [
1191
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1192
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1193
- ];
1159
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1194
1160
  })
1195
1161
  .s("AWS242AppRegistry", "DisassociateResource", {})
1196
1162
  .n("ServiceCatalogAppRegistryClient", "DisassociateResourceCommand")
1197
- .f(void 0, void 0)
1198
- .ser(se_DisassociateResourceCommand)
1199
- .de(de_DisassociateResourceCommand)
1163
+ .sc(DisassociateResource)
1200
1164
  .build() {
1201
1165
  }
1202
1166
 
@@ -1204,16 +1168,11 @@ class GetApplicationCommand extends smithyClient.Command
1204
1168
  .classBuilder()
1205
1169
  .ep(commonParams)
1206
1170
  .m(function (Command, cs, config, o) {
1207
- return [
1208
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1209
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1210
- ];
1171
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1211
1172
  })
1212
1173
  .s("AWS242AppRegistry", "GetApplication", {})
1213
1174
  .n("ServiceCatalogAppRegistryClient", "GetApplicationCommand")
1214
- .f(void 0, void 0)
1215
- .ser(se_GetApplicationCommand)
1216
- .de(de_GetApplicationCommand)
1175
+ .sc(GetApplication)
1217
1176
  .build() {
1218
1177
  }
1219
1178
 
@@ -1221,16 +1180,11 @@ class GetAssociatedResourceCommand extends smithyClient.Command
1221
1180
  .classBuilder()
1222
1181
  .ep(commonParams)
1223
1182
  .m(function (Command, cs, config, o) {
1224
- return [
1225
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1226
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1227
- ];
1183
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1228
1184
  })
1229
1185
  .s("AWS242AppRegistry", "GetAssociatedResource", {})
1230
1186
  .n("ServiceCatalogAppRegistryClient", "GetAssociatedResourceCommand")
1231
- .f(void 0, void 0)
1232
- .ser(se_GetAssociatedResourceCommand)
1233
- .de(de_GetAssociatedResourceCommand)
1187
+ .sc(GetAssociatedResource)
1234
1188
  .build() {
1235
1189
  }
1236
1190
 
@@ -1238,16 +1192,11 @@ class GetAttributeGroupCommand extends smithyClient.Command
1238
1192
  .classBuilder()
1239
1193
  .ep(commonParams)
1240
1194
  .m(function (Command, cs, config, o) {
1241
- return [
1242
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1243
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1244
- ];
1195
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1245
1196
  })
1246
1197
  .s("AWS242AppRegistry", "GetAttributeGroup", {})
1247
1198
  .n("ServiceCatalogAppRegistryClient", "GetAttributeGroupCommand")
1248
- .f(void 0, void 0)
1249
- .ser(se_GetAttributeGroupCommand)
1250
- .de(de_GetAttributeGroupCommand)
1199
+ .sc(GetAttributeGroup)
1251
1200
  .build() {
1252
1201
  }
1253
1202
 
@@ -1255,16 +1204,11 @@ class GetConfigurationCommand extends smithyClient.Command
1255
1204
  .classBuilder()
1256
1205
  .ep(commonParams)
1257
1206
  .m(function (Command, cs, config, o) {
1258
- return [
1259
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1260
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1261
- ];
1207
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1262
1208
  })
1263
1209
  .s("AWS242AppRegistry", "GetConfiguration", {})
1264
1210
  .n("ServiceCatalogAppRegistryClient", "GetConfigurationCommand")
1265
- .f(void 0, void 0)
1266
- .ser(se_GetConfigurationCommand)
1267
- .de(de_GetConfigurationCommand)
1211
+ .sc(GetConfiguration)
1268
1212
  .build() {
1269
1213
  }
1270
1214
 
@@ -1272,16 +1216,11 @@ class ListApplicationsCommand extends smithyClient.Command
1272
1216
  .classBuilder()
1273
1217
  .ep(commonParams)
1274
1218
  .m(function (Command, cs, config, o) {
1275
- return [
1276
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1277
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1278
- ];
1219
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1279
1220
  })
1280
1221
  .s("AWS242AppRegistry", "ListApplications", {})
1281
1222
  .n("ServiceCatalogAppRegistryClient", "ListApplicationsCommand")
1282
- .f(void 0, void 0)
1283
- .ser(se_ListApplicationsCommand)
1284
- .de(de_ListApplicationsCommand)
1223
+ .sc(ListApplications)
1285
1224
  .build() {
1286
1225
  }
1287
1226
 
@@ -1289,16 +1228,11 @@ class ListAssociatedAttributeGroupsCommand extends smithyClient.Command
1289
1228
  .classBuilder()
1290
1229
  .ep(commonParams)
1291
1230
  .m(function (Command, cs, config, o) {
1292
- return [
1293
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1294
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1295
- ];
1231
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1296
1232
  })
1297
1233
  .s("AWS242AppRegistry", "ListAssociatedAttributeGroups", {})
1298
1234
  .n("ServiceCatalogAppRegistryClient", "ListAssociatedAttributeGroupsCommand")
1299
- .f(void 0, void 0)
1300
- .ser(se_ListAssociatedAttributeGroupsCommand)
1301
- .de(de_ListAssociatedAttributeGroupsCommand)
1235
+ .sc(ListAssociatedAttributeGroups)
1302
1236
  .build() {
1303
1237
  }
1304
1238
 
@@ -1306,16 +1240,11 @@ class ListAssociatedResourcesCommand extends smithyClient.Command
1306
1240
  .classBuilder()
1307
1241
  .ep(commonParams)
1308
1242
  .m(function (Command, cs, config, o) {
1309
- return [
1310
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1311
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1312
- ];
1243
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1313
1244
  })
1314
1245
  .s("AWS242AppRegistry", "ListAssociatedResources", {})
1315
1246
  .n("ServiceCatalogAppRegistryClient", "ListAssociatedResourcesCommand")
1316
- .f(void 0, void 0)
1317
- .ser(se_ListAssociatedResourcesCommand)
1318
- .de(de_ListAssociatedResourcesCommand)
1247
+ .sc(ListAssociatedResources)
1319
1248
  .build() {
1320
1249
  }
1321
1250
 
@@ -1323,16 +1252,11 @@ class ListAttributeGroupsCommand extends smithyClient.Command
1323
1252
  .classBuilder()
1324
1253
  .ep(commonParams)
1325
1254
  .m(function (Command, cs, config, o) {
1326
- return [
1327
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1328
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1329
- ];
1255
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1330
1256
  })
1331
1257
  .s("AWS242AppRegistry", "ListAttributeGroups", {})
1332
1258
  .n("ServiceCatalogAppRegistryClient", "ListAttributeGroupsCommand")
1333
- .f(void 0, void 0)
1334
- .ser(se_ListAttributeGroupsCommand)
1335
- .de(de_ListAttributeGroupsCommand)
1259
+ .sc(ListAttributeGroups)
1336
1260
  .build() {
1337
1261
  }
1338
1262
 
@@ -1340,16 +1264,11 @@ class ListAttributeGroupsForApplicationCommand extends smithyClient.Command
1340
1264
  .classBuilder()
1341
1265
  .ep(commonParams)
1342
1266
  .m(function (Command, cs, config, o) {
1343
- return [
1344
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1345
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1346
- ];
1267
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1347
1268
  })
1348
1269
  .s("AWS242AppRegistry", "ListAttributeGroupsForApplication", {})
1349
1270
  .n("ServiceCatalogAppRegistryClient", "ListAttributeGroupsForApplicationCommand")
1350
- .f(void 0, void 0)
1351
- .ser(se_ListAttributeGroupsForApplicationCommand)
1352
- .de(de_ListAttributeGroupsForApplicationCommand)
1271
+ .sc(ListAttributeGroupsForApplication)
1353
1272
  .build() {
1354
1273
  }
1355
1274
 
@@ -1357,16 +1276,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
1357
1276
  .classBuilder()
1358
1277
  .ep(commonParams)
1359
1278
  .m(function (Command, cs, config, o) {
1360
- return [
1361
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1362
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1363
- ];
1279
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1364
1280
  })
1365
1281
  .s("AWS242AppRegistry", "ListTagsForResource", {})
1366
1282
  .n("ServiceCatalogAppRegistryClient", "ListTagsForResourceCommand")
1367
- .f(void 0, void 0)
1368
- .ser(se_ListTagsForResourceCommand)
1369
- .de(de_ListTagsForResourceCommand)
1283
+ .sc(ListTagsForResource)
1370
1284
  .build() {
1371
1285
  }
1372
1286
 
@@ -1374,16 +1288,11 @@ class PutConfigurationCommand extends smithyClient.Command
1374
1288
  .classBuilder()
1375
1289
  .ep(commonParams)
1376
1290
  .m(function (Command, cs, config, o) {
1377
- return [
1378
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1379
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1380
- ];
1291
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1381
1292
  })
1382
1293
  .s("AWS242AppRegistry", "PutConfiguration", {})
1383
1294
  .n("ServiceCatalogAppRegistryClient", "PutConfigurationCommand")
1384
- .f(void 0, void 0)
1385
- .ser(se_PutConfigurationCommand)
1386
- .de(de_PutConfigurationCommand)
1295
+ .sc(PutConfiguration)
1387
1296
  .build() {
1388
1297
  }
1389
1298
 
@@ -1391,16 +1300,11 @@ class SyncResourceCommand extends smithyClient.Command
1391
1300
  .classBuilder()
1392
1301
  .ep(commonParams)
1393
1302
  .m(function (Command, cs, config, o) {
1394
- return [
1395
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1396
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1397
- ];
1303
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1398
1304
  })
1399
1305
  .s("AWS242AppRegistry", "SyncResource", {})
1400
1306
  .n("ServiceCatalogAppRegistryClient", "SyncResourceCommand")
1401
- .f(void 0, void 0)
1402
- .ser(se_SyncResourceCommand)
1403
- .de(de_SyncResourceCommand)
1307
+ .sc(SyncResource)
1404
1308
  .build() {
1405
1309
  }
1406
1310
 
@@ -1408,16 +1312,11 @@ class TagResourceCommand extends smithyClient.Command
1408
1312
  .classBuilder()
1409
1313
  .ep(commonParams)
1410
1314
  .m(function (Command, cs, config, o) {
1411
- return [
1412
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1413
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1414
- ];
1315
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1415
1316
  })
1416
1317
  .s("AWS242AppRegistry", "TagResource", {})
1417
1318
  .n("ServiceCatalogAppRegistryClient", "TagResourceCommand")
1418
- .f(void 0, void 0)
1419
- .ser(se_TagResourceCommand)
1420
- .de(de_TagResourceCommand)
1319
+ .sc(TagResource)
1421
1320
  .build() {
1422
1321
  }
1423
1322
 
@@ -1425,16 +1324,11 @@ class UntagResourceCommand extends smithyClient.Command
1425
1324
  .classBuilder()
1426
1325
  .ep(commonParams)
1427
1326
  .m(function (Command, cs, config, o) {
1428
- return [
1429
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1430
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1431
- ];
1327
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1432
1328
  })
1433
1329
  .s("AWS242AppRegistry", "UntagResource", {})
1434
1330
  .n("ServiceCatalogAppRegistryClient", "UntagResourceCommand")
1435
- .f(void 0, void 0)
1436
- .ser(se_UntagResourceCommand)
1437
- .de(de_UntagResourceCommand)
1331
+ .sc(UntagResource)
1438
1332
  .build() {
1439
1333
  }
1440
1334
 
@@ -1442,16 +1336,11 @@ class UpdateApplicationCommand extends smithyClient.Command
1442
1336
  .classBuilder()
1443
1337
  .ep(commonParams)
1444
1338
  .m(function (Command, cs, config, o) {
1445
- return [
1446
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1447
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1448
- ];
1339
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1449
1340
  })
1450
1341
  .s("AWS242AppRegistry", "UpdateApplication", {})
1451
1342
  .n("ServiceCatalogAppRegistryClient", "UpdateApplicationCommand")
1452
- .f(void 0, void 0)
1453
- .ser(se_UpdateApplicationCommand)
1454
- .de(de_UpdateApplicationCommand)
1343
+ .sc(UpdateApplication)
1455
1344
  .build() {
1456
1345
  }
1457
1346
 
@@ -1459,16 +1348,11 @@ class UpdateAttributeGroupCommand extends smithyClient.Command
1459
1348
  .classBuilder()
1460
1349
  .ep(commonParams)
1461
1350
  .m(function (Command, cs, config, o) {
1462
- return [
1463
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1464
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1465
- ];
1351
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1466
1352
  })
1467
1353
  .s("AWS242AppRegistry", "UpdateAttributeGroup", {})
1468
1354
  .n("ServiceCatalogAppRegistryClient", "UpdateAttributeGroupCommand")
1469
- .f(void 0, void 0)
1470
- .ser(se_UpdateAttributeGroupCommand)
1471
- .de(de_UpdateAttributeGroupCommand)
1355
+ .sc(UpdateAttributeGroup)
1472
1356
  .build() {
1473
1357
  }
1474
1358
 
@@ -1524,7 +1408,7 @@ exports.ApplicationTagStatus = ApplicationTagStatus;
1524
1408
  exports.AssociateAttributeGroupCommand = AssociateAttributeGroupCommand;
1525
1409
  exports.AssociateResourceCommand = AssociateResourceCommand;
1526
1410
  exports.AssociationOption = AssociationOption;
1527
- exports.ConflictException = ConflictException;
1411
+ exports.ConflictException = ConflictException$1;
1528
1412
  exports.CreateApplicationCommand = CreateApplicationCommand;
1529
1413
  exports.CreateAttributeGroupCommand = CreateAttributeGroupCommand;
1530
1414
  exports.DeleteApplicationCommand = DeleteApplicationCommand;
@@ -1535,7 +1419,7 @@ exports.GetApplicationCommand = GetApplicationCommand;
1535
1419
  exports.GetAssociatedResourceCommand = GetAssociatedResourceCommand;
1536
1420
  exports.GetAttributeGroupCommand = GetAttributeGroupCommand;
1537
1421
  exports.GetConfigurationCommand = GetConfigurationCommand;
1538
- exports.InternalServerException = InternalServerException;
1422
+ exports.InternalServerException = InternalServerException$1;
1539
1423
  exports.ListApplicationsCommand = ListApplicationsCommand;
1540
1424
  exports.ListAssociatedAttributeGroupsCommand = ListAssociatedAttributeGroupsCommand;
1541
1425
  exports.ListAssociatedResourcesCommand = ListAssociatedResourcesCommand;
@@ -1545,20 +1429,20 @@ exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1545
1429
  exports.PutConfigurationCommand = PutConfigurationCommand;
1546
1430
  exports.ResourceGroupState = ResourceGroupState;
1547
1431
  exports.ResourceItemStatus = ResourceItemStatus;
1548
- exports.ResourceNotFoundException = ResourceNotFoundException;
1432
+ exports.ResourceNotFoundException = ResourceNotFoundException$1;
1549
1433
  exports.ResourceType = ResourceType;
1550
1434
  exports.ServiceCatalogAppRegistry = ServiceCatalogAppRegistry;
1551
1435
  exports.ServiceCatalogAppRegistryClient = ServiceCatalogAppRegistryClient;
1552
- exports.ServiceCatalogAppRegistryServiceException = ServiceCatalogAppRegistryServiceException;
1553
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
1436
+ exports.ServiceCatalogAppRegistryServiceException = ServiceCatalogAppRegistryServiceException$1;
1437
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1554
1438
  exports.SyncAction = SyncAction;
1555
1439
  exports.SyncResourceCommand = SyncResourceCommand;
1556
1440
  exports.TagResourceCommand = TagResourceCommand;
1557
- exports.ThrottlingException = ThrottlingException;
1441
+ exports.ThrottlingException = ThrottlingException$1;
1558
1442
  exports.UntagResourceCommand = UntagResourceCommand;
1559
1443
  exports.UpdateApplicationCommand = UpdateApplicationCommand;
1560
1444
  exports.UpdateAttributeGroupCommand = UpdateAttributeGroupCommand;
1561
- exports.ValidationException = ValidationException;
1445
+ exports.ValidationException = ValidationException$1;
1562
1446
  exports.paginateListApplications = paginateListApplications;
1563
1447
  exports.paginateListAssociatedAttributeGroups = paginateListAssociatedAttributeGroups;
1564
1448
  exports.paginateListAssociatedResources = paginateListAssociatedResources;