@aws-sdk/client-serverlessapplicationrepository 3.131.0 → 3.137.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/commands/CreateApplicationCommand.js +2 -2
- package/dist-cjs/commands/CreateApplicationVersionCommand.js +2 -2
- package/dist-cjs/commands/CreateCloudFormationChangeSetCommand.js +2 -2
- package/dist-cjs/commands/CreateCloudFormationTemplateCommand.js +2 -2
- package/dist-cjs/commands/DeleteApplicationCommand.js +1 -1
- package/dist-cjs/commands/GetApplicationCommand.js +2 -2
- package/dist-cjs/commands/GetApplicationPolicyCommand.js +2 -2
- package/dist-cjs/commands/GetCloudFormationTemplateCommand.js +2 -2
- package/dist-cjs/commands/ListApplicationDependenciesCommand.js +2 -2
- package/dist-cjs/commands/ListApplicationVersionsCommand.js +2 -2
- package/dist-cjs/commands/ListApplicationsCommand.js +2 -2
- package/dist-cjs/commands/PutApplicationPolicyCommand.js +2 -2
- package/dist-cjs/commands/UnshareApplicationCommand.js +1 -1
- package/dist-cjs/commands/UpdateApplicationCommand.js +2 -2
- package/dist-cjs/models/models_0.js +145 -217
- package/dist-es/commands/CreateApplicationCommand.js +3 -3
- package/dist-es/commands/CreateApplicationVersionCommand.js +3 -3
- package/dist-es/commands/CreateCloudFormationChangeSetCommand.js +3 -3
- package/dist-es/commands/CreateCloudFormationTemplateCommand.js +3 -3
- package/dist-es/commands/DeleteApplicationCommand.js +2 -2
- package/dist-es/commands/GetApplicationCommand.js +3 -3
- package/dist-es/commands/GetApplicationPolicyCommand.js +3 -3
- package/dist-es/commands/GetCloudFormationTemplateCommand.js +3 -3
- package/dist-es/commands/ListApplicationDependenciesCommand.js +3 -3
- package/dist-es/commands/ListApplicationVersionsCommand.js +3 -3
- package/dist-es/commands/ListApplicationsCommand.js +3 -3
- package/dist-es/commands/PutApplicationPolicyCommand.js +3 -3
- package/dist-es/commands/UnshareApplicationCommand.js +2 -2
- package/dist-es/commands/UpdateApplicationCommand.js +3 -3
- package/dist-es/models/models_0.js +36 -144
- package/dist-types/models/models_0.d.ts +144 -216
- package/dist-types/ts3.4/models/models_0.d.ts +72 -144
- package/package.json +6 -6
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.137.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.136.1...v3.137.0) (2022-07-26)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **namespaces:** remove namespaces with only a log filter ([#3823](https://github.com/aws/aws-sdk-js-v3/issues/3823)) ([33e6822](https://github.com/aws/aws-sdk-js-v3/commit/33e68228fb64c53dd8f89e6be76dd5f46edc3cfd))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.131.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.130.0...v3.131.0) (2022-07-15)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-sdk/client-serverlessapplicationrepository
|
|
@@ -20,8 +20,8 @@ class CreateApplicationCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.CreateApplicationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.CreateApplicationResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class CreateApplicationVersionCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.CreateApplicationVersionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.CreateApplicationVersionResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class CreateCloudFormationChangeSetCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.CreateCloudFormationChangeSetRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.CreateCloudFormationChangeSetResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class CreateCloudFormationTemplateCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.CreateCloudFormationTemplateRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.CreateCloudFormationTemplateResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,7 +20,7 @@ class DeleteApplicationCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.DeleteApplicationRequestFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: (output) => output,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
@@ -20,8 +20,8 @@ class GetApplicationCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.GetApplicationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.GetApplicationResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class GetApplicationPolicyCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.GetApplicationPolicyRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.GetApplicationPolicyResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class GetCloudFormationTemplateCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.GetCloudFormationTemplateRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.GetCloudFormationTemplateResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class ListApplicationDependenciesCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.ListApplicationDependenciesRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.ListApplicationDependenciesResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class ListApplicationVersionsCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.ListApplicationVersionsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.ListApplicationVersionsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class ListApplicationsCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.ListApplicationsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.ListApplicationsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class PutApplicationPolicyCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.PutApplicationPolicyRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.PutApplicationPolicyResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,7 +20,7 @@ class UnshareApplicationCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.UnshareApplicationRequestFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: (output) => output,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
@@ -20,8 +20,8 @@ class UpdateApplicationCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.UpdateApplicationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.UpdateApplicationResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,25 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.UpdateApplicationResponseFilterSensitiveLog = exports.UpdateApplicationRequestFilterSensitiveLog = exports.UnshareApplicationRequestFilterSensitiveLog = exports.PutApplicationPolicyResponseFilterSensitiveLog = exports.PutApplicationPolicyRequestFilterSensitiveLog = exports.ListApplicationVersionsResponseFilterSensitiveLog = exports.ListApplicationVersionsRequestFilterSensitiveLog = exports.ListApplicationsResponseFilterSensitiveLog = exports.ListApplicationsRequestFilterSensitiveLog = exports.ListApplicationDependenciesResponseFilterSensitiveLog = exports.ListApplicationDependenciesRequestFilterSensitiveLog = exports.GetCloudFormationTemplateResponseFilterSensitiveLog = exports.GetCloudFormationTemplateRequestFilterSensitiveLog = exports.GetApplicationPolicyResponseFilterSensitiveLog = exports.GetApplicationPolicyRequestFilterSensitiveLog = exports.GetApplicationResponseFilterSensitiveLog = exports.GetApplicationRequestFilterSensitiveLog = exports.DeleteApplicationRequestFilterSensitiveLog = exports.CreateCloudFormationTemplateResponseFilterSensitiveLog = exports.CreateCloudFormationTemplateRequestFilterSensitiveLog = exports.CreateCloudFormationChangeSetResponseFilterSensitiveLog = exports.CreateCloudFormationChangeSetRequestFilterSensitiveLog = exports.RollbackConfigurationFilterSensitiveLog = exports.CreateApplicationVersionResponseFilterSensitiveLog = exports.CreateApplicationVersionRequestFilterSensitiveLog = exports.CreateApplicationResponseFilterSensitiveLog = exports.VersionFilterSensitiveLog = exports.CreateApplicationRequestFilterSensitiveLog = exports.VersionSummaryFilterSensitiveLog = exports.TagFilterSensitiveLog = exports.RollbackTriggerFilterSensitiveLog = exports.ParameterValueFilterSensitiveLog = exports.ParameterDefinitionFilterSensitiveLog = exports.ApplicationSummaryFilterSensitiveLog = exports.ApplicationPolicyStatementFilterSensitiveLog = exports.ApplicationDependencySummaryFilterSensitiveLog = exports.NotFoundException = exports.Status = exports.TooManyRequestsException = exports.InternalServerErrorException = exports.ForbiddenException = exports.ConflictException = exports.BadRequestException = exports.Capability = void 0;
|
|
4
4
|
const ServerlessApplicationRepositoryServiceException_1 = require("./ServerlessApplicationRepositoryServiceException");
|
|
5
|
-
var ApplicationDependencySummary;
|
|
6
|
-
(function (ApplicationDependencySummary) {
|
|
7
|
-
ApplicationDependencySummary.filterSensitiveLog = (obj) => ({
|
|
8
|
-
...obj,
|
|
9
|
-
});
|
|
10
|
-
})(ApplicationDependencySummary = exports.ApplicationDependencySummary || (exports.ApplicationDependencySummary = {}));
|
|
11
|
-
var ApplicationPolicyStatement;
|
|
12
|
-
(function (ApplicationPolicyStatement) {
|
|
13
|
-
ApplicationPolicyStatement.filterSensitiveLog = (obj) => ({
|
|
14
|
-
...obj,
|
|
15
|
-
});
|
|
16
|
-
})(ApplicationPolicyStatement = exports.ApplicationPolicyStatement || (exports.ApplicationPolicyStatement = {}));
|
|
17
|
-
var ApplicationSummary;
|
|
18
|
-
(function (ApplicationSummary) {
|
|
19
|
-
ApplicationSummary.filterSensitiveLog = (obj) => ({
|
|
20
|
-
...obj,
|
|
21
|
-
});
|
|
22
|
-
})(ApplicationSummary = exports.ApplicationSummary || (exports.ApplicationSummary = {}));
|
|
23
5
|
var Capability;
|
|
24
6
|
(function (Capability) {
|
|
25
7
|
Capability["CAPABILITY_AUTO_EXPAND"] = "CAPABILITY_AUTO_EXPAND";
|
|
@@ -27,36 +9,6 @@ var Capability;
|
|
|
27
9
|
Capability["CAPABILITY_NAMED_IAM"] = "CAPABILITY_NAMED_IAM";
|
|
28
10
|
Capability["CAPABILITY_RESOURCE_POLICY"] = "CAPABILITY_RESOURCE_POLICY";
|
|
29
11
|
})(Capability = exports.Capability || (exports.Capability = {}));
|
|
30
|
-
var ParameterDefinition;
|
|
31
|
-
(function (ParameterDefinition) {
|
|
32
|
-
ParameterDefinition.filterSensitiveLog = (obj) => ({
|
|
33
|
-
...obj,
|
|
34
|
-
});
|
|
35
|
-
})(ParameterDefinition = exports.ParameterDefinition || (exports.ParameterDefinition = {}));
|
|
36
|
-
var ParameterValue;
|
|
37
|
-
(function (ParameterValue) {
|
|
38
|
-
ParameterValue.filterSensitiveLog = (obj) => ({
|
|
39
|
-
...obj,
|
|
40
|
-
});
|
|
41
|
-
})(ParameterValue = exports.ParameterValue || (exports.ParameterValue = {}));
|
|
42
|
-
var RollbackTrigger;
|
|
43
|
-
(function (RollbackTrigger) {
|
|
44
|
-
RollbackTrigger.filterSensitiveLog = (obj) => ({
|
|
45
|
-
...obj,
|
|
46
|
-
});
|
|
47
|
-
})(RollbackTrigger = exports.RollbackTrigger || (exports.RollbackTrigger = {}));
|
|
48
|
-
var Tag;
|
|
49
|
-
(function (Tag) {
|
|
50
|
-
Tag.filterSensitiveLog = (obj) => ({
|
|
51
|
-
...obj,
|
|
52
|
-
});
|
|
53
|
-
})(Tag = exports.Tag || (exports.Tag = {}));
|
|
54
|
-
var VersionSummary;
|
|
55
|
-
(function (VersionSummary) {
|
|
56
|
-
VersionSummary.filterSensitiveLog = (obj) => ({
|
|
57
|
-
...obj,
|
|
58
|
-
});
|
|
59
|
-
})(VersionSummary = exports.VersionSummary || (exports.VersionSummary = {}));
|
|
60
12
|
class BadRequestException extends ServerlessApplicationRepositoryServiceException_1.ServerlessApplicationRepositoryServiceException {
|
|
61
13
|
constructor(opts) {
|
|
62
14
|
super({
|
|
@@ -87,24 +39,6 @@ class ConflictException extends ServerlessApplicationRepositoryServiceException_
|
|
|
87
39
|
}
|
|
88
40
|
}
|
|
89
41
|
exports.ConflictException = ConflictException;
|
|
90
|
-
var CreateApplicationRequest;
|
|
91
|
-
(function (CreateApplicationRequest) {
|
|
92
|
-
CreateApplicationRequest.filterSensitiveLog = (obj) => ({
|
|
93
|
-
...obj,
|
|
94
|
-
});
|
|
95
|
-
})(CreateApplicationRequest = exports.CreateApplicationRequest || (exports.CreateApplicationRequest = {}));
|
|
96
|
-
var Version;
|
|
97
|
-
(function (Version) {
|
|
98
|
-
Version.filterSensitiveLog = (obj) => ({
|
|
99
|
-
...obj,
|
|
100
|
-
});
|
|
101
|
-
})(Version = exports.Version || (exports.Version = {}));
|
|
102
|
-
var CreateApplicationResponse;
|
|
103
|
-
(function (CreateApplicationResponse) {
|
|
104
|
-
CreateApplicationResponse.filterSensitiveLog = (obj) => ({
|
|
105
|
-
...obj,
|
|
106
|
-
});
|
|
107
|
-
})(CreateApplicationResponse = exports.CreateApplicationResponse || (exports.CreateApplicationResponse = {}));
|
|
108
42
|
class ForbiddenException extends ServerlessApplicationRepositoryServiceException_1.ServerlessApplicationRepositoryServiceException {
|
|
109
43
|
constructor(opts) {
|
|
110
44
|
super({
|
|
@@ -150,54 +84,12 @@ class TooManyRequestsException extends ServerlessApplicationRepositoryServiceExc
|
|
|
150
84
|
}
|
|
151
85
|
}
|
|
152
86
|
exports.TooManyRequestsException = TooManyRequestsException;
|
|
153
|
-
var CreateApplicationVersionRequest;
|
|
154
|
-
(function (CreateApplicationVersionRequest) {
|
|
155
|
-
CreateApplicationVersionRequest.filterSensitiveLog = (obj) => ({
|
|
156
|
-
...obj,
|
|
157
|
-
});
|
|
158
|
-
})(CreateApplicationVersionRequest = exports.CreateApplicationVersionRequest || (exports.CreateApplicationVersionRequest = {}));
|
|
159
|
-
var CreateApplicationVersionResponse;
|
|
160
|
-
(function (CreateApplicationVersionResponse) {
|
|
161
|
-
CreateApplicationVersionResponse.filterSensitiveLog = (obj) => ({
|
|
162
|
-
...obj,
|
|
163
|
-
});
|
|
164
|
-
})(CreateApplicationVersionResponse = exports.CreateApplicationVersionResponse || (exports.CreateApplicationVersionResponse = {}));
|
|
165
|
-
var RollbackConfiguration;
|
|
166
|
-
(function (RollbackConfiguration) {
|
|
167
|
-
RollbackConfiguration.filterSensitiveLog = (obj) => ({
|
|
168
|
-
...obj,
|
|
169
|
-
});
|
|
170
|
-
})(RollbackConfiguration = exports.RollbackConfiguration || (exports.RollbackConfiguration = {}));
|
|
171
|
-
var CreateCloudFormationChangeSetRequest;
|
|
172
|
-
(function (CreateCloudFormationChangeSetRequest) {
|
|
173
|
-
CreateCloudFormationChangeSetRequest.filterSensitiveLog = (obj) => ({
|
|
174
|
-
...obj,
|
|
175
|
-
});
|
|
176
|
-
})(CreateCloudFormationChangeSetRequest = exports.CreateCloudFormationChangeSetRequest || (exports.CreateCloudFormationChangeSetRequest = {}));
|
|
177
|
-
var CreateCloudFormationChangeSetResponse;
|
|
178
|
-
(function (CreateCloudFormationChangeSetResponse) {
|
|
179
|
-
CreateCloudFormationChangeSetResponse.filterSensitiveLog = (obj) => ({
|
|
180
|
-
...obj,
|
|
181
|
-
});
|
|
182
|
-
})(CreateCloudFormationChangeSetResponse = exports.CreateCloudFormationChangeSetResponse || (exports.CreateCloudFormationChangeSetResponse = {}));
|
|
183
|
-
var CreateCloudFormationTemplateRequest;
|
|
184
|
-
(function (CreateCloudFormationTemplateRequest) {
|
|
185
|
-
CreateCloudFormationTemplateRequest.filterSensitiveLog = (obj) => ({
|
|
186
|
-
...obj,
|
|
187
|
-
});
|
|
188
|
-
})(CreateCloudFormationTemplateRequest = exports.CreateCloudFormationTemplateRequest || (exports.CreateCloudFormationTemplateRequest = {}));
|
|
189
87
|
var Status;
|
|
190
88
|
(function (Status) {
|
|
191
89
|
Status["ACTIVE"] = "ACTIVE";
|
|
192
90
|
Status["EXPIRED"] = "EXPIRED";
|
|
193
91
|
Status["PREPARING"] = "PREPARING";
|
|
194
92
|
})(Status = exports.Status || (exports.Status = {}));
|
|
195
|
-
var CreateCloudFormationTemplateResponse;
|
|
196
|
-
(function (CreateCloudFormationTemplateResponse) {
|
|
197
|
-
CreateCloudFormationTemplateResponse.filterSensitiveLog = (obj) => ({
|
|
198
|
-
...obj,
|
|
199
|
-
});
|
|
200
|
-
})(CreateCloudFormationTemplateResponse = exports.CreateCloudFormationTemplateResponse || (exports.CreateCloudFormationTemplateResponse = {}));
|
|
201
93
|
class NotFoundException extends ServerlessApplicationRepositoryServiceException_1.ServerlessApplicationRepositoryServiceException {
|
|
202
94
|
constructor(opts) {
|
|
203
95
|
super({
|
|
@@ -213,111 +105,147 @@ class NotFoundException extends ServerlessApplicationRepositoryServiceException_
|
|
|
213
105
|
}
|
|
214
106
|
}
|
|
215
107
|
exports.NotFoundException = NotFoundException;
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
108
|
+
const ApplicationDependencySummaryFilterSensitiveLog = (obj) => ({
|
|
109
|
+
...obj,
|
|
110
|
+
});
|
|
111
|
+
exports.ApplicationDependencySummaryFilterSensitiveLog = ApplicationDependencySummaryFilterSensitiveLog;
|
|
112
|
+
const ApplicationPolicyStatementFilterSensitiveLog = (obj) => ({
|
|
113
|
+
...obj,
|
|
114
|
+
});
|
|
115
|
+
exports.ApplicationPolicyStatementFilterSensitiveLog = ApplicationPolicyStatementFilterSensitiveLog;
|
|
116
|
+
const ApplicationSummaryFilterSensitiveLog = (obj) => ({
|
|
117
|
+
...obj,
|
|
118
|
+
});
|
|
119
|
+
exports.ApplicationSummaryFilterSensitiveLog = ApplicationSummaryFilterSensitiveLog;
|
|
120
|
+
const ParameterDefinitionFilterSensitiveLog = (obj) => ({
|
|
121
|
+
...obj,
|
|
122
|
+
});
|
|
123
|
+
exports.ParameterDefinitionFilterSensitiveLog = ParameterDefinitionFilterSensitiveLog;
|
|
124
|
+
const ParameterValueFilterSensitiveLog = (obj) => ({
|
|
125
|
+
...obj,
|
|
126
|
+
});
|
|
127
|
+
exports.ParameterValueFilterSensitiveLog = ParameterValueFilterSensitiveLog;
|
|
128
|
+
const RollbackTriggerFilterSensitiveLog = (obj) => ({
|
|
129
|
+
...obj,
|
|
130
|
+
});
|
|
131
|
+
exports.RollbackTriggerFilterSensitiveLog = RollbackTriggerFilterSensitiveLog;
|
|
132
|
+
const TagFilterSensitiveLog = (obj) => ({
|
|
133
|
+
...obj,
|
|
134
|
+
});
|
|
135
|
+
exports.TagFilterSensitiveLog = TagFilterSensitiveLog;
|
|
136
|
+
const VersionSummaryFilterSensitiveLog = (obj) => ({
|
|
137
|
+
...obj,
|
|
138
|
+
});
|
|
139
|
+
exports.VersionSummaryFilterSensitiveLog = VersionSummaryFilterSensitiveLog;
|
|
140
|
+
const CreateApplicationRequestFilterSensitiveLog = (obj) => ({
|
|
141
|
+
...obj,
|
|
142
|
+
});
|
|
143
|
+
exports.CreateApplicationRequestFilterSensitiveLog = CreateApplicationRequestFilterSensitiveLog;
|
|
144
|
+
const VersionFilterSensitiveLog = (obj) => ({
|
|
145
|
+
...obj,
|
|
146
|
+
});
|
|
147
|
+
exports.VersionFilterSensitiveLog = VersionFilterSensitiveLog;
|
|
148
|
+
const CreateApplicationResponseFilterSensitiveLog = (obj) => ({
|
|
149
|
+
...obj,
|
|
150
|
+
});
|
|
151
|
+
exports.CreateApplicationResponseFilterSensitiveLog = CreateApplicationResponseFilterSensitiveLog;
|
|
152
|
+
const CreateApplicationVersionRequestFilterSensitiveLog = (obj) => ({
|
|
153
|
+
...obj,
|
|
154
|
+
});
|
|
155
|
+
exports.CreateApplicationVersionRequestFilterSensitiveLog = CreateApplicationVersionRequestFilterSensitiveLog;
|
|
156
|
+
const CreateApplicationVersionResponseFilterSensitiveLog = (obj) => ({
|
|
157
|
+
...obj,
|
|
158
|
+
});
|
|
159
|
+
exports.CreateApplicationVersionResponseFilterSensitiveLog = CreateApplicationVersionResponseFilterSensitiveLog;
|
|
160
|
+
const RollbackConfigurationFilterSensitiveLog = (obj) => ({
|
|
161
|
+
...obj,
|
|
162
|
+
});
|
|
163
|
+
exports.RollbackConfigurationFilterSensitiveLog = RollbackConfigurationFilterSensitiveLog;
|
|
164
|
+
const CreateCloudFormationChangeSetRequestFilterSensitiveLog = (obj) => ({
|
|
165
|
+
...obj,
|
|
166
|
+
});
|
|
167
|
+
exports.CreateCloudFormationChangeSetRequestFilterSensitiveLog = CreateCloudFormationChangeSetRequestFilterSensitiveLog;
|
|
168
|
+
const CreateCloudFormationChangeSetResponseFilterSensitiveLog = (obj) => ({
|
|
169
|
+
...obj,
|
|
170
|
+
});
|
|
171
|
+
exports.CreateCloudFormationChangeSetResponseFilterSensitiveLog = CreateCloudFormationChangeSetResponseFilterSensitiveLog;
|
|
172
|
+
const CreateCloudFormationTemplateRequestFilterSensitiveLog = (obj) => ({
|
|
173
|
+
...obj,
|
|
174
|
+
});
|
|
175
|
+
exports.CreateCloudFormationTemplateRequestFilterSensitiveLog = CreateCloudFormationTemplateRequestFilterSensitiveLog;
|
|
176
|
+
const CreateCloudFormationTemplateResponseFilterSensitiveLog = (obj) => ({
|
|
177
|
+
...obj,
|
|
178
|
+
});
|
|
179
|
+
exports.CreateCloudFormationTemplateResponseFilterSensitiveLog = CreateCloudFormationTemplateResponseFilterSensitiveLog;
|
|
180
|
+
const DeleteApplicationRequestFilterSensitiveLog = (obj) => ({
|
|
181
|
+
...obj,
|
|
182
|
+
});
|
|
183
|
+
exports.DeleteApplicationRequestFilterSensitiveLog = DeleteApplicationRequestFilterSensitiveLog;
|
|
184
|
+
const GetApplicationRequestFilterSensitiveLog = (obj) => ({
|
|
185
|
+
...obj,
|
|
186
|
+
});
|
|
187
|
+
exports.GetApplicationRequestFilterSensitiveLog = GetApplicationRequestFilterSensitiveLog;
|
|
188
|
+
const GetApplicationResponseFilterSensitiveLog = (obj) => ({
|
|
189
|
+
...obj,
|
|
190
|
+
});
|
|
191
|
+
exports.GetApplicationResponseFilterSensitiveLog = GetApplicationResponseFilterSensitiveLog;
|
|
192
|
+
const GetApplicationPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
193
|
+
...obj,
|
|
194
|
+
});
|
|
195
|
+
exports.GetApplicationPolicyRequestFilterSensitiveLog = GetApplicationPolicyRequestFilterSensitiveLog;
|
|
196
|
+
const GetApplicationPolicyResponseFilterSensitiveLog = (obj) => ({
|
|
197
|
+
...obj,
|
|
198
|
+
});
|
|
199
|
+
exports.GetApplicationPolicyResponseFilterSensitiveLog = GetApplicationPolicyResponseFilterSensitiveLog;
|
|
200
|
+
const GetCloudFormationTemplateRequestFilterSensitiveLog = (obj) => ({
|
|
201
|
+
...obj,
|
|
202
|
+
});
|
|
203
|
+
exports.GetCloudFormationTemplateRequestFilterSensitiveLog = GetCloudFormationTemplateRequestFilterSensitiveLog;
|
|
204
|
+
const GetCloudFormationTemplateResponseFilterSensitiveLog = (obj) => ({
|
|
205
|
+
...obj,
|
|
206
|
+
});
|
|
207
|
+
exports.GetCloudFormationTemplateResponseFilterSensitiveLog = GetCloudFormationTemplateResponseFilterSensitiveLog;
|
|
208
|
+
const ListApplicationDependenciesRequestFilterSensitiveLog = (obj) => ({
|
|
209
|
+
...obj,
|
|
210
|
+
});
|
|
211
|
+
exports.ListApplicationDependenciesRequestFilterSensitiveLog = ListApplicationDependenciesRequestFilterSensitiveLog;
|
|
212
|
+
const ListApplicationDependenciesResponseFilterSensitiveLog = (obj) => ({
|
|
213
|
+
...obj,
|
|
214
|
+
});
|
|
215
|
+
exports.ListApplicationDependenciesResponseFilterSensitiveLog = ListApplicationDependenciesResponseFilterSensitiveLog;
|
|
216
|
+
const ListApplicationsRequestFilterSensitiveLog = (obj) => ({
|
|
217
|
+
...obj,
|
|
218
|
+
});
|
|
219
|
+
exports.ListApplicationsRequestFilterSensitiveLog = ListApplicationsRequestFilterSensitiveLog;
|
|
220
|
+
const ListApplicationsResponseFilterSensitiveLog = (obj) => ({
|
|
221
|
+
...obj,
|
|
222
|
+
});
|
|
223
|
+
exports.ListApplicationsResponseFilterSensitiveLog = ListApplicationsResponseFilterSensitiveLog;
|
|
224
|
+
const ListApplicationVersionsRequestFilterSensitiveLog = (obj) => ({
|
|
225
|
+
...obj,
|
|
226
|
+
});
|
|
227
|
+
exports.ListApplicationVersionsRequestFilterSensitiveLog = ListApplicationVersionsRequestFilterSensitiveLog;
|
|
228
|
+
const ListApplicationVersionsResponseFilterSensitiveLog = (obj) => ({
|
|
229
|
+
...obj,
|
|
230
|
+
});
|
|
231
|
+
exports.ListApplicationVersionsResponseFilterSensitiveLog = ListApplicationVersionsResponseFilterSensitiveLog;
|
|
232
|
+
const PutApplicationPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
233
|
+
...obj,
|
|
234
|
+
});
|
|
235
|
+
exports.PutApplicationPolicyRequestFilterSensitiveLog = PutApplicationPolicyRequestFilterSensitiveLog;
|
|
236
|
+
const PutApplicationPolicyResponseFilterSensitiveLog = (obj) => ({
|
|
237
|
+
...obj,
|
|
238
|
+
});
|
|
239
|
+
exports.PutApplicationPolicyResponseFilterSensitiveLog = PutApplicationPolicyResponseFilterSensitiveLog;
|
|
240
|
+
const UnshareApplicationRequestFilterSensitiveLog = (obj) => ({
|
|
241
|
+
...obj,
|
|
242
|
+
});
|
|
243
|
+
exports.UnshareApplicationRequestFilterSensitiveLog = UnshareApplicationRequestFilterSensitiveLog;
|
|
244
|
+
const UpdateApplicationRequestFilterSensitiveLog = (obj) => ({
|
|
245
|
+
...obj,
|
|
246
|
+
});
|
|
247
|
+
exports.UpdateApplicationRequestFilterSensitiveLog = UpdateApplicationRequestFilterSensitiveLog;
|
|
248
|
+
const UpdateApplicationResponseFilterSensitiveLog = (obj) => ({
|
|
249
|
+
...obj,
|
|
250
|
+
});
|
|
251
|
+
exports.UpdateApplicationResponseFilterSensitiveLog = UpdateApplicationResponseFilterSensitiveLog;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { CreateApplicationRequestFilterSensitiveLog, CreateApplicationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CreateApplicationCommand, serializeAws_restJson1CreateApplicationCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CreateApplicationCommand = (function (_super) {
|
|
7
7
|
__extends(CreateApplicationCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateApplicationCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateApplicationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateApplicationResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { CreateApplicationVersionRequestFilterSensitiveLog, CreateApplicationVersionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CreateApplicationVersionCommand, serializeAws_restJson1CreateApplicationVersionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CreateApplicationVersionCommand = (function (_super) {
|
|
7
7
|
__extends(CreateApplicationVersionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateApplicationVersionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateApplicationVersionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateApplicationVersionResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|