@aws-sdk/client-serverlessapplicationrepository 3.1067.0 → 3.1069.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/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +85 -105
- package/dist-cjs/models/ServerlessApplicationRepositoryServiceException.js +4 -8
- package/dist-cjs/models/errors.js +13 -22
- package/dist-cjs/runtimeConfig.browser.js +22 -26
- package/dist-cjs/runtimeConfig.js +30 -34
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +124 -85
- package/package.json +8 -8
|
@@ -1,23 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const
|
|
11
|
-
const retry_1 = require("@smithy/core/retry");
|
|
12
|
-
const serde_1 = require("@smithy/core/serde");
|
|
13
|
-
const node_http_handler_1 = require("@smithy/node-http-handler");
|
|
14
|
-
const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
1
|
+
const packageInfo = require("../package.json");
|
|
2
|
+
const { createDefaultUserAgentProvider, emitWarningIfUnsupportedVersion: awsCheckVersion, NODE_APP_ID_CONFIG_OPTIONS } = require("@aws-sdk/core/client");
|
|
3
|
+
const { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
4
|
+
const { defaultProvider: credentialDefaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
5
|
+
const { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } = require("@smithy/core/client");
|
|
6
|
+
const { loadConfig: loadNodeConfig, NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, resolveDefaultsModeConfig } = require("@smithy/core/config");
|
|
7
|
+
const { DEFAULT_RETRY_MODE, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } = require("@smithy/core/retry");
|
|
8
|
+
const { calculateBodyLength, Hash } = require("@smithy/core/serde");
|
|
9
|
+
const { NodeHttpHandler: RequestHandler, streamCollector } = require("@smithy/node-http-handler");
|
|
10
|
+
const { getRuntimeConfig: getSharedRuntimeConfig } = require("./runtimeConfig.shared");
|
|
15
11
|
const getRuntimeConfig = (config) => {
|
|
16
|
-
|
|
17
|
-
const defaultsMode =
|
|
18
|
-
const defaultConfigProvider = () => defaultsMode().then(
|
|
19
|
-
const clientSharedValues = (
|
|
20
|
-
(
|
|
12
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
13
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
14
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
15
|
+
const clientSharedValues = getSharedRuntimeConfig(config);
|
|
16
|
+
awsCheckVersion(process.version);
|
|
21
17
|
const loaderConfig = {
|
|
22
18
|
profile: config?.profile,
|
|
23
19
|
logger: clientSharedValues.logger,
|
|
@@ -27,23 +23,23 @@ const getRuntimeConfig = (config) => {
|
|
|
27
23
|
...config,
|
|
28
24
|
runtime: "node",
|
|
29
25
|
defaultsMode,
|
|
30
|
-
authSchemePreference: config?.authSchemePreference ?? (
|
|
31
|
-
bodyLengthChecker: config?.bodyLengthChecker ??
|
|
32
|
-
credentialDefaultProvider: config?.credentialDefaultProvider ??
|
|
33
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
34
|
-
maxAttempts: config?.maxAttempts ?? (
|
|
35
|
-
region: config?.region ?? (
|
|
36
|
-
requestHandler:
|
|
26
|
+
authSchemePreference: config?.authSchemePreference ?? loadNodeConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
27
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
28
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? credentialDefaultProvider,
|
|
29
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
30
|
+
maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
31
|
+
region: config?.region ?? loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
32
|
+
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
37
33
|
retryMode: config?.retryMode ??
|
|
38
|
-
(
|
|
39
|
-
...
|
|
40
|
-
default: async () => (await defaultConfigProvider()).retryMode ||
|
|
34
|
+
loadNodeConfig({
|
|
35
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
36
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
41
37
|
}, config),
|
|
42
|
-
sha256: config?.sha256 ??
|
|
43
|
-
streamCollector: config?.streamCollector ??
|
|
44
|
-
useDualstackEndpoint: config?.useDualstackEndpoint ?? (
|
|
45
|
-
useFipsEndpoint: config?.useFipsEndpoint ?? (
|
|
46
|
-
userAgentAppId: config?.userAgentAppId ?? (
|
|
38
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
39
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
40
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
41
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
42
|
+
userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
47
43
|
};
|
|
48
44
|
};
|
|
49
45
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,15 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.getRuntimeConfig = void 0;
|
|
4
|
-
const sha256_js_1 = require("@aws-crypto/sha256-js");
|
|
5
|
-
const runtimeConfig_browser_1 = require("./runtimeConfig.browser");
|
|
1
|
+
const { Sha256 } = require("@aws-crypto/sha256-js");
|
|
2
|
+
const { getRuntimeConfig: getBrowserRuntimeConfig } = require("./runtimeConfig.browser");
|
|
6
3
|
const getRuntimeConfig = (config) => {
|
|
7
|
-
const browserDefaults = (
|
|
4
|
+
const browserDefaults = getBrowserRuntimeConfig(config);
|
|
8
5
|
return {
|
|
9
6
|
...browserDefaults,
|
|
10
7
|
...config,
|
|
11
8
|
runtime: "react-native",
|
|
12
|
-
sha256: config?.sha256 ??
|
|
9
|
+
sha256: config?.sha256 ?? Sha256,
|
|
13
10
|
};
|
|
14
11
|
};
|
|
15
12
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,42 +1,38 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
|
|
10
|
-
const endpointResolver_1 = require("./endpoint/endpointResolver");
|
|
11
|
-
const schemas_0_1 = require("./schemas/schemas_0");
|
|
12
|
-
const getRuntimeConfig = (config) => {
|
|
1
|
+
const { AwsSdkSigV4Signer } = require("@aws-sdk/core/httpAuthSchemes");
|
|
2
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
3
|
+
const { NoOpLogger } = require("@smithy/core/client");
|
|
4
|
+
const { parseUrl } = require("@smithy/core/protocols");
|
|
5
|
+
const { fromBase64, fromUtf8, toBase64, toUtf8 } = require("@smithy/core/serde");
|
|
6
|
+
const { defaultServerlessApplicationRepositoryHttpAuthSchemeProvider } = require("./auth/httpAuthSchemeProvider");
|
|
7
|
+
const { defaultEndpointResolver } = require("./endpoint/endpointResolver");
|
|
8
|
+
const { errorTypeRegistries } = require("./schemas/schemas_0");
|
|
9
|
+
exports.getRuntimeConfig = (config) => {
|
|
13
10
|
return {
|
|
14
11
|
apiVersion: "2017-09-08",
|
|
15
|
-
base64Decoder: config?.base64Decoder ??
|
|
16
|
-
base64Encoder: config?.base64Encoder ??
|
|
12
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
13
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
17
14
|
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
18
|
-
endpointProvider: config?.endpointProvider ??
|
|
15
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
19
16
|
extensions: config?.extensions ?? [],
|
|
20
|
-
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ??
|
|
17
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultServerlessApplicationRepositoryHttpAuthSchemeProvider,
|
|
21
18
|
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
22
19
|
{
|
|
23
20
|
schemeId: "aws.auth#sigv4",
|
|
24
21
|
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
25
|
-
signer: new
|
|
22
|
+
signer: new AwsSdkSigV4Signer(),
|
|
26
23
|
},
|
|
27
24
|
],
|
|
28
|
-
logger: config?.logger ?? new
|
|
29
|
-
protocol: config?.protocol ??
|
|
25
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
30
27
|
protocolSettings: config?.protocolSettings ?? {
|
|
31
28
|
defaultNamespace: "com.amazonaws.serverlessapplicationrepository",
|
|
32
|
-
errorTypeRegistries
|
|
29
|
+
errorTypeRegistries,
|
|
33
30
|
version: "2017-09-08",
|
|
34
31
|
serviceTarget: "ServerlessApplicationRepository",
|
|
35
32
|
},
|
|
36
33
|
serviceId: config?.serviceId ?? "ServerlessApplicationRepository",
|
|
37
|
-
urlParser: config?.urlParser ??
|
|
38
|
-
utf8Decoder: config?.utf8Decoder ??
|
|
39
|
-
utf8Encoder: config?.utf8Encoder ??
|
|
34
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
35
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
36
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
40
37
|
};
|
|
41
38
|
};
|
|
42
|
-
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetApplication$ = exports.DeleteApplication$ = exports.CreateCloudFormationTemplate$ = exports.CreateCloudFormationChangeSet$ = exports.CreateApplicationVersion$ = exports.CreateApplication$ = exports.VersionSummary$ = exports.Version$ = exports.UpdateApplicationResponse$ = exports.UpdateApplicationRequest$ = exports.UnshareApplicationRequest$ = exports.Tag$ = exports.RollbackTrigger$ = exports.RollbackConfiguration$ = exports.PutApplicationPolicyResponse$ = exports.PutApplicationPolicyRequest$ = exports.ParameterValue$ = exports.ParameterDefinition$ = exports.ListApplicationVersionsResponse$ = exports.ListApplicationVersionsRequest$ = exports.ListApplicationsResponse$ = exports.ListApplicationsRequest$ = exports.ListApplicationDependenciesResponse$ = exports.ListApplicationDependenciesRequest$ = exports.GetCloudFormationTemplateResponse$ = exports.GetCloudFormationTemplateRequest$ = exports.GetApplicationResponse$ = exports.GetApplicationRequest$ = exports.GetApplicationPolicyResponse$ = exports.GetApplicationPolicyRequest$ = exports.DeleteApplicationRequest$ = exports.CreateCloudFormationTemplateResponse$ = exports.CreateCloudFormationTemplateRequest$ = exports.CreateCloudFormationChangeSetResponse$ = exports.CreateCloudFormationChangeSetRequest$ = exports.CreateApplicationVersionResponse$ = exports.CreateApplicationVersionRequest$ = exports.CreateApplicationResponse$ = exports.CreateApplicationRequest$ = exports.ApplicationSummary$ = exports.ApplicationPolicyStatement$ = exports.ApplicationDependencySummary$ = exports.errorTypeRegistries = exports.TooManyRequestsException$ = exports.NotFoundException$ = exports.InternalServerErrorException$ = exports.ForbiddenException$ = exports.ConflictException$ = exports.BadRequestException$ = exports.ServerlessApplicationRepositoryServiceException$ = void 0;
|
|
4
|
-
exports.UpdateApplication$ = exports.UnshareApplication$ = exports.PutApplicationPolicy$ = exports.ListApplicationVersions$ = exports.ListApplications$ = exports.ListApplicationDependencies$ = exports.GetCloudFormationTemplate$ = exports.GetApplicationPolicy$ = void 0;
|
|
5
1
|
const _A = "Actions";
|
|
6
2
|
const _ADS = "ApplicationDependencySummary";
|
|
7
3
|
const _AI = "ApplicationId";
|
|
@@ -205,307 +201,350 @@ const _vAU = "verifiedAuthorUrl";
|
|
|
205
201
|
const _va = "value";
|
|
206
202
|
const _ve = "versions";
|
|
207
203
|
const n0 = "com.amazonaws.serverlessapplicationrepository";
|
|
208
|
-
const
|
|
209
|
-
const
|
|
210
|
-
const
|
|
211
|
-
const _s_registry =
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
204
|
+
const { TypeRegistry } = require("@smithy/core/schema");
|
|
205
|
+
const { BadRequestException, ConflictException, ForbiddenException, InternalServerErrorException, NotFoundException, TooManyRequestsException } = require("../models/errors");
|
|
206
|
+
const { ServerlessApplicationRepositoryServiceException } = require("../models/ServerlessApplicationRepositoryServiceException");
|
|
207
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
208
|
+
const ServerlessApplicationRepositoryServiceException$ = [-3, _s, "ServerlessApplicationRepositoryServiceException", 0, [], []];
|
|
209
|
+
exports.ServerlessApplicationRepositoryServiceException$ = ServerlessApplicationRepositoryServiceException$;
|
|
210
|
+
_s_registry.registerError(ServerlessApplicationRepositoryServiceException$, ServerlessApplicationRepositoryServiceException);
|
|
211
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
212
|
+
const BadRequestException$ = [-3, n0, _BRE,
|
|
216
213
|
{ [_e]: _c, [_hE]: 400 },
|
|
217
214
|
[_EC, _M],
|
|
218
215
|
[[0, { [_jN]: _eC }], [0, { [_jN]: _m }]]
|
|
219
216
|
];
|
|
220
|
-
|
|
221
|
-
|
|
217
|
+
exports.BadRequestException$ = BadRequestException$;
|
|
218
|
+
n0_registry.registerError(BadRequestException$, BadRequestException);
|
|
219
|
+
const ConflictException$ = [-3, n0, _CE,
|
|
222
220
|
{ [_e]: _c, [_hE]: 409 },
|
|
223
221
|
[_EC, _M],
|
|
224
222
|
[[0, { [_jN]: _eC }], [0, { [_jN]: _m }]]
|
|
225
223
|
];
|
|
226
|
-
|
|
227
|
-
|
|
224
|
+
exports.ConflictException$ = ConflictException$;
|
|
225
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
226
|
+
const ForbiddenException$ = [-3, n0, _FE,
|
|
228
227
|
{ [_e]: _c, [_hE]: 403 },
|
|
229
228
|
[_EC, _M],
|
|
230
229
|
[[0, { [_jN]: _eC }], [0, { [_jN]: _m }]]
|
|
231
230
|
];
|
|
232
|
-
|
|
233
|
-
|
|
231
|
+
exports.ForbiddenException$ = ForbiddenException$;
|
|
232
|
+
n0_registry.registerError(ForbiddenException$, ForbiddenException);
|
|
233
|
+
const InternalServerErrorException$ = [-3, n0, _ISEE,
|
|
234
234
|
{ [_e]: _se, [_hE]: 500 },
|
|
235
235
|
[_EC, _M],
|
|
236
236
|
[[0, { [_jN]: _eC }], [0, { [_jN]: _m }]]
|
|
237
237
|
];
|
|
238
|
-
|
|
239
|
-
|
|
238
|
+
exports.InternalServerErrorException$ = InternalServerErrorException$;
|
|
239
|
+
n0_registry.registerError(InternalServerErrorException$, InternalServerErrorException);
|
|
240
|
+
const NotFoundException$ = [-3, n0, _NFE,
|
|
240
241
|
{ [_e]: _c, [_hE]: 404 },
|
|
241
242
|
[_EC, _M],
|
|
242
243
|
[[0, { [_jN]: _eC }], [0, { [_jN]: _m }]]
|
|
243
244
|
];
|
|
244
|
-
|
|
245
|
-
|
|
245
|
+
exports.NotFoundException$ = NotFoundException$;
|
|
246
|
+
n0_registry.registerError(NotFoundException$, NotFoundException);
|
|
247
|
+
const TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
246
248
|
{ [_e]: _c, [_hE]: 429 },
|
|
247
249
|
[_EC, _M],
|
|
248
250
|
[[0, { [_jN]: _eC }], [0, { [_jN]: _m }]]
|
|
249
251
|
];
|
|
250
|
-
|
|
252
|
+
exports.TooManyRequestsException$ = TooManyRequestsException$;
|
|
253
|
+
n0_registry.registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
251
254
|
exports.errorTypeRegistries = [
|
|
252
255
|
_s_registry,
|
|
253
256
|
n0_registry,
|
|
254
257
|
];
|
|
255
|
-
|
|
258
|
+
const ApplicationDependencySummary$ = [3, n0, _ADS,
|
|
256
259
|
0,
|
|
257
260
|
[_AI, _SV],
|
|
258
261
|
[[0, { [_jN]: _aI }], [0, { [_jN]: _sV }]], 2
|
|
259
262
|
];
|
|
260
|
-
exports.
|
|
263
|
+
exports.ApplicationDependencySummary$ = ApplicationDependencySummary$;
|
|
264
|
+
const ApplicationPolicyStatement$ = [3, n0, _APS,
|
|
261
265
|
0,
|
|
262
266
|
[_A, _P, _POID, _SI],
|
|
263
267
|
[[64 | 0, { [_jN]: _a }], [64 | 0, { [_jN]: _p }], [64 | 0, { [_jN]: _pOID }], [0, { [_jN]: _sI }]], 2
|
|
264
268
|
];
|
|
265
|
-
exports.
|
|
269
|
+
exports.ApplicationPolicyStatement$ = ApplicationPolicyStatement$;
|
|
270
|
+
const ApplicationSummary$ = [3, n0, _AS,
|
|
266
271
|
0,
|
|
267
272
|
[_AI, _Au, _D, _N, _CT, _HPU, _L, _SLI],
|
|
268
273
|
[[0, { [_jN]: _aI }], [0, { [_jN]: _au }], [0, { [_jN]: _d }], [0, { [_jN]: _n }], [0, { [_jN]: _cT }], [0, { [_jN]: _hPU }], [64 | 0, { [_jN]: _l }], [0, { [_jN]: _sLI }]], 4
|
|
269
274
|
];
|
|
270
|
-
exports.
|
|
275
|
+
exports.ApplicationSummary$ = ApplicationSummary$;
|
|
276
|
+
const CreateApplicationRequest$ = [3, n0, _CAR,
|
|
271
277
|
0,
|
|
272
278
|
[_Au, _D, _N, _HPU, _L, _LB, _LU, _RB, _RU, _SV, _SCAU, _SCU, _SLI, _TB, _TU],
|
|
273
279
|
[[0, { [_jN]: _au }], [0, { [_jN]: _d }], [0, { [_jN]: _n }], [0, { [_jN]: _hPU }], [64 | 0, { [_jN]: _l }], [0, { [_jN]: _lB }], [0, { [_jN]: _lU }], [0, { [_jN]: _rB }], [0, { [_jN]: _rU }], [0, { [_jN]: _sV }], [0, { [_jN]: _sCAU }], [0, { [_jN]: _sCU }], [0, { [_jN]: _sLI }], [0, { [_jN]: _tB }], [0, { [_jN]: _tU }]], 3
|
|
274
280
|
];
|
|
275
|
-
exports.
|
|
281
|
+
exports.CreateApplicationRequest$ = CreateApplicationRequest$;
|
|
282
|
+
const CreateApplicationResponse$ = [3, n0, _CARr,
|
|
276
283
|
0,
|
|
277
284
|
[_AI, _Au, _CT, _D, _HPU, _IVA, _L, _LU, _N, _RU, _SLI, _VAU, _V],
|
|
278
|
-
[[0, { [_jN]: _aI }], [0, { [_jN]: _au }], [0, { [_jN]: _cT }], [0, { [_jN]: _d }], [0, { [_jN]: _hPU }], [2, { [_jN]: _iVA }], [64 | 0, { [_jN]: _l }], [0, { [_jN]: _lU }], [0, { [_jN]: _n }], [0, { [_jN]: _rU }], [0, { [_jN]: _sLI }], [0, { [_jN]: _vAU }], [() =>
|
|
285
|
+
[[0, { [_jN]: _aI }], [0, { [_jN]: _au }], [0, { [_jN]: _cT }], [0, { [_jN]: _d }], [0, { [_jN]: _hPU }], [2, { [_jN]: _iVA }], [64 | 0, { [_jN]: _l }], [0, { [_jN]: _lU }], [0, { [_jN]: _n }], [0, { [_jN]: _rU }], [0, { [_jN]: _sLI }], [0, { [_jN]: _vAU }], [() => Version$, { [_jN]: _v }]]
|
|
279
286
|
];
|
|
280
|
-
exports.
|
|
287
|
+
exports.CreateApplicationResponse$ = CreateApplicationResponse$;
|
|
288
|
+
const CreateApplicationVersionRequest$ = [3, n0, _CAVR,
|
|
281
289
|
0,
|
|
282
290
|
[_AI, _SV, _SCAU, _SCU, _TB, _TU],
|
|
283
291
|
[[0, 1], [0, 1], [0, { [_jN]: _sCAU }], [0, { [_jN]: _sCU }], [0, { [_jN]: _tB }], [0, { [_jN]: _tU }]], 2
|
|
284
292
|
];
|
|
285
|
-
exports.
|
|
293
|
+
exports.CreateApplicationVersionRequest$ = CreateApplicationVersionRequest$;
|
|
294
|
+
const CreateApplicationVersionResponse$ = [3, n0, _CAVRr,
|
|
286
295
|
0,
|
|
287
296
|
[_AI, _CT, _PD, _RC, _RS, _SV, _SCAU, _SCU, _TU],
|
|
288
297
|
[[0, { [_jN]: _aI }], [0, { [_jN]: _cT }], [() => __listOfParameterDefinition, { [_jN]: _pD }], [64 | 0, { [_jN]: _rC }], [2, { [_jN]: _rS }], [0, { [_jN]: _sV }], [0, { [_jN]: _sCAU }], [0, { [_jN]: _sCU }], [0, { [_jN]: _tU }]]
|
|
289
298
|
];
|
|
290
|
-
exports.
|
|
299
|
+
exports.CreateApplicationVersionResponse$ = CreateApplicationVersionResponse$;
|
|
300
|
+
const CreateCloudFormationChangeSetRequest$ = [3, n0, _CCFCSR,
|
|
291
301
|
0,
|
|
292
302
|
[_AI, _SN, _C, _CSN, _CTl, _D, _NA, _PO, _RT, _RCo, _SV, _T, _TI],
|
|
293
|
-
[[0, 1], [0, { [_jN]: _sN }], [64 | 0, { [_jN]: _ca }], [0, { [_jN]: _cSN }], [0, { [_jN]: _cTl }], [0, { [_jN]: _d }], [64 | 0, { [_jN]: _nA }], [() => __listOfParameterValue, { [_jN]: _pO }], [64 | 0, { [_jN]: _rT }], [() =>
|
|
303
|
+
[[0, 1], [0, { [_jN]: _sN }], [64 | 0, { [_jN]: _ca }], [0, { [_jN]: _cSN }], [0, { [_jN]: _cTl }], [0, { [_jN]: _d }], [64 | 0, { [_jN]: _nA }], [() => __listOfParameterValue, { [_jN]: _pO }], [64 | 0, { [_jN]: _rT }], [() => RollbackConfiguration$, { [_jN]: _rCo }], [0, { [_jN]: _sV }], [() => __listOfTag, { [_jN]: _t }], [0, { [_jN]: _tI }]], 2
|
|
294
304
|
];
|
|
295
|
-
exports.
|
|
305
|
+
exports.CreateCloudFormationChangeSetRequest$ = CreateCloudFormationChangeSetRequest$;
|
|
306
|
+
const CreateCloudFormationChangeSetResponse$ = [3, n0, _CCFCSRr,
|
|
296
307
|
0,
|
|
297
308
|
[_AI, _CSI, _SV, _SIt],
|
|
298
309
|
[[0, { [_jN]: _aI }], [0, { [_jN]: _cSI }], [0, { [_jN]: _sV }], [0, { [_jN]: _sIt }]]
|
|
299
310
|
];
|
|
300
|
-
exports.
|
|
311
|
+
exports.CreateCloudFormationChangeSetResponse$ = CreateCloudFormationChangeSetResponse$;
|
|
312
|
+
const CreateCloudFormationTemplateRequest$ = [3, n0, _CCFTR,
|
|
301
313
|
0,
|
|
302
314
|
[_AI, _SV],
|
|
303
315
|
[[0, 1], [0, { [_jN]: _sV }]], 1
|
|
304
316
|
];
|
|
305
|
-
exports.
|
|
317
|
+
exports.CreateCloudFormationTemplateRequest$ = CreateCloudFormationTemplateRequest$;
|
|
318
|
+
const CreateCloudFormationTemplateResponse$ = [3, n0, _CCFTRr,
|
|
306
319
|
0,
|
|
307
320
|
[_AI, _CT, _ET, _SV, _S, _TI, _TU],
|
|
308
321
|
[[0, { [_jN]: _aI }], [0, { [_jN]: _cT }], [0, { [_jN]: _eT }], [0, { [_jN]: _sV }], [0, { [_jN]: _st }], [0, { [_jN]: _tI }], [0, { [_jN]: _tU }]]
|
|
309
322
|
];
|
|
310
|
-
exports.
|
|
323
|
+
exports.CreateCloudFormationTemplateResponse$ = CreateCloudFormationTemplateResponse$;
|
|
324
|
+
const DeleteApplicationRequest$ = [3, n0, _DAR,
|
|
311
325
|
0,
|
|
312
326
|
[_AI],
|
|
313
327
|
[[0, 1]], 1
|
|
314
328
|
];
|
|
315
|
-
exports.
|
|
329
|
+
exports.DeleteApplicationRequest$ = DeleteApplicationRequest$;
|
|
330
|
+
const GetApplicationPolicyRequest$ = [3, n0, _GAPR,
|
|
316
331
|
0,
|
|
317
332
|
[_AI],
|
|
318
333
|
[[0, 1]], 1
|
|
319
334
|
];
|
|
320
|
-
exports.
|
|
335
|
+
exports.GetApplicationPolicyRequest$ = GetApplicationPolicyRequest$;
|
|
336
|
+
const GetApplicationPolicyResponse$ = [3, n0, _GAPRe,
|
|
321
337
|
0,
|
|
322
338
|
[_St],
|
|
323
339
|
[[() => __listOfApplicationPolicyStatement, { [_jN]: _sta }]]
|
|
324
340
|
];
|
|
325
|
-
exports.
|
|
341
|
+
exports.GetApplicationPolicyResponse$ = GetApplicationPolicyResponse$;
|
|
342
|
+
const GetApplicationRequest$ = [3, n0, _GAR,
|
|
326
343
|
0,
|
|
327
344
|
[_AI, _SV],
|
|
328
345
|
[[0, 1], [0, { [_hQ]: _sV }]], 1
|
|
329
346
|
];
|
|
330
|
-
exports.
|
|
347
|
+
exports.GetApplicationRequest$ = GetApplicationRequest$;
|
|
348
|
+
const GetApplicationResponse$ = [3, n0, _GARe,
|
|
331
349
|
0,
|
|
332
350
|
[_AI, _Au, _CT, _D, _HPU, _IVA, _L, _LU, _N, _RU, _SLI, _VAU, _V],
|
|
333
|
-
[[0, { [_jN]: _aI }], [0, { [_jN]: _au }], [0, { [_jN]: _cT }], [0, { [_jN]: _d }], [0, { [_jN]: _hPU }], [2, { [_jN]: _iVA }], [64 | 0, { [_jN]: _l }], [0, { [_jN]: _lU }], [0, { [_jN]: _n }], [0, { [_jN]: _rU }], [0, { [_jN]: _sLI }], [0, { [_jN]: _vAU }], [() =>
|
|
351
|
+
[[0, { [_jN]: _aI }], [0, { [_jN]: _au }], [0, { [_jN]: _cT }], [0, { [_jN]: _d }], [0, { [_jN]: _hPU }], [2, { [_jN]: _iVA }], [64 | 0, { [_jN]: _l }], [0, { [_jN]: _lU }], [0, { [_jN]: _n }], [0, { [_jN]: _rU }], [0, { [_jN]: _sLI }], [0, { [_jN]: _vAU }], [() => Version$, { [_jN]: _v }]]
|
|
334
352
|
];
|
|
335
|
-
exports.
|
|
353
|
+
exports.GetApplicationResponse$ = GetApplicationResponse$;
|
|
354
|
+
const GetCloudFormationTemplateRequest$ = [3, n0, _GCFTR,
|
|
336
355
|
0,
|
|
337
356
|
[_AI, _TI],
|
|
338
357
|
[[0, 1], [0, 1]], 2
|
|
339
358
|
];
|
|
340
|
-
exports.
|
|
359
|
+
exports.GetCloudFormationTemplateRequest$ = GetCloudFormationTemplateRequest$;
|
|
360
|
+
const GetCloudFormationTemplateResponse$ = [3, n0, _GCFTRe,
|
|
341
361
|
0,
|
|
342
362
|
[_AI, _CT, _ET, _SV, _S, _TI, _TU],
|
|
343
363
|
[[0, { [_jN]: _aI }], [0, { [_jN]: _cT }], [0, { [_jN]: _eT }], [0, { [_jN]: _sV }], [0, { [_jN]: _st }], [0, { [_jN]: _tI }], [0, { [_jN]: _tU }]]
|
|
344
364
|
];
|
|
345
|
-
exports.
|
|
365
|
+
exports.GetCloudFormationTemplateResponse$ = GetCloudFormationTemplateResponse$;
|
|
366
|
+
const ListApplicationDependenciesRequest$ = [3, n0, _LADR,
|
|
346
367
|
0,
|
|
347
368
|
[_AI, _MI, _NT, _SV],
|
|
348
369
|
[[0, 1], [1, { [_hQ]: _mI }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _sV }]], 1
|
|
349
370
|
];
|
|
350
|
-
exports.
|
|
371
|
+
exports.ListApplicationDependenciesRequest$ = ListApplicationDependenciesRequest$;
|
|
372
|
+
const ListApplicationDependenciesResponse$ = [3, n0, _LADRi,
|
|
351
373
|
0,
|
|
352
374
|
[_De, _NT],
|
|
353
375
|
[[() => __listOfApplicationDependencySummary, { [_jN]: _de }], [0, { [_jN]: _nT }]]
|
|
354
376
|
];
|
|
355
|
-
exports.
|
|
377
|
+
exports.ListApplicationDependenciesResponse$ = ListApplicationDependenciesResponse$;
|
|
378
|
+
const ListApplicationsRequest$ = [3, n0, _LAR,
|
|
356
379
|
0,
|
|
357
380
|
[_MI, _NT],
|
|
358
381
|
[[1, { [_hQ]: _mI }], [0, { [_hQ]: _nT }]]
|
|
359
382
|
];
|
|
360
|
-
exports.
|
|
383
|
+
exports.ListApplicationsRequest$ = ListApplicationsRequest$;
|
|
384
|
+
const ListApplicationsResponse$ = [3, n0, _LARi,
|
|
361
385
|
0,
|
|
362
386
|
[_Ap, _NT],
|
|
363
387
|
[[() => __listOfApplicationSummary, { [_jN]: _ap }], [0, { [_jN]: _nT }]]
|
|
364
388
|
];
|
|
365
|
-
exports.
|
|
389
|
+
exports.ListApplicationsResponse$ = ListApplicationsResponse$;
|
|
390
|
+
const ListApplicationVersionsRequest$ = [3, n0, _LAVR,
|
|
366
391
|
0,
|
|
367
392
|
[_AI, _MI, _NT],
|
|
368
393
|
[[0, 1], [1, { [_hQ]: _mI }], [0, { [_hQ]: _nT }]], 1
|
|
369
394
|
];
|
|
370
|
-
exports.
|
|
395
|
+
exports.ListApplicationVersionsRequest$ = ListApplicationVersionsRequest$;
|
|
396
|
+
const ListApplicationVersionsResponse$ = [3, n0, _LAVRi,
|
|
371
397
|
0,
|
|
372
398
|
[_NT, _Ve],
|
|
373
399
|
[[0, { [_jN]: _nT }], [() => __listOfVersionSummary, { [_jN]: _ve }]]
|
|
374
400
|
];
|
|
375
|
-
exports.
|
|
401
|
+
exports.ListApplicationVersionsResponse$ = ListApplicationVersionsResponse$;
|
|
402
|
+
const ParameterDefinition$ = [3, n0, _PDa,
|
|
376
403
|
0,
|
|
377
404
|
[_N, _RBR, _AP, _AV, _CD, _DV, _D, _ML, _MV, _MLi, _MVi, _NE, _Ty],
|
|
378
405
|
[[0, { [_jN]: _n }], [64 | 0, { [_jN]: _rBR }], [0, { [_jN]: _aP }], [64 | 0, { [_jN]: _aV }], [0, { [_jN]: _cD }], [0, { [_jN]: _dV }], [0, { [_jN]: _d }], [1, { [_jN]: _mL }], [1, { [_jN]: _mV }], [1, { [_jN]: _mLi }], [1, { [_jN]: _mVi }], [2, { [_jN]: _nE }], [0, { [_jN]: _ty }]], 2
|
|
379
406
|
];
|
|
380
|
-
exports.
|
|
407
|
+
exports.ParameterDefinition$ = ParameterDefinition$;
|
|
408
|
+
const ParameterValue$ = [3, n0, _PV,
|
|
381
409
|
0,
|
|
382
410
|
[_N, _Va],
|
|
383
411
|
[[0, { [_jN]: _n }], [0, { [_jN]: _va }]], 2
|
|
384
412
|
];
|
|
385
|
-
exports.
|
|
413
|
+
exports.ParameterValue$ = ParameterValue$;
|
|
414
|
+
const PutApplicationPolicyRequest$ = [3, n0, _PAPR,
|
|
386
415
|
0,
|
|
387
416
|
[_AI, _St],
|
|
388
417
|
[[0, 1], [() => __listOfApplicationPolicyStatement, { [_jN]: _sta }]], 2
|
|
389
418
|
];
|
|
390
|
-
exports.
|
|
419
|
+
exports.PutApplicationPolicyRequest$ = PutApplicationPolicyRequest$;
|
|
420
|
+
const PutApplicationPolicyResponse$ = [3, n0, _PAPRu,
|
|
391
421
|
0,
|
|
392
422
|
[_St],
|
|
393
423
|
[[() => __listOfApplicationPolicyStatement, { [_jN]: _sta }]]
|
|
394
424
|
];
|
|
395
|
-
exports.
|
|
425
|
+
exports.PutApplicationPolicyResponse$ = PutApplicationPolicyResponse$;
|
|
426
|
+
const RollbackConfiguration$ = [3, n0, _RCo,
|
|
396
427
|
0,
|
|
397
428
|
[_MTIM, _RTo],
|
|
398
429
|
[[1, { [_jN]: _mTIM }], [() => __listOfRollbackTrigger, { [_jN]: _rTo }]]
|
|
399
430
|
];
|
|
400
|
-
exports.
|
|
431
|
+
exports.RollbackConfiguration$ = RollbackConfiguration$;
|
|
432
|
+
const RollbackTrigger$ = [3, n0, _RTol,
|
|
401
433
|
0,
|
|
402
434
|
[_Ar, _Ty],
|
|
403
435
|
[[0, { [_jN]: _ar }], [0, { [_jN]: _ty }]], 2
|
|
404
436
|
];
|
|
405
|
-
exports.
|
|
437
|
+
exports.RollbackTrigger$ = RollbackTrigger$;
|
|
438
|
+
const Tag$ = [3, n0, _Ta,
|
|
406
439
|
0,
|
|
407
440
|
[_K, _Va],
|
|
408
441
|
[[0, { [_jN]: _k }], [0, { [_jN]: _va }]], 2
|
|
409
442
|
];
|
|
410
|
-
exports.
|
|
443
|
+
exports.Tag$ = Tag$;
|
|
444
|
+
const UnshareApplicationRequest$ = [3, n0, _UAR,
|
|
411
445
|
0,
|
|
412
446
|
[_AI, _OI],
|
|
413
447
|
[[0, 1], [0, { [_jN]: _oI }]], 2
|
|
414
448
|
];
|
|
415
|
-
exports.
|
|
449
|
+
exports.UnshareApplicationRequest$ = UnshareApplicationRequest$;
|
|
450
|
+
const UpdateApplicationRequest$ = [3, n0, _UARp,
|
|
416
451
|
0,
|
|
417
452
|
[_AI, _Au, _D, _HPU, _L, _RB, _RU],
|
|
418
453
|
[[0, 1], [0, { [_jN]: _au }], [0, { [_jN]: _d }], [0, { [_jN]: _hPU }], [64 | 0, { [_jN]: _l }], [0, { [_jN]: _rB }], [0, { [_jN]: _rU }]], 1
|
|
419
454
|
];
|
|
420
|
-
exports.
|
|
455
|
+
exports.UpdateApplicationRequest$ = UpdateApplicationRequest$;
|
|
456
|
+
const UpdateApplicationResponse$ = [3, n0, _UARpd,
|
|
421
457
|
0,
|
|
422
458
|
[_AI, _Au, _CT, _D, _HPU, _IVA, _L, _LU, _N, _RU, _SLI, _VAU, _V],
|
|
423
|
-
[[0, { [_jN]: _aI }], [0, { [_jN]: _au }], [0, { [_jN]: _cT }], [0, { [_jN]: _d }], [0, { [_jN]: _hPU }], [2, { [_jN]: _iVA }], [64 | 0, { [_jN]: _l }], [0, { [_jN]: _lU }], [0, { [_jN]: _n }], [0, { [_jN]: _rU }], [0, { [_jN]: _sLI }], [0, { [_jN]: _vAU }], [() =>
|
|
459
|
+
[[0, { [_jN]: _aI }], [0, { [_jN]: _au }], [0, { [_jN]: _cT }], [0, { [_jN]: _d }], [0, { [_jN]: _hPU }], [2, { [_jN]: _iVA }], [64 | 0, { [_jN]: _l }], [0, { [_jN]: _lU }], [0, { [_jN]: _n }], [0, { [_jN]: _rU }], [0, { [_jN]: _sLI }], [0, { [_jN]: _vAU }], [() => Version$, { [_jN]: _v }]]
|
|
424
460
|
];
|
|
425
|
-
exports.
|
|
461
|
+
exports.UpdateApplicationResponse$ = UpdateApplicationResponse$;
|
|
462
|
+
const Version$ = [3, n0, _V,
|
|
426
463
|
0,
|
|
427
464
|
[_AI, _CT, _PD, _RC, _RS, _SV, _TU, _SCAU, _SCU],
|
|
428
465
|
[[0, { [_jN]: _aI }], [0, { [_jN]: _cT }], [() => __listOfParameterDefinition, { [_jN]: _pD }], [64 | 0, { [_jN]: _rC }], [2, { [_jN]: _rS }], [0, { [_jN]: _sV }], [0, { [_jN]: _tU }], [0, { [_jN]: _sCAU }], [0, { [_jN]: _sCU }]], 7
|
|
429
466
|
];
|
|
430
|
-
exports.
|
|
467
|
+
exports.Version$ = Version$;
|
|
468
|
+
const VersionSummary$ = [3, n0, _VS,
|
|
431
469
|
0,
|
|
432
470
|
[_AI, _CT, _SV, _SCU],
|
|
433
471
|
[[0, { [_jN]: _aI }], [0, { [_jN]: _cT }], [0, { [_jN]: _sV }], [0, { [_jN]: _sCU }]], 3
|
|
434
472
|
];
|
|
473
|
+
exports.VersionSummary$ = VersionSummary$;
|
|
435
474
|
var __Unit = "unit";
|
|
436
475
|
var __listOf__string = 64 | 0;
|
|
437
476
|
var __listOfApplicationDependencySummary = [1, n0, _lOADS,
|
|
438
|
-
0, [() =>
|
|
477
|
+
0, [() => ApplicationDependencySummary$,
|
|
439
478
|
0]
|
|
440
479
|
];
|
|
441
480
|
var __listOfApplicationPolicyStatement = [1, n0, _lOAPS,
|
|
442
|
-
0, [() =>
|
|
481
|
+
0, [() => ApplicationPolicyStatement$,
|
|
443
482
|
0]
|
|
444
483
|
];
|
|
445
484
|
var __listOfApplicationSummary = [1, n0, _lOAS,
|
|
446
|
-
0, [() =>
|
|
485
|
+
0, [() => ApplicationSummary$,
|
|
447
486
|
0]
|
|
448
487
|
];
|
|
449
488
|
var __listOfCapability = 64 | 0;
|
|
450
489
|
var __listOfParameterDefinition = [1, n0, _lOPD,
|
|
451
|
-
0, [() =>
|
|
490
|
+
0, [() => ParameterDefinition$,
|
|
452
491
|
0]
|
|
453
492
|
];
|
|
454
493
|
var __listOfParameterValue = [1, n0, _lOPV,
|
|
455
|
-
0, [() =>
|
|
494
|
+
0, [() => ParameterValue$,
|
|
456
495
|
0]
|
|
457
496
|
];
|
|
458
497
|
var __listOfRollbackTrigger = [1, n0, _lORT,
|
|
459
|
-
0, [() =>
|
|
498
|
+
0, [() => RollbackTrigger$,
|
|
460
499
|
0]
|
|
461
500
|
];
|
|
462
501
|
var __listOfTag = [1, n0, _lOT,
|
|
463
|
-
0, [() =>
|
|
502
|
+
0, [() => Tag$,
|
|
464
503
|
0]
|
|
465
504
|
];
|
|
466
505
|
var __listOfVersionSummary = [1, n0, _lOVS,
|
|
467
|
-
0, [() =>
|
|
506
|
+
0, [() => VersionSummary$,
|
|
468
507
|
0]
|
|
469
508
|
];
|
|
470
509
|
exports.CreateApplication$ = [9, n0, _CA,
|
|
471
|
-
{ [_h]: ["POST", "/applications", 201] }, () =>
|
|
510
|
+
{ [_h]: ["POST", "/applications", 201] }, () => CreateApplicationRequest$, () => CreateApplicationResponse$
|
|
472
511
|
];
|
|
473
512
|
exports.CreateApplicationVersion$ = [9, n0, _CAV,
|
|
474
|
-
{ [_h]: ["PUT", "/applications/{ApplicationId}/versions/{SemanticVersion}", 201] }, () =>
|
|
513
|
+
{ [_h]: ["PUT", "/applications/{ApplicationId}/versions/{SemanticVersion}", 201] }, () => CreateApplicationVersionRequest$, () => CreateApplicationVersionResponse$
|
|
475
514
|
];
|
|
476
515
|
exports.CreateCloudFormationChangeSet$ = [9, n0, _CCFCS,
|
|
477
|
-
{ [_h]: ["POST", "/applications/{ApplicationId}/changesets", 201] }, () =>
|
|
516
|
+
{ [_h]: ["POST", "/applications/{ApplicationId}/changesets", 201] }, () => CreateCloudFormationChangeSetRequest$, () => CreateCloudFormationChangeSetResponse$
|
|
478
517
|
];
|
|
479
518
|
exports.CreateCloudFormationTemplate$ = [9, n0, _CCFT,
|
|
480
|
-
{ [_h]: ["POST", "/applications/{ApplicationId}/templates", 201] }, () =>
|
|
519
|
+
{ [_h]: ["POST", "/applications/{ApplicationId}/templates", 201] }, () => CreateCloudFormationTemplateRequest$, () => CreateCloudFormationTemplateResponse$
|
|
481
520
|
];
|
|
482
521
|
exports.DeleteApplication$ = [9, n0, _DA,
|
|
483
|
-
{ [_h]: ["DELETE", "/applications/{ApplicationId}", 204] }, () =>
|
|
522
|
+
{ [_h]: ["DELETE", "/applications/{ApplicationId}", 204] }, () => DeleteApplicationRequest$, () => __Unit
|
|
484
523
|
];
|
|
485
524
|
exports.GetApplication$ = [9, n0, _GA,
|
|
486
|
-
{ [_h]: ["GET", "/applications/{ApplicationId}", 200] }, () =>
|
|
525
|
+
{ [_h]: ["GET", "/applications/{ApplicationId}", 200] }, () => GetApplicationRequest$, () => GetApplicationResponse$
|
|
487
526
|
];
|
|
488
527
|
exports.GetApplicationPolicy$ = [9, n0, _GAP,
|
|
489
|
-
{ [_h]: ["GET", "/applications/{ApplicationId}/policy", 200] }, () =>
|
|
528
|
+
{ [_h]: ["GET", "/applications/{ApplicationId}/policy", 200] }, () => GetApplicationPolicyRequest$, () => GetApplicationPolicyResponse$
|
|
490
529
|
];
|
|
491
530
|
exports.GetCloudFormationTemplate$ = [9, n0, _GCFT,
|
|
492
|
-
{ [_h]: ["GET", "/applications/{ApplicationId}/templates/{TemplateId}", 200] }, () =>
|
|
531
|
+
{ [_h]: ["GET", "/applications/{ApplicationId}/templates/{TemplateId}", 200] }, () => GetCloudFormationTemplateRequest$, () => GetCloudFormationTemplateResponse$
|
|
493
532
|
];
|
|
494
533
|
exports.ListApplicationDependencies$ = [9, n0, _LAD,
|
|
495
|
-
{ [_h]: ["GET", "/applications/{ApplicationId}/dependencies", 200] }, () =>
|
|
534
|
+
{ [_h]: ["GET", "/applications/{ApplicationId}/dependencies", 200] }, () => ListApplicationDependenciesRequest$, () => ListApplicationDependenciesResponse$
|
|
496
535
|
];
|
|
497
536
|
exports.ListApplications$ = [9, n0, _LA,
|
|
498
|
-
{ [_h]: ["GET", "/applications", 200] }, () =>
|
|
537
|
+
{ [_h]: ["GET", "/applications", 200] }, () => ListApplicationsRequest$, () => ListApplicationsResponse$
|
|
499
538
|
];
|
|
500
539
|
exports.ListApplicationVersions$ = [9, n0, _LAV,
|
|
501
|
-
{ [_h]: ["GET", "/applications/{ApplicationId}/versions", 200] }, () =>
|
|
540
|
+
{ [_h]: ["GET", "/applications/{ApplicationId}/versions", 200] }, () => ListApplicationVersionsRequest$, () => ListApplicationVersionsResponse$
|
|
502
541
|
];
|
|
503
542
|
exports.PutApplicationPolicy$ = [9, n0, _PAP,
|
|
504
|
-
{ [_h]: ["PUT", "/applications/{ApplicationId}/policy", 200] }, () =>
|
|
543
|
+
{ [_h]: ["PUT", "/applications/{ApplicationId}/policy", 200] }, () => PutApplicationPolicyRequest$, () => PutApplicationPolicyResponse$
|
|
505
544
|
];
|
|
506
545
|
exports.UnshareApplication$ = [9, n0, _UA,
|
|
507
|
-
{ [_h]: ["POST", "/applications/{ApplicationId}/unshare", 204] }, () =>
|
|
546
|
+
{ [_h]: ["POST", "/applications/{ApplicationId}/unshare", 204] }, () => UnshareApplicationRequest$, () => __Unit
|
|
508
547
|
];
|
|
509
548
|
exports.UpdateApplication$ = [9, n0, _UAp,
|
|
510
|
-
{ [_h]: ["PATCH", "/applications/{ApplicationId}", 200] }, () =>
|
|
549
|
+
{ [_h]: ["PATCH", "/applications/{ApplicationId}", 200] }, () => UpdateApplicationRequest$, () => UpdateApplicationResponse$
|
|
511
550
|
];
|