@aws-sdk/client-serverlessapplicationrepository 3.50.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.
Files changed (45) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/ServerlessApplicationRepositoryServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +92 -1
  5. package/dist-cjs/protocols/Aws_restJson1.js +178 -615
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/ServerlessApplicationRepositoryServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +86 -1
  9. package/dist-es/protocols/Aws_restJson1.js +349 -678
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/ServerlessApplicationRepositoryServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +44 -19
  13. package/dist-types/ts3.4/ServerlessApplicationRepository.d.ts +75 -0
  14. package/dist-types/ts3.4/ServerlessApplicationRepositoryClient.d.ts +87 -0
  15. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/CreateApplicationVersionCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/CreateCloudFormationChangeSetCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/CreateCloudFormationTemplateCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/GetApplicationPolicyCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/GetCloudFormationTemplateCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/ListApplicationDependenciesCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/ListApplicationVersionsCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/PutApplicationPolicyCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/UnshareApplicationCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/index.d.ts +14 -0
  30. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  31. package/dist-types/ts3.4/index.d.ts +6 -0
  32. package/dist-types/ts3.4/models/ServerlessApplicationRepositoryServiceException.d.ts +6 -0
  33. package/dist-types/ts3.4/models/index.d.ts +1 -0
  34. package/dist-types/ts3.4/models/models_0.d.ts +673 -0
  35. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  36. package/dist-types/ts3.4/pagination/ListApplicationDependenciesPaginator.d.ts +4 -0
  37. package/dist-types/ts3.4/pagination/ListApplicationVersionsPaginator.d.ts +4 -0
  38. package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +4 -0
  39. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  40. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +44 -0
  41. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  42. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  43. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  44. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  45. package/package.json +33 -33
package/dist-es/index.js CHANGED
@@ -3,3 +3,4 @@ export * from "./ServerlessApplicationRepositoryClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { ServerlessApplicationRepositoryServiceException } from "./models/ServerlessApplicationRepositoryServiceException";
@@ -0,0 +1,12 @@
1
+ import { __extends } from "tslib";
2
+ import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
3
+ var ServerlessApplicationRepositoryServiceException = (function (_super) {
4
+ __extends(ServerlessApplicationRepositoryServiceException, _super);
5
+ function ServerlessApplicationRepositoryServiceException(options) {
6
+ var _this = _super.call(this, options) || this;
7
+ Object.setPrototypeOf(_this, ServerlessApplicationRepositoryServiceException.prototype);
8
+ return _this;
9
+ }
10
+ return ServerlessApplicationRepositoryServiceException;
11
+ }(__ServiceException));
12
+ export { ServerlessApplicationRepositoryServiceException };
@@ -1,4 +1,5 @@
1
- import { __assign } from "tslib";
1
+ import { __assign, __extends } from "tslib";
2
+ import { ServerlessApplicationRepositoryServiceException as __BaseException } from "./ServerlessApplicationRepositoryServiceException";
2
3
  export var ApplicationDependencySummary;
3
4
  (function (ApplicationDependencySummary) {
4
5
  ApplicationDependencySummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -38,6 +39,34 @@ export var VersionSummary;
38
39
  (function (VersionSummary) {
39
40
  VersionSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
40
41
  })(VersionSummary || (VersionSummary = {}));
42
+ var BadRequestException = (function (_super) {
43
+ __extends(BadRequestException, _super);
44
+ function BadRequestException(opts) {
45
+ var _this = _super.call(this, __assign({ name: "BadRequestException", $fault: "client" }, opts)) || this;
46
+ _this.name = "BadRequestException";
47
+ _this.$fault = "client";
48
+ Object.setPrototypeOf(_this, BadRequestException.prototype);
49
+ _this.ErrorCode = opts.ErrorCode;
50
+ _this.Message = opts.Message;
51
+ return _this;
52
+ }
53
+ return BadRequestException;
54
+ }(__BaseException));
55
+ export { BadRequestException };
56
+ var ConflictException = (function (_super) {
57
+ __extends(ConflictException, _super);
58
+ function ConflictException(opts) {
59
+ var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
60
+ _this.name = "ConflictException";
61
+ _this.$fault = "client";
62
+ Object.setPrototypeOf(_this, ConflictException.prototype);
63
+ _this.ErrorCode = opts.ErrorCode;
64
+ _this.Message = opts.Message;
65
+ return _this;
66
+ }
67
+ return ConflictException;
68
+ }(__BaseException));
69
+ export { ConflictException };
41
70
  export var CreateApplicationRequest;
42
71
  (function (CreateApplicationRequest) {
43
72
  CreateApplicationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -50,6 +79,48 @@ export var CreateApplicationResponse;
50
79
  (function (CreateApplicationResponse) {
51
80
  CreateApplicationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
52
81
  })(CreateApplicationResponse || (CreateApplicationResponse = {}));
82
+ var ForbiddenException = (function (_super) {
83
+ __extends(ForbiddenException, _super);
84
+ function ForbiddenException(opts) {
85
+ var _this = _super.call(this, __assign({ name: "ForbiddenException", $fault: "client" }, opts)) || this;
86
+ _this.name = "ForbiddenException";
87
+ _this.$fault = "client";
88
+ Object.setPrototypeOf(_this, ForbiddenException.prototype);
89
+ _this.ErrorCode = opts.ErrorCode;
90
+ _this.Message = opts.Message;
91
+ return _this;
92
+ }
93
+ return ForbiddenException;
94
+ }(__BaseException));
95
+ export { ForbiddenException };
96
+ var InternalServerErrorException = (function (_super) {
97
+ __extends(InternalServerErrorException, _super);
98
+ function InternalServerErrorException(opts) {
99
+ var _this = _super.call(this, __assign({ name: "InternalServerErrorException", $fault: "server" }, opts)) || this;
100
+ _this.name = "InternalServerErrorException";
101
+ _this.$fault = "server";
102
+ Object.setPrototypeOf(_this, InternalServerErrorException.prototype);
103
+ _this.ErrorCode = opts.ErrorCode;
104
+ _this.Message = opts.Message;
105
+ return _this;
106
+ }
107
+ return InternalServerErrorException;
108
+ }(__BaseException));
109
+ export { InternalServerErrorException };
110
+ var TooManyRequestsException = (function (_super) {
111
+ __extends(TooManyRequestsException, _super);
112
+ function TooManyRequestsException(opts) {
113
+ var _this = _super.call(this, __assign({ name: "TooManyRequestsException", $fault: "client" }, opts)) || this;
114
+ _this.name = "TooManyRequestsException";
115
+ _this.$fault = "client";
116
+ Object.setPrototypeOf(_this, TooManyRequestsException.prototype);
117
+ _this.ErrorCode = opts.ErrorCode;
118
+ _this.Message = opts.Message;
119
+ return _this;
120
+ }
121
+ return TooManyRequestsException;
122
+ }(__BaseException));
123
+ export { TooManyRequestsException };
53
124
  export var CreateApplicationVersionRequest;
54
125
  (function (CreateApplicationVersionRequest) {
55
126
  CreateApplicationVersionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -84,6 +155,20 @@ export var CreateCloudFormationTemplateResponse;
84
155
  (function (CreateCloudFormationTemplateResponse) {
85
156
  CreateCloudFormationTemplateResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
86
157
  })(CreateCloudFormationTemplateResponse || (CreateCloudFormationTemplateResponse = {}));
158
+ var NotFoundException = (function (_super) {
159
+ __extends(NotFoundException, _super);
160
+ function NotFoundException(opts) {
161
+ var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
162
+ _this.name = "NotFoundException";
163
+ _this.$fault = "client";
164
+ Object.setPrototypeOf(_this, NotFoundException.prototype);
165
+ _this.ErrorCode = opts.ErrorCode;
166
+ _this.Message = opts.Message;
167
+ return _this;
168
+ }
169
+ return NotFoundException;
170
+ }(__BaseException));
171
+ export { NotFoundException };
87
172
  export var DeleteApplicationRequest;
88
173
  (function (DeleteApplicationRequest) {
89
174
  DeleteApplicationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };