@aws-sdk/client-marketplace-catalog 3.52.0 → 3.53.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/CHANGELOG.md +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/MarketplaceCatalogServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +114 -1
- package/dist-cjs/protocols/Aws_restJson1.js +117 -319
- package/dist-es/index.js +1 -0
- package/dist-es/models/MarketplaceCatalogServiceException.js +12 -0
- package/dist-es/models/models_0.js +106 -1
- package/dist-es/protocols/Aws_restJson1.js +183 -352
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/MarketplaceCatalogServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +58 -25
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/MarketplaceCatalogServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +42 -25
- package/package.json +25 -25
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** generate service exceptions as classes ([#3267](https://github.com/aws/aws-sdk-js-v3/issues/3267)) ([ca64fee](https://github.com/aws/aws-sdk-js-v3/commit/ca64feed3351c394c07dc26b782a5760a396a074))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-sdk/client-marketplace-catalog
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MarketplaceCatalogServiceException = void 0;
|
|
3
4
|
const tslib_1 = require("tslib");
|
|
4
5
|
tslib_1.__exportStar(require("./MarketplaceCatalog"), exports);
|
|
5
6
|
tslib_1.__exportStar(require("./MarketplaceCatalogClient"), exports);
|
|
6
7
|
tslib_1.__exportStar(require("./commands"), exports);
|
|
7
8
|
tslib_1.__exportStar(require("./models"), exports);
|
|
8
9
|
tslib_1.__exportStar(require("./pagination"), exports);
|
|
10
|
+
var MarketplaceCatalogServiceException_1 = require("./models/MarketplaceCatalogServiceException");
|
|
11
|
+
Object.defineProperty(exports, "MarketplaceCatalogServiceException", { enumerable: true, get: function () { return MarketplaceCatalogServiceException_1.MarketplaceCatalogServiceException; } });
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MarketplaceCatalogServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
|
+
class MarketplaceCatalogServiceException extends smithy_client_1.ServiceException {
|
|
6
|
+
constructor(options) {
|
|
7
|
+
super(options);
|
|
8
|
+
Object.setPrototypeOf(this, MarketplaceCatalogServiceException.prototype);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.MarketplaceCatalogServiceException = MarketplaceCatalogServiceException;
|
|
@@ -1,6 +1,21 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.StartChangeSetResponse = exports.StartChangeSetRequest = exports.Change = exports.ListEntitiesResponse = exports.EntitySummary = exports.ListEntitiesRequest = exports.ListChangeSetsResponse = exports.ChangeSetSummaryListItem = exports.ListChangeSetsRequest = exports.Sort = exports.SortOrder = exports.Filter = exports.DescribeEntityResponse = exports.DescribeEntityRequest = exports.DescribeChangeSetResponse = exports.ChangeStatus = exports.FailureCode = exports.ChangeSummary = exports.ErrorDetail = exports.Entity = exports.DescribeChangeSetRequest = exports.CancelChangeSetResponse = exports.CancelChangeSetRequest = void 0;
|
|
3
|
+
exports.StartChangeSetResponse = exports.StartChangeSetRequest = exports.Change = exports.ServiceQuotaExceededException = exports.ListEntitiesResponse = exports.EntitySummary = exports.ListEntitiesRequest = exports.ListChangeSetsResponse = exports.ChangeSetSummaryListItem = exports.ListChangeSetsRequest = exports.Sort = exports.SortOrder = exports.Filter = exports.ResourceNotSupportedException = exports.DescribeEntityResponse = exports.DescribeEntityRequest = exports.DescribeChangeSetResponse = exports.ChangeStatus = exports.FailureCode = exports.ChangeSummary = exports.ErrorDetail = exports.Entity = exports.DescribeChangeSetRequest = exports.ValidationException = exports.ThrottlingException = exports.ResourceNotFoundException = exports.ResourceInUseException = exports.InternalServiceException = exports.CancelChangeSetResponse = exports.CancelChangeSetRequest = exports.AccessDeniedException = void 0;
|
|
4
|
+
const MarketplaceCatalogServiceException_1 = require("./MarketplaceCatalogServiceException");
|
|
5
|
+
class AccessDeniedException extends MarketplaceCatalogServiceException_1.MarketplaceCatalogServiceException {
|
|
6
|
+
constructor(opts) {
|
|
7
|
+
super({
|
|
8
|
+
name: "AccessDeniedException",
|
|
9
|
+
$fault: "client",
|
|
10
|
+
...opts,
|
|
11
|
+
});
|
|
12
|
+
this.name = "AccessDeniedException";
|
|
13
|
+
this.$fault = "client";
|
|
14
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
15
|
+
this.Message = opts.Message;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
4
19
|
var CancelChangeSetRequest;
|
|
5
20
|
(function (CancelChangeSetRequest) {
|
|
6
21
|
CancelChangeSetRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -13,6 +28,76 @@ var CancelChangeSetResponse;
|
|
|
13
28
|
...obj,
|
|
14
29
|
});
|
|
15
30
|
})(CancelChangeSetResponse = exports.CancelChangeSetResponse || (exports.CancelChangeSetResponse = {}));
|
|
31
|
+
class InternalServiceException extends MarketplaceCatalogServiceException_1.MarketplaceCatalogServiceException {
|
|
32
|
+
constructor(opts) {
|
|
33
|
+
super({
|
|
34
|
+
name: "InternalServiceException",
|
|
35
|
+
$fault: "server",
|
|
36
|
+
...opts,
|
|
37
|
+
});
|
|
38
|
+
this.name = "InternalServiceException";
|
|
39
|
+
this.$fault = "server";
|
|
40
|
+
Object.setPrototypeOf(this, InternalServiceException.prototype);
|
|
41
|
+
this.Message = opts.Message;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
exports.InternalServiceException = InternalServiceException;
|
|
45
|
+
class ResourceInUseException extends MarketplaceCatalogServiceException_1.MarketplaceCatalogServiceException {
|
|
46
|
+
constructor(opts) {
|
|
47
|
+
super({
|
|
48
|
+
name: "ResourceInUseException",
|
|
49
|
+
$fault: "client",
|
|
50
|
+
...opts,
|
|
51
|
+
});
|
|
52
|
+
this.name = "ResourceInUseException";
|
|
53
|
+
this.$fault = "client";
|
|
54
|
+
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
55
|
+
this.Message = opts.Message;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
exports.ResourceInUseException = ResourceInUseException;
|
|
59
|
+
class ResourceNotFoundException extends MarketplaceCatalogServiceException_1.MarketplaceCatalogServiceException {
|
|
60
|
+
constructor(opts) {
|
|
61
|
+
super({
|
|
62
|
+
name: "ResourceNotFoundException",
|
|
63
|
+
$fault: "client",
|
|
64
|
+
...opts,
|
|
65
|
+
});
|
|
66
|
+
this.name = "ResourceNotFoundException";
|
|
67
|
+
this.$fault = "client";
|
|
68
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
69
|
+
this.Message = opts.Message;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
73
|
+
class ThrottlingException extends MarketplaceCatalogServiceException_1.MarketplaceCatalogServiceException {
|
|
74
|
+
constructor(opts) {
|
|
75
|
+
super({
|
|
76
|
+
name: "ThrottlingException",
|
|
77
|
+
$fault: "client",
|
|
78
|
+
...opts,
|
|
79
|
+
});
|
|
80
|
+
this.name = "ThrottlingException";
|
|
81
|
+
this.$fault = "client";
|
|
82
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
83
|
+
this.Message = opts.Message;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
exports.ThrottlingException = ThrottlingException;
|
|
87
|
+
class ValidationException extends MarketplaceCatalogServiceException_1.MarketplaceCatalogServiceException {
|
|
88
|
+
constructor(opts) {
|
|
89
|
+
super({
|
|
90
|
+
name: "ValidationException",
|
|
91
|
+
$fault: "client",
|
|
92
|
+
...opts,
|
|
93
|
+
});
|
|
94
|
+
this.name = "ValidationException";
|
|
95
|
+
this.$fault = "client";
|
|
96
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
97
|
+
this.Message = opts.Message;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
exports.ValidationException = ValidationException;
|
|
16
101
|
var DescribeChangeSetRequest;
|
|
17
102
|
(function (DescribeChangeSetRequest) {
|
|
18
103
|
DescribeChangeSetRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -68,6 +153,20 @@ var DescribeEntityResponse;
|
|
|
68
153
|
...obj,
|
|
69
154
|
});
|
|
70
155
|
})(DescribeEntityResponse = exports.DescribeEntityResponse || (exports.DescribeEntityResponse = {}));
|
|
156
|
+
class ResourceNotSupportedException extends MarketplaceCatalogServiceException_1.MarketplaceCatalogServiceException {
|
|
157
|
+
constructor(opts) {
|
|
158
|
+
super({
|
|
159
|
+
name: "ResourceNotSupportedException",
|
|
160
|
+
$fault: "client",
|
|
161
|
+
...opts,
|
|
162
|
+
});
|
|
163
|
+
this.name = "ResourceNotSupportedException";
|
|
164
|
+
this.$fault = "client";
|
|
165
|
+
Object.setPrototypeOf(this, ResourceNotSupportedException.prototype);
|
|
166
|
+
this.Message = opts.Message;
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
exports.ResourceNotSupportedException = ResourceNotSupportedException;
|
|
71
170
|
var Filter;
|
|
72
171
|
(function (Filter) {
|
|
73
172
|
Filter.filterSensitiveLog = (obj) => ({
|
|
@@ -121,6 +220,20 @@ var ListEntitiesResponse;
|
|
|
121
220
|
...obj,
|
|
122
221
|
});
|
|
123
222
|
})(ListEntitiesResponse = exports.ListEntitiesResponse || (exports.ListEntitiesResponse = {}));
|
|
223
|
+
class ServiceQuotaExceededException extends MarketplaceCatalogServiceException_1.MarketplaceCatalogServiceException {
|
|
224
|
+
constructor(opts) {
|
|
225
|
+
super({
|
|
226
|
+
name: "ServiceQuotaExceededException",
|
|
227
|
+
$fault: "client",
|
|
228
|
+
...opts,
|
|
229
|
+
});
|
|
230
|
+
this.name = "ServiceQuotaExceededException";
|
|
231
|
+
this.$fault = "client";
|
|
232
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
233
|
+
this.Message = opts.Message;
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
124
237
|
var Change;
|
|
125
238
|
(function (Change) {
|
|
126
239
|
Change.filterSensitiveLog = (obj) => ({
|