@aws-sdk/client-serverlessapplicationrepository 3.169.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.
Files changed (34) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/ServerlessApplicationRepository.d.ts +256 -75
  3. package/dist-types/ts3.4/ServerlessApplicationRepositoryClient.d.ts +214 -87
  4. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +38 -17
  5. package/dist-types/ts3.4/commands/CreateApplicationVersionCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/CreateCloudFormationChangeSetCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/CreateCloudFormationTemplateCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +33 -17
  9. package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +37 -17
  10. package/dist-types/ts3.4/commands/GetApplicationPolicyCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/GetCloudFormationTemplateCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/ListApplicationDependenciesCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/ListApplicationVersionsCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +37 -17
  15. package/dist-types/ts3.4/commands/PutApplicationPolicyCommand.d.ts +41 -17
  16. package/dist-types/ts3.4/commands/UnshareApplicationCommand.d.ts +33 -17
  17. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +38 -17
  18. package/dist-types/ts3.4/commands/index.d.ts +14 -14
  19. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  20. package/dist-types/ts3.4/index.d.ts +6 -6
  21. package/dist-types/ts3.4/models/ServerlessApplicationRepositoryServiceException.d.ts +8 -6
  22. package/dist-types/ts3.4/models/index.d.ts +1 -1
  23. package/dist-types/ts3.4/models/models_0.d.ts +639 -601
  24. package/dist-types/ts3.4/pagination/Interfaces.d.ts +9 -6
  25. package/dist-types/ts3.4/pagination/ListApplicationDependenciesPaginator.d.ts +11 -4
  26. package/dist-types/ts3.4/pagination/ListApplicationVersionsPaginator.d.ts +11 -4
  27. package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -4
  28. package/dist-types/ts3.4/pagination/index.d.ts +4 -4
  29. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +173 -44
  30. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  31. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  32. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  33. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  34. package/package.json +34 -34
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-serverlessapplicationrepository
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
7
15
 
8
16
  **Note:** Version bump only for package @aws-sdk/client-serverlessapplicationrepository
@@ -1,75 +1,256 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
3
- import { CreateApplicationVersionCommandInput, CreateApplicationVersionCommandOutput } from "./commands/CreateApplicationVersionCommand";
4
- import { CreateCloudFormationChangeSetCommandInput, CreateCloudFormationChangeSetCommandOutput } from "./commands/CreateCloudFormationChangeSetCommand";
5
- import { CreateCloudFormationTemplateCommandInput, CreateCloudFormationTemplateCommandOutput } from "./commands/CreateCloudFormationTemplateCommand";
6
- import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
7
- import { GetApplicationCommandInput, GetApplicationCommandOutput } from "./commands/GetApplicationCommand";
8
- import { GetApplicationPolicyCommandInput, GetApplicationPolicyCommandOutput } from "./commands/GetApplicationPolicyCommand";
9
- import { GetCloudFormationTemplateCommandInput, GetCloudFormationTemplateCommandOutput } from "./commands/GetCloudFormationTemplateCommand";
10
- import { ListApplicationDependenciesCommandInput, ListApplicationDependenciesCommandOutput } from "./commands/ListApplicationDependenciesCommand";
11
- import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "./commands/ListApplicationsCommand";
12
- import { ListApplicationVersionsCommandInput, ListApplicationVersionsCommandOutput } from "./commands/ListApplicationVersionsCommand";
13
- import { PutApplicationPolicyCommandInput, PutApplicationPolicyCommandOutput } from "./commands/PutApplicationPolicyCommand";
14
- import { UnshareApplicationCommandInput, UnshareApplicationCommandOutput } from "./commands/UnshareApplicationCommand";
15
- import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
16
- import { ServerlessApplicationRepositoryClient } from "./ServerlessApplicationRepositoryClient";
17
-
18
- export declare class ServerlessApplicationRepository extends ServerlessApplicationRepositoryClient {
19
-
20
- createApplication(args: CreateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<CreateApplicationCommandOutput>;
21
- createApplication(args: CreateApplicationCommandInput, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
22
- createApplication(args: CreateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
23
-
24
- createApplicationVersion(args: CreateApplicationVersionCommandInput, options?: __HttpHandlerOptions): Promise<CreateApplicationVersionCommandOutput>;
25
- createApplicationVersion(args: CreateApplicationVersionCommandInput, cb: (err: any, data?: CreateApplicationVersionCommandOutput) => void): void;
26
- createApplicationVersion(args: CreateApplicationVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApplicationVersionCommandOutput) => void): void;
27
-
28
- createCloudFormationChangeSet(args: CreateCloudFormationChangeSetCommandInput, options?: __HttpHandlerOptions): Promise<CreateCloudFormationChangeSetCommandOutput>;
29
- createCloudFormationChangeSet(args: CreateCloudFormationChangeSetCommandInput, cb: (err: any, data?: CreateCloudFormationChangeSetCommandOutput) => void): void;
30
- createCloudFormationChangeSet(args: CreateCloudFormationChangeSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCloudFormationChangeSetCommandOutput) => void): void;
31
-
32
- createCloudFormationTemplate(args: CreateCloudFormationTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateCloudFormationTemplateCommandOutput>;
33
- createCloudFormationTemplate(args: CreateCloudFormationTemplateCommandInput, cb: (err: any, data?: CreateCloudFormationTemplateCommandOutput) => void): void;
34
- createCloudFormationTemplate(args: CreateCloudFormationTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCloudFormationTemplateCommandOutput) => void): void;
35
-
36
- deleteApplication(args: DeleteApplicationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteApplicationCommandOutput>;
37
- deleteApplication(args: DeleteApplicationCommandInput, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
38
- deleteApplication(args: DeleteApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
39
-
40
- getApplication(args: GetApplicationCommandInput, options?: __HttpHandlerOptions): Promise<GetApplicationCommandOutput>;
41
- getApplication(args: GetApplicationCommandInput, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
42
- getApplication(args: GetApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
43
-
44
- getApplicationPolicy(args: GetApplicationPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetApplicationPolicyCommandOutput>;
45
- getApplicationPolicy(args: GetApplicationPolicyCommandInput, cb: (err: any, data?: GetApplicationPolicyCommandOutput) => void): void;
46
- getApplicationPolicy(args: GetApplicationPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetApplicationPolicyCommandOutput) => void): void;
47
-
48
- getCloudFormationTemplate(args: GetCloudFormationTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetCloudFormationTemplateCommandOutput>;
49
- getCloudFormationTemplate(args: GetCloudFormationTemplateCommandInput, cb: (err: any, data?: GetCloudFormationTemplateCommandOutput) => void): void;
50
- getCloudFormationTemplate(args: GetCloudFormationTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCloudFormationTemplateCommandOutput) => void): void;
51
-
52
- listApplicationDependencies(args: ListApplicationDependenciesCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationDependenciesCommandOutput>;
53
- listApplicationDependencies(args: ListApplicationDependenciesCommandInput, cb: (err: any, data?: ListApplicationDependenciesCommandOutput) => void): void;
54
- listApplicationDependencies(args: ListApplicationDependenciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationDependenciesCommandOutput) => void): void;
55
-
56
- listApplications(args: ListApplicationsCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationsCommandOutput>;
57
- listApplications(args: ListApplicationsCommandInput, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
58
- listApplications(args: ListApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
59
-
60
- listApplicationVersions(args: ListApplicationVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationVersionsCommandOutput>;
61
- listApplicationVersions(args: ListApplicationVersionsCommandInput, cb: (err: any, data?: ListApplicationVersionsCommandOutput) => void): void;
62
- listApplicationVersions(args: ListApplicationVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationVersionsCommandOutput) => void): void;
63
-
64
- putApplicationPolicy(args: PutApplicationPolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutApplicationPolicyCommandOutput>;
65
- putApplicationPolicy(args: PutApplicationPolicyCommandInput, cb: (err: any, data?: PutApplicationPolicyCommandOutput) => void): void;
66
- putApplicationPolicy(args: PutApplicationPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutApplicationPolicyCommandOutput) => void): void;
67
-
68
- unshareApplication(args: UnshareApplicationCommandInput, options?: __HttpHandlerOptions): Promise<UnshareApplicationCommandOutput>;
69
- unshareApplication(args: UnshareApplicationCommandInput, cb: (err: any, data?: UnshareApplicationCommandOutput) => void): void;
70
- unshareApplication(args: UnshareApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UnshareApplicationCommandOutput) => void): void;
71
-
72
- updateApplication(args: UpdateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateApplicationCommandOutput>;
73
- updateApplication(args: UpdateApplicationCommandInput, cb: (err: any, data?: UpdateApplicationCommandOutput) => void): void;
74
- updateApplication(args: UpdateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateApplicationCommandOutput) => void): void;
75
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ CreateApplicationCommandInput,
4
+ CreateApplicationCommandOutput,
5
+ } from "./commands/CreateApplicationCommand";
6
+ import {
7
+ CreateApplicationVersionCommandInput,
8
+ CreateApplicationVersionCommandOutput,
9
+ } from "./commands/CreateApplicationVersionCommand";
10
+ import {
11
+ CreateCloudFormationChangeSetCommandInput,
12
+ CreateCloudFormationChangeSetCommandOutput,
13
+ } from "./commands/CreateCloudFormationChangeSetCommand";
14
+ import {
15
+ CreateCloudFormationTemplateCommandInput,
16
+ CreateCloudFormationTemplateCommandOutput,
17
+ } from "./commands/CreateCloudFormationTemplateCommand";
18
+ import {
19
+ DeleteApplicationCommandInput,
20
+ DeleteApplicationCommandOutput,
21
+ } from "./commands/DeleteApplicationCommand";
22
+ import {
23
+ GetApplicationCommandInput,
24
+ GetApplicationCommandOutput,
25
+ } from "./commands/GetApplicationCommand";
26
+ import {
27
+ GetApplicationPolicyCommandInput,
28
+ GetApplicationPolicyCommandOutput,
29
+ } from "./commands/GetApplicationPolicyCommand";
30
+ import {
31
+ GetCloudFormationTemplateCommandInput,
32
+ GetCloudFormationTemplateCommandOutput,
33
+ } from "./commands/GetCloudFormationTemplateCommand";
34
+ import {
35
+ ListApplicationDependenciesCommandInput,
36
+ ListApplicationDependenciesCommandOutput,
37
+ } from "./commands/ListApplicationDependenciesCommand";
38
+ import {
39
+ ListApplicationsCommandInput,
40
+ ListApplicationsCommandOutput,
41
+ } from "./commands/ListApplicationsCommand";
42
+ import {
43
+ ListApplicationVersionsCommandInput,
44
+ ListApplicationVersionsCommandOutput,
45
+ } from "./commands/ListApplicationVersionsCommand";
46
+ import {
47
+ PutApplicationPolicyCommandInput,
48
+ PutApplicationPolicyCommandOutput,
49
+ } from "./commands/PutApplicationPolicyCommand";
50
+ import {
51
+ UnshareApplicationCommandInput,
52
+ UnshareApplicationCommandOutput,
53
+ } from "./commands/UnshareApplicationCommand";
54
+ import {
55
+ UpdateApplicationCommandInput,
56
+ UpdateApplicationCommandOutput,
57
+ } from "./commands/UpdateApplicationCommand";
58
+ import { ServerlessApplicationRepositoryClient } from "./ServerlessApplicationRepositoryClient";
59
+
60
+ export declare class ServerlessApplicationRepository extends ServerlessApplicationRepositoryClient {
61
+ createApplication(
62
+ args: CreateApplicationCommandInput,
63
+ options?: __HttpHandlerOptions
64
+ ): Promise<CreateApplicationCommandOutput>;
65
+ createApplication(
66
+ args: CreateApplicationCommandInput,
67
+ cb: (err: any, data?: CreateApplicationCommandOutput) => void
68
+ ): void;
69
+ createApplication(
70
+ args: CreateApplicationCommandInput,
71
+ options: __HttpHandlerOptions,
72
+ cb: (err: any, data?: CreateApplicationCommandOutput) => void
73
+ ): void;
74
+
75
+ createApplicationVersion(
76
+ args: CreateApplicationVersionCommandInput,
77
+ options?: __HttpHandlerOptions
78
+ ): Promise<CreateApplicationVersionCommandOutput>;
79
+ createApplicationVersion(
80
+ args: CreateApplicationVersionCommandInput,
81
+ cb: (err: any, data?: CreateApplicationVersionCommandOutput) => void
82
+ ): void;
83
+ createApplicationVersion(
84
+ args: CreateApplicationVersionCommandInput,
85
+ options: __HttpHandlerOptions,
86
+ cb: (err: any, data?: CreateApplicationVersionCommandOutput) => void
87
+ ): void;
88
+
89
+ createCloudFormationChangeSet(
90
+ args: CreateCloudFormationChangeSetCommandInput,
91
+ options?: __HttpHandlerOptions
92
+ ): Promise<CreateCloudFormationChangeSetCommandOutput>;
93
+ createCloudFormationChangeSet(
94
+ args: CreateCloudFormationChangeSetCommandInput,
95
+ cb: (err: any, data?: CreateCloudFormationChangeSetCommandOutput) => void
96
+ ): void;
97
+ createCloudFormationChangeSet(
98
+ args: CreateCloudFormationChangeSetCommandInput,
99
+ options: __HttpHandlerOptions,
100
+ cb: (err: any, data?: CreateCloudFormationChangeSetCommandOutput) => void
101
+ ): void;
102
+
103
+ createCloudFormationTemplate(
104
+ args: CreateCloudFormationTemplateCommandInput,
105
+ options?: __HttpHandlerOptions
106
+ ): Promise<CreateCloudFormationTemplateCommandOutput>;
107
+ createCloudFormationTemplate(
108
+ args: CreateCloudFormationTemplateCommandInput,
109
+ cb: (err: any, data?: CreateCloudFormationTemplateCommandOutput) => void
110
+ ): void;
111
+ createCloudFormationTemplate(
112
+ args: CreateCloudFormationTemplateCommandInput,
113
+ options: __HttpHandlerOptions,
114
+ cb: (err: any, data?: CreateCloudFormationTemplateCommandOutput) => void
115
+ ): void;
116
+
117
+ deleteApplication(
118
+ args: DeleteApplicationCommandInput,
119
+ options?: __HttpHandlerOptions
120
+ ): Promise<DeleteApplicationCommandOutput>;
121
+ deleteApplication(
122
+ args: DeleteApplicationCommandInput,
123
+ cb: (err: any, data?: DeleteApplicationCommandOutput) => void
124
+ ): void;
125
+ deleteApplication(
126
+ args: DeleteApplicationCommandInput,
127
+ options: __HttpHandlerOptions,
128
+ cb: (err: any, data?: DeleteApplicationCommandOutput) => void
129
+ ): void;
130
+
131
+ getApplication(
132
+ args: GetApplicationCommandInput,
133
+ options?: __HttpHandlerOptions
134
+ ): Promise<GetApplicationCommandOutput>;
135
+ getApplication(
136
+ args: GetApplicationCommandInput,
137
+ cb: (err: any, data?: GetApplicationCommandOutput) => void
138
+ ): void;
139
+ getApplication(
140
+ args: GetApplicationCommandInput,
141
+ options: __HttpHandlerOptions,
142
+ cb: (err: any, data?: GetApplicationCommandOutput) => void
143
+ ): void;
144
+
145
+ getApplicationPolicy(
146
+ args: GetApplicationPolicyCommandInput,
147
+ options?: __HttpHandlerOptions
148
+ ): Promise<GetApplicationPolicyCommandOutput>;
149
+ getApplicationPolicy(
150
+ args: GetApplicationPolicyCommandInput,
151
+ cb: (err: any, data?: GetApplicationPolicyCommandOutput) => void
152
+ ): void;
153
+ getApplicationPolicy(
154
+ args: GetApplicationPolicyCommandInput,
155
+ options: __HttpHandlerOptions,
156
+ cb: (err: any, data?: GetApplicationPolicyCommandOutput) => void
157
+ ): void;
158
+
159
+ getCloudFormationTemplate(
160
+ args: GetCloudFormationTemplateCommandInput,
161
+ options?: __HttpHandlerOptions
162
+ ): Promise<GetCloudFormationTemplateCommandOutput>;
163
+ getCloudFormationTemplate(
164
+ args: GetCloudFormationTemplateCommandInput,
165
+ cb: (err: any, data?: GetCloudFormationTemplateCommandOutput) => void
166
+ ): void;
167
+ getCloudFormationTemplate(
168
+ args: GetCloudFormationTemplateCommandInput,
169
+ options: __HttpHandlerOptions,
170
+ cb: (err: any, data?: GetCloudFormationTemplateCommandOutput) => void
171
+ ): void;
172
+
173
+ listApplicationDependencies(
174
+ args: ListApplicationDependenciesCommandInput,
175
+ options?: __HttpHandlerOptions
176
+ ): Promise<ListApplicationDependenciesCommandOutput>;
177
+ listApplicationDependencies(
178
+ args: ListApplicationDependenciesCommandInput,
179
+ cb: (err: any, data?: ListApplicationDependenciesCommandOutput) => void
180
+ ): void;
181
+ listApplicationDependencies(
182
+ args: ListApplicationDependenciesCommandInput,
183
+ options: __HttpHandlerOptions,
184
+ cb: (err: any, data?: ListApplicationDependenciesCommandOutput) => void
185
+ ): void;
186
+
187
+ listApplications(
188
+ args: ListApplicationsCommandInput,
189
+ options?: __HttpHandlerOptions
190
+ ): Promise<ListApplicationsCommandOutput>;
191
+ listApplications(
192
+ args: ListApplicationsCommandInput,
193
+ cb: (err: any, data?: ListApplicationsCommandOutput) => void
194
+ ): void;
195
+ listApplications(
196
+ args: ListApplicationsCommandInput,
197
+ options: __HttpHandlerOptions,
198
+ cb: (err: any, data?: ListApplicationsCommandOutput) => void
199
+ ): void;
200
+
201
+ listApplicationVersions(
202
+ args: ListApplicationVersionsCommandInput,
203
+ options?: __HttpHandlerOptions
204
+ ): Promise<ListApplicationVersionsCommandOutput>;
205
+ listApplicationVersions(
206
+ args: ListApplicationVersionsCommandInput,
207
+ cb: (err: any, data?: ListApplicationVersionsCommandOutput) => void
208
+ ): void;
209
+ listApplicationVersions(
210
+ args: ListApplicationVersionsCommandInput,
211
+ options: __HttpHandlerOptions,
212
+ cb: (err: any, data?: ListApplicationVersionsCommandOutput) => void
213
+ ): void;
214
+
215
+ putApplicationPolicy(
216
+ args: PutApplicationPolicyCommandInput,
217
+ options?: __HttpHandlerOptions
218
+ ): Promise<PutApplicationPolicyCommandOutput>;
219
+ putApplicationPolicy(
220
+ args: PutApplicationPolicyCommandInput,
221
+ cb: (err: any, data?: PutApplicationPolicyCommandOutput) => void
222
+ ): void;
223
+ putApplicationPolicy(
224
+ args: PutApplicationPolicyCommandInput,
225
+ options: __HttpHandlerOptions,
226
+ cb: (err: any, data?: PutApplicationPolicyCommandOutput) => void
227
+ ): void;
228
+
229
+ unshareApplication(
230
+ args: UnshareApplicationCommandInput,
231
+ options?: __HttpHandlerOptions
232
+ ): Promise<UnshareApplicationCommandOutput>;
233
+ unshareApplication(
234
+ args: UnshareApplicationCommandInput,
235
+ cb: (err: any, data?: UnshareApplicationCommandOutput) => void
236
+ ): void;
237
+ unshareApplication(
238
+ args: UnshareApplicationCommandInput,
239
+ options: __HttpHandlerOptions,
240
+ cb: (err: any, data?: UnshareApplicationCommandOutput) => void
241
+ ): void;
242
+
243
+ updateApplication(
244
+ args: UpdateApplicationCommandInput,
245
+ options?: __HttpHandlerOptions
246
+ ): Promise<UpdateApplicationCommandOutput>;
247
+ updateApplication(
248
+ args: UpdateApplicationCommandInput,
249
+ cb: (err: any, data?: UpdateApplicationCommandOutput) => void
250
+ ): void;
251
+ updateApplication(
252
+ args: UpdateApplicationCommandInput,
253
+ options: __HttpHandlerOptions,
254
+ cb: (err: any, data?: UpdateApplicationCommandOutput) => void
255
+ ): void;
256
+ }
@@ -1,87 +1,214 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
- import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
10
- import { CreateApplicationVersionCommandInput, CreateApplicationVersionCommandOutput } from "./commands/CreateApplicationVersionCommand";
11
- import { CreateCloudFormationChangeSetCommandInput, CreateCloudFormationChangeSetCommandOutput } from "./commands/CreateCloudFormationChangeSetCommand";
12
- import { CreateCloudFormationTemplateCommandInput, CreateCloudFormationTemplateCommandOutput } from "./commands/CreateCloudFormationTemplateCommand";
13
- import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
14
- import { GetApplicationCommandInput, GetApplicationCommandOutput } from "./commands/GetApplicationCommand";
15
- import { GetApplicationPolicyCommandInput, GetApplicationPolicyCommandOutput } from "./commands/GetApplicationPolicyCommand";
16
- import { GetCloudFormationTemplateCommandInput, GetCloudFormationTemplateCommandOutput } from "./commands/GetCloudFormationTemplateCommand";
17
- import { ListApplicationDependenciesCommandInput, ListApplicationDependenciesCommandOutput } from "./commands/ListApplicationDependenciesCommand";
18
- import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "./commands/ListApplicationsCommand";
19
- import { ListApplicationVersionsCommandInput, ListApplicationVersionsCommandOutput } from "./commands/ListApplicationVersionsCommand";
20
- import { PutApplicationPolicyCommandInput, PutApplicationPolicyCommandOutput } from "./commands/PutApplicationPolicyCommand";
21
- import { UnshareApplicationCommandInput, UnshareApplicationCommandOutput } from "./commands/UnshareApplicationCommand";
22
- import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
23
- export declare type ServiceInputTypes = CreateApplicationCommandInput | CreateApplicationVersionCommandInput | CreateCloudFormationChangeSetCommandInput | CreateCloudFormationTemplateCommandInput | DeleteApplicationCommandInput | GetApplicationCommandInput | GetApplicationPolicyCommandInput | GetCloudFormationTemplateCommandInput | ListApplicationDependenciesCommandInput | ListApplicationVersionsCommandInput | ListApplicationsCommandInput | PutApplicationPolicyCommandInput | UnshareApplicationCommandInput | UpdateApplicationCommandInput;
24
- export declare type ServiceOutputTypes = CreateApplicationCommandOutput | CreateApplicationVersionCommandOutput | CreateCloudFormationChangeSetCommandOutput | CreateCloudFormationTemplateCommandOutput | DeleteApplicationCommandOutput | GetApplicationCommandOutput | GetApplicationPolicyCommandOutput | GetCloudFormationTemplateCommandOutput | ListApplicationDependenciesCommandOutput | ListApplicationVersionsCommandOutput | ListApplicationsCommandOutput | PutApplicationPolicyCommandOutput | UnshareApplicationCommandOutput | UpdateApplicationCommandOutput;
25
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
26
-
27
- requestHandler?: __HttpHandler;
28
-
29
- sha256?: __HashConstructor;
30
-
31
- urlParser?: __UrlParser;
32
-
33
- bodyLengthChecker?: __BodyLengthCalculator;
34
-
35
- streamCollector?: __StreamCollector;
36
-
37
- base64Decoder?: __Decoder;
38
-
39
- base64Encoder?: __Encoder;
40
-
41
- utf8Decoder?: __Decoder;
42
-
43
- utf8Encoder?: __Encoder;
44
-
45
- runtime?: string;
46
-
47
- disableHostPrefix?: boolean;
48
-
49
- maxAttempts?: number | __Provider<number>;
50
-
51
- retryMode?: string | __Provider<string>;
52
-
53
- logger?: __Logger;
54
-
55
- useDualstackEndpoint?: boolean | __Provider<boolean>;
56
-
57
- useFipsEndpoint?: boolean | __Provider<boolean>;
58
-
59
- serviceId?: string;
60
-
61
- region?: string | __Provider<string>;
62
-
63
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
64
-
65
- regionInfoProvider?: RegionInfoProvider;
66
-
67
- defaultUserAgentProvider?: Provider<__UserAgent>;
68
-
69
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
70
- }
71
- declare type ServerlessApplicationRepositoryClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
72
-
73
- export interface ServerlessApplicationRepositoryClientConfig extends ServerlessApplicationRepositoryClientConfigType {
74
- }
75
- declare type ServerlessApplicationRepositoryClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
76
-
77
- export interface ServerlessApplicationRepositoryClientResolvedConfig extends ServerlessApplicationRepositoryClientResolvedConfigType {
78
- }
79
-
80
- export declare class ServerlessApplicationRepositoryClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ServerlessApplicationRepositoryClientResolvedConfig> {
81
-
82
- readonly config: ServerlessApplicationRepositoryClientResolvedConfig;
83
- constructor(configuration: ServerlessApplicationRepositoryClientConfig);
84
-
85
- destroy(): void;
86
- }
87
- export {};
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 {};