@aws-sdk/client-amplify 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 +56 -1236
- package/dist-cjs/models/AmplifyServiceException.js +12 -0
- package/dist-cjs/models/errors.js +97 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +981 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +64 -58
- package/dist-types/schemas/schemas_0.d.ts +15 -8
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -8
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var AmplifyServiceException = require('./models/AmplifyServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1058 +113,6 @@ class AmplifyClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class AmplifyServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, AmplifyServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class BadRequestException extends AmplifyServiceException {
|
|
121
|
-
name = "BadRequestException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "BadRequestException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class DependentServiceFailureException extends AmplifyServiceException {
|
|
133
|
-
name = "DependentServiceFailureException";
|
|
134
|
-
$fault = "server";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "DependentServiceFailureException",
|
|
138
|
-
$fault: "server",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, DependentServiceFailureException.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class InternalFailureException extends AmplifyServiceException {
|
|
145
|
-
name = "InternalFailureException";
|
|
146
|
-
$fault = "server";
|
|
147
|
-
constructor(opts) {
|
|
148
|
-
super({
|
|
149
|
-
name: "InternalFailureException",
|
|
150
|
-
$fault: "server",
|
|
151
|
-
...opts,
|
|
152
|
-
});
|
|
153
|
-
Object.setPrototypeOf(this, InternalFailureException.prototype);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
class LimitExceededException extends AmplifyServiceException {
|
|
157
|
-
name = "LimitExceededException";
|
|
158
|
-
$fault = "client";
|
|
159
|
-
constructor(opts) {
|
|
160
|
-
super({
|
|
161
|
-
name: "LimitExceededException",
|
|
162
|
-
$fault: "client",
|
|
163
|
-
...opts,
|
|
164
|
-
});
|
|
165
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
class UnauthorizedException extends AmplifyServiceException {
|
|
169
|
-
name = "UnauthorizedException";
|
|
170
|
-
$fault = "client";
|
|
171
|
-
constructor(opts) {
|
|
172
|
-
super({
|
|
173
|
-
name: "UnauthorizedException",
|
|
174
|
-
$fault: "client",
|
|
175
|
-
...opts,
|
|
176
|
-
});
|
|
177
|
-
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
class NotFoundException extends AmplifyServiceException {
|
|
181
|
-
name = "NotFoundException";
|
|
182
|
-
$fault = "client";
|
|
183
|
-
constructor(opts) {
|
|
184
|
-
super({
|
|
185
|
-
name: "NotFoundException",
|
|
186
|
-
$fault: "client",
|
|
187
|
-
...opts,
|
|
188
|
-
});
|
|
189
|
-
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
class ResourceNotFoundException extends AmplifyServiceException {
|
|
193
|
-
name = "ResourceNotFoundException";
|
|
194
|
-
$fault = "client";
|
|
195
|
-
code;
|
|
196
|
-
constructor(opts) {
|
|
197
|
-
super({
|
|
198
|
-
name: "ResourceNotFoundException",
|
|
199
|
-
$fault: "client",
|
|
200
|
-
...opts,
|
|
201
|
-
});
|
|
202
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
203
|
-
this.code = opts.code;
|
|
204
|
-
}
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
const _A = "App";
|
|
208
|
-
const _ABCC = "AutoBranchCreationConfig";
|
|
209
|
-
const _AT = "AccessToken";
|
|
210
|
-
const _Ap = "Apps";
|
|
211
|
-
const _Ar = "Artifact";
|
|
212
|
-
const _Art = "Artifacts";
|
|
213
|
-
const _B = "Backend";
|
|
214
|
-
const _BAC = "BasicAuthCredentials";
|
|
215
|
-
const _BE = "BackendEnvironment";
|
|
216
|
-
const _BEa = "BackendEnvironments";
|
|
217
|
-
const _BRE = "BadRequestException";
|
|
218
|
-
const _BS = "BuildSpec";
|
|
219
|
-
const _Br = "Branch";
|
|
220
|
-
const _Bra = "Branches";
|
|
221
|
-
const _C = "Certificate";
|
|
222
|
-
const _CA = "CreateApp";
|
|
223
|
-
const _CAR = "CreateAppRequest";
|
|
224
|
-
const _CARr = "CreateAppResult";
|
|
225
|
-
const _CB = "CreateBranch";
|
|
226
|
-
const _CBE = "CreateBackendEnvironment";
|
|
227
|
-
const _CBER = "CreateBackendEnvironmentRequest";
|
|
228
|
-
const _CBERr = "CreateBackendEnvironmentResult";
|
|
229
|
-
const _CBR = "CreateBranchRequest";
|
|
230
|
-
const _CBRr = "CreateBranchResult";
|
|
231
|
-
const _CC = "CacheConfig";
|
|
232
|
-
const _CD = "CreateDeployment";
|
|
233
|
-
const _CDA = "CreateDomainAssociation";
|
|
234
|
-
const _CDAR = "CreateDomainAssociationRequest";
|
|
235
|
-
const _CDARr = "CreateDomainAssociationResult";
|
|
236
|
-
const _CDR = "CreateDeploymentRequest";
|
|
237
|
-
const _CDRr = "CreateDeploymentResult";
|
|
238
|
-
const _CR = "CustomRule";
|
|
239
|
-
const _CRu = "CustomRules";
|
|
240
|
-
const _CS = "CertificateSettings";
|
|
241
|
-
const _CW = "CreateWebhook";
|
|
242
|
-
const _CWR = "CreateWebhookRequest";
|
|
243
|
-
const _CWRr = "CreateWebhookResult";
|
|
244
|
-
const _DA = "DomainAssociation";
|
|
245
|
-
const _DAR = "DeleteAppRequest";
|
|
246
|
-
const _DARe = "DeleteAppResult";
|
|
247
|
-
const _DAe = "DeleteApp";
|
|
248
|
-
const _DAo = "DomainAssociations";
|
|
249
|
-
const _DB = "DeleteBranch";
|
|
250
|
-
const _DBE = "DeleteBackendEnvironment";
|
|
251
|
-
const _DBER = "DeleteBackendEnvironmentRequest";
|
|
252
|
-
const _DBERe = "DeleteBackendEnvironmentResult";
|
|
253
|
-
const _DBR = "DeleteBranchRequest";
|
|
254
|
-
const _DBRe = "DeleteBranchResult";
|
|
255
|
-
const _DDA = "DeleteDomainAssociation";
|
|
256
|
-
const _DDAR = "DeleteDomainAssociationRequest";
|
|
257
|
-
const _DDARe = "DeleteDomainAssociationResult";
|
|
258
|
-
const _DJ = "DeleteJob";
|
|
259
|
-
const _DJR = "DeleteJobRequest";
|
|
260
|
-
const _DJRe = "DeleteJobResult";
|
|
261
|
-
const _DSFE = "DependentServiceFailureException";
|
|
262
|
-
const _DW = "DeleteWebhook";
|
|
263
|
-
const _DWR = "DeleteWebhookRequest";
|
|
264
|
-
const _DWRe = "DeleteWebhookResult";
|
|
265
|
-
const _GA = "GetApp";
|
|
266
|
-
const _GAL = "GenerateAccessLogs";
|
|
267
|
-
const _GALR = "GenerateAccessLogsRequest";
|
|
268
|
-
const _GALRe = "GenerateAccessLogsResult";
|
|
269
|
-
const _GAR = "GetAppRequest";
|
|
270
|
-
const _GARe = "GetAppResult";
|
|
271
|
-
const _GAU = "GetArtifactUrl";
|
|
272
|
-
const _GAUR = "GetArtifactUrlRequest";
|
|
273
|
-
const _GAURe = "GetArtifactUrlResult";
|
|
274
|
-
const _GB = "GetBranch";
|
|
275
|
-
const _GBE = "GetBackendEnvironment";
|
|
276
|
-
const _GBER = "GetBackendEnvironmentRequest";
|
|
277
|
-
const _GBERe = "GetBackendEnvironmentResult";
|
|
278
|
-
const _GBR = "GetBranchRequest";
|
|
279
|
-
const _GBRe = "GetBranchResult";
|
|
280
|
-
const _GDA = "GetDomainAssociation";
|
|
281
|
-
const _GDAR = "GetDomainAssociationRequest";
|
|
282
|
-
const _GDARe = "GetDomainAssociationResult";
|
|
283
|
-
const _GJ = "GetJob";
|
|
284
|
-
const _GJR = "GetJobRequest";
|
|
285
|
-
const _GJRe = "GetJobResult";
|
|
286
|
-
const _GW = "GetWebhook";
|
|
287
|
-
const _GWR = "GetWebhookRequest";
|
|
288
|
-
const _GWRe = "GetWebhookResult";
|
|
289
|
-
const _IFE = "InternalFailureException";
|
|
290
|
-
const _J = "Job";
|
|
291
|
-
const _JC = "JobConfig";
|
|
292
|
-
const _JS = "JobSummary";
|
|
293
|
-
const _JSo = "JobSummaries";
|
|
294
|
-
const _LA = "ListApps";
|
|
295
|
-
const _LAR = "ListAppsRequest";
|
|
296
|
-
const _LARi = "ListAppsResult";
|
|
297
|
-
const _LARis = "ListArtifactsRequest";
|
|
298
|
-
const _LARist = "ListArtifactsResult";
|
|
299
|
-
const _LAi = "ListArtifacts";
|
|
300
|
-
const _LB = "ListBranches";
|
|
301
|
-
const _LBE = "ListBackendEnvironments";
|
|
302
|
-
const _LBER = "ListBackendEnvironmentsRequest";
|
|
303
|
-
const _LBERi = "ListBackendEnvironmentsResult";
|
|
304
|
-
const _LBR = "ListBranchesRequest";
|
|
305
|
-
const _LBRi = "ListBranchesResult";
|
|
306
|
-
const _LDA = "ListDomainAssociations";
|
|
307
|
-
const _LDAR = "ListDomainAssociationsRequest";
|
|
308
|
-
const _LDARi = "ListDomainAssociationsResult";
|
|
309
|
-
const _LEE = "LimitExceededException";
|
|
310
|
-
const _LJ = "ListJobs";
|
|
311
|
-
const _LJR = "ListJobsRequest";
|
|
312
|
-
const _LJRi = "ListJobsResult";
|
|
313
|
-
const _LTFR = "ListTagsForResource";
|
|
314
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
315
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
316
|
-
const _LW = "ListWebhooks";
|
|
317
|
-
const _LWR = "ListWebhooksRequest";
|
|
318
|
-
const _LWRi = "ListWebhooksResult";
|
|
319
|
-
const _NFE = "NotFoundException";
|
|
320
|
-
const _OT = "OauthToken";
|
|
321
|
-
const _PB = "ProductionBranch";
|
|
322
|
-
const _RNFE = "ResourceNotFoundException";
|
|
323
|
-
const _S = "Step";
|
|
324
|
-
const _SD = "SubDomain";
|
|
325
|
-
const _SDR = "StartDeploymentRequest";
|
|
326
|
-
const _SDRt = "StartDeploymentResult";
|
|
327
|
-
const _SDS = "SubDomainSetting";
|
|
328
|
-
const _SDSu = "SubDomainSettings";
|
|
329
|
-
const _SDt = "StartDeployment";
|
|
330
|
-
const _SDu = "SubDomains";
|
|
331
|
-
const _SJ = "StartJob";
|
|
332
|
-
const _SJR = "StartJobRequest";
|
|
333
|
-
const _SJRt = "StartJobResult";
|
|
334
|
-
const _SJRto = "StopJobRequest";
|
|
335
|
-
const _SJRtop = "StopJobResult";
|
|
336
|
-
const _SJt = "StopJob";
|
|
337
|
-
const _St = "Steps";
|
|
338
|
-
const _TR = "TagResource";
|
|
339
|
-
const _TRR = "TagResourceRequest";
|
|
340
|
-
const _TRRa = "TagResourceResponse";
|
|
341
|
-
const _UA = "UpdateApp";
|
|
342
|
-
const _UAR = "UpdateAppRequest";
|
|
343
|
-
const _UARp = "UpdateAppResult";
|
|
344
|
-
const _UB = "UpdateBranch";
|
|
345
|
-
const _UBR = "UpdateBranchRequest";
|
|
346
|
-
const _UBRp = "UpdateBranchResult";
|
|
347
|
-
const _UDA = "UpdateDomainAssociation";
|
|
348
|
-
const _UDAR = "UpdateDomainAssociationRequest";
|
|
349
|
-
const _UDARp = "UpdateDomainAssociationResult";
|
|
350
|
-
const _UE = "UnauthorizedException";
|
|
351
|
-
const _UR = "UntagResource";
|
|
352
|
-
const _URR = "UntagResourceRequest";
|
|
353
|
-
const _URRn = "UntagResourceResponse";
|
|
354
|
-
const _UW = "UpdateWebhook";
|
|
355
|
-
const _UWR = "UpdateWebhookRequest";
|
|
356
|
-
const _UWRp = "UpdateWebhookResult";
|
|
357
|
-
const _W = "Webhook";
|
|
358
|
-
const _WC = "WafConfiguration";
|
|
359
|
-
const _We = "Webhooks";
|
|
360
|
-
const _a = "app";
|
|
361
|
-
const _aA = "appArn";
|
|
362
|
-
const _aBCC = "autoBranchCreationConfig";
|
|
363
|
-
const _aBCP = "autoBranchCreationPatterns";
|
|
364
|
-
const _aFN = "artifactFileName";
|
|
365
|
-
const _aI = "appId";
|
|
366
|
-
const _aIr = "artifactId";
|
|
367
|
-
const _aJI = "activeJobId";
|
|
368
|
-
const _aR = "associatedResources";
|
|
369
|
-
const _aSDCP = "autoSubDomainCreationPatterns";
|
|
370
|
-
const _aSDIAMR = "autoSubDomainIAMRole";
|
|
371
|
-
const _aT = "accessToken";
|
|
372
|
-
const _aU = "artifactUrl";
|
|
373
|
-
const _aUr = "artifactsUrl";
|
|
374
|
-
const _ap = "apps";
|
|
375
|
-
const _ar = "artifacts";
|
|
376
|
-
const _b = "backend";
|
|
377
|
-
const _bA = "branchArn";
|
|
378
|
-
const _bAC = "basicAuthCredentials";
|
|
379
|
-
const _bCT = "buildComputeType";
|
|
380
|
-
const _bE = "backendEnvironment";
|
|
381
|
-
const _bEA = "backendEnvironmentArn";
|
|
382
|
-
const _bEa = "backendEnvironments";
|
|
383
|
-
const _bN = "branchName";
|
|
384
|
-
const _bS = "buildSpec";
|
|
385
|
-
const _br = "branch";
|
|
386
|
-
const _bra = "branches";
|
|
387
|
-
const _c = "client";
|
|
388
|
-
const _cC = "cacheConfig";
|
|
389
|
-
const _cCA = "customCertificateArn";
|
|
390
|
-
const _cD = "customDomains";
|
|
391
|
-
const _cH = "customHeaders";
|
|
392
|
-
const _cI = "commitId";
|
|
393
|
-
const _cM = "commitMessage";
|
|
394
|
-
const _cR = "customRules";
|
|
395
|
-
const _cRA = "computeRoleArn";
|
|
396
|
-
const _cS = "certificateSettings";
|
|
397
|
-
const _cT = "createTime";
|
|
398
|
-
const _cTo = "commitTime";
|
|
399
|
-
const _cVDNSR = "certificateVerificationDNSRecord";
|
|
400
|
-
const _ce = "certificate";
|
|
401
|
-
const _co = "condition";
|
|
402
|
-
const _cod = "code";
|
|
403
|
-
const _con = "context";
|
|
404
|
-
const _d = "description";
|
|
405
|
-
const _dA = "deploymentArtifacts";
|
|
406
|
-
const _dAA = "domainAssociationArn";
|
|
407
|
-
const _dAo = "domainAssociation";
|
|
408
|
-
const _dAom = "domainAssociations";
|
|
409
|
-
const _dB = "destinationBranch";
|
|
410
|
-
const _dD = "defaultDomain";
|
|
411
|
-
const _dN = "displayName";
|
|
412
|
-
const _dNo = "domainName";
|
|
413
|
-
const _dR = "dnsRecord";
|
|
414
|
-
const _dS = "domainStatus";
|
|
415
|
-
const _e = "error";
|
|
416
|
-
const _eAB = "enableAutoBuild";
|
|
417
|
-
const _eABC = "enableAutoBranchCreation";
|
|
418
|
-
const _eASD = "enableAutoSubDomain";
|
|
419
|
-
const _eBA = "enableBasicAuth";
|
|
420
|
-
const _eBAB = "enableBranchAutoBuild";
|
|
421
|
-
const _eBAD = "enableBranchAutoDeletion";
|
|
422
|
-
const _eN = "environmentName";
|
|
423
|
-
const _eNn = "enableNotification";
|
|
424
|
-
const _ePM = "enablePerformanceMode";
|
|
425
|
-
const _ePRP = "enablePullRequestPreview";
|
|
426
|
-
const _eSP = "enableSkewProtection";
|
|
427
|
-
const _eT = "endTime";
|
|
428
|
-
const _eV = "environmentVariables";
|
|
429
|
-
const _f = "framework";
|
|
430
|
-
const _fM = "fileMap";
|
|
431
|
-
const _fUU = "fileUploadUrls";
|
|
432
|
-
const _h = "http";
|
|
433
|
-
const _hE = "httpError";
|
|
434
|
-
const _hQ = "httpQuery";
|
|
435
|
-
const _iSRA = "iamServiceRoleArn";
|
|
436
|
-
const _j = "job";
|
|
437
|
-
const _jA = "jobArn";
|
|
438
|
-
const _jC = "jobConfig";
|
|
439
|
-
const _jI = "jobId";
|
|
440
|
-
const _jR = "jobReason";
|
|
441
|
-
const _jS = "jobSummary";
|
|
442
|
-
const _jSo = "jobSummaries";
|
|
443
|
-
const _jT = "jobType";
|
|
444
|
-
const _lDT = "lastDeployTime";
|
|
445
|
-
const _lU = "logUrl";
|
|
446
|
-
const _m = "message";
|
|
447
|
-
const _mR = "maxResults";
|
|
448
|
-
const _n = "name";
|
|
449
|
-
const _nT = "nextToken";
|
|
450
|
-
const _oT = "oauthToken";
|
|
451
|
-
const _p = "platform";
|
|
452
|
-
const _pB = "productionBranch";
|
|
453
|
-
const _pREN = "pullRequestEnvironmentName";
|
|
454
|
-
const _pr = "prefix";
|
|
455
|
-
const _r = "repository";
|
|
456
|
-
const _rA = "resourceArn";
|
|
457
|
-
const _rCM = "repositoryCloneMethod";
|
|
458
|
-
const _s = "stage";
|
|
459
|
-
const _sA = "stackArn";
|
|
460
|
-
const _sB = "sourceBranch";
|
|
461
|
-
const _sD = "subDomains";
|
|
462
|
-
const _sDS = "subDomainSettings";
|
|
463
|
-
const _sDSu = "subDomainSetting";
|
|
464
|
-
const _sN = "stackName";
|
|
465
|
-
const _sNt = "stepName";
|
|
466
|
-
const _sR = "statusReason";
|
|
467
|
-
const _sT = "startTime";
|
|
468
|
-
const _sU = "sourceUrl";
|
|
469
|
-
const _sUT = "sourceUrlType";
|
|
470
|
-
const _sc = "screenshots";
|
|
471
|
-
const _se = "server";
|
|
472
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.amplify";
|
|
473
|
-
const _so = "source";
|
|
474
|
-
const _st = "status";
|
|
475
|
-
const _ste = "steps";
|
|
476
|
-
const _su = "summary";
|
|
477
|
-
const _t = "tags";
|
|
478
|
-
const _tAU = "testArtifactsUrl";
|
|
479
|
-
const _tCU = "testConfigUrl";
|
|
480
|
-
const _tK = "tagKeys";
|
|
481
|
-
const _tNOJ = "totalNumberOfJobs";
|
|
482
|
-
const _tU = "thumbnailUrl";
|
|
483
|
-
const _ta = "target";
|
|
484
|
-
const _tt = "ttl";
|
|
485
|
-
const _ty = "type";
|
|
486
|
-
const _uS = "updateStatus";
|
|
487
|
-
const _uT = "updateTime";
|
|
488
|
-
const _v = "verified";
|
|
489
|
-
const _w = "webhook";
|
|
490
|
-
const _wA = "webhookArn";
|
|
491
|
-
const _wAA = "webAclArn";
|
|
492
|
-
const _wC = "wafConfiguration";
|
|
493
|
-
const _wCT = "webhookCreateTime";
|
|
494
|
-
const _wI = "webhookId";
|
|
495
|
-
const _wS = "wafStatus";
|
|
496
|
-
const _wU = "webhookUrl";
|
|
497
|
-
const _we = "webhooks";
|
|
498
|
-
const _zUU = "zipUploadUrl";
|
|
499
|
-
const n0 = "com.amazonaws.amplify";
|
|
500
|
-
var AccessToken = [0, n0, _AT, 8, 0];
|
|
501
|
-
var BasicAuthCredentials = [0, n0, _BAC, 8, 0];
|
|
502
|
-
var BuildSpec = [0, n0, _BS, 8, 0];
|
|
503
|
-
var OauthToken = [0, n0, _OT, 8, 0];
|
|
504
|
-
var App$ = [3, n0, _A,
|
|
505
|
-
0,
|
|
506
|
-
[_aI, _aA, _n, _d, _r, _p, _cT, _uT, _eV, _dD, _eBAB, _eBA, _t, _cRA, _iSRA, _eBAD, _bAC, _cR, _pB, _bS, _cH, _eABC, _aBCP, _aBCC, _rCM, _cC, _wCT, _wC, _jC],
|
|
507
|
-
[0, 0, 0, 0, 0, 0, 4, 4, 128 | 0, 0, 2, 2, 128 | 0, 0, 0, 2, [() => BasicAuthCredentials, 0], () => CustomRules, () => ProductionBranch$, [() => BuildSpec, 0], 0, 2, 64 | 0, [() => AutoBranchCreationConfig$, 0], 0, () => CacheConfig$, 4, () => WafConfiguration$, () => JobConfig$], 12
|
|
508
|
-
];
|
|
509
|
-
var Artifact$ = [3, n0, _Ar,
|
|
510
|
-
0,
|
|
511
|
-
[_aFN, _aIr],
|
|
512
|
-
[0, 0], 2
|
|
513
|
-
];
|
|
514
|
-
var AutoBranchCreationConfig$ = [3, n0, _ABCC,
|
|
515
|
-
0,
|
|
516
|
-
[_s, _f, _eAB, _eV, _bAC, _eBA, _ePM, _bS, _ePRP, _pREN],
|
|
517
|
-
[0, 0, 2, 128 | 0, [() => BasicAuthCredentials, 0], 2, 2, [() => BuildSpec, 0], 2, 0]
|
|
518
|
-
];
|
|
519
|
-
var Backend$ = [3, n0, _B,
|
|
520
|
-
0,
|
|
521
|
-
[_sA],
|
|
522
|
-
[0]
|
|
523
|
-
];
|
|
524
|
-
var BackendEnvironment$ = [3, n0, _BE,
|
|
525
|
-
0,
|
|
526
|
-
[_bEA, _eN, _cT, _uT, _sN, _dA],
|
|
527
|
-
[0, 0, 4, 4, 0, 0], 4
|
|
528
|
-
];
|
|
529
|
-
var BadRequestException$ = [-3, n0, _BRE,
|
|
530
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
531
|
-
[_m],
|
|
532
|
-
[0]
|
|
533
|
-
];
|
|
534
|
-
schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
|
|
535
|
-
var Branch$ = [3, n0, _Br,
|
|
536
|
-
0,
|
|
537
|
-
[_bA, _bN, _d, _s, _dN, _eNn, _cT, _uT, _eV, _eAB, _cD, _f, _aJI, _tNOJ, _eBA, _tt, _ePRP, _t, _eSP, _ePM, _tU, _bAC, _bS, _aR, _pREN, _dB, _sB, _bEA, _b, _cRA],
|
|
538
|
-
[0, 0, 0, 0, 0, 2, 4, 4, 128 | 0, 2, 64 | 0, 0, 0, 0, 2, 0, 2, 128 | 0, 2, 2, 0, [() => BasicAuthCredentials, 0], [() => BuildSpec, 0], 64 | 0, 0, 0, 0, 0, () => Backend$, 0], 17
|
|
539
|
-
];
|
|
540
|
-
var CacheConfig$ = [3, n0, _CC,
|
|
541
|
-
0,
|
|
542
|
-
[_ty],
|
|
543
|
-
[0], 1
|
|
544
|
-
];
|
|
545
|
-
var Certificate$ = [3, n0, _C,
|
|
546
|
-
0,
|
|
547
|
-
[_ty, _cCA, _cVDNSR],
|
|
548
|
-
[0, 0, 0], 1
|
|
549
|
-
];
|
|
550
|
-
var CertificateSettings$ = [3, n0, _CS,
|
|
551
|
-
0,
|
|
552
|
-
[_ty, _cCA],
|
|
553
|
-
[0, 0], 1
|
|
554
|
-
];
|
|
555
|
-
var CreateAppRequest$ = [3, n0, _CAR,
|
|
556
|
-
0,
|
|
557
|
-
[_n, _d, _r, _p, _cRA, _iSRA, _oT, _aT, _eV, _eBAB, _eBAD, _eBA, _bAC, _cR, _t, _bS, _cH, _eABC, _aBCP, _aBCC, _jC, _cC],
|
|
558
|
-
[0, 0, 0, 0, 0, 0, [() => OauthToken, 0], [() => AccessToken, 0], 128 | 0, 2, 2, 2, [() => BasicAuthCredentials, 0], () => CustomRules, 128 | 0, [() => BuildSpec, 0], 0, 2, 64 | 0, [() => AutoBranchCreationConfig$, 0], () => JobConfig$, () => CacheConfig$], 1
|
|
559
|
-
];
|
|
560
|
-
var CreateAppResult$ = [3, n0, _CARr,
|
|
561
|
-
0,
|
|
562
|
-
[_a],
|
|
563
|
-
[[() => App$, 0]], 1
|
|
564
|
-
];
|
|
565
|
-
var CreateBackendEnvironmentRequest$ = [3, n0, _CBER,
|
|
566
|
-
0,
|
|
567
|
-
[_aI, _eN, _sN, _dA],
|
|
568
|
-
[[0, 1], 0, 0, 0], 2
|
|
569
|
-
];
|
|
570
|
-
var CreateBackendEnvironmentResult$ = [3, n0, _CBERr,
|
|
571
|
-
0,
|
|
572
|
-
[_bE],
|
|
573
|
-
[() => BackendEnvironment$], 1
|
|
574
|
-
];
|
|
575
|
-
var CreateBranchRequest$ = [3, n0, _CBR,
|
|
576
|
-
0,
|
|
577
|
-
[_aI, _bN, _d, _s, _f, _eNn, _eAB, _eSP, _eV, _bAC, _eBA, _ePM, _t, _bS, _tt, _dN, _ePRP, _pREN, _bEA, _b, _cRA],
|
|
578
|
-
[[0, 1], 0, 0, 0, 0, 2, 2, 2, 128 | 0, [() => BasicAuthCredentials, 0], 2, 2, 128 | 0, [() => BuildSpec, 0], 0, 0, 2, 0, 0, () => Backend$, 0], 2
|
|
579
|
-
];
|
|
580
|
-
var CreateBranchResult$ = [3, n0, _CBRr,
|
|
581
|
-
0,
|
|
582
|
-
[_br],
|
|
583
|
-
[[() => Branch$, 0]], 1
|
|
584
|
-
];
|
|
585
|
-
var CreateDeploymentRequest$ = [3, n0, _CDR,
|
|
586
|
-
0,
|
|
587
|
-
[_aI, _bN, _fM],
|
|
588
|
-
[[0, 1], [0, 1], 128 | 0], 2
|
|
589
|
-
];
|
|
590
|
-
var CreateDeploymentResult$ = [3, n0, _CDRr,
|
|
591
|
-
0,
|
|
592
|
-
[_fUU, _zUU, _jI],
|
|
593
|
-
[128 | 0, 0, 0], 2
|
|
594
|
-
];
|
|
595
|
-
var CreateDomainAssociationRequest$ = [3, n0, _CDAR,
|
|
596
|
-
0,
|
|
597
|
-
[_aI, _dNo, _sDS, _eASD, _aSDCP, _aSDIAMR, _cS],
|
|
598
|
-
[[0, 1], 0, () => SubDomainSettings, 2, 64 | 0, 0, () => CertificateSettings$], 3
|
|
599
|
-
];
|
|
600
|
-
var CreateDomainAssociationResult$ = [3, n0, _CDARr,
|
|
601
|
-
0,
|
|
602
|
-
[_dAo],
|
|
603
|
-
[() => DomainAssociation$], 1
|
|
604
|
-
];
|
|
605
|
-
var CreateWebhookRequest$ = [3, n0, _CWR,
|
|
606
|
-
0,
|
|
607
|
-
[_aI, _bN, _d],
|
|
608
|
-
[[0, 1], 0, 0], 2
|
|
609
|
-
];
|
|
610
|
-
var CreateWebhookResult$ = [3, n0, _CWRr,
|
|
611
|
-
0,
|
|
612
|
-
[_w],
|
|
613
|
-
[() => Webhook$], 1
|
|
614
|
-
];
|
|
615
|
-
var CustomRule$ = [3, n0, _CR,
|
|
616
|
-
0,
|
|
617
|
-
[_so, _ta, _st, _co],
|
|
618
|
-
[0, 0, 0, 0], 2
|
|
619
|
-
];
|
|
620
|
-
var DeleteAppRequest$ = [3, n0, _DAR,
|
|
621
|
-
0,
|
|
622
|
-
[_aI],
|
|
623
|
-
[[0, 1]], 1
|
|
624
|
-
];
|
|
625
|
-
var DeleteAppResult$ = [3, n0, _DARe,
|
|
626
|
-
0,
|
|
627
|
-
[_a],
|
|
628
|
-
[[() => App$, 0]], 1
|
|
629
|
-
];
|
|
630
|
-
var DeleteBackendEnvironmentRequest$ = [3, n0, _DBER,
|
|
631
|
-
0,
|
|
632
|
-
[_aI, _eN],
|
|
633
|
-
[[0, 1], [0, 1]], 2
|
|
634
|
-
];
|
|
635
|
-
var DeleteBackendEnvironmentResult$ = [3, n0, _DBERe,
|
|
636
|
-
0,
|
|
637
|
-
[_bE],
|
|
638
|
-
[() => BackendEnvironment$], 1
|
|
639
|
-
];
|
|
640
|
-
var DeleteBranchRequest$ = [3, n0, _DBR,
|
|
641
|
-
0,
|
|
642
|
-
[_aI, _bN],
|
|
643
|
-
[[0, 1], [0, 1]], 2
|
|
644
|
-
];
|
|
645
|
-
var DeleteBranchResult$ = [3, n0, _DBRe,
|
|
646
|
-
0,
|
|
647
|
-
[_br],
|
|
648
|
-
[[() => Branch$, 0]], 1
|
|
649
|
-
];
|
|
650
|
-
var DeleteDomainAssociationRequest$ = [3, n0, _DDAR,
|
|
651
|
-
0,
|
|
652
|
-
[_aI, _dNo],
|
|
653
|
-
[[0, 1], [0, 1]], 2
|
|
654
|
-
];
|
|
655
|
-
var DeleteDomainAssociationResult$ = [3, n0, _DDARe,
|
|
656
|
-
0,
|
|
657
|
-
[_dAo],
|
|
658
|
-
[() => DomainAssociation$], 1
|
|
659
|
-
];
|
|
660
|
-
var DeleteJobRequest$ = [3, n0, _DJR,
|
|
661
|
-
0,
|
|
662
|
-
[_aI, _bN, _jI],
|
|
663
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
664
|
-
];
|
|
665
|
-
var DeleteJobResult$ = [3, n0, _DJRe,
|
|
666
|
-
0,
|
|
667
|
-
[_jS],
|
|
668
|
-
[() => JobSummary$], 1
|
|
669
|
-
];
|
|
670
|
-
var DeleteWebhookRequest$ = [3, n0, _DWR,
|
|
671
|
-
0,
|
|
672
|
-
[_wI],
|
|
673
|
-
[[0, 1]], 1
|
|
674
|
-
];
|
|
675
|
-
var DeleteWebhookResult$ = [3, n0, _DWRe,
|
|
676
|
-
0,
|
|
677
|
-
[_w],
|
|
678
|
-
[() => Webhook$], 1
|
|
679
|
-
];
|
|
680
|
-
var DependentServiceFailureException$ = [-3, n0, _DSFE,
|
|
681
|
-
{ [_e]: _se, [_hE]: 503 },
|
|
682
|
-
[_m],
|
|
683
|
-
[0]
|
|
684
|
-
];
|
|
685
|
-
schema.TypeRegistry.for(n0).registerError(DependentServiceFailureException$, DependentServiceFailureException);
|
|
686
|
-
var DomainAssociation$ = [3, n0, _DA,
|
|
687
|
-
0,
|
|
688
|
-
[_dAA, _dNo, _eASD, _dS, _sR, _sD, _aSDCP, _aSDIAMR, _uS, _cVDNSR, _ce],
|
|
689
|
-
[0, 0, 2, 0, 0, () => SubDomains, 64 | 0, 0, 0, 0, () => Certificate$], 6
|
|
690
|
-
];
|
|
691
|
-
var GenerateAccessLogsRequest$ = [3, n0, _GALR,
|
|
692
|
-
0,
|
|
693
|
-
[_dNo, _aI, _sT, _eT],
|
|
694
|
-
[0, [0, 1], 4, 4], 2
|
|
695
|
-
];
|
|
696
|
-
var GenerateAccessLogsResult$ = [3, n0, _GALRe,
|
|
697
|
-
0,
|
|
698
|
-
[_lU],
|
|
699
|
-
[0]
|
|
700
|
-
];
|
|
701
|
-
var GetAppRequest$ = [3, n0, _GAR,
|
|
702
|
-
0,
|
|
703
|
-
[_aI],
|
|
704
|
-
[[0, 1]], 1
|
|
705
|
-
];
|
|
706
|
-
var GetAppResult$ = [3, n0, _GARe,
|
|
707
|
-
0,
|
|
708
|
-
[_a],
|
|
709
|
-
[[() => App$, 0]], 1
|
|
710
|
-
];
|
|
711
|
-
var GetArtifactUrlRequest$ = [3, n0, _GAUR,
|
|
712
|
-
0,
|
|
713
|
-
[_aIr],
|
|
714
|
-
[[0, 1]], 1
|
|
715
|
-
];
|
|
716
|
-
var GetArtifactUrlResult$ = [3, n0, _GAURe,
|
|
717
|
-
0,
|
|
718
|
-
[_aIr, _aU],
|
|
719
|
-
[0, 0], 2
|
|
720
|
-
];
|
|
721
|
-
var GetBackendEnvironmentRequest$ = [3, n0, _GBER,
|
|
722
|
-
0,
|
|
723
|
-
[_aI, _eN],
|
|
724
|
-
[[0, 1], [0, 1]], 2
|
|
725
|
-
];
|
|
726
|
-
var GetBackendEnvironmentResult$ = [3, n0, _GBERe,
|
|
727
|
-
0,
|
|
728
|
-
[_bE],
|
|
729
|
-
[() => BackendEnvironment$], 1
|
|
730
|
-
];
|
|
731
|
-
var GetBranchRequest$ = [3, n0, _GBR,
|
|
732
|
-
0,
|
|
733
|
-
[_aI, _bN],
|
|
734
|
-
[[0, 1], [0, 1]], 2
|
|
735
|
-
];
|
|
736
|
-
var GetBranchResult$ = [3, n0, _GBRe,
|
|
737
|
-
0,
|
|
738
|
-
[_br],
|
|
739
|
-
[[() => Branch$, 0]], 1
|
|
740
|
-
];
|
|
741
|
-
var GetDomainAssociationRequest$ = [3, n0, _GDAR,
|
|
742
|
-
0,
|
|
743
|
-
[_aI, _dNo],
|
|
744
|
-
[[0, 1], [0, 1]], 2
|
|
745
|
-
];
|
|
746
|
-
var GetDomainAssociationResult$ = [3, n0, _GDARe,
|
|
747
|
-
0,
|
|
748
|
-
[_dAo],
|
|
749
|
-
[() => DomainAssociation$], 1
|
|
750
|
-
];
|
|
751
|
-
var GetJobRequest$ = [3, n0, _GJR,
|
|
752
|
-
0,
|
|
753
|
-
[_aI, _bN, _jI],
|
|
754
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
755
|
-
];
|
|
756
|
-
var GetJobResult$ = [3, n0, _GJRe,
|
|
757
|
-
0,
|
|
758
|
-
[_j],
|
|
759
|
-
[() => Job$], 1
|
|
760
|
-
];
|
|
761
|
-
var GetWebhookRequest$ = [3, n0, _GWR,
|
|
762
|
-
0,
|
|
763
|
-
[_wI],
|
|
764
|
-
[[0, 1]], 1
|
|
765
|
-
];
|
|
766
|
-
var GetWebhookResult$ = [3, n0, _GWRe,
|
|
767
|
-
0,
|
|
768
|
-
[_w],
|
|
769
|
-
[() => Webhook$], 1
|
|
770
|
-
];
|
|
771
|
-
var InternalFailureException$ = [-3, n0, _IFE,
|
|
772
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
773
|
-
[_m],
|
|
774
|
-
[0]
|
|
775
|
-
];
|
|
776
|
-
schema.TypeRegistry.for(n0).registerError(InternalFailureException$, InternalFailureException);
|
|
777
|
-
var Job$ = [3, n0, _J,
|
|
778
|
-
0,
|
|
779
|
-
[_su, _ste],
|
|
780
|
-
[() => JobSummary$, () => Steps], 2
|
|
781
|
-
];
|
|
782
|
-
var JobConfig$ = [3, n0, _JC,
|
|
783
|
-
0,
|
|
784
|
-
[_bCT],
|
|
785
|
-
[0], 1
|
|
786
|
-
];
|
|
787
|
-
var JobSummary$ = [3, n0, _JS,
|
|
788
|
-
0,
|
|
789
|
-
[_jA, _jI, _cI, _cM, _cTo, _sT, _st, _jT, _eT, _sU, _sUT],
|
|
790
|
-
[0, 0, 0, 0, 4, 4, 0, 0, 4, 0, 0], 8
|
|
791
|
-
];
|
|
792
|
-
var LimitExceededException$ = [-3, n0, _LEE,
|
|
793
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
794
|
-
[_m],
|
|
795
|
-
[0]
|
|
796
|
-
];
|
|
797
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
798
|
-
var ListAppsRequest$ = [3, n0, _LAR,
|
|
799
|
-
0,
|
|
800
|
-
[_nT, _mR],
|
|
801
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
802
|
-
];
|
|
803
|
-
var ListAppsResult$ = [3, n0, _LARi,
|
|
804
|
-
0,
|
|
805
|
-
[_ap, _nT],
|
|
806
|
-
[[() => Apps, 0], 0], 1
|
|
807
|
-
];
|
|
808
|
-
var ListArtifactsRequest$ = [3, n0, _LARis,
|
|
809
|
-
0,
|
|
810
|
-
[_aI, _bN, _jI, _nT, _mR],
|
|
811
|
-
[[0, 1], [0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 3
|
|
812
|
-
];
|
|
813
|
-
var ListArtifactsResult$ = [3, n0, _LARist,
|
|
814
|
-
0,
|
|
815
|
-
[_ar, _nT],
|
|
816
|
-
[() => Artifacts, 0], 1
|
|
817
|
-
];
|
|
818
|
-
var ListBackendEnvironmentsRequest$ = [3, n0, _LBER,
|
|
819
|
-
0,
|
|
820
|
-
[_aI, _eN, _nT, _mR],
|
|
821
|
-
[[0, 1], [0, { [_hQ]: _eN }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
822
|
-
];
|
|
823
|
-
var ListBackendEnvironmentsResult$ = [3, n0, _LBERi,
|
|
824
|
-
0,
|
|
825
|
-
[_bEa, _nT],
|
|
826
|
-
[() => BackendEnvironments, 0], 1
|
|
827
|
-
];
|
|
828
|
-
var ListBranchesRequest$ = [3, n0, _LBR,
|
|
829
|
-
0,
|
|
830
|
-
[_aI, _nT, _mR],
|
|
831
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
832
|
-
];
|
|
833
|
-
var ListBranchesResult$ = [3, n0, _LBRi,
|
|
834
|
-
0,
|
|
835
|
-
[_bra, _nT],
|
|
836
|
-
[[() => Branches, 0], 0], 1
|
|
837
|
-
];
|
|
838
|
-
var ListDomainAssociationsRequest$ = [3, n0, _LDAR,
|
|
839
|
-
0,
|
|
840
|
-
[_aI, _nT, _mR],
|
|
841
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
842
|
-
];
|
|
843
|
-
var ListDomainAssociationsResult$ = [3, n0, _LDARi,
|
|
844
|
-
0,
|
|
845
|
-
[_dAom, _nT],
|
|
846
|
-
[() => DomainAssociations, 0], 1
|
|
847
|
-
];
|
|
848
|
-
var ListJobsRequest$ = [3, n0, _LJR,
|
|
849
|
-
0,
|
|
850
|
-
[_aI, _bN, _nT, _mR],
|
|
851
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
852
|
-
];
|
|
853
|
-
var ListJobsResult$ = [3, n0, _LJRi,
|
|
854
|
-
0,
|
|
855
|
-
[_jSo, _nT],
|
|
856
|
-
[() => JobSummaries, 0], 1
|
|
857
|
-
];
|
|
858
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
859
|
-
0,
|
|
860
|
-
[_rA],
|
|
861
|
-
[[0, 1]], 1
|
|
862
|
-
];
|
|
863
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
864
|
-
0,
|
|
865
|
-
[_t],
|
|
866
|
-
[128 | 0]
|
|
867
|
-
];
|
|
868
|
-
var ListWebhooksRequest$ = [3, n0, _LWR,
|
|
869
|
-
0,
|
|
870
|
-
[_aI, _nT, _mR],
|
|
871
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
872
|
-
];
|
|
873
|
-
var ListWebhooksResult$ = [3, n0, _LWRi,
|
|
874
|
-
0,
|
|
875
|
-
[_we, _nT],
|
|
876
|
-
[() => Webhooks, 0], 1
|
|
877
|
-
];
|
|
878
|
-
var NotFoundException$ = [-3, n0, _NFE,
|
|
879
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
880
|
-
[_m],
|
|
881
|
-
[0]
|
|
882
|
-
];
|
|
883
|
-
schema.TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
|
|
884
|
-
var ProductionBranch$ = [3, n0, _PB,
|
|
885
|
-
0,
|
|
886
|
-
[_lDT, _st, _tU, _bN],
|
|
887
|
-
[4, 0, 0, 0]
|
|
888
|
-
];
|
|
889
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
890
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
891
|
-
[_cod, _m],
|
|
892
|
-
[0, 0], 2
|
|
893
|
-
];
|
|
894
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
895
|
-
var StartDeploymentRequest$ = [3, n0, _SDR,
|
|
896
|
-
0,
|
|
897
|
-
[_aI, _bN, _jI, _sU, _sUT],
|
|
898
|
-
[[0, 1], [0, 1], 0, 0, 0], 2
|
|
899
|
-
];
|
|
900
|
-
var StartDeploymentResult$ = [3, n0, _SDRt,
|
|
901
|
-
0,
|
|
902
|
-
[_jS],
|
|
903
|
-
[() => JobSummary$], 1
|
|
904
|
-
];
|
|
905
|
-
var StartJobRequest$ = [3, n0, _SJR,
|
|
906
|
-
0,
|
|
907
|
-
[_aI, _bN, _jT, _jI, _jR, _cI, _cM, _cTo],
|
|
908
|
-
[[0, 1], [0, 1], 0, 0, 0, 0, 0, 4], 3
|
|
909
|
-
];
|
|
910
|
-
var StartJobResult$ = [3, n0, _SJRt,
|
|
911
|
-
0,
|
|
912
|
-
[_jS],
|
|
913
|
-
[() => JobSummary$], 1
|
|
914
|
-
];
|
|
915
|
-
var Step$ = [3, n0, _S,
|
|
916
|
-
0,
|
|
917
|
-
[_sNt, _sT, _st, _eT, _lU, _aUr, _tAU, _tCU, _sc, _sR, _con],
|
|
918
|
-
[0, 4, 0, 4, 0, 0, 0, 0, 128 | 0, 0, 0], 4
|
|
919
|
-
];
|
|
920
|
-
var StopJobRequest$ = [3, n0, _SJRto,
|
|
921
|
-
0,
|
|
922
|
-
[_aI, _bN, _jI],
|
|
923
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
924
|
-
];
|
|
925
|
-
var StopJobResult$ = [3, n0, _SJRtop,
|
|
926
|
-
0,
|
|
927
|
-
[_jS],
|
|
928
|
-
[() => JobSummary$], 1
|
|
929
|
-
];
|
|
930
|
-
var SubDomain$ = [3, n0, _SD,
|
|
931
|
-
0,
|
|
932
|
-
[_sDSu, _v, _dR],
|
|
933
|
-
[() => SubDomainSetting$, 2, 0], 3
|
|
934
|
-
];
|
|
935
|
-
var SubDomainSetting$ = [3, n0, _SDS,
|
|
936
|
-
0,
|
|
937
|
-
[_pr, _bN],
|
|
938
|
-
[0, 0], 2
|
|
939
|
-
];
|
|
940
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
941
|
-
0,
|
|
942
|
-
[_rA, _t],
|
|
943
|
-
[[0, 1], 128 | 0], 2
|
|
944
|
-
];
|
|
945
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
946
|
-
0,
|
|
947
|
-
[],
|
|
948
|
-
[]
|
|
949
|
-
];
|
|
950
|
-
var UnauthorizedException$ = [-3, n0, _UE,
|
|
951
|
-
{ [_e]: _c, [_hE]: 401 },
|
|
952
|
-
[_m],
|
|
953
|
-
[0]
|
|
954
|
-
];
|
|
955
|
-
schema.TypeRegistry.for(n0).registerError(UnauthorizedException$, UnauthorizedException);
|
|
956
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
957
|
-
0,
|
|
958
|
-
[_rA, _tK],
|
|
959
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
960
|
-
];
|
|
961
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
962
|
-
0,
|
|
963
|
-
[],
|
|
964
|
-
[]
|
|
965
|
-
];
|
|
966
|
-
var UpdateAppRequest$ = [3, n0, _UAR,
|
|
967
|
-
0,
|
|
968
|
-
[_aI, _n, _d, _p, _cRA, _iSRA, _eV, _eBAB, _eBAD, _eBA, _bAC, _cR, _bS, _cH, _eABC, _aBCP, _aBCC, _r, _oT, _aT, _jC, _cC],
|
|
969
|
-
[[0, 1], 0, 0, 0, 0, 0, 128 | 0, 2, 2, 2, [() => BasicAuthCredentials, 0], () => CustomRules, [() => BuildSpec, 0], 0, 2, 64 | 0, [() => AutoBranchCreationConfig$, 0], 0, [() => OauthToken, 0], [() => AccessToken, 0], () => JobConfig$, () => CacheConfig$], 1
|
|
970
|
-
];
|
|
971
|
-
var UpdateAppResult$ = [3, n0, _UARp,
|
|
972
|
-
0,
|
|
973
|
-
[_a],
|
|
974
|
-
[[() => App$, 0]], 1
|
|
975
|
-
];
|
|
976
|
-
var UpdateBranchRequest$ = [3, n0, _UBR,
|
|
977
|
-
0,
|
|
978
|
-
[_aI, _bN, _d, _f, _s, _eNn, _eAB, _eSP, _eV, _bAC, _eBA, _ePM, _bS, _tt, _dN, _ePRP, _pREN, _bEA, _b, _cRA],
|
|
979
|
-
[[0, 1], [0, 1], 0, 0, 0, 2, 2, 2, 128 | 0, [() => BasicAuthCredentials, 0], 2, 2, [() => BuildSpec, 0], 0, 0, 2, 0, 0, () => Backend$, 0], 2
|
|
980
|
-
];
|
|
981
|
-
var UpdateBranchResult$ = [3, n0, _UBRp,
|
|
982
|
-
0,
|
|
983
|
-
[_br],
|
|
984
|
-
[[() => Branch$, 0]], 1
|
|
985
|
-
];
|
|
986
|
-
var UpdateDomainAssociationRequest$ = [3, n0, _UDAR,
|
|
987
|
-
0,
|
|
988
|
-
[_aI, _dNo, _eASD, _sDS, _aSDCP, _aSDIAMR, _cS],
|
|
989
|
-
[[0, 1], [0, 1], 2, () => SubDomainSettings, 64 | 0, 0, () => CertificateSettings$], 2
|
|
990
|
-
];
|
|
991
|
-
var UpdateDomainAssociationResult$ = [3, n0, _UDARp,
|
|
992
|
-
0,
|
|
993
|
-
[_dAo],
|
|
994
|
-
[() => DomainAssociation$], 1
|
|
995
|
-
];
|
|
996
|
-
var UpdateWebhookRequest$ = [3, n0, _UWR,
|
|
997
|
-
0,
|
|
998
|
-
[_wI, _bN, _d],
|
|
999
|
-
[[0, 1], 0, 0], 1
|
|
1000
|
-
];
|
|
1001
|
-
var UpdateWebhookResult$ = [3, n0, _UWRp,
|
|
1002
|
-
0,
|
|
1003
|
-
[_w],
|
|
1004
|
-
[() => Webhook$], 1
|
|
1005
|
-
];
|
|
1006
|
-
var WafConfiguration$ = [3, n0, _WC,
|
|
1007
|
-
0,
|
|
1008
|
-
[_wAA, _wS, _sR],
|
|
1009
|
-
[0, 0, 0]
|
|
1010
|
-
];
|
|
1011
|
-
var Webhook$ = [3, n0, _W,
|
|
1012
|
-
0,
|
|
1013
|
-
[_wA, _wI, _wU, _bN, _d, _cT, _uT, _aI],
|
|
1014
|
-
[0, 0, 0, 0, 0, 4, 4, 0], 7
|
|
1015
|
-
];
|
|
1016
|
-
var AmplifyServiceException$ = [-3, _sm, "AmplifyServiceException", 0, [], []];
|
|
1017
|
-
schema.TypeRegistry.for(_sm).registerError(AmplifyServiceException$, AmplifyServiceException);
|
|
1018
|
-
var Apps = [1, n0, _Ap,
|
|
1019
|
-
0, [() => App$,
|
|
1020
|
-
0]
|
|
1021
|
-
];
|
|
1022
|
-
var Artifacts = [1, n0, _Art,
|
|
1023
|
-
0, () => Artifact$
|
|
1024
|
-
];
|
|
1025
|
-
var BackendEnvironments = [1, n0, _BEa,
|
|
1026
|
-
0, () => BackendEnvironment$
|
|
1027
|
-
];
|
|
1028
|
-
var Branches = [1, n0, _Bra,
|
|
1029
|
-
0, [() => Branch$,
|
|
1030
|
-
0]
|
|
1031
|
-
];
|
|
1032
|
-
var CustomRules = [1, n0, _CRu,
|
|
1033
|
-
0, () => CustomRule$
|
|
1034
|
-
];
|
|
1035
|
-
var DomainAssociations = [1, n0, _DAo,
|
|
1036
|
-
0, () => DomainAssociation$
|
|
1037
|
-
];
|
|
1038
|
-
var JobSummaries = [1, n0, _JSo,
|
|
1039
|
-
0, () => JobSummary$
|
|
1040
|
-
];
|
|
1041
|
-
var Steps = [1, n0, _St,
|
|
1042
|
-
0, () => Step$
|
|
1043
|
-
];
|
|
1044
|
-
var SubDomains = [1, n0, _SDu,
|
|
1045
|
-
0, () => SubDomain$
|
|
1046
|
-
];
|
|
1047
|
-
var SubDomainSettings = [1, n0, _SDSu,
|
|
1048
|
-
0, () => SubDomainSetting$
|
|
1049
|
-
];
|
|
1050
|
-
var Webhooks = [1, n0, _We,
|
|
1051
|
-
0, () => Webhook$
|
|
1052
|
-
];
|
|
1053
|
-
var CreateApp$ = [9, n0, _CA,
|
|
1054
|
-
{ [_h]: ["POST", "/apps", 200] }, () => CreateAppRequest$, () => CreateAppResult$
|
|
1055
|
-
];
|
|
1056
|
-
var CreateBackendEnvironment$ = [9, n0, _CBE,
|
|
1057
|
-
{ [_h]: ["POST", "/apps/{appId}/backendenvironments", 200] }, () => CreateBackendEnvironmentRequest$, () => CreateBackendEnvironmentResult$
|
|
1058
|
-
];
|
|
1059
|
-
var CreateBranch$ = [9, n0, _CB,
|
|
1060
|
-
{ [_h]: ["POST", "/apps/{appId}/branches", 200] }, () => CreateBranchRequest$, () => CreateBranchResult$
|
|
1061
|
-
];
|
|
1062
|
-
var CreateDeployment$ = [9, n0, _CD,
|
|
1063
|
-
{ [_h]: ["POST", "/apps/{appId}/branches/{branchName}/deployments", 200] }, () => CreateDeploymentRequest$, () => CreateDeploymentResult$
|
|
1064
|
-
];
|
|
1065
|
-
var CreateDomainAssociation$ = [9, n0, _CDA,
|
|
1066
|
-
{ [_h]: ["POST", "/apps/{appId}/domains", 200] }, () => CreateDomainAssociationRequest$, () => CreateDomainAssociationResult$
|
|
1067
|
-
];
|
|
1068
|
-
var CreateWebhook$ = [9, n0, _CW,
|
|
1069
|
-
{ [_h]: ["POST", "/apps/{appId}/webhooks", 200] }, () => CreateWebhookRequest$, () => CreateWebhookResult$
|
|
1070
|
-
];
|
|
1071
|
-
var DeleteApp$ = [9, n0, _DAe,
|
|
1072
|
-
{ [_h]: ["DELETE", "/apps/{appId}", 200] }, () => DeleteAppRequest$, () => DeleteAppResult$
|
|
1073
|
-
];
|
|
1074
|
-
var DeleteBackendEnvironment$ = [9, n0, _DBE,
|
|
1075
|
-
{ [_h]: ["DELETE", "/apps/{appId}/backendenvironments/{environmentName}", 200] }, () => DeleteBackendEnvironmentRequest$, () => DeleteBackendEnvironmentResult$
|
|
1076
|
-
];
|
|
1077
|
-
var DeleteBranch$ = [9, n0, _DB,
|
|
1078
|
-
{ [_h]: ["DELETE", "/apps/{appId}/branches/{branchName}", 200] }, () => DeleteBranchRequest$, () => DeleteBranchResult$
|
|
1079
|
-
];
|
|
1080
|
-
var DeleteDomainAssociation$ = [9, n0, _DDA,
|
|
1081
|
-
{ [_h]: ["DELETE", "/apps/{appId}/domains/{domainName}", 200] }, () => DeleteDomainAssociationRequest$, () => DeleteDomainAssociationResult$
|
|
1082
|
-
];
|
|
1083
|
-
var DeleteJob$ = [9, n0, _DJ,
|
|
1084
|
-
{ [_h]: ["DELETE", "/apps/{appId}/branches/{branchName}/jobs/{jobId}", 200] }, () => DeleteJobRequest$, () => DeleteJobResult$
|
|
1085
|
-
];
|
|
1086
|
-
var DeleteWebhook$ = [9, n0, _DW,
|
|
1087
|
-
{ [_h]: ["DELETE", "/webhooks/{webhookId}", 200] }, () => DeleteWebhookRequest$, () => DeleteWebhookResult$
|
|
1088
|
-
];
|
|
1089
|
-
var GenerateAccessLogs$ = [9, n0, _GAL,
|
|
1090
|
-
{ [_h]: ["POST", "/apps/{appId}/accesslogs", 200] }, () => GenerateAccessLogsRequest$, () => GenerateAccessLogsResult$
|
|
1091
|
-
];
|
|
1092
|
-
var GetApp$ = [9, n0, _GA,
|
|
1093
|
-
{ [_h]: ["GET", "/apps/{appId}", 200] }, () => GetAppRequest$, () => GetAppResult$
|
|
1094
|
-
];
|
|
1095
|
-
var GetArtifactUrl$ = [9, n0, _GAU,
|
|
1096
|
-
{ [_h]: ["GET", "/artifacts/{artifactId}", 200] }, () => GetArtifactUrlRequest$, () => GetArtifactUrlResult$
|
|
1097
|
-
];
|
|
1098
|
-
var GetBackendEnvironment$ = [9, n0, _GBE,
|
|
1099
|
-
{ [_h]: ["GET", "/apps/{appId}/backendenvironments/{environmentName}", 200] }, () => GetBackendEnvironmentRequest$, () => GetBackendEnvironmentResult$
|
|
1100
|
-
];
|
|
1101
|
-
var GetBranch$ = [9, n0, _GB,
|
|
1102
|
-
{ [_h]: ["GET", "/apps/{appId}/branches/{branchName}", 200] }, () => GetBranchRequest$, () => GetBranchResult$
|
|
1103
|
-
];
|
|
1104
|
-
var GetDomainAssociation$ = [9, n0, _GDA,
|
|
1105
|
-
{ [_h]: ["GET", "/apps/{appId}/domains/{domainName}", 200] }, () => GetDomainAssociationRequest$, () => GetDomainAssociationResult$
|
|
1106
|
-
];
|
|
1107
|
-
var GetJob$ = [9, n0, _GJ,
|
|
1108
|
-
{ [_h]: ["GET", "/apps/{appId}/branches/{branchName}/jobs/{jobId}", 200] }, () => GetJobRequest$, () => GetJobResult$
|
|
1109
|
-
];
|
|
1110
|
-
var GetWebhook$ = [9, n0, _GW,
|
|
1111
|
-
{ [_h]: ["GET", "/webhooks/{webhookId}", 200] }, () => GetWebhookRequest$, () => GetWebhookResult$
|
|
1112
|
-
];
|
|
1113
|
-
var ListApps$ = [9, n0, _LA,
|
|
1114
|
-
{ [_h]: ["GET", "/apps", 200] }, () => ListAppsRequest$, () => ListAppsResult$
|
|
1115
|
-
];
|
|
1116
|
-
var ListArtifacts$ = [9, n0, _LAi,
|
|
1117
|
-
{ [_h]: ["GET", "/apps/{appId}/branches/{branchName}/jobs/{jobId}/artifacts", 200] }, () => ListArtifactsRequest$, () => ListArtifactsResult$
|
|
1118
|
-
];
|
|
1119
|
-
var ListBackendEnvironments$ = [9, n0, _LBE,
|
|
1120
|
-
{ [_h]: ["GET", "/apps/{appId}/backendenvironments", 200] }, () => ListBackendEnvironmentsRequest$, () => ListBackendEnvironmentsResult$
|
|
1121
|
-
];
|
|
1122
|
-
var ListBranches$ = [9, n0, _LB,
|
|
1123
|
-
{ [_h]: ["GET", "/apps/{appId}/branches", 200] }, () => ListBranchesRequest$, () => ListBranchesResult$
|
|
1124
|
-
];
|
|
1125
|
-
var ListDomainAssociations$ = [9, n0, _LDA,
|
|
1126
|
-
{ [_h]: ["GET", "/apps/{appId}/domains", 200] }, () => ListDomainAssociationsRequest$, () => ListDomainAssociationsResult$
|
|
1127
|
-
];
|
|
1128
|
-
var ListJobs$ = [9, n0, _LJ,
|
|
1129
|
-
{ [_h]: ["GET", "/apps/{appId}/branches/{branchName}/jobs", 200] }, () => ListJobsRequest$, () => ListJobsResult$
|
|
1130
|
-
];
|
|
1131
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1132
|
-
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1133
|
-
];
|
|
1134
|
-
var ListWebhooks$ = [9, n0, _LW,
|
|
1135
|
-
{ [_h]: ["GET", "/apps/{appId}/webhooks", 200] }, () => ListWebhooksRequest$, () => ListWebhooksResult$
|
|
1136
|
-
];
|
|
1137
|
-
var StartDeployment$ = [9, n0, _SDt,
|
|
1138
|
-
{ [_h]: ["POST", "/apps/{appId}/branches/{branchName}/deployments/start", 200] }, () => StartDeploymentRequest$, () => StartDeploymentResult$
|
|
1139
|
-
];
|
|
1140
|
-
var StartJob$ = [9, n0, _SJ,
|
|
1141
|
-
{ [_h]: ["POST", "/apps/{appId}/branches/{branchName}/jobs", 200] }, () => StartJobRequest$, () => StartJobResult$
|
|
1142
|
-
];
|
|
1143
|
-
var StopJob$ = [9, n0, _SJt,
|
|
1144
|
-
{ [_h]: ["DELETE", "/apps/{appId}/branches/{branchName}/jobs/{jobId}/stop", 200] }, () => StopJobRequest$, () => StopJobResult$
|
|
1145
|
-
];
|
|
1146
|
-
var TagResource$ = [9, n0, _TR,
|
|
1147
|
-
{ [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1148
|
-
];
|
|
1149
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1150
|
-
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1151
|
-
];
|
|
1152
|
-
var UpdateApp$ = [9, n0, _UA,
|
|
1153
|
-
{ [_h]: ["POST", "/apps/{appId}", 200] }, () => UpdateAppRequest$, () => UpdateAppResult$
|
|
1154
|
-
];
|
|
1155
|
-
var UpdateBranch$ = [9, n0, _UB,
|
|
1156
|
-
{ [_h]: ["POST", "/apps/{appId}/branches/{branchName}", 200] }, () => UpdateBranchRequest$, () => UpdateBranchResult$
|
|
1157
|
-
];
|
|
1158
|
-
var UpdateDomainAssociation$ = [9, n0, _UDA,
|
|
1159
|
-
{ [_h]: ["POST", "/apps/{appId}/domains/{domainName}", 200] }, () => UpdateDomainAssociationRequest$, () => UpdateDomainAssociationResult$
|
|
1160
|
-
];
|
|
1161
|
-
var UpdateWebhook$ = [9, n0, _UW,
|
|
1162
|
-
{ [_h]: ["POST", "/webhooks/{webhookId}", 200] }, () => UpdateWebhookRequest$, () => UpdateWebhookResult$
|
|
1163
|
-
];
|
|
1164
|
-
|
|
1165
116
|
class CreateAppCommand extends smithyClient.Command
|
|
1166
117
|
.classBuilder()
|
|
1167
118
|
.ep(commonParams)
|
|
@@ -1170,7 +121,7 @@ class CreateAppCommand extends smithyClient.Command
|
|
|
1170
121
|
})
|
|
1171
122
|
.s("Amplify", "CreateApp", {})
|
|
1172
123
|
.n("AmplifyClient", "CreateAppCommand")
|
|
1173
|
-
.sc(CreateApp$)
|
|
124
|
+
.sc(schemas_0.CreateApp$)
|
|
1174
125
|
.build() {
|
|
1175
126
|
}
|
|
1176
127
|
|
|
@@ -1182,7 +133,7 @@ class CreateBackendEnvironmentCommand extends smithyClient.Command
|
|
|
1182
133
|
})
|
|
1183
134
|
.s("Amplify", "CreateBackendEnvironment", {})
|
|
1184
135
|
.n("AmplifyClient", "CreateBackendEnvironmentCommand")
|
|
1185
|
-
.sc(CreateBackendEnvironment$)
|
|
136
|
+
.sc(schemas_0.CreateBackendEnvironment$)
|
|
1186
137
|
.build() {
|
|
1187
138
|
}
|
|
1188
139
|
|
|
@@ -1194,7 +145,7 @@ class CreateBranchCommand extends smithyClient.Command
|
|
|
1194
145
|
})
|
|
1195
146
|
.s("Amplify", "CreateBranch", {})
|
|
1196
147
|
.n("AmplifyClient", "CreateBranchCommand")
|
|
1197
|
-
.sc(CreateBranch$)
|
|
148
|
+
.sc(schemas_0.CreateBranch$)
|
|
1198
149
|
.build() {
|
|
1199
150
|
}
|
|
1200
151
|
|
|
@@ -1206,7 +157,7 @@ class CreateDeploymentCommand extends smithyClient.Command
|
|
|
1206
157
|
})
|
|
1207
158
|
.s("Amplify", "CreateDeployment", {})
|
|
1208
159
|
.n("AmplifyClient", "CreateDeploymentCommand")
|
|
1209
|
-
.sc(CreateDeployment$)
|
|
160
|
+
.sc(schemas_0.CreateDeployment$)
|
|
1210
161
|
.build() {
|
|
1211
162
|
}
|
|
1212
163
|
|
|
@@ -1218,7 +169,7 @@ class CreateDomainAssociationCommand extends smithyClient.Command
|
|
|
1218
169
|
})
|
|
1219
170
|
.s("Amplify", "CreateDomainAssociation", {})
|
|
1220
171
|
.n("AmplifyClient", "CreateDomainAssociationCommand")
|
|
1221
|
-
.sc(CreateDomainAssociation$)
|
|
172
|
+
.sc(schemas_0.CreateDomainAssociation$)
|
|
1222
173
|
.build() {
|
|
1223
174
|
}
|
|
1224
175
|
|
|
@@ -1230,7 +181,7 @@ class CreateWebhookCommand extends smithyClient.Command
|
|
|
1230
181
|
})
|
|
1231
182
|
.s("Amplify", "CreateWebhook", {})
|
|
1232
183
|
.n("AmplifyClient", "CreateWebhookCommand")
|
|
1233
|
-
.sc(CreateWebhook$)
|
|
184
|
+
.sc(schemas_0.CreateWebhook$)
|
|
1234
185
|
.build() {
|
|
1235
186
|
}
|
|
1236
187
|
|
|
@@ -1242,7 +193,7 @@ class DeleteAppCommand extends smithyClient.Command
|
|
|
1242
193
|
})
|
|
1243
194
|
.s("Amplify", "DeleteApp", {})
|
|
1244
195
|
.n("AmplifyClient", "DeleteAppCommand")
|
|
1245
|
-
.sc(DeleteApp$)
|
|
196
|
+
.sc(schemas_0.DeleteApp$)
|
|
1246
197
|
.build() {
|
|
1247
198
|
}
|
|
1248
199
|
|
|
@@ -1254,7 +205,7 @@ class DeleteBackendEnvironmentCommand extends smithyClient.Command
|
|
|
1254
205
|
})
|
|
1255
206
|
.s("Amplify", "DeleteBackendEnvironment", {})
|
|
1256
207
|
.n("AmplifyClient", "DeleteBackendEnvironmentCommand")
|
|
1257
|
-
.sc(DeleteBackendEnvironment$)
|
|
208
|
+
.sc(schemas_0.DeleteBackendEnvironment$)
|
|
1258
209
|
.build() {
|
|
1259
210
|
}
|
|
1260
211
|
|
|
@@ -1266,7 +217,7 @@ class DeleteBranchCommand extends smithyClient.Command
|
|
|
1266
217
|
})
|
|
1267
218
|
.s("Amplify", "DeleteBranch", {})
|
|
1268
219
|
.n("AmplifyClient", "DeleteBranchCommand")
|
|
1269
|
-
.sc(DeleteBranch$)
|
|
220
|
+
.sc(schemas_0.DeleteBranch$)
|
|
1270
221
|
.build() {
|
|
1271
222
|
}
|
|
1272
223
|
|
|
@@ -1278,7 +229,7 @@ class DeleteDomainAssociationCommand extends smithyClient.Command
|
|
|
1278
229
|
})
|
|
1279
230
|
.s("Amplify", "DeleteDomainAssociation", {})
|
|
1280
231
|
.n("AmplifyClient", "DeleteDomainAssociationCommand")
|
|
1281
|
-
.sc(DeleteDomainAssociation$)
|
|
232
|
+
.sc(schemas_0.DeleteDomainAssociation$)
|
|
1282
233
|
.build() {
|
|
1283
234
|
}
|
|
1284
235
|
|
|
@@ -1290,7 +241,7 @@ class DeleteJobCommand extends smithyClient.Command
|
|
|
1290
241
|
})
|
|
1291
242
|
.s("Amplify", "DeleteJob", {})
|
|
1292
243
|
.n("AmplifyClient", "DeleteJobCommand")
|
|
1293
|
-
.sc(DeleteJob$)
|
|
244
|
+
.sc(schemas_0.DeleteJob$)
|
|
1294
245
|
.build() {
|
|
1295
246
|
}
|
|
1296
247
|
|
|
@@ -1302,7 +253,7 @@ class DeleteWebhookCommand extends smithyClient.Command
|
|
|
1302
253
|
})
|
|
1303
254
|
.s("Amplify", "DeleteWebhook", {})
|
|
1304
255
|
.n("AmplifyClient", "DeleteWebhookCommand")
|
|
1305
|
-
.sc(DeleteWebhook$)
|
|
256
|
+
.sc(schemas_0.DeleteWebhook$)
|
|
1306
257
|
.build() {
|
|
1307
258
|
}
|
|
1308
259
|
|
|
@@ -1314,7 +265,7 @@ class GenerateAccessLogsCommand extends smithyClient.Command
|
|
|
1314
265
|
})
|
|
1315
266
|
.s("Amplify", "GenerateAccessLogs", {})
|
|
1316
267
|
.n("AmplifyClient", "GenerateAccessLogsCommand")
|
|
1317
|
-
.sc(GenerateAccessLogs$)
|
|
268
|
+
.sc(schemas_0.GenerateAccessLogs$)
|
|
1318
269
|
.build() {
|
|
1319
270
|
}
|
|
1320
271
|
|
|
@@ -1326,7 +277,7 @@ class GetAppCommand extends smithyClient.Command
|
|
|
1326
277
|
})
|
|
1327
278
|
.s("Amplify", "GetApp", {})
|
|
1328
279
|
.n("AmplifyClient", "GetAppCommand")
|
|
1329
|
-
.sc(GetApp$)
|
|
280
|
+
.sc(schemas_0.GetApp$)
|
|
1330
281
|
.build() {
|
|
1331
282
|
}
|
|
1332
283
|
|
|
@@ -1338,7 +289,7 @@ class GetArtifactUrlCommand extends smithyClient.Command
|
|
|
1338
289
|
})
|
|
1339
290
|
.s("Amplify", "GetArtifactUrl", {})
|
|
1340
291
|
.n("AmplifyClient", "GetArtifactUrlCommand")
|
|
1341
|
-
.sc(GetArtifactUrl$)
|
|
292
|
+
.sc(schemas_0.GetArtifactUrl$)
|
|
1342
293
|
.build() {
|
|
1343
294
|
}
|
|
1344
295
|
|
|
@@ -1350,7 +301,7 @@ class GetBackendEnvironmentCommand extends smithyClient.Command
|
|
|
1350
301
|
})
|
|
1351
302
|
.s("Amplify", "GetBackendEnvironment", {})
|
|
1352
303
|
.n("AmplifyClient", "GetBackendEnvironmentCommand")
|
|
1353
|
-
.sc(GetBackendEnvironment$)
|
|
304
|
+
.sc(schemas_0.GetBackendEnvironment$)
|
|
1354
305
|
.build() {
|
|
1355
306
|
}
|
|
1356
307
|
|
|
@@ -1362,7 +313,7 @@ class GetBranchCommand extends smithyClient.Command
|
|
|
1362
313
|
})
|
|
1363
314
|
.s("Amplify", "GetBranch", {})
|
|
1364
315
|
.n("AmplifyClient", "GetBranchCommand")
|
|
1365
|
-
.sc(GetBranch$)
|
|
316
|
+
.sc(schemas_0.GetBranch$)
|
|
1366
317
|
.build() {
|
|
1367
318
|
}
|
|
1368
319
|
|
|
@@ -1374,7 +325,7 @@ class GetDomainAssociationCommand extends smithyClient.Command
|
|
|
1374
325
|
})
|
|
1375
326
|
.s("Amplify", "GetDomainAssociation", {})
|
|
1376
327
|
.n("AmplifyClient", "GetDomainAssociationCommand")
|
|
1377
|
-
.sc(GetDomainAssociation$)
|
|
328
|
+
.sc(schemas_0.GetDomainAssociation$)
|
|
1378
329
|
.build() {
|
|
1379
330
|
}
|
|
1380
331
|
|
|
@@ -1386,7 +337,7 @@ class GetJobCommand extends smithyClient.Command
|
|
|
1386
337
|
})
|
|
1387
338
|
.s("Amplify", "GetJob", {})
|
|
1388
339
|
.n("AmplifyClient", "GetJobCommand")
|
|
1389
|
-
.sc(GetJob$)
|
|
340
|
+
.sc(schemas_0.GetJob$)
|
|
1390
341
|
.build() {
|
|
1391
342
|
}
|
|
1392
343
|
|
|
@@ -1398,7 +349,7 @@ class GetWebhookCommand extends smithyClient.Command
|
|
|
1398
349
|
})
|
|
1399
350
|
.s("Amplify", "GetWebhook", {})
|
|
1400
351
|
.n("AmplifyClient", "GetWebhookCommand")
|
|
1401
|
-
.sc(GetWebhook$)
|
|
352
|
+
.sc(schemas_0.GetWebhook$)
|
|
1402
353
|
.build() {
|
|
1403
354
|
}
|
|
1404
355
|
|
|
@@ -1410,7 +361,7 @@ class ListAppsCommand extends smithyClient.Command
|
|
|
1410
361
|
})
|
|
1411
362
|
.s("Amplify", "ListApps", {})
|
|
1412
363
|
.n("AmplifyClient", "ListAppsCommand")
|
|
1413
|
-
.sc(ListApps$)
|
|
364
|
+
.sc(schemas_0.ListApps$)
|
|
1414
365
|
.build() {
|
|
1415
366
|
}
|
|
1416
367
|
|
|
@@ -1422,7 +373,7 @@ class ListArtifactsCommand extends smithyClient.Command
|
|
|
1422
373
|
})
|
|
1423
374
|
.s("Amplify", "ListArtifacts", {})
|
|
1424
375
|
.n("AmplifyClient", "ListArtifactsCommand")
|
|
1425
|
-
.sc(ListArtifacts$)
|
|
376
|
+
.sc(schemas_0.ListArtifacts$)
|
|
1426
377
|
.build() {
|
|
1427
378
|
}
|
|
1428
379
|
|
|
@@ -1434,7 +385,7 @@ class ListBackendEnvironmentsCommand extends smithyClient.Command
|
|
|
1434
385
|
})
|
|
1435
386
|
.s("Amplify", "ListBackendEnvironments", {})
|
|
1436
387
|
.n("AmplifyClient", "ListBackendEnvironmentsCommand")
|
|
1437
|
-
.sc(ListBackendEnvironments$)
|
|
388
|
+
.sc(schemas_0.ListBackendEnvironments$)
|
|
1438
389
|
.build() {
|
|
1439
390
|
}
|
|
1440
391
|
|
|
@@ -1446,7 +397,7 @@ class ListBranchesCommand extends smithyClient.Command
|
|
|
1446
397
|
})
|
|
1447
398
|
.s("Amplify", "ListBranches", {})
|
|
1448
399
|
.n("AmplifyClient", "ListBranchesCommand")
|
|
1449
|
-
.sc(ListBranches$)
|
|
400
|
+
.sc(schemas_0.ListBranches$)
|
|
1450
401
|
.build() {
|
|
1451
402
|
}
|
|
1452
403
|
|
|
@@ -1458,7 +409,7 @@ class ListDomainAssociationsCommand extends smithyClient.Command
|
|
|
1458
409
|
})
|
|
1459
410
|
.s("Amplify", "ListDomainAssociations", {})
|
|
1460
411
|
.n("AmplifyClient", "ListDomainAssociationsCommand")
|
|
1461
|
-
.sc(ListDomainAssociations$)
|
|
412
|
+
.sc(schemas_0.ListDomainAssociations$)
|
|
1462
413
|
.build() {
|
|
1463
414
|
}
|
|
1464
415
|
|
|
@@ -1470,7 +421,7 @@ class ListJobsCommand extends smithyClient.Command
|
|
|
1470
421
|
})
|
|
1471
422
|
.s("Amplify", "ListJobs", {})
|
|
1472
423
|
.n("AmplifyClient", "ListJobsCommand")
|
|
1473
|
-
.sc(ListJobs$)
|
|
424
|
+
.sc(schemas_0.ListJobs$)
|
|
1474
425
|
.build() {
|
|
1475
426
|
}
|
|
1476
427
|
|
|
@@ -1482,7 +433,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1482
433
|
})
|
|
1483
434
|
.s("Amplify", "ListTagsForResource", {})
|
|
1484
435
|
.n("AmplifyClient", "ListTagsForResourceCommand")
|
|
1485
|
-
.sc(ListTagsForResource$)
|
|
436
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1486
437
|
.build() {
|
|
1487
438
|
}
|
|
1488
439
|
|
|
@@ -1494,7 +445,7 @@ class ListWebhooksCommand extends smithyClient.Command
|
|
|
1494
445
|
})
|
|
1495
446
|
.s("Amplify", "ListWebhooks", {})
|
|
1496
447
|
.n("AmplifyClient", "ListWebhooksCommand")
|
|
1497
|
-
.sc(ListWebhooks$)
|
|
448
|
+
.sc(schemas_0.ListWebhooks$)
|
|
1498
449
|
.build() {
|
|
1499
450
|
}
|
|
1500
451
|
|
|
@@ -1506,7 +457,7 @@ class StartDeploymentCommand extends smithyClient.Command
|
|
|
1506
457
|
})
|
|
1507
458
|
.s("Amplify", "StartDeployment", {})
|
|
1508
459
|
.n("AmplifyClient", "StartDeploymentCommand")
|
|
1509
|
-
.sc(StartDeployment$)
|
|
460
|
+
.sc(schemas_0.StartDeployment$)
|
|
1510
461
|
.build() {
|
|
1511
462
|
}
|
|
1512
463
|
|
|
@@ -1518,7 +469,7 @@ class StartJobCommand extends smithyClient.Command
|
|
|
1518
469
|
})
|
|
1519
470
|
.s("Amplify", "StartJob", {})
|
|
1520
471
|
.n("AmplifyClient", "StartJobCommand")
|
|
1521
|
-
.sc(StartJob$)
|
|
472
|
+
.sc(schemas_0.StartJob$)
|
|
1522
473
|
.build() {
|
|
1523
474
|
}
|
|
1524
475
|
|
|
@@ -1530,7 +481,7 @@ class StopJobCommand extends smithyClient.Command
|
|
|
1530
481
|
})
|
|
1531
482
|
.s("Amplify", "StopJob", {})
|
|
1532
483
|
.n("AmplifyClient", "StopJobCommand")
|
|
1533
|
-
.sc(StopJob$)
|
|
484
|
+
.sc(schemas_0.StopJob$)
|
|
1534
485
|
.build() {
|
|
1535
486
|
}
|
|
1536
487
|
|
|
@@ -1542,7 +493,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1542
493
|
})
|
|
1543
494
|
.s("Amplify", "TagResource", {})
|
|
1544
495
|
.n("AmplifyClient", "TagResourceCommand")
|
|
1545
|
-
.sc(TagResource$)
|
|
496
|
+
.sc(schemas_0.TagResource$)
|
|
1546
497
|
.build() {
|
|
1547
498
|
}
|
|
1548
499
|
|
|
@@ -1554,7 +505,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1554
505
|
})
|
|
1555
506
|
.s("Amplify", "UntagResource", {})
|
|
1556
507
|
.n("AmplifyClient", "UntagResourceCommand")
|
|
1557
|
-
.sc(UntagResource$)
|
|
508
|
+
.sc(schemas_0.UntagResource$)
|
|
1558
509
|
.build() {
|
|
1559
510
|
}
|
|
1560
511
|
|
|
@@ -1566,7 +517,7 @@ class UpdateAppCommand extends smithyClient.Command
|
|
|
1566
517
|
})
|
|
1567
518
|
.s("Amplify", "UpdateApp", {})
|
|
1568
519
|
.n("AmplifyClient", "UpdateAppCommand")
|
|
1569
|
-
.sc(UpdateApp$)
|
|
520
|
+
.sc(schemas_0.UpdateApp$)
|
|
1570
521
|
.build() {
|
|
1571
522
|
}
|
|
1572
523
|
|
|
@@ -1578,7 +529,7 @@ class UpdateBranchCommand extends smithyClient.Command
|
|
|
1578
529
|
})
|
|
1579
530
|
.s("Amplify", "UpdateBranch", {})
|
|
1580
531
|
.n("AmplifyClient", "UpdateBranchCommand")
|
|
1581
|
-
.sc(UpdateBranch$)
|
|
532
|
+
.sc(schemas_0.UpdateBranch$)
|
|
1582
533
|
.build() {
|
|
1583
534
|
}
|
|
1584
535
|
|
|
@@ -1590,7 +541,7 @@ class UpdateDomainAssociationCommand extends smithyClient.Command
|
|
|
1590
541
|
})
|
|
1591
542
|
.s("Amplify", "UpdateDomainAssociation", {})
|
|
1592
543
|
.n("AmplifyClient", "UpdateDomainAssociationCommand")
|
|
1593
|
-
.sc(UpdateDomainAssociation$)
|
|
544
|
+
.sc(schemas_0.UpdateDomainAssociation$)
|
|
1594
545
|
.build() {
|
|
1595
546
|
}
|
|
1596
547
|
|
|
@@ -1602,7 +553,7 @@ class UpdateWebhookCommand extends smithyClient.Command
|
|
|
1602
553
|
})
|
|
1603
554
|
.s("Amplify", "UpdateWebhook", {})
|
|
1604
555
|
.n("AmplifyClient", "UpdateWebhookCommand")
|
|
1605
|
-
.sc(UpdateWebhook$)
|
|
556
|
+
.sc(schemas_0.UpdateWebhook$)
|
|
1606
557
|
.build() {
|
|
1607
558
|
}
|
|
1608
559
|
|
|
@@ -1750,205 +701,74 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1750
701
|
enumerable: true,
|
|
1751
702
|
get: function () { return smithyClient.Client; }
|
|
1752
703
|
});
|
|
704
|
+
Object.defineProperty(exports, "AmplifyServiceException", {
|
|
705
|
+
enumerable: true,
|
|
706
|
+
get: function () { return AmplifyServiceException.AmplifyServiceException; }
|
|
707
|
+
});
|
|
1753
708
|
exports.Amplify = Amplify;
|
|
1754
709
|
exports.AmplifyClient = AmplifyClient;
|
|
1755
|
-
exports.AmplifyServiceException = AmplifyServiceException;
|
|
1756
|
-
exports.AmplifyServiceException$ = AmplifyServiceException$;
|
|
1757
|
-
exports.App$ = App$;
|
|
1758
|
-
exports.Artifact$ = Artifact$;
|
|
1759
|
-
exports.AutoBranchCreationConfig$ = AutoBranchCreationConfig$;
|
|
1760
|
-
exports.Backend$ = Backend$;
|
|
1761
|
-
exports.BackendEnvironment$ = BackendEnvironment$;
|
|
1762
|
-
exports.BadRequestException = BadRequestException;
|
|
1763
|
-
exports.BadRequestException$ = BadRequestException$;
|
|
1764
|
-
exports.Branch$ = Branch$;
|
|
1765
710
|
exports.BuildComputeType = BuildComputeType;
|
|
1766
|
-
exports.CacheConfig$ = CacheConfig$;
|
|
1767
711
|
exports.CacheConfigType = CacheConfigType;
|
|
1768
|
-
exports.Certificate$ = Certificate$;
|
|
1769
|
-
exports.CertificateSettings$ = CertificateSettings$;
|
|
1770
712
|
exports.CertificateType = CertificateType;
|
|
1771
|
-
exports.CreateApp$ = CreateApp$;
|
|
1772
713
|
exports.CreateAppCommand = CreateAppCommand;
|
|
1773
|
-
exports.CreateAppRequest$ = CreateAppRequest$;
|
|
1774
|
-
exports.CreateAppResult$ = CreateAppResult$;
|
|
1775
|
-
exports.CreateBackendEnvironment$ = CreateBackendEnvironment$;
|
|
1776
714
|
exports.CreateBackendEnvironmentCommand = CreateBackendEnvironmentCommand;
|
|
1777
|
-
exports.CreateBackendEnvironmentRequest$ = CreateBackendEnvironmentRequest$;
|
|
1778
|
-
exports.CreateBackendEnvironmentResult$ = CreateBackendEnvironmentResult$;
|
|
1779
|
-
exports.CreateBranch$ = CreateBranch$;
|
|
1780
715
|
exports.CreateBranchCommand = CreateBranchCommand;
|
|
1781
|
-
exports.CreateBranchRequest$ = CreateBranchRequest$;
|
|
1782
|
-
exports.CreateBranchResult$ = CreateBranchResult$;
|
|
1783
|
-
exports.CreateDeployment$ = CreateDeployment$;
|
|
1784
716
|
exports.CreateDeploymentCommand = CreateDeploymentCommand;
|
|
1785
|
-
exports.CreateDeploymentRequest$ = CreateDeploymentRequest$;
|
|
1786
|
-
exports.CreateDeploymentResult$ = CreateDeploymentResult$;
|
|
1787
|
-
exports.CreateDomainAssociation$ = CreateDomainAssociation$;
|
|
1788
717
|
exports.CreateDomainAssociationCommand = CreateDomainAssociationCommand;
|
|
1789
|
-
exports.CreateDomainAssociationRequest$ = CreateDomainAssociationRequest$;
|
|
1790
|
-
exports.CreateDomainAssociationResult$ = CreateDomainAssociationResult$;
|
|
1791
|
-
exports.CreateWebhook$ = CreateWebhook$;
|
|
1792
718
|
exports.CreateWebhookCommand = CreateWebhookCommand;
|
|
1793
|
-
exports.CreateWebhookRequest$ = CreateWebhookRequest$;
|
|
1794
|
-
exports.CreateWebhookResult$ = CreateWebhookResult$;
|
|
1795
|
-
exports.CustomRule$ = CustomRule$;
|
|
1796
|
-
exports.DeleteApp$ = DeleteApp$;
|
|
1797
719
|
exports.DeleteAppCommand = DeleteAppCommand;
|
|
1798
|
-
exports.DeleteAppRequest$ = DeleteAppRequest$;
|
|
1799
|
-
exports.DeleteAppResult$ = DeleteAppResult$;
|
|
1800
|
-
exports.DeleteBackendEnvironment$ = DeleteBackendEnvironment$;
|
|
1801
720
|
exports.DeleteBackendEnvironmentCommand = DeleteBackendEnvironmentCommand;
|
|
1802
|
-
exports.DeleteBackendEnvironmentRequest$ = DeleteBackendEnvironmentRequest$;
|
|
1803
|
-
exports.DeleteBackendEnvironmentResult$ = DeleteBackendEnvironmentResult$;
|
|
1804
|
-
exports.DeleteBranch$ = DeleteBranch$;
|
|
1805
721
|
exports.DeleteBranchCommand = DeleteBranchCommand;
|
|
1806
|
-
exports.DeleteBranchRequest$ = DeleteBranchRequest$;
|
|
1807
|
-
exports.DeleteBranchResult$ = DeleteBranchResult$;
|
|
1808
|
-
exports.DeleteDomainAssociation$ = DeleteDomainAssociation$;
|
|
1809
722
|
exports.DeleteDomainAssociationCommand = DeleteDomainAssociationCommand;
|
|
1810
|
-
exports.DeleteDomainAssociationRequest$ = DeleteDomainAssociationRequest$;
|
|
1811
|
-
exports.DeleteDomainAssociationResult$ = DeleteDomainAssociationResult$;
|
|
1812
|
-
exports.DeleteJob$ = DeleteJob$;
|
|
1813
723
|
exports.DeleteJobCommand = DeleteJobCommand;
|
|
1814
|
-
exports.DeleteJobRequest$ = DeleteJobRequest$;
|
|
1815
|
-
exports.DeleteJobResult$ = DeleteJobResult$;
|
|
1816
|
-
exports.DeleteWebhook$ = DeleteWebhook$;
|
|
1817
724
|
exports.DeleteWebhookCommand = DeleteWebhookCommand;
|
|
1818
|
-
exports.DeleteWebhookRequest$ = DeleteWebhookRequest$;
|
|
1819
|
-
exports.DeleteWebhookResult$ = DeleteWebhookResult$;
|
|
1820
|
-
exports.DependentServiceFailureException = DependentServiceFailureException;
|
|
1821
|
-
exports.DependentServiceFailureException$ = DependentServiceFailureException$;
|
|
1822
|
-
exports.DomainAssociation$ = DomainAssociation$;
|
|
1823
725
|
exports.DomainStatus = DomainStatus;
|
|
1824
|
-
exports.GenerateAccessLogs$ = GenerateAccessLogs$;
|
|
1825
726
|
exports.GenerateAccessLogsCommand = GenerateAccessLogsCommand;
|
|
1826
|
-
exports.GenerateAccessLogsRequest$ = GenerateAccessLogsRequest$;
|
|
1827
|
-
exports.GenerateAccessLogsResult$ = GenerateAccessLogsResult$;
|
|
1828
|
-
exports.GetApp$ = GetApp$;
|
|
1829
727
|
exports.GetAppCommand = GetAppCommand;
|
|
1830
|
-
exports.GetAppRequest$ = GetAppRequest$;
|
|
1831
|
-
exports.GetAppResult$ = GetAppResult$;
|
|
1832
|
-
exports.GetArtifactUrl$ = GetArtifactUrl$;
|
|
1833
728
|
exports.GetArtifactUrlCommand = GetArtifactUrlCommand;
|
|
1834
|
-
exports.GetArtifactUrlRequest$ = GetArtifactUrlRequest$;
|
|
1835
|
-
exports.GetArtifactUrlResult$ = GetArtifactUrlResult$;
|
|
1836
|
-
exports.GetBackendEnvironment$ = GetBackendEnvironment$;
|
|
1837
729
|
exports.GetBackendEnvironmentCommand = GetBackendEnvironmentCommand;
|
|
1838
|
-
exports.GetBackendEnvironmentRequest$ = GetBackendEnvironmentRequest$;
|
|
1839
|
-
exports.GetBackendEnvironmentResult$ = GetBackendEnvironmentResult$;
|
|
1840
|
-
exports.GetBranch$ = GetBranch$;
|
|
1841
730
|
exports.GetBranchCommand = GetBranchCommand;
|
|
1842
|
-
exports.GetBranchRequest$ = GetBranchRequest$;
|
|
1843
|
-
exports.GetBranchResult$ = GetBranchResult$;
|
|
1844
|
-
exports.GetDomainAssociation$ = GetDomainAssociation$;
|
|
1845
731
|
exports.GetDomainAssociationCommand = GetDomainAssociationCommand;
|
|
1846
|
-
exports.GetDomainAssociationRequest$ = GetDomainAssociationRequest$;
|
|
1847
|
-
exports.GetDomainAssociationResult$ = GetDomainAssociationResult$;
|
|
1848
|
-
exports.GetJob$ = GetJob$;
|
|
1849
732
|
exports.GetJobCommand = GetJobCommand;
|
|
1850
|
-
exports.GetJobRequest$ = GetJobRequest$;
|
|
1851
|
-
exports.GetJobResult$ = GetJobResult$;
|
|
1852
|
-
exports.GetWebhook$ = GetWebhook$;
|
|
1853
733
|
exports.GetWebhookCommand = GetWebhookCommand;
|
|
1854
|
-
exports.GetWebhookRequest$ = GetWebhookRequest$;
|
|
1855
|
-
exports.GetWebhookResult$ = GetWebhookResult$;
|
|
1856
|
-
exports.InternalFailureException = InternalFailureException;
|
|
1857
|
-
exports.InternalFailureException$ = InternalFailureException$;
|
|
1858
|
-
exports.Job$ = Job$;
|
|
1859
|
-
exports.JobConfig$ = JobConfig$;
|
|
1860
734
|
exports.JobStatus = JobStatus;
|
|
1861
|
-
exports.JobSummary$ = JobSummary$;
|
|
1862
735
|
exports.JobType = JobType;
|
|
1863
|
-
exports.LimitExceededException = LimitExceededException;
|
|
1864
|
-
exports.LimitExceededException$ = LimitExceededException$;
|
|
1865
|
-
exports.ListApps$ = ListApps$;
|
|
1866
736
|
exports.ListAppsCommand = ListAppsCommand;
|
|
1867
|
-
exports.ListAppsRequest$ = ListAppsRequest$;
|
|
1868
|
-
exports.ListAppsResult$ = ListAppsResult$;
|
|
1869
|
-
exports.ListArtifacts$ = ListArtifacts$;
|
|
1870
737
|
exports.ListArtifactsCommand = ListArtifactsCommand;
|
|
1871
|
-
exports.ListArtifactsRequest$ = ListArtifactsRequest$;
|
|
1872
|
-
exports.ListArtifactsResult$ = ListArtifactsResult$;
|
|
1873
|
-
exports.ListBackendEnvironments$ = ListBackendEnvironments$;
|
|
1874
738
|
exports.ListBackendEnvironmentsCommand = ListBackendEnvironmentsCommand;
|
|
1875
|
-
exports.ListBackendEnvironmentsRequest$ = ListBackendEnvironmentsRequest$;
|
|
1876
|
-
exports.ListBackendEnvironmentsResult$ = ListBackendEnvironmentsResult$;
|
|
1877
|
-
exports.ListBranches$ = ListBranches$;
|
|
1878
739
|
exports.ListBranchesCommand = ListBranchesCommand;
|
|
1879
|
-
exports.ListBranchesRequest$ = ListBranchesRequest$;
|
|
1880
|
-
exports.ListBranchesResult$ = ListBranchesResult$;
|
|
1881
|
-
exports.ListDomainAssociations$ = ListDomainAssociations$;
|
|
1882
740
|
exports.ListDomainAssociationsCommand = ListDomainAssociationsCommand;
|
|
1883
|
-
exports.ListDomainAssociationsRequest$ = ListDomainAssociationsRequest$;
|
|
1884
|
-
exports.ListDomainAssociationsResult$ = ListDomainAssociationsResult$;
|
|
1885
|
-
exports.ListJobs$ = ListJobs$;
|
|
1886
741
|
exports.ListJobsCommand = ListJobsCommand;
|
|
1887
|
-
exports.ListJobsRequest$ = ListJobsRequest$;
|
|
1888
|
-
exports.ListJobsResult$ = ListJobsResult$;
|
|
1889
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1890
742
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1891
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1892
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1893
|
-
exports.ListWebhooks$ = ListWebhooks$;
|
|
1894
743
|
exports.ListWebhooksCommand = ListWebhooksCommand;
|
|
1895
|
-
exports.ListWebhooksRequest$ = ListWebhooksRequest$;
|
|
1896
|
-
exports.ListWebhooksResult$ = ListWebhooksResult$;
|
|
1897
|
-
exports.NotFoundException = NotFoundException;
|
|
1898
|
-
exports.NotFoundException$ = NotFoundException$;
|
|
1899
744
|
exports.Platform = Platform;
|
|
1900
|
-
exports.ProductionBranch$ = ProductionBranch$;
|
|
1901
745
|
exports.RepositoryCloneMethod = RepositoryCloneMethod;
|
|
1902
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1903
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1904
746
|
exports.SourceUrlType = SourceUrlType;
|
|
1905
747
|
exports.Stage = Stage;
|
|
1906
|
-
exports.StartDeployment$ = StartDeployment$;
|
|
1907
748
|
exports.StartDeploymentCommand = StartDeploymentCommand;
|
|
1908
|
-
exports.StartDeploymentRequest$ = StartDeploymentRequest$;
|
|
1909
|
-
exports.StartDeploymentResult$ = StartDeploymentResult$;
|
|
1910
|
-
exports.StartJob$ = StartJob$;
|
|
1911
749
|
exports.StartJobCommand = StartJobCommand;
|
|
1912
|
-
exports.StartJobRequest$ = StartJobRequest$;
|
|
1913
|
-
exports.StartJobResult$ = StartJobResult$;
|
|
1914
|
-
exports.Step$ = Step$;
|
|
1915
|
-
exports.StopJob$ = StopJob$;
|
|
1916
750
|
exports.StopJobCommand = StopJobCommand;
|
|
1917
|
-
exports.StopJobRequest$ = StopJobRequest$;
|
|
1918
|
-
exports.StopJobResult$ = StopJobResult$;
|
|
1919
|
-
exports.SubDomain$ = SubDomain$;
|
|
1920
|
-
exports.SubDomainSetting$ = SubDomainSetting$;
|
|
1921
|
-
exports.TagResource$ = TagResource$;
|
|
1922
751
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1923
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1924
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1925
|
-
exports.UnauthorizedException = UnauthorizedException;
|
|
1926
|
-
exports.UnauthorizedException$ = UnauthorizedException$;
|
|
1927
|
-
exports.UntagResource$ = UntagResource$;
|
|
1928
752
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1929
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1930
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1931
|
-
exports.UpdateApp$ = UpdateApp$;
|
|
1932
753
|
exports.UpdateAppCommand = UpdateAppCommand;
|
|
1933
|
-
exports.UpdateAppRequest$ = UpdateAppRequest$;
|
|
1934
|
-
exports.UpdateAppResult$ = UpdateAppResult$;
|
|
1935
|
-
exports.UpdateBranch$ = UpdateBranch$;
|
|
1936
754
|
exports.UpdateBranchCommand = UpdateBranchCommand;
|
|
1937
|
-
exports.UpdateBranchRequest$ = UpdateBranchRequest$;
|
|
1938
|
-
exports.UpdateBranchResult$ = UpdateBranchResult$;
|
|
1939
|
-
exports.UpdateDomainAssociation$ = UpdateDomainAssociation$;
|
|
1940
755
|
exports.UpdateDomainAssociationCommand = UpdateDomainAssociationCommand;
|
|
1941
|
-
exports.UpdateDomainAssociationRequest$ = UpdateDomainAssociationRequest$;
|
|
1942
|
-
exports.UpdateDomainAssociationResult$ = UpdateDomainAssociationResult$;
|
|
1943
756
|
exports.UpdateStatus = UpdateStatus;
|
|
1944
|
-
exports.UpdateWebhook$ = UpdateWebhook$;
|
|
1945
757
|
exports.UpdateWebhookCommand = UpdateWebhookCommand;
|
|
1946
|
-
exports.UpdateWebhookRequest$ = UpdateWebhookRequest$;
|
|
1947
|
-
exports.UpdateWebhookResult$ = UpdateWebhookResult$;
|
|
1948
|
-
exports.WafConfiguration$ = WafConfiguration$;
|
|
1949
758
|
exports.WafStatus = WafStatus;
|
|
1950
|
-
exports.Webhook$ = Webhook$;
|
|
1951
759
|
exports.paginateListApps = paginateListApps;
|
|
1952
760
|
exports.paginateListBranches = paginateListBranches;
|
|
1953
761
|
exports.paginateListDomainAssociations = paginateListDomainAssociations;
|
|
1954
762
|
exports.paginateListJobs = paginateListJobs;
|
|
763
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
764
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
765
|
+
enumerable: true,
|
|
766
|
+
get: function () { return schemas_0[k]; }
|
|
767
|
+
});
|
|
768
|
+
});
|
|
769
|
+
Object.keys(errors).forEach(function (k) {
|
|
770
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
771
|
+
enumerable: true,
|
|
772
|
+
get: function () { return errors[k]; }
|
|
773
|
+
});
|
|
774
|
+
});
|