@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
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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
|
+
|
|
14
|
+
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-serverlessapplicationrepository
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
|
|
7
23
|
|
|
8
24
|
**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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
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
|
-
|
|
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
|
+
}
|