@aws-sdk/client-serverlessapplicationrepository 3.1087.0 → 3.1089.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/ServerlessApplicationRepository.d.ts +45 -45
- package/dist-types/ts3.4/ServerlessApplicationRepositoryClient.d.ts +5 -13
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -10
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateApplicationVersionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateCloudFormationChangeSetCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateCloudFormationTemplateCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetApplicationPolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetCloudFormationTemplateCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListApplicationDependenciesCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListApplicationVersionsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/PutApplicationPolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UnshareApplicationCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +5 -10
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/errors.d.ts +3 -9
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -63,207 +63,207 @@ import { ServerlessApplicationRepositoryClient } from "./ServerlessApplicationRe
|
|
|
63
63
|
export interface ServerlessApplicationRepository {
|
|
64
64
|
createApplication(
|
|
65
65
|
args: CreateApplicationCommandInput,
|
|
66
|
-
options?: __HttpHandlerOptions
|
|
66
|
+
options?: __HttpHandlerOptions,
|
|
67
67
|
): Promise<CreateApplicationCommandOutput>;
|
|
68
68
|
createApplication(
|
|
69
69
|
args: CreateApplicationCommandInput,
|
|
70
|
-
cb: (err: any, data?: CreateApplicationCommandOutput) => void
|
|
70
|
+
cb: (err: any, data?: CreateApplicationCommandOutput) => void,
|
|
71
71
|
): void;
|
|
72
72
|
createApplication(
|
|
73
73
|
args: CreateApplicationCommandInput,
|
|
74
74
|
options: __HttpHandlerOptions,
|
|
75
|
-
cb: (err: any, data?: CreateApplicationCommandOutput) => void
|
|
75
|
+
cb: (err: any, data?: CreateApplicationCommandOutput) => void,
|
|
76
76
|
): void;
|
|
77
77
|
createApplicationVersion(
|
|
78
78
|
args: CreateApplicationVersionCommandInput,
|
|
79
|
-
options?: __HttpHandlerOptions
|
|
79
|
+
options?: __HttpHandlerOptions,
|
|
80
80
|
): Promise<CreateApplicationVersionCommandOutput>;
|
|
81
81
|
createApplicationVersion(
|
|
82
82
|
args: CreateApplicationVersionCommandInput,
|
|
83
|
-
cb: (err: any, data?: CreateApplicationVersionCommandOutput) => void
|
|
83
|
+
cb: (err: any, data?: CreateApplicationVersionCommandOutput) => void,
|
|
84
84
|
): void;
|
|
85
85
|
createApplicationVersion(
|
|
86
86
|
args: CreateApplicationVersionCommandInput,
|
|
87
87
|
options: __HttpHandlerOptions,
|
|
88
|
-
cb: (err: any, data?: CreateApplicationVersionCommandOutput) => void
|
|
88
|
+
cb: (err: any, data?: CreateApplicationVersionCommandOutput) => void,
|
|
89
89
|
): void;
|
|
90
90
|
createCloudFormationChangeSet(
|
|
91
91
|
args: CreateCloudFormationChangeSetCommandInput,
|
|
92
|
-
options?: __HttpHandlerOptions
|
|
92
|
+
options?: __HttpHandlerOptions,
|
|
93
93
|
): Promise<CreateCloudFormationChangeSetCommandOutput>;
|
|
94
94
|
createCloudFormationChangeSet(
|
|
95
95
|
args: CreateCloudFormationChangeSetCommandInput,
|
|
96
|
-
cb: (err: any, data?: CreateCloudFormationChangeSetCommandOutput) => void
|
|
96
|
+
cb: (err: any, data?: CreateCloudFormationChangeSetCommandOutput) => void,
|
|
97
97
|
): void;
|
|
98
98
|
createCloudFormationChangeSet(
|
|
99
99
|
args: CreateCloudFormationChangeSetCommandInput,
|
|
100
100
|
options: __HttpHandlerOptions,
|
|
101
|
-
cb: (err: any, data?: CreateCloudFormationChangeSetCommandOutput) => void
|
|
101
|
+
cb: (err: any, data?: CreateCloudFormationChangeSetCommandOutput) => void,
|
|
102
102
|
): void;
|
|
103
103
|
createCloudFormationTemplate(
|
|
104
104
|
args: CreateCloudFormationTemplateCommandInput,
|
|
105
|
-
options?: __HttpHandlerOptions
|
|
105
|
+
options?: __HttpHandlerOptions,
|
|
106
106
|
): Promise<CreateCloudFormationTemplateCommandOutput>;
|
|
107
107
|
createCloudFormationTemplate(
|
|
108
108
|
args: CreateCloudFormationTemplateCommandInput,
|
|
109
|
-
cb: (err: any, data?: CreateCloudFormationTemplateCommandOutput) => void
|
|
109
|
+
cb: (err: any, data?: CreateCloudFormationTemplateCommandOutput) => void,
|
|
110
110
|
): void;
|
|
111
111
|
createCloudFormationTemplate(
|
|
112
112
|
args: CreateCloudFormationTemplateCommandInput,
|
|
113
113
|
options: __HttpHandlerOptions,
|
|
114
|
-
cb: (err: any, data?: CreateCloudFormationTemplateCommandOutput) => void
|
|
114
|
+
cb: (err: any, data?: CreateCloudFormationTemplateCommandOutput) => void,
|
|
115
115
|
): void;
|
|
116
116
|
deleteApplication(
|
|
117
117
|
args: DeleteApplicationCommandInput,
|
|
118
|
-
options?: __HttpHandlerOptions
|
|
118
|
+
options?: __HttpHandlerOptions,
|
|
119
119
|
): Promise<DeleteApplicationCommandOutput>;
|
|
120
120
|
deleteApplication(
|
|
121
121
|
args: DeleteApplicationCommandInput,
|
|
122
|
-
cb: (err: any, data?: DeleteApplicationCommandOutput) => void
|
|
122
|
+
cb: (err: any, data?: DeleteApplicationCommandOutput) => void,
|
|
123
123
|
): void;
|
|
124
124
|
deleteApplication(
|
|
125
125
|
args: DeleteApplicationCommandInput,
|
|
126
126
|
options: __HttpHandlerOptions,
|
|
127
|
-
cb: (err: any, data?: DeleteApplicationCommandOutput) => void
|
|
127
|
+
cb: (err: any, data?: DeleteApplicationCommandOutput) => void,
|
|
128
128
|
): void;
|
|
129
129
|
getApplication(
|
|
130
130
|
args: GetApplicationCommandInput,
|
|
131
|
-
options?: __HttpHandlerOptions
|
|
131
|
+
options?: __HttpHandlerOptions,
|
|
132
132
|
): Promise<GetApplicationCommandOutput>;
|
|
133
133
|
getApplication(
|
|
134
134
|
args: GetApplicationCommandInput,
|
|
135
|
-
cb: (err: any, data?: GetApplicationCommandOutput) => void
|
|
135
|
+
cb: (err: any, data?: GetApplicationCommandOutput) => void,
|
|
136
136
|
): void;
|
|
137
137
|
getApplication(
|
|
138
138
|
args: GetApplicationCommandInput,
|
|
139
139
|
options: __HttpHandlerOptions,
|
|
140
|
-
cb: (err: any, data?: GetApplicationCommandOutput) => void
|
|
140
|
+
cb: (err: any, data?: GetApplicationCommandOutput) => void,
|
|
141
141
|
): void;
|
|
142
142
|
getApplicationPolicy(
|
|
143
143
|
args: GetApplicationPolicyCommandInput,
|
|
144
|
-
options?: __HttpHandlerOptions
|
|
144
|
+
options?: __HttpHandlerOptions,
|
|
145
145
|
): Promise<GetApplicationPolicyCommandOutput>;
|
|
146
146
|
getApplicationPolicy(
|
|
147
147
|
args: GetApplicationPolicyCommandInput,
|
|
148
|
-
cb: (err: any, data?: GetApplicationPolicyCommandOutput) => void
|
|
148
|
+
cb: (err: any, data?: GetApplicationPolicyCommandOutput) => void,
|
|
149
149
|
): void;
|
|
150
150
|
getApplicationPolicy(
|
|
151
151
|
args: GetApplicationPolicyCommandInput,
|
|
152
152
|
options: __HttpHandlerOptions,
|
|
153
|
-
cb: (err: any, data?: GetApplicationPolicyCommandOutput) => void
|
|
153
|
+
cb: (err: any, data?: GetApplicationPolicyCommandOutput) => void,
|
|
154
154
|
): void;
|
|
155
155
|
getCloudFormationTemplate(
|
|
156
156
|
args: GetCloudFormationTemplateCommandInput,
|
|
157
|
-
options?: __HttpHandlerOptions
|
|
157
|
+
options?: __HttpHandlerOptions,
|
|
158
158
|
): Promise<GetCloudFormationTemplateCommandOutput>;
|
|
159
159
|
getCloudFormationTemplate(
|
|
160
160
|
args: GetCloudFormationTemplateCommandInput,
|
|
161
|
-
cb: (err: any, data?: GetCloudFormationTemplateCommandOutput) => void
|
|
161
|
+
cb: (err: any, data?: GetCloudFormationTemplateCommandOutput) => void,
|
|
162
162
|
): void;
|
|
163
163
|
getCloudFormationTemplate(
|
|
164
164
|
args: GetCloudFormationTemplateCommandInput,
|
|
165
165
|
options: __HttpHandlerOptions,
|
|
166
|
-
cb: (err: any, data?: GetCloudFormationTemplateCommandOutput) => void
|
|
166
|
+
cb: (err: any, data?: GetCloudFormationTemplateCommandOutput) => void,
|
|
167
167
|
): void;
|
|
168
168
|
listApplicationDependencies(
|
|
169
169
|
args: ListApplicationDependenciesCommandInput,
|
|
170
|
-
options?: __HttpHandlerOptions
|
|
170
|
+
options?: __HttpHandlerOptions,
|
|
171
171
|
): Promise<ListApplicationDependenciesCommandOutput>;
|
|
172
172
|
listApplicationDependencies(
|
|
173
173
|
args: ListApplicationDependenciesCommandInput,
|
|
174
|
-
cb: (err: any, data?: ListApplicationDependenciesCommandOutput) => void
|
|
174
|
+
cb: (err: any, data?: ListApplicationDependenciesCommandOutput) => void,
|
|
175
175
|
): void;
|
|
176
176
|
listApplicationDependencies(
|
|
177
177
|
args: ListApplicationDependenciesCommandInput,
|
|
178
178
|
options: __HttpHandlerOptions,
|
|
179
|
-
cb: (err: any, data?: ListApplicationDependenciesCommandOutput) => void
|
|
179
|
+
cb: (err: any, data?: ListApplicationDependenciesCommandOutput) => void,
|
|
180
180
|
): void;
|
|
181
181
|
listApplications(): Promise<ListApplicationsCommandOutput>;
|
|
182
182
|
listApplications(
|
|
183
183
|
args: ListApplicationsCommandInput,
|
|
184
|
-
options?: __HttpHandlerOptions
|
|
184
|
+
options?: __HttpHandlerOptions,
|
|
185
185
|
): Promise<ListApplicationsCommandOutput>;
|
|
186
186
|
listApplications(
|
|
187
187
|
args: ListApplicationsCommandInput,
|
|
188
|
-
cb: (err: any, data?: ListApplicationsCommandOutput) => void
|
|
188
|
+
cb: (err: any, data?: ListApplicationsCommandOutput) => void,
|
|
189
189
|
): void;
|
|
190
190
|
listApplications(
|
|
191
191
|
args: ListApplicationsCommandInput,
|
|
192
192
|
options: __HttpHandlerOptions,
|
|
193
|
-
cb: (err: any, data?: ListApplicationsCommandOutput) => void
|
|
193
|
+
cb: (err: any, data?: ListApplicationsCommandOutput) => void,
|
|
194
194
|
): void;
|
|
195
195
|
listApplicationVersions(
|
|
196
196
|
args: ListApplicationVersionsCommandInput,
|
|
197
|
-
options?: __HttpHandlerOptions
|
|
197
|
+
options?: __HttpHandlerOptions,
|
|
198
198
|
): Promise<ListApplicationVersionsCommandOutput>;
|
|
199
199
|
listApplicationVersions(
|
|
200
200
|
args: ListApplicationVersionsCommandInput,
|
|
201
|
-
cb: (err: any, data?: ListApplicationVersionsCommandOutput) => void
|
|
201
|
+
cb: (err: any, data?: ListApplicationVersionsCommandOutput) => void,
|
|
202
202
|
): void;
|
|
203
203
|
listApplicationVersions(
|
|
204
204
|
args: ListApplicationVersionsCommandInput,
|
|
205
205
|
options: __HttpHandlerOptions,
|
|
206
|
-
cb: (err: any, data?: ListApplicationVersionsCommandOutput) => void
|
|
206
|
+
cb: (err: any, data?: ListApplicationVersionsCommandOutput) => void,
|
|
207
207
|
): void;
|
|
208
208
|
putApplicationPolicy(
|
|
209
209
|
args: PutApplicationPolicyCommandInput,
|
|
210
|
-
options?: __HttpHandlerOptions
|
|
210
|
+
options?: __HttpHandlerOptions,
|
|
211
211
|
): Promise<PutApplicationPolicyCommandOutput>;
|
|
212
212
|
putApplicationPolicy(
|
|
213
213
|
args: PutApplicationPolicyCommandInput,
|
|
214
|
-
cb: (err: any, data?: PutApplicationPolicyCommandOutput) => void
|
|
214
|
+
cb: (err: any, data?: PutApplicationPolicyCommandOutput) => void,
|
|
215
215
|
): void;
|
|
216
216
|
putApplicationPolicy(
|
|
217
217
|
args: PutApplicationPolicyCommandInput,
|
|
218
218
|
options: __HttpHandlerOptions,
|
|
219
|
-
cb: (err: any, data?: PutApplicationPolicyCommandOutput) => void
|
|
219
|
+
cb: (err: any, data?: PutApplicationPolicyCommandOutput) => void,
|
|
220
220
|
): void;
|
|
221
221
|
unshareApplication(
|
|
222
222
|
args: UnshareApplicationCommandInput,
|
|
223
|
-
options?: __HttpHandlerOptions
|
|
223
|
+
options?: __HttpHandlerOptions,
|
|
224
224
|
): Promise<UnshareApplicationCommandOutput>;
|
|
225
225
|
unshareApplication(
|
|
226
226
|
args: UnshareApplicationCommandInput,
|
|
227
|
-
cb: (err: any, data?: UnshareApplicationCommandOutput) => void
|
|
227
|
+
cb: (err: any, data?: UnshareApplicationCommandOutput) => void,
|
|
228
228
|
): void;
|
|
229
229
|
unshareApplication(
|
|
230
230
|
args: UnshareApplicationCommandInput,
|
|
231
231
|
options: __HttpHandlerOptions,
|
|
232
|
-
cb: (err: any, data?: UnshareApplicationCommandOutput) => void
|
|
232
|
+
cb: (err: any, data?: UnshareApplicationCommandOutput) => void,
|
|
233
233
|
): void;
|
|
234
234
|
updateApplication(
|
|
235
235
|
args: UpdateApplicationCommandInput,
|
|
236
|
-
options?: __HttpHandlerOptions
|
|
236
|
+
options?: __HttpHandlerOptions,
|
|
237
237
|
): Promise<UpdateApplicationCommandOutput>;
|
|
238
238
|
updateApplication(
|
|
239
239
|
args: UpdateApplicationCommandInput,
|
|
240
|
-
cb: (err: any, data?: UpdateApplicationCommandOutput) => void
|
|
240
|
+
cb: (err: any, data?: UpdateApplicationCommandOutput) => void,
|
|
241
241
|
): void;
|
|
242
242
|
updateApplication(
|
|
243
243
|
args: UpdateApplicationCommandInput,
|
|
244
244
|
options: __HttpHandlerOptions,
|
|
245
|
-
cb: (err: any, data?: UpdateApplicationCommandOutput) => void
|
|
245
|
+
cb: (err: any, data?: UpdateApplicationCommandOutput) => void,
|
|
246
246
|
): void;
|
|
247
247
|
paginateListApplicationDependencies(
|
|
248
248
|
args: ListApplicationDependenciesCommandInput,
|
|
249
249
|
paginationConfig?: Pick<
|
|
250
250
|
PaginationConfiguration,
|
|
251
251
|
Exclude<keyof PaginationConfiguration, "client">
|
|
252
|
-
|
|
252
|
+
>,
|
|
253
253
|
): Paginator<ListApplicationDependenciesCommandOutput>;
|
|
254
254
|
paginateListApplications(
|
|
255
255
|
args?: ListApplicationsCommandInput,
|
|
256
256
|
paginationConfig?: Pick<
|
|
257
257
|
PaginationConfiguration,
|
|
258
258
|
Exclude<keyof PaginationConfiguration, "client">
|
|
259
|
-
|
|
259
|
+
>,
|
|
260
260
|
): Paginator<ListApplicationsCommandOutput>;
|
|
261
261
|
paginateListApplicationVersions(
|
|
262
262
|
args: ListApplicationVersionsCommandInput,
|
|
263
263
|
paginationConfig?: Pick<
|
|
264
264
|
PaginationConfiguration,
|
|
265
265
|
Exclude<keyof PaginationConfiguration, "client">
|
|
266
|
-
|
|
266
|
+
>,
|
|
267
267
|
): Paginator<ListApplicationVersionsCommandOutput>;
|
|
268
268
|
}
|
|
269
269
|
export declare class ServerlessApplicationRepository
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -129,8 +126,7 @@ export type ServiceOutputTypes =
|
|
|
129
126
|
| PutApplicationPolicyCommandOutput
|
|
130
127
|
| UnshareApplicationCommandOutput
|
|
131
128
|
| UpdateApplicationCommandOutput;
|
|
132
|
-
export interface ClientDefaults
|
|
133
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
129
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
134
130
|
requestHandler?: __HttpHandlerUserInput;
|
|
135
131
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
136
132
|
urlParser?: __UrlParser;
|
|
@@ -166,8 +162,7 @@ export type ServerlessApplicationRepositoryClientConfigType = Partial<
|
|
|
166
162
|
EndpointInputConfig<EndpointParameters> &
|
|
167
163
|
HttpAuthSchemeInputConfig &
|
|
168
164
|
ClientInputEndpointParameters;
|
|
169
|
-
export interface ServerlessApplicationRepositoryClientConfig
|
|
170
|
-
extends ServerlessApplicationRepositoryClientConfigType {}
|
|
165
|
+
export interface ServerlessApplicationRepositoryClientConfig extends ServerlessApplicationRepositoryClientConfigType {}
|
|
171
166
|
export type ServerlessApplicationRepositoryClientResolvedConfigType =
|
|
172
167
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
173
168
|
Required<ClientDefaults> &
|
|
@@ -179,8 +174,7 @@ export type ServerlessApplicationRepositoryClientResolvedConfigType =
|
|
|
179
174
|
EndpointResolvedConfig<EndpointParameters> &
|
|
180
175
|
HttpAuthSchemeResolvedConfig &
|
|
181
176
|
ClientResolvedEndpointParameters;
|
|
182
|
-
export interface ServerlessApplicationRepositoryClientResolvedConfig
|
|
183
|
-
extends ServerlessApplicationRepositoryClientResolvedConfigType {}
|
|
177
|
+
export interface ServerlessApplicationRepositoryClientResolvedConfig extends ServerlessApplicationRepositoryClientResolvedConfigType {}
|
|
184
178
|
export declare class ServerlessApplicationRepositoryClient extends __Client<
|
|
185
179
|
__HttpHandlerOptions,
|
|
186
180
|
ServiceInputTypes,
|
|
@@ -189,9 +183,7 @@ export declare class ServerlessApplicationRepositoryClient extends __Client<
|
|
|
189
183
|
> {
|
|
190
184
|
readonly config: ServerlessApplicationRepositoryClientResolvedConfig;
|
|
191
185
|
constructor(
|
|
192
|
-
...[
|
|
193
|
-
configuration,
|
|
194
|
-
]: __CheckOptionalClientConfig<ServerlessApplicationRepositoryClientConfig>
|
|
186
|
+
...[configuration]: __CheckOptionalClientConfig<ServerlessApplicationRepositoryClientConfig>
|
|
195
187
|
);
|
|
196
188
|
destroy(): void;
|
|
197
189
|
}
|
|
@@ -8,16 +8,11 @@ export interface HttpAuthExtensionConfiguration {
|
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
10
|
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: ServerlessApplicationRepositoryHttpAuthSchemeProvider
|
|
11
|
+
httpAuthSchemeProvider: ServerlessApplicationRepositoryHttpAuthSchemeProvider,
|
|
12
12
|
): void;
|
|
13
13
|
httpAuthSchemeProvider(): ServerlessApplicationRepositoryHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
14
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
15
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
16
|
}
|
|
22
17
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
18
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +20,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
20
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
21
|
}>;
|
|
27
22
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
23
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
24
|
) => HttpAuthExtensionConfiguration;
|
|
30
25
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
26
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
27
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { ServerlessApplicationRepositoryClientResolvedConfig } from "../ServerlessApplicationRepositoryClient";
|
|
15
|
-
export interface ServerlessApplicationRepositoryHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface ServerlessApplicationRepositoryHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface ServerlessApplicationRepositoryHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface ServerlessApplicationRepositoryHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
ServerlessApplicationRepositoryHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultServerlessApplicationRepositoryHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<ServerlessApplicationRepositoryHttpAuthSchemeParameters>;
|
|
31
|
-
export interface ServerlessApplicationRepositoryHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<ServerlessApplicationRepositoryHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface ServerlessApplicationRepositoryHttpAuthSchemeProvider extends HttpAuthSchemeProvider<ServerlessApplicationRepositoryHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultServerlessApplicationRepositoryHttpAuthSchemeProvider: ServerlessApplicationRepositoryHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: ServerlessApplicationRepositoryHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: ServerlessApplicationRepositoryHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./ServerlessApplicationRepositoryClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateApplicationRequest,
|
|
4
|
-
CreateApplicationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateApplicationCommandInput
|
|
8
|
-
extends CreateApplicationRequest {}
|
|
4
|
+
export interface CreateApplicationCommandInput extends CreateApplicationRequest {}
|
|
9
5
|
export interface CreateApplicationCommandOutput
|
|
10
|
-
extends CreateApplicationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateApplicationResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateApplicationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateApplicationCommandInput
|
|
9
|
+
input: CreateApplicationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateApplicationCommandInput,
|
|
17
12
|
CreateApplicationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateApplicationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateApplicationCommandInput
|
|
18
|
+
input: CreateApplicationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateApplicationCommandInput,
|
|
26
21
|
CreateApplicationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateApplicationVersionResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateApplicationVersionCommandInput
|
|
8
|
-
extends CreateApplicationVersionRequest {}
|
|
7
|
+
export interface CreateApplicationVersionCommandInput extends CreateApplicationVersionRequest {}
|
|
9
8
|
export interface CreateApplicationVersionCommandOutput
|
|
10
|
-
extends CreateApplicationVersionResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateApplicationVersionResponse, __MetadataBearer {}
|
|
12
10
|
declare const CreateApplicationVersionCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateApplicationVersionCommandInput
|
|
12
|
+
input: CreateApplicationVersionCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateApplicationVersionCommandInput,
|
|
17
15
|
CreateApplicationVersionCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateApplicationVersionCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateApplicationVersionCommandInput
|
|
21
|
+
input: CreateApplicationVersionCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateApplicationVersionCommandInput,
|
|
26
24
|
CreateApplicationVersionCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateCloudFormationChangeSetResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateCloudFormationChangeSetCommandInput
|
|
8
|
-
extends CreateCloudFormationChangeSetRequest {}
|
|
7
|
+
export interface CreateCloudFormationChangeSetCommandInput extends CreateCloudFormationChangeSetRequest {}
|
|
9
8
|
export interface CreateCloudFormationChangeSetCommandOutput
|
|
10
|
-
extends CreateCloudFormationChangeSetResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateCloudFormationChangeSetResponse, __MetadataBearer {}
|
|
12
10
|
declare const CreateCloudFormationChangeSetCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateCloudFormationChangeSetCommandInput
|
|
12
|
+
input: CreateCloudFormationChangeSetCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateCloudFormationChangeSetCommandInput,
|
|
17
15
|
CreateCloudFormationChangeSetCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateCloudFormationChangeSetCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateCloudFormationChangeSetCommandInput
|
|
21
|
+
input: CreateCloudFormationChangeSetCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateCloudFormationChangeSetCommandInput,
|
|
26
24
|
CreateCloudFormationChangeSetCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateCloudFormationTemplateResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateCloudFormationTemplateCommandInput
|
|
8
|
-
extends CreateCloudFormationTemplateRequest {}
|
|
7
|
+
export interface CreateCloudFormationTemplateCommandInput extends CreateCloudFormationTemplateRequest {}
|
|
9
8
|
export interface CreateCloudFormationTemplateCommandOutput
|
|
10
|
-
extends CreateCloudFormationTemplateResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateCloudFormationTemplateResponse, __MetadataBearer {}
|
|
12
10
|
declare const CreateCloudFormationTemplateCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateCloudFormationTemplateCommandInput
|
|
12
|
+
input: CreateCloudFormationTemplateCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateCloudFormationTemplateCommandInput,
|
|
17
15
|
CreateCloudFormationTemplateCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateCloudFormationTemplateCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateCloudFormationTemplateCommandInput
|
|
21
|
+
input: CreateCloudFormationTemplateCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateCloudFormationTemplateCommandInput,
|
|
26
24
|
CreateCloudFormationTemplateCommandOutput,
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { DeleteApplicationRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface DeleteApplicationCommandInput
|
|
5
|
-
extends DeleteApplicationRequest {}
|
|
4
|
+
export interface DeleteApplicationCommandInput extends DeleteApplicationRequest {}
|
|
6
5
|
export interface DeleteApplicationCommandOutput extends __MetadataBearer {}
|
|
7
6
|
declare const DeleteApplicationCommand_base: {
|
|
8
7
|
new (
|
|
9
|
-
input: DeleteApplicationCommandInput
|
|
8
|
+
input: DeleteApplicationCommandInput,
|
|
10
9
|
): import("@smithy/core/client").CommandImpl<
|
|
11
10
|
DeleteApplicationCommandInput,
|
|
12
11
|
DeleteApplicationCommandOutput,
|
|
@@ -15,7 +14,7 @@ declare const DeleteApplicationCommand_base: {
|
|
|
15
14
|
import("..").ServiceOutputTypes
|
|
16
15
|
>;
|
|
17
16
|
new (
|
|
18
|
-
input: DeleteApplicationCommandInput
|
|
17
|
+
input: DeleteApplicationCommandInput,
|
|
19
18
|
): import("@smithy/core/client").CommandImpl<
|
|
20
19
|
DeleteApplicationCommandInput,
|
|
21
20
|
DeleteApplicationCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetApplicationRequest,
|
|
4
|
-
GetApplicationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetApplicationRequest, GetApplicationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetApplicationCommandInput extends GetApplicationRequest {}
|
|
8
|
-
export interface GetApplicationCommandOutput
|
|
9
|
-
extends GetApplicationResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetApplicationCommandOutput extends GetApplicationResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetApplicationCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetApplicationCommandInput
|
|
8
|
+
input: GetApplicationCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetApplicationCommandInput,
|
|
16
11
|
GetApplicationCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetApplicationCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetApplicationCommandInput
|
|
17
|
+
input: GetApplicationCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetApplicationCommandInput,
|
|
25
20
|
GetApplicationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetApplicationPolicyRequest,
|
|
4
|
-
GetApplicationPolicyResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetApplicationPolicyRequest, GetApplicationPolicyResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetApplicationPolicyCommandInput
|
|
8
|
-
extends GetApplicationPolicyRequest {}
|
|
4
|
+
export interface GetApplicationPolicyCommandInput extends GetApplicationPolicyRequest {}
|
|
9
5
|
export interface GetApplicationPolicyCommandOutput
|
|
10
|
-
extends GetApplicationPolicyResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetApplicationPolicyResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetApplicationPolicyCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetApplicationPolicyCommandInput
|
|
9
|
+
input: GetApplicationPolicyCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetApplicationPolicyCommandInput,
|
|
17
12
|
GetApplicationPolicyCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetApplicationPolicyCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetApplicationPolicyCommandInput
|
|
18
|
+
input: GetApplicationPolicyCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetApplicationPolicyCommandInput,
|
|
26
21
|
GetApplicationPolicyCommandOutput,
|