@aws-sdk/client-marketplace-catalog 3.927.0 → 3.929.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1104 -700
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/MarketplaceCatalogClient.js +2 -0
- package/dist-es/commands/BatchDescribeEntitiesCommand.js +3 -9
- package/dist-es/commands/CancelChangeSetCommand.js +3 -9
- package/dist-es/commands/DeleteResourcePolicyCommand.js +3 -9
- package/dist-es/commands/DescribeChangeSetCommand.js +3 -9
- package/dist-es/commands/DescribeEntityCommand.js +3 -9
- package/dist-es/commands/GetResourcePolicyCommand.js +3 -9
- package/dist-es/commands/ListChangeSetsCommand.js +3 -9
- package/dist-es/commands/ListEntitiesCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/PutResourcePolicyCommand.js +3 -9
- package/dist-es/commands/StartChangeSetCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1098 -0
- package/dist-types/MarketplaceCatalogClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +187 -0
- package/dist-types/ts3.4/MarketplaceCatalogClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +193 -0
- package/package.json +5 -6
- package/dist-es/protocols/Aws_restJson1.js +0 -593
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -119
- 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",
|
|
@@ -384,7 +383,7 @@ const OwnershipType = {
|
|
|
384
383
|
SELF: "SELF",
|
|
385
384
|
SHARED: "SHARED",
|
|
386
385
|
};
|
|
387
|
-
class ServiceQuotaExceededException extends MarketplaceCatalogServiceException {
|
|
386
|
+
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends MarketplaceCatalogServiceException$1 {
|
|
388
387
|
name = "ServiceQuotaExceededException";
|
|
389
388
|
$fault = "client";
|
|
390
389
|
Message;
|
|
@@ -397,609 +396,1074 @@ class ServiceQuotaExceededException extends MarketplaceCatalogServiceException {
|
|
|
397
396
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
398
397
|
this.Message = opts.Message;
|
|
399
398
|
}
|
|
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
399
|
};
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
const
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
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
|
-
};
|
|
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
|
-
});
|
|
400
|
+
|
|
401
|
+
const _ADE = "AccessDeniedException";
|
|
402
|
+
const _AED = "AvailabilityEndDate";
|
|
403
|
+
const _APEIF = "AmiProductEntityIdFilter";
|
|
404
|
+
const _APF = "AmiProductFilters";
|
|
405
|
+
const _APLMDF = "AmiProductLastModifiedDateFilter";
|
|
406
|
+
const _APLMDFDR = "AmiProductLastModifiedDateFilterDateRange";
|
|
407
|
+
const _APS = "AmiProductSort";
|
|
408
|
+
const _APSm = "AmiProductSummary";
|
|
409
|
+
const _APTF = "AmiProductTitleFilter";
|
|
410
|
+
const _APVF = "AmiProductVisibilityFilter";
|
|
411
|
+
const _AV = "AfterValue";
|
|
412
|
+
const _BA = "BuyerAccounts";
|
|
413
|
+
const _BDE = "BatchDescribeEntities";
|
|
414
|
+
const _BDED = "BatchDescribeErrorDetail";
|
|
415
|
+
const _BDER = "BatchDescribeEntitiesRequest";
|
|
416
|
+
const _BDERa = "BatchDescribeEntitiesResponse";
|
|
417
|
+
const _BV = "BeforeValue";
|
|
980
418
|
const _C = "Catalog";
|
|
419
|
+
const _CCS = "CancelChangeSet";
|
|
420
|
+
const _CCSR = "CancelChangeSetRequest";
|
|
421
|
+
const _CCSRa = "CancelChangeSetResponse";
|
|
422
|
+
const _CD = "CreatedDate";
|
|
423
|
+
const _CN = "ChangeName";
|
|
424
|
+
const _CPEIF = "ContainerProductEntityIdFilter";
|
|
425
|
+
const _CPF = "ContainerProductFilters";
|
|
426
|
+
const _CPLMDF = "ContainerProductLastModifiedDateFilter";
|
|
427
|
+
const _CPLMDFDR = "ContainerProductLastModifiedDateFilterDateRange";
|
|
428
|
+
const _CPS = "ContainerProductSort";
|
|
429
|
+
const _CPSo = "ContainerProductSummary";
|
|
430
|
+
const _CPTF = "ContainerProductTitleFilter";
|
|
431
|
+
const _CPVF = "ContainerProductVisibilityFilter";
|
|
432
|
+
const _CRT = "ClientRequestToken";
|
|
433
|
+
const _CS = "ChangeSummary";
|
|
434
|
+
const _CSA = "ChangeSetArn";
|
|
435
|
+
const _CSD = "ChangeSetDescription";
|
|
981
436
|
const _CSI = "ChangeSetId";
|
|
437
|
+
const _CSN = "ChangeSetName";
|
|
438
|
+
const _CSSL = "ChangeSetSummaryList";
|
|
439
|
+
const _CSSLI = "ChangeSetSummaryListItem";
|
|
440
|
+
const _CST = "ChangeSetTags";
|
|
441
|
+
const _CSh = "ChangeSet";
|
|
442
|
+
const _CT = "ChangeType";
|
|
443
|
+
const _Ch = "Change";
|
|
444
|
+
const _D = "Details";
|
|
445
|
+
const _DCS = "DescribeChangeSet";
|
|
446
|
+
const _DCSR = "DescribeChangeSetRequest";
|
|
447
|
+
const _DCSRe = "DescribeChangeSetResponse";
|
|
448
|
+
const _DD = "DetailsDocument";
|
|
449
|
+
const _DE = "DescribeEntity";
|
|
450
|
+
const _DER = "DescribeEntityRequest";
|
|
451
|
+
const _DERe = "DescribeEntityResponse";
|
|
452
|
+
const _DPEIF = "DataProductEntityIdFilter";
|
|
453
|
+
const _DPF = "DataProductFilters";
|
|
454
|
+
const _DPLMDF = "DataProductLastModifiedDateFilter";
|
|
455
|
+
const _DPLMDFDR = "DataProductLastModifiedDateFilterDateRange";
|
|
456
|
+
const _DPS = "DataProductSort";
|
|
457
|
+
const _DPSa = "DataProductSummary";
|
|
458
|
+
const _DPTF = "DataProductTitleFilter";
|
|
459
|
+
const _DPVF = "DataProductVisibilityFilter";
|
|
460
|
+
const _DR = "DateRange";
|
|
461
|
+
const _DRP = "DeleteResourcePolicy";
|
|
462
|
+
const _DRPR = "DeleteResourcePolicyRequest";
|
|
463
|
+
const _DRPRe = "DeleteResourcePolicyResponse";
|
|
464
|
+
const _E = "Errors";
|
|
465
|
+
const _EA = "EntityArn";
|
|
466
|
+
const _EC = "ErrorCode";
|
|
467
|
+
const _ED = "EntityDetails";
|
|
468
|
+
const _EDL = "ErrorDetailList";
|
|
469
|
+
const _EDn = "EntityDetail";
|
|
470
|
+
const _EDr = "ErrorDetail";
|
|
982
471
|
const _EI = "EntityId";
|
|
472
|
+
const _EIL = "EntityIdList";
|
|
473
|
+
const _EIn = "EntityIdentifier";
|
|
474
|
+
const _EM = "ErrorMessage";
|
|
475
|
+
const _ER = "EntityRequest";
|
|
476
|
+
const _ERL = "EntityRequestList";
|
|
477
|
+
const _ES = "EntitySummary";
|
|
478
|
+
const _ESL = "EntitySummaryList";
|
|
479
|
+
const _ET = "EntityTags";
|
|
480
|
+
const _ETF = "EntityTypeFilters";
|
|
481
|
+
const _ETS = "EntityTypeSort";
|
|
482
|
+
const _ETn = "EndTime";
|
|
483
|
+
const _ETnt = "EntityType";
|
|
484
|
+
const _En = "Entity";
|
|
485
|
+
const _F = "Filter";
|
|
486
|
+
const _FC = "FailureCode";
|
|
487
|
+
const _FD = "FailureDescription";
|
|
488
|
+
const _FL = "FilterList";
|
|
489
|
+
const _GRP = "GetResourcePolicy";
|
|
490
|
+
const _GRPR = "GetResourcePolicyRequest";
|
|
491
|
+
const _GRPRe = "GetResourcePolicyResponse";
|
|
492
|
+
const _I = "Intent";
|
|
493
|
+
const _ISE = "InternalServiceException";
|
|
494
|
+
const _Id = "Identifier";
|
|
495
|
+
const _K = "Key";
|
|
496
|
+
const _LCS = "ListChangeSets";
|
|
497
|
+
const _LCSR = "ListChangeSetsRequest";
|
|
498
|
+
const _LCSRi = "ListChangeSetsResponse";
|
|
499
|
+
const _LE = "ListEntities";
|
|
500
|
+
const _LER = "ListEntitiesRequest";
|
|
501
|
+
const _LERi = "ListEntitiesResponse";
|
|
502
|
+
const _LMD = "LastModifiedDate";
|
|
503
|
+
const _LTFR = "ListTagsForResource";
|
|
504
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
505
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
506
|
+
const _M = "Message";
|
|
507
|
+
const _MAI = "ManufacturerAccountId";
|
|
508
|
+
const _MLN = "ManufacturerLegalName";
|
|
509
|
+
const _MLPEIF = "MachineLearningProductEntityIdFilter";
|
|
510
|
+
const _MLPF = "MachineLearningProductFilters";
|
|
511
|
+
const _MLPLMDF = "MachineLearningProductLastModifiedDateFilter";
|
|
512
|
+
const _MLPLMDFDR = "MachineLearningProductLastModifiedDateFilterDateRange";
|
|
513
|
+
const _MLPS = "MachineLearningProductSummary";
|
|
514
|
+
const _MLPSa = "MachineLearningProductSort";
|
|
515
|
+
const _MLPTF = "MachineLearningProductTitleFilter";
|
|
516
|
+
const _MLPVF = "MachineLearningProductVisibilityFilter";
|
|
517
|
+
const _MR = "MaxResults";
|
|
518
|
+
const _N = "Name";
|
|
519
|
+
const _NT = "NextToken";
|
|
520
|
+
const _OAEDF = "OfferAvailabilityEndDateFilter";
|
|
521
|
+
const _OAEDFDR = "OfferAvailabilityEndDateFilterDateRange";
|
|
522
|
+
const _OBAF = "OfferBuyerAccountsFilter";
|
|
523
|
+
const _OEIF = "OfferEntityIdFilter";
|
|
524
|
+
const _OES = "OfferExtendedStatus";
|
|
525
|
+
const _OF = "OfferFilters";
|
|
526
|
+
const _OLMDF = "OfferLastModifiedDateFilter";
|
|
527
|
+
const _OLMDFDR = "OfferLastModifiedDateFilterDateRange";
|
|
528
|
+
const _ONF = "OfferNameFilter";
|
|
529
|
+
const _OPIF = "OfferProductIdFilter";
|
|
530
|
+
const _ORAIF = "OfferResaleAuthorizationIdFilter";
|
|
531
|
+
const _ORDF = "OfferReleaseDateFilter";
|
|
532
|
+
const _ORDFDR = "OfferReleaseDateFilterDateRange";
|
|
533
|
+
const _OS = "OfferSummary";
|
|
534
|
+
const _OSF = "OfferStateFilter";
|
|
535
|
+
const _OSf = "OfferSort";
|
|
536
|
+
const _OT = "OwnershipType";
|
|
537
|
+
const _OTF = "OfferTargetingFilter";
|
|
538
|
+
const _P = "Policy";
|
|
539
|
+
const _PI = "ProductId";
|
|
540
|
+
const _PN = "ProductName";
|
|
541
|
+
const _PRP = "PutResourcePolicy";
|
|
542
|
+
const _PRPR = "PutResourcePolicyRequest";
|
|
543
|
+
const _PRPRu = "PutResourcePolicyResponse";
|
|
544
|
+
const _PT = "ProductTitle";
|
|
983
545
|
const _RA = "ResourceArn";
|
|
984
|
-
const
|
|
546
|
+
const _RAAEDF = "ResaleAuthorizationAvailabilityEndDateFilter";
|
|
547
|
+
const _RAAEDFDR = "ResaleAuthorizationAvailabilityEndDateFilterDateRange";
|
|
548
|
+
const _RACDF = "ResaleAuthorizationCreatedDateFilter";
|
|
549
|
+
const _RACDFDR = "ResaleAuthorizationCreatedDateFilterDateRange";
|
|
550
|
+
const _RAEIF = "ResaleAuthorizationEntityIdFilter";
|
|
551
|
+
const _RAF = "ResaleAuthorizationFilters";
|
|
552
|
+
const _RAI = "ResaleAuthorizationId";
|
|
553
|
+
const _RAID = "ResellerAccountID";
|
|
554
|
+
const _RALMDF = "ResaleAuthorizationLastModifiedDateFilter";
|
|
555
|
+
const _RALMDFDR = "ResaleAuthorizationLastModifiedDateFilterDateRange";
|
|
556
|
+
const _RAMAIF = "ResaleAuthorizationManufacturerAccountIdFilter";
|
|
557
|
+
const _RAMLNF = "ResaleAuthorizationManufacturerLegalNameFilter";
|
|
558
|
+
const _RANF = "ResaleAuthorizationNameFilter";
|
|
559
|
+
const _RAOESF = "ResaleAuthorizationOfferExtendedStatusFilter";
|
|
560
|
+
const _RAPIF = "ResaleAuthorizationProductIdFilter";
|
|
561
|
+
const _RAPNF = "ResaleAuthorizationProductNameFilter";
|
|
562
|
+
const _RARAIDF = "ResaleAuthorizationResellerAccountIDFilter";
|
|
563
|
+
const _RARLNF = "ResaleAuthorizationResellerLegalNameFilter";
|
|
564
|
+
const _RAS = "ResaleAuthorizationSummary";
|
|
565
|
+
const _RASF = "ResaleAuthorizationStatusFilter";
|
|
566
|
+
const _RASe = "ResaleAuthorizationSort";
|
|
567
|
+
const _RCL = "RequestedChangeList";
|
|
568
|
+
const _RD = "ReleaseDate";
|
|
569
|
+
const _RIUE = "ResourceInUseException";
|
|
570
|
+
const _RLN = "ResellerLegalName";
|
|
571
|
+
const _RNFE = "ResourceNotFoundException";
|
|
572
|
+
const _RNSE = "ResourceNotSupportedException";
|
|
573
|
+
const _S = "Status";
|
|
574
|
+
const _SB = "SortBy";
|
|
575
|
+
const _SCS = "StartChangeSet";
|
|
576
|
+
const _SCSR = "StartChangeSetRequest";
|
|
577
|
+
const _SCSRt = "StartChangeSetResponse";
|
|
578
|
+
const _SO = "SortOrder";
|
|
579
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
580
|
+
const _SSPEIF = "SaaSProductEntityIdFilter";
|
|
581
|
+
const _SSPF = "SaaSProductFilters";
|
|
582
|
+
const _SSPLMDF = "SaaSProductLastModifiedDateFilter";
|
|
583
|
+
const _SSPLMDFDR = "SaaSProductLastModifiedDateFilterDateRange";
|
|
584
|
+
const _SSPS = "SaaSProductSummary";
|
|
585
|
+
const _SSPSa = "SaaSProductSort";
|
|
586
|
+
const _SSPTF = "SaaSProductTitleFilter";
|
|
587
|
+
const _SSPVF = "SaaSProductVisibilityFilter";
|
|
588
|
+
const _ST = "StartTime";
|
|
589
|
+
const _So = "Sort";
|
|
590
|
+
const _St = "State";
|
|
591
|
+
const _T = "Type";
|
|
592
|
+
const _TE = "ThrottlingException";
|
|
593
|
+
const _TK = "TagKeys";
|
|
594
|
+
const _TL = "TagList";
|
|
595
|
+
const _TR = "TagResource";
|
|
596
|
+
const _TRR = "TagResourceRequest";
|
|
597
|
+
const _TRRa = "TagResourceResponse";
|
|
598
|
+
const _Ta = "Tags";
|
|
599
|
+
const _Tag = "Tag";
|
|
600
|
+
const _Tar = "Targeting";
|
|
601
|
+
const _UR = "UntagResource";
|
|
602
|
+
const _URR = "UntagResourceRequest";
|
|
603
|
+
const _URRn = "UntagResourceResponse";
|
|
604
|
+
const _V = "Visibility";
|
|
605
|
+
const _VE = "ValidationException";
|
|
606
|
+
const _VL = "ValueList";
|
|
607
|
+
const _Va = "Value";
|
|
608
|
+
const _WCV = "WildCardValue";
|
|
609
|
+
const _c = "client";
|
|
985
610
|
const _cSI = "changeSetId";
|
|
611
|
+
const _ca = "catalog";
|
|
612
|
+
const _e = "error";
|
|
986
613
|
const _eI = "entityId";
|
|
614
|
+
const _h = "http";
|
|
615
|
+
const _hE = "httpError";
|
|
616
|
+
const _hQ = "httpQuery";
|
|
987
617
|
const _rA = "resourceArn";
|
|
618
|
+
const _s = "server";
|
|
619
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.marketplacecatalog";
|
|
620
|
+
const n0 = "com.amazonaws.marketplacecatalog";
|
|
621
|
+
var AccessDeniedException = [
|
|
622
|
+
-3,
|
|
623
|
+
n0,
|
|
624
|
+
_ADE,
|
|
625
|
+
{
|
|
626
|
+
[_e]: _c,
|
|
627
|
+
[_hE]: 403,
|
|
628
|
+
},
|
|
629
|
+
[_M],
|
|
630
|
+
[0],
|
|
631
|
+
];
|
|
632
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
633
|
+
var AmiProductEntityIdFilter = [3, n0, _APEIF, 0, [_VL], [64 | 0]];
|
|
634
|
+
var AmiProductFilters = [
|
|
635
|
+
3,
|
|
636
|
+
n0,
|
|
637
|
+
_APF,
|
|
638
|
+
0,
|
|
639
|
+
[_EI, _LMD, _PT, _V],
|
|
640
|
+
[
|
|
641
|
+
() => AmiProductEntityIdFilter,
|
|
642
|
+
() => AmiProductLastModifiedDateFilter,
|
|
643
|
+
() => AmiProductTitleFilter,
|
|
644
|
+
() => AmiProductVisibilityFilter,
|
|
645
|
+
],
|
|
646
|
+
];
|
|
647
|
+
var AmiProductLastModifiedDateFilter = [
|
|
648
|
+
3,
|
|
649
|
+
n0,
|
|
650
|
+
_APLMDF,
|
|
651
|
+
0,
|
|
652
|
+
[_DR],
|
|
653
|
+
[() => AmiProductLastModifiedDateFilterDateRange],
|
|
654
|
+
];
|
|
655
|
+
var AmiProductLastModifiedDateFilterDateRange = [3, n0, _APLMDFDR, 0, [_AV, _BV], [0, 0]];
|
|
656
|
+
var AmiProductSort = [3, n0, _APS, 0, [_SB, _SO], [0, 0]];
|
|
657
|
+
var AmiProductSummary = [3, n0, _APSm, 0, [_PT, _V], [0, 0]];
|
|
658
|
+
var AmiProductTitleFilter = [3, n0, _APTF, 0, [_VL, _WCV], [64 | 0, 0]];
|
|
659
|
+
var AmiProductVisibilityFilter = [3, n0, _APVF, 0, [_VL], [64 | 0]];
|
|
660
|
+
var BatchDescribeEntitiesRequest = [3, n0, _BDER, 0, [_ERL], [() => EntityRequestList]];
|
|
661
|
+
var BatchDescribeEntitiesResponse = [
|
|
662
|
+
3,
|
|
663
|
+
n0,
|
|
664
|
+
_BDERa,
|
|
665
|
+
0,
|
|
666
|
+
[_ED, _E],
|
|
667
|
+
[() => EntityDetails, () => Errors],
|
|
668
|
+
];
|
|
669
|
+
var BatchDescribeErrorDetail = [3, n0, _BDED, 0, [_EC, _EM], [0, 0]];
|
|
670
|
+
var CancelChangeSetRequest = [
|
|
671
|
+
3,
|
|
672
|
+
n0,
|
|
673
|
+
_CCSR,
|
|
674
|
+
0,
|
|
675
|
+
[_C, _CSI],
|
|
676
|
+
[
|
|
677
|
+
[
|
|
678
|
+
0,
|
|
679
|
+
{
|
|
680
|
+
[_hQ]: _ca,
|
|
681
|
+
},
|
|
682
|
+
],
|
|
683
|
+
[
|
|
684
|
+
0,
|
|
685
|
+
{
|
|
686
|
+
[_hQ]: _cSI,
|
|
687
|
+
},
|
|
688
|
+
],
|
|
689
|
+
],
|
|
690
|
+
];
|
|
691
|
+
var CancelChangeSetResponse = [3, n0, _CCSRa, 0, [_CSI, _CSA], [0, 0]];
|
|
692
|
+
var Change = [
|
|
693
|
+
3,
|
|
694
|
+
n0,
|
|
695
|
+
_Ch,
|
|
696
|
+
0,
|
|
697
|
+
[_CT, _En, _ET, _D, _DD, _CN],
|
|
698
|
+
[0, () => Entity, () => TagList, 0, 15, 0],
|
|
699
|
+
];
|
|
700
|
+
var ChangeSetSummaryListItem = [
|
|
701
|
+
3,
|
|
702
|
+
n0,
|
|
703
|
+
_CSSLI,
|
|
704
|
+
0,
|
|
705
|
+
[_CSI, _CSA, _CSN, _ST, _ETn, _S, _EIL, _FC],
|
|
706
|
+
[0, 0, 0, 0, 0, 0, 64 | 0, 0],
|
|
707
|
+
];
|
|
708
|
+
var ChangeSummary = [
|
|
709
|
+
3,
|
|
710
|
+
n0,
|
|
711
|
+
_CS,
|
|
712
|
+
0,
|
|
713
|
+
[_CT, _En, _D, _DD, _EDL, _CN],
|
|
714
|
+
[0, () => Entity, 0, 15, () => ErrorDetailList, 0],
|
|
715
|
+
];
|
|
716
|
+
var ContainerProductEntityIdFilter = [3, n0, _CPEIF, 0, [_VL], [64 | 0]];
|
|
717
|
+
var ContainerProductFilters = [
|
|
718
|
+
3,
|
|
719
|
+
n0,
|
|
720
|
+
_CPF,
|
|
721
|
+
0,
|
|
722
|
+
[_EI, _LMD, _PT, _V],
|
|
723
|
+
[
|
|
724
|
+
() => ContainerProductEntityIdFilter,
|
|
725
|
+
() => ContainerProductLastModifiedDateFilter,
|
|
726
|
+
() => ContainerProductTitleFilter,
|
|
727
|
+
() => ContainerProductVisibilityFilter,
|
|
728
|
+
],
|
|
729
|
+
];
|
|
730
|
+
var ContainerProductLastModifiedDateFilter = [
|
|
731
|
+
3,
|
|
732
|
+
n0,
|
|
733
|
+
_CPLMDF,
|
|
734
|
+
0,
|
|
735
|
+
[_DR],
|
|
736
|
+
[() => ContainerProductLastModifiedDateFilterDateRange],
|
|
737
|
+
];
|
|
738
|
+
var ContainerProductLastModifiedDateFilterDateRange = [
|
|
739
|
+
3,
|
|
740
|
+
n0,
|
|
741
|
+
_CPLMDFDR,
|
|
742
|
+
0,
|
|
743
|
+
[_AV, _BV],
|
|
744
|
+
[0, 0],
|
|
745
|
+
];
|
|
746
|
+
var ContainerProductSort = [3, n0, _CPS, 0, [_SB, _SO], [0, 0]];
|
|
747
|
+
var ContainerProductSummary = [3, n0, _CPSo, 0, [_PT, _V], [0, 0]];
|
|
748
|
+
var ContainerProductTitleFilter = [3, n0, _CPTF, 0, [_VL, _WCV], [64 | 0, 0]];
|
|
749
|
+
var ContainerProductVisibilityFilter = [3, n0, _CPVF, 0, [_VL], [64 | 0]];
|
|
750
|
+
var DataProductEntityIdFilter = [3, n0, _DPEIF, 0, [_VL], [64 | 0]];
|
|
751
|
+
var DataProductFilters = [
|
|
752
|
+
3,
|
|
753
|
+
n0,
|
|
754
|
+
_DPF,
|
|
755
|
+
0,
|
|
756
|
+
[_EI, _PT, _V, _LMD],
|
|
757
|
+
[
|
|
758
|
+
() => DataProductEntityIdFilter,
|
|
759
|
+
() => DataProductTitleFilter,
|
|
760
|
+
() => DataProductVisibilityFilter,
|
|
761
|
+
() => DataProductLastModifiedDateFilter,
|
|
762
|
+
],
|
|
763
|
+
];
|
|
764
|
+
var DataProductLastModifiedDateFilter = [
|
|
765
|
+
3,
|
|
766
|
+
n0,
|
|
767
|
+
_DPLMDF,
|
|
768
|
+
0,
|
|
769
|
+
[_DR],
|
|
770
|
+
[() => DataProductLastModifiedDateFilterDateRange],
|
|
771
|
+
];
|
|
772
|
+
var DataProductLastModifiedDateFilterDateRange = [
|
|
773
|
+
3,
|
|
774
|
+
n0,
|
|
775
|
+
_DPLMDFDR,
|
|
776
|
+
0,
|
|
777
|
+
[_AV, _BV],
|
|
778
|
+
[0, 0],
|
|
779
|
+
];
|
|
780
|
+
var DataProductSort = [3, n0, _DPS, 0, [_SB, _SO], [0, 0]];
|
|
781
|
+
var DataProductSummary = [3, n0, _DPSa, 0, [_PT, _V], [0, 0]];
|
|
782
|
+
var DataProductTitleFilter = [3, n0, _DPTF, 0, [_VL, _WCV], [64 | 0, 0]];
|
|
783
|
+
var DataProductVisibilityFilter = [3, n0, _DPVF, 0, [_VL], [64 | 0]];
|
|
784
|
+
var DeleteResourcePolicyRequest = [
|
|
785
|
+
3,
|
|
786
|
+
n0,
|
|
787
|
+
_DRPR,
|
|
788
|
+
0,
|
|
789
|
+
[_RA],
|
|
790
|
+
[
|
|
791
|
+
[
|
|
792
|
+
0,
|
|
793
|
+
{
|
|
794
|
+
[_hQ]: _rA,
|
|
795
|
+
},
|
|
796
|
+
],
|
|
797
|
+
],
|
|
798
|
+
];
|
|
799
|
+
var DeleteResourcePolicyResponse = [3, n0, _DRPRe, 0, [], []];
|
|
800
|
+
var DescribeChangeSetRequest = [
|
|
801
|
+
3,
|
|
802
|
+
n0,
|
|
803
|
+
_DCSR,
|
|
804
|
+
0,
|
|
805
|
+
[_C, _CSI],
|
|
806
|
+
[
|
|
807
|
+
[
|
|
808
|
+
0,
|
|
809
|
+
{
|
|
810
|
+
[_hQ]: _ca,
|
|
811
|
+
},
|
|
812
|
+
],
|
|
813
|
+
[
|
|
814
|
+
0,
|
|
815
|
+
{
|
|
816
|
+
[_hQ]: _cSI,
|
|
817
|
+
},
|
|
818
|
+
],
|
|
819
|
+
],
|
|
820
|
+
];
|
|
821
|
+
var DescribeChangeSetResponse = [
|
|
822
|
+
3,
|
|
823
|
+
n0,
|
|
824
|
+
_DCSRe,
|
|
825
|
+
0,
|
|
826
|
+
[_CSI, _CSA, _CSN, _I, _ST, _ETn, _S, _FC, _FD, _CSh],
|
|
827
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, () => ChangeSetDescription],
|
|
828
|
+
];
|
|
829
|
+
var DescribeEntityRequest = [
|
|
830
|
+
3,
|
|
831
|
+
n0,
|
|
832
|
+
_DER,
|
|
833
|
+
0,
|
|
834
|
+
[_C, _EI],
|
|
835
|
+
[
|
|
836
|
+
[
|
|
837
|
+
0,
|
|
838
|
+
{
|
|
839
|
+
[_hQ]: _ca,
|
|
840
|
+
},
|
|
841
|
+
],
|
|
842
|
+
[
|
|
843
|
+
0,
|
|
844
|
+
{
|
|
845
|
+
[_hQ]: _eI,
|
|
846
|
+
},
|
|
847
|
+
],
|
|
848
|
+
],
|
|
849
|
+
];
|
|
850
|
+
var DescribeEntityResponse = [
|
|
851
|
+
3,
|
|
852
|
+
n0,
|
|
853
|
+
_DERe,
|
|
854
|
+
0,
|
|
855
|
+
[_ETnt, _EIn, _EA, _LMD, _D, _DD],
|
|
856
|
+
[0, 0, 0, 0, 0, 15],
|
|
857
|
+
];
|
|
858
|
+
var Entity = [3, n0, _En, 0, [_T, _Id], [0, 0]];
|
|
859
|
+
var EntityDetail = [3, n0, _EDn, 0, [_ETnt, _EA, _EIn, _LMD, _DD], [0, 0, 0, 0, 15]];
|
|
860
|
+
var EntityRequest = [3, n0, _ER, 0, [_C, _EI], [0, 0]];
|
|
861
|
+
var EntitySummary = [
|
|
862
|
+
3,
|
|
863
|
+
n0,
|
|
864
|
+
_ES,
|
|
865
|
+
0,
|
|
866
|
+
[_N, _ETnt, _EI, _EA, _LMD, _V, _APSm, _CPSo, _DPSa, _SSPS, _OS, _RAS, _MLPS],
|
|
867
|
+
[
|
|
868
|
+
0,
|
|
869
|
+
0,
|
|
870
|
+
0,
|
|
871
|
+
0,
|
|
872
|
+
0,
|
|
873
|
+
0,
|
|
874
|
+
() => AmiProductSummary,
|
|
875
|
+
() => ContainerProductSummary,
|
|
876
|
+
() => DataProductSummary,
|
|
877
|
+
() => SaaSProductSummary,
|
|
878
|
+
() => OfferSummary,
|
|
879
|
+
() => ResaleAuthorizationSummary,
|
|
880
|
+
() => MachineLearningProductSummary,
|
|
881
|
+
],
|
|
882
|
+
];
|
|
883
|
+
var ErrorDetail = [3, n0, _EDr, 0, [_EC, _EM], [0, 0]];
|
|
884
|
+
var Filter = [3, n0, _F, 0, [_N, _VL], [0, 64 | 0]];
|
|
885
|
+
var GetResourcePolicyRequest = [
|
|
886
|
+
3,
|
|
887
|
+
n0,
|
|
888
|
+
_GRPR,
|
|
889
|
+
0,
|
|
890
|
+
[_RA],
|
|
891
|
+
[
|
|
892
|
+
[
|
|
893
|
+
0,
|
|
894
|
+
{
|
|
895
|
+
[_hQ]: _rA,
|
|
896
|
+
},
|
|
897
|
+
],
|
|
898
|
+
],
|
|
899
|
+
];
|
|
900
|
+
var GetResourcePolicyResponse = [3, n0, _GRPRe, 0, [_P], [0]];
|
|
901
|
+
var InternalServiceException = [
|
|
902
|
+
-3,
|
|
903
|
+
n0,
|
|
904
|
+
_ISE,
|
|
905
|
+
{
|
|
906
|
+
[_e]: _s,
|
|
907
|
+
[_hE]: 500,
|
|
908
|
+
},
|
|
909
|
+
[_M],
|
|
910
|
+
[0],
|
|
911
|
+
];
|
|
912
|
+
schema.TypeRegistry.for(n0).registerError(InternalServiceException, InternalServiceException$1);
|
|
913
|
+
var ListChangeSetsRequest = [
|
|
914
|
+
3,
|
|
915
|
+
n0,
|
|
916
|
+
_LCSR,
|
|
917
|
+
0,
|
|
918
|
+
[_C, _FL, _So, _MR, _NT],
|
|
919
|
+
[0, () => FilterList, () => Sort, 1, 0],
|
|
920
|
+
];
|
|
921
|
+
var ListChangeSetsResponse = [
|
|
922
|
+
3,
|
|
923
|
+
n0,
|
|
924
|
+
_LCSRi,
|
|
925
|
+
0,
|
|
926
|
+
[_CSSL, _NT],
|
|
927
|
+
[() => ChangeSetSummaryList, 0],
|
|
928
|
+
];
|
|
929
|
+
var ListEntitiesRequest = [
|
|
930
|
+
3,
|
|
931
|
+
n0,
|
|
932
|
+
_LER,
|
|
933
|
+
0,
|
|
934
|
+
[_C, _ETnt, _FL, _So, _NT, _MR, _OT, _ETF, _ETS],
|
|
935
|
+
[0, 0, () => FilterList, () => Sort, 0, 1, 0, () => EntityTypeFilters, () => EntityTypeSort],
|
|
936
|
+
];
|
|
937
|
+
var ListEntitiesResponse = [3, n0, _LERi, 0, [_ESL, _NT], [() => EntitySummaryList, 0]];
|
|
938
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RA], [0]];
|
|
939
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_RA, _Ta], [0, () => TagList]];
|
|
940
|
+
var MachineLearningProductEntityIdFilter = [3, n0, _MLPEIF, 0, [_VL], [64 | 0]];
|
|
941
|
+
var MachineLearningProductFilters = [
|
|
942
|
+
3,
|
|
943
|
+
n0,
|
|
944
|
+
_MLPF,
|
|
945
|
+
0,
|
|
946
|
+
[_EI, _LMD, _PT, _V],
|
|
947
|
+
[
|
|
948
|
+
() => MachineLearningProductEntityIdFilter,
|
|
949
|
+
() => MachineLearningProductLastModifiedDateFilter,
|
|
950
|
+
() => MachineLearningProductTitleFilter,
|
|
951
|
+
() => MachineLearningProductVisibilityFilter,
|
|
952
|
+
],
|
|
953
|
+
];
|
|
954
|
+
var MachineLearningProductLastModifiedDateFilter = [
|
|
955
|
+
3,
|
|
956
|
+
n0,
|
|
957
|
+
_MLPLMDF,
|
|
958
|
+
0,
|
|
959
|
+
[_DR],
|
|
960
|
+
[() => MachineLearningProductLastModifiedDateFilterDateRange],
|
|
961
|
+
];
|
|
962
|
+
var MachineLearningProductLastModifiedDateFilterDateRange = [
|
|
963
|
+
3,
|
|
964
|
+
n0,
|
|
965
|
+
_MLPLMDFDR,
|
|
966
|
+
0,
|
|
967
|
+
[_AV, _BV],
|
|
968
|
+
[0, 0],
|
|
969
|
+
];
|
|
970
|
+
var MachineLearningProductSort = [3, n0, _MLPSa, 0, [_SB, _SO], [0, 0]];
|
|
971
|
+
var MachineLearningProductSummary = [3, n0, _MLPS, 0, [_PT, _V], [0, 0]];
|
|
972
|
+
var MachineLearningProductTitleFilter = [3, n0, _MLPTF, 0, [_VL, _WCV], [64 | 0, 0]];
|
|
973
|
+
var MachineLearningProductVisibilityFilter = [3, n0, _MLPVF, 0, [_VL], [64 | 0]];
|
|
974
|
+
var OfferAvailabilityEndDateFilter = [
|
|
975
|
+
3,
|
|
976
|
+
n0,
|
|
977
|
+
_OAEDF,
|
|
978
|
+
0,
|
|
979
|
+
[_DR],
|
|
980
|
+
[() => OfferAvailabilityEndDateFilterDateRange],
|
|
981
|
+
];
|
|
982
|
+
var OfferAvailabilityEndDateFilterDateRange = [3, n0, _OAEDFDR, 0, [_AV, _BV], [0, 0]];
|
|
983
|
+
var OfferBuyerAccountsFilter = [3, n0, _OBAF, 0, [_WCV], [0]];
|
|
984
|
+
var OfferEntityIdFilter = [3, n0, _OEIF, 0, [_VL], [64 | 0]];
|
|
985
|
+
var OfferFilters = [
|
|
986
|
+
3,
|
|
987
|
+
n0,
|
|
988
|
+
_OF,
|
|
989
|
+
0,
|
|
990
|
+
[_EI, _N, _PI, _RAI, _RD, _AED, _BA, _St, _Tar, _LMD],
|
|
991
|
+
[
|
|
992
|
+
() => OfferEntityIdFilter,
|
|
993
|
+
() => OfferNameFilter,
|
|
994
|
+
() => OfferProductIdFilter,
|
|
995
|
+
() => OfferResaleAuthorizationIdFilter,
|
|
996
|
+
() => OfferReleaseDateFilter,
|
|
997
|
+
() => OfferAvailabilityEndDateFilter,
|
|
998
|
+
() => OfferBuyerAccountsFilter,
|
|
999
|
+
() => OfferStateFilter,
|
|
1000
|
+
() => OfferTargetingFilter,
|
|
1001
|
+
() => OfferLastModifiedDateFilter,
|
|
1002
|
+
],
|
|
1003
|
+
];
|
|
1004
|
+
var OfferLastModifiedDateFilter = [
|
|
1005
|
+
3,
|
|
1006
|
+
n0,
|
|
1007
|
+
_OLMDF,
|
|
1008
|
+
0,
|
|
1009
|
+
[_DR],
|
|
1010
|
+
[() => OfferLastModifiedDateFilterDateRange],
|
|
1011
|
+
];
|
|
1012
|
+
var OfferLastModifiedDateFilterDateRange = [3, n0, _OLMDFDR, 0, [_AV, _BV], [0, 0]];
|
|
1013
|
+
var OfferNameFilter = [3, n0, _ONF, 0, [_VL, _WCV], [64 | 0, 0]];
|
|
1014
|
+
var OfferProductIdFilter = [3, n0, _OPIF, 0, [_VL], [64 | 0]];
|
|
1015
|
+
var OfferReleaseDateFilter = [
|
|
1016
|
+
3,
|
|
1017
|
+
n0,
|
|
1018
|
+
_ORDF,
|
|
1019
|
+
0,
|
|
1020
|
+
[_DR],
|
|
1021
|
+
[() => OfferReleaseDateFilterDateRange],
|
|
1022
|
+
];
|
|
1023
|
+
var OfferReleaseDateFilterDateRange = [3, n0, _ORDFDR, 0, [_AV, _BV], [0, 0]];
|
|
1024
|
+
var OfferResaleAuthorizationIdFilter = [3, n0, _ORAIF, 0, [_VL], [64 | 0]];
|
|
1025
|
+
var OfferSort = [3, n0, _OSf, 0, [_SB, _SO], [0, 0]];
|
|
1026
|
+
var OfferStateFilter = [3, n0, _OSF, 0, [_VL], [64 | 0]];
|
|
1027
|
+
var OfferSummary = [
|
|
1028
|
+
3,
|
|
1029
|
+
n0,
|
|
1030
|
+
_OS,
|
|
1031
|
+
0,
|
|
1032
|
+
[_N, _PI, _RAI, _RD, _AED, _BA, _St, _Tar],
|
|
1033
|
+
[0, 0, 0, 0, 0, 64 | 0, 0, 64 | 0],
|
|
1034
|
+
];
|
|
1035
|
+
var OfferTargetingFilter = [3, n0, _OTF, 0, [_VL], [64 | 0]];
|
|
1036
|
+
var PutResourcePolicyRequest = [3, n0, _PRPR, 0, [_RA, _P], [0, 0]];
|
|
1037
|
+
var PutResourcePolicyResponse = [3, n0, _PRPRu, 0, [], []];
|
|
1038
|
+
var ResaleAuthorizationAvailabilityEndDateFilter = [
|
|
1039
|
+
3,
|
|
1040
|
+
n0,
|
|
1041
|
+
_RAAEDF,
|
|
1042
|
+
0,
|
|
1043
|
+
[_DR, _VL],
|
|
1044
|
+
[() => ResaleAuthorizationAvailabilityEndDateFilterDateRange, 64 | 0],
|
|
1045
|
+
];
|
|
1046
|
+
var ResaleAuthorizationAvailabilityEndDateFilterDateRange = [
|
|
1047
|
+
3,
|
|
1048
|
+
n0,
|
|
1049
|
+
_RAAEDFDR,
|
|
1050
|
+
0,
|
|
1051
|
+
[_AV, _BV],
|
|
1052
|
+
[0, 0],
|
|
1053
|
+
];
|
|
1054
|
+
var ResaleAuthorizationCreatedDateFilter = [
|
|
1055
|
+
3,
|
|
1056
|
+
n0,
|
|
1057
|
+
_RACDF,
|
|
1058
|
+
0,
|
|
1059
|
+
[_DR, _VL],
|
|
1060
|
+
[() => ResaleAuthorizationCreatedDateFilterDateRange, 64 | 0],
|
|
1061
|
+
];
|
|
1062
|
+
var ResaleAuthorizationCreatedDateFilterDateRange = [
|
|
1063
|
+
3,
|
|
1064
|
+
n0,
|
|
1065
|
+
_RACDFDR,
|
|
1066
|
+
0,
|
|
1067
|
+
[_AV, _BV],
|
|
1068
|
+
[0, 0],
|
|
1069
|
+
];
|
|
1070
|
+
var ResaleAuthorizationEntityIdFilter = [3, n0, _RAEIF, 0, [_VL], [64 | 0]];
|
|
1071
|
+
var ResaleAuthorizationFilters = [
|
|
1072
|
+
3,
|
|
1073
|
+
n0,
|
|
1074
|
+
_RAF,
|
|
1075
|
+
0,
|
|
1076
|
+
[_EI, _N, _PI, _CD, _AED, _MAI, _PN, _MLN, _RAID, _RLN, _S, _OES, _LMD],
|
|
1077
|
+
[
|
|
1078
|
+
() => ResaleAuthorizationEntityIdFilter,
|
|
1079
|
+
() => ResaleAuthorizationNameFilter,
|
|
1080
|
+
() => ResaleAuthorizationProductIdFilter,
|
|
1081
|
+
() => ResaleAuthorizationCreatedDateFilter,
|
|
1082
|
+
() => ResaleAuthorizationAvailabilityEndDateFilter,
|
|
1083
|
+
() => ResaleAuthorizationManufacturerAccountIdFilter,
|
|
1084
|
+
() => ResaleAuthorizationProductNameFilter,
|
|
1085
|
+
() => ResaleAuthorizationManufacturerLegalNameFilter,
|
|
1086
|
+
() => ResaleAuthorizationResellerAccountIDFilter,
|
|
1087
|
+
() => ResaleAuthorizationResellerLegalNameFilter,
|
|
1088
|
+
() => ResaleAuthorizationStatusFilter,
|
|
1089
|
+
() => ResaleAuthorizationOfferExtendedStatusFilter,
|
|
1090
|
+
() => ResaleAuthorizationLastModifiedDateFilter,
|
|
1091
|
+
],
|
|
1092
|
+
];
|
|
1093
|
+
var ResaleAuthorizationLastModifiedDateFilter = [
|
|
1094
|
+
3,
|
|
1095
|
+
n0,
|
|
1096
|
+
_RALMDF,
|
|
1097
|
+
0,
|
|
1098
|
+
[_DR],
|
|
1099
|
+
[() => ResaleAuthorizationLastModifiedDateFilterDateRange],
|
|
1100
|
+
];
|
|
1101
|
+
var ResaleAuthorizationLastModifiedDateFilterDateRange = [
|
|
1102
|
+
3,
|
|
1103
|
+
n0,
|
|
1104
|
+
_RALMDFDR,
|
|
1105
|
+
0,
|
|
1106
|
+
[_AV, _BV],
|
|
1107
|
+
[0, 0],
|
|
1108
|
+
];
|
|
1109
|
+
var ResaleAuthorizationManufacturerAccountIdFilter = [
|
|
1110
|
+
3,
|
|
1111
|
+
n0,
|
|
1112
|
+
_RAMAIF,
|
|
1113
|
+
0,
|
|
1114
|
+
[_VL, _WCV],
|
|
1115
|
+
[64 | 0, 0],
|
|
1116
|
+
];
|
|
1117
|
+
var ResaleAuthorizationManufacturerLegalNameFilter = [
|
|
1118
|
+
3,
|
|
1119
|
+
n0,
|
|
1120
|
+
_RAMLNF,
|
|
1121
|
+
0,
|
|
1122
|
+
[_VL, _WCV],
|
|
1123
|
+
[64 | 0, 0],
|
|
1124
|
+
];
|
|
1125
|
+
var ResaleAuthorizationNameFilter = [3, n0, _RANF, 0, [_VL, _WCV], [64 | 0, 0]];
|
|
1126
|
+
var ResaleAuthorizationOfferExtendedStatusFilter = [3, n0, _RAOESF, 0, [_VL], [64 | 0]];
|
|
1127
|
+
var ResaleAuthorizationProductIdFilter = [3, n0, _RAPIF, 0, [_VL, _WCV], [64 | 0, 0]];
|
|
1128
|
+
var ResaleAuthorizationProductNameFilter = [3, n0, _RAPNF, 0, [_VL, _WCV], [64 | 0, 0]];
|
|
1129
|
+
var ResaleAuthorizationResellerAccountIDFilter = [
|
|
1130
|
+
3,
|
|
1131
|
+
n0,
|
|
1132
|
+
_RARAIDF,
|
|
1133
|
+
0,
|
|
1134
|
+
[_VL, _WCV],
|
|
1135
|
+
[64 | 0, 0],
|
|
1136
|
+
];
|
|
1137
|
+
var ResaleAuthorizationResellerLegalNameFilter = [
|
|
1138
|
+
3,
|
|
1139
|
+
n0,
|
|
1140
|
+
_RARLNF,
|
|
1141
|
+
0,
|
|
1142
|
+
[_VL, _WCV],
|
|
1143
|
+
[64 | 0, 0],
|
|
1144
|
+
];
|
|
1145
|
+
var ResaleAuthorizationSort = [3, n0, _RASe, 0, [_SB, _SO], [0, 0]];
|
|
1146
|
+
var ResaleAuthorizationStatusFilter = [3, n0, _RASF, 0, [_VL], [64 | 0]];
|
|
1147
|
+
var ResaleAuthorizationSummary = [
|
|
1148
|
+
3,
|
|
1149
|
+
n0,
|
|
1150
|
+
_RAS,
|
|
1151
|
+
0,
|
|
1152
|
+
[_N, _PI, _PN, _MAI, _MLN, _RAID, _RLN, _S, _OES, _CD, _AED],
|
|
1153
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
|
|
1154
|
+
];
|
|
1155
|
+
var ResourceInUseException = [
|
|
1156
|
+
-3,
|
|
1157
|
+
n0,
|
|
1158
|
+
_RIUE,
|
|
1159
|
+
{
|
|
1160
|
+
[_e]: _c,
|
|
1161
|
+
[_hE]: 423,
|
|
1162
|
+
},
|
|
1163
|
+
[_M],
|
|
1164
|
+
[0],
|
|
1165
|
+
];
|
|
1166
|
+
schema.TypeRegistry.for(n0).registerError(ResourceInUseException, ResourceInUseException$1);
|
|
1167
|
+
var ResourceNotFoundException = [
|
|
1168
|
+
-3,
|
|
1169
|
+
n0,
|
|
1170
|
+
_RNFE,
|
|
1171
|
+
{
|
|
1172
|
+
[_e]: _c,
|
|
1173
|
+
[_hE]: 404,
|
|
1174
|
+
},
|
|
1175
|
+
[_M],
|
|
1176
|
+
[0],
|
|
1177
|
+
];
|
|
1178
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
1179
|
+
var ResourceNotSupportedException = [
|
|
1180
|
+
-3,
|
|
1181
|
+
n0,
|
|
1182
|
+
_RNSE,
|
|
1183
|
+
{
|
|
1184
|
+
[_e]: _c,
|
|
1185
|
+
[_hE]: 415,
|
|
1186
|
+
},
|
|
1187
|
+
[_M],
|
|
1188
|
+
[0],
|
|
1189
|
+
];
|
|
1190
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotSupportedException, ResourceNotSupportedException$1);
|
|
1191
|
+
var SaaSProductEntityIdFilter = [3, n0, _SSPEIF, 0, [_VL], [64 | 0]];
|
|
1192
|
+
var SaaSProductFilters = [
|
|
1193
|
+
3,
|
|
1194
|
+
n0,
|
|
1195
|
+
_SSPF,
|
|
1196
|
+
0,
|
|
1197
|
+
[_EI, _PT, _V, _LMD],
|
|
1198
|
+
[
|
|
1199
|
+
() => SaaSProductEntityIdFilter,
|
|
1200
|
+
() => SaaSProductTitleFilter,
|
|
1201
|
+
() => SaaSProductVisibilityFilter,
|
|
1202
|
+
() => SaaSProductLastModifiedDateFilter,
|
|
1203
|
+
],
|
|
1204
|
+
];
|
|
1205
|
+
var SaaSProductLastModifiedDateFilter = [
|
|
1206
|
+
3,
|
|
1207
|
+
n0,
|
|
1208
|
+
_SSPLMDF,
|
|
1209
|
+
0,
|
|
1210
|
+
[_DR],
|
|
1211
|
+
[() => SaaSProductLastModifiedDateFilterDateRange],
|
|
1212
|
+
];
|
|
1213
|
+
var SaaSProductLastModifiedDateFilterDateRange = [
|
|
1214
|
+
3,
|
|
1215
|
+
n0,
|
|
1216
|
+
_SSPLMDFDR,
|
|
1217
|
+
0,
|
|
1218
|
+
[_AV, _BV],
|
|
1219
|
+
[0, 0],
|
|
1220
|
+
];
|
|
1221
|
+
var SaaSProductSort = [3, n0, _SSPSa, 0, [_SB, _SO], [0, 0]];
|
|
1222
|
+
var SaaSProductSummary = [3, n0, _SSPS, 0, [_PT, _V], [0, 0]];
|
|
1223
|
+
var SaaSProductTitleFilter = [3, n0, _SSPTF, 0, [_VL, _WCV], [64 | 0, 0]];
|
|
1224
|
+
var SaaSProductVisibilityFilter = [3, n0, _SSPVF, 0, [_VL], [64 | 0]];
|
|
1225
|
+
var ServiceQuotaExceededException = [
|
|
1226
|
+
-3,
|
|
1227
|
+
n0,
|
|
1228
|
+
_SQEE,
|
|
1229
|
+
{
|
|
1230
|
+
[_e]: _c,
|
|
1231
|
+
[_hE]: 402,
|
|
1232
|
+
},
|
|
1233
|
+
[_M],
|
|
1234
|
+
[0],
|
|
1235
|
+
];
|
|
1236
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
|
|
1237
|
+
var Sort = [3, n0, _So, 0, [_SB, _SO], [0, 0]];
|
|
1238
|
+
var StartChangeSetRequest = [
|
|
1239
|
+
3,
|
|
1240
|
+
n0,
|
|
1241
|
+
_SCSR,
|
|
1242
|
+
0,
|
|
1243
|
+
[_C, _CSh, _CSN, _CRT, _CST, _I],
|
|
1244
|
+
[0, () => RequestedChangeList, 0, [0, 4], () => TagList, 0],
|
|
1245
|
+
];
|
|
1246
|
+
var StartChangeSetResponse = [3, n0, _SCSRt, 0, [_CSI, _CSA], [0, 0]];
|
|
1247
|
+
var Tag = [3, n0, _Tag, 0, [_K, _Va], [0, 0]];
|
|
1248
|
+
var TagResourceRequest = [3, n0, _TRR, 0, [_RA, _Ta], [0, () => TagList]];
|
|
1249
|
+
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
1250
|
+
var ThrottlingException = [
|
|
1251
|
+
-3,
|
|
1252
|
+
n0,
|
|
1253
|
+
_TE,
|
|
1254
|
+
{
|
|
1255
|
+
[_e]: _c,
|
|
1256
|
+
[_hE]: 429,
|
|
1257
|
+
},
|
|
1258
|
+
[_M],
|
|
1259
|
+
[0],
|
|
1260
|
+
];
|
|
1261
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
|
|
1262
|
+
var UntagResourceRequest = [3, n0, _URR, 0, [_RA, _TK], [0, 64 | 0]];
|
|
1263
|
+
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
1264
|
+
var ValidationException = [
|
|
1265
|
+
-3,
|
|
1266
|
+
n0,
|
|
1267
|
+
_VE,
|
|
1268
|
+
{
|
|
1269
|
+
[_e]: _c,
|
|
1270
|
+
[_hE]: 422,
|
|
1271
|
+
},
|
|
1272
|
+
[_M],
|
|
1273
|
+
[0],
|
|
1274
|
+
];
|
|
1275
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
|
|
1276
|
+
var MarketplaceCatalogServiceException = [
|
|
1277
|
+
-3,
|
|
1278
|
+
_sm,
|
|
1279
|
+
"MarketplaceCatalogServiceException",
|
|
1280
|
+
0,
|
|
1281
|
+
[],
|
|
1282
|
+
[],
|
|
1283
|
+
];
|
|
1284
|
+
schema.TypeRegistry.for(_sm).registerError(MarketplaceCatalogServiceException, MarketplaceCatalogServiceException$1);
|
|
1285
|
+
var ChangeSetDescription = [1, n0, _CSD, 0, () => ChangeSummary];
|
|
1286
|
+
var ChangeSetSummaryList = [1, n0, _CSSL, 0, () => ChangeSetSummaryListItem];
|
|
1287
|
+
var EntityRequestList = [1, n0, _ERL, 0, () => EntityRequest];
|
|
1288
|
+
var EntitySummaryList = [1, n0, _ESL, 0, () => EntitySummary];
|
|
1289
|
+
var ErrorDetailList = [1, n0, _EDL, 0, () => ErrorDetail];
|
|
1290
|
+
var FilterList = [1, n0, _FL, 0, () => Filter];
|
|
1291
|
+
var RequestedChangeList = [1, n0, _RCL, 0, () => Change];
|
|
1292
|
+
var TagList = [1, n0, _TL, 0, () => Tag];
|
|
1293
|
+
var EntityDetails = [2, n0, _ED, 0, 0, () => EntityDetail];
|
|
1294
|
+
var Errors = [2, n0, _E, 0, 0, () => BatchDescribeErrorDetail];
|
|
1295
|
+
var EntityTypeFilters = [
|
|
1296
|
+
3,
|
|
1297
|
+
n0,
|
|
1298
|
+
_ETF,
|
|
1299
|
+
0,
|
|
1300
|
+
[_DPF, _SSPF, _APF, _OF, _CPF, _RAF, _MLPF],
|
|
1301
|
+
[
|
|
1302
|
+
() => DataProductFilters,
|
|
1303
|
+
() => SaaSProductFilters,
|
|
1304
|
+
() => AmiProductFilters,
|
|
1305
|
+
() => OfferFilters,
|
|
1306
|
+
() => ContainerProductFilters,
|
|
1307
|
+
() => ResaleAuthorizationFilters,
|
|
1308
|
+
() => MachineLearningProductFilters,
|
|
1309
|
+
],
|
|
1310
|
+
];
|
|
1311
|
+
var EntityTypeSort = [
|
|
1312
|
+
3,
|
|
1313
|
+
n0,
|
|
1314
|
+
_ETS,
|
|
1315
|
+
0,
|
|
1316
|
+
[_DPS, _SSPSa, _APS, _OSf, _CPS, _RASe, _MLPSa],
|
|
1317
|
+
[
|
|
1318
|
+
() => DataProductSort,
|
|
1319
|
+
() => SaaSProductSort,
|
|
1320
|
+
() => AmiProductSort,
|
|
1321
|
+
() => OfferSort,
|
|
1322
|
+
() => ContainerProductSort,
|
|
1323
|
+
() => ResaleAuthorizationSort,
|
|
1324
|
+
() => MachineLearningProductSort,
|
|
1325
|
+
],
|
|
1326
|
+
];
|
|
1327
|
+
var BatchDescribeEntities = [
|
|
1328
|
+
9,
|
|
1329
|
+
n0,
|
|
1330
|
+
_BDE,
|
|
1331
|
+
{
|
|
1332
|
+
[_h]: ["POST", "/BatchDescribeEntities", 200],
|
|
1333
|
+
},
|
|
1334
|
+
() => BatchDescribeEntitiesRequest,
|
|
1335
|
+
() => BatchDescribeEntitiesResponse,
|
|
1336
|
+
];
|
|
1337
|
+
var CancelChangeSet = [
|
|
1338
|
+
9,
|
|
1339
|
+
n0,
|
|
1340
|
+
_CCS,
|
|
1341
|
+
{
|
|
1342
|
+
[_h]: ["PATCH", "/CancelChangeSet", 200],
|
|
1343
|
+
},
|
|
1344
|
+
() => CancelChangeSetRequest,
|
|
1345
|
+
() => CancelChangeSetResponse,
|
|
1346
|
+
];
|
|
1347
|
+
var DeleteResourcePolicy = [
|
|
1348
|
+
9,
|
|
1349
|
+
n0,
|
|
1350
|
+
_DRP,
|
|
1351
|
+
{
|
|
1352
|
+
[_h]: ["DELETE", "/DeleteResourcePolicy", 200],
|
|
1353
|
+
},
|
|
1354
|
+
() => DeleteResourcePolicyRequest,
|
|
1355
|
+
() => DeleteResourcePolicyResponse,
|
|
1356
|
+
];
|
|
1357
|
+
var DescribeChangeSet = [
|
|
1358
|
+
9,
|
|
1359
|
+
n0,
|
|
1360
|
+
_DCS,
|
|
1361
|
+
{
|
|
1362
|
+
[_h]: ["GET", "/DescribeChangeSet", 200],
|
|
1363
|
+
},
|
|
1364
|
+
() => DescribeChangeSetRequest,
|
|
1365
|
+
() => DescribeChangeSetResponse,
|
|
1366
|
+
];
|
|
1367
|
+
var DescribeEntity = [
|
|
1368
|
+
9,
|
|
1369
|
+
n0,
|
|
1370
|
+
_DE,
|
|
1371
|
+
{
|
|
1372
|
+
[_h]: ["GET", "/DescribeEntity", 200],
|
|
1373
|
+
},
|
|
1374
|
+
() => DescribeEntityRequest,
|
|
1375
|
+
() => DescribeEntityResponse,
|
|
1376
|
+
];
|
|
1377
|
+
var GetResourcePolicy = [
|
|
1378
|
+
9,
|
|
1379
|
+
n0,
|
|
1380
|
+
_GRP,
|
|
1381
|
+
{
|
|
1382
|
+
[_h]: ["GET", "/GetResourcePolicy", 200],
|
|
1383
|
+
},
|
|
1384
|
+
() => GetResourcePolicyRequest,
|
|
1385
|
+
() => GetResourcePolicyResponse,
|
|
1386
|
+
];
|
|
1387
|
+
var ListChangeSets = [
|
|
1388
|
+
9,
|
|
1389
|
+
n0,
|
|
1390
|
+
_LCS,
|
|
1391
|
+
{
|
|
1392
|
+
[_h]: ["POST", "/ListChangeSets", 200],
|
|
1393
|
+
},
|
|
1394
|
+
() => ListChangeSetsRequest,
|
|
1395
|
+
() => ListChangeSetsResponse,
|
|
1396
|
+
];
|
|
1397
|
+
var ListEntities = [
|
|
1398
|
+
9,
|
|
1399
|
+
n0,
|
|
1400
|
+
_LE,
|
|
1401
|
+
{
|
|
1402
|
+
[_h]: ["POST", "/ListEntities", 200],
|
|
1403
|
+
},
|
|
1404
|
+
() => ListEntitiesRequest,
|
|
1405
|
+
() => ListEntitiesResponse,
|
|
1406
|
+
];
|
|
1407
|
+
var ListTagsForResource = [
|
|
1408
|
+
9,
|
|
1409
|
+
n0,
|
|
1410
|
+
_LTFR,
|
|
1411
|
+
{
|
|
1412
|
+
[_h]: ["POST", "/ListTagsForResource", 200],
|
|
1413
|
+
},
|
|
1414
|
+
() => ListTagsForResourceRequest,
|
|
1415
|
+
() => ListTagsForResourceResponse,
|
|
1416
|
+
];
|
|
1417
|
+
var PutResourcePolicy = [
|
|
1418
|
+
9,
|
|
1419
|
+
n0,
|
|
1420
|
+
_PRP,
|
|
1421
|
+
{
|
|
1422
|
+
[_h]: ["POST", "/PutResourcePolicy", 200],
|
|
1423
|
+
},
|
|
1424
|
+
() => PutResourcePolicyRequest,
|
|
1425
|
+
() => PutResourcePolicyResponse,
|
|
1426
|
+
];
|
|
1427
|
+
var StartChangeSet = [
|
|
1428
|
+
9,
|
|
1429
|
+
n0,
|
|
1430
|
+
_SCS,
|
|
1431
|
+
{
|
|
1432
|
+
[_h]: ["POST", "/StartChangeSet", 200],
|
|
1433
|
+
},
|
|
1434
|
+
() => StartChangeSetRequest,
|
|
1435
|
+
() => StartChangeSetResponse,
|
|
1436
|
+
];
|
|
1437
|
+
var TagResource = [
|
|
1438
|
+
9,
|
|
1439
|
+
n0,
|
|
1440
|
+
_TR,
|
|
1441
|
+
{
|
|
1442
|
+
[_h]: ["POST", "/TagResource", 200],
|
|
1443
|
+
},
|
|
1444
|
+
() => TagResourceRequest,
|
|
1445
|
+
() => TagResourceResponse,
|
|
1446
|
+
];
|
|
1447
|
+
var UntagResource = [
|
|
1448
|
+
9,
|
|
1449
|
+
n0,
|
|
1450
|
+
_UR,
|
|
1451
|
+
{
|
|
1452
|
+
[_h]: ["POST", "/UntagResource", 200],
|
|
1453
|
+
},
|
|
1454
|
+
() => UntagResourceRequest,
|
|
1455
|
+
() => UntagResourceResponse,
|
|
1456
|
+
];
|
|
988
1457
|
|
|
989
1458
|
class BatchDescribeEntitiesCommand extends smithyClient.Command
|
|
990
1459
|
.classBuilder()
|
|
991
1460
|
.ep(commonParams)
|
|
992
1461
|
.m(function (Command, cs, config, o) {
|
|
993
|
-
return [
|
|
994
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
995
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
996
|
-
];
|
|
1462
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
997
1463
|
})
|
|
998
1464
|
.s("AWSMPSeymour", "BatchDescribeEntities", {})
|
|
999
1465
|
.n("MarketplaceCatalogClient", "BatchDescribeEntitiesCommand")
|
|
1000
|
-
.
|
|
1001
|
-
.ser(se_BatchDescribeEntitiesCommand)
|
|
1002
|
-
.de(de_BatchDescribeEntitiesCommand)
|
|
1466
|
+
.sc(BatchDescribeEntities)
|
|
1003
1467
|
.build() {
|
|
1004
1468
|
}
|
|
1005
1469
|
|
|
@@ -1007,16 +1471,11 @@ class CancelChangeSetCommand extends smithyClient.Command
|
|
|
1007
1471
|
.classBuilder()
|
|
1008
1472
|
.ep(commonParams)
|
|
1009
1473
|
.m(function (Command, cs, config, o) {
|
|
1010
|
-
return [
|
|
1011
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1012
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1013
|
-
];
|
|
1474
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1014
1475
|
})
|
|
1015
1476
|
.s("AWSMPSeymour", "CancelChangeSet", {})
|
|
1016
1477
|
.n("MarketplaceCatalogClient", "CancelChangeSetCommand")
|
|
1017
|
-
.
|
|
1018
|
-
.ser(se_CancelChangeSetCommand)
|
|
1019
|
-
.de(de_CancelChangeSetCommand)
|
|
1478
|
+
.sc(CancelChangeSet)
|
|
1020
1479
|
.build() {
|
|
1021
1480
|
}
|
|
1022
1481
|
|
|
@@ -1024,16 +1483,11 @@ class DeleteResourcePolicyCommand extends smithyClient.Command
|
|
|
1024
1483
|
.classBuilder()
|
|
1025
1484
|
.ep(commonParams)
|
|
1026
1485
|
.m(function (Command, cs, config, o) {
|
|
1027
|
-
return [
|
|
1028
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1029
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1030
|
-
];
|
|
1486
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1031
1487
|
})
|
|
1032
1488
|
.s("AWSMPSeymour", "DeleteResourcePolicy", {})
|
|
1033
1489
|
.n("MarketplaceCatalogClient", "DeleteResourcePolicyCommand")
|
|
1034
|
-
.
|
|
1035
|
-
.ser(se_DeleteResourcePolicyCommand)
|
|
1036
|
-
.de(de_DeleteResourcePolicyCommand)
|
|
1490
|
+
.sc(DeleteResourcePolicy)
|
|
1037
1491
|
.build() {
|
|
1038
1492
|
}
|
|
1039
1493
|
|
|
@@ -1041,16 +1495,11 @@ class DescribeChangeSetCommand extends smithyClient.Command
|
|
|
1041
1495
|
.classBuilder()
|
|
1042
1496
|
.ep(commonParams)
|
|
1043
1497
|
.m(function (Command, cs, config, o) {
|
|
1044
|
-
return [
|
|
1045
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1046
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1047
|
-
];
|
|
1498
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1048
1499
|
})
|
|
1049
1500
|
.s("AWSMPSeymour", "DescribeChangeSet", {})
|
|
1050
1501
|
.n("MarketplaceCatalogClient", "DescribeChangeSetCommand")
|
|
1051
|
-
.
|
|
1052
|
-
.ser(se_DescribeChangeSetCommand)
|
|
1053
|
-
.de(de_DescribeChangeSetCommand)
|
|
1502
|
+
.sc(DescribeChangeSet)
|
|
1054
1503
|
.build() {
|
|
1055
1504
|
}
|
|
1056
1505
|
|
|
@@ -1058,16 +1507,11 @@ class DescribeEntityCommand extends smithyClient.Command
|
|
|
1058
1507
|
.classBuilder()
|
|
1059
1508
|
.ep(commonParams)
|
|
1060
1509
|
.m(function (Command, cs, config, o) {
|
|
1061
|
-
return [
|
|
1062
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1063
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1064
|
-
];
|
|
1510
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1065
1511
|
})
|
|
1066
1512
|
.s("AWSMPSeymour", "DescribeEntity", {})
|
|
1067
1513
|
.n("MarketplaceCatalogClient", "DescribeEntityCommand")
|
|
1068
|
-
.
|
|
1069
|
-
.ser(se_DescribeEntityCommand)
|
|
1070
|
-
.de(de_DescribeEntityCommand)
|
|
1514
|
+
.sc(DescribeEntity)
|
|
1071
1515
|
.build() {
|
|
1072
1516
|
}
|
|
1073
1517
|
|
|
@@ -1075,16 +1519,11 @@ class GetResourcePolicyCommand extends smithyClient.Command
|
|
|
1075
1519
|
.classBuilder()
|
|
1076
1520
|
.ep(commonParams)
|
|
1077
1521
|
.m(function (Command, cs, config, o) {
|
|
1078
|
-
return [
|
|
1079
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1080
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1081
|
-
];
|
|
1522
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1082
1523
|
})
|
|
1083
1524
|
.s("AWSMPSeymour", "GetResourcePolicy", {})
|
|
1084
1525
|
.n("MarketplaceCatalogClient", "GetResourcePolicyCommand")
|
|
1085
|
-
.
|
|
1086
|
-
.ser(se_GetResourcePolicyCommand)
|
|
1087
|
-
.de(de_GetResourcePolicyCommand)
|
|
1526
|
+
.sc(GetResourcePolicy)
|
|
1088
1527
|
.build() {
|
|
1089
1528
|
}
|
|
1090
1529
|
|
|
@@ -1092,16 +1531,11 @@ class ListChangeSetsCommand extends smithyClient.Command
|
|
|
1092
1531
|
.classBuilder()
|
|
1093
1532
|
.ep(commonParams)
|
|
1094
1533
|
.m(function (Command, cs, config, o) {
|
|
1095
|
-
return [
|
|
1096
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1097
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1098
|
-
];
|
|
1534
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1099
1535
|
})
|
|
1100
1536
|
.s("AWSMPSeymour", "ListChangeSets", {})
|
|
1101
1537
|
.n("MarketplaceCatalogClient", "ListChangeSetsCommand")
|
|
1102
|
-
.
|
|
1103
|
-
.ser(se_ListChangeSetsCommand)
|
|
1104
|
-
.de(de_ListChangeSetsCommand)
|
|
1538
|
+
.sc(ListChangeSets)
|
|
1105
1539
|
.build() {
|
|
1106
1540
|
}
|
|
1107
1541
|
|
|
@@ -1109,16 +1543,11 @@ class ListEntitiesCommand extends smithyClient.Command
|
|
|
1109
1543
|
.classBuilder()
|
|
1110
1544
|
.ep(commonParams)
|
|
1111
1545
|
.m(function (Command, cs, config, o) {
|
|
1112
|
-
return [
|
|
1113
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1114
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1115
|
-
];
|
|
1546
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1116
1547
|
})
|
|
1117
1548
|
.s("AWSMPSeymour", "ListEntities", {})
|
|
1118
1549
|
.n("MarketplaceCatalogClient", "ListEntitiesCommand")
|
|
1119
|
-
.
|
|
1120
|
-
.ser(se_ListEntitiesCommand)
|
|
1121
|
-
.de(de_ListEntitiesCommand)
|
|
1550
|
+
.sc(ListEntities)
|
|
1122
1551
|
.build() {
|
|
1123
1552
|
}
|
|
1124
1553
|
|
|
@@ -1126,16 +1555,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1126
1555
|
.classBuilder()
|
|
1127
1556
|
.ep(commonParams)
|
|
1128
1557
|
.m(function (Command, cs, config, o) {
|
|
1129
|
-
return [
|
|
1130
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1131
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1132
|
-
];
|
|
1558
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1133
1559
|
})
|
|
1134
1560
|
.s("AWSMPSeymour", "ListTagsForResource", {})
|
|
1135
1561
|
.n("MarketplaceCatalogClient", "ListTagsForResourceCommand")
|
|
1136
|
-
.
|
|
1137
|
-
.ser(se_ListTagsForResourceCommand)
|
|
1138
|
-
.de(de_ListTagsForResourceCommand)
|
|
1562
|
+
.sc(ListTagsForResource)
|
|
1139
1563
|
.build() {
|
|
1140
1564
|
}
|
|
1141
1565
|
|
|
@@ -1143,16 +1567,11 @@ class PutResourcePolicyCommand extends smithyClient.Command
|
|
|
1143
1567
|
.classBuilder()
|
|
1144
1568
|
.ep(commonParams)
|
|
1145
1569
|
.m(function (Command, cs, config, o) {
|
|
1146
|
-
return [
|
|
1147
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1148
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1149
|
-
];
|
|
1570
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1150
1571
|
})
|
|
1151
1572
|
.s("AWSMPSeymour", "PutResourcePolicy", {})
|
|
1152
1573
|
.n("MarketplaceCatalogClient", "PutResourcePolicyCommand")
|
|
1153
|
-
.
|
|
1154
|
-
.ser(se_PutResourcePolicyCommand)
|
|
1155
|
-
.de(de_PutResourcePolicyCommand)
|
|
1574
|
+
.sc(PutResourcePolicy)
|
|
1156
1575
|
.build() {
|
|
1157
1576
|
}
|
|
1158
1577
|
|
|
@@ -1160,16 +1579,11 @@ class StartChangeSetCommand extends smithyClient.Command
|
|
|
1160
1579
|
.classBuilder()
|
|
1161
1580
|
.ep(commonParams)
|
|
1162
1581
|
.m(function (Command, cs, config, o) {
|
|
1163
|
-
return [
|
|
1164
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1165
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1166
|
-
];
|
|
1582
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1167
1583
|
})
|
|
1168
1584
|
.s("AWSMPSeymour", "StartChangeSet", {})
|
|
1169
1585
|
.n("MarketplaceCatalogClient", "StartChangeSetCommand")
|
|
1170
|
-
.
|
|
1171
|
-
.ser(se_StartChangeSetCommand)
|
|
1172
|
-
.de(de_StartChangeSetCommand)
|
|
1586
|
+
.sc(StartChangeSet)
|
|
1173
1587
|
.build() {
|
|
1174
1588
|
}
|
|
1175
1589
|
|
|
@@ -1177,16 +1591,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1177
1591
|
.classBuilder()
|
|
1178
1592
|
.ep(commonParams)
|
|
1179
1593
|
.m(function (Command, cs, config, o) {
|
|
1180
|
-
return [
|
|
1181
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1182
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1183
|
-
];
|
|
1594
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1184
1595
|
})
|
|
1185
1596
|
.s("AWSMPSeymour", "TagResource", {})
|
|
1186
1597
|
.n("MarketplaceCatalogClient", "TagResourceCommand")
|
|
1187
|
-
.
|
|
1188
|
-
.ser(se_TagResourceCommand)
|
|
1189
|
-
.de(de_TagResourceCommand)
|
|
1598
|
+
.sc(TagResource)
|
|
1190
1599
|
.build() {
|
|
1191
1600
|
}
|
|
1192
1601
|
|
|
@@ -1194,16 +1603,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1194
1603
|
.classBuilder()
|
|
1195
1604
|
.ep(commonParams)
|
|
1196
1605
|
.m(function (Command, cs, config, o) {
|
|
1197
|
-
return [
|
|
1198
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1199
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1200
|
-
];
|
|
1606
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1201
1607
|
})
|
|
1202
1608
|
.s("AWSMPSeymour", "UntagResource", {})
|
|
1203
1609
|
.n("MarketplaceCatalogClient", "UntagResourceCommand")
|
|
1204
|
-
.
|
|
1205
|
-
.ser(se_UntagResourceCommand)
|
|
1206
|
-
.de(de_UntagResourceCommand)
|
|
1610
|
+
.sc(UntagResource)
|
|
1207
1611
|
.build() {
|
|
1208
1612
|
}
|
|
1209
1613
|
|
|
@@ -1238,7 +1642,7 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1238
1642
|
enumerable: true,
|
|
1239
1643
|
get: function () { return smithyClient.Client; }
|
|
1240
1644
|
});
|
|
1241
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
1645
|
+
exports.AccessDeniedException = AccessDeniedException$1;
|
|
1242
1646
|
exports.AmiProductSortBy = AmiProductSortBy;
|
|
1243
1647
|
exports.AmiProductVisibilityString = AmiProductVisibilityString;
|
|
1244
1648
|
exports.BatchDescribeEntitiesCommand = BatchDescribeEntitiesCommand;
|
|
@@ -1254,7 +1658,7 @@ exports.DescribeEntityCommand = DescribeEntityCommand;
|
|
|
1254
1658
|
exports.FailureCode = FailureCode;
|
|
1255
1659
|
exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
|
|
1256
1660
|
exports.Intent = Intent;
|
|
1257
|
-
exports.InternalServiceException = InternalServiceException;
|
|
1661
|
+
exports.InternalServiceException = InternalServiceException$1;
|
|
1258
1662
|
exports.ListChangeSetsCommand = ListChangeSetsCommand;
|
|
1259
1663
|
exports.ListEntitiesCommand = ListEntitiesCommand;
|
|
1260
1664
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
@@ -1262,7 +1666,7 @@ exports.MachineLearningProductSortBy = MachineLearningProductSortBy;
|
|
|
1262
1666
|
exports.MachineLearningProductVisibilityString = MachineLearningProductVisibilityString;
|
|
1263
1667
|
exports.MarketplaceCatalog = MarketplaceCatalog;
|
|
1264
1668
|
exports.MarketplaceCatalogClient = MarketplaceCatalogClient;
|
|
1265
|
-
exports.MarketplaceCatalogServiceException = MarketplaceCatalogServiceException;
|
|
1669
|
+
exports.MarketplaceCatalogServiceException = MarketplaceCatalogServiceException$1;
|
|
1266
1670
|
exports.OfferSortBy = OfferSortBy;
|
|
1267
1671
|
exports.OfferStateString = OfferStateString;
|
|
1268
1672
|
exports.OfferTargetingString = OfferTargetingString;
|
|
@@ -1270,17 +1674,17 @@ exports.OwnershipType = OwnershipType;
|
|
|
1270
1674
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
1271
1675
|
exports.ResaleAuthorizationSortBy = ResaleAuthorizationSortBy;
|
|
1272
1676
|
exports.ResaleAuthorizationStatusString = ResaleAuthorizationStatusString;
|
|
1273
|
-
exports.ResourceInUseException = ResourceInUseException;
|
|
1274
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1275
|
-
exports.ResourceNotSupportedException = ResourceNotSupportedException;
|
|
1677
|
+
exports.ResourceInUseException = ResourceInUseException$1;
|
|
1678
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
1679
|
+
exports.ResourceNotSupportedException = ResourceNotSupportedException$1;
|
|
1276
1680
|
exports.SaaSProductSortBy = SaaSProductSortBy;
|
|
1277
1681
|
exports.SaaSProductVisibilityString = SaaSProductVisibilityString;
|
|
1278
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1682
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
1279
1683
|
exports.SortOrder = SortOrder;
|
|
1280
1684
|
exports.StartChangeSetCommand = StartChangeSetCommand;
|
|
1281
1685
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1282
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1686
|
+
exports.ThrottlingException = ThrottlingException$1;
|
|
1283
1687
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1284
|
-
exports.ValidationException = ValidationException;
|
|
1688
|
+
exports.ValidationException = ValidationException$1;
|
|
1285
1689
|
exports.paginateListChangeSets = paginateListChangeSets;
|
|
1286
1690
|
exports.paginateListEntities = paginateListEntities;
|