@aws-sdk/client-serverlessapplicationrepository 3.987.0 → 3.989.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 +33 -679
- package/dist-cjs/models/ServerlessApplicationRepositoryServiceException.js +12 -0
- package/dist-cjs/models/errors.js +106 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +511 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +52 -46
- package/dist-types/schemas/schemas_0.d.ts +14 -7
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -7
- package/package.json +13 -13
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ServerlessApplicationRepositoryServiceException = exports.__ServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
+
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
+
class ServerlessApplicationRepositoryServiceException extends smithy_client_1.ServiceException {
|
|
7
|
+
constructor(options) {
|
|
8
|
+
super(options);
|
|
9
|
+
Object.setPrototypeOf(this, ServerlessApplicationRepositoryServiceException.prototype);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
exports.ServerlessApplicationRepositoryServiceException = ServerlessApplicationRepositoryServiceException;
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.NotFoundException = exports.TooManyRequestsException = exports.InternalServerErrorException = exports.ForbiddenException = exports.ConflictException = exports.BadRequestException = void 0;
|
|
4
|
+
const ServerlessApplicationRepositoryServiceException_1 = require("./ServerlessApplicationRepositoryServiceException");
|
|
5
|
+
class BadRequestException extends ServerlessApplicationRepositoryServiceException_1.ServerlessApplicationRepositoryServiceException {
|
|
6
|
+
name = "BadRequestException";
|
|
7
|
+
$fault = "client";
|
|
8
|
+
ErrorCode;
|
|
9
|
+
Message;
|
|
10
|
+
constructor(opts) {
|
|
11
|
+
super({
|
|
12
|
+
name: "BadRequestException",
|
|
13
|
+
$fault: "client",
|
|
14
|
+
...opts,
|
|
15
|
+
});
|
|
16
|
+
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
17
|
+
this.ErrorCode = opts.ErrorCode;
|
|
18
|
+
this.Message = opts.Message;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
exports.BadRequestException = BadRequestException;
|
|
22
|
+
class ConflictException extends ServerlessApplicationRepositoryServiceException_1.ServerlessApplicationRepositoryServiceException {
|
|
23
|
+
name = "ConflictException";
|
|
24
|
+
$fault = "client";
|
|
25
|
+
ErrorCode;
|
|
26
|
+
Message;
|
|
27
|
+
constructor(opts) {
|
|
28
|
+
super({
|
|
29
|
+
name: "ConflictException",
|
|
30
|
+
$fault: "client",
|
|
31
|
+
...opts,
|
|
32
|
+
});
|
|
33
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
34
|
+
this.ErrorCode = opts.ErrorCode;
|
|
35
|
+
this.Message = opts.Message;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
exports.ConflictException = ConflictException;
|
|
39
|
+
class ForbiddenException extends ServerlessApplicationRepositoryServiceException_1.ServerlessApplicationRepositoryServiceException {
|
|
40
|
+
name = "ForbiddenException";
|
|
41
|
+
$fault = "client";
|
|
42
|
+
ErrorCode;
|
|
43
|
+
Message;
|
|
44
|
+
constructor(opts) {
|
|
45
|
+
super({
|
|
46
|
+
name: "ForbiddenException",
|
|
47
|
+
$fault: "client",
|
|
48
|
+
...opts,
|
|
49
|
+
});
|
|
50
|
+
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
51
|
+
this.ErrorCode = opts.ErrorCode;
|
|
52
|
+
this.Message = opts.Message;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
exports.ForbiddenException = ForbiddenException;
|
|
56
|
+
class InternalServerErrorException extends ServerlessApplicationRepositoryServiceException_1.ServerlessApplicationRepositoryServiceException {
|
|
57
|
+
name = "InternalServerErrorException";
|
|
58
|
+
$fault = "server";
|
|
59
|
+
ErrorCode;
|
|
60
|
+
Message;
|
|
61
|
+
constructor(opts) {
|
|
62
|
+
super({
|
|
63
|
+
name: "InternalServerErrorException",
|
|
64
|
+
$fault: "server",
|
|
65
|
+
...opts,
|
|
66
|
+
});
|
|
67
|
+
Object.setPrototypeOf(this, InternalServerErrorException.prototype);
|
|
68
|
+
this.ErrorCode = opts.ErrorCode;
|
|
69
|
+
this.Message = opts.Message;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
exports.InternalServerErrorException = InternalServerErrorException;
|
|
73
|
+
class TooManyRequestsException extends ServerlessApplicationRepositoryServiceException_1.ServerlessApplicationRepositoryServiceException {
|
|
74
|
+
name = "TooManyRequestsException";
|
|
75
|
+
$fault = "client";
|
|
76
|
+
ErrorCode;
|
|
77
|
+
Message;
|
|
78
|
+
constructor(opts) {
|
|
79
|
+
super({
|
|
80
|
+
name: "TooManyRequestsException",
|
|
81
|
+
$fault: "client",
|
|
82
|
+
...opts,
|
|
83
|
+
});
|
|
84
|
+
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
85
|
+
this.ErrorCode = opts.ErrorCode;
|
|
86
|
+
this.Message = opts.Message;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
exports.TooManyRequestsException = TooManyRequestsException;
|
|
90
|
+
class NotFoundException extends ServerlessApplicationRepositoryServiceException_1.ServerlessApplicationRepositoryServiceException {
|
|
91
|
+
name = "NotFoundException";
|
|
92
|
+
$fault = "client";
|
|
93
|
+
ErrorCode;
|
|
94
|
+
Message;
|
|
95
|
+
constructor(opts) {
|
|
96
|
+
super({
|
|
97
|
+
name: "NotFoundException",
|
|
98
|
+
$fault: "client",
|
|
99
|
+
...opts,
|
|
100
|
+
});
|
|
101
|
+
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
102
|
+
this.ErrorCode = opts.ErrorCode;
|
|
103
|
+
this.Message = opts.Message;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
exports.NotFoundException = NotFoundException;
|
|
@@ -9,6 +9,7 @@ const util_base64_1 = require("@smithy/util-base64");
|
|
|
9
9
|
const util_utf8_1 = require("@smithy/util-utf8");
|
|
10
10
|
const httpAuthSchemeProvider_1 = require("./auth/httpAuthSchemeProvider");
|
|
11
11
|
const endpointResolver_1 = require("./endpoint/endpointResolver");
|
|
12
|
+
const schemas_0_1 = require("./schemas/schemas_0");
|
|
12
13
|
const getRuntimeConfig = (config) => {
|
|
13
14
|
return {
|
|
14
15
|
apiVersion: "2017-09-08",
|
|
@@ -29,6 +30,7 @@ const getRuntimeConfig = (config) => {
|
|
|
29
30
|
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
31
|
protocolSettings: config?.protocolSettings ?? {
|
|
31
32
|
defaultNamespace: "com.amazonaws.serverlessapplicationrepository",
|
|
33
|
+
errorTypeRegistries: schemas_0_1.errorTypeRegistries,
|
|
32
34
|
version: "2017-09-08",
|
|
33
35
|
serviceTarget: "ServerlessApplicationRepository",
|
|
34
36
|
},
|
|
@@ -0,0 +1,511 @@
|
|
|
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
|
+
const _A = "Actions";
|
|
6
|
+
const _ADS = "ApplicationDependencySummary";
|
|
7
|
+
const _AI = "ApplicationId";
|
|
8
|
+
const _AP = "AllowedPattern";
|
|
9
|
+
const _APS = "ApplicationPolicyStatement";
|
|
10
|
+
const _AS = "ApplicationSummary";
|
|
11
|
+
const _AV = "AllowedValues";
|
|
12
|
+
const _Ap = "Applications";
|
|
13
|
+
const _Ar = "Arn";
|
|
14
|
+
const _Au = "Author";
|
|
15
|
+
const _BRE = "BadRequestException";
|
|
16
|
+
const _C = "Capabilities";
|
|
17
|
+
const _CA = "CreateApplication";
|
|
18
|
+
const _CAR = "CreateApplicationRequest";
|
|
19
|
+
const _CARr = "CreateApplicationResponse";
|
|
20
|
+
const _CAV = "CreateApplicationVersion";
|
|
21
|
+
const _CAVR = "CreateApplicationVersionRequest";
|
|
22
|
+
const _CAVRr = "CreateApplicationVersionResponse";
|
|
23
|
+
const _CCFCS = "CreateCloudFormationChangeSet";
|
|
24
|
+
const _CCFCSR = "CreateCloudFormationChangeSetRequest";
|
|
25
|
+
const _CCFCSRr = "CreateCloudFormationChangeSetResponse";
|
|
26
|
+
const _CCFT = "CreateCloudFormationTemplate";
|
|
27
|
+
const _CCFTR = "CreateCloudFormationTemplateRequest";
|
|
28
|
+
const _CCFTRr = "CreateCloudFormationTemplateResponse";
|
|
29
|
+
const _CD = "ConstraintDescription";
|
|
30
|
+
const _CE = "ConflictException";
|
|
31
|
+
const _CSI = "ChangeSetId";
|
|
32
|
+
const _CSN = "ChangeSetName";
|
|
33
|
+
const _CT = "CreationTime";
|
|
34
|
+
const _CTl = "ClientToken";
|
|
35
|
+
const _D = "Description";
|
|
36
|
+
const _DA = "DeleteApplication";
|
|
37
|
+
const _DAR = "DeleteApplicationRequest";
|
|
38
|
+
const _DV = "DefaultValue";
|
|
39
|
+
const _De = "Dependencies";
|
|
40
|
+
const _EC = "ErrorCode";
|
|
41
|
+
const _ET = "ExpirationTime";
|
|
42
|
+
const _FE = "ForbiddenException";
|
|
43
|
+
const _GA = "GetApplication";
|
|
44
|
+
const _GAP = "GetApplicationPolicy";
|
|
45
|
+
const _GAPR = "GetApplicationPolicyRequest";
|
|
46
|
+
const _GAPRe = "GetApplicationPolicyResponse";
|
|
47
|
+
const _GAR = "GetApplicationRequest";
|
|
48
|
+
const _GARe = "GetApplicationResponse";
|
|
49
|
+
const _GCFT = "GetCloudFormationTemplate";
|
|
50
|
+
const _GCFTR = "GetCloudFormationTemplateRequest";
|
|
51
|
+
const _GCFTRe = "GetCloudFormationTemplateResponse";
|
|
52
|
+
const _HPU = "HomePageUrl";
|
|
53
|
+
const _ISEE = "InternalServerErrorException";
|
|
54
|
+
const _IVA = "IsVerifiedAuthor";
|
|
55
|
+
const _K = "Key";
|
|
56
|
+
const _L = "Labels";
|
|
57
|
+
const _LA = "ListApplications";
|
|
58
|
+
const _LAD = "ListApplicationDependencies";
|
|
59
|
+
const _LADR = "ListApplicationDependenciesRequest";
|
|
60
|
+
const _LADRi = "ListApplicationDependenciesResponse";
|
|
61
|
+
const _LAR = "ListApplicationsRequest";
|
|
62
|
+
const _LARi = "ListApplicationsResponse";
|
|
63
|
+
const _LAV = "ListApplicationVersions";
|
|
64
|
+
const _LAVR = "ListApplicationVersionsRequest";
|
|
65
|
+
const _LAVRi = "ListApplicationVersionsResponse";
|
|
66
|
+
const _LB = "LicenseBody";
|
|
67
|
+
const _LU = "LicenseUrl";
|
|
68
|
+
const _M = "Message";
|
|
69
|
+
const _MI = "MaxItems";
|
|
70
|
+
const _ML = "MaxLength";
|
|
71
|
+
const _MLi = "MinLength";
|
|
72
|
+
const _MTIM = "MonitoringTimeInMinutes";
|
|
73
|
+
const _MV = "MaxValue";
|
|
74
|
+
const _MVi = "MinValue";
|
|
75
|
+
const _N = "Name";
|
|
76
|
+
const _NA = "NotificationArns";
|
|
77
|
+
const _NE = "NoEcho";
|
|
78
|
+
const _NFE = "NotFoundException";
|
|
79
|
+
const _NT = "NextToken";
|
|
80
|
+
const _OI = "OrganizationId";
|
|
81
|
+
const _P = "Principals";
|
|
82
|
+
const _PAP = "PutApplicationPolicy";
|
|
83
|
+
const _PAPR = "PutApplicationPolicyRequest";
|
|
84
|
+
const _PAPRu = "PutApplicationPolicyResponse";
|
|
85
|
+
const _PD = "ParameterDefinitions";
|
|
86
|
+
const _PDa = "ParameterDefinition";
|
|
87
|
+
const _PO = "ParameterOverrides";
|
|
88
|
+
const _POID = "PrincipalOrgIDs";
|
|
89
|
+
const _PV = "ParameterValue";
|
|
90
|
+
const _RB = "ReadmeBody";
|
|
91
|
+
const _RBR = "ReferencedByResources";
|
|
92
|
+
const _RC = "RequiredCapabilities";
|
|
93
|
+
const _RCo = "RollbackConfiguration";
|
|
94
|
+
const _RS = "ResourcesSupported";
|
|
95
|
+
const _RT = "ResourceTypes";
|
|
96
|
+
const _RTo = "RollbackTriggers";
|
|
97
|
+
const _RTol = "RollbackTrigger";
|
|
98
|
+
const _RU = "ReadmeUrl";
|
|
99
|
+
const _S = "Status";
|
|
100
|
+
const _SCAU = "SourceCodeArchiveUrl";
|
|
101
|
+
const _SCU = "SourceCodeUrl";
|
|
102
|
+
const _SI = "StatementId";
|
|
103
|
+
const _SIt = "StackId";
|
|
104
|
+
const _SLI = "SpdxLicenseId";
|
|
105
|
+
const _SN = "StackName";
|
|
106
|
+
const _SV = "SemanticVersion";
|
|
107
|
+
const _St = "Statements";
|
|
108
|
+
const _T = "Tags";
|
|
109
|
+
const _TB = "TemplateBody";
|
|
110
|
+
const _TI = "TemplateId";
|
|
111
|
+
const _TMRE = "TooManyRequestsException";
|
|
112
|
+
const _TU = "TemplateUrl";
|
|
113
|
+
const _Ta = "Tag";
|
|
114
|
+
const _Ty = "Type";
|
|
115
|
+
const _UA = "UnshareApplication";
|
|
116
|
+
const _UAR = "UnshareApplicationRequest";
|
|
117
|
+
const _UARp = "UpdateApplicationRequest";
|
|
118
|
+
const _UARpd = "UpdateApplicationResponse";
|
|
119
|
+
const _UAp = "UpdateApplication";
|
|
120
|
+
const _V = "Version";
|
|
121
|
+
const _VAU = "VerifiedAuthorUrl";
|
|
122
|
+
const _VS = "VersionSummary";
|
|
123
|
+
const _Va = "Value";
|
|
124
|
+
const _Ve = "Versions";
|
|
125
|
+
const _a = "actions";
|
|
126
|
+
const _aI = "applicationId";
|
|
127
|
+
const _aP = "allowedPattern";
|
|
128
|
+
const _aV = "allowedValues";
|
|
129
|
+
const _ap = "applications";
|
|
130
|
+
const _ar = "arn";
|
|
131
|
+
const _au = "author";
|
|
132
|
+
const _c = "client";
|
|
133
|
+
const _cD = "constraintDescription";
|
|
134
|
+
const _cSI = "changeSetId";
|
|
135
|
+
const _cSN = "changeSetName";
|
|
136
|
+
const _cT = "creationTime";
|
|
137
|
+
const _cTl = "clientToken";
|
|
138
|
+
const _ca = "capabilities";
|
|
139
|
+
const _d = "description";
|
|
140
|
+
const _dV = "defaultValue";
|
|
141
|
+
const _de = "dependencies";
|
|
142
|
+
const _e = "error";
|
|
143
|
+
const _eC = "errorCode";
|
|
144
|
+
const _eT = "expirationTime";
|
|
145
|
+
const _h = "http";
|
|
146
|
+
const _hE = "httpError";
|
|
147
|
+
const _hPU = "homePageUrl";
|
|
148
|
+
const _hQ = "httpQuery";
|
|
149
|
+
const _iVA = "isVerifiedAuthor";
|
|
150
|
+
const _jN = "jsonName";
|
|
151
|
+
const _k = "key";
|
|
152
|
+
const _l = "labels";
|
|
153
|
+
const _lB = "licenseBody";
|
|
154
|
+
const _lOADS = "__listOfApplicationDependencySummary";
|
|
155
|
+
const _lOAPS = "__listOfApplicationPolicyStatement";
|
|
156
|
+
const _lOAS = "__listOfApplicationSummary";
|
|
157
|
+
const _lOPD = "__listOfParameterDefinition";
|
|
158
|
+
const _lOPV = "__listOfParameterValue";
|
|
159
|
+
const _lORT = "__listOfRollbackTrigger";
|
|
160
|
+
const _lOT = "__listOfTag";
|
|
161
|
+
const _lOVS = "__listOfVersionSummary";
|
|
162
|
+
const _lU = "licenseUrl";
|
|
163
|
+
const _m = "message";
|
|
164
|
+
const _mI = "maxItems";
|
|
165
|
+
const _mL = "maxLength";
|
|
166
|
+
const _mLi = "minLength";
|
|
167
|
+
const _mTIM = "monitoringTimeInMinutes";
|
|
168
|
+
const _mV = "maxValue";
|
|
169
|
+
const _mVi = "minValue";
|
|
170
|
+
const _n = "name";
|
|
171
|
+
const _nA = "notificationArns";
|
|
172
|
+
const _nE = "noEcho";
|
|
173
|
+
const _nT = "nextToken";
|
|
174
|
+
const _oI = "organizationId";
|
|
175
|
+
const _p = "principals";
|
|
176
|
+
const _pD = "parameterDefinitions";
|
|
177
|
+
const _pO = "parameterOverrides";
|
|
178
|
+
const _pOID = "principalOrgIDs";
|
|
179
|
+
const _rB = "readmeBody";
|
|
180
|
+
const _rBR = "referencedByResources";
|
|
181
|
+
const _rC = "requiredCapabilities";
|
|
182
|
+
const _rCo = "rollbackConfiguration";
|
|
183
|
+
const _rS = "resourcesSupported";
|
|
184
|
+
const _rT = "resourceTypes";
|
|
185
|
+
const _rTo = "rollbackTriggers";
|
|
186
|
+
const _rU = "readmeUrl";
|
|
187
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.serverlessapplicationrepository";
|
|
188
|
+
const _sCAU = "sourceCodeArchiveUrl";
|
|
189
|
+
const _sCU = "sourceCodeUrl";
|
|
190
|
+
const _sI = "statementId";
|
|
191
|
+
const _sIt = "stackId";
|
|
192
|
+
const _sLI = "spdxLicenseId";
|
|
193
|
+
const _sN = "stackName";
|
|
194
|
+
const _sV = "semanticVersion";
|
|
195
|
+
const _se = "server";
|
|
196
|
+
const _st = "status";
|
|
197
|
+
const _sta = "statements";
|
|
198
|
+
const _t = "tags";
|
|
199
|
+
const _tB = "templateBody";
|
|
200
|
+
const _tI = "templateId";
|
|
201
|
+
const _tU = "templateUrl";
|
|
202
|
+
const _ty = "type";
|
|
203
|
+
const _v = "version";
|
|
204
|
+
const _vAU = "verifiedAuthorUrl";
|
|
205
|
+
const _va = "value";
|
|
206
|
+
const _ve = "versions";
|
|
207
|
+
const n0 = "com.amazonaws.serverlessapplicationrepository";
|
|
208
|
+
const schema_1 = require("@smithy/core/schema");
|
|
209
|
+
const errors_1 = require("../models/errors");
|
|
210
|
+
const ServerlessApplicationRepositoryServiceException_1 = require("../models/ServerlessApplicationRepositoryServiceException");
|
|
211
|
+
const _s_registry = schema_1.TypeRegistry.for(_s);
|
|
212
|
+
exports.ServerlessApplicationRepositoryServiceException$ = [-3, _s, "ServerlessApplicationRepositoryServiceException", 0, [], []];
|
|
213
|
+
_s_registry.registerError(exports.ServerlessApplicationRepositoryServiceException$, ServerlessApplicationRepositoryServiceException_1.ServerlessApplicationRepositoryServiceException);
|
|
214
|
+
const n0_registry = schema_1.TypeRegistry.for(n0);
|
|
215
|
+
exports.BadRequestException$ = [-3, n0, _BRE,
|
|
216
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
217
|
+
[_EC, _M],
|
|
218
|
+
[[0, { [_jN]: _eC }], [0, { [_jN]: _m }]]
|
|
219
|
+
];
|
|
220
|
+
n0_registry.registerError(exports.BadRequestException$, errors_1.BadRequestException);
|
|
221
|
+
exports.ConflictException$ = [-3, n0, _CE,
|
|
222
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
223
|
+
[_EC, _M],
|
|
224
|
+
[[0, { [_jN]: _eC }], [0, { [_jN]: _m }]]
|
|
225
|
+
];
|
|
226
|
+
n0_registry.registerError(exports.ConflictException$, errors_1.ConflictException);
|
|
227
|
+
exports.ForbiddenException$ = [-3, n0, _FE,
|
|
228
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
229
|
+
[_EC, _M],
|
|
230
|
+
[[0, { [_jN]: _eC }], [0, { [_jN]: _m }]]
|
|
231
|
+
];
|
|
232
|
+
n0_registry.registerError(exports.ForbiddenException$, errors_1.ForbiddenException);
|
|
233
|
+
exports.InternalServerErrorException$ = [-3, n0, _ISEE,
|
|
234
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
235
|
+
[_EC, _M],
|
|
236
|
+
[[0, { [_jN]: _eC }], [0, { [_jN]: _m }]]
|
|
237
|
+
];
|
|
238
|
+
n0_registry.registerError(exports.InternalServerErrorException$, errors_1.InternalServerErrorException);
|
|
239
|
+
exports.NotFoundException$ = [-3, n0, _NFE,
|
|
240
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
241
|
+
[_EC, _M],
|
|
242
|
+
[[0, { [_jN]: _eC }], [0, { [_jN]: _m }]]
|
|
243
|
+
];
|
|
244
|
+
n0_registry.registerError(exports.NotFoundException$, errors_1.NotFoundException);
|
|
245
|
+
exports.TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
246
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
247
|
+
[_EC, _M],
|
|
248
|
+
[[0, { [_jN]: _eC }], [0, { [_jN]: _m }]]
|
|
249
|
+
];
|
|
250
|
+
n0_registry.registerError(exports.TooManyRequestsException$, errors_1.TooManyRequestsException);
|
|
251
|
+
exports.errorTypeRegistries = [
|
|
252
|
+
_s_registry,
|
|
253
|
+
n0_registry,
|
|
254
|
+
];
|
|
255
|
+
exports.ApplicationDependencySummary$ = [3, n0, _ADS,
|
|
256
|
+
0,
|
|
257
|
+
[_AI, _SV],
|
|
258
|
+
[[0, { [_jN]: _aI }], [0, { [_jN]: _sV }]], 2
|
|
259
|
+
];
|
|
260
|
+
exports.ApplicationPolicyStatement$ = [3, n0, _APS,
|
|
261
|
+
0,
|
|
262
|
+
[_A, _P, _POID, _SI],
|
|
263
|
+
[[64 | 0, { [_jN]: _a }], [64 | 0, { [_jN]: _p }], [64 | 0, { [_jN]: _pOID }], [0, { [_jN]: _sI }]], 2
|
|
264
|
+
];
|
|
265
|
+
exports.ApplicationSummary$ = [3, n0, _AS,
|
|
266
|
+
0,
|
|
267
|
+
[_AI, _Au, _D, _N, _CT, _HPU, _L, _SLI],
|
|
268
|
+
[[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
|
+
];
|
|
270
|
+
exports.CreateApplicationRequest$ = [3, n0, _CAR,
|
|
271
|
+
0,
|
|
272
|
+
[_Au, _D, _N, _HPU, _L, _LB, _LU, _RB, _RU, _SV, _SCAU, _SCU, _SLI, _TB, _TU],
|
|
273
|
+
[[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
|
+
];
|
|
275
|
+
exports.CreateApplicationResponse$ = [3, n0, _CARr,
|
|
276
|
+
0,
|
|
277
|
+
[_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 }], [() => exports.Version$, { [_jN]: _v }]]
|
|
279
|
+
];
|
|
280
|
+
exports.CreateApplicationVersionRequest$ = [3, n0, _CAVR,
|
|
281
|
+
0,
|
|
282
|
+
[_AI, _SV, _SCAU, _SCU, _TB, _TU],
|
|
283
|
+
[[0, 1], [0, 1], [0, { [_jN]: _sCAU }], [0, { [_jN]: _sCU }], [0, { [_jN]: _tB }], [0, { [_jN]: _tU }]], 2
|
|
284
|
+
];
|
|
285
|
+
exports.CreateApplicationVersionResponse$ = [3, n0, _CAVRr,
|
|
286
|
+
0,
|
|
287
|
+
[_AI, _CT, _PD, _RC, _RS, _SV, _SCAU, _SCU, _TU],
|
|
288
|
+
[[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
|
+
];
|
|
290
|
+
exports.CreateCloudFormationChangeSetRequest$ = [3, n0, _CCFCSR,
|
|
291
|
+
0,
|
|
292
|
+
[_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 }], [() => exports.RollbackConfiguration$, { [_jN]: _rCo }], [0, { [_jN]: _sV }], [() => __listOfTag, { [_jN]: _t }], [0, { [_jN]: _tI }]], 2
|
|
294
|
+
];
|
|
295
|
+
exports.CreateCloudFormationChangeSetResponse$ = [3, n0, _CCFCSRr,
|
|
296
|
+
0,
|
|
297
|
+
[_AI, _CSI, _SV, _SIt],
|
|
298
|
+
[[0, { [_jN]: _aI }], [0, { [_jN]: _cSI }], [0, { [_jN]: _sV }], [0, { [_jN]: _sIt }]]
|
|
299
|
+
];
|
|
300
|
+
exports.CreateCloudFormationTemplateRequest$ = [3, n0, _CCFTR,
|
|
301
|
+
0,
|
|
302
|
+
[_AI, _SV],
|
|
303
|
+
[[0, 1], [0, { [_jN]: _sV }]], 1
|
|
304
|
+
];
|
|
305
|
+
exports.CreateCloudFormationTemplateResponse$ = [3, n0, _CCFTRr,
|
|
306
|
+
0,
|
|
307
|
+
[_AI, _CT, _ET, _SV, _S, _TI, _TU],
|
|
308
|
+
[[0, { [_jN]: _aI }], [0, { [_jN]: _cT }], [0, { [_jN]: _eT }], [0, { [_jN]: _sV }], [0, { [_jN]: _st }], [0, { [_jN]: _tI }], [0, { [_jN]: _tU }]]
|
|
309
|
+
];
|
|
310
|
+
exports.DeleteApplicationRequest$ = [3, n0, _DAR,
|
|
311
|
+
0,
|
|
312
|
+
[_AI],
|
|
313
|
+
[[0, 1]], 1
|
|
314
|
+
];
|
|
315
|
+
exports.GetApplicationPolicyRequest$ = [3, n0, _GAPR,
|
|
316
|
+
0,
|
|
317
|
+
[_AI],
|
|
318
|
+
[[0, 1]], 1
|
|
319
|
+
];
|
|
320
|
+
exports.GetApplicationPolicyResponse$ = [3, n0, _GAPRe,
|
|
321
|
+
0,
|
|
322
|
+
[_St],
|
|
323
|
+
[[() => __listOfApplicationPolicyStatement, { [_jN]: _sta }]]
|
|
324
|
+
];
|
|
325
|
+
exports.GetApplicationRequest$ = [3, n0, _GAR,
|
|
326
|
+
0,
|
|
327
|
+
[_AI, _SV],
|
|
328
|
+
[[0, 1], [0, { [_hQ]: _sV }]], 1
|
|
329
|
+
];
|
|
330
|
+
exports.GetApplicationResponse$ = [3, n0, _GARe,
|
|
331
|
+
0,
|
|
332
|
+
[_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 }], [() => exports.Version$, { [_jN]: _v }]]
|
|
334
|
+
];
|
|
335
|
+
exports.GetCloudFormationTemplateRequest$ = [3, n0, _GCFTR,
|
|
336
|
+
0,
|
|
337
|
+
[_AI, _TI],
|
|
338
|
+
[[0, 1], [0, 1]], 2
|
|
339
|
+
];
|
|
340
|
+
exports.GetCloudFormationTemplateResponse$ = [3, n0, _GCFTRe,
|
|
341
|
+
0,
|
|
342
|
+
[_AI, _CT, _ET, _SV, _S, _TI, _TU],
|
|
343
|
+
[[0, { [_jN]: _aI }], [0, { [_jN]: _cT }], [0, { [_jN]: _eT }], [0, { [_jN]: _sV }], [0, { [_jN]: _st }], [0, { [_jN]: _tI }], [0, { [_jN]: _tU }]]
|
|
344
|
+
];
|
|
345
|
+
exports.ListApplicationDependenciesRequest$ = [3, n0, _LADR,
|
|
346
|
+
0,
|
|
347
|
+
[_AI, _MI, _NT, _SV],
|
|
348
|
+
[[0, 1], [1, { [_hQ]: _mI }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _sV }]], 1
|
|
349
|
+
];
|
|
350
|
+
exports.ListApplicationDependenciesResponse$ = [3, n0, _LADRi,
|
|
351
|
+
0,
|
|
352
|
+
[_De, _NT],
|
|
353
|
+
[[() => __listOfApplicationDependencySummary, { [_jN]: _de }], [0, { [_jN]: _nT }]]
|
|
354
|
+
];
|
|
355
|
+
exports.ListApplicationsRequest$ = [3, n0, _LAR,
|
|
356
|
+
0,
|
|
357
|
+
[_MI, _NT],
|
|
358
|
+
[[1, { [_hQ]: _mI }], [0, { [_hQ]: _nT }]]
|
|
359
|
+
];
|
|
360
|
+
exports.ListApplicationsResponse$ = [3, n0, _LARi,
|
|
361
|
+
0,
|
|
362
|
+
[_Ap, _NT],
|
|
363
|
+
[[() => __listOfApplicationSummary, { [_jN]: _ap }], [0, { [_jN]: _nT }]]
|
|
364
|
+
];
|
|
365
|
+
exports.ListApplicationVersionsRequest$ = [3, n0, _LAVR,
|
|
366
|
+
0,
|
|
367
|
+
[_AI, _MI, _NT],
|
|
368
|
+
[[0, 1], [1, { [_hQ]: _mI }], [0, { [_hQ]: _nT }]], 1
|
|
369
|
+
];
|
|
370
|
+
exports.ListApplicationVersionsResponse$ = [3, n0, _LAVRi,
|
|
371
|
+
0,
|
|
372
|
+
[_NT, _Ve],
|
|
373
|
+
[[0, { [_jN]: _nT }], [() => __listOfVersionSummary, { [_jN]: _ve }]]
|
|
374
|
+
];
|
|
375
|
+
exports.ParameterDefinition$ = [3, n0, _PDa,
|
|
376
|
+
0,
|
|
377
|
+
[_N, _RBR, _AP, _AV, _CD, _DV, _D, _ML, _MV, _MLi, _MVi, _NE, _Ty],
|
|
378
|
+
[[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
|
+
];
|
|
380
|
+
exports.ParameterValue$ = [3, n0, _PV,
|
|
381
|
+
0,
|
|
382
|
+
[_N, _Va],
|
|
383
|
+
[[0, { [_jN]: _n }], [0, { [_jN]: _va }]], 2
|
|
384
|
+
];
|
|
385
|
+
exports.PutApplicationPolicyRequest$ = [3, n0, _PAPR,
|
|
386
|
+
0,
|
|
387
|
+
[_AI, _St],
|
|
388
|
+
[[0, 1], [() => __listOfApplicationPolicyStatement, { [_jN]: _sta }]], 2
|
|
389
|
+
];
|
|
390
|
+
exports.PutApplicationPolicyResponse$ = [3, n0, _PAPRu,
|
|
391
|
+
0,
|
|
392
|
+
[_St],
|
|
393
|
+
[[() => __listOfApplicationPolicyStatement, { [_jN]: _sta }]]
|
|
394
|
+
];
|
|
395
|
+
exports.RollbackConfiguration$ = [3, n0, _RCo,
|
|
396
|
+
0,
|
|
397
|
+
[_MTIM, _RTo],
|
|
398
|
+
[[1, { [_jN]: _mTIM }], [() => __listOfRollbackTrigger, { [_jN]: _rTo }]]
|
|
399
|
+
];
|
|
400
|
+
exports.RollbackTrigger$ = [3, n0, _RTol,
|
|
401
|
+
0,
|
|
402
|
+
[_Ar, _Ty],
|
|
403
|
+
[[0, { [_jN]: _ar }], [0, { [_jN]: _ty }]], 2
|
|
404
|
+
];
|
|
405
|
+
exports.Tag$ = [3, n0, _Ta,
|
|
406
|
+
0,
|
|
407
|
+
[_K, _Va],
|
|
408
|
+
[[0, { [_jN]: _k }], [0, { [_jN]: _va }]], 2
|
|
409
|
+
];
|
|
410
|
+
exports.UnshareApplicationRequest$ = [3, n0, _UAR,
|
|
411
|
+
0,
|
|
412
|
+
[_AI, _OI],
|
|
413
|
+
[[0, 1], [0, { [_jN]: _oI }]], 2
|
|
414
|
+
];
|
|
415
|
+
exports.UpdateApplicationRequest$ = [3, n0, _UARp,
|
|
416
|
+
0,
|
|
417
|
+
[_AI, _Au, _D, _HPU, _L, _RB, _RU],
|
|
418
|
+
[[0, 1], [0, { [_jN]: _au }], [0, { [_jN]: _d }], [0, { [_jN]: _hPU }], [64 | 0, { [_jN]: _l }], [0, { [_jN]: _rB }], [0, { [_jN]: _rU }]], 1
|
|
419
|
+
];
|
|
420
|
+
exports.UpdateApplicationResponse$ = [3, n0, _UARpd,
|
|
421
|
+
0,
|
|
422
|
+
[_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 }], [() => exports.Version$, { [_jN]: _v }]]
|
|
424
|
+
];
|
|
425
|
+
exports.Version$ = [3, n0, _V,
|
|
426
|
+
0,
|
|
427
|
+
[_AI, _CT, _PD, _RC, _RS, _SV, _TU, _SCAU, _SCU],
|
|
428
|
+
[[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
|
+
];
|
|
430
|
+
exports.VersionSummary$ = [3, n0, _VS,
|
|
431
|
+
0,
|
|
432
|
+
[_AI, _CT, _SV, _SCU],
|
|
433
|
+
[[0, { [_jN]: _aI }], [0, { [_jN]: _cT }], [0, { [_jN]: _sV }], [0, { [_jN]: _sCU }]], 3
|
|
434
|
+
];
|
|
435
|
+
var __Unit = "unit";
|
|
436
|
+
var __listOf__string = 64 | 0;
|
|
437
|
+
var __listOfApplicationDependencySummary = [1, n0, _lOADS,
|
|
438
|
+
0, [() => exports.ApplicationDependencySummary$,
|
|
439
|
+
0]
|
|
440
|
+
];
|
|
441
|
+
var __listOfApplicationPolicyStatement = [1, n0, _lOAPS,
|
|
442
|
+
0, [() => exports.ApplicationPolicyStatement$,
|
|
443
|
+
0]
|
|
444
|
+
];
|
|
445
|
+
var __listOfApplicationSummary = [1, n0, _lOAS,
|
|
446
|
+
0, [() => exports.ApplicationSummary$,
|
|
447
|
+
0]
|
|
448
|
+
];
|
|
449
|
+
var __listOfCapability = 64 | 0;
|
|
450
|
+
var __listOfParameterDefinition = [1, n0, _lOPD,
|
|
451
|
+
0, [() => exports.ParameterDefinition$,
|
|
452
|
+
0]
|
|
453
|
+
];
|
|
454
|
+
var __listOfParameterValue = [1, n0, _lOPV,
|
|
455
|
+
0, [() => exports.ParameterValue$,
|
|
456
|
+
0]
|
|
457
|
+
];
|
|
458
|
+
var __listOfRollbackTrigger = [1, n0, _lORT,
|
|
459
|
+
0, [() => exports.RollbackTrigger$,
|
|
460
|
+
0]
|
|
461
|
+
];
|
|
462
|
+
var __listOfTag = [1, n0, _lOT,
|
|
463
|
+
0, [() => exports.Tag$,
|
|
464
|
+
0]
|
|
465
|
+
];
|
|
466
|
+
var __listOfVersionSummary = [1, n0, _lOVS,
|
|
467
|
+
0, [() => exports.VersionSummary$,
|
|
468
|
+
0]
|
|
469
|
+
];
|
|
470
|
+
exports.CreateApplication$ = [9, n0, _CA,
|
|
471
|
+
{ [_h]: ["POST", "/applications", 201] }, () => exports.CreateApplicationRequest$, () => exports.CreateApplicationResponse$
|
|
472
|
+
];
|
|
473
|
+
exports.CreateApplicationVersion$ = [9, n0, _CAV,
|
|
474
|
+
{ [_h]: ["PUT", "/applications/{ApplicationId}/versions/{SemanticVersion}", 201] }, () => exports.CreateApplicationVersionRequest$, () => exports.CreateApplicationVersionResponse$
|
|
475
|
+
];
|
|
476
|
+
exports.CreateCloudFormationChangeSet$ = [9, n0, _CCFCS,
|
|
477
|
+
{ [_h]: ["POST", "/applications/{ApplicationId}/changesets", 201] }, () => exports.CreateCloudFormationChangeSetRequest$, () => exports.CreateCloudFormationChangeSetResponse$
|
|
478
|
+
];
|
|
479
|
+
exports.CreateCloudFormationTemplate$ = [9, n0, _CCFT,
|
|
480
|
+
{ [_h]: ["POST", "/applications/{ApplicationId}/templates", 201] }, () => exports.CreateCloudFormationTemplateRequest$, () => exports.CreateCloudFormationTemplateResponse$
|
|
481
|
+
];
|
|
482
|
+
exports.DeleteApplication$ = [9, n0, _DA,
|
|
483
|
+
{ [_h]: ["DELETE", "/applications/{ApplicationId}", 204] }, () => exports.DeleteApplicationRequest$, () => __Unit
|
|
484
|
+
];
|
|
485
|
+
exports.GetApplication$ = [9, n0, _GA,
|
|
486
|
+
{ [_h]: ["GET", "/applications/{ApplicationId}", 200] }, () => exports.GetApplicationRequest$, () => exports.GetApplicationResponse$
|
|
487
|
+
];
|
|
488
|
+
exports.GetApplicationPolicy$ = [9, n0, _GAP,
|
|
489
|
+
{ [_h]: ["GET", "/applications/{ApplicationId}/policy", 200] }, () => exports.GetApplicationPolicyRequest$, () => exports.GetApplicationPolicyResponse$
|
|
490
|
+
];
|
|
491
|
+
exports.GetCloudFormationTemplate$ = [9, n0, _GCFT,
|
|
492
|
+
{ [_h]: ["GET", "/applications/{ApplicationId}/templates/{TemplateId}", 200] }, () => exports.GetCloudFormationTemplateRequest$, () => exports.GetCloudFormationTemplateResponse$
|
|
493
|
+
];
|
|
494
|
+
exports.ListApplicationDependencies$ = [9, n0, _LAD,
|
|
495
|
+
{ [_h]: ["GET", "/applications/{ApplicationId}/dependencies", 200] }, () => exports.ListApplicationDependenciesRequest$, () => exports.ListApplicationDependenciesResponse$
|
|
496
|
+
];
|
|
497
|
+
exports.ListApplications$ = [9, n0, _LA,
|
|
498
|
+
{ [_h]: ["GET", "/applications", 200] }, () => exports.ListApplicationsRequest$, () => exports.ListApplicationsResponse$
|
|
499
|
+
];
|
|
500
|
+
exports.ListApplicationVersions$ = [9, n0, _LAV,
|
|
501
|
+
{ [_h]: ["GET", "/applications/{ApplicationId}/versions", 200] }, () => exports.ListApplicationVersionsRequest$, () => exports.ListApplicationVersionsResponse$
|
|
502
|
+
];
|
|
503
|
+
exports.PutApplicationPolicy$ = [9, n0, _PAP,
|
|
504
|
+
{ [_h]: ["PUT", "/applications/{ApplicationId}/policy", 200] }, () => exports.PutApplicationPolicyRequest$, () => exports.PutApplicationPolicyResponse$
|
|
505
|
+
];
|
|
506
|
+
exports.UnshareApplication$ = [9, n0, _UA,
|
|
507
|
+
{ [_h]: ["POST", "/applications/{ApplicationId}/unshare", 204] }, () => exports.UnshareApplicationRequest$, () => __Unit
|
|
508
|
+
];
|
|
509
|
+
exports.UpdateApplication$ = [9, n0, _UAp,
|
|
510
|
+
{ [_h]: ["PATCH", "/applications/{ApplicationId}", 200] }, () => exports.UpdateApplicationRequest$, () => exports.UpdateApplicationResponse$
|
|
511
|
+
];
|
|
@@ -6,6 +6,7 @@ import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
|
6
6
|
import { fromUtf8, toUtf8 } from "@smithy/util-utf8";
|
|
7
7
|
import { defaultServerlessApplicationRepositoryHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider";
|
|
8
8
|
import { defaultEndpointResolver } from "./endpoint/endpointResolver";
|
|
9
|
+
import { errorTypeRegistries } from "./schemas/schemas_0";
|
|
9
10
|
export const getRuntimeConfig = (config) => {
|
|
10
11
|
return {
|
|
11
12
|
apiVersion: "2017-09-08",
|
|
@@ -26,6 +27,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
26
27
|
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
28
|
protocolSettings: config?.protocolSettings ?? {
|
|
28
29
|
defaultNamespace: "com.amazonaws.serverlessapplicationrepository",
|
|
30
|
+
errorTypeRegistries,
|
|
29
31
|
version: "2017-09-08",
|
|
30
32
|
serviceTarget: "ServerlessApplicationRepository",
|
|
31
33
|
},
|