@aws-sdk/client-serverlessapplicationrepository 3.478.0 → 3.481.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 +18 -41
- package/dist-cjs/commands/CreateApplicationVersionCommand.js +18 -41
- package/dist-cjs/commands/CreateCloudFormationChangeSetCommand.js +18 -41
- package/dist-cjs/commands/CreateCloudFormationTemplateCommand.js +18 -41
- package/dist-cjs/commands/DeleteApplicationCommand.js +18 -41
- package/dist-cjs/commands/GetApplicationCommand.js +18 -41
- package/dist-cjs/commands/GetApplicationPolicyCommand.js +18 -41
- package/dist-cjs/commands/GetCloudFormationTemplateCommand.js +18 -41
- package/dist-cjs/commands/ListApplicationDependenciesCommand.js +18 -41
- package/dist-cjs/commands/ListApplicationVersionsCommand.js +18 -41
- package/dist-cjs/commands/ListApplicationsCommand.js +18 -41
- package/dist-cjs/commands/PutApplicationPolicyCommand.js +18 -41
- package/dist-cjs/commands/UnshareApplicationCommand.js +18 -41
- package/dist-cjs/commands/UpdateApplicationCommand.js +18 -41
- package/dist-cjs/endpoint/EndpointParameters.js +7 -1
- package/dist-es/commands/CreateApplicationCommand.js +18 -41
- package/dist-es/commands/CreateApplicationVersionCommand.js +18 -41
- package/dist-es/commands/CreateCloudFormationChangeSetCommand.js +18 -41
- package/dist-es/commands/CreateCloudFormationTemplateCommand.js +18 -41
- package/dist-es/commands/DeleteApplicationCommand.js +18 -41
- package/dist-es/commands/GetApplicationCommand.js +18 -41
- package/dist-es/commands/GetApplicationPolicyCommand.js +18 -41
- package/dist-es/commands/GetCloudFormationTemplateCommand.js +18 -41
- package/dist-es/commands/ListApplicationDependenciesCommand.js +18 -41
- package/dist-es/commands/ListApplicationVersionsCommand.js +18 -41
- package/dist-es/commands/ListApplicationsCommand.js +18 -41
- package/dist-es/commands/PutApplicationPolicyCommand.js +18 -41
- package/dist-es/commands/UnshareApplicationCommand.js +18 -41
- package/dist-es/commands/UpdateApplicationCommand.js +18 -41
- package/dist-es/endpoint/EndpointParameters.js +6 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +6 -21
- package/dist-types/commands/CreateApplicationVersionCommand.d.ts +6 -21
- package/dist-types/commands/CreateCloudFormationChangeSetCommand.d.ts +6 -21
- package/dist-types/commands/CreateCloudFormationTemplateCommand.d.ts +6 -21
- package/dist-types/commands/DeleteApplicationCommand.d.ts +6 -21
- package/dist-types/commands/GetApplicationCommand.d.ts +6 -21
- package/dist-types/commands/GetApplicationPolicyCommand.d.ts +6 -21
- package/dist-types/commands/GetCloudFormationTemplateCommand.d.ts +6 -21
- package/dist-types/commands/ListApplicationDependenciesCommand.d.ts +6 -21
- package/dist-types/commands/ListApplicationVersionsCommand.d.ts +6 -21
- package/dist-types/commands/ListApplicationsCommand.d.ts +6 -21
- package/dist-types/commands/PutApplicationPolicyCommand.d.ts +6 -21
- package/dist-types/commands/UnshareApplicationCommand.d.ts +6 -21
- package/dist-types/commands/UpdateApplicationCommand.d.ts +6 -21
- package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/CreateApplicationVersionCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/CreateCloudFormationChangeSetCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/CreateCloudFormationTemplateCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/GetApplicationPolicyCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/GetCloudFormationTemplateCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/ListApplicationDependenciesCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/ListApplicationVersionsCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/PutApplicationPolicyCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/UnshareApplicationCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +14 -23
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
- package/package.json +9 -9
|
@@ -1,47 +1,24 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
5
|
import { de_UpdateApplicationCommand, se_UpdateApplicationCommand } from "../protocols/Aws_restJson1";
|
|
6
6
|
export { $Command };
|
|
7
|
-
export class UpdateApplicationCommand extends $Command
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
const { logger } = configuration;
|
|
25
|
-
const clientName = "ServerlessApplicationRepositoryClient";
|
|
26
|
-
const commandName = "UpdateApplicationCommand";
|
|
27
|
-
const handlerExecutionContext = {
|
|
28
|
-
logger,
|
|
29
|
-
clientName,
|
|
30
|
-
commandName,
|
|
31
|
-
inputFilterSensitiveLog: (_) => _,
|
|
32
|
-
outputFilterSensitiveLog: (_) => _,
|
|
33
|
-
[SMITHY_CONTEXT_KEY]: {
|
|
34
|
-
service: "ServerlessApplicationRepository",
|
|
35
|
-
operation: "UpdateApplication",
|
|
36
|
-
},
|
|
37
|
-
};
|
|
38
|
-
const { requestHandler } = configuration;
|
|
39
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
|
-
}
|
|
41
|
-
serialize(input, context) {
|
|
42
|
-
return se_UpdateApplicationCommand(input, context);
|
|
43
|
-
}
|
|
44
|
-
deserialize(output, context) {
|
|
45
|
-
return de_UpdateApplicationCommand(output, context);
|
|
46
|
-
}
|
|
7
|
+
export class UpdateApplicationCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("ServerlessApplicationRepository", "UpdateApplication", {})
|
|
19
|
+
.n("ServerlessApplicationRepositoryClient", "UpdateApplicationCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_UpdateApplicationCommand)
|
|
22
|
+
.de(de_UpdateApplicationCommand)
|
|
23
|
+
.build() {
|
|
47
24
|
}
|
|
@@ -6,3 +6,9 @@ export const resolveClientEndpointParameters = (options) => {
|
|
|
6
6
|
defaultSigningName: "serverlessrepo",
|
|
7
7
|
};
|
|
8
8
|
};
|
|
9
|
+
export const commonParams = {
|
|
10
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
11
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
12
|
+
Region: { type: "builtInParams", name: "region" },
|
|
13
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
14
|
+
};
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0";
|
|
5
4
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface CreateApplicationCommandInput extends CreateApplicationRequest
|
|
|
21
20
|
*/
|
|
22
21
|
export interface CreateApplicationCommandOutput extends CreateApplicationResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const CreateApplicationCommand_base: {
|
|
24
|
+
new (input: CreateApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateApplicationCommandInput, CreateApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Creates an application, optionally including an AWS SAM file to create the first application version in the same call.</p>
|
|
@@ -128,23 +131,5 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
128
131
|
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
129
132
|
*
|
|
130
133
|
*/
|
|
131
|
-
export declare class CreateApplicationCommand extends
|
|
132
|
-
readonly input: CreateApplicationCommandInput;
|
|
133
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
134
|
-
/**
|
|
135
|
-
* @public
|
|
136
|
-
*/
|
|
137
|
-
constructor(input: CreateApplicationCommandInput);
|
|
138
|
-
/**
|
|
139
|
-
* @internal
|
|
140
|
-
*/
|
|
141
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateApplicationCommandInput, CreateApplicationCommandOutput>;
|
|
142
|
-
/**
|
|
143
|
-
* @internal
|
|
144
|
-
*/
|
|
145
|
-
private serialize;
|
|
146
|
-
/**
|
|
147
|
-
* @internal
|
|
148
|
-
*/
|
|
149
|
-
private deserialize;
|
|
134
|
+
export declare class CreateApplicationCommand extends CreateApplicationCommand_base {
|
|
150
135
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { CreateApplicationVersionRequest, CreateApplicationVersionResponse } from "../models/models_0";
|
|
5
4
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface CreateApplicationVersionCommandInput extends CreateApplicationV
|
|
|
21
20
|
*/
|
|
22
21
|
export interface CreateApplicationVersionCommandOutput extends CreateApplicationVersionResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const CreateApplicationVersionCommand_base: {
|
|
24
|
+
new (input: CreateApplicationVersionCommandInput): import("@smithy/smithy-client").CommandImpl<CreateApplicationVersionCommandInput, CreateApplicationVersionCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Creates an application version.</p>
|
|
@@ -101,23 +104,5 @@ export interface CreateApplicationVersionCommandOutput extends CreateApplication
|
|
|
101
104
|
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
102
105
|
*
|
|
103
106
|
*/
|
|
104
|
-
export declare class CreateApplicationVersionCommand extends
|
|
105
|
-
readonly input: CreateApplicationVersionCommandInput;
|
|
106
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
107
|
-
/**
|
|
108
|
-
* @public
|
|
109
|
-
*/
|
|
110
|
-
constructor(input: CreateApplicationVersionCommandInput);
|
|
111
|
-
/**
|
|
112
|
-
* @internal
|
|
113
|
-
*/
|
|
114
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateApplicationVersionCommandInput, CreateApplicationVersionCommandOutput>;
|
|
115
|
-
/**
|
|
116
|
-
* @internal
|
|
117
|
-
*/
|
|
118
|
-
private serialize;
|
|
119
|
-
/**
|
|
120
|
-
* @internal
|
|
121
|
-
*/
|
|
122
|
-
private deserialize;
|
|
107
|
+
export declare class CreateApplicationVersionCommand extends CreateApplicationVersionCommand_base {
|
|
123
108
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { CreateCloudFormationChangeSetRequest, CreateCloudFormationChangeSetResponse } from "../models/models_0";
|
|
5
4
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface CreateCloudFormationChangeSetCommandInput extends CreateCloudFo
|
|
|
21
20
|
*/
|
|
22
21
|
export interface CreateCloudFormationChangeSetCommandOutput extends CreateCloudFormationChangeSetResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const CreateCloudFormationChangeSetCommand_base: {
|
|
24
|
+
new (input: CreateCloudFormationChangeSetCommandInput): import("@smithy/smithy-client").CommandImpl<CreateCloudFormationChangeSetCommandInput, CreateCloudFormationChangeSetCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Creates an AWS CloudFormation change set for the given application.</p>
|
|
@@ -102,23 +105,5 @@ export interface CreateCloudFormationChangeSetCommandOutput extends CreateCloudF
|
|
|
102
105
|
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
103
106
|
*
|
|
104
107
|
*/
|
|
105
|
-
export declare class CreateCloudFormationChangeSetCommand extends
|
|
106
|
-
readonly input: CreateCloudFormationChangeSetCommandInput;
|
|
107
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
108
|
-
/**
|
|
109
|
-
* @public
|
|
110
|
-
*/
|
|
111
|
-
constructor(input: CreateCloudFormationChangeSetCommandInput);
|
|
112
|
-
/**
|
|
113
|
-
* @internal
|
|
114
|
-
*/
|
|
115
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateCloudFormationChangeSetCommandInput, CreateCloudFormationChangeSetCommandOutput>;
|
|
116
|
-
/**
|
|
117
|
-
* @internal
|
|
118
|
-
*/
|
|
119
|
-
private serialize;
|
|
120
|
-
/**
|
|
121
|
-
* @internal
|
|
122
|
-
*/
|
|
123
|
-
private deserialize;
|
|
108
|
+
export declare class CreateCloudFormationChangeSetCommand extends CreateCloudFormationChangeSetCommand_base {
|
|
124
109
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { CreateCloudFormationTemplateRequest, CreateCloudFormationTemplateResponse } from "../models/models_0";
|
|
5
4
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface CreateCloudFormationTemplateCommandInput extends CreateCloudFor
|
|
|
21
20
|
*/
|
|
22
21
|
export interface CreateCloudFormationTemplateCommandOutput extends CreateCloudFormationTemplateResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const CreateCloudFormationTemplateCommand_base: {
|
|
24
|
+
new (input: CreateCloudFormationTemplateCommandInput): import("@smithy/smithy-client").CommandImpl<CreateCloudFormationTemplateCommandInput, CreateCloudFormationTemplateCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Creates an AWS CloudFormation template.</p>
|
|
@@ -73,23 +76,5 @@ export interface CreateCloudFormationTemplateCommandOutput extends CreateCloudFo
|
|
|
73
76
|
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
74
77
|
*
|
|
75
78
|
*/
|
|
76
|
-
export declare class CreateCloudFormationTemplateCommand extends
|
|
77
|
-
readonly input: CreateCloudFormationTemplateCommandInput;
|
|
78
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
79
|
-
/**
|
|
80
|
-
* @public
|
|
81
|
-
*/
|
|
82
|
-
constructor(input: CreateCloudFormationTemplateCommandInput);
|
|
83
|
-
/**
|
|
84
|
-
* @internal
|
|
85
|
-
*/
|
|
86
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateCloudFormationTemplateCommandInput, CreateCloudFormationTemplateCommandOutput>;
|
|
87
|
-
/**
|
|
88
|
-
* @internal
|
|
89
|
-
*/
|
|
90
|
-
private serialize;
|
|
91
|
-
/**
|
|
92
|
-
* @internal
|
|
93
|
-
*/
|
|
94
|
-
private deserialize;
|
|
79
|
+
export declare class CreateCloudFormationTemplateCommand extends CreateCloudFormationTemplateCommand_base {
|
|
95
80
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { DeleteApplicationRequest } from "../models/models_0";
|
|
5
4
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DeleteApplicationCommandInput extends DeleteApplicationRequest
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DeleteApplicationCommandOutput extends __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DeleteApplicationCommand_base: {
|
|
24
|
+
new (input: DeleteApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Deletes the specified application.</p>
|
|
@@ -67,23 +70,5 @@ export interface DeleteApplicationCommandOutput extends __MetadataBearer {
|
|
|
67
70
|
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
68
71
|
*
|
|
69
72
|
*/
|
|
70
|
-
export declare class DeleteApplicationCommand extends
|
|
71
|
-
readonly input: DeleteApplicationCommandInput;
|
|
72
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
-
/**
|
|
74
|
-
* @public
|
|
75
|
-
*/
|
|
76
|
-
constructor(input: DeleteApplicationCommandInput);
|
|
77
|
-
/**
|
|
78
|
-
* @internal
|
|
79
|
-
*/
|
|
80
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationCommandInput, DeleteApplicationCommandOutput>;
|
|
81
|
-
/**
|
|
82
|
-
* @internal
|
|
83
|
-
*/
|
|
84
|
-
private serialize;
|
|
85
|
-
/**
|
|
86
|
-
* @internal
|
|
87
|
-
*/
|
|
88
|
-
private deserialize;
|
|
73
|
+
export declare class DeleteApplicationCommand extends DeleteApplicationCommand_base {
|
|
89
74
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { GetApplicationRequest, GetApplicationResponse } from "../models/models_0";
|
|
5
4
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface GetApplicationCommandInput extends GetApplicationRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface GetApplicationCommandOutput extends GetApplicationResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const GetApplicationCommand_base: {
|
|
24
|
+
new (input: GetApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<GetApplicationCommandInput, GetApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Gets the specified application.</p>
|
|
@@ -113,23 +116,5 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M
|
|
|
113
116
|
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
114
117
|
*
|
|
115
118
|
*/
|
|
116
|
-
export declare class GetApplicationCommand extends
|
|
117
|
-
readonly input: GetApplicationCommandInput;
|
|
118
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
119
|
-
/**
|
|
120
|
-
* @public
|
|
121
|
-
*/
|
|
122
|
-
constructor(input: GetApplicationCommandInput);
|
|
123
|
-
/**
|
|
124
|
-
* @internal
|
|
125
|
-
*/
|
|
126
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetApplicationCommandInput, GetApplicationCommandOutput>;
|
|
127
|
-
/**
|
|
128
|
-
* @internal
|
|
129
|
-
*/
|
|
130
|
-
private serialize;
|
|
131
|
-
/**
|
|
132
|
-
* @internal
|
|
133
|
-
*/
|
|
134
|
-
private deserialize;
|
|
119
|
+
export declare class GetApplicationCommand extends GetApplicationCommand_base {
|
|
135
120
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { GetApplicationPolicyRequest, GetApplicationPolicyResponse } from "../models/models_0";
|
|
5
4
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface GetApplicationPolicyCommandInput extends GetApplicationPolicyRe
|
|
|
21
20
|
*/
|
|
22
21
|
export interface GetApplicationPolicyCommandOutput extends GetApplicationPolicyResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const GetApplicationPolicyCommand_base: {
|
|
24
|
+
new (input: GetApplicationPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<GetApplicationPolicyCommandInput, GetApplicationPolicyCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Retrieves the policy for the application.</p>
|
|
@@ -79,23 +82,5 @@ export interface GetApplicationPolicyCommandOutput extends GetApplicationPolicyR
|
|
|
79
82
|
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
80
83
|
*
|
|
81
84
|
*/
|
|
82
|
-
export declare class GetApplicationPolicyCommand extends
|
|
83
|
-
readonly input: GetApplicationPolicyCommandInput;
|
|
84
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
85
|
-
/**
|
|
86
|
-
* @public
|
|
87
|
-
*/
|
|
88
|
-
constructor(input: GetApplicationPolicyCommandInput);
|
|
89
|
-
/**
|
|
90
|
-
* @internal
|
|
91
|
-
*/
|
|
92
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetApplicationPolicyCommandInput, GetApplicationPolicyCommandOutput>;
|
|
93
|
-
/**
|
|
94
|
-
* @internal
|
|
95
|
-
*/
|
|
96
|
-
private serialize;
|
|
97
|
-
/**
|
|
98
|
-
* @internal
|
|
99
|
-
*/
|
|
100
|
-
private deserialize;
|
|
85
|
+
export declare class GetApplicationPolicyCommand extends GetApplicationPolicyCommand_base {
|
|
101
86
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { GetCloudFormationTemplateRequest, GetCloudFormationTemplateResponse } from "../models/models_0";
|
|
5
4
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface GetCloudFormationTemplateCommandInput extends GetCloudFormation
|
|
|
21
20
|
*/
|
|
22
21
|
export interface GetCloudFormationTemplateCommandOutput extends GetCloudFormationTemplateResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const GetCloudFormationTemplateCommand_base: {
|
|
24
|
+
new (input: GetCloudFormationTemplateCommandInput): import("@smithy/smithy-client").CommandImpl<GetCloudFormationTemplateCommandInput, GetCloudFormationTemplateCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Gets the specified AWS CloudFormation template.</p>
|
|
@@ -73,23 +76,5 @@ export interface GetCloudFormationTemplateCommandOutput extends GetCloudFormatio
|
|
|
73
76
|
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
74
77
|
*
|
|
75
78
|
*/
|
|
76
|
-
export declare class GetCloudFormationTemplateCommand extends
|
|
77
|
-
readonly input: GetCloudFormationTemplateCommandInput;
|
|
78
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
79
|
-
/**
|
|
80
|
-
* @public
|
|
81
|
-
*/
|
|
82
|
-
constructor(input: GetCloudFormationTemplateCommandInput);
|
|
83
|
-
/**
|
|
84
|
-
* @internal
|
|
85
|
-
*/
|
|
86
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCloudFormationTemplateCommandInput, GetCloudFormationTemplateCommandOutput>;
|
|
87
|
-
/**
|
|
88
|
-
* @internal
|
|
89
|
-
*/
|
|
90
|
-
private serialize;
|
|
91
|
-
/**
|
|
92
|
-
* @internal
|
|
93
|
-
*/
|
|
94
|
-
private deserialize;
|
|
79
|
+
export declare class GetCloudFormationTemplateCommand extends GetCloudFormationTemplateCommand_base {
|
|
95
80
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ListApplicationDependenciesRequest, ListApplicationDependenciesResponse } from "../models/models_0";
|
|
5
4
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListApplicationDependenciesCommandInput extends ListApplication
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListApplicationDependenciesCommandOutput extends ListApplicationDependenciesResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListApplicationDependenciesCommand_base: {
|
|
24
|
+
new (input: ListApplicationDependenciesCommandInput): import("@smithy/smithy-client").CommandImpl<ListApplicationDependenciesCommandInput, ListApplicationDependenciesCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Retrieves the list of applications nested in the containing application.</p>
|
|
@@ -75,23 +78,5 @@ export interface ListApplicationDependenciesCommandOutput extends ListApplicatio
|
|
|
75
78
|
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
76
79
|
*
|
|
77
80
|
*/
|
|
78
|
-
export declare class ListApplicationDependenciesCommand extends
|
|
79
|
-
readonly input: ListApplicationDependenciesCommandInput;
|
|
80
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
81
|
-
/**
|
|
82
|
-
* @public
|
|
83
|
-
*/
|
|
84
|
-
constructor(input: ListApplicationDependenciesCommandInput);
|
|
85
|
-
/**
|
|
86
|
-
* @internal
|
|
87
|
-
*/
|
|
88
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListApplicationDependenciesCommandInput, ListApplicationDependenciesCommandOutput>;
|
|
89
|
-
/**
|
|
90
|
-
* @internal
|
|
91
|
-
*/
|
|
92
|
-
private serialize;
|
|
93
|
-
/**
|
|
94
|
-
* @internal
|
|
95
|
-
*/
|
|
96
|
-
private deserialize;
|
|
81
|
+
export declare class ListApplicationDependenciesCommand extends ListApplicationDependenciesCommand_base {
|
|
97
82
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ListApplicationVersionsRequest, ListApplicationVersionsResponse } from "../models/models_0";
|
|
5
4
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListApplicationVersionsCommandInput extends ListApplicationVers
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListApplicationVersionsCommandOutput extends ListApplicationVersionsResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListApplicationVersionsCommand_base: {
|
|
24
|
+
new (input: ListApplicationVersionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListApplicationVersionsCommandInput, ListApplicationVersionsCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Lists versions for the specified application.</p>
|
|
@@ -76,23 +79,5 @@ export interface ListApplicationVersionsCommandOutput extends ListApplicationVer
|
|
|
76
79
|
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
77
80
|
*
|
|
78
81
|
*/
|
|
79
|
-
export declare class ListApplicationVersionsCommand extends
|
|
80
|
-
readonly input: ListApplicationVersionsCommandInput;
|
|
81
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
82
|
-
/**
|
|
83
|
-
* @public
|
|
84
|
-
*/
|
|
85
|
-
constructor(input: ListApplicationVersionsCommandInput);
|
|
86
|
-
/**
|
|
87
|
-
* @internal
|
|
88
|
-
*/
|
|
89
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListApplicationVersionsCommandInput, ListApplicationVersionsCommandOutput>;
|
|
90
|
-
/**
|
|
91
|
-
* @internal
|
|
92
|
-
*/
|
|
93
|
-
private serialize;
|
|
94
|
-
/**
|
|
95
|
-
* @internal
|
|
96
|
-
*/
|
|
97
|
-
private deserialize;
|
|
82
|
+
export declare class ListApplicationVersionsCommand extends ListApplicationVersionsCommand_base {
|
|
98
83
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0";
|
|
5
4
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListApplicationsCommandInput extends ListApplicationsRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListApplicationsCommandOutput extends ListApplicationsResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListApplicationsCommand_base: {
|
|
24
|
+
new (input: ListApplicationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListApplicationsCommandInput, ListApplicationsCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Lists applications owned by the requester.</p>
|
|
@@ -78,23 +81,5 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
78
81
|
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
79
82
|
*
|
|
80
83
|
*/
|
|
81
|
-
export declare class ListApplicationsCommand extends
|
|
82
|
-
readonly input: ListApplicationsCommandInput;
|
|
83
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
84
|
-
/**
|
|
85
|
-
* @public
|
|
86
|
-
*/
|
|
87
|
-
constructor(input: ListApplicationsCommandInput);
|
|
88
|
-
/**
|
|
89
|
-
* @internal
|
|
90
|
-
*/
|
|
91
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListApplicationsCommandInput, ListApplicationsCommandOutput>;
|
|
92
|
-
/**
|
|
93
|
-
* @internal
|
|
94
|
-
*/
|
|
95
|
-
private serialize;
|
|
96
|
-
/**
|
|
97
|
-
* @internal
|
|
98
|
-
*/
|
|
99
|
-
private deserialize;
|
|
84
|
+
export declare class ListApplicationsCommand extends ListApplicationsCommand_base {
|
|
100
85
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { PutApplicationPolicyRequest, PutApplicationPolicyResponse } from "../models/models_0";
|
|
5
4
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface PutApplicationPolicyCommandInput extends PutApplicationPolicyRe
|
|
|
21
20
|
*/
|
|
22
21
|
export interface PutApplicationPolicyCommandOutput extends PutApplicationPolicyResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const PutApplicationPolicyCommand_base: {
|
|
24
|
+
new (input: PutApplicationPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<PutApplicationPolicyCommandInput, PutApplicationPolicyCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Sets the permission policy for an application. For the list of actions supported for this operation, see
|
|
@@ -96,23 +99,5 @@ export interface PutApplicationPolicyCommandOutput extends PutApplicationPolicyR
|
|
|
96
99
|
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
97
100
|
*
|
|
98
101
|
*/
|
|
99
|
-
export declare class PutApplicationPolicyCommand extends
|
|
100
|
-
readonly input: PutApplicationPolicyCommandInput;
|
|
101
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
102
|
-
/**
|
|
103
|
-
* @public
|
|
104
|
-
*/
|
|
105
|
-
constructor(input: PutApplicationPolicyCommandInput);
|
|
106
|
-
/**
|
|
107
|
-
* @internal
|
|
108
|
-
*/
|
|
109
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutApplicationPolicyCommandInput, PutApplicationPolicyCommandOutput>;
|
|
110
|
-
/**
|
|
111
|
-
* @internal
|
|
112
|
-
*/
|
|
113
|
-
private serialize;
|
|
114
|
-
/**
|
|
115
|
-
* @internal
|
|
116
|
-
*/
|
|
117
|
-
private deserialize;
|
|
102
|
+
export declare class PutApplicationPolicyCommand extends PutApplicationPolicyCommand_base {
|
|
118
103
|
}
|