@aws-sdk/client-serverlessapplicationrepository 3.169.0 → 3.171.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 +242 -75
- package/dist-types/ts3.4/ServerlessApplicationRepositoryClient.d.ts +189 -87
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/CreateApplicationVersionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateCloudFormationChangeSetCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateCloudFormationTemplateCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +31 -17
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetApplicationPolicyCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetCloudFormationTemplateCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListApplicationDependenciesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListApplicationVersionsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/PutApplicationPolicyCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UnshareApplicationCommand.d.ts +31 -17
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +36 -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 +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +421 -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 +67 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -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.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-serverlessapplicationrepository
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-serverlessapplicationrepository
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-serverlessapplicationrepository
|
|
@@ -1,75 +1,242 @@
|
|
|
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
|
+
export declare class ServerlessApplicationRepository extends ServerlessApplicationRepositoryClient {
|
|
60
|
+
createApplication(
|
|
61
|
+
args: CreateApplicationCommandInput,
|
|
62
|
+
options?: __HttpHandlerOptions
|
|
63
|
+
): Promise<CreateApplicationCommandOutput>;
|
|
64
|
+
createApplication(
|
|
65
|
+
args: CreateApplicationCommandInput,
|
|
66
|
+
cb: (err: any, data?: CreateApplicationCommandOutput) => void
|
|
67
|
+
): void;
|
|
68
|
+
createApplication(
|
|
69
|
+
args: CreateApplicationCommandInput,
|
|
70
|
+
options: __HttpHandlerOptions,
|
|
71
|
+
cb: (err: any, data?: CreateApplicationCommandOutput) => void
|
|
72
|
+
): void;
|
|
73
|
+
createApplicationVersion(
|
|
74
|
+
args: CreateApplicationVersionCommandInput,
|
|
75
|
+
options?: __HttpHandlerOptions
|
|
76
|
+
): Promise<CreateApplicationVersionCommandOutput>;
|
|
77
|
+
createApplicationVersion(
|
|
78
|
+
args: CreateApplicationVersionCommandInput,
|
|
79
|
+
cb: (err: any, data?: CreateApplicationVersionCommandOutput) => void
|
|
80
|
+
): void;
|
|
81
|
+
createApplicationVersion(
|
|
82
|
+
args: CreateApplicationVersionCommandInput,
|
|
83
|
+
options: __HttpHandlerOptions,
|
|
84
|
+
cb: (err: any, data?: CreateApplicationVersionCommandOutput) => void
|
|
85
|
+
): void;
|
|
86
|
+
createCloudFormationChangeSet(
|
|
87
|
+
args: CreateCloudFormationChangeSetCommandInput,
|
|
88
|
+
options?: __HttpHandlerOptions
|
|
89
|
+
): Promise<CreateCloudFormationChangeSetCommandOutput>;
|
|
90
|
+
createCloudFormationChangeSet(
|
|
91
|
+
args: CreateCloudFormationChangeSetCommandInput,
|
|
92
|
+
cb: (err: any, data?: CreateCloudFormationChangeSetCommandOutput) => void
|
|
93
|
+
): void;
|
|
94
|
+
createCloudFormationChangeSet(
|
|
95
|
+
args: CreateCloudFormationChangeSetCommandInput,
|
|
96
|
+
options: __HttpHandlerOptions,
|
|
97
|
+
cb: (err: any, data?: CreateCloudFormationChangeSetCommandOutput) => void
|
|
98
|
+
): void;
|
|
99
|
+
createCloudFormationTemplate(
|
|
100
|
+
args: CreateCloudFormationTemplateCommandInput,
|
|
101
|
+
options?: __HttpHandlerOptions
|
|
102
|
+
): Promise<CreateCloudFormationTemplateCommandOutput>;
|
|
103
|
+
createCloudFormationTemplate(
|
|
104
|
+
args: CreateCloudFormationTemplateCommandInput,
|
|
105
|
+
cb: (err: any, data?: CreateCloudFormationTemplateCommandOutput) => void
|
|
106
|
+
): void;
|
|
107
|
+
createCloudFormationTemplate(
|
|
108
|
+
args: CreateCloudFormationTemplateCommandInput,
|
|
109
|
+
options: __HttpHandlerOptions,
|
|
110
|
+
cb: (err: any, data?: CreateCloudFormationTemplateCommandOutput) => void
|
|
111
|
+
): void;
|
|
112
|
+
deleteApplication(
|
|
113
|
+
args: DeleteApplicationCommandInput,
|
|
114
|
+
options?: __HttpHandlerOptions
|
|
115
|
+
): Promise<DeleteApplicationCommandOutput>;
|
|
116
|
+
deleteApplication(
|
|
117
|
+
args: DeleteApplicationCommandInput,
|
|
118
|
+
cb: (err: any, data?: DeleteApplicationCommandOutput) => void
|
|
119
|
+
): void;
|
|
120
|
+
deleteApplication(
|
|
121
|
+
args: DeleteApplicationCommandInput,
|
|
122
|
+
options: __HttpHandlerOptions,
|
|
123
|
+
cb: (err: any, data?: DeleteApplicationCommandOutput) => void
|
|
124
|
+
): void;
|
|
125
|
+
getApplication(
|
|
126
|
+
args: GetApplicationCommandInput,
|
|
127
|
+
options?: __HttpHandlerOptions
|
|
128
|
+
): Promise<GetApplicationCommandOutput>;
|
|
129
|
+
getApplication(
|
|
130
|
+
args: GetApplicationCommandInput,
|
|
131
|
+
cb: (err: any, data?: GetApplicationCommandOutput) => void
|
|
132
|
+
): void;
|
|
133
|
+
getApplication(
|
|
134
|
+
args: GetApplicationCommandInput,
|
|
135
|
+
options: __HttpHandlerOptions,
|
|
136
|
+
cb: (err: any, data?: GetApplicationCommandOutput) => void
|
|
137
|
+
): void;
|
|
138
|
+
getApplicationPolicy(
|
|
139
|
+
args: GetApplicationPolicyCommandInput,
|
|
140
|
+
options?: __HttpHandlerOptions
|
|
141
|
+
): Promise<GetApplicationPolicyCommandOutput>;
|
|
142
|
+
getApplicationPolicy(
|
|
143
|
+
args: GetApplicationPolicyCommandInput,
|
|
144
|
+
cb: (err: any, data?: GetApplicationPolicyCommandOutput) => void
|
|
145
|
+
): void;
|
|
146
|
+
getApplicationPolicy(
|
|
147
|
+
args: GetApplicationPolicyCommandInput,
|
|
148
|
+
options: __HttpHandlerOptions,
|
|
149
|
+
cb: (err: any, data?: GetApplicationPolicyCommandOutput) => void
|
|
150
|
+
): void;
|
|
151
|
+
getCloudFormationTemplate(
|
|
152
|
+
args: GetCloudFormationTemplateCommandInput,
|
|
153
|
+
options?: __HttpHandlerOptions
|
|
154
|
+
): Promise<GetCloudFormationTemplateCommandOutput>;
|
|
155
|
+
getCloudFormationTemplate(
|
|
156
|
+
args: GetCloudFormationTemplateCommandInput,
|
|
157
|
+
cb: (err: any, data?: GetCloudFormationTemplateCommandOutput) => void
|
|
158
|
+
): void;
|
|
159
|
+
getCloudFormationTemplate(
|
|
160
|
+
args: GetCloudFormationTemplateCommandInput,
|
|
161
|
+
options: __HttpHandlerOptions,
|
|
162
|
+
cb: (err: any, data?: GetCloudFormationTemplateCommandOutput) => void
|
|
163
|
+
): void;
|
|
164
|
+
listApplicationDependencies(
|
|
165
|
+
args: ListApplicationDependenciesCommandInput,
|
|
166
|
+
options?: __HttpHandlerOptions
|
|
167
|
+
): Promise<ListApplicationDependenciesCommandOutput>;
|
|
168
|
+
listApplicationDependencies(
|
|
169
|
+
args: ListApplicationDependenciesCommandInput,
|
|
170
|
+
cb: (err: any, data?: ListApplicationDependenciesCommandOutput) => void
|
|
171
|
+
): void;
|
|
172
|
+
listApplicationDependencies(
|
|
173
|
+
args: ListApplicationDependenciesCommandInput,
|
|
174
|
+
options: __HttpHandlerOptions,
|
|
175
|
+
cb: (err: any, data?: ListApplicationDependenciesCommandOutput) => void
|
|
176
|
+
): void;
|
|
177
|
+
listApplications(
|
|
178
|
+
args: ListApplicationsCommandInput,
|
|
179
|
+
options?: __HttpHandlerOptions
|
|
180
|
+
): Promise<ListApplicationsCommandOutput>;
|
|
181
|
+
listApplications(
|
|
182
|
+
args: ListApplicationsCommandInput,
|
|
183
|
+
cb: (err: any, data?: ListApplicationsCommandOutput) => void
|
|
184
|
+
): void;
|
|
185
|
+
listApplications(
|
|
186
|
+
args: ListApplicationsCommandInput,
|
|
187
|
+
options: __HttpHandlerOptions,
|
|
188
|
+
cb: (err: any, data?: ListApplicationsCommandOutput) => void
|
|
189
|
+
): void;
|
|
190
|
+
listApplicationVersions(
|
|
191
|
+
args: ListApplicationVersionsCommandInput,
|
|
192
|
+
options?: __HttpHandlerOptions
|
|
193
|
+
): Promise<ListApplicationVersionsCommandOutput>;
|
|
194
|
+
listApplicationVersions(
|
|
195
|
+
args: ListApplicationVersionsCommandInput,
|
|
196
|
+
cb: (err: any, data?: ListApplicationVersionsCommandOutput) => void
|
|
197
|
+
): void;
|
|
198
|
+
listApplicationVersions(
|
|
199
|
+
args: ListApplicationVersionsCommandInput,
|
|
200
|
+
options: __HttpHandlerOptions,
|
|
201
|
+
cb: (err: any, data?: ListApplicationVersionsCommandOutput) => void
|
|
202
|
+
): void;
|
|
203
|
+
putApplicationPolicy(
|
|
204
|
+
args: PutApplicationPolicyCommandInput,
|
|
205
|
+
options?: __HttpHandlerOptions
|
|
206
|
+
): Promise<PutApplicationPolicyCommandOutput>;
|
|
207
|
+
putApplicationPolicy(
|
|
208
|
+
args: PutApplicationPolicyCommandInput,
|
|
209
|
+
cb: (err: any, data?: PutApplicationPolicyCommandOutput) => void
|
|
210
|
+
): void;
|
|
211
|
+
putApplicationPolicy(
|
|
212
|
+
args: PutApplicationPolicyCommandInput,
|
|
213
|
+
options: __HttpHandlerOptions,
|
|
214
|
+
cb: (err: any, data?: PutApplicationPolicyCommandOutput) => void
|
|
215
|
+
): void;
|
|
216
|
+
unshareApplication(
|
|
217
|
+
args: UnshareApplicationCommandInput,
|
|
218
|
+
options?: __HttpHandlerOptions
|
|
219
|
+
): Promise<UnshareApplicationCommandOutput>;
|
|
220
|
+
unshareApplication(
|
|
221
|
+
args: UnshareApplicationCommandInput,
|
|
222
|
+
cb: (err: any, data?: UnshareApplicationCommandOutput) => void
|
|
223
|
+
): void;
|
|
224
|
+
unshareApplication(
|
|
225
|
+
args: UnshareApplicationCommandInput,
|
|
226
|
+
options: __HttpHandlerOptions,
|
|
227
|
+
cb: (err: any, data?: UnshareApplicationCommandOutput) => void
|
|
228
|
+
): void;
|
|
229
|
+
updateApplication(
|
|
230
|
+
args: UpdateApplicationCommandInput,
|
|
231
|
+
options?: __HttpHandlerOptions
|
|
232
|
+
): Promise<UpdateApplicationCommandOutput>;
|
|
233
|
+
updateApplication(
|
|
234
|
+
args: UpdateApplicationCommandInput,
|
|
235
|
+
cb: (err: any, data?: UpdateApplicationCommandOutput) => void
|
|
236
|
+
): void;
|
|
237
|
+
updateApplication(
|
|
238
|
+
args: UpdateApplicationCommandInput,
|
|
239
|
+
options: __HttpHandlerOptions,
|
|
240
|
+
cb: (err: any, data?: UpdateApplicationCommandOutput) => void
|
|
241
|
+
): void;
|
|
242
|
+
}
|
|
@@ -1,87 +1,189 @@
|
|
|
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
|
+
sha256?: __HashConstructor;
|
|
135
|
+
urlParser?: __UrlParser;
|
|
136
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
137
|
+
streamCollector?: __StreamCollector;
|
|
138
|
+
base64Decoder?: __Decoder;
|
|
139
|
+
base64Encoder?: __Encoder;
|
|
140
|
+
utf8Decoder?: __Decoder;
|
|
141
|
+
utf8Encoder?: __Encoder;
|
|
142
|
+
runtime?: string;
|
|
143
|
+
disableHostPrefix?: boolean;
|
|
144
|
+
maxAttempts?: number | __Provider<number>;
|
|
145
|
+
retryMode?: string | __Provider<string>;
|
|
146
|
+
logger?: __Logger;
|
|
147
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
148
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
149
|
+
serviceId?: string;
|
|
150
|
+
region?: string | __Provider<string>;
|
|
151
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
152
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
153
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
154
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
155
|
+
}
|
|
156
|
+
declare type ServerlessApplicationRepositoryClientConfigType = Partial<
|
|
157
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
158
|
+
> &
|
|
159
|
+
ClientDefaults &
|
|
160
|
+
RegionInputConfig &
|
|
161
|
+
EndpointsInputConfig &
|
|
162
|
+
RetryInputConfig &
|
|
163
|
+
HostHeaderInputConfig &
|
|
164
|
+
AwsAuthInputConfig &
|
|
165
|
+
UserAgentInputConfig;
|
|
166
|
+
export interface ServerlessApplicationRepositoryClientConfig
|
|
167
|
+
extends ServerlessApplicationRepositoryClientConfigType {}
|
|
168
|
+
declare type ServerlessApplicationRepositoryClientResolvedConfigType =
|
|
169
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
170
|
+
Required<ClientDefaults> &
|
|
171
|
+
RegionResolvedConfig &
|
|
172
|
+
EndpointsResolvedConfig &
|
|
173
|
+
RetryResolvedConfig &
|
|
174
|
+
HostHeaderResolvedConfig &
|
|
175
|
+
AwsAuthResolvedConfig &
|
|
176
|
+
UserAgentResolvedConfig;
|
|
177
|
+
export interface ServerlessApplicationRepositoryClientResolvedConfig
|
|
178
|
+
extends ServerlessApplicationRepositoryClientResolvedConfigType {}
|
|
179
|
+
export declare class ServerlessApplicationRepositoryClient extends __Client<
|
|
180
|
+
__HttpHandlerOptions,
|
|
181
|
+
ServiceInputTypes,
|
|
182
|
+
ServiceOutputTypes,
|
|
183
|
+
ServerlessApplicationRepositoryClientResolvedConfig
|
|
184
|
+
> {
|
|
185
|
+
readonly config: ServerlessApplicationRepositoryClientResolvedConfig;
|
|
186
|
+
constructor(configuration: ServerlessApplicationRepositoryClientConfig);
|
|
187
|
+
destroy(): void;
|
|
188
|
+
}
|
|
189
|
+
export {};
|