@aws-sdk/client-serverlessapplicationrepository 3.168.0 → 3.170.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 +16 -0
- package/dist-types/ts3.4/ServerlessApplicationRepository.d.ts +256 -75
- package/dist-types/ts3.4/ServerlessApplicationRepositoryClient.d.ts +214 -87
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateApplicationVersionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateCloudFormationChangeSetCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateCloudFormationTemplateCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetApplicationPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetCloudFormationTemplateCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListApplicationDependenciesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListApplicationVersionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/PutApplicationPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UnshareApplicationCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/index.d.ts +14 -14
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/ServerlessApplicationRepositoryServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +639 -601
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +9 -6
- package/dist-types/ts3.4/pagination/ListApplicationDependenciesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListApplicationVersionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +4 -4
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +173 -44
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
|
@@ -1,87 +1,214 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
CreateApplicationCommandInput,
|
|
47
|
+
CreateApplicationCommandOutput,
|
|
48
|
+
} from "./commands/CreateApplicationCommand";
|
|
49
|
+
import {
|
|
50
|
+
CreateApplicationVersionCommandInput,
|
|
51
|
+
CreateApplicationVersionCommandOutput,
|
|
52
|
+
} from "./commands/CreateApplicationVersionCommand";
|
|
53
|
+
import {
|
|
54
|
+
CreateCloudFormationChangeSetCommandInput,
|
|
55
|
+
CreateCloudFormationChangeSetCommandOutput,
|
|
56
|
+
} from "./commands/CreateCloudFormationChangeSetCommand";
|
|
57
|
+
import {
|
|
58
|
+
CreateCloudFormationTemplateCommandInput,
|
|
59
|
+
CreateCloudFormationTemplateCommandOutput,
|
|
60
|
+
} from "./commands/CreateCloudFormationTemplateCommand";
|
|
61
|
+
import {
|
|
62
|
+
DeleteApplicationCommandInput,
|
|
63
|
+
DeleteApplicationCommandOutput,
|
|
64
|
+
} from "./commands/DeleteApplicationCommand";
|
|
65
|
+
import {
|
|
66
|
+
GetApplicationCommandInput,
|
|
67
|
+
GetApplicationCommandOutput,
|
|
68
|
+
} from "./commands/GetApplicationCommand";
|
|
69
|
+
import {
|
|
70
|
+
GetApplicationPolicyCommandInput,
|
|
71
|
+
GetApplicationPolicyCommandOutput,
|
|
72
|
+
} from "./commands/GetApplicationPolicyCommand";
|
|
73
|
+
import {
|
|
74
|
+
GetCloudFormationTemplateCommandInput,
|
|
75
|
+
GetCloudFormationTemplateCommandOutput,
|
|
76
|
+
} from "./commands/GetCloudFormationTemplateCommand";
|
|
77
|
+
import {
|
|
78
|
+
ListApplicationDependenciesCommandInput,
|
|
79
|
+
ListApplicationDependenciesCommandOutput,
|
|
80
|
+
} from "./commands/ListApplicationDependenciesCommand";
|
|
81
|
+
import {
|
|
82
|
+
ListApplicationsCommandInput,
|
|
83
|
+
ListApplicationsCommandOutput,
|
|
84
|
+
} from "./commands/ListApplicationsCommand";
|
|
85
|
+
import {
|
|
86
|
+
ListApplicationVersionsCommandInput,
|
|
87
|
+
ListApplicationVersionsCommandOutput,
|
|
88
|
+
} from "./commands/ListApplicationVersionsCommand";
|
|
89
|
+
import {
|
|
90
|
+
PutApplicationPolicyCommandInput,
|
|
91
|
+
PutApplicationPolicyCommandOutput,
|
|
92
|
+
} from "./commands/PutApplicationPolicyCommand";
|
|
93
|
+
import {
|
|
94
|
+
UnshareApplicationCommandInput,
|
|
95
|
+
UnshareApplicationCommandOutput,
|
|
96
|
+
} from "./commands/UnshareApplicationCommand";
|
|
97
|
+
import {
|
|
98
|
+
UpdateApplicationCommandInput,
|
|
99
|
+
UpdateApplicationCommandOutput,
|
|
100
|
+
} from "./commands/UpdateApplicationCommand";
|
|
101
|
+
export declare type ServiceInputTypes =
|
|
102
|
+
| CreateApplicationCommandInput
|
|
103
|
+
| CreateApplicationVersionCommandInput
|
|
104
|
+
| CreateCloudFormationChangeSetCommandInput
|
|
105
|
+
| CreateCloudFormationTemplateCommandInput
|
|
106
|
+
| DeleteApplicationCommandInput
|
|
107
|
+
| GetApplicationCommandInput
|
|
108
|
+
| GetApplicationPolicyCommandInput
|
|
109
|
+
| GetCloudFormationTemplateCommandInput
|
|
110
|
+
| ListApplicationDependenciesCommandInput
|
|
111
|
+
| ListApplicationVersionsCommandInput
|
|
112
|
+
| ListApplicationsCommandInput
|
|
113
|
+
| PutApplicationPolicyCommandInput
|
|
114
|
+
| UnshareApplicationCommandInput
|
|
115
|
+
| UpdateApplicationCommandInput;
|
|
116
|
+
export declare type ServiceOutputTypes =
|
|
117
|
+
| CreateApplicationCommandOutput
|
|
118
|
+
| CreateApplicationVersionCommandOutput
|
|
119
|
+
| CreateCloudFormationChangeSetCommandOutput
|
|
120
|
+
| CreateCloudFormationTemplateCommandOutput
|
|
121
|
+
| DeleteApplicationCommandOutput
|
|
122
|
+
| GetApplicationCommandOutput
|
|
123
|
+
| GetApplicationPolicyCommandOutput
|
|
124
|
+
| GetCloudFormationTemplateCommandOutput
|
|
125
|
+
| ListApplicationDependenciesCommandOutput
|
|
126
|
+
| ListApplicationVersionsCommandOutput
|
|
127
|
+
| ListApplicationsCommandOutput
|
|
128
|
+
| PutApplicationPolicyCommandOutput
|
|
129
|
+
| UnshareApplicationCommandOutput
|
|
130
|
+
| UpdateApplicationCommandOutput;
|
|
131
|
+
export interface ClientDefaults
|
|
132
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
133
|
+
requestHandler?: __HttpHandler;
|
|
134
|
+
|
|
135
|
+
sha256?: __HashConstructor;
|
|
136
|
+
|
|
137
|
+
urlParser?: __UrlParser;
|
|
138
|
+
|
|
139
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
140
|
+
|
|
141
|
+
streamCollector?: __StreamCollector;
|
|
142
|
+
|
|
143
|
+
base64Decoder?: __Decoder;
|
|
144
|
+
|
|
145
|
+
base64Encoder?: __Encoder;
|
|
146
|
+
|
|
147
|
+
utf8Decoder?: __Decoder;
|
|
148
|
+
|
|
149
|
+
utf8Encoder?: __Encoder;
|
|
150
|
+
|
|
151
|
+
runtime?: string;
|
|
152
|
+
|
|
153
|
+
disableHostPrefix?: boolean;
|
|
154
|
+
|
|
155
|
+
maxAttempts?: number | __Provider<number>;
|
|
156
|
+
|
|
157
|
+
retryMode?: string | __Provider<string>;
|
|
158
|
+
|
|
159
|
+
logger?: __Logger;
|
|
160
|
+
|
|
161
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
162
|
+
|
|
163
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
164
|
+
|
|
165
|
+
serviceId?: string;
|
|
166
|
+
|
|
167
|
+
region?: string | __Provider<string>;
|
|
168
|
+
|
|
169
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
170
|
+
|
|
171
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
172
|
+
|
|
173
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
174
|
+
|
|
175
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
176
|
+
}
|
|
177
|
+
declare type ServerlessApplicationRepositoryClientConfigType = Partial<
|
|
178
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
179
|
+
> &
|
|
180
|
+
ClientDefaults &
|
|
181
|
+
RegionInputConfig &
|
|
182
|
+
EndpointsInputConfig &
|
|
183
|
+
RetryInputConfig &
|
|
184
|
+
HostHeaderInputConfig &
|
|
185
|
+
AwsAuthInputConfig &
|
|
186
|
+
UserAgentInputConfig;
|
|
187
|
+
|
|
188
|
+
export interface ServerlessApplicationRepositoryClientConfig
|
|
189
|
+
extends ServerlessApplicationRepositoryClientConfigType {}
|
|
190
|
+
declare type ServerlessApplicationRepositoryClientResolvedConfigType =
|
|
191
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
192
|
+
Required<ClientDefaults> &
|
|
193
|
+
RegionResolvedConfig &
|
|
194
|
+
EndpointsResolvedConfig &
|
|
195
|
+
RetryResolvedConfig &
|
|
196
|
+
HostHeaderResolvedConfig &
|
|
197
|
+
AwsAuthResolvedConfig &
|
|
198
|
+
UserAgentResolvedConfig;
|
|
199
|
+
|
|
200
|
+
export interface ServerlessApplicationRepositoryClientResolvedConfig
|
|
201
|
+
extends ServerlessApplicationRepositoryClientResolvedConfigType {}
|
|
202
|
+
|
|
203
|
+
export declare class ServerlessApplicationRepositoryClient extends __Client<
|
|
204
|
+
__HttpHandlerOptions,
|
|
205
|
+
ServiceInputTypes,
|
|
206
|
+
ServiceOutputTypes,
|
|
207
|
+
ServerlessApplicationRepositoryClientResolvedConfig
|
|
208
|
+
> {
|
|
209
|
+
readonly config: ServerlessApplicationRepositoryClientResolvedConfig;
|
|
210
|
+
constructor(configuration: ServerlessApplicationRepositoryClientConfig);
|
|
211
|
+
|
|
212
|
+
destroy(): void;
|
|
213
|
+
}
|
|
214
|
+
export {};
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CreateApplicationRequest,
|
|
10
|
+
CreateApplicationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../ServerlessApplicationRepositoryClient";
|
|
17
|
+
export interface CreateApplicationCommandInput
|
|
18
|
+
extends CreateApplicationRequest {}
|
|
19
|
+
export interface CreateApplicationCommandOutput
|
|
20
|
+
extends CreateApplicationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateApplicationCommand extends $Command<
|
|
24
|
+
CreateApplicationCommandInput,
|
|
25
|
+
CreateApplicationCommandOutput,
|
|
26
|
+
ServerlessApplicationRepositoryClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateApplicationCommandInput;
|
|
29
|
+
constructor(input: CreateApplicationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<CreateApplicationCommandInput, CreateApplicationCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CreateApplicationVersionRequest,
|
|
10
|
+
CreateApplicationVersionResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../ServerlessApplicationRepositoryClient";
|
|
17
|
+
export interface CreateApplicationVersionCommandInput
|
|
18
|
+
extends CreateApplicationVersionRequest {}
|
|
19
|
+
export interface CreateApplicationVersionCommandOutput
|
|
20
|
+
extends CreateApplicationVersionResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateApplicationVersionCommand extends $Command<
|
|
24
|
+
CreateApplicationVersionCommandInput,
|
|
25
|
+
CreateApplicationVersionCommandOutput,
|
|
26
|
+
ServerlessApplicationRepositoryClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateApplicationVersionCommandInput;
|
|
29
|
+
constructor(input: CreateApplicationVersionCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateApplicationVersionCommandInput,
|
|
37
|
+
CreateApplicationVersionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CreateCloudFormationChangeSetRequest,
|
|
10
|
+
CreateCloudFormationChangeSetResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../ServerlessApplicationRepositoryClient";
|
|
17
|
+
export interface CreateCloudFormationChangeSetCommandInput
|
|
18
|
+
extends CreateCloudFormationChangeSetRequest {}
|
|
19
|
+
export interface CreateCloudFormationChangeSetCommandOutput
|
|
20
|
+
extends CreateCloudFormationChangeSetResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateCloudFormationChangeSetCommand extends $Command<
|
|
24
|
+
CreateCloudFormationChangeSetCommandInput,
|
|
25
|
+
CreateCloudFormationChangeSetCommandOutput,
|
|
26
|
+
ServerlessApplicationRepositoryClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateCloudFormationChangeSetCommandInput;
|
|
29
|
+
constructor(input: CreateCloudFormationChangeSetCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateCloudFormationChangeSetCommandInput,
|
|
37
|
+
CreateCloudFormationChangeSetCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CreateCloudFormationTemplateRequest,
|
|
10
|
+
CreateCloudFormationTemplateResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../ServerlessApplicationRepositoryClient";
|
|
17
|
+
export interface CreateCloudFormationTemplateCommandInput
|
|
18
|
+
extends CreateCloudFormationTemplateRequest {}
|
|
19
|
+
export interface CreateCloudFormationTemplateCommandOutput
|
|
20
|
+
extends CreateCloudFormationTemplateResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateCloudFormationTemplateCommand extends $Command<
|
|
24
|
+
CreateCloudFormationTemplateCommandInput,
|
|
25
|
+
CreateCloudFormationTemplateCommandOutput,
|
|
26
|
+
ServerlessApplicationRepositoryClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateCloudFormationTemplateCommandInput;
|
|
29
|
+
constructor(input: CreateCloudFormationTemplateCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateCloudFormationTemplateCommandInput,
|
|
37
|
+
CreateCloudFormationTemplateCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,33 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { DeleteApplicationRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ServerlessApplicationRepositoryClient";
|
|
14
|
+
export interface DeleteApplicationCommandInput
|
|
15
|
+
extends DeleteApplicationRequest {}
|
|
16
|
+
export interface DeleteApplicationCommandOutput extends __MetadataBearer {}
|
|
17
|
+
|
|
18
|
+
export declare class DeleteApplicationCommand extends $Command<
|
|
19
|
+
DeleteApplicationCommandInput,
|
|
20
|
+
DeleteApplicationCommandOutput,
|
|
21
|
+
ServerlessApplicationRepositoryClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DeleteApplicationCommandInput;
|
|
24
|
+
constructor(input: DeleteApplicationCommandInput);
|
|
25
|
+
|
|
26
|
+
resolveMiddleware(
|
|
27
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
28
|
+
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
29
|
+
options?: __HttpHandlerOptions
|
|
30
|
+
): Handler<DeleteApplicationCommandInput, DeleteApplicationCommandOutput>;
|
|
31
|
+
private serialize;
|
|
32
|
+
private deserialize;
|
|
33
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GetApplicationRequest,
|
|
10
|
+
GetApplicationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../ServerlessApplicationRepositoryClient";
|
|
17
|
+
export interface GetApplicationCommandInput extends GetApplicationRequest {}
|
|
18
|
+
export interface GetApplicationCommandOutput
|
|
19
|
+
extends GetApplicationResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class GetApplicationCommand extends $Command<
|
|
23
|
+
GetApplicationCommandInput,
|
|
24
|
+
GetApplicationCommandOutput,
|
|
25
|
+
ServerlessApplicationRepositoryClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetApplicationCommandInput;
|
|
28
|
+
constructor(input: GetApplicationCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<GetApplicationCommandInput, GetApplicationCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|