@aws-sdk/client-serverlessapplicationrepository 3.51.0 → 3.54.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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ServerlessApplicationRepositoryServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +92 -1
- package/dist-cjs/protocols/Aws_restJson1.js +178 -615
- package/dist-es/index.js +1 -0
- package/dist-es/models/ServerlessApplicationRepositoryServiceException.js +12 -0
- package/dist-es/models/models_0.js +86 -1
- package/dist-es/protocols/Aws_restJson1.js +349 -678
- package/dist-types/ServerlessApplicationRepositoryClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ServerlessApplicationRepositoryServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +44 -19
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/ServerlessApplicationRepositoryClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/ServerlessApplicationRepositoryServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +32 -19
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +33 -33
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
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.54.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.53.1...v3.54.0) (2022-03-11)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-serverlessapplicationrepository
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **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))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/client-serverlessapplicationrepository
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-serverlessapplicationrepository
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ServerlessApplicationRepositoryServiceException = void 0;
|
|
3
4
|
const tslib_1 = require("tslib");
|
|
4
5
|
tslib_1.__exportStar(require("./ServerlessApplicationRepository"), exports);
|
|
5
6
|
tslib_1.__exportStar(require("./ServerlessApplicationRepositoryClient"), 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 ServerlessApplicationRepositoryServiceException_1 = require("./models/ServerlessApplicationRepositoryServiceException");
|
|
11
|
+
Object.defineProperty(exports, "ServerlessApplicationRepositoryServiceException", { enumerable: true, get: function () { return ServerlessApplicationRepositoryServiceException_1.ServerlessApplicationRepositoryServiceException; } });
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ServerlessApplicationRepositoryServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
|
+
class ServerlessApplicationRepositoryServiceException extends smithy_client_1.ServiceException {
|
|
6
|
+
constructor(options) {
|
|
7
|
+
super(options);
|
|
8
|
+
Object.setPrototypeOf(this, ServerlessApplicationRepositoryServiceException.prototype);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.ServerlessApplicationRepositoryServiceException = ServerlessApplicationRepositoryServiceException;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateApplicationResponse = exports.UpdateApplicationRequest = exports.UnshareApplicationRequest = exports.PutApplicationPolicyResponse = exports.PutApplicationPolicyRequest = exports.ListApplicationVersionsResponse = exports.ListApplicationVersionsRequest = exports.ListApplicationsResponse = exports.ListApplicationsRequest = exports.ListApplicationDependenciesResponse = exports.ListApplicationDependenciesRequest = exports.GetCloudFormationTemplateResponse = exports.GetCloudFormationTemplateRequest = exports.GetApplicationPolicyResponse = exports.GetApplicationPolicyRequest = exports.GetApplicationResponse = exports.GetApplicationRequest = exports.DeleteApplicationRequest = exports.CreateCloudFormationTemplateResponse = exports.Status = exports.CreateCloudFormationTemplateRequest = exports.CreateCloudFormationChangeSetResponse = exports.CreateCloudFormationChangeSetRequest = exports.RollbackConfiguration = exports.CreateApplicationVersionResponse = exports.CreateApplicationVersionRequest = exports.CreateApplicationResponse = exports.Version = exports.CreateApplicationRequest = exports.VersionSummary = exports.Tag = exports.RollbackTrigger = exports.ParameterValue = exports.ParameterDefinition = exports.Capability = exports.ApplicationSummary = exports.ApplicationPolicyStatement = exports.ApplicationDependencySummary = void 0;
|
|
3
|
+
exports.UpdateApplicationResponse = exports.UpdateApplicationRequest = exports.UnshareApplicationRequest = exports.PutApplicationPolicyResponse = exports.PutApplicationPolicyRequest = exports.ListApplicationVersionsResponse = exports.ListApplicationVersionsRequest = exports.ListApplicationsResponse = exports.ListApplicationsRequest = exports.ListApplicationDependenciesResponse = exports.ListApplicationDependenciesRequest = exports.GetCloudFormationTemplateResponse = exports.GetCloudFormationTemplateRequest = exports.GetApplicationPolicyResponse = exports.GetApplicationPolicyRequest = exports.GetApplicationResponse = exports.GetApplicationRequest = exports.DeleteApplicationRequest = exports.NotFoundException = exports.CreateCloudFormationTemplateResponse = exports.Status = exports.CreateCloudFormationTemplateRequest = exports.CreateCloudFormationChangeSetResponse = exports.CreateCloudFormationChangeSetRequest = exports.RollbackConfiguration = exports.CreateApplicationVersionResponse = exports.CreateApplicationVersionRequest = exports.TooManyRequestsException = exports.InternalServerErrorException = exports.ForbiddenException = exports.CreateApplicationResponse = exports.Version = exports.CreateApplicationRequest = exports.ConflictException = exports.BadRequestException = exports.VersionSummary = exports.Tag = exports.RollbackTrigger = exports.ParameterValue = exports.ParameterDefinition = exports.Capability = exports.ApplicationSummary = exports.ApplicationPolicyStatement = exports.ApplicationDependencySummary = void 0;
|
|
4
|
+
const ServerlessApplicationRepositoryServiceException_1 = require("./ServerlessApplicationRepositoryServiceException");
|
|
4
5
|
var ApplicationDependencySummary;
|
|
5
6
|
(function (ApplicationDependencySummary) {
|
|
6
7
|
ApplicationDependencySummary.filterSensitiveLog = (obj) => ({
|
|
@@ -56,6 +57,36 @@ var VersionSummary;
|
|
|
56
57
|
...obj,
|
|
57
58
|
});
|
|
58
59
|
})(VersionSummary = exports.VersionSummary || (exports.VersionSummary = {}));
|
|
60
|
+
class BadRequestException extends ServerlessApplicationRepositoryServiceException_1.ServerlessApplicationRepositoryServiceException {
|
|
61
|
+
constructor(opts) {
|
|
62
|
+
super({
|
|
63
|
+
name: "BadRequestException",
|
|
64
|
+
$fault: "client",
|
|
65
|
+
...opts,
|
|
66
|
+
});
|
|
67
|
+
this.name = "BadRequestException";
|
|
68
|
+
this.$fault = "client";
|
|
69
|
+
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
70
|
+
this.ErrorCode = opts.ErrorCode;
|
|
71
|
+
this.Message = opts.Message;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
exports.BadRequestException = BadRequestException;
|
|
75
|
+
class ConflictException extends ServerlessApplicationRepositoryServiceException_1.ServerlessApplicationRepositoryServiceException {
|
|
76
|
+
constructor(opts) {
|
|
77
|
+
super({
|
|
78
|
+
name: "ConflictException",
|
|
79
|
+
$fault: "client",
|
|
80
|
+
...opts,
|
|
81
|
+
});
|
|
82
|
+
this.name = "ConflictException";
|
|
83
|
+
this.$fault = "client";
|
|
84
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
85
|
+
this.ErrorCode = opts.ErrorCode;
|
|
86
|
+
this.Message = opts.Message;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
exports.ConflictException = ConflictException;
|
|
59
90
|
var CreateApplicationRequest;
|
|
60
91
|
(function (CreateApplicationRequest) {
|
|
61
92
|
CreateApplicationRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -74,6 +105,51 @@ var CreateApplicationResponse;
|
|
|
74
105
|
...obj,
|
|
75
106
|
});
|
|
76
107
|
})(CreateApplicationResponse = exports.CreateApplicationResponse || (exports.CreateApplicationResponse = {}));
|
|
108
|
+
class ForbiddenException extends ServerlessApplicationRepositoryServiceException_1.ServerlessApplicationRepositoryServiceException {
|
|
109
|
+
constructor(opts) {
|
|
110
|
+
super({
|
|
111
|
+
name: "ForbiddenException",
|
|
112
|
+
$fault: "client",
|
|
113
|
+
...opts,
|
|
114
|
+
});
|
|
115
|
+
this.name = "ForbiddenException";
|
|
116
|
+
this.$fault = "client";
|
|
117
|
+
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
118
|
+
this.ErrorCode = opts.ErrorCode;
|
|
119
|
+
this.Message = opts.Message;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
exports.ForbiddenException = ForbiddenException;
|
|
123
|
+
class InternalServerErrorException extends ServerlessApplicationRepositoryServiceException_1.ServerlessApplicationRepositoryServiceException {
|
|
124
|
+
constructor(opts) {
|
|
125
|
+
super({
|
|
126
|
+
name: "InternalServerErrorException",
|
|
127
|
+
$fault: "server",
|
|
128
|
+
...opts,
|
|
129
|
+
});
|
|
130
|
+
this.name = "InternalServerErrorException";
|
|
131
|
+
this.$fault = "server";
|
|
132
|
+
Object.setPrototypeOf(this, InternalServerErrorException.prototype);
|
|
133
|
+
this.ErrorCode = opts.ErrorCode;
|
|
134
|
+
this.Message = opts.Message;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
exports.InternalServerErrorException = InternalServerErrorException;
|
|
138
|
+
class TooManyRequestsException extends ServerlessApplicationRepositoryServiceException_1.ServerlessApplicationRepositoryServiceException {
|
|
139
|
+
constructor(opts) {
|
|
140
|
+
super({
|
|
141
|
+
name: "TooManyRequestsException",
|
|
142
|
+
$fault: "client",
|
|
143
|
+
...opts,
|
|
144
|
+
});
|
|
145
|
+
this.name = "TooManyRequestsException";
|
|
146
|
+
this.$fault = "client";
|
|
147
|
+
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
148
|
+
this.ErrorCode = opts.ErrorCode;
|
|
149
|
+
this.Message = opts.Message;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
exports.TooManyRequestsException = TooManyRequestsException;
|
|
77
153
|
var CreateApplicationVersionRequest;
|
|
78
154
|
(function (CreateApplicationVersionRequest) {
|
|
79
155
|
CreateApplicationVersionRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -122,6 +198,21 @@ var CreateCloudFormationTemplateResponse;
|
|
|
122
198
|
...obj,
|
|
123
199
|
});
|
|
124
200
|
})(CreateCloudFormationTemplateResponse = exports.CreateCloudFormationTemplateResponse || (exports.CreateCloudFormationTemplateResponse = {}));
|
|
201
|
+
class NotFoundException extends ServerlessApplicationRepositoryServiceException_1.ServerlessApplicationRepositoryServiceException {
|
|
202
|
+
constructor(opts) {
|
|
203
|
+
super({
|
|
204
|
+
name: "NotFoundException",
|
|
205
|
+
$fault: "client",
|
|
206
|
+
...opts,
|
|
207
|
+
});
|
|
208
|
+
this.name = "NotFoundException";
|
|
209
|
+
this.$fault = "client";
|
|
210
|
+
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
211
|
+
this.ErrorCode = opts.ErrorCode;
|
|
212
|
+
this.Message = opts.Message;
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
exports.NotFoundException = NotFoundException;
|
|
125
216
|
var DeleteApplicationRequest;
|
|
126
217
|
(function (DeleteApplicationRequest) {
|
|
127
218
|
DeleteApplicationRequest.filterSensitiveLog = (obj) => ({
|