@aws-sdk/client-amplify 3.183.0 → 3.185.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.
Files changed (50) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/protocols/Aws_restJson1.js +2 -2
  3. package/dist-es/Amplify.js +157 -150
  4. package/dist-es/AmplifyClient.js +28 -22
  5. package/dist-es/commands/CreateAppCommand.js +28 -21
  6. package/dist-es/commands/CreateBackendEnvironmentCommand.js +28 -21
  7. package/dist-es/commands/CreateBranchCommand.js +28 -21
  8. package/dist-es/commands/CreateDeploymentCommand.js +28 -21
  9. package/dist-es/commands/CreateDomainAssociationCommand.js +28 -21
  10. package/dist-es/commands/CreateWebhookCommand.js +28 -21
  11. package/dist-es/commands/DeleteAppCommand.js +28 -21
  12. package/dist-es/commands/DeleteBackendEnvironmentCommand.js +28 -21
  13. package/dist-es/commands/DeleteBranchCommand.js +28 -21
  14. package/dist-es/commands/DeleteDomainAssociationCommand.js +28 -21
  15. package/dist-es/commands/DeleteJobCommand.js +28 -21
  16. package/dist-es/commands/DeleteWebhookCommand.js +28 -21
  17. package/dist-es/commands/GenerateAccessLogsCommand.js +28 -21
  18. package/dist-es/commands/GetAppCommand.js +28 -21
  19. package/dist-es/commands/GetArtifactUrlCommand.js +28 -21
  20. package/dist-es/commands/GetBackendEnvironmentCommand.js +28 -21
  21. package/dist-es/commands/GetBranchCommand.js +28 -21
  22. package/dist-es/commands/GetDomainAssociationCommand.js +28 -21
  23. package/dist-es/commands/GetJobCommand.js +28 -21
  24. package/dist-es/commands/GetWebhookCommand.js +28 -21
  25. package/dist-es/commands/ListAppsCommand.js +28 -21
  26. package/dist-es/commands/ListArtifactsCommand.js +28 -21
  27. package/dist-es/commands/ListBackendEnvironmentsCommand.js +28 -21
  28. package/dist-es/commands/ListBranchesCommand.js +28 -21
  29. package/dist-es/commands/ListDomainAssociationsCommand.js +28 -21
  30. package/dist-es/commands/ListJobsCommand.js +28 -21
  31. package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
  32. package/dist-es/commands/ListWebhooksCommand.js +28 -21
  33. package/dist-es/commands/StartDeploymentCommand.js +28 -21
  34. package/dist-es/commands/StartJobCommand.js +28 -21
  35. package/dist-es/commands/StopJobCommand.js +28 -21
  36. package/dist-es/commands/TagResourceCommand.js +28 -21
  37. package/dist-es/commands/UntagResourceCommand.js +28 -21
  38. package/dist-es/commands/UpdateAppCommand.js +28 -21
  39. package/dist-es/commands/UpdateBranchCommand.js +28 -21
  40. package/dist-es/commands/UpdateDomainAssociationCommand.js +28 -21
  41. package/dist-es/commands/UpdateWebhookCommand.js +28 -21
  42. package/dist-es/endpoints.js +8 -8
  43. package/dist-es/models/AmplifyServiceException.js +10 -5
  44. package/dist-es/models/models_0.js +173 -379
  45. package/dist-es/protocols/Aws_restJson1.js +3725 -2648
  46. package/dist-es/runtimeConfig.browser.js +12 -26
  47. package/dist-es/runtimeConfig.js +12 -30
  48. package/dist-es/runtimeConfig.native.js +5 -8
  49. package/dist-es/runtimeConfig.shared.js +11 -8
  50. package/package.json +5 -5
@@ -1,17 +1,18 @@
1
+ import { __assign, __extends } from "tslib";
1
2
  import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
2
3
  import { AmplifyServiceException as __BaseException } from "./AmplifyServiceException";
3
- export class BadRequestException extends __BaseException {
4
- constructor(opts) {
5
- super({
6
- name: "BadRequestException",
7
- $fault: "client",
8
- ...opts,
9
- });
10
- this.name = "BadRequestException";
11
- this.$fault = "client";
12
- Object.setPrototypeOf(this, BadRequestException.prototype);
4
+ var BadRequestException = (function (_super) {
5
+ __extends(BadRequestException, _super);
6
+ function BadRequestException(opts) {
7
+ var _this = _super.call(this, __assign({ name: "BadRequestException", $fault: "client" }, opts)) || this;
8
+ _this.name = "BadRequestException";
9
+ _this.$fault = "client";
10
+ Object.setPrototypeOf(_this, BadRequestException.prototype);
11
+ return _this;
13
12
  }
14
- }
13
+ return BadRequestException;
14
+ }(__BaseException));
15
+ export { BadRequestException };
15
16
  export var Stage;
16
17
  (function (Stage) {
17
18
  Stage["BETA"] = "BETA";
@@ -31,66 +32,66 @@ export var RepositoryCloneMethod;
31
32
  RepositoryCloneMethod["SSH"] = "SSH";
32
33
  RepositoryCloneMethod["TOKEN"] = "TOKEN";
33
34
  })(RepositoryCloneMethod || (RepositoryCloneMethod = {}));
34
- export class DependentServiceFailureException extends __BaseException {
35
- constructor(opts) {
36
- super({
37
- name: "DependentServiceFailureException",
38
- $fault: "server",
39
- ...opts,
40
- });
41
- this.name = "DependentServiceFailureException";
42
- this.$fault = "server";
43
- Object.setPrototypeOf(this, DependentServiceFailureException.prototype);
35
+ var DependentServiceFailureException = (function (_super) {
36
+ __extends(DependentServiceFailureException, _super);
37
+ function DependentServiceFailureException(opts) {
38
+ var _this = _super.call(this, __assign({ name: "DependentServiceFailureException", $fault: "server" }, opts)) || this;
39
+ _this.name = "DependentServiceFailureException";
40
+ _this.$fault = "server";
41
+ Object.setPrototypeOf(_this, DependentServiceFailureException.prototype);
42
+ return _this;
44
43
  }
45
- }
46
- export class InternalFailureException extends __BaseException {
47
- constructor(opts) {
48
- super({
49
- name: "InternalFailureException",
50
- $fault: "server",
51
- ...opts,
52
- });
53
- this.name = "InternalFailureException";
54
- this.$fault = "server";
55
- Object.setPrototypeOf(this, InternalFailureException.prototype);
44
+ return DependentServiceFailureException;
45
+ }(__BaseException));
46
+ export { DependentServiceFailureException };
47
+ var InternalFailureException = (function (_super) {
48
+ __extends(InternalFailureException, _super);
49
+ function InternalFailureException(opts) {
50
+ var _this = _super.call(this, __assign({ name: "InternalFailureException", $fault: "server" }, opts)) || this;
51
+ _this.name = "InternalFailureException";
52
+ _this.$fault = "server";
53
+ Object.setPrototypeOf(_this, InternalFailureException.prototype);
54
+ return _this;
56
55
  }
57
- }
58
- export class LimitExceededException extends __BaseException {
59
- constructor(opts) {
60
- super({
61
- name: "LimitExceededException",
62
- $fault: "client",
63
- ...opts,
64
- });
65
- this.name = "LimitExceededException";
66
- this.$fault = "client";
67
- Object.setPrototypeOf(this, LimitExceededException.prototype);
56
+ return InternalFailureException;
57
+ }(__BaseException));
58
+ export { InternalFailureException };
59
+ var LimitExceededException = (function (_super) {
60
+ __extends(LimitExceededException, _super);
61
+ function LimitExceededException(opts) {
62
+ var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
63
+ _this.name = "LimitExceededException";
64
+ _this.$fault = "client";
65
+ Object.setPrototypeOf(_this, LimitExceededException.prototype);
66
+ return _this;
68
67
  }
69
- }
70
- export class UnauthorizedException extends __BaseException {
71
- constructor(opts) {
72
- super({
73
- name: "UnauthorizedException",
74
- $fault: "client",
75
- ...opts,
76
- });
77
- this.name = "UnauthorizedException";
78
- this.$fault = "client";
79
- Object.setPrototypeOf(this, UnauthorizedException.prototype);
68
+ return LimitExceededException;
69
+ }(__BaseException));
70
+ export { LimitExceededException };
71
+ var UnauthorizedException = (function (_super) {
72
+ __extends(UnauthorizedException, _super);
73
+ function UnauthorizedException(opts) {
74
+ var _this = _super.call(this, __assign({ name: "UnauthorizedException", $fault: "client" }, opts)) || this;
75
+ _this.name = "UnauthorizedException";
76
+ _this.$fault = "client";
77
+ Object.setPrototypeOf(_this, UnauthorizedException.prototype);
78
+ return _this;
80
79
  }
81
- }
82
- export class NotFoundException extends __BaseException {
83
- constructor(opts) {
84
- super({
85
- name: "NotFoundException",
86
- $fault: "client",
87
- ...opts,
88
- });
89
- this.name = "NotFoundException";
90
- this.$fault = "client";
91
- Object.setPrototypeOf(this, NotFoundException.prototype);
80
+ return UnauthorizedException;
81
+ }(__BaseException));
82
+ export { UnauthorizedException };
83
+ var NotFoundException = (function (_super) {
84
+ __extends(NotFoundException, _super);
85
+ function NotFoundException(opts) {
86
+ var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
87
+ _this.name = "NotFoundException";
88
+ _this.$fault = "client";
89
+ Object.setPrototypeOf(_this, NotFoundException.prototype);
90
+ return _this;
92
91
  }
93
- }
92
+ return NotFoundException;
93
+ }(__BaseException));
94
+ export { NotFoundException };
94
95
  export var DomainStatus;
95
96
  (function (DomainStatus) {
96
97
  DomainStatus["AVAILABLE"] = "AVAILABLE";
@@ -119,317 +120,110 @@ export var JobStatus;
119
120
  JobStatus["RUNNING"] = "RUNNING";
120
121
  JobStatus["SUCCEED"] = "SUCCEED";
121
122
  })(JobStatus || (JobStatus = {}));
122
- export class ResourceNotFoundException extends __BaseException {
123
- constructor(opts) {
124
- super({
125
- name: "ResourceNotFoundException",
126
- $fault: "client",
127
- ...opts,
128
- });
129
- this.name = "ResourceNotFoundException";
130
- this.$fault = "client";
131
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
132
- this.code = opts.code;
123
+ var ResourceNotFoundException = (function (_super) {
124
+ __extends(ResourceNotFoundException, _super);
125
+ function ResourceNotFoundException(opts) {
126
+ var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
127
+ _this.name = "ResourceNotFoundException";
128
+ _this.$fault = "client";
129
+ Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
130
+ _this.code = opts.code;
131
+ return _this;
133
132
  }
134
- }
135
- export const AutoBranchCreationConfigFilterSensitiveLog = (obj) => ({
136
- ...obj,
137
- ...(obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING }),
138
- ...(obj.buildSpec && { buildSpec: SENSITIVE_STRING }),
139
- });
140
- export const CustomRuleFilterSensitiveLog = (obj) => ({
141
- ...obj,
142
- });
143
- export const CreateAppRequestFilterSensitiveLog = (obj) => ({
144
- ...obj,
145
- ...(obj.oauthToken && { oauthToken: SENSITIVE_STRING }),
146
- ...(obj.accessToken && { accessToken: SENSITIVE_STRING }),
147
- ...(obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING }),
148
- ...(obj.buildSpec && { buildSpec: SENSITIVE_STRING }),
149
- ...(obj.autoBranchCreationConfig && {
150
- autoBranchCreationConfig: AutoBranchCreationConfigFilterSensitiveLog(obj.autoBranchCreationConfig),
151
- }),
152
- });
153
- export const ProductionBranchFilterSensitiveLog = (obj) => ({
154
- ...obj,
155
- });
156
- export const AppFilterSensitiveLog = (obj) => ({
157
- ...obj,
158
- ...(obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING }),
159
- ...(obj.buildSpec && { buildSpec: SENSITIVE_STRING }),
160
- ...(obj.autoBranchCreationConfig && {
161
- autoBranchCreationConfig: AutoBranchCreationConfigFilterSensitiveLog(obj.autoBranchCreationConfig),
162
- }),
163
- });
164
- export const CreateAppResultFilterSensitiveLog = (obj) => ({
165
- ...obj,
166
- ...(obj.app && { app: AppFilterSensitiveLog(obj.app) }),
167
- });
168
- export const CreateBackendEnvironmentRequestFilterSensitiveLog = (obj) => ({
169
- ...obj,
170
- });
171
- export const BackendEnvironmentFilterSensitiveLog = (obj) => ({
172
- ...obj,
173
- });
174
- export const CreateBackendEnvironmentResultFilterSensitiveLog = (obj) => ({
175
- ...obj,
176
- });
177
- export const CreateBranchRequestFilterSensitiveLog = (obj) => ({
178
- ...obj,
179
- ...(obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING }),
180
- ...(obj.buildSpec && { buildSpec: SENSITIVE_STRING }),
181
- });
182
- export const BranchFilterSensitiveLog = (obj) => ({
183
- ...obj,
184
- ...(obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING }),
185
- ...(obj.buildSpec && { buildSpec: SENSITIVE_STRING }),
186
- });
187
- export const CreateBranchResultFilterSensitiveLog = (obj) => ({
188
- ...obj,
189
- ...(obj.branch && { branch: BranchFilterSensitiveLog(obj.branch) }),
190
- });
191
- export const CreateDeploymentRequestFilterSensitiveLog = (obj) => ({
192
- ...obj,
193
- });
194
- export const CreateDeploymentResultFilterSensitiveLog = (obj) => ({
195
- ...obj,
196
- });
197
- export const SubDomainSettingFilterSensitiveLog = (obj) => ({
198
- ...obj,
199
- });
200
- export const CreateDomainAssociationRequestFilterSensitiveLog = (obj) => ({
201
- ...obj,
202
- });
203
- export const SubDomainFilterSensitiveLog = (obj) => ({
204
- ...obj,
205
- });
206
- export const DomainAssociationFilterSensitiveLog = (obj) => ({
207
- ...obj,
208
- });
209
- export const CreateDomainAssociationResultFilterSensitiveLog = (obj) => ({
210
- ...obj,
211
- });
212
- export const CreateWebhookRequestFilterSensitiveLog = (obj) => ({
213
- ...obj,
214
- });
215
- export const WebhookFilterSensitiveLog = (obj) => ({
216
- ...obj,
217
- });
218
- export const CreateWebhookResultFilterSensitiveLog = (obj) => ({
219
- ...obj,
220
- });
221
- export const DeleteAppRequestFilterSensitiveLog = (obj) => ({
222
- ...obj,
223
- });
224
- export const DeleteAppResultFilterSensitiveLog = (obj) => ({
225
- ...obj,
226
- ...(obj.app && { app: AppFilterSensitiveLog(obj.app) }),
227
- });
228
- export const DeleteBackendEnvironmentRequestFilterSensitiveLog = (obj) => ({
229
- ...obj,
230
- });
231
- export const DeleteBackendEnvironmentResultFilterSensitiveLog = (obj) => ({
232
- ...obj,
233
- });
234
- export const DeleteBranchRequestFilterSensitiveLog = (obj) => ({
235
- ...obj,
236
- });
237
- export const DeleteBranchResultFilterSensitiveLog = (obj) => ({
238
- ...obj,
239
- ...(obj.branch && { branch: BranchFilterSensitiveLog(obj.branch) }),
240
- });
241
- export const DeleteDomainAssociationRequestFilterSensitiveLog = (obj) => ({
242
- ...obj,
243
- });
244
- export const DeleteDomainAssociationResultFilterSensitiveLog = (obj) => ({
245
- ...obj,
246
- });
247
- export const DeleteJobRequestFilterSensitiveLog = (obj) => ({
248
- ...obj,
249
- });
250
- export const JobSummaryFilterSensitiveLog = (obj) => ({
251
- ...obj,
252
- });
253
- export const DeleteJobResultFilterSensitiveLog = (obj) => ({
254
- ...obj,
255
- });
256
- export const DeleteWebhookRequestFilterSensitiveLog = (obj) => ({
257
- ...obj,
258
- });
259
- export const DeleteWebhookResultFilterSensitiveLog = (obj) => ({
260
- ...obj,
261
- });
262
- export const GenerateAccessLogsRequestFilterSensitiveLog = (obj) => ({
263
- ...obj,
264
- });
265
- export const GenerateAccessLogsResultFilterSensitiveLog = (obj) => ({
266
- ...obj,
267
- });
268
- export const GetAppRequestFilterSensitiveLog = (obj) => ({
269
- ...obj,
270
- });
271
- export const GetAppResultFilterSensitiveLog = (obj) => ({
272
- ...obj,
273
- ...(obj.app && { app: AppFilterSensitiveLog(obj.app) }),
274
- });
275
- export const GetArtifactUrlRequestFilterSensitiveLog = (obj) => ({
276
- ...obj,
277
- });
278
- export const GetArtifactUrlResultFilterSensitiveLog = (obj) => ({
279
- ...obj,
280
- });
281
- export const GetBackendEnvironmentRequestFilterSensitiveLog = (obj) => ({
282
- ...obj,
283
- });
284
- export const GetBackendEnvironmentResultFilterSensitiveLog = (obj) => ({
285
- ...obj,
286
- });
287
- export const GetBranchRequestFilterSensitiveLog = (obj) => ({
288
- ...obj,
289
- });
290
- export const GetBranchResultFilterSensitiveLog = (obj) => ({
291
- ...obj,
292
- ...(obj.branch && { branch: BranchFilterSensitiveLog(obj.branch) }),
293
- });
294
- export const GetDomainAssociationRequestFilterSensitiveLog = (obj) => ({
295
- ...obj,
296
- });
297
- export const GetDomainAssociationResultFilterSensitiveLog = (obj) => ({
298
- ...obj,
299
- });
300
- export const GetJobRequestFilterSensitiveLog = (obj) => ({
301
- ...obj,
302
- });
303
- export const StepFilterSensitiveLog = (obj) => ({
304
- ...obj,
305
- });
306
- export const JobFilterSensitiveLog = (obj) => ({
307
- ...obj,
308
- });
309
- export const GetJobResultFilterSensitiveLog = (obj) => ({
310
- ...obj,
311
- });
312
- export const GetWebhookRequestFilterSensitiveLog = (obj) => ({
313
- ...obj,
314
- });
315
- export const GetWebhookResultFilterSensitiveLog = (obj) => ({
316
- ...obj,
317
- });
318
- export const ListAppsRequestFilterSensitiveLog = (obj) => ({
319
- ...obj,
320
- });
321
- export const ListAppsResultFilterSensitiveLog = (obj) => ({
322
- ...obj,
323
- ...(obj.apps && { apps: obj.apps.map((item) => AppFilterSensitiveLog(item)) }),
324
- });
325
- export const ListArtifactsRequestFilterSensitiveLog = (obj) => ({
326
- ...obj,
327
- });
328
- export const ArtifactFilterSensitiveLog = (obj) => ({
329
- ...obj,
330
- });
331
- export const ListArtifactsResultFilterSensitiveLog = (obj) => ({
332
- ...obj,
333
- });
334
- export const ListBackendEnvironmentsRequestFilterSensitiveLog = (obj) => ({
335
- ...obj,
336
- });
337
- export const ListBackendEnvironmentsResultFilterSensitiveLog = (obj) => ({
338
- ...obj,
339
- });
340
- export const ListBranchesRequestFilterSensitiveLog = (obj) => ({
341
- ...obj,
342
- });
343
- export const ListBranchesResultFilterSensitiveLog = (obj) => ({
344
- ...obj,
345
- ...(obj.branches && { branches: obj.branches.map((item) => BranchFilterSensitiveLog(item)) }),
346
- });
347
- export const ListDomainAssociationsRequestFilterSensitiveLog = (obj) => ({
348
- ...obj,
349
- });
350
- export const ListDomainAssociationsResultFilterSensitiveLog = (obj) => ({
351
- ...obj,
352
- });
353
- export const ListJobsRequestFilterSensitiveLog = (obj) => ({
354
- ...obj,
355
- });
356
- export const ListJobsResultFilterSensitiveLog = (obj) => ({
357
- ...obj,
358
- });
359
- export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
360
- ...obj,
361
- });
362
- export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
363
- ...obj,
364
- });
365
- export const ListWebhooksRequestFilterSensitiveLog = (obj) => ({
366
- ...obj,
367
- });
368
- export const ListWebhooksResultFilterSensitiveLog = (obj) => ({
369
- ...obj,
370
- });
371
- export const StartDeploymentRequestFilterSensitiveLog = (obj) => ({
372
- ...obj,
373
- });
374
- export const StartDeploymentResultFilterSensitiveLog = (obj) => ({
375
- ...obj,
376
- });
377
- export const StartJobRequestFilterSensitiveLog = (obj) => ({
378
- ...obj,
379
- });
380
- export const StartJobResultFilterSensitiveLog = (obj) => ({
381
- ...obj,
382
- });
383
- export const StopJobRequestFilterSensitiveLog = (obj) => ({
384
- ...obj,
385
- });
386
- export const StopJobResultFilterSensitiveLog = (obj) => ({
387
- ...obj,
388
- });
389
- export const TagResourceRequestFilterSensitiveLog = (obj) => ({
390
- ...obj,
391
- });
392
- export const TagResourceResponseFilterSensitiveLog = (obj) => ({
393
- ...obj,
394
- });
395
- export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
396
- ...obj,
397
- });
398
- export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
399
- ...obj,
400
- });
401
- export const UpdateAppRequestFilterSensitiveLog = (obj) => ({
402
- ...obj,
403
- ...(obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING }),
404
- ...(obj.buildSpec && { buildSpec: SENSITIVE_STRING }),
405
- ...(obj.autoBranchCreationConfig && {
406
- autoBranchCreationConfig: AutoBranchCreationConfigFilterSensitiveLog(obj.autoBranchCreationConfig),
407
- }),
408
- ...(obj.oauthToken && { oauthToken: SENSITIVE_STRING }),
409
- ...(obj.accessToken && { accessToken: SENSITIVE_STRING }),
410
- });
411
- export const UpdateAppResultFilterSensitiveLog = (obj) => ({
412
- ...obj,
413
- ...(obj.app && { app: AppFilterSensitiveLog(obj.app) }),
414
- });
415
- export const UpdateBranchRequestFilterSensitiveLog = (obj) => ({
416
- ...obj,
417
- ...(obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING }),
418
- ...(obj.buildSpec && { buildSpec: SENSITIVE_STRING }),
419
- });
420
- export const UpdateBranchResultFilterSensitiveLog = (obj) => ({
421
- ...obj,
422
- ...(obj.branch && { branch: BranchFilterSensitiveLog(obj.branch) }),
423
- });
424
- export const UpdateDomainAssociationRequestFilterSensitiveLog = (obj) => ({
425
- ...obj,
426
- });
427
- export const UpdateDomainAssociationResultFilterSensitiveLog = (obj) => ({
428
- ...obj,
429
- });
430
- export const UpdateWebhookRequestFilterSensitiveLog = (obj) => ({
431
- ...obj,
432
- });
433
- export const UpdateWebhookResultFilterSensitiveLog = (obj) => ({
434
- ...obj,
435
- });
133
+ return ResourceNotFoundException;
134
+ }(__BaseException));
135
+ export { ResourceNotFoundException };
136
+ export var AutoBranchCreationConfigFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING })), (obj.buildSpec && { buildSpec: SENSITIVE_STRING }))); };
137
+ export var CustomRuleFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
138
+ export var CreateAppRequestFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign(__assign({}, obj), (obj.oauthToken && { oauthToken: SENSITIVE_STRING })), (obj.accessToken && { accessToken: SENSITIVE_STRING })), (obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING })), (obj.buildSpec && { buildSpec: SENSITIVE_STRING })), (obj.autoBranchCreationConfig && {
139
+ autoBranchCreationConfig: AutoBranchCreationConfigFilterSensitiveLog(obj.autoBranchCreationConfig),
140
+ }))); };
141
+ export var ProductionBranchFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
142
+ export var AppFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign({}, obj), (obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING })), (obj.buildSpec && { buildSpec: SENSITIVE_STRING })), (obj.autoBranchCreationConfig && {
143
+ autoBranchCreationConfig: AutoBranchCreationConfigFilterSensitiveLog(obj.autoBranchCreationConfig),
144
+ }))); };
145
+ export var CreateAppResultFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.app && { app: AppFilterSensitiveLog(obj.app) }))); };
146
+ export var CreateBackendEnvironmentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
147
+ export var BackendEnvironmentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
148
+ export var CreateBackendEnvironmentResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
149
+ export var CreateBranchRequestFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING })), (obj.buildSpec && { buildSpec: SENSITIVE_STRING }))); };
150
+ export var BranchFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING })), (obj.buildSpec && { buildSpec: SENSITIVE_STRING }))); };
151
+ export var CreateBranchResultFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.branch && { branch: BranchFilterSensitiveLog(obj.branch) }))); };
152
+ export var CreateDeploymentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
153
+ export var CreateDeploymentResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
154
+ export var SubDomainSettingFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
155
+ export var CreateDomainAssociationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
156
+ export var SubDomainFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
157
+ export var DomainAssociationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
158
+ export var CreateDomainAssociationResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
159
+ export var CreateWebhookRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
160
+ export var WebhookFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
161
+ export var CreateWebhookResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
162
+ export var DeleteAppRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
163
+ export var DeleteAppResultFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.app && { app: AppFilterSensitiveLog(obj.app) }))); };
164
+ export var DeleteBackendEnvironmentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
165
+ export var DeleteBackendEnvironmentResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
166
+ export var DeleteBranchRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
167
+ export var DeleteBranchResultFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.branch && { branch: BranchFilterSensitiveLog(obj.branch) }))); };
168
+ export var DeleteDomainAssociationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
169
+ export var DeleteDomainAssociationResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
170
+ export var DeleteJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
171
+ export var JobSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
172
+ export var DeleteJobResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
173
+ export var DeleteWebhookRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
174
+ export var DeleteWebhookResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
175
+ export var GenerateAccessLogsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
176
+ export var GenerateAccessLogsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
177
+ export var GetAppRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
178
+ export var GetAppResultFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.app && { app: AppFilterSensitiveLog(obj.app) }))); };
179
+ export var GetArtifactUrlRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
180
+ export var GetArtifactUrlResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
181
+ export var GetBackendEnvironmentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
182
+ export var GetBackendEnvironmentResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
183
+ export var GetBranchRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
184
+ export var GetBranchResultFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.branch && { branch: BranchFilterSensitiveLog(obj.branch) }))); };
185
+ export var GetDomainAssociationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
186
+ export var GetDomainAssociationResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
187
+ export var GetJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
188
+ export var StepFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
189
+ export var JobFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
190
+ export var GetJobResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
191
+ export var GetWebhookRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
192
+ export var GetWebhookResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
193
+ export var ListAppsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
194
+ export var ListAppsResultFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.apps && { apps: obj.apps.map(function (item) { return AppFilterSensitiveLog(item); }) }))); };
195
+ export var ListArtifactsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
196
+ export var ArtifactFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
197
+ export var ListArtifactsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
198
+ export var ListBackendEnvironmentsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
199
+ export var ListBackendEnvironmentsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
200
+ export var ListBranchesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
201
+ export var ListBranchesResultFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.branches && { branches: obj.branches.map(function (item) { return BranchFilterSensitiveLog(item); }) }))); };
202
+ export var ListDomainAssociationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
203
+ export var ListDomainAssociationsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
204
+ export var ListJobsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
205
+ export var ListJobsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
206
+ export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
207
+ export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
208
+ export var ListWebhooksRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
209
+ export var ListWebhooksResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
210
+ export var StartDeploymentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
211
+ export var StartDeploymentResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
212
+ export var StartJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
213
+ export var StartJobResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
214
+ export var StopJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
215
+ export var StopJobResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
216
+ export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
217
+ export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
218
+ export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
219
+ export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
220
+ export var UpdateAppRequestFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign(__assign({}, obj), (obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING })), (obj.buildSpec && { buildSpec: SENSITIVE_STRING })), (obj.autoBranchCreationConfig && {
221
+ autoBranchCreationConfig: AutoBranchCreationConfigFilterSensitiveLog(obj.autoBranchCreationConfig),
222
+ })), (obj.oauthToken && { oauthToken: SENSITIVE_STRING })), (obj.accessToken && { accessToken: SENSITIVE_STRING }))); };
223
+ export var UpdateAppResultFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.app && { app: AppFilterSensitiveLog(obj.app) }))); };
224
+ export var UpdateBranchRequestFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING })), (obj.buildSpec && { buildSpec: SENSITIVE_STRING }))); };
225
+ export var UpdateBranchResultFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.branch && { branch: BranchFilterSensitiveLog(obj.branch) }))); };
226
+ export var UpdateDomainAssociationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
227
+ export var UpdateDomainAssociationResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
228
+ export var UpdateWebhookRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
229
+ export var UpdateWebhookResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };