@aws-sdk/client-serverlessapplicationrepository 3.296.0 → 3.298.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/dist-cjs/commands/CreateApplicationCommand.js +2 -3
- package/dist-cjs/commands/CreateApplicationVersionCommand.js +2 -3
- package/dist-cjs/commands/CreateCloudFormationChangeSetCommand.js +2 -3
- package/dist-cjs/commands/CreateCloudFormationTemplateCommand.js +2 -3
- package/dist-cjs/commands/DeleteApplicationCommand.js +2 -3
- package/dist-cjs/commands/GetApplicationCommand.js +2 -3
- package/dist-cjs/commands/GetApplicationPolicyCommand.js +2 -3
- package/dist-cjs/commands/GetCloudFormationTemplateCommand.js +2 -3
- package/dist-cjs/commands/ListApplicationDependenciesCommand.js +2 -3
- package/dist-cjs/commands/ListApplicationVersionsCommand.js +2 -3
- package/dist-cjs/commands/ListApplicationsCommand.js +2 -3
- package/dist-cjs/commands/PutApplicationPolicyCommand.js +2 -3
- package/dist-cjs/commands/UnshareApplicationCommand.js +2 -3
- package/dist-cjs/commands/UpdateApplicationCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -145
- package/dist-es/commands/CreateApplicationCommand.js +2 -3
- package/dist-es/commands/CreateApplicationVersionCommand.js +2 -3
- package/dist-es/commands/CreateCloudFormationChangeSetCommand.js +2 -3
- package/dist-es/commands/CreateCloudFormationTemplateCommand.js +2 -3
- package/dist-es/commands/DeleteApplicationCommand.js +2 -3
- package/dist-es/commands/GetApplicationCommand.js +2 -3
- package/dist-es/commands/GetApplicationPolicyCommand.js +2 -3
- package/dist-es/commands/GetCloudFormationTemplateCommand.js +2 -3
- package/dist-es/commands/ListApplicationDependenciesCommand.js +2 -3
- package/dist-es/commands/ListApplicationVersionsCommand.js +2 -3
- package/dist-es/commands/ListApplicationsCommand.js +2 -3
- package/dist-es/commands/PutApplicationPolicyCommand.js +2 -3
- package/dist-es/commands/UnshareApplicationCommand.js +2 -3
- package/dist-es/commands/UpdateApplicationCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -108
- package/dist-types/ServerlessApplicationRepository.d.ts +15 -0
- package/dist-types/ServerlessApplicationRepositoryClient.d.ts +24 -4
- package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/CreateApplicationVersionCommand.d.ts +16 -0
- package/dist-types/commands/CreateCloudFormationChangeSetCommand.d.ts +16 -0
- package/dist-types/commands/CreateCloudFormationTemplateCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +16 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +16 -0
- package/dist-types/commands/GetApplicationPolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetCloudFormationTemplateCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationDependenciesCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/PutApplicationPolicyCommand.d.ts +16 -0
- package/dist-types/commands/UnshareApplicationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +16 -0
- package/dist-types/models/ServerlessApplicationRepositoryServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +104 -148
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListApplicationDependenciesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListApplicationVersionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -104
- package/package.json +4 -3
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListApplicationsRequestFilterSensitiveLog, ListApplicationsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1ListApplicationsCommand, serializeAws_restJson1ListApplicationsCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class ListApplicationsCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class ListApplicationsCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { PutApplicationPolicyRequestFilterSensitiveLog, PutApplicationPolicyResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1PutApplicationPolicyCommand, serializeAws_restJson1PutApplicationPolicyCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class PutApplicationPolicyCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class PutApplicationPolicyCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { UnshareApplicationRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1UnshareApplicationCommand, serializeAws_restJson1UnshareApplicationCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class UnshareApplicationCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class UnshareApplicationCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog: (
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { UpdateApplicationRequestFilterSensitiveLog, UpdateApplicationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1UpdateApplicationCommand, serializeAws_restJson1UpdateApplicationCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class UpdateApplicationCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class UpdateApplicationCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -96,111 +96,3 @@ export class NotFoundException extends __BaseException {
|
|
|
96
96
|
this.Message = opts.Message;
|
|
97
97
|
}
|
|
98
98
|
}
|
|
99
|
-
export const ApplicationDependencySummaryFilterSensitiveLog = (obj) => ({
|
|
100
|
-
...obj,
|
|
101
|
-
});
|
|
102
|
-
export const ApplicationPolicyStatementFilterSensitiveLog = (obj) => ({
|
|
103
|
-
...obj,
|
|
104
|
-
});
|
|
105
|
-
export const ApplicationSummaryFilterSensitiveLog = (obj) => ({
|
|
106
|
-
...obj,
|
|
107
|
-
});
|
|
108
|
-
export const ParameterDefinitionFilterSensitiveLog = (obj) => ({
|
|
109
|
-
...obj,
|
|
110
|
-
});
|
|
111
|
-
export const ParameterValueFilterSensitiveLog = (obj) => ({
|
|
112
|
-
...obj,
|
|
113
|
-
});
|
|
114
|
-
export const RollbackTriggerFilterSensitiveLog = (obj) => ({
|
|
115
|
-
...obj,
|
|
116
|
-
});
|
|
117
|
-
export const TagFilterSensitiveLog = (obj) => ({
|
|
118
|
-
...obj,
|
|
119
|
-
});
|
|
120
|
-
export const VersionSummaryFilterSensitiveLog = (obj) => ({
|
|
121
|
-
...obj,
|
|
122
|
-
});
|
|
123
|
-
export const CreateApplicationRequestFilterSensitiveLog = (obj) => ({
|
|
124
|
-
...obj,
|
|
125
|
-
});
|
|
126
|
-
export const VersionFilterSensitiveLog = (obj) => ({
|
|
127
|
-
...obj,
|
|
128
|
-
});
|
|
129
|
-
export const CreateApplicationResponseFilterSensitiveLog = (obj) => ({
|
|
130
|
-
...obj,
|
|
131
|
-
});
|
|
132
|
-
export const CreateApplicationVersionRequestFilterSensitiveLog = (obj) => ({
|
|
133
|
-
...obj,
|
|
134
|
-
});
|
|
135
|
-
export const CreateApplicationVersionResponseFilterSensitiveLog = (obj) => ({
|
|
136
|
-
...obj,
|
|
137
|
-
});
|
|
138
|
-
export const RollbackConfigurationFilterSensitiveLog = (obj) => ({
|
|
139
|
-
...obj,
|
|
140
|
-
});
|
|
141
|
-
export const CreateCloudFormationChangeSetRequestFilterSensitiveLog = (obj) => ({
|
|
142
|
-
...obj,
|
|
143
|
-
});
|
|
144
|
-
export const CreateCloudFormationChangeSetResponseFilterSensitiveLog = (obj) => ({
|
|
145
|
-
...obj,
|
|
146
|
-
});
|
|
147
|
-
export const CreateCloudFormationTemplateRequestFilterSensitiveLog = (obj) => ({
|
|
148
|
-
...obj,
|
|
149
|
-
});
|
|
150
|
-
export const CreateCloudFormationTemplateResponseFilterSensitiveLog = (obj) => ({
|
|
151
|
-
...obj,
|
|
152
|
-
});
|
|
153
|
-
export const DeleteApplicationRequestFilterSensitiveLog = (obj) => ({
|
|
154
|
-
...obj,
|
|
155
|
-
});
|
|
156
|
-
export const GetApplicationRequestFilterSensitiveLog = (obj) => ({
|
|
157
|
-
...obj,
|
|
158
|
-
});
|
|
159
|
-
export const GetApplicationResponseFilterSensitiveLog = (obj) => ({
|
|
160
|
-
...obj,
|
|
161
|
-
});
|
|
162
|
-
export const GetApplicationPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
163
|
-
...obj,
|
|
164
|
-
});
|
|
165
|
-
export const GetApplicationPolicyResponseFilterSensitiveLog = (obj) => ({
|
|
166
|
-
...obj,
|
|
167
|
-
});
|
|
168
|
-
export const GetCloudFormationTemplateRequestFilterSensitiveLog = (obj) => ({
|
|
169
|
-
...obj,
|
|
170
|
-
});
|
|
171
|
-
export const GetCloudFormationTemplateResponseFilterSensitiveLog = (obj) => ({
|
|
172
|
-
...obj,
|
|
173
|
-
});
|
|
174
|
-
export const ListApplicationDependenciesRequestFilterSensitiveLog = (obj) => ({
|
|
175
|
-
...obj,
|
|
176
|
-
});
|
|
177
|
-
export const ListApplicationDependenciesResponseFilterSensitiveLog = (obj) => ({
|
|
178
|
-
...obj,
|
|
179
|
-
});
|
|
180
|
-
export const ListApplicationsRequestFilterSensitiveLog = (obj) => ({
|
|
181
|
-
...obj,
|
|
182
|
-
});
|
|
183
|
-
export const ListApplicationsResponseFilterSensitiveLog = (obj) => ({
|
|
184
|
-
...obj,
|
|
185
|
-
});
|
|
186
|
-
export const ListApplicationVersionsRequestFilterSensitiveLog = (obj) => ({
|
|
187
|
-
...obj,
|
|
188
|
-
});
|
|
189
|
-
export const ListApplicationVersionsResponseFilterSensitiveLog = (obj) => ({
|
|
190
|
-
...obj,
|
|
191
|
-
});
|
|
192
|
-
export const PutApplicationPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
193
|
-
...obj,
|
|
194
|
-
});
|
|
195
|
-
export const PutApplicationPolicyResponseFilterSensitiveLog = (obj) => ({
|
|
196
|
-
...obj,
|
|
197
|
-
});
|
|
198
|
-
export const UnshareApplicationRequestFilterSensitiveLog = (obj) => ({
|
|
199
|
-
...obj,
|
|
200
|
-
});
|
|
201
|
-
export const UpdateApplicationRequestFilterSensitiveLog = (obj) => ({
|
|
202
|
-
...obj,
|
|
203
|
-
});
|
|
204
|
-
export const UpdateApplicationResponseFilterSensitiveLog = (obj) => ({
|
|
205
|
-
...obj,
|
|
206
|
-
});
|
|
@@ -15,6 +15,7 @@ import { UnshareApplicationCommandInput, UnshareApplicationCommandOutput } from
|
|
|
15
15
|
import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
|
|
16
16
|
import { ServerlessApplicationRepositoryClient } from "./ServerlessApplicationRepositoryClient";
|
|
17
17
|
/**
|
|
18
|
+
* @public
|
|
18
19
|
* <p>The AWS Serverless Application Repository makes it easy for developers and enterprises to quickly find
|
|
19
20
|
* and deploy serverless applications in the AWS Cloud. For more information about serverless applications,
|
|
20
21
|
* see Serverless Computing and Applications on the AWS website.</p><p>The AWS Serverless Application Repository is deeply integrated with the AWS Lambda console, so that developers of
|
|
@@ -38,72 +39,84 @@ import { ServerlessApplicationRepositoryClient } from "./ServerlessApplicationRe
|
|
|
38
39
|
*/
|
|
39
40
|
export declare class ServerlessApplicationRepository extends ServerlessApplicationRepositoryClient {
|
|
40
41
|
/**
|
|
42
|
+
* @public
|
|
41
43
|
* <p>Creates an application, optionally including an AWS SAM file to create the first application version in the same call.</p>
|
|
42
44
|
*/
|
|
43
45
|
createApplication(args: CreateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<CreateApplicationCommandOutput>;
|
|
44
46
|
createApplication(args: CreateApplicationCommandInput, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
45
47
|
createApplication(args: CreateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
46
48
|
/**
|
|
49
|
+
* @public
|
|
47
50
|
* <p>Creates an application version.</p>
|
|
48
51
|
*/
|
|
49
52
|
createApplicationVersion(args: CreateApplicationVersionCommandInput, options?: __HttpHandlerOptions): Promise<CreateApplicationVersionCommandOutput>;
|
|
50
53
|
createApplicationVersion(args: CreateApplicationVersionCommandInput, cb: (err: any, data?: CreateApplicationVersionCommandOutput) => void): void;
|
|
51
54
|
createApplicationVersion(args: CreateApplicationVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApplicationVersionCommandOutput) => void): void;
|
|
52
55
|
/**
|
|
56
|
+
* @public
|
|
53
57
|
* <p>Creates an AWS CloudFormation change set for the given application.</p>
|
|
54
58
|
*/
|
|
55
59
|
createCloudFormationChangeSet(args: CreateCloudFormationChangeSetCommandInput, options?: __HttpHandlerOptions): Promise<CreateCloudFormationChangeSetCommandOutput>;
|
|
56
60
|
createCloudFormationChangeSet(args: CreateCloudFormationChangeSetCommandInput, cb: (err: any, data?: CreateCloudFormationChangeSetCommandOutput) => void): void;
|
|
57
61
|
createCloudFormationChangeSet(args: CreateCloudFormationChangeSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCloudFormationChangeSetCommandOutput) => void): void;
|
|
58
62
|
/**
|
|
63
|
+
* @public
|
|
59
64
|
* <p>Creates an AWS CloudFormation template.</p>
|
|
60
65
|
*/
|
|
61
66
|
createCloudFormationTemplate(args: CreateCloudFormationTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateCloudFormationTemplateCommandOutput>;
|
|
62
67
|
createCloudFormationTemplate(args: CreateCloudFormationTemplateCommandInput, cb: (err: any, data?: CreateCloudFormationTemplateCommandOutput) => void): void;
|
|
63
68
|
createCloudFormationTemplate(args: CreateCloudFormationTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCloudFormationTemplateCommandOutput) => void): void;
|
|
64
69
|
/**
|
|
70
|
+
* @public
|
|
65
71
|
* <p>Deletes the specified application.</p>
|
|
66
72
|
*/
|
|
67
73
|
deleteApplication(args: DeleteApplicationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteApplicationCommandOutput>;
|
|
68
74
|
deleteApplication(args: DeleteApplicationCommandInput, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
|
|
69
75
|
deleteApplication(args: DeleteApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
|
|
70
76
|
/**
|
|
77
|
+
* @public
|
|
71
78
|
* <p>Gets the specified application.</p>
|
|
72
79
|
*/
|
|
73
80
|
getApplication(args: GetApplicationCommandInput, options?: __HttpHandlerOptions): Promise<GetApplicationCommandOutput>;
|
|
74
81
|
getApplication(args: GetApplicationCommandInput, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
|
|
75
82
|
getApplication(args: GetApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
|
|
76
83
|
/**
|
|
84
|
+
* @public
|
|
77
85
|
* <p>Retrieves the policy for the application.</p>
|
|
78
86
|
*/
|
|
79
87
|
getApplicationPolicy(args: GetApplicationPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetApplicationPolicyCommandOutput>;
|
|
80
88
|
getApplicationPolicy(args: GetApplicationPolicyCommandInput, cb: (err: any, data?: GetApplicationPolicyCommandOutput) => void): void;
|
|
81
89
|
getApplicationPolicy(args: GetApplicationPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetApplicationPolicyCommandOutput) => void): void;
|
|
82
90
|
/**
|
|
91
|
+
* @public
|
|
83
92
|
* <p>Gets the specified AWS CloudFormation template.</p>
|
|
84
93
|
*/
|
|
85
94
|
getCloudFormationTemplate(args: GetCloudFormationTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetCloudFormationTemplateCommandOutput>;
|
|
86
95
|
getCloudFormationTemplate(args: GetCloudFormationTemplateCommandInput, cb: (err: any, data?: GetCloudFormationTemplateCommandOutput) => void): void;
|
|
87
96
|
getCloudFormationTemplate(args: GetCloudFormationTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCloudFormationTemplateCommandOutput) => void): void;
|
|
88
97
|
/**
|
|
98
|
+
* @public
|
|
89
99
|
* <p>Retrieves the list of applications nested in the containing application.</p>
|
|
90
100
|
*/
|
|
91
101
|
listApplicationDependencies(args: ListApplicationDependenciesCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationDependenciesCommandOutput>;
|
|
92
102
|
listApplicationDependencies(args: ListApplicationDependenciesCommandInput, cb: (err: any, data?: ListApplicationDependenciesCommandOutput) => void): void;
|
|
93
103
|
listApplicationDependencies(args: ListApplicationDependenciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationDependenciesCommandOutput) => void): void;
|
|
94
104
|
/**
|
|
105
|
+
* @public
|
|
95
106
|
* <p>Lists applications owned by the requester.</p>
|
|
96
107
|
*/
|
|
97
108
|
listApplications(args: ListApplicationsCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationsCommandOutput>;
|
|
98
109
|
listApplications(args: ListApplicationsCommandInput, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
99
110
|
listApplications(args: ListApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
100
111
|
/**
|
|
112
|
+
* @public
|
|
101
113
|
* <p>Lists versions for the specified application.</p>
|
|
102
114
|
*/
|
|
103
115
|
listApplicationVersions(args: ListApplicationVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationVersionsCommandOutput>;
|
|
104
116
|
listApplicationVersions(args: ListApplicationVersionsCommandInput, cb: (err: any, data?: ListApplicationVersionsCommandOutput) => void): void;
|
|
105
117
|
listApplicationVersions(args: ListApplicationVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationVersionsCommandOutput) => void): void;
|
|
106
118
|
/**
|
|
119
|
+
* @public
|
|
107
120
|
* <p>Sets the permission policy for an application. For the list of actions supported for this operation, see
|
|
108
121
|
* <a href="https://docs.aws.amazon.com/serverlessrepo/latest/devguide/access-control-resource-based.html#application-permissions">Application
|
|
109
122
|
* Permissions</a>
|
|
@@ -113,12 +126,14 @@ export declare class ServerlessApplicationRepository extends ServerlessApplicati
|
|
|
113
126
|
putApplicationPolicy(args: PutApplicationPolicyCommandInput, cb: (err: any, data?: PutApplicationPolicyCommandOutput) => void): void;
|
|
114
127
|
putApplicationPolicy(args: PutApplicationPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutApplicationPolicyCommandOutput) => void): void;
|
|
115
128
|
/**
|
|
129
|
+
* @public
|
|
116
130
|
* <p>Unshares an application from an AWS Organization.</p><p>This operation can be called only from the organization's master account.</p>
|
|
117
131
|
*/
|
|
118
132
|
unshareApplication(args: UnshareApplicationCommandInput, options?: __HttpHandlerOptions): Promise<UnshareApplicationCommandOutput>;
|
|
119
133
|
unshareApplication(args: UnshareApplicationCommandInput, cb: (err: any, data?: UnshareApplicationCommandOutput) => void): void;
|
|
120
134
|
unshareApplication(args: UnshareApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UnshareApplicationCommandOutput) => void): void;
|
|
121
135
|
/**
|
|
136
|
+
* @public
|
|
122
137
|
* <p>Updates the specified application.</p>
|
|
123
138
|
*/
|
|
124
139
|
updateApplication(args: UpdateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateApplicationCommandOutput>;
|
|
@@ -22,15 +22,24 @@ import { PutApplicationPolicyCommandInput, PutApplicationPolicyCommandOutput } f
|
|
|
22
22
|
import { UnshareApplicationCommandInput, UnshareApplicationCommandOutput } from "./commands/UnshareApplicationCommand";
|
|
23
23
|
import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
|
|
24
24
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
25
28
|
export type ServiceInputTypes = CreateApplicationCommandInput | CreateApplicationVersionCommandInput | CreateCloudFormationChangeSetCommandInput | CreateCloudFormationTemplateCommandInput | DeleteApplicationCommandInput | GetApplicationCommandInput | GetApplicationPolicyCommandInput | GetCloudFormationTemplateCommandInput | ListApplicationDependenciesCommandInput | ListApplicationVersionsCommandInput | ListApplicationsCommandInput | PutApplicationPolicyCommandInput | UnshareApplicationCommandInput | UpdateApplicationCommandInput;
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
26
32
|
export type ServiceOutputTypes = CreateApplicationCommandOutput | CreateApplicationVersionCommandOutput | CreateCloudFormationChangeSetCommandOutput | CreateCloudFormationTemplateCommandOutput | DeleteApplicationCommandOutput | GetApplicationCommandOutput | GetApplicationPolicyCommandOutput | GetCloudFormationTemplateCommandOutput | ListApplicationDependenciesCommandOutput | ListApplicationVersionsCommandOutput | ListApplicationsCommandOutput | PutApplicationPolicyCommandOutput | UnshareApplicationCommandOutput | UpdateApplicationCommandOutput;
|
|
33
|
+
/**
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
27
36
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
28
37
|
/**
|
|
29
38
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
30
39
|
*/
|
|
31
40
|
requestHandler?: __HttpHandler;
|
|
32
41
|
/**
|
|
33
|
-
* A constructor for a class implementing the {@link
|
|
42
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
34
43
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
35
44
|
* @internal
|
|
36
45
|
*/
|
|
@@ -120,23 +129,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
120
129
|
*/
|
|
121
130
|
logger?: __Logger;
|
|
122
131
|
/**
|
|
123
|
-
* The {@link
|
|
132
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
124
133
|
*/
|
|
125
134
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
126
135
|
}
|
|
136
|
+
/**
|
|
137
|
+
* @public
|
|
138
|
+
*/
|
|
127
139
|
type ServerlessApplicationRepositoryClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
128
140
|
/**
|
|
129
|
-
*
|
|
141
|
+
* @public
|
|
142
|
+
*
|
|
143
|
+
* The configuration interface of ServerlessApplicationRepositoryClient class constructor that set the region, credentials and other options.
|
|
130
144
|
*/
|
|
131
145
|
export interface ServerlessApplicationRepositoryClientConfig extends ServerlessApplicationRepositoryClientConfigType {
|
|
132
146
|
}
|
|
147
|
+
/**
|
|
148
|
+
* @public
|
|
149
|
+
*/
|
|
133
150
|
type ServerlessApplicationRepositoryClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
134
151
|
/**
|
|
135
|
-
*
|
|
152
|
+
* @public
|
|
153
|
+
*
|
|
154
|
+
* The resolved configuration interface of ServerlessApplicationRepositoryClient class. This is resolved and normalized from the {@link ServerlessApplicationRepositoryClientConfig | constructor configuration interface}.
|
|
136
155
|
*/
|
|
137
156
|
export interface ServerlessApplicationRepositoryClientResolvedConfig extends ServerlessApplicationRepositoryClientResolvedConfigType {
|
|
138
157
|
}
|
|
139
158
|
/**
|
|
159
|
+
* @public
|
|
140
160
|
* <p>The AWS Serverless Application Repository makes it easy for developers and enterprises to quickly find
|
|
141
161
|
* and deploy serverless applications in the AWS Cloud. For more information about serverless applications,
|
|
142
162
|
* see Serverless Computing and Applications on the AWS website.</p><p>The AWS Serverless Application Repository is deeply integrated with the AWS Lambda console, so that developers of
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateApplicationCommandInput extends CreateApplicationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateApplicationCommandOutput extends CreateApplicationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an application, optionally including an AWS SAM file to create the first application version in the same call.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateApplicationCommandInput - {@link CreateApplicationCommandInput}
|
|
34
|
+
* @returns {@link CreateApplicationCommandOutput}
|
|
28
35
|
* @see {@link CreateApplicationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateApplicationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ServerlessApplicationRepositoryClientResolvedConfig | config} for ServerlessApplicationRepositoryClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
49
56
|
export declare class CreateApplicationCommand extends $Command<CreateApplicationCommandInput, CreateApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
50
57
|
readonly input: CreateApplicationCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: CreateApplicationCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateApplicationCommandInput, CreateApplicationCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateApplicationVersionRequest, CreateApplicationVersionResponse } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateApplicationVersionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateApplicationVersionCommandInput extends CreateApplicationVersionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateApplicationVersionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateApplicationVersionCommandOutput extends CreateApplicationVersionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an application version.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateApplicationVersionCommandOutput extends CreateApplication
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateApplicationVersionCommandInput - {@link CreateApplicationVersionCommandInput}
|
|
34
|
+
* @returns {@link CreateApplicationVersionCommandOutput}
|
|
28
35
|
* @see {@link CreateApplicationVersionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateApplicationVersionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ServerlessApplicationRepositoryClientResolvedConfig | config} for ServerlessApplicationRepositoryClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface CreateApplicationVersionCommandOutput extends CreateApplication
|
|
|
49
56
|
export declare class CreateApplicationVersionCommand extends $Command<CreateApplicationVersionCommandInput, CreateApplicationVersionCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
50
57
|
readonly input: CreateApplicationVersionCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: CreateApplicationVersionCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateApplicationVersionCommandInput, CreateApplicationVersionCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateCloudFormationChangeSetRequest, CreateCloudFormationChangeSetResponse } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateCloudFormationChangeSetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateCloudFormationChangeSetCommandInput extends CreateCloudFormationChangeSetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateCloudFormationChangeSetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateCloudFormationChangeSetCommandOutput extends CreateCloudFormationChangeSetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an AWS CloudFormation change set for the given application.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateCloudFormationChangeSetCommandOutput extends CreateCloudF
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateCloudFormationChangeSetCommandInput - {@link CreateCloudFormationChangeSetCommandInput}
|
|
34
|
+
* @returns {@link CreateCloudFormationChangeSetCommandOutput}
|
|
28
35
|
* @see {@link CreateCloudFormationChangeSetCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateCloudFormationChangeSetCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ServerlessApplicationRepositoryClientResolvedConfig | config} for ServerlessApplicationRepositoryClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface CreateCloudFormationChangeSetCommandOutput extends CreateCloudF
|
|
|
46
53
|
export declare class CreateCloudFormationChangeSetCommand extends $Command<CreateCloudFormationChangeSetCommandInput, CreateCloudFormationChangeSetCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
47
54
|
readonly input: CreateCloudFormationChangeSetCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: CreateCloudFormationChangeSetCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateCloudFormationChangeSetCommandInput, CreateCloudFormationChangeSetCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateCloudFormationTemplateRequest, CreateCloudFormationTemplateResponse } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateCloudFormationTemplateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateCloudFormationTemplateCommandInput extends CreateCloudFormationTemplateRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateCloudFormationTemplateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateCloudFormationTemplateCommandOutput extends CreateCloudFormationTemplateResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an AWS CloudFormation template.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateCloudFormationTemplateCommandOutput extends CreateCloudFo
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateCloudFormationTemplateCommandInput - {@link CreateCloudFormationTemplateCommandInput}
|
|
34
|
+
* @returns {@link CreateCloudFormationTemplateCommandOutput}
|
|
28
35
|
* @see {@link CreateCloudFormationTemplateCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateCloudFormationTemplateCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ServerlessApplicationRepositoryClientResolvedConfig | config} for ServerlessApplicationRepositoryClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface CreateCloudFormationTemplateCommandOutput extends CreateCloudFo
|
|
|
49
56
|
export declare class CreateCloudFormationTemplateCommand extends $Command<CreateCloudFormationTemplateCommandInput, CreateCloudFormationTemplateCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
50
57
|
readonly input: CreateCloudFormationTemplateCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: CreateCloudFormationTemplateCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateCloudFormationTemplateCommandInput, CreateCloudFormationTemplateCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteApplicationRequest } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteApplicationCommandInput extends DeleteApplicationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteApplicationCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified application.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteApplicationCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteApplicationCommandInput - {@link DeleteApplicationCommandInput}
|
|
34
|
+
* @returns {@link DeleteApplicationCommandOutput}
|
|
28
35
|
* @see {@link DeleteApplicationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteApplicationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ServerlessApplicationRepositoryClientResolvedConfig | config} for ServerlessApplicationRepositoryClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface DeleteApplicationCommandOutput extends __MetadataBearer {
|
|
|
52
59
|
export declare class DeleteApplicationCommand extends $Command<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
53
60
|
readonly input: DeleteApplicationCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: DeleteApplicationCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationCommandInput, DeleteApplicationCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|