@aws-sdk/client-amplify 3.181.0 → 3.183.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/CHANGELOG.md +8 -0
- package/dist-es/Amplify.js +150 -157
- package/dist-es/AmplifyClient.js +22 -28
- package/dist-es/commands/CreateAppCommand.js +21 -28
- package/dist-es/commands/CreateBackendEnvironmentCommand.js +21 -28
- package/dist-es/commands/CreateBranchCommand.js +21 -28
- package/dist-es/commands/CreateDeploymentCommand.js +21 -28
- package/dist-es/commands/CreateDomainAssociationCommand.js +21 -28
- package/dist-es/commands/CreateWebhookCommand.js +21 -28
- package/dist-es/commands/DeleteAppCommand.js +21 -28
- package/dist-es/commands/DeleteBackendEnvironmentCommand.js +21 -28
- package/dist-es/commands/DeleteBranchCommand.js +21 -28
- package/dist-es/commands/DeleteDomainAssociationCommand.js +21 -28
- package/dist-es/commands/DeleteJobCommand.js +21 -28
- package/dist-es/commands/DeleteWebhookCommand.js +21 -28
- package/dist-es/commands/GenerateAccessLogsCommand.js +21 -28
- package/dist-es/commands/GetAppCommand.js +21 -28
- package/dist-es/commands/GetArtifactUrlCommand.js +21 -28
- package/dist-es/commands/GetBackendEnvironmentCommand.js +21 -28
- package/dist-es/commands/GetBranchCommand.js +21 -28
- package/dist-es/commands/GetDomainAssociationCommand.js +21 -28
- package/dist-es/commands/GetJobCommand.js +21 -28
- package/dist-es/commands/GetWebhookCommand.js +21 -28
- package/dist-es/commands/ListAppsCommand.js +21 -28
- package/dist-es/commands/ListArtifactsCommand.js +21 -28
- package/dist-es/commands/ListBackendEnvironmentsCommand.js +21 -28
- package/dist-es/commands/ListBranchesCommand.js +21 -28
- package/dist-es/commands/ListDomainAssociationsCommand.js +21 -28
- package/dist-es/commands/ListJobsCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/ListWebhooksCommand.js +21 -28
- package/dist-es/commands/StartDeploymentCommand.js +21 -28
- package/dist-es/commands/StartJobCommand.js +21 -28
- package/dist-es/commands/StopJobCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +21 -28
- package/dist-es/commands/UntagResourceCommand.js +21 -28
- package/dist-es/commands/UpdateAppCommand.js +21 -28
- package/dist-es/commands/UpdateBranchCommand.js +21 -28
- package/dist-es/commands/UpdateDomainAssociationCommand.js +21 -28
- package/dist-es/commands/UpdateWebhookCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/AmplifyServiceException.js +5 -10
- package/dist-es/models/models_0.js +379 -173
- package/dist-es/protocols/Aws_restJson1.js +2648 -3725
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/package.json +33 -33
|
@@ -1,18 +1,17 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
2
|
import { AmplifyServiceException as __BaseException } from "./AmplifyServiceException";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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);
|
|
12
13
|
}
|
|
13
|
-
|
|
14
|
-
}(__BaseException));
|
|
15
|
-
export { BadRequestException };
|
|
14
|
+
}
|
|
16
15
|
export var Stage;
|
|
17
16
|
(function (Stage) {
|
|
18
17
|
Stage["BETA"] = "BETA";
|
|
@@ -32,66 +31,66 @@ export var RepositoryCloneMethod;
|
|
|
32
31
|
RepositoryCloneMethod["SSH"] = "SSH";
|
|
33
32
|
RepositoryCloneMethod["TOKEN"] = "TOKEN";
|
|
34
33
|
})(RepositoryCloneMethod || (RepositoryCloneMethod = {}));
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
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);
|
|
43
44
|
}
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
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);
|
|
55
56
|
}
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
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);
|
|
67
68
|
}
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
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);
|
|
79
80
|
}
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
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);
|
|
91
92
|
}
|
|
92
|
-
|
|
93
|
-
}(__BaseException));
|
|
94
|
-
export { NotFoundException };
|
|
93
|
+
}
|
|
95
94
|
export var DomainStatus;
|
|
96
95
|
(function (DomainStatus) {
|
|
97
96
|
DomainStatus["AVAILABLE"] = "AVAILABLE";
|
|
@@ -120,110 +119,317 @@ export var JobStatus;
|
|
|
120
119
|
JobStatus["RUNNING"] = "RUNNING";
|
|
121
120
|
JobStatus["SUCCEED"] = "SUCCEED";
|
|
122
121
|
})(JobStatus || (JobStatus = {}));
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
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;
|
|
132
133
|
}
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
export
|
|
143
|
-
|
|
144
|
-
})
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
export
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
export
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
export
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
export
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
export
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
export
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
export
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
export
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
export
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
export
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
export
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
export
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
export
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
export
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
export
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
export
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
export
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
export
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
export
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
export
|
|
221
|
-
|
|
222
|
-
})
|
|
223
|
-
export
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
export
|
|
228
|
-
|
|
229
|
-
|
|
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
|
+
});
|