@aws-sdk/client-serverlessapplicationrepository 3.490.0 → 3.495.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 (31) hide show
  1. package/dist-cjs/ServerlessApplicationRepository.js +1 -39
  2. package/dist-cjs/ServerlessApplicationRepositoryClient.js +1 -43
  3. package/dist-cjs/commands/CreateApplicationCommand.js +1 -28
  4. package/dist-cjs/commands/CreateApplicationVersionCommand.js +1 -28
  5. package/dist-cjs/commands/CreateCloudFormationChangeSetCommand.js +1 -28
  6. package/dist-cjs/commands/CreateCloudFormationTemplateCommand.js +1 -28
  7. package/dist-cjs/commands/DeleteApplicationCommand.js +1 -28
  8. package/dist-cjs/commands/GetApplicationCommand.js +1 -28
  9. package/dist-cjs/commands/GetApplicationPolicyCommand.js +1 -28
  10. package/dist-cjs/commands/GetCloudFormationTemplateCommand.js +1 -28
  11. package/dist-cjs/commands/ListApplicationDependenciesCommand.js +1 -28
  12. package/dist-cjs/commands/ListApplicationVersionsCommand.js +1 -28
  13. package/dist-cjs/commands/ListApplicationsCommand.js +1 -28
  14. package/dist-cjs/commands/PutApplicationPolicyCommand.js +1 -28
  15. package/dist-cjs/commands/UnshareApplicationCommand.js +1 -28
  16. package/dist-cjs/commands/UpdateApplicationCommand.js +1 -28
  17. package/dist-cjs/commands/index.js +1 -17
  18. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  19. package/dist-cjs/extensionConfiguration.js +1 -2
  20. package/dist-cjs/index.js +1790 -11
  21. package/dist-cjs/models/ServerlessApplicationRepositoryServiceException.js +1 -12
  22. package/dist-cjs/models/index.js +1 -4
  23. package/dist-cjs/models/models_0.js +1 -105
  24. package/dist-cjs/pagination/Interfaces.js +1 -2
  25. package/dist-cjs/pagination/ListApplicationDependenciesPaginator.js +1 -7
  26. package/dist-cjs/pagination/ListApplicationVersionsPaginator.js +1 -7
  27. package/dist-cjs/pagination/ListApplicationsPaginator.js +1 -7
  28. package/dist-cjs/pagination/index.js +1 -7
  29. package/dist-cjs/protocols/Aws_restJson1.js +1 -1236
  30. package/dist-cjs/runtimeExtensions.js +1 -22
  31. package/package.json +40 -40
@@ -1,12 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ServerlessApplicationRepositoryServiceException = exports.__ServiceException = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
6
- class ServerlessApplicationRepositoryServiceException extends smithy_client_1.ServiceException {
7
- constructor(options) {
8
- super(options);
9
- Object.setPrototypeOf(this, ServerlessApplicationRepositoryServiceException.prototype);
10
- }
11
- }
12
- exports.ServerlessApplicationRepositoryServiceException = ServerlessApplicationRepositoryServiceException;
1
+ module.exports = require("../index.js");
@@ -1,4 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./models_0"), exports);
1
+ module.exports = require("../index.js");
@@ -1,105 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.NotFoundException = exports.Status = exports.TooManyRequestsException = exports.InternalServerErrorException = exports.ForbiddenException = exports.ConflictException = exports.BadRequestException = exports.Capability = void 0;
4
- const ServerlessApplicationRepositoryServiceException_1 = require("./ServerlessApplicationRepositoryServiceException");
5
- exports.Capability = {
6
- CAPABILITY_AUTO_EXPAND: "CAPABILITY_AUTO_EXPAND",
7
- CAPABILITY_IAM: "CAPABILITY_IAM",
8
- CAPABILITY_NAMED_IAM: "CAPABILITY_NAMED_IAM",
9
- CAPABILITY_RESOURCE_POLICY: "CAPABILITY_RESOURCE_POLICY",
10
- };
11
- class BadRequestException extends ServerlessApplicationRepositoryServiceException_1.ServerlessApplicationRepositoryServiceException {
12
- constructor(opts) {
13
- super({
14
- name: "BadRequestException",
15
- $fault: "client",
16
- ...opts,
17
- });
18
- this.name = "BadRequestException";
19
- this.$fault = "client";
20
- Object.setPrototypeOf(this, BadRequestException.prototype);
21
- this.ErrorCode = opts.ErrorCode;
22
- this.Message = opts.Message;
23
- }
24
- }
25
- exports.BadRequestException = BadRequestException;
26
- class ConflictException extends ServerlessApplicationRepositoryServiceException_1.ServerlessApplicationRepositoryServiceException {
27
- constructor(opts) {
28
- super({
29
- name: "ConflictException",
30
- $fault: "client",
31
- ...opts,
32
- });
33
- this.name = "ConflictException";
34
- this.$fault = "client";
35
- Object.setPrototypeOf(this, ConflictException.prototype);
36
- this.ErrorCode = opts.ErrorCode;
37
- this.Message = opts.Message;
38
- }
39
- }
40
- exports.ConflictException = ConflictException;
41
- class ForbiddenException extends ServerlessApplicationRepositoryServiceException_1.ServerlessApplicationRepositoryServiceException {
42
- constructor(opts) {
43
- super({
44
- name: "ForbiddenException",
45
- $fault: "client",
46
- ...opts,
47
- });
48
- this.name = "ForbiddenException";
49
- this.$fault = "client";
50
- Object.setPrototypeOf(this, ForbiddenException.prototype);
51
- this.ErrorCode = opts.ErrorCode;
52
- this.Message = opts.Message;
53
- }
54
- }
55
- exports.ForbiddenException = ForbiddenException;
56
- class InternalServerErrorException extends ServerlessApplicationRepositoryServiceException_1.ServerlessApplicationRepositoryServiceException {
57
- constructor(opts) {
58
- super({
59
- name: "InternalServerErrorException",
60
- $fault: "server",
61
- ...opts,
62
- });
63
- this.name = "InternalServerErrorException";
64
- this.$fault = "server";
65
- Object.setPrototypeOf(this, InternalServerErrorException.prototype);
66
- this.ErrorCode = opts.ErrorCode;
67
- this.Message = opts.Message;
68
- }
69
- }
70
- exports.InternalServerErrorException = InternalServerErrorException;
71
- class TooManyRequestsException extends ServerlessApplicationRepositoryServiceException_1.ServerlessApplicationRepositoryServiceException {
72
- constructor(opts) {
73
- super({
74
- name: "TooManyRequestsException",
75
- $fault: "client",
76
- ...opts,
77
- });
78
- this.name = "TooManyRequestsException";
79
- this.$fault = "client";
80
- Object.setPrototypeOf(this, TooManyRequestsException.prototype);
81
- this.ErrorCode = opts.ErrorCode;
82
- this.Message = opts.Message;
83
- }
84
- }
85
- exports.TooManyRequestsException = TooManyRequestsException;
86
- exports.Status = {
87
- ACTIVE: "ACTIVE",
88
- EXPIRED: "EXPIRED",
89
- PREPARING: "PREPARING",
90
- };
91
- class NotFoundException extends ServerlessApplicationRepositoryServiceException_1.ServerlessApplicationRepositoryServiceException {
92
- constructor(opts) {
93
- super({
94
- name: "NotFoundException",
95
- $fault: "client",
96
- ...opts,
97
- });
98
- this.name = "NotFoundException";
99
- this.$fault = "client";
100
- Object.setPrototypeOf(this, NotFoundException.prototype);
101
- this.ErrorCode = opts.ErrorCode;
102
- this.Message = opts.Message;
103
- }
104
- }
105
- exports.NotFoundException = NotFoundException;
1
+ module.exports = require("../index.js");
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListApplicationDependencies = void 0;
4
- const core_1 = require("@smithy/core");
5
- const ListApplicationDependenciesCommand_1 = require("../commands/ListApplicationDependenciesCommand");
6
- const ServerlessApplicationRepositoryClient_1 = require("../ServerlessApplicationRepositoryClient");
7
- exports.paginateListApplicationDependencies = (0, core_1.createPaginator)(ServerlessApplicationRepositoryClient_1.ServerlessApplicationRepositoryClient, ListApplicationDependenciesCommand_1.ListApplicationDependenciesCommand, "NextToken", "NextToken", "MaxItems");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListApplicationVersions = void 0;
4
- const core_1 = require("@smithy/core");
5
- const ListApplicationVersionsCommand_1 = require("../commands/ListApplicationVersionsCommand");
6
- const ServerlessApplicationRepositoryClient_1 = require("../ServerlessApplicationRepositoryClient");
7
- exports.paginateListApplicationVersions = (0, core_1.createPaginator)(ServerlessApplicationRepositoryClient_1.ServerlessApplicationRepositoryClient, ListApplicationVersionsCommand_1.ListApplicationVersionsCommand, "NextToken", "NextToken", "MaxItems");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListApplications = void 0;
4
- const core_1 = require("@smithy/core");
5
- const ListApplicationsCommand_1 = require("../commands/ListApplicationsCommand");
6
- const ServerlessApplicationRepositoryClient_1 = require("../ServerlessApplicationRepositoryClient");
7
- exports.paginateListApplications = (0, core_1.createPaginator)(ServerlessApplicationRepositoryClient_1.ServerlessApplicationRepositoryClient, ListApplicationsCommand_1.ListApplicationsCommand, "NextToken", "NextToken", "MaxItems");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./Interfaces"), exports);
5
- tslib_1.__exportStar(require("./ListApplicationDependenciesPaginator"), exports);
6
- tslib_1.__exportStar(require("./ListApplicationVersionsPaginator"), exports);
7
- tslib_1.__exportStar(require("./ListApplicationsPaginator"), exports);
1
+ module.exports = require("../index.js");