@aws-sdk/client-marketplace-catalog 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 (37) hide show
  1. package/dist-cjs/index.js +1104 -740
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/MarketplaceCatalogClient.js +2 -0
  4. package/dist-es/commands/BatchDescribeEntitiesCommand.js +3 -9
  5. package/dist-es/commands/CancelChangeSetCommand.js +3 -9
  6. package/dist-es/commands/DeleteResourcePolicyCommand.js +3 -9
  7. package/dist-es/commands/DescribeChangeSetCommand.js +3 -9
  8. package/dist-es/commands/DescribeEntityCommand.js +3 -9
  9. package/dist-es/commands/GetResourcePolicyCommand.js +3 -9
  10. package/dist-es/commands/ListChangeSetsCommand.js +3 -9
  11. package/dist-es/commands/ListEntitiesCommand.js +3 -9
  12. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  13. package/dist-es/commands/PutResourcePolicyCommand.js +3 -9
  14. package/dist-es/commands/StartChangeSetCommand.js +3 -9
  15. package/dist-es/commands/TagResourceCommand.js +3 -9
  16. package/dist-es/commands/UntagResourceCommand.js +3 -9
  17. package/dist-es/models/models_0.js +0 -40
  18. package/dist-es/runtimeConfig.shared.js +2 -0
  19. package/dist-es/schemas/schemas_0.js +1098 -0
  20. package/dist-types/MarketplaceCatalogClient.d.ts +10 -1
  21. package/dist-types/models/models_0.d.ts +8 -2
  22. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  23. package/dist-types/runtimeConfig.d.ts +1 -0
  24. package/dist-types/runtimeConfig.native.d.ts +1 -0
  25. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  26. package/dist-types/schemas/schemas_0.d.ts +187 -0
  27. package/dist-types/ts3.4/MarketplaceCatalogClient.d.ts +4 -0
  28. package/dist-types/ts3.4/models/models_0.d.ts +0 -2
  29. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  33. package/dist-types/ts3.4/schemas/schemas_0.d.ts +193 -0
  34. package/package.json +33 -34
  35. package/dist-es/protocols/Aws_restJson1.js +0 -593
  36. package/dist-types/protocols/Aws_restJson1.d.ts +0 -119
  37. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -161
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 MarketplaceCatalogClient 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,14 +110,14 @@ class MarketplaceCatalogClient extends smithyClient.Client {
111
110
  }
112
111
  }
113
112
 
114
- class MarketplaceCatalogServiceException extends smithyClient.ServiceException {
113
+ let MarketplaceCatalogServiceException$1 = class MarketplaceCatalogServiceException extends smithyClient.ServiceException {
115
114
  constructor(options) {
116
115
  super(options);
117
116
  Object.setPrototypeOf(this, MarketplaceCatalogServiceException.prototype);
118
117
  }
119
- }
118
+ };
120
119
 
121
- class AccessDeniedException extends MarketplaceCatalogServiceException {
120
+ let AccessDeniedException$1 = class AccessDeniedException extends MarketplaceCatalogServiceException$1 {
122
121
  name = "AccessDeniedException";
123
122
  $fault = "client";
124
123
  Message;
@@ -131,7 +130,7 @@ class AccessDeniedException extends MarketplaceCatalogServiceException {
131
130
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
132
131
  this.Message = opts.Message;
133
132
  }
134
- }
133
+ };
135
134
  const AmiProductVisibilityString = {
136
135
  Draft: "Draft",
137
136
  Limited: "Limited",
@@ -148,7 +147,7 @@ const SortOrder = {
148
147
  ASCENDING: "ASCENDING",
149
148
  DESCENDING: "DESCENDING",
150
149
  };
151
- class InternalServiceException extends MarketplaceCatalogServiceException {
150
+ let InternalServiceException$1 = class InternalServiceException extends MarketplaceCatalogServiceException$1 {
152
151
  name = "InternalServiceException";
153
152
  $fault = "server";
154
153
  Message;
@@ -161,8 +160,8 @@ class InternalServiceException extends MarketplaceCatalogServiceException {
161
160
  Object.setPrototypeOf(this, InternalServiceException.prototype);
162
161
  this.Message = opts.Message;
163
162
  }
164
- }
165
- class ThrottlingException extends MarketplaceCatalogServiceException {
163
+ };
164
+ let ThrottlingException$1 = class ThrottlingException extends MarketplaceCatalogServiceException$1 {
166
165
  name = "ThrottlingException";
167
166
  $fault = "client";
168
167
  Message;
@@ -175,8 +174,8 @@ class ThrottlingException extends MarketplaceCatalogServiceException {
175
174
  Object.setPrototypeOf(this, ThrottlingException.prototype);
176
175
  this.Message = opts.Message;
177
176
  }
178
- }
179
- class ValidationException extends MarketplaceCatalogServiceException {
177
+ };
178
+ let ValidationException$1 = class ValidationException extends MarketplaceCatalogServiceException$1 {
180
179
  name = "ValidationException";
181
180
  $fault = "client";
182
181
  Message;
@@ -189,8 +188,8 @@ class ValidationException extends MarketplaceCatalogServiceException {
189
188
  Object.setPrototypeOf(this, ValidationException.prototype);
190
189
  this.Message = opts.Message;
191
190
  }
192
- }
193
- class ResourceInUseException extends MarketplaceCatalogServiceException {
191
+ };
192
+ let ResourceInUseException$1 = class ResourceInUseException extends MarketplaceCatalogServiceException$1 {
194
193
  name = "ResourceInUseException";
195
194
  $fault = "client";
196
195
  Message;
@@ -203,8 +202,8 @@ class ResourceInUseException extends MarketplaceCatalogServiceException {
203
202
  Object.setPrototypeOf(this, ResourceInUseException.prototype);
204
203
  this.Message = opts.Message;
205
204
  }
206
- }
207
- class ResourceNotFoundException extends MarketplaceCatalogServiceException {
205
+ };
206
+ let ResourceNotFoundException$1 = class ResourceNotFoundException extends MarketplaceCatalogServiceException$1 {
208
207
  name = "ResourceNotFoundException";
209
208
  $fault = "client";
210
209
  Message;
@@ -217,7 +216,7 @@ class ResourceNotFoundException extends MarketplaceCatalogServiceException {
217
216
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
218
217
  this.Message = opts.Message;
219
218
  }
220
- }
219
+ };
221
220
  const FailureCode = {
222
221
  ClientError: "CLIENT_ERROR",
223
222
  ServerFault: "SERVER_FAULT",
@@ -233,7 +232,7 @@ const ChangeStatus = {
233
232
  PREPARING: "PREPARING",
234
233
  SUCCEEDED: "SUCCEEDED",
235
234
  };
236
- class ResourceNotSupportedException extends MarketplaceCatalogServiceException {
235
+ let ResourceNotSupportedException$1 = class ResourceNotSupportedException extends MarketplaceCatalogServiceException$1 {
237
236
  name = "ResourceNotSupportedException";
238
237
  $fault = "client";
239
238
  Message;
@@ -246,7 +245,7 @@ class ResourceNotSupportedException extends MarketplaceCatalogServiceException {
246
245
  Object.setPrototypeOf(this, ResourceNotSupportedException.prototype);
247
246
  this.Message = opts.Message;
248
247
  }
249
- }
248
+ };
250
249
  const ContainerProductVisibilityString = {
251
250
  Draft: "Draft",
252
251
  Limited: "Limited",
@@ -287,26 +286,6 @@ const SaaSProductVisibilityString = {
287
286
  Public: "Public",
288
287
  Restricted: "Restricted",
289
288
  };
290
- exports.EntityTypeFilters = void 0;
291
- (function (EntityTypeFilters) {
292
- EntityTypeFilters.visit = (value, visitor) => {
293
- if (value.DataProductFilters !== undefined)
294
- return visitor.DataProductFilters(value.DataProductFilters);
295
- if (value.SaaSProductFilters !== undefined)
296
- return visitor.SaaSProductFilters(value.SaaSProductFilters);
297
- if (value.AmiProductFilters !== undefined)
298
- return visitor.AmiProductFilters(value.AmiProductFilters);
299
- if (value.OfferFilters !== undefined)
300
- return visitor.OfferFilters(value.OfferFilters);
301
- if (value.ContainerProductFilters !== undefined)
302
- return visitor.ContainerProductFilters(value.ContainerProductFilters);
303
- if (value.ResaleAuthorizationFilters !== undefined)
304
- return visitor.ResaleAuthorizationFilters(value.ResaleAuthorizationFilters);
305
- if (value.MachineLearningProductFilters !== undefined)
306
- return visitor.MachineLearningProductFilters(value.MachineLearningProductFilters);
307
- return visitor._(value.$unknown[0], value.$unknown[1]);
308
- };
309
- })(exports.EntityTypeFilters || (exports.EntityTypeFilters = {}));
310
289
  const ContainerProductSortBy = {
311
290
  CompatibleAWSServices: "CompatibleAWSServices",
312
291
  EntityId: "EntityId",
@@ -360,31 +339,11 @@ const SaaSProductSortBy = {
360
339
  ProductTitle: "ProductTitle",
361
340
  Visibility: "Visibility",
362
341
  };
363
- exports.EntityTypeSort = void 0;
364
- (function (EntityTypeSort) {
365
- EntityTypeSort.visit = (value, visitor) => {
366
- if (value.DataProductSort !== undefined)
367
- return visitor.DataProductSort(value.DataProductSort);
368
- if (value.SaaSProductSort !== undefined)
369
- return visitor.SaaSProductSort(value.SaaSProductSort);
370
- if (value.AmiProductSort !== undefined)
371
- return visitor.AmiProductSort(value.AmiProductSort);
372
- if (value.OfferSort !== undefined)
373
- return visitor.OfferSort(value.OfferSort);
374
- if (value.ContainerProductSort !== undefined)
375
- return visitor.ContainerProductSort(value.ContainerProductSort);
376
- if (value.ResaleAuthorizationSort !== undefined)
377
- return visitor.ResaleAuthorizationSort(value.ResaleAuthorizationSort);
378
- if (value.MachineLearningProductSort !== undefined)
379
- return visitor.MachineLearningProductSort(value.MachineLearningProductSort);
380
- return visitor._(value.$unknown[0], value.$unknown[1]);
381
- };
382
- })(exports.EntityTypeSort || (exports.EntityTypeSort = {}));
383
342
  const OwnershipType = {
384
343
  SELF: "SELF",
385
344
  SHARED: "SHARED",
386
345
  };
387
- class ServiceQuotaExceededException extends MarketplaceCatalogServiceException {
346
+ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends MarketplaceCatalogServiceException$1 {
388
347
  name = "ServiceQuotaExceededException";
389
348
  $fault = "client";
390
349
  Message;
@@ -397,609 +356,1074 @@ class ServiceQuotaExceededException extends MarketplaceCatalogServiceException {
397
356
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
398
357
  this.Message = opts.Message;
399
358
  }
400
- }
401
-
402
- const se_BatchDescribeEntitiesCommand = async (input, context) => {
403
- const b = core.requestBuilder(input, context);
404
- const headers = {
405
- "content-type": "application/json",
406
- };
407
- b.bp("/BatchDescribeEntities");
408
- let body;
409
- body = JSON.stringify(smithyClient.take(input, {
410
- EntityRequestList: (_) => smithyClient._json(_),
411
- }));
412
- b.m("POST").h(headers).b(body);
413
- return b.build();
414
- };
415
- const se_CancelChangeSetCommand = async (input, context) => {
416
- const b = core.requestBuilder(input, context);
417
- const headers = {};
418
- b.bp("/CancelChangeSet");
419
- const query = smithyClient.map({
420
- [_c]: [, smithyClient.expectNonNull(input[_C], `Catalog`)],
421
- [_cSI]: [, smithyClient.expectNonNull(input[_CSI], `ChangeSetId`)],
422
- });
423
- let body;
424
- b.m("PATCH").h(headers).q(query).b(body);
425
- return b.build();
426
- };
427
- const se_DeleteResourcePolicyCommand = async (input, context) => {
428
- const b = core.requestBuilder(input, context);
429
- const headers = {};
430
- b.bp("/DeleteResourcePolicy");
431
- const query = smithyClient.map({
432
- [_rA]: [, smithyClient.expectNonNull(input[_RA], `ResourceArn`)],
433
- });
434
- let body;
435
- b.m("DELETE").h(headers).q(query).b(body);
436
- return b.build();
437
- };
438
- const se_DescribeChangeSetCommand = async (input, context) => {
439
- const b = core.requestBuilder(input, context);
440
- const headers = {};
441
- b.bp("/DescribeChangeSet");
442
- const query = smithyClient.map({
443
- [_c]: [, smithyClient.expectNonNull(input[_C], `Catalog`)],
444
- [_cSI]: [, smithyClient.expectNonNull(input[_CSI], `ChangeSetId`)],
445
- });
446
- let body;
447
- b.m("GET").h(headers).q(query).b(body);
448
- return b.build();
449
- };
450
- const se_DescribeEntityCommand = async (input, context) => {
451
- const b = core.requestBuilder(input, context);
452
- const headers = {};
453
- b.bp("/DescribeEntity");
454
- const query = smithyClient.map({
455
- [_c]: [, smithyClient.expectNonNull(input[_C], `Catalog`)],
456
- [_eI]: [, smithyClient.expectNonNull(input[_EI], `EntityId`)],
457
- });
458
- let body;
459
- b.m("GET").h(headers).q(query).b(body);
460
- return b.build();
461
- };
462
- const se_GetResourcePolicyCommand = async (input, context) => {
463
- const b = core.requestBuilder(input, context);
464
- const headers = {};
465
- b.bp("/GetResourcePolicy");
466
- const query = smithyClient.map({
467
- [_rA]: [, smithyClient.expectNonNull(input[_RA], `ResourceArn`)],
468
- });
469
- let body;
470
- b.m("GET").h(headers).q(query).b(body);
471
- return b.build();
472
- };
473
- const se_ListChangeSetsCommand = async (input, context) => {
474
- const b = core.requestBuilder(input, context);
475
- const headers = {
476
- "content-type": "application/json",
477
- };
478
- b.bp("/ListChangeSets");
479
- let body;
480
- body = JSON.stringify(smithyClient.take(input, {
481
- Catalog: [],
482
- FilterList: (_) => smithyClient._json(_),
483
- MaxResults: [],
484
- NextToken: [],
485
- Sort: (_) => smithyClient._json(_),
486
- }));
487
- b.m("POST").h(headers).b(body);
488
- return b.build();
489
- };
490
- const se_ListEntitiesCommand = async (input, context) => {
491
- const b = core.requestBuilder(input, context);
492
- const headers = {
493
- "content-type": "application/json",
494
- };
495
- b.bp("/ListEntities");
496
- let body;
497
- body = JSON.stringify(smithyClient.take(input, {
498
- Catalog: [],
499
- EntityType: [],
500
- EntityTypeFilters: (_) => smithyClient._json(_),
501
- EntityTypeSort: (_) => smithyClient._json(_),
502
- FilterList: (_) => smithyClient._json(_),
503
- MaxResults: [],
504
- NextToken: [],
505
- OwnershipType: [],
506
- Sort: (_) => smithyClient._json(_),
507
- }));
508
- b.m("POST").h(headers).b(body);
509
- return b.build();
510
- };
511
- const se_ListTagsForResourceCommand = async (input, context) => {
512
- const b = core.requestBuilder(input, context);
513
- const headers = {
514
- "content-type": "application/json",
515
- };
516
- b.bp("/ListTagsForResource");
517
- let body;
518
- body = JSON.stringify(smithyClient.take(input, {
519
- ResourceArn: [],
520
- }));
521
- b.m("POST").h(headers).b(body);
522
- return b.build();
523
- };
524
- const se_PutResourcePolicyCommand = async (input, context) => {
525
- const b = core.requestBuilder(input, context);
526
- const headers = {
527
- "content-type": "application/json",
528
- };
529
- b.bp("/PutResourcePolicy");
530
- let body;
531
- body = JSON.stringify(smithyClient.take(input, {
532
- Policy: [],
533
- ResourceArn: [],
534
- }));
535
- b.m("POST").h(headers).b(body);
536
- return b.build();
537
- };
538
- const se_StartChangeSetCommand = async (input, context) => {
539
- const b = core.requestBuilder(input, context);
540
- const headers = {
541
- "content-type": "application/json",
542
- };
543
- b.bp("/StartChangeSet");
544
- let body;
545
- body = JSON.stringify(smithyClient.take(input, {
546
- Catalog: [],
547
- ChangeSet: (_) => se_RequestedChangeList(_),
548
- ChangeSetName: [],
549
- ChangeSetTags: (_) => smithyClient._json(_),
550
- ClientRequestToken: [true, (_) => _ ?? uuid.v4()],
551
- Intent: [],
552
- }));
553
- b.m("POST").h(headers).b(body);
554
- return b.build();
555
- };
556
- const se_TagResourceCommand = async (input, context) => {
557
- const b = core.requestBuilder(input, context);
558
- const headers = {
559
- "content-type": "application/json",
560
- };
561
- b.bp("/TagResource");
562
- let body;
563
- body = JSON.stringify(smithyClient.take(input, {
564
- ResourceArn: [],
565
- Tags: (_) => smithyClient._json(_),
566
- }));
567
- b.m("POST").h(headers).b(body);
568
- return b.build();
569
- };
570
- const se_UntagResourceCommand = async (input, context) => {
571
- const b = core.requestBuilder(input, context);
572
- const headers = {
573
- "content-type": "application/json",
574
- };
575
- b.bp("/UntagResource");
576
- let body;
577
- body = JSON.stringify(smithyClient.take(input, {
578
- ResourceArn: [],
579
- TagKeys: (_) => smithyClient._json(_),
580
- }));
581
- b.m("POST").h(headers).b(body);
582
- return b.build();
583
- };
584
- const de_BatchDescribeEntitiesCommand = async (output, context) => {
585
- if (output.statusCode !== 200 && output.statusCode >= 300) {
586
- return de_CommandError(output, context);
587
- }
588
- const contents = smithyClient.map({
589
- $metadata: deserializeMetadata(output),
590
- });
591
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
592
- const doc = smithyClient.take(data, {
593
- EntityDetails: (_) => de_EntityDetails(_),
594
- Errors: smithyClient._json,
595
- });
596
- Object.assign(contents, doc);
597
- return contents;
598
- };
599
- const de_CancelChangeSetCommand = async (output, context) => {
600
- if (output.statusCode !== 200 && output.statusCode >= 300) {
601
- return de_CommandError(output, context);
602
- }
603
- const contents = smithyClient.map({
604
- $metadata: deserializeMetadata(output),
605
- });
606
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
607
- const doc = smithyClient.take(data, {
608
- ChangeSetArn: smithyClient.expectString,
609
- ChangeSetId: smithyClient.expectString,
610
- });
611
- Object.assign(contents, doc);
612
- return contents;
613
- };
614
- const de_DeleteResourcePolicyCommand = async (output, context) => {
615
- if (output.statusCode !== 200 && output.statusCode >= 300) {
616
- return de_CommandError(output, context);
617
- }
618
- const contents = smithyClient.map({
619
- $metadata: deserializeMetadata(output),
620
- });
621
- await smithyClient.collectBody(output.body, context);
622
- return contents;
623
- };
624
- const de_DescribeChangeSetCommand = async (output, context) => {
625
- if (output.statusCode !== 200 && output.statusCode >= 300) {
626
- return de_CommandError(output, context);
627
- }
628
- const contents = smithyClient.map({
629
- $metadata: deserializeMetadata(output),
630
- });
631
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
632
- const doc = smithyClient.take(data, {
633
- ChangeSet: (_) => de_ChangeSetDescription(_),
634
- ChangeSetArn: smithyClient.expectString,
635
- ChangeSetId: smithyClient.expectString,
636
- ChangeSetName: smithyClient.expectString,
637
- EndTime: smithyClient.expectString,
638
- FailureCode: smithyClient.expectString,
639
- FailureDescription: smithyClient.expectString,
640
- Intent: smithyClient.expectString,
641
- StartTime: smithyClient.expectString,
642
- Status: smithyClient.expectString,
643
- });
644
- Object.assign(contents, doc);
645
- return contents;
646
- };
647
- const de_DescribeEntityCommand = async (output, context) => {
648
- if (output.statusCode !== 200 && output.statusCode >= 300) {
649
- return de_CommandError(output, context);
650
- }
651
- const contents = smithyClient.map({
652
- $metadata: deserializeMetadata(output),
653
- });
654
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
655
- const doc = smithyClient.take(data, {
656
- Details: smithyClient.expectString,
657
- DetailsDocument: (_) => de_JsonDocumentType(_),
658
- EntityArn: smithyClient.expectString,
659
- EntityIdentifier: smithyClient.expectString,
660
- EntityType: smithyClient.expectString,
661
- LastModifiedDate: smithyClient.expectString,
662
- });
663
- Object.assign(contents, doc);
664
- return contents;
665
- };
666
- const de_GetResourcePolicyCommand = async (output, context) => {
667
- if (output.statusCode !== 200 && output.statusCode >= 300) {
668
- return de_CommandError(output, context);
669
- }
670
- const contents = smithyClient.map({
671
- $metadata: deserializeMetadata(output),
672
- });
673
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
674
- const doc = smithyClient.take(data, {
675
- Policy: smithyClient.expectString,
676
- });
677
- Object.assign(contents, doc);
678
- return contents;
679
359
  };
680
- const de_ListChangeSetsCommand = async (output, context) => {
681
- if (output.statusCode !== 200 && output.statusCode >= 300) {
682
- return de_CommandError(output, context);
683
- }
684
- const contents = smithyClient.map({
685
- $metadata: deserializeMetadata(output),
686
- });
687
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
688
- const doc = smithyClient.take(data, {
689
- ChangeSetSummaryList: smithyClient._json,
690
- NextToken: smithyClient.expectString,
691
- });
692
- Object.assign(contents, doc);
693
- return contents;
694
- };
695
- const de_ListEntitiesCommand = async (output, context) => {
696
- if (output.statusCode !== 200 && output.statusCode >= 300) {
697
- return de_CommandError(output, context);
698
- }
699
- const contents = smithyClient.map({
700
- $metadata: deserializeMetadata(output),
701
- });
702
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
703
- const doc = smithyClient.take(data, {
704
- EntitySummaryList: smithyClient._json,
705
- NextToken: smithyClient.expectString,
706
- });
707
- Object.assign(contents, doc);
708
- return contents;
709
- };
710
- const de_ListTagsForResourceCommand = async (output, context) => {
711
- if (output.statusCode !== 200 && output.statusCode >= 300) {
712
- return de_CommandError(output, context);
713
- }
714
- const contents = smithyClient.map({
715
- $metadata: deserializeMetadata(output),
716
- });
717
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
718
- const doc = smithyClient.take(data, {
719
- ResourceArn: smithyClient.expectString,
720
- Tags: smithyClient._json,
721
- });
722
- Object.assign(contents, doc);
723
- return contents;
724
- };
725
- const de_PutResourcePolicyCommand = async (output, context) => {
726
- if (output.statusCode !== 200 && output.statusCode >= 300) {
727
- return de_CommandError(output, context);
728
- }
729
- const contents = smithyClient.map({
730
- $metadata: deserializeMetadata(output),
731
- });
732
- await smithyClient.collectBody(output.body, context);
733
- return contents;
734
- };
735
- const de_StartChangeSetCommand = async (output, context) => {
736
- if (output.statusCode !== 200 && output.statusCode >= 300) {
737
- return de_CommandError(output, context);
738
- }
739
- const contents = smithyClient.map({
740
- $metadata: deserializeMetadata(output),
741
- });
742
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
743
- const doc = smithyClient.take(data, {
744
- ChangeSetArn: smithyClient.expectString,
745
- ChangeSetId: smithyClient.expectString,
746
- });
747
- Object.assign(contents, doc);
748
- return contents;
749
- };
750
- const de_TagResourceCommand = async (output, context) => {
751
- if (output.statusCode !== 200 && output.statusCode >= 300) {
752
- return de_CommandError(output, context);
753
- }
754
- const contents = smithyClient.map({
755
- $metadata: deserializeMetadata(output),
756
- });
757
- await smithyClient.collectBody(output.body, context);
758
- return contents;
759
- };
760
- const de_UntagResourceCommand = async (output, context) => {
761
- if (output.statusCode !== 200 && output.statusCode >= 300) {
762
- return de_CommandError(output, context);
763
- }
764
- const contents = smithyClient.map({
765
- $metadata: deserializeMetadata(output),
766
- });
767
- await smithyClient.collectBody(output.body, context);
768
- return contents;
769
- };
770
- const de_CommandError = async (output, context) => {
771
- const parsedOutput = {
772
- ...output,
773
- body: await core$1.parseJsonErrorBody(output.body, context),
774
- };
775
- const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
776
- switch (errorCode) {
777
- case "AccessDeniedException":
778
- case "com.amazonaws.marketplacecatalog#AccessDeniedException":
779
- throw await de_AccessDeniedExceptionRes(parsedOutput);
780
- case "InternalServiceException":
781
- case "com.amazonaws.marketplacecatalog#InternalServiceException":
782
- throw await de_InternalServiceExceptionRes(parsedOutput);
783
- case "ThrottlingException":
784
- case "com.amazonaws.marketplacecatalog#ThrottlingException":
785
- throw await de_ThrottlingExceptionRes(parsedOutput);
786
- case "ValidationException":
787
- case "com.amazonaws.marketplacecatalog#ValidationException":
788
- throw await de_ValidationExceptionRes(parsedOutput);
789
- case "ResourceInUseException":
790
- case "com.amazonaws.marketplacecatalog#ResourceInUseException":
791
- throw await de_ResourceInUseExceptionRes(parsedOutput);
792
- case "ResourceNotFoundException":
793
- case "com.amazonaws.marketplacecatalog#ResourceNotFoundException":
794
- throw await de_ResourceNotFoundExceptionRes(parsedOutput);
795
- case "ResourceNotSupportedException":
796
- case "com.amazonaws.marketplacecatalog#ResourceNotSupportedException":
797
- throw await de_ResourceNotSupportedExceptionRes(parsedOutput);
798
- case "ServiceQuotaExceededException":
799
- case "com.amazonaws.marketplacecatalog#ServiceQuotaExceededException":
800
- throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
801
- default:
802
- const parsedBody = parsedOutput.body;
803
- return throwDefaultError({
804
- output,
805
- parsedBody,
806
- errorCode,
807
- });
808
- }
809
- };
810
- const throwDefaultError = smithyClient.withBaseException(MarketplaceCatalogServiceException);
811
- const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
812
- const contents = smithyClient.map({});
813
- const data = parsedOutput.body;
814
- const doc = smithyClient.take(data, {
815
- Message: smithyClient.expectString,
816
- });
817
- Object.assign(contents, doc);
818
- const exception = new AccessDeniedException({
819
- $metadata: deserializeMetadata(parsedOutput),
820
- ...contents,
821
- });
822
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
823
- };
824
- const de_InternalServiceExceptionRes = async (parsedOutput, context) => {
825
- const contents = smithyClient.map({});
826
- const data = parsedOutput.body;
827
- const doc = smithyClient.take(data, {
828
- Message: smithyClient.expectString,
829
- });
830
- Object.assign(contents, doc);
831
- const exception = new InternalServiceException({
832
- $metadata: deserializeMetadata(parsedOutput),
833
- ...contents,
834
- });
835
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
836
- };
837
- const de_ResourceInUseExceptionRes = async (parsedOutput, context) => {
838
- const contents = smithyClient.map({});
839
- const data = parsedOutput.body;
840
- const doc = smithyClient.take(data, {
841
- Message: smithyClient.expectString,
842
- });
843
- Object.assign(contents, doc);
844
- const exception = new ResourceInUseException({
845
- $metadata: deserializeMetadata(parsedOutput),
846
- ...contents,
847
- });
848
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
849
- };
850
- const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
851
- const contents = smithyClient.map({});
852
- const data = parsedOutput.body;
853
- const doc = smithyClient.take(data, {
854
- Message: smithyClient.expectString,
855
- });
856
- Object.assign(contents, doc);
857
- const exception = new ResourceNotFoundException({
858
- $metadata: deserializeMetadata(parsedOutput),
859
- ...contents,
860
- });
861
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
862
- };
863
- const de_ResourceNotSupportedExceptionRes = async (parsedOutput, context) => {
864
- const contents = smithyClient.map({});
865
- const data = parsedOutput.body;
866
- const doc = smithyClient.take(data, {
867
- Message: smithyClient.expectString,
868
- });
869
- Object.assign(contents, doc);
870
- const exception = new ResourceNotSupportedException({
871
- $metadata: deserializeMetadata(parsedOutput),
872
- ...contents,
873
- });
874
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
875
- };
876
- const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
877
- const contents = smithyClient.map({});
878
- const data = parsedOutput.body;
879
- const doc = smithyClient.take(data, {
880
- Message: smithyClient.expectString,
881
- });
882
- Object.assign(contents, doc);
883
- const exception = new ServiceQuotaExceededException({
884
- $metadata: deserializeMetadata(parsedOutput),
885
- ...contents,
886
- });
887
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
888
- };
889
- const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
890
- const contents = smithyClient.map({});
891
- const data = parsedOutput.body;
892
- const doc = smithyClient.take(data, {
893
- Message: smithyClient.expectString,
894
- });
895
- Object.assign(contents, doc);
896
- const exception = new ThrottlingException({
897
- $metadata: deserializeMetadata(parsedOutput),
898
- ...contents,
899
- });
900
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
901
- };
902
- const de_ValidationExceptionRes = async (parsedOutput, context) => {
903
- const contents = smithyClient.map({});
904
- const data = parsedOutput.body;
905
- const doc = smithyClient.take(data, {
906
- Message: smithyClient.expectString,
907
- });
908
- Object.assign(contents, doc);
909
- const exception = new ValidationException({
910
- $metadata: deserializeMetadata(parsedOutput),
911
- ...contents,
912
- });
913
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
914
- };
915
- const se_Change = (input, context) => {
916
- return smithyClient.take(input, {
917
- ChangeName: [],
918
- ChangeType: [],
919
- Details: [],
920
- DetailsDocument: (_) => se_JsonDocumentType(_),
921
- Entity: smithyClient._json,
922
- EntityTags: smithyClient._json,
923
- });
924
- };
925
- const se_JsonDocumentType = (input, context) => {
926
- return input;
927
- };
928
- const se_RequestedChangeList = (input, context) => {
929
- return input
930
- .filter((e) => e != null)
931
- .map((entry) => {
932
- return se_Change(entry);
933
- });
934
- };
935
- const de_ChangeSetDescription = (output, context) => {
936
- const retVal = (output || [])
937
- .filter((e) => e != null)
938
- .map((entry) => {
939
- return de_ChangeSummary(entry);
940
- });
941
- return retVal;
942
- };
943
- const de_ChangeSummary = (output, context) => {
944
- return smithyClient.take(output, {
945
- ChangeName: smithyClient.expectString,
946
- ChangeType: smithyClient.expectString,
947
- Details: smithyClient.expectString,
948
- DetailsDocument: (_) => de_JsonDocumentType(_),
949
- Entity: smithyClient._json,
950
- ErrorDetailList: smithyClient._json,
951
- });
952
- };
953
- const de_EntityDetail = (output, context) => {
954
- return smithyClient.take(output, {
955
- DetailsDocument: (_) => de_JsonDocumentType(_),
956
- EntityArn: smithyClient.expectString,
957
- EntityIdentifier: smithyClient.expectString,
958
- EntityType: smithyClient.expectString,
959
- LastModifiedDate: smithyClient.expectString,
960
- });
961
- };
962
- const de_EntityDetails = (output, context) => {
963
- return Object.entries(output).reduce((acc, [key, value]) => {
964
- if (value === null) {
965
- return acc;
966
- }
967
- acc[key] = de_EntityDetail(value);
968
- return acc;
969
- }, {});
970
- };
971
- const de_JsonDocumentType = (output, context) => {
972
- return output;
973
- };
974
- const deserializeMetadata = (output) => ({
975
- httpStatusCode: output.statusCode,
976
- requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
977
- extendedRequestId: output.headers["x-amz-id-2"],
978
- cfId: output.headers["x-amz-cf-id"],
979
- });
360
+
361
+ const _ADE = "AccessDeniedException";
362
+ const _AED = "AvailabilityEndDate";
363
+ const _APEIF = "AmiProductEntityIdFilter";
364
+ const _APF = "AmiProductFilters";
365
+ const _APLMDF = "AmiProductLastModifiedDateFilter";
366
+ const _APLMDFDR = "AmiProductLastModifiedDateFilterDateRange";
367
+ const _APS = "AmiProductSort";
368
+ const _APSm = "AmiProductSummary";
369
+ const _APTF = "AmiProductTitleFilter";
370
+ const _APVF = "AmiProductVisibilityFilter";
371
+ const _AV = "AfterValue";
372
+ const _BA = "BuyerAccounts";
373
+ const _BDE = "BatchDescribeEntities";
374
+ const _BDED = "BatchDescribeErrorDetail";
375
+ const _BDER = "BatchDescribeEntitiesRequest";
376
+ const _BDERa = "BatchDescribeEntitiesResponse";
377
+ const _BV = "BeforeValue";
980
378
  const _C = "Catalog";
379
+ const _CCS = "CancelChangeSet";
380
+ const _CCSR = "CancelChangeSetRequest";
381
+ const _CCSRa = "CancelChangeSetResponse";
382
+ const _CD = "CreatedDate";
383
+ const _CN = "ChangeName";
384
+ const _CPEIF = "ContainerProductEntityIdFilter";
385
+ const _CPF = "ContainerProductFilters";
386
+ const _CPLMDF = "ContainerProductLastModifiedDateFilter";
387
+ const _CPLMDFDR = "ContainerProductLastModifiedDateFilterDateRange";
388
+ const _CPS = "ContainerProductSort";
389
+ const _CPSo = "ContainerProductSummary";
390
+ const _CPTF = "ContainerProductTitleFilter";
391
+ const _CPVF = "ContainerProductVisibilityFilter";
392
+ const _CRT = "ClientRequestToken";
393
+ const _CS = "ChangeSummary";
394
+ const _CSA = "ChangeSetArn";
395
+ const _CSD = "ChangeSetDescription";
981
396
  const _CSI = "ChangeSetId";
397
+ const _CSN = "ChangeSetName";
398
+ const _CSSL = "ChangeSetSummaryList";
399
+ const _CSSLI = "ChangeSetSummaryListItem";
400
+ const _CST = "ChangeSetTags";
401
+ const _CSh = "ChangeSet";
402
+ const _CT = "ChangeType";
403
+ const _Ch = "Change";
404
+ const _D = "Details";
405
+ const _DCS = "DescribeChangeSet";
406
+ const _DCSR = "DescribeChangeSetRequest";
407
+ const _DCSRe = "DescribeChangeSetResponse";
408
+ const _DD = "DetailsDocument";
409
+ const _DE = "DescribeEntity";
410
+ const _DER = "DescribeEntityRequest";
411
+ const _DERe = "DescribeEntityResponse";
412
+ const _DPEIF = "DataProductEntityIdFilter";
413
+ const _DPF = "DataProductFilters";
414
+ const _DPLMDF = "DataProductLastModifiedDateFilter";
415
+ const _DPLMDFDR = "DataProductLastModifiedDateFilterDateRange";
416
+ const _DPS = "DataProductSort";
417
+ const _DPSa = "DataProductSummary";
418
+ const _DPTF = "DataProductTitleFilter";
419
+ const _DPVF = "DataProductVisibilityFilter";
420
+ const _DR = "DateRange";
421
+ const _DRP = "DeleteResourcePolicy";
422
+ const _DRPR = "DeleteResourcePolicyRequest";
423
+ const _DRPRe = "DeleteResourcePolicyResponse";
424
+ const _E = "Errors";
425
+ const _EA = "EntityArn";
426
+ const _EC = "ErrorCode";
427
+ const _ED = "EntityDetails";
428
+ const _EDL = "ErrorDetailList";
429
+ const _EDn = "EntityDetail";
430
+ const _EDr = "ErrorDetail";
982
431
  const _EI = "EntityId";
432
+ const _EIL = "EntityIdList";
433
+ const _EIn = "EntityIdentifier";
434
+ const _EM = "ErrorMessage";
435
+ const _ER = "EntityRequest";
436
+ const _ERL = "EntityRequestList";
437
+ const _ES = "EntitySummary";
438
+ const _ESL = "EntitySummaryList";
439
+ const _ET = "EntityTags";
440
+ const _ETF = "EntityTypeFilters";
441
+ const _ETS = "EntityTypeSort";
442
+ const _ETn = "EndTime";
443
+ const _ETnt = "EntityType";
444
+ const _En = "Entity";
445
+ const _F = "Filter";
446
+ const _FC = "FailureCode";
447
+ const _FD = "FailureDescription";
448
+ const _FL = "FilterList";
449
+ const _GRP = "GetResourcePolicy";
450
+ const _GRPR = "GetResourcePolicyRequest";
451
+ const _GRPRe = "GetResourcePolicyResponse";
452
+ const _I = "Intent";
453
+ const _ISE = "InternalServiceException";
454
+ const _Id = "Identifier";
455
+ const _K = "Key";
456
+ const _LCS = "ListChangeSets";
457
+ const _LCSR = "ListChangeSetsRequest";
458
+ const _LCSRi = "ListChangeSetsResponse";
459
+ const _LE = "ListEntities";
460
+ const _LER = "ListEntitiesRequest";
461
+ const _LERi = "ListEntitiesResponse";
462
+ const _LMD = "LastModifiedDate";
463
+ const _LTFR = "ListTagsForResource";
464
+ const _LTFRR = "ListTagsForResourceRequest";
465
+ const _LTFRRi = "ListTagsForResourceResponse";
466
+ const _M = "Message";
467
+ const _MAI = "ManufacturerAccountId";
468
+ const _MLN = "ManufacturerLegalName";
469
+ const _MLPEIF = "MachineLearningProductEntityIdFilter";
470
+ const _MLPF = "MachineLearningProductFilters";
471
+ const _MLPLMDF = "MachineLearningProductLastModifiedDateFilter";
472
+ const _MLPLMDFDR = "MachineLearningProductLastModifiedDateFilterDateRange";
473
+ const _MLPS = "MachineLearningProductSummary";
474
+ const _MLPSa = "MachineLearningProductSort";
475
+ const _MLPTF = "MachineLearningProductTitleFilter";
476
+ const _MLPVF = "MachineLearningProductVisibilityFilter";
477
+ const _MR = "MaxResults";
478
+ const _N = "Name";
479
+ const _NT = "NextToken";
480
+ const _OAEDF = "OfferAvailabilityEndDateFilter";
481
+ const _OAEDFDR = "OfferAvailabilityEndDateFilterDateRange";
482
+ const _OBAF = "OfferBuyerAccountsFilter";
483
+ const _OEIF = "OfferEntityIdFilter";
484
+ const _OES = "OfferExtendedStatus";
485
+ const _OF = "OfferFilters";
486
+ const _OLMDF = "OfferLastModifiedDateFilter";
487
+ const _OLMDFDR = "OfferLastModifiedDateFilterDateRange";
488
+ const _ONF = "OfferNameFilter";
489
+ const _OPIF = "OfferProductIdFilter";
490
+ const _ORAIF = "OfferResaleAuthorizationIdFilter";
491
+ const _ORDF = "OfferReleaseDateFilter";
492
+ const _ORDFDR = "OfferReleaseDateFilterDateRange";
493
+ const _OS = "OfferSummary";
494
+ const _OSF = "OfferStateFilter";
495
+ const _OSf = "OfferSort";
496
+ const _OT = "OwnershipType";
497
+ const _OTF = "OfferTargetingFilter";
498
+ const _P = "Policy";
499
+ const _PI = "ProductId";
500
+ const _PN = "ProductName";
501
+ const _PRP = "PutResourcePolicy";
502
+ const _PRPR = "PutResourcePolicyRequest";
503
+ const _PRPRu = "PutResourcePolicyResponse";
504
+ const _PT = "ProductTitle";
983
505
  const _RA = "ResourceArn";
984
- const _c = "catalog";
506
+ const _RAAEDF = "ResaleAuthorizationAvailabilityEndDateFilter";
507
+ const _RAAEDFDR = "ResaleAuthorizationAvailabilityEndDateFilterDateRange";
508
+ const _RACDF = "ResaleAuthorizationCreatedDateFilter";
509
+ const _RACDFDR = "ResaleAuthorizationCreatedDateFilterDateRange";
510
+ const _RAEIF = "ResaleAuthorizationEntityIdFilter";
511
+ const _RAF = "ResaleAuthorizationFilters";
512
+ const _RAI = "ResaleAuthorizationId";
513
+ const _RAID = "ResellerAccountID";
514
+ const _RALMDF = "ResaleAuthorizationLastModifiedDateFilter";
515
+ const _RALMDFDR = "ResaleAuthorizationLastModifiedDateFilterDateRange";
516
+ const _RAMAIF = "ResaleAuthorizationManufacturerAccountIdFilter";
517
+ const _RAMLNF = "ResaleAuthorizationManufacturerLegalNameFilter";
518
+ const _RANF = "ResaleAuthorizationNameFilter";
519
+ const _RAOESF = "ResaleAuthorizationOfferExtendedStatusFilter";
520
+ const _RAPIF = "ResaleAuthorizationProductIdFilter";
521
+ const _RAPNF = "ResaleAuthorizationProductNameFilter";
522
+ const _RARAIDF = "ResaleAuthorizationResellerAccountIDFilter";
523
+ const _RARLNF = "ResaleAuthorizationResellerLegalNameFilter";
524
+ const _RAS = "ResaleAuthorizationSummary";
525
+ const _RASF = "ResaleAuthorizationStatusFilter";
526
+ const _RASe = "ResaleAuthorizationSort";
527
+ const _RCL = "RequestedChangeList";
528
+ const _RD = "ReleaseDate";
529
+ const _RIUE = "ResourceInUseException";
530
+ const _RLN = "ResellerLegalName";
531
+ const _RNFE = "ResourceNotFoundException";
532
+ const _RNSE = "ResourceNotSupportedException";
533
+ const _S = "Status";
534
+ const _SB = "SortBy";
535
+ const _SCS = "StartChangeSet";
536
+ const _SCSR = "StartChangeSetRequest";
537
+ const _SCSRt = "StartChangeSetResponse";
538
+ const _SO = "SortOrder";
539
+ const _SQEE = "ServiceQuotaExceededException";
540
+ const _SSPEIF = "SaaSProductEntityIdFilter";
541
+ const _SSPF = "SaaSProductFilters";
542
+ const _SSPLMDF = "SaaSProductLastModifiedDateFilter";
543
+ const _SSPLMDFDR = "SaaSProductLastModifiedDateFilterDateRange";
544
+ const _SSPS = "SaaSProductSummary";
545
+ const _SSPSa = "SaaSProductSort";
546
+ const _SSPTF = "SaaSProductTitleFilter";
547
+ const _SSPVF = "SaaSProductVisibilityFilter";
548
+ const _ST = "StartTime";
549
+ const _So = "Sort";
550
+ const _St = "State";
551
+ const _T = "Type";
552
+ const _TE = "ThrottlingException";
553
+ const _TK = "TagKeys";
554
+ const _TL = "TagList";
555
+ const _TR = "TagResource";
556
+ const _TRR = "TagResourceRequest";
557
+ const _TRRa = "TagResourceResponse";
558
+ const _Ta = "Tags";
559
+ const _Tag = "Tag";
560
+ const _Tar = "Targeting";
561
+ const _UR = "UntagResource";
562
+ const _URR = "UntagResourceRequest";
563
+ const _URRn = "UntagResourceResponse";
564
+ const _V = "Visibility";
565
+ const _VE = "ValidationException";
566
+ const _VL = "ValueList";
567
+ const _Va = "Value";
568
+ const _WCV = "WildCardValue";
569
+ const _c = "client";
985
570
  const _cSI = "changeSetId";
571
+ const _ca = "catalog";
572
+ const _e = "error";
986
573
  const _eI = "entityId";
574
+ const _h = "http";
575
+ const _hE = "httpError";
576
+ const _hQ = "httpQuery";
987
577
  const _rA = "resourceArn";
578
+ const _s = "server";
579
+ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.marketplacecatalog";
580
+ const n0 = "com.amazonaws.marketplacecatalog";
581
+ var AccessDeniedException = [
582
+ -3,
583
+ n0,
584
+ _ADE,
585
+ {
586
+ [_e]: _c,
587
+ [_hE]: 403,
588
+ },
589
+ [_M],
590
+ [0],
591
+ ];
592
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
593
+ var AmiProductEntityIdFilter = [3, n0, _APEIF, 0, [_VL], [64 | 0]];
594
+ var AmiProductFilters = [
595
+ 3,
596
+ n0,
597
+ _APF,
598
+ 0,
599
+ [_EI, _LMD, _PT, _V],
600
+ [
601
+ () => AmiProductEntityIdFilter,
602
+ () => AmiProductLastModifiedDateFilter,
603
+ () => AmiProductTitleFilter,
604
+ () => AmiProductVisibilityFilter,
605
+ ],
606
+ ];
607
+ var AmiProductLastModifiedDateFilter = [
608
+ 3,
609
+ n0,
610
+ _APLMDF,
611
+ 0,
612
+ [_DR],
613
+ [() => AmiProductLastModifiedDateFilterDateRange],
614
+ ];
615
+ var AmiProductLastModifiedDateFilterDateRange = [3, n0, _APLMDFDR, 0, [_AV, _BV], [0, 0]];
616
+ var AmiProductSort = [3, n0, _APS, 0, [_SB, _SO], [0, 0]];
617
+ var AmiProductSummary = [3, n0, _APSm, 0, [_PT, _V], [0, 0]];
618
+ var AmiProductTitleFilter = [3, n0, _APTF, 0, [_VL, _WCV], [64 | 0, 0]];
619
+ var AmiProductVisibilityFilter = [3, n0, _APVF, 0, [_VL], [64 | 0]];
620
+ var BatchDescribeEntitiesRequest = [3, n0, _BDER, 0, [_ERL], [() => EntityRequestList]];
621
+ var BatchDescribeEntitiesResponse = [
622
+ 3,
623
+ n0,
624
+ _BDERa,
625
+ 0,
626
+ [_ED, _E],
627
+ [() => EntityDetails, () => Errors],
628
+ ];
629
+ var BatchDescribeErrorDetail = [3, n0, _BDED, 0, [_EC, _EM], [0, 0]];
630
+ var CancelChangeSetRequest = [
631
+ 3,
632
+ n0,
633
+ _CCSR,
634
+ 0,
635
+ [_C, _CSI],
636
+ [
637
+ [
638
+ 0,
639
+ {
640
+ [_hQ]: _ca,
641
+ },
642
+ ],
643
+ [
644
+ 0,
645
+ {
646
+ [_hQ]: _cSI,
647
+ },
648
+ ],
649
+ ],
650
+ ];
651
+ var CancelChangeSetResponse = [3, n0, _CCSRa, 0, [_CSI, _CSA], [0, 0]];
652
+ var Change = [
653
+ 3,
654
+ n0,
655
+ _Ch,
656
+ 0,
657
+ [_CT, _En, _ET, _D, _DD, _CN],
658
+ [0, () => Entity, () => TagList, 0, 15, 0],
659
+ ];
660
+ var ChangeSetSummaryListItem = [
661
+ 3,
662
+ n0,
663
+ _CSSLI,
664
+ 0,
665
+ [_CSI, _CSA, _CSN, _ST, _ETn, _S, _EIL, _FC],
666
+ [0, 0, 0, 0, 0, 0, 64 | 0, 0],
667
+ ];
668
+ var ChangeSummary = [
669
+ 3,
670
+ n0,
671
+ _CS,
672
+ 0,
673
+ [_CT, _En, _D, _DD, _EDL, _CN],
674
+ [0, () => Entity, 0, 15, () => ErrorDetailList, 0],
675
+ ];
676
+ var ContainerProductEntityIdFilter = [3, n0, _CPEIF, 0, [_VL], [64 | 0]];
677
+ var ContainerProductFilters = [
678
+ 3,
679
+ n0,
680
+ _CPF,
681
+ 0,
682
+ [_EI, _LMD, _PT, _V],
683
+ [
684
+ () => ContainerProductEntityIdFilter,
685
+ () => ContainerProductLastModifiedDateFilter,
686
+ () => ContainerProductTitleFilter,
687
+ () => ContainerProductVisibilityFilter,
688
+ ],
689
+ ];
690
+ var ContainerProductLastModifiedDateFilter = [
691
+ 3,
692
+ n0,
693
+ _CPLMDF,
694
+ 0,
695
+ [_DR],
696
+ [() => ContainerProductLastModifiedDateFilterDateRange],
697
+ ];
698
+ var ContainerProductLastModifiedDateFilterDateRange = [
699
+ 3,
700
+ n0,
701
+ _CPLMDFDR,
702
+ 0,
703
+ [_AV, _BV],
704
+ [0, 0],
705
+ ];
706
+ var ContainerProductSort = [3, n0, _CPS, 0, [_SB, _SO], [0, 0]];
707
+ var ContainerProductSummary = [3, n0, _CPSo, 0, [_PT, _V], [0, 0]];
708
+ var ContainerProductTitleFilter = [3, n0, _CPTF, 0, [_VL, _WCV], [64 | 0, 0]];
709
+ var ContainerProductVisibilityFilter = [3, n0, _CPVF, 0, [_VL], [64 | 0]];
710
+ var DataProductEntityIdFilter = [3, n0, _DPEIF, 0, [_VL], [64 | 0]];
711
+ var DataProductFilters = [
712
+ 3,
713
+ n0,
714
+ _DPF,
715
+ 0,
716
+ [_EI, _PT, _V, _LMD],
717
+ [
718
+ () => DataProductEntityIdFilter,
719
+ () => DataProductTitleFilter,
720
+ () => DataProductVisibilityFilter,
721
+ () => DataProductLastModifiedDateFilter,
722
+ ],
723
+ ];
724
+ var DataProductLastModifiedDateFilter = [
725
+ 3,
726
+ n0,
727
+ _DPLMDF,
728
+ 0,
729
+ [_DR],
730
+ [() => DataProductLastModifiedDateFilterDateRange],
731
+ ];
732
+ var DataProductLastModifiedDateFilterDateRange = [
733
+ 3,
734
+ n0,
735
+ _DPLMDFDR,
736
+ 0,
737
+ [_AV, _BV],
738
+ [0, 0],
739
+ ];
740
+ var DataProductSort = [3, n0, _DPS, 0, [_SB, _SO], [0, 0]];
741
+ var DataProductSummary = [3, n0, _DPSa, 0, [_PT, _V], [0, 0]];
742
+ var DataProductTitleFilter = [3, n0, _DPTF, 0, [_VL, _WCV], [64 | 0, 0]];
743
+ var DataProductVisibilityFilter = [3, n0, _DPVF, 0, [_VL], [64 | 0]];
744
+ var DeleteResourcePolicyRequest = [
745
+ 3,
746
+ n0,
747
+ _DRPR,
748
+ 0,
749
+ [_RA],
750
+ [
751
+ [
752
+ 0,
753
+ {
754
+ [_hQ]: _rA,
755
+ },
756
+ ],
757
+ ],
758
+ ];
759
+ var DeleteResourcePolicyResponse = [3, n0, _DRPRe, 0, [], []];
760
+ var DescribeChangeSetRequest = [
761
+ 3,
762
+ n0,
763
+ _DCSR,
764
+ 0,
765
+ [_C, _CSI],
766
+ [
767
+ [
768
+ 0,
769
+ {
770
+ [_hQ]: _ca,
771
+ },
772
+ ],
773
+ [
774
+ 0,
775
+ {
776
+ [_hQ]: _cSI,
777
+ },
778
+ ],
779
+ ],
780
+ ];
781
+ var DescribeChangeSetResponse = [
782
+ 3,
783
+ n0,
784
+ _DCSRe,
785
+ 0,
786
+ [_CSI, _CSA, _CSN, _I, _ST, _ETn, _S, _FC, _FD, _CSh],
787
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, () => ChangeSetDescription],
788
+ ];
789
+ var DescribeEntityRequest = [
790
+ 3,
791
+ n0,
792
+ _DER,
793
+ 0,
794
+ [_C, _EI],
795
+ [
796
+ [
797
+ 0,
798
+ {
799
+ [_hQ]: _ca,
800
+ },
801
+ ],
802
+ [
803
+ 0,
804
+ {
805
+ [_hQ]: _eI,
806
+ },
807
+ ],
808
+ ],
809
+ ];
810
+ var DescribeEntityResponse = [
811
+ 3,
812
+ n0,
813
+ _DERe,
814
+ 0,
815
+ [_ETnt, _EIn, _EA, _LMD, _D, _DD],
816
+ [0, 0, 0, 0, 0, 15],
817
+ ];
818
+ var Entity = [3, n0, _En, 0, [_T, _Id], [0, 0]];
819
+ var EntityDetail = [3, n0, _EDn, 0, [_ETnt, _EA, _EIn, _LMD, _DD], [0, 0, 0, 0, 15]];
820
+ var EntityRequest = [3, n0, _ER, 0, [_C, _EI], [0, 0]];
821
+ var EntitySummary = [
822
+ 3,
823
+ n0,
824
+ _ES,
825
+ 0,
826
+ [_N, _ETnt, _EI, _EA, _LMD, _V, _APSm, _CPSo, _DPSa, _SSPS, _OS, _RAS, _MLPS],
827
+ [
828
+ 0,
829
+ 0,
830
+ 0,
831
+ 0,
832
+ 0,
833
+ 0,
834
+ () => AmiProductSummary,
835
+ () => ContainerProductSummary,
836
+ () => DataProductSummary,
837
+ () => SaaSProductSummary,
838
+ () => OfferSummary,
839
+ () => ResaleAuthorizationSummary,
840
+ () => MachineLearningProductSummary,
841
+ ],
842
+ ];
843
+ var ErrorDetail = [3, n0, _EDr, 0, [_EC, _EM], [0, 0]];
844
+ var Filter = [3, n0, _F, 0, [_N, _VL], [0, 64 | 0]];
845
+ var GetResourcePolicyRequest = [
846
+ 3,
847
+ n0,
848
+ _GRPR,
849
+ 0,
850
+ [_RA],
851
+ [
852
+ [
853
+ 0,
854
+ {
855
+ [_hQ]: _rA,
856
+ },
857
+ ],
858
+ ],
859
+ ];
860
+ var GetResourcePolicyResponse = [3, n0, _GRPRe, 0, [_P], [0]];
861
+ var InternalServiceException = [
862
+ -3,
863
+ n0,
864
+ _ISE,
865
+ {
866
+ [_e]: _s,
867
+ [_hE]: 500,
868
+ },
869
+ [_M],
870
+ [0],
871
+ ];
872
+ schema.TypeRegistry.for(n0).registerError(InternalServiceException, InternalServiceException$1);
873
+ var ListChangeSetsRequest = [
874
+ 3,
875
+ n0,
876
+ _LCSR,
877
+ 0,
878
+ [_C, _FL, _So, _MR, _NT],
879
+ [0, () => FilterList, () => Sort, 1, 0],
880
+ ];
881
+ var ListChangeSetsResponse = [
882
+ 3,
883
+ n0,
884
+ _LCSRi,
885
+ 0,
886
+ [_CSSL, _NT],
887
+ [() => ChangeSetSummaryList, 0],
888
+ ];
889
+ var ListEntitiesRequest = [
890
+ 3,
891
+ n0,
892
+ _LER,
893
+ 0,
894
+ [_C, _ETnt, _FL, _So, _NT, _MR, _OT, _ETF, _ETS],
895
+ [0, 0, () => FilterList, () => Sort, 0, 1, 0, () => EntityTypeFilters, () => EntityTypeSort],
896
+ ];
897
+ var ListEntitiesResponse = [3, n0, _LERi, 0, [_ESL, _NT], [() => EntitySummaryList, 0]];
898
+ var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RA], [0]];
899
+ var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_RA, _Ta], [0, () => TagList]];
900
+ var MachineLearningProductEntityIdFilter = [3, n0, _MLPEIF, 0, [_VL], [64 | 0]];
901
+ var MachineLearningProductFilters = [
902
+ 3,
903
+ n0,
904
+ _MLPF,
905
+ 0,
906
+ [_EI, _LMD, _PT, _V],
907
+ [
908
+ () => MachineLearningProductEntityIdFilter,
909
+ () => MachineLearningProductLastModifiedDateFilter,
910
+ () => MachineLearningProductTitleFilter,
911
+ () => MachineLearningProductVisibilityFilter,
912
+ ],
913
+ ];
914
+ var MachineLearningProductLastModifiedDateFilter = [
915
+ 3,
916
+ n0,
917
+ _MLPLMDF,
918
+ 0,
919
+ [_DR],
920
+ [() => MachineLearningProductLastModifiedDateFilterDateRange],
921
+ ];
922
+ var MachineLearningProductLastModifiedDateFilterDateRange = [
923
+ 3,
924
+ n0,
925
+ _MLPLMDFDR,
926
+ 0,
927
+ [_AV, _BV],
928
+ [0, 0],
929
+ ];
930
+ var MachineLearningProductSort = [3, n0, _MLPSa, 0, [_SB, _SO], [0, 0]];
931
+ var MachineLearningProductSummary = [3, n0, _MLPS, 0, [_PT, _V], [0, 0]];
932
+ var MachineLearningProductTitleFilter = [3, n0, _MLPTF, 0, [_VL, _WCV], [64 | 0, 0]];
933
+ var MachineLearningProductVisibilityFilter = [3, n0, _MLPVF, 0, [_VL], [64 | 0]];
934
+ var OfferAvailabilityEndDateFilter = [
935
+ 3,
936
+ n0,
937
+ _OAEDF,
938
+ 0,
939
+ [_DR],
940
+ [() => OfferAvailabilityEndDateFilterDateRange],
941
+ ];
942
+ var OfferAvailabilityEndDateFilterDateRange = [3, n0, _OAEDFDR, 0, [_AV, _BV], [0, 0]];
943
+ var OfferBuyerAccountsFilter = [3, n0, _OBAF, 0, [_WCV], [0]];
944
+ var OfferEntityIdFilter = [3, n0, _OEIF, 0, [_VL], [64 | 0]];
945
+ var OfferFilters = [
946
+ 3,
947
+ n0,
948
+ _OF,
949
+ 0,
950
+ [_EI, _N, _PI, _RAI, _RD, _AED, _BA, _St, _Tar, _LMD],
951
+ [
952
+ () => OfferEntityIdFilter,
953
+ () => OfferNameFilter,
954
+ () => OfferProductIdFilter,
955
+ () => OfferResaleAuthorizationIdFilter,
956
+ () => OfferReleaseDateFilter,
957
+ () => OfferAvailabilityEndDateFilter,
958
+ () => OfferBuyerAccountsFilter,
959
+ () => OfferStateFilter,
960
+ () => OfferTargetingFilter,
961
+ () => OfferLastModifiedDateFilter,
962
+ ],
963
+ ];
964
+ var OfferLastModifiedDateFilter = [
965
+ 3,
966
+ n0,
967
+ _OLMDF,
968
+ 0,
969
+ [_DR],
970
+ [() => OfferLastModifiedDateFilterDateRange],
971
+ ];
972
+ var OfferLastModifiedDateFilterDateRange = [3, n0, _OLMDFDR, 0, [_AV, _BV], [0, 0]];
973
+ var OfferNameFilter = [3, n0, _ONF, 0, [_VL, _WCV], [64 | 0, 0]];
974
+ var OfferProductIdFilter = [3, n0, _OPIF, 0, [_VL], [64 | 0]];
975
+ var OfferReleaseDateFilter = [
976
+ 3,
977
+ n0,
978
+ _ORDF,
979
+ 0,
980
+ [_DR],
981
+ [() => OfferReleaseDateFilterDateRange],
982
+ ];
983
+ var OfferReleaseDateFilterDateRange = [3, n0, _ORDFDR, 0, [_AV, _BV], [0, 0]];
984
+ var OfferResaleAuthorizationIdFilter = [3, n0, _ORAIF, 0, [_VL], [64 | 0]];
985
+ var OfferSort = [3, n0, _OSf, 0, [_SB, _SO], [0, 0]];
986
+ var OfferStateFilter = [3, n0, _OSF, 0, [_VL], [64 | 0]];
987
+ var OfferSummary = [
988
+ 3,
989
+ n0,
990
+ _OS,
991
+ 0,
992
+ [_N, _PI, _RAI, _RD, _AED, _BA, _St, _Tar],
993
+ [0, 0, 0, 0, 0, 64 | 0, 0, 64 | 0],
994
+ ];
995
+ var OfferTargetingFilter = [3, n0, _OTF, 0, [_VL], [64 | 0]];
996
+ var PutResourcePolicyRequest = [3, n0, _PRPR, 0, [_RA, _P], [0, 0]];
997
+ var PutResourcePolicyResponse = [3, n0, _PRPRu, 0, [], []];
998
+ var ResaleAuthorizationAvailabilityEndDateFilter = [
999
+ 3,
1000
+ n0,
1001
+ _RAAEDF,
1002
+ 0,
1003
+ [_DR, _VL],
1004
+ [() => ResaleAuthorizationAvailabilityEndDateFilterDateRange, 64 | 0],
1005
+ ];
1006
+ var ResaleAuthorizationAvailabilityEndDateFilterDateRange = [
1007
+ 3,
1008
+ n0,
1009
+ _RAAEDFDR,
1010
+ 0,
1011
+ [_AV, _BV],
1012
+ [0, 0],
1013
+ ];
1014
+ var ResaleAuthorizationCreatedDateFilter = [
1015
+ 3,
1016
+ n0,
1017
+ _RACDF,
1018
+ 0,
1019
+ [_DR, _VL],
1020
+ [() => ResaleAuthorizationCreatedDateFilterDateRange, 64 | 0],
1021
+ ];
1022
+ var ResaleAuthorizationCreatedDateFilterDateRange = [
1023
+ 3,
1024
+ n0,
1025
+ _RACDFDR,
1026
+ 0,
1027
+ [_AV, _BV],
1028
+ [0, 0],
1029
+ ];
1030
+ var ResaleAuthorizationEntityIdFilter = [3, n0, _RAEIF, 0, [_VL], [64 | 0]];
1031
+ var ResaleAuthorizationFilters = [
1032
+ 3,
1033
+ n0,
1034
+ _RAF,
1035
+ 0,
1036
+ [_EI, _N, _PI, _CD, _AED, _MAI, _PN, _MLN, _RAID, _RLN, _S, _OES, _LMD],
1037
+ [
1038
+ () => ResaleAuthorizationEntityIdFilter,
1039
+ () => ResaleAuthorizationNameFilter,
1040
+ () => ResaleAuthorizationProductIdFilter,
1041
+ () => ResaleAuthorizationCreatedDateFilter,
1042
+ () => ResaleAuthorizationAvailabilityEndDateFilter,
1043
+ () => ResaleAuthorizationManufacturerAccountIdFilter,
1044
+ () => ResaleAuthorizationProductNameFilter,
1045
+ () => ResaleAuthorizationManufacturerLegalNameFilter,
1046
+ () => ResaleAuthorizationResellerAccountIDFilter,
1047
+ () => ResaleAuthorizationResellerLegalNameFilter,
1048
+ () => ResaleAuthorizationStatusFilter,
1049
+ () => ResaleAuthorizationOfferExtendedStatusFilter,
1050
+ () => ResaleAuthorizationLastModifiedDateFilter,
1051
+ ],
1052
+ ];
1053
+ var ResaleAuthorizationLastModifiedDateFilter = [
1054
+ 3,
1055
+ n0,
1056
+ _RALMDF,
1057
+ 0,
1058
+ [_DR],
1059
+ [() => ResaleAuthorizationLastModifiedDateFilterDateRange],
1060
+ ];
1061
+ var ResaleAuthorizationLastModifiedDateFilterDateRange = [
1062
+ 3,
1063
+ n0,
1064
+ _RALMDFDR,
1065
+ 0,
1066
+ [_AV, _BV],
1067
+ [0, 0],
1068
+ ];
1069
+ var ResaleAuthorizationManufacturerAccountIdFilter = [
1070
+ 3,
1071
+ n0,
1072
+ _RAMAIF,
1073
+ 0,
1074
+ [_VL, _WCV],
1075
+ [64 | 0, 0],
1076
+ ];
1077
+ var ResaleAuthorizationManufacturerLegalNameFilter = [
1078
+ 3,
1079
+ n0,
1080
+ _RAMLNF,
1081
+ 0,
1082
+ [_VL, _WCV],
1083
+ [64 | 0, 0],
1084
+ ];
1085
+ var ResaleAuthorizationNameFilter = [3, n0, _RANF, 0, [_VL, _WCV], [64 | 0, 0]];
1086
+ var ResaleAuthorizationOfferExtendedStatusFilter = [3, n0, _RAOESF, 0, [_VL], [64 | 0]];
1087
+ var ResaleAuthorizationProductIdFilter = [3, n0, _RAPIF, 0, [_VL, _WCV], [64 | 0, 0]];
1088
+ var ResaleAuthorizationProductNameFilter = [3, n0, _RAPNF, 0, [_VL, _WCV], [64 | 0, 0]];
1089
+ var ResaleAuthorizationResellerAccountIDFilter = [
1090
+ 3,
1091
+ n0,
1092
+ _RARAIDF,
1093
+ 0,
1094
+ [_VL, _WCV],
1095
+ [64 | 0, 0],
1096
+ ];
1097
+ var ResaleAuthorizationResellerLegalNameFilter = [
1098
+ 3,
1099
+ n0,
1100
+ _RARLNF,
1101
+ 0,
1102
+ [_VL, _WCV],
1103
+ [64 | 0, 0],
1104
+ ];
1105
+ var ResaleAuthorizationSort = [3, n0, _RASe, 0, [_SB, _SO], [0, 0]];
1106
+ var ResaleAuthorizationStatusFilter = [3, n0, _RASF, 0, [_VL], [64 | 0]];
1107
+ var ResaleAuthorizationSummary = [
1108
+ 3,
1109
+ n0,
1110
+ _RAS,
1111
+ 0,
1112
+ [_N, _PI, _PN, _MAI, _MLN, _RAID, _RLN, _S, _OES, _CD, _AED],
1113
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
1114
+ ];
1115
+ var ResourceInUseException = [
1116
+ -3,
1117
+ n0,
1118
+ _RIUE,
1119
+ {
1120
+ [_e]: _c,
1121
+ [_hE]: 423,
1122
+ },
1123
+ [_M],
1124
+ [0],
1125
+ ];
1126
+ schema.TypeRegistry.for(n0).registerError(ResourceInUseException, ResourceInUseException$1);
1127
+ var ResourceNotFoundException = [
1128
+ -3,
1129
+ n0,
1130
+ _RNFE,
1131
+ {
1132
+ [_e]: _c,
1133
+ [_hE]: 404,
1134
+ },
1135
+ [_M],
1136
+ [0],
1137
+ ];
1138
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
1139
+ var ResourceNotSupportedException = [
1140
+ -3,
1141
+ n0,
1142
+ _RNSE,
1143
+ {
1144
+ [_e]: _c,
1145
+ [_hE]: 415,
1146
+ },
1147
+ [_M],
1148
+ [0],
1149
+ ];
1150
+ schema.TypeRegistry.for(n0).registerError(ResourceNotSupportedException, ResourceNotSupportedException$1);
1151
+ var SaaSProductEntityIdFilter = [3, n0, _SSPEIF, 0, [_VL], [64 | 0]];
1152
+ var SaaSProductFilters = [
1153
+ 3,
1154
+ n0,
1155
+ _SSPF,
1156
+ 0,
1157
+ [_EI, _PT, _V, _LMD],
1158
+ [
1159
+ () => SaaSProductEntityIdFilter,
1160
+ () => SaaSProductTitleFilter,
1161
+ () => SaaSProductVisibilityFilter,
1162
+ () => SaaSProductLastModifiedDateFilter,
1163
+ ],
1164
+ ];
1165
+ var SaaSProductLastModifiedDateFilter = [
1166
+ 3,
1167
+ n0,
1168
+ _SSPLMDF,
1169
+ 0,
1170
+ [_DR],
1171
+ [() => SaaSProductLastModifiedDateFilterDateRange],
1172
+ ];
1173
+ var SaaSProductLastModifiedDateFilterDateRange = [
1174
+ 3,
1175
+ n0,
1176
+ _SSPLMDFDR,
1177
+ 0,
1178
+ [_AV, _BV],
1179
+ [0, 0],
1180
+ ];
1181
+ var SaaSProductSort = [3, n0, _SSPSa, 0, [_SB, _SO], [0, 0]];
1182
+ var SaaSProductSummary = [3, n0, _SSPS, 0, [_PT, _V], [0, 0]];
1183
+ var SaaSProductTitleFilter = [3, n0, _SSPTF, 0, [_VL, _WCV], [64 | 0, 0]];
1184
+ var SaaSProductVisibilityFilter = [3, n0, _SSPVF, 0, [_VL], [64 | 0]];
1185
+ var ServiceQuotaExceededException = [
1186
+ -3,
1187
+ n0,
1188
+ _SQEE,
1189
+ {
1190
+ [_e]: _c,
1191
+ [_hE]: 402,
1192
+ },
1193
+ [_M],
1194
+ [0],
1195
+ ];
1196
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
1197
+ var Sort = [3, n0, _So, 0, [_SB, _SO], [0, 0]];
1198
+ var StartChangeSetRequest = [
1199
+ 3,
1200
+ n0,
1201
+ _SCSR,
1202
+ 0,
1203
+ [_C, _CSh, _CSN, _CRT, _CST, _I],
1204
+ [0, () => RequestedChangeList, 0, [0, 4], () => TagList, 0],
1205
+ ];
1206
+ var StartChangeSetResponse = [3, n0, _SCSRt, 0, [_CSI, _CSA], [0, 0]];
1207
+ var Tag = [3, n0, _Tag, 0, [_K, _Va], [0, 0]];
1208
+ var TagResourceRequest = [3, n0, _TRR, 0, [_RA, _Ta], [0, () => TagList]];
1209
+ var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
1210
+ var ThrottlingException = [
1211
+ -3,
1212
+ n0,
1213
+ _TE,
1214
+ {
1215
+ [_e]: _c,
1216
+ [_hE]: 429,
1217
+ },
1218
+ [_M],
1219
+ [0],
1220
+ ];
1221
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
1222
+ var UntagResourceRequest = [3, n0, _URR, 0, [_RA, _TK], [0, 64 | 0]];
1223
+ var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
1224
+ var ValidationException = [
1225
+ -3,
1226
+ n0,
1227
+ _VE,
1228
+ {
1229
+ [_e]: _c,
1230
+ [_hE]: 422,
1231
+ },
1232
+ [_M],
1233
+ [0],
1234
+ ];
1235
+ schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
1236
+ var MarketplaceCatalogServiceException = [
1237
+ -3,
1238
+ _sm,
1239
+ "MarketplaceCatalogServiceException",
1240
+ 0,
1241
+ [],
1242
+ [],
1243
+ ];
1244
+ schema.TypeRegistry.for(_sm).registerError(MarketplaceCatalogServiceException, MarketplaceCatalogServiceException$1);
1245
+ var ChangeSetDescription = [1, n0, _CSD, 0, () => ChangeSummary];
1246
+ var ChangeSetSummaryList = [1, n0, _CSSL, 0, () => ChangeSetSummaryListItem];
1247
+ var EntityRequestList = [1, n0, _ERL, 0, () => EntityRequest];
1248
+ var EntitySummaryList = [1, n0, _ESL, 0, () => EntitySummary];
1249
+ var ErrorDetailList = [1, n0, _EDL, 0, () => ErrorDetail];
1250
+ var FilterList = [1, n0, _FL, 0, () => Filter];
1251
+ var RequestedChangeList = [1, n0, _RCL, 0, () => Change];
1252
+ var TagList = [1, n0, _TL, 0, () => Tag];
1253
+ var EntityDetails = [2, n0, _ED, 0, 0, () => EntityDetail];
1254
+ var Errors = [2, n0, _E, 0, 0, () => BatchDescribeErrorDetail];
1255
+ var EntityTypeFilters = [
1256
+ 3,
1257
+ n0,
1258
+ _ETF,
1259
+ 0,
1260
+ [_DPF, _SSPF, _APF, _OF, _CPF, _RAF, _MLPF],
1261
+ [
1262
+ () => DataProductFilters,
1263
+ () => SaaSProductFilters,
1264
+ () => AmiProductFilters,
1265
+ () => OfferFilters,
1266
+ () => ContainerProductFilters,
1267
+ () => ResaleAuthorizationFilters,
1268
+ () => MachineLearningProductFilters,
1269
+ ],
1270
+ ];
1271
+ var EntityTypeSort = [
1272
+ 3,
1273
+ n0,
1274
+ _ETS,
1275
+ 0,
1276
+ [_DPS, _SSPSa, _APS, _OSf, _CPS, _RASe, _MLPSa],
1277
+ [
1278
+ () => DataProductSort,
1279
+ () => SaaSProductSort,
1280
+ () => AmiProductSort,
1281
+ () => OfferSort,
1282
+ () => ContainerProductSort,
1283
+ () => ResaleAuthorizationSort,
1284
+ () => MachineLearningProductSort,
1285
+ ],
1286
+ ];
1287
+ var BatchDescribeEntities = [
1288
+ 9,
1289
+ n0,
1290
+ _BDE,
1291
+ {
1292
+ [_h]: ["POST", "/BatchDescribeEntities", 200],
1293
+ },
1294
+ () => BatchDescribeEntitiesRequest,
1295
+ () => BatchDescribeEntitiesResponse,
1296
+ ];
1297
+ var CancelChangeSet = [
1298
+ 9,
1299
+ n0,
1300
+ _CCS,
1301
+ {
1302
+ [_h]: ["PATCH", "/CancelChangeSet", 200],
1303
+ },
1304
+ () => CancelChangeSetRequest,
1305
+ () => CancelChangeSetResponse,
1306
+ ];
1307
+ var DeleteResourcePolicy = [
1308
+ 9,
1309
+ n0,
1310
+ _DRP,
1311
+ {
1312
+ [_h]: ["DELETE", "/DeleteResourcePolicy", 200],
1313
+ },
1314
+ () => DeleteResourcePolicyRequest,
1315
+ () => DeleteResourcePolicyResponse,
1316
+ ];
1317
+ var DescribeChangeSet = [
1318
+ 9,
1319
+ n0,
1320
+ _DCS,
1321
+ {
1322
+ [_h]: ["GET", "/DescribeChangeSet", 200],
1323
+ },
1324
+ () => DescribeChangeSetRequest,
1325
+ () => DescribeChangeSetResponse,
1326
+ ];
1327
+ var DescribeEntity = [
1328
+ 9,
1329
+ n0,
1330
+ _DE,
1331
+ {
1332
+ [_h]: ["GET", "/DescribeEntity", 200],
1333
+ },
1334
+ () => DescribeEntityRequest,
1335
+ () => DescribeEntityResponse,
1336
+ ];
1337
+ var GetResourcePolicy = [
1338
+ 9,
1339
+ n0,
1340
+ _GRP,
1341
+ {
1342
+ [_h]: ["GET", "/GetResourcePolicy", 200],
1343
+ },
1344
+ () => GetResourcePolicyRequest,
1345
+ () => GetResourcePolicyResponse,
1346
+ ];
1347
+ var ListChangeSets = [
1348
+ 9,
1349
+ n0,
1350
+ _LCS,
1351
+ {
1352
+ [_h]: ["POST", "/ListChangeSets", 200],
1353
+ },
1354
+ () => ListChangeSetsRequest,
1355
+ () => ListChangeSetsResponse,
1356
+ ];
1357
+ var ListEntities = [
1358
+ 9,
1359
+ n0,
1360
+ _LE,
1361
+ {
1362
+ [_h]: ["POST", "/ListEntities", 200],
1363
+ },
1364
+ () => ListEntitiesRequest,
1365
+ () => ListEntitiesResponse,
1366
+ ];
1367
+ var ListTagsForResource = [
1368
+ 9,
1369
+ n0,
1370
+ _LTFR,
1371
+ {
1372
+ [_h]: ["POST", "/ListTagsForResource", 200],
1373
+ },
1374
+ () => ListTagsForResourceRequest,
1375
+ () => ListTagsForResourceResponse,
1376
+ ];
1377
+ var PutResourcePolicy = [
1378
+ 9,
1379
+ n0,
1380
+ _PRP,
1381
+ {
1382
+ [_h]: ["POST", "/PutResourcePolicy", 200],
1383
+ },
1384
+ () => PutResourcePolicyRequest,
1385
+ () => PutResourcePolicyResponse,
1386
+ ];
1387
+ var StartChangeSet = [
1388
+ 9,
1389
+ n0,
1390
+ _SCS,
1391
+ {
1392
+ [_h]: ["POST", "/StartChangeSet", 200],
1393
+ },
1394
+ () => StartChangeSetRequest,
1395
+ () => StartChangeSetResponse,
1396
+ ];
1397
+ var TagResource = [
1398
+ 9,
1399
+ n0,
1400
+ _TR,
1401
+ {
1402
+ [_h]: ["POST", "/TagResource", 200],
1403
+ },
1404
+ () => TagResourceRequest,
1405
+ () => TagResourceResponse,
1406
+ ];
1407
+ var UntagResource = [
1408
+ 9,
1409
+ n0,
1410
+ _UR,
1411
+ {
1412
+ [_h]: ["POST", "/UntagResource", 200],
1413
+ },
1414
+ () => UntagResourceRequest,
1415
+ () => UntagResourceResponse,
1416
+ ];
988
1417
 
989
1418
  class BatchDescribeEntitiesCommand extends smithyClient.Command
990
1419
  .classBuilder()
991
1420
  .ep(commonParams)
992
1421
  .m(function (Command, cs, config, o) {
993
- return [
994
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
995
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
996
- ];
1422
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
997
1423
  })
998
1424
  .s("AWSMPSeymour", "BatchDescribeEntities", {})
999
1425
  .n("MarketplaceCatalogClient", "BatchDescribeEntitiesCommand")
1000
- .f(void 0, void 0)
1001
- .ser(se_BatchDescribeEntitiesCommand)
1002
- .de(de_BatchDescribeEntitiesCommand)
1426
+ .sc(BatchDescribeEntities)
1003
1427
  .build() {
1004
1428
  }
1005
1429
 
@@ -1007,16 +1431,11 @@ class CancelChangeSetCommand extends smithyClient.Command
1007
1431
  .classBuilder()
1008
1432
  .ep(commonParams)
1009
1433
  .m(function (Command, cs, config, o) {
1010
- return [
1011
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1012
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1013
- ];
1434
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1014
1435
  })
1015
1436
  .s("AWSMPSeymour", "CancelChangeSet", {})
1016
1437
  .n("MarketplaceCatalogClient", "CancelChangeSetCommand")
1017
- .f(void 0, void 0)
1018
- .ser(se_CancelChangeSetCommand)
1019
- .de(de_CancelChangeSetCommand)
1438
+ .sc(CancelChangeSet)
1020
1439
  .build() {
1021
1440
  }
1022
1441
 
@@ -1024,16 +1443,11 @@ class DeleteResourcePolicyCommand extends smithyClient.Command
1024
1443
  .classBuilder()
1025
1444
  .ep(commonParams)
1026
1445
  .m(function (Command, cs, config, o) {
1027
- return [
1028
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1029
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1030
- ];
1446
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1031
1447
  })
1032
1448
  .s("AWSMPSeymour", "DeleteResourcePolicy", {})
1033
1449
  .n("MarketplaceCatalogClient", "DeleteResourcePolicyCommand")
1034
- .f(void 0, void 0)
1035
- .ser(se_DeleteResourcePolicyCommand)
1036
- .de(de_DeleteResourcePolicyCommand)
1450
+ .sc(DeleteResourcePolicy)
1037
1451
  .build() {
1038
1452
  }
1039
1453
 
@@ -1041,16 +1455,11 @@ class DescribeChangeSetCommand extends smithyClient.Command
1041
1455
  .classBuilder()
1042
1456
  .ep(commonParams)
1043
1457
  .m(function (Command, cs, config, o) {
1044
- return [
1045
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1046
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1047
- ];
1458
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1048
1459
  })
1049
1460
  .s("AWSMPSeymour", "DescribeChangeSet", {})
1050
1461
  .n("MarketplaceCatalogClient", "DescribeChangeSetCommand")
1051
- .f(void 0, void 0)
1052
- .ser(se_DescribeChangeSetCommand)
1053
- .de(de_DescribeChangeSetCommand)
1462
+ .sc(DescribeChangeSet)
1054
1463
  .build() {
1055
1464
  }
1056
1465
 
@@ -1058,16 +1467,11 @@ class DescribeEntityCommand extends smithyClient.Command
1058
1467
  .classBuilder()
1059
1468
  .ep(commonParams)
1060
1469
  .m(function (Command, cs, config, o) {
1061
- return [
1062
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1063
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1064
- ];
1470
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1065
1471
  })
1066
1472
  .s("AWSMPSeymour", "DescribeEntity", {})
1067
1473
  .n("MarketplaceCatalogClient", "DescribeEntityCommand")
1068
- .f(void 0, void 0)
1069
- .ser(se_DescribeEntityCommand)
1070
- .de(de_DescribeEntityCommand)
1474
+ .sc(DescribeEntity)
1071
1475
  .build() {
1072
1476
  }
1073
1477
 
@@ -1075,16 +1479,11 @@ class GetResourcePolicyCommand extends smithyClient.Command
1075
1479
  .classBuilder()
1076
1480
  .ep(commonParams)
1077
1481
  .m(function (Command, cs, config, o) {
1078
- return [
1079
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1080
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1081
- ];
1482
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1082
1483
  })
1083
1484
  .s("AWSMPSeymour", "GetResourcePolicy", {})
1084
1485
  .n("MarketplaceCatalogClient", "GetResourcePolicyCommand")
1085
- .f(void 0, void 0)
1086
- .ser(se_GetResourcePolicyCommand)
1087
- .de(de_GetResourcePolicyCommand)
1486
+ .sc(GetResourcePolicy)
1088
1487
  .build() {
1089
1488
  }
1090
1489
 
@@ -1092,16 +1491,11 @@ class ListChangeSetsCommand extends smithyClient.Command
1092
1491
  .classBuilder()
1093
1492
  .ep(commonParams)
1094
1493
  .m(function (Command, cs, config, o) {
1095
- return [
1096
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1097
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1098
- ];
1494
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1099
1495
  })
1100
1496
  .s("AWSMPSeymour", "ListChangeSets", {})
1101
1497
  .n("MarketplaceCatalogClient", "ListChangeSetsCommand")
1102
- .f(void 0, void 0)
1103
- .ser(se_ListChangeSetsCommand)
1104
- .de(de_ListChangeSetsCommand)
1498
+ .sc(ListChangeSets)
1105
1499
  .build() {
1106
1500
  }
1107
1501
 
@@ -1109,16 +1503,11 @@ class ListEntitiesCommand extends smithyClient.Command
1109
1503
  .classBuilder()
1110
1504
  .ep(commonParams)
1111
1505
  .m(function (Command, cs, config, o) {
1112
- return [
1113
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1114
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1115
- ];
1506
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1116
1507
  })
1117
1508
  .s("AWSMPSeymour", "ListEntities", {})
1118
1509
  .n("MarketplaceCatalogClient", "ListEntitiesCommand")
1119
- .f(void 0, void 0)
1120
- .ser(se_ListEntitiesCommand)
1121
- .de(de_ListEntitiesCommand)
1510
+ .sc(ListEntities)
1122
1511
  .build() {
1123
1512
  }
1124
1513
 
@@ -1126,16 +1515,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
1126
1515
  .classBuilder()
1127
1516
  .ep(commonParams)
1128
1517
  .m(function (Command, cs, config, o) {
1129
- return [
1130
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1131
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1132
- ];
1518
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1133
1519
  })
1134
1520
  .s("AWSMPSeymour", "ListTagsForResource", {})
1135
1521
  .n("MarketplaceCatalogClient", "ListTagsForResourceCommand")
1136
- .f(void 0, void 0)
1137
- .ser(se_ListTagsForResourceCommand)
1138
- .de(de_ListTagsForResourceCommand)
1522
+ .sc(ListTagsForResource)
1139
1523
  .build() {
1140
1524
  }
1141
1525
 
@@ -1143,16 +1527,11 @@ class PutResourcePolicyCommand extends smithyClient.Command
1143
1527
  .classBuilder()
1144
1528
  .ep(commonParams)
1145
1529
  .m(function (Command, cs, config, o) {
1146
- return [
1147
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1148
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1149
- ];
1530
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1150
1531
  })
1151
1532
  .s("AWSMPSeymour", "PutResourcePolicy", {})
1152
1533
  .n("MarketplaceCatalogClient", "PutResourcePolicyCommand")
1153
- .f(void 0, void 0)
1154
- .ser(se_PutResourcePolicyCommand)
1155
- .de(de_PutResourcePolicyCommand)
1534
+ .sc(PutResourcePolicy)
1156
1535
  .build() {
1157
1536
  }
1158
1537
 
@@ -1160,16 +1539,11 @@ class StartChangeSetCommand extends smithyClient.Command
1160
1539
  .classBuilder()
1161
1540
  .ep(commonParams)
1162
1541
  .m(function (Command, cs, config, o) {
1163
- return [
1164
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1165
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1166
- ];
1542
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1167
1543
  })
1168
1544
  .s("AWSMPSeymour", "StartChangeSet", {})
1169
1545
  .n("MarketplaceCatalogClient", "StartChangeSetCommand")
1170
- .f(void 0, void 0)
1171
- .ser(se_StartChangeSetCommand)
1172
- .de(de_StartChangeSetCommand)
1546
+ .sc(StartChangeSet)
1173
1547
  .build() {
1174
1548
  }
1175
1549
 
@@ -1177,16 +1551,11 @@ class TagResourceCommand extends smithyClient.Command
1177
1551
  .classBuilder()
1178
1552
  .ep(commonParams)
1179
1553
  .m(function (Command, cs, config, o) {
1180
- return [
1181
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1182
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1183
- ];
1554
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1184
1555
  })
1185
1556
  .s("AWSMPSeymour", "TagResource", {})
1186
1557
  .n("MarketplaceCatalogClient", "TagResourceCommand")
1187
- .f(void 0, void 0)
1188
- .ser(se_TagResourceCommand)
1189
- .de(de_TagResourceCommand)
1558
+ .sc(TagResource)
1190
1559
  .build() {
1191
1560
  }
1192
1561
 
@@ -1194,16 +1563,11 @@ class UntagResourceCommand extends smithyClient.Command
1194
1563
  .classBuilder()
1195
1564
  .ep(commonParams)
1196
1565
  .m(function (Command, cs, config, o) {
1197
- return [
1198
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1199
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1200
- ];
1566
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1201
1567
  })
1202
1568
  .s("AWSMPSeymour", "UntagResource", {})
1203
1569
  .n("MarketplaceCatalogClient", "UntagResourceCommand")
1204
- .f(void 0, void 0)
1205
- .ser(se_UntagResourceCommand)
1206
- .de(de_UntagResourceCommand)
1570
+ .sc(UntagResource)
1207
1571
  .build() {
1208
1572
  }
1209
1573
 
@@ -1238,7 +1602,7 @@ Object.defineProperty(exports, "__Client", {
1238
1602
  enumerable: true,
1239
1603
  get: function () { return smithyClient.Client; }
1240
1604
  });
1241
- exports.AccessDeniedException = AccessDeniedException;
1605
+ exports.AccessDeniedException = AccessDeniedException$1;
1242
1606
  exports.AmiProductSortBy = AmiProductSortBy;
1243
1607
  exports.AmiProductVisibilityString = AmiProductVisibilityString;
1244
1608
  exports.BatchDescribeEntitiesCommand = BatchDescribeEntitiesCommand;
@@ -1254,7 +1618,7 @@ exports.DescribeEntityCommand = DescribeEntityCommand;
1254
1618
  exports.FailureCode = FailureCode;
1255
1619
  exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
1256
1620
  exports.Intent = Intent;
1257
- exports.InternalServiceException = InternalServiceException;
1621
+ exports.InternalServiceException = InternalServiceException$1;
1258
1622
  exports.ListChangeSetsCommand = ListChangeSetsCommand;
1259
1623
  exports.ListEntitiesCommand = ListEntitiesCommand;
1260
1624
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
@@ -1262,7 +1626,7 @@ exports.MachineLearningProductSortBy = MachineLearningProductSortBy;
1262
1626
  exports.MachineLearningProductVisibilityString = MachineLearningProductVisibilityString;
1263
1627
  exports.MarketplaceCatalog = MarketplaceCatalog;
1264
1628
  exports.MarketplaceCatalogClient = MarketplaceCatalogClient;
1265
- exports.MarketplaceCatalogServiceException = MarketplaceCatalogServiceException;
1629
+ exports.MarketplaceCatalogServiceException = MarketplaceCatalogServiceException$1;
1266
1630
  exports.OfferSortBy = OfferSortBy;
1267
1631
  exports.OfferStateString = OfferStateString;
1268
1632
  exports.OfferTargetingString = OfferTargetingString;
@@ -1270,17 +1634,17 @@ exports.OwnershipType = OwnershipType;
1270
1634
  exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
1271
1635
  exports.ResaleAuthorizationSortBy = ResaleAuthorizationSortBy;
1272
1636
  exports.ResaleAuthorizationStatusString = ResaleAuthorizationStatusString;
1273
- exports.ResourceInUseException = ResourceInUseException;
1274
- exports.ResourceNotFoundException = ResourceNotFoundException;
1275
- exports.ResourceNotSupportedException = ResourceNotSupportedException;
1637
+ exports.ResourceInUseException = ResourceInUseException$1;
1638
+ exports.ResourceNotFoundException = ResourceNotFoundException$1;
1639
+ exports.ResourceNotSupportedException = ResourceNotSupportedException$1;
1276
1640
  exports.SaaSProductSortBy = SaaSProductSortBy;
1277
1641
  exports.SaaSProductVisibilityString = SaaSProductVisibilityString;
1278
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
1642
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1279
1643
  exports.SortOrder = SortOrder;
1280
1644
  exports.StartChangeSetCommand = StartChangeSetCommand;
1281
1645
  exports.TagResourceCommand = TagResourceCommand;
1282
- exports.ThrottlingException = ThrottlingException;
1646
+ exports.ThrottlingException = ThrottlingException$1;
1283
1647
  exports.UntagResourceCommand = UntagResourceCommand;
1284
- exports.ValidationException = ValidationException;
1648
+ exports.ValidationException = ValidationException$1;
1285
1649
  exports.paginateListChangeSets = paginateListChangeSets;
1286
1650
  exports.paginateListEntities = paginateListEntities;