@aws-sdk/client-ecr 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.
Files changed (61) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-es/ECR.js +166 -173
  3. package/dist-es/ECRClient.js +22 -28
  4. package/dist-es/commands/BatchCheckLayerAvailabilityCommand.js +21 -28
  5. package/dist-es/commands/BatchDeleteImageCommand.js +21 -28
  6. package/dist-es/commands/BatchGetImageCommand.js +21 -28
  7. package/dist-es/commands/BatchGetRepositoryScanningConfigurationCommand.js +21 -28
  8. package/dist-es/commands/CompleteLayerUploadCommand.js +21 -28
  9. package/dist-es/commands/CreatePullThroughCacheRuleCommand.js +21 -28
  10. package/dist-es/commands/CreateRepositoryCommand.js +21 -28
  11. package/dist-es/commands/DeleteLifecyclePolicyCommand.js +21 -28
  12. package/dist-es/commands/DeletePullThroughCacheRuleCommand.js +21 -28
  13. package/dist-es/commands/DeleteRegistryPolicyCommand.js +21 -28
  14. package/dist-es/commands/DeleteRepositoryCommand.js +21 -28
  15. package/dist-es/commands/DeleteRepositoryPolicyCommand.js +21 -28
  16. package/dist-es/commands/DescribeImageReplicationStatusCommand.js +21 -28
  17. package/dist-es/commands/DescribeImageScanFindingsCommand.js +21 -28
  18. package/dist-es/commands/DescribeImagesCommand.js +21 -28
  19. package/dist-es/commands/DescribePullThroughCacheRulesCommand.js +21 -28
  20. package/dist-es/commands/DescribeRegistryCommand.js +21 -28
  21. package/dist-es/commands/DescribeRepositoriesCommand.js +21 -28
  22. package/dist-es/commands/GetAuthorizationTokenCommand.js +21 -28
  23. package/dist-es/commands/GetDownloadUrlForLayerCommand.js +21 -28
  24. package/dist-es/commands/GetLifecyclePolicyCommand.js +21 -28
  25. package/dist-es/commands/GetLifecyclePolicyPreviewCommand.js +21 -28
  26. package/dist-es/commands/GetRegistryPolicyCommand.js +21 -28
  27. package/dist-es/commands/GetRegistryScanningConfigurationCommand.js +21 -28
  28. package/dist-es/commands/GetRepositoryPolicyCommand.js +21 -28
  29. package/dist-es/commands/InitiateLayerUploadCommand.js +21 -28
  30. package/dist-es/commands/ListImagesCommand.js +21 -28
  31. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  32. package/dist-es/commands/PutImageCommand.js +21 -28
  33. package/dist-es/commands/PutImageScanningConfigurationCommand.js +21 -28
  34. package/dist-es/commands/PutImageTagMutabilityCommand.js +21 -28
  35. package/dist-es/commands/PutLifecyclePolicyCommand.js +21 -28
  36. package/dist-es/commands/PutRegistryPolicyCommand.js +21 -28
  37. package/dist-es/commands/PutRegistryScanningConfigurationCommand.js +21 -28
  38. package/dist-es/commands/PutReplicationConfigurationCommand.js +21 -28
  39. package/dist-es/commands/SetRepositoryPolicyCommand.js +21 -28
  40. package/dist-es/commands/StartImageScanCommand.js +21 -28
  41. package/dist-es/commands/StartLifecyclePolicyPreviewCommand.js +21 -28
  42. package/dist-es/commands/TagResourceCommand.js +21 -28
  43. package/dist-es/commands/UntagResourceCommand.js +21 -28
  44. package/dist-es/commands/UploadLayerPartCommand.js +21 -28
  45. package/dist-es/endpoints.js +8 -8
  46. package/dist-es/models/ECRServiceException.js +5 -10
  47. package/dist-es/models/models_0.js +782 -529
  48. package/dist-es/pagination/DescribeImageScanFindingsPaginator.js +25 -68
  49. package/dist-es/pagination/DescribeImagesPaginator.js +25 -68
  50. package/dist-es/pagination/DescribePullThroughCacheRulesPaginator.js +25 -68
  51. package/dist-es/pagination/DescribeRepositoriesPaginator.js +25 -68
  52. package/dist-es/pagination/GetLifecyclePolicyPreviewPaginator.js +25 -68
  53. package/dist-es/pagination/ListImagesPaginator.js +25 -68
  54. package/dist-es/protocols/Aws_json1_1.js +3083 -3875
  55. package/dist-es/runtimeConfig.browser.js +26 -12
  56. package/dist-es/runtimeConfig.js +30 -12
  57. package/dist-es/runtimeConfig.native.js +8 -5
  58. package/dist-es/runtimeConfig.shared.js +8 -11
  59. package/dist-es/waiters/waitForImageScanComplete.js +36 -56
  60. package/dist-es/waiters/waitForLifecyclePolicyPreviewComplete.js +36 -56
  61. package/package.json +34 -34
@@ -1,4 +1,3 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { ECRServiceException as __BaseException } from "./ECRServiceException";
3
2
  export var LayerFailureCode;
4
3
  (function (LayerFailureCode) {
@@ -10,42 +9,42 @@ export var LayerAvailability;
10
9
  LayerAvailability["AVAILABLE"] = "AVAILABLE";
11
10
  LayerAvailability["UNAVAILABLE"] = "UNAVAILABLE";
12
11
  })(LayerAvailability || (LayerAvailability = {}));
13
- var InvalidParameterException = (function (_super) {
14
- __extends(InvalidParameterException, _super);
15
- function InvalidParameterException(opts) {
16
- var _this = _super.call(this, __assign({ name: "InvalidParameterException", $fault: "client" }, opts)) || this;
17
- _this.name = "InvalidParameterException";
18
- _this.$fault = "client";
19
- Object.setPrototypeOf(_this, InvalidParameterException.prototype);
20
- return _this;
21
- }
22
- return InvalidParameterException;
23
- }(__BaseException));
24
- export { InvalidParameterException };
25
- var RepositoryNotFoundException = (function (_super) {
26
- __extends(RepositoryNotFoundException, _super);
27
- function RepositoryNotFoundException(opts) {
28
- var _this = _super.call(this, __assign({ name: "RepositoryNotFoundException", $fault: "client" }, opts)) || this;
29
- _this.name = "RepositoryNotFoundException";
30
- _this.$fault = "client";
31
- Object.setPrototypeOf(_this, RepositoryNotFoundException.prototype);
32
- return _this;
33
- }
34
- return RepositoryNotFoundException;
35
- }(__BaseException));
36
- export { RepositoryNotFoundException };
37
- var ServerException = (function (_super) {
38
- __extends(ServerException, _super);
39
- function ServerException(opts) {
40
- var _this = _super.call(this, __assign({ name: "ServerException", $fault: "server" }, opts)) || this;
41
- _this.name = "ServerException";
42
- _this.$fault = "server";
43
- Object.setPrototypeOf(_this, ServerException.prototype);
44
- return _this;
45
- }
46
- return ServerException;
47
- }(__BaseException));
48
- export { ServerException };
12
+ export class InvalidParameterException extends __BaseException {
13
+ constructor(opts) {
14
+ super({
15
+ name: "InvalidParameterException",
16
+ $fault: "client",
17
+ ...opts,
18
+ });
19
+ this.name = "InvalidParameterException";
20
+ this.$fault = "client";
21
+ Object.setPrototypeOf(this, InvalidParameterException.prototype);
22
+ }
23
+ }
24
+ export class RepositoryNotFoundException extends __BaseException {
25
+ constructor(opts) {
26
+ super({
27
+ name: "RepositoryNotFoundException",
28
+ $fault: "client",
29
+ ...opts,
30
+ });
31
+ this.name = "RepositoryNotFoundException";
32
+ this.$fault = "client";
33
+ Object.setPrototypeOf(this, RepositoryNotFoundException.prototype);
34
+ }
35
+ }
36
+ export class ServerException extends __BaseException {
37
+ constructor(opts) {
38
+ super({
39
+ name: "ServerException",
40
+ $fault: "server",
41
+ ...opts,
42
+ });
43
+ this.name = "ServerException";
44
+ this.$fault = "server";
45
+ Object.setPrototypeOf(this, ServerException.prototype);
46
+ }
47
+ }
49
48
  export var ImageFailureCode;
50
49
  (function (ImageFailureCode) {
51
50
  ImageFailureCode["ImageNotFound"] = "ImageNotFound";
@@ -70,127 +69,127 @@ export var ScanFrequency;
70
69
  ScanFrequency["MANUAL"] = "MANUAL";
71
70
  ScanFrequency["SCAN_ON_PUSH"] = "SCAN_ON_PUSH";
72
71
  })(ScanFrequency || (ScanFrequency = {}));
73
- var ValidationException = (function (_super) {
74
- __extends(ValidationException, _super);
75
- function ValidationException(opts) {
76
- var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
77
- _this.name = "ValidationException";
78
- _this.$fault = "client";
79
- Object.setPrototypeOf(_this, ValidationException.prototype);
80
- return _this;
81
- }
82
- return ValidationException;
83
- }(__BaseException));
84
- export { ValidationException };
85
- var EmptyUploadException = (function (_super) {
86
- __extends(EmptyUploadException, _super);
87
- function EmptyUploadException(opts) {
88
- var _this = _super.call(this, __assign({ name: "EmptyUploadException", $fault: "client" }, opts)) || this;
89
- _this.name = "EmptyUploadException";
90
- _this.$fault = "client";
91
- Object.setPrototypeOf(_this, EmptyUploadException.prototype);
92
- return _this;
93
- }
94
- return EmptyUploadException;
95
- }(__BaseException));
96
- export { EmptyUploadException };
97
- var InvalidLayerException = (function (_super) {
98
- __extends(InvalidLayerException, _super);
99
- function InvalidLayerException(opts) {
100
- var _this = _super.call(this, __assign({ name: "InvalidLayerException", $fault: "client" }, opts)) || this;
101
- _this.name = "InvalidLayerException";
102
- _this.$fault = "client";
103
- Object.setPrototypeOf(_this, InvalidLayerException.prototype);
104
- return _this;
105
- }
106
- return InvalidLayerException;
107
- }(__BaseException));
108
- export { InvalidLayerException };
109
- var KmsException = (function (_super) {
110
- __extends(KmsException, _super);
111
- function KmsException(opts) {
112
- var _this = _super.call(this, __assign({ name: "KmsException", $fault: "client" }, opts)) || this;
113
- _this.name = "KmsException";
114
- _this.$fault = "client";
115
- Object.setPrototypeOf(_this, KmsException.prototype);
116
- _this.kmsError = opts.kmsError;
117
- return _this;
118
- }
119
- return KmsException;
120
- }(__BaseException));
121
- export { KmsException };
122
- var LayerAlreadyExistsException = (function (_super) {
123
- __extends(LayerAlreadyExistsException, _super);
124
- function LayerAlreadyExistsException(opts) {
125
- var _this = _super.call(this, __assign({ name: "LayerAlreadyExistsException", $fault: "client" }, opts)) || this;
126
- _this.name = "LayerAlreadyExistsException";
127
- _this.$fault = "client";
128
- Object.setPrototypeOf(_this, LayerAlreadyExistsException.prototype);
129
- return _this;
130
- }
131
- return LayerAlreadyExistsException;
132
- }(__BaseException));
133
- export { LayerAlreadyExistsException };
134
- var LayerPartTooSmallException = (function (_super) {
135
- __extends(LayerPartTooSmallException, _super);
136
- function LayerPartTooSmallException(opts) {
137
- var _this = _super.call(this, __assign({ name: "LayerPartTooSmallException", $fault: "client" }, opts)) || this;
138
- _this.name = "LayerPartTooSmallException";
139
- _this.$fault = "client";
140
- Object.setPrototypeOf(_this, LayerPartTooSmallException.prototype);
141
- return _this;
142
- }
143
- return LayerPartTooSmallException;
144
- }(__BaseException));
145
- export { LayerPartTooSmallException };
146
- var UploadNotFoundException = (function (_super) {
147
- __extends(UploadNotFoundException, _super);
148
- function UploadNotFoundException(opts) {
149
- var _this = _super.call(this, __assign({ name: "UploadNotFoundException", $fault: "client" }, opts)) || this;
150
- _this.name = "UploadNotFoundException";
151
- _this.$fault = "client";
152
- Object.setPrototypeOf(_this, UploadNotFoundException.prototype);
153
- return _this;
154
- }
155
- return UploadNotFoundException;
156
- }(__BaseException));
157
- export { UploadNotFoundException };
158
- var LimitExceededException = (function (_super) {
159
- __extends(LimitExceededException, _super);
160
- function LimitExceededException(opts) {
161
- var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
162
- _this.name = "LimitExceededException";
163
- _this.$fault = "client";
164
- Object.setPrototypeOf(_this, LimitExceededException.prototype);
165
- return _this;
166
- }
167
- return LimitExceededException;
168
- }(__BaseException));
169
- export { LimitExceededException };
170
- var PullThroughCacheRuleAlreadyExistsException = (function (_super) {
171
- __extends(PullThroughCacheRuleAlreadyExistsException, _super);
172
- function PullThroughCacheRuleAlreadyExistsException(opts) {
173
- var _this = _super.call(this, __assign({ name: "PullThroughCacheRuleAlreadyExistsException", $fault: "client" }, opts)) || this;
174
- _this.name = "PullThroughCacheRuleAlreadyExistsException";
175
- _this.$fault = "client";
176
- Object.setPrototypeOf(_this, PullThroughCacheRuleAlreadyExistsException.prototype);
177
- return _this;
178
- }
179
- return PullThroughCacheRuleAlreadyExistsException;
180
- }(__BaseException));
181
- export { PullThroughCacheRuleAlreadyExistsException };
182
- var UnsupportedUpstreamRegistryException = (function (_super) {
183
- __extends(UnsupportedUpstreamRegistryException, _super);
184
- function UnsupportedUpstreamRegistryException(opts) {
185
- var _this = _super.call(this, __assign({ name: "UnsupportedUpstreamRegistryException", $fault: "client" }, opts)) || this;
186
- _this.name = "UnsupportedUpstreamRegistryException";
187
- _this.$fault = "client";
188
- Object.setPrototypeOf(_this, UnsupportedUpstreamRegistryException.prototype);
189
- return _this;
190
- }
191
- return UnsupportedUpstreamRegistryException;
192
- }(__BaseException));
193
- export { UnsupportedUpstreamRegistryException };
72
+ export class ValidationException extends __BaseException {
73
+ constructor(opts) {
74
+ super({
75
+ name: "ValidationException",
76
+ $fault: "client",
77
+ ...opts,
78
+ });
79
+ this.name = "ValidationException";
80
+ this.$fault = "client";
81
+ Object.setPrototypeOf(this, ValidationException.prototype);
82
+ }
83
+ }
84
+ export class EmptyUploadException extends __BaseException {
85
+ constructor(opts) {
86
+ super({
87
+ name: "EmptyUploadException",
88
+ $fault: "client",
89
+ ...opts,
90
+ });
91
+ this.name = "EmptyUploadException";
92
+ this.$fault = "client";
93
+ Object.setPrototypeOf(this, EmptyUploadException.prototype);
94
+ }
95
+ }
96
+ export class InvalidLayerException extends __BaseException {
97
+ constructor(opts) {
98
+ super({
99
+ name: "InvalidLayerException",
100
+ $fault: "client",
101
+ ...opts,
102
+ });
103
+ this.name = "InvalidLayerException";
104
+ this.$fault = "client";
105
+ Object.setPrototypeOf(this, InvalidLayerException.prototype);
106
+ }
107
+ }
108
+ export class KmsException extends __BaseException {
109
+ constructor(opts) {
110
+ super({
111
+ name: "KmsException",
112
+ $fault: "client",
113
+ ...opts,
114
+ });
115
+ this.name = "KmsException";
116
+ this.$fault = "client";
117
+ Object.setPrototypeOf(this, KmsException.prototype);
118
+ this.kmsError = opts.kmsError;
119
+ }
120
+ }
121
+ export class LayerAlreadyExistsException extends __BaseException {
122
+ constructor(opts) {
123
+ super({
124
+ name: "LayerAlreadyExistsException",
125
+ $fault: "client",
126
+ ...opts,
127
+ });
128
+ this.name = "LayerAlreadyExistsException";
129
+ this.$fault = "client";
130
+ Object.setPrototypeOf(this, LayerAlreadyExistsException.prototype);
131
+ }
132
+ }
133
+ export class LayerPartTooSmallException extends __BaseException {
134
+ constructor(opts) {
135
+ super({
136
+ name: "LayerPartTooSmallException",
137
+ $fault: "client",
138
+ ...opts,
139
+ });
140
+ this.name = "LayerPartTooSmallException";
141
+ this.$fault = "client";
142
+ Object.setPrototypeOf(this, LayerPartTooSmallException.prototype);
143
+ }
144
+ }
145
+ export class UploadNotFoundException extends __BaseException {
146
+ constructor(opts) {
147
+ super({
148
+ name: "UploadNotFoundException",
149
+ $fault: "client",
150
+ ...opts,
151
+ });
152
+ this.name = "UploadNotFoundException";
153
+ this.$fault = "client";
154
+ Object.setPrototypeOf(this, UploadNotFoundException.prototype);
155
+ }
156
+ }
157
+ export class LimitExceededException extends __BaseException {
158
+ constructor(opts) {
159
+ super({
160
+ name: "LimitExceededException",
161
+ $fault: "client",
162
+ ...opts,
163
+ });
164
+ this.name = "LimitExceededException";
165
+ this.$fault = "client";
166
+ Object.setPrototypeOf(this, LimitExceededException.prototype);
167
+ }
168
+ }
169
+ export class PullThroughCacheRuleAlreadyExistsException extends __BaseException {
170
+ constructor(opts) {
171
+ super({
172
+ name: "PullThroughCacheRuleAlreadyExistsException",
173
+ $fault: "client",
174
+ ...opts,
175
+ });
176
+ this.name = "PullThroughCacheRuleAlreadyExistsException";
177
+ this.$fault = "client";
178
+ Object.setPrototypeOf(this, PullThroughCacheRuleAlreadyExistsException.prototype);
179
+ }
180
+ }
181
+ export class UnsupportedUpstreamRegistryException extends __BaseException {
182
+ constructor(opts) {
183
+ super({
184
+ name: "UnsupportedUpstreamRegistryException",
185
+ $fault: "client",
186
+ ...opts,
187
+ });
188
+ this.name = "UnsupportedUpstreamRegistryException";
189
+ this.$fault = "client";
190
+ Object.setPrototypeOf(this, UnsupportedUpstreamRegistryException.prototype);
191
+ }
192
+ }
194
193
  export var EncryptionType;
195
194
  (function (EncryptionType) {
196
195
  EncryptionType["AES256"] = "AES256";
@@ -201,120 +200,120 @@ export var ImageTagMutability;
201
200
  ImageTagMutability["IMMUTABLE"] = "IMMUTABLE";
202
201
  ImageTagMutability["MUTABLE"] = "MUTABLE";
203
202
  })(ImageTagMutability || (ImageTagMutability = {}));
204
- var InvalidTagParameterException = (function (_super) {
205
- __extends(InvalidTagParameterException, _super);
206
- function InvalidTagParameterException(opts) {
207
- var _this = _super.call(this, __assign({ name: "InvalidTagParameterException", $fault: "client" }, opts)) || this;
208
- _this.name = "InvalidTagParameterException";
209
- _this.$fault = "client";
210
- Object.setPrototypeOf(_this, InvalidTagParameterException.prototype);
211
- return _this;
212
- }
213
- return InvalidTagParameterException;
214
- }(__BaseException));
215
- export { InvalidTagParameterException };
216
- var RepositoryAlreadyExistsException = (function (_super) {
217
- __extends(RepositoryAlreadyExistsException, _super);
218
- function RepositoryAlreadyExistsException(opts) {
219
- var _this = _super.call(this, __assign({ name: "RepositoryAlreadyExistsException", $fault: "client" }, opts)) || this;
220
- _this.name = "RepositoryAlreadyExistsException";
221
- _this.$fault = "client";
222
- Object.setPrototypeOf(_this, RepositoryAlreadyExistsException.prototype);
223
- return _this;
224
- }
225
- return RepositoryAlreadyExistsException;
226
- }(__BaseException));
227
- export { RepositoryAlreadyExistsException };
228
- var TooManyTagsException = (function (_super) {
229
- __extends(TooManyTagsException, _super);
230
- function TooManyTagsException(opts) {
231
- var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
232
- _this.name = "TooManyTagsException";
233
- _this.$fault = "client";
234
- Object.setPrototypeOf(_this, TooManyTagsException.prototype);
235
- return _this;
236
- }
237
- return TooManyTagsException;
238
- }(__BaseException));
239
- export { TooManyTagsException };
240
- var LifecyclePolicyNotFoundException = (function (_super) {
241
- __extends(LifecyclePolicyNotFoundException, _super);
242
- function LifecyclePolicyNotFoundException(opts) {
243
- var _this = _super.call(this, __assign({ name: "LifecyclePolicyNotFoundException", $fault: "client" }, opts)) || this;
244
- _this.name = "LifecyclePolicyNotFoundException";
245
- _this.$fault = "client";
246
- Object.setPrototypeOf(_this, LifecyclePolicyNotFoundException.prototype);
247
- return _this;
248
- }
249
- return LifecyclePolicyNotFoundException;
250
- }(__BaseException));
251
- export { LifecyclePolicyNotFoundException };
252
- var PullThroughCacheRuleNotFoundException = (function (_super) {
253
- __extends(PullThroughCacheRuleNotFoundException, _super);
254
- function PullThroughCacheRuleNotFoundException(opts) {
255
- var _this = _super.call(this, __assign({ name: "PullThroughCacheRuleNotFoundException", $fault: "client" }, opts)) || this;
256
- _this.name = "PullThroughCacheRuleNotFoundException";
257
- _this.$fault = "client";
258
- Object.setPrototypeOf(_this, PullThroughCacheRuleNotFoundException.prototype);
259
- return _this;
260
- }
261
- return PullThroughCacheRuleNotFoundException;
262
- }(__BaseException));
263
- export { PullThroughCacheRuleNotFoundException };
264
- var RegistryPolicyNotFoundException = (function (_super) {
265
- __extends(RegistryPolicyNotFoundException, _super);
266
- function RegistryPolicyNotFoundException(opts) {
267
- var _this = _super.call(this, __assign({ name: "RegistryPolicyNotFoundException", $fault: "client" }, opts)) || this;
268
- _this.name = "RegistryPolicyNotFoundException";
269
- _this.$fault = "client";
270
- Object.setPrototypeOf(_this, RegistryPolicyNotFoundException.prototype);
271
- return _this;
272
- }
273
- return RegistryPolicyNotFoundException;
274
- }(__BaseException));
275
- export { RegistryPolicyNotFoundException };
276
- var RepositoryNotEmptyException = (function (_super) {
277
- __extends(RepositoryNotEmptyException, _super);
278
- function RepositoryNotEmptyException(opts) {
279
- var _this = _super.call(this, __assign({ name: "RepositoryNotEmptyException", $fault: "client" }, opts)) || this;
280
- _this.name = "RepositoryNotEmptyException";
281
- _this.$fault = "client";
282
- Object.setPrototypeOf(_this, RepositoryNotEmptyException.prototype);
283
- return _this;
284
- }
285
- return RepositoryNotEmptyException;
286
- }(__BaseException));
287
- export { RepositoryNotEmptyException };
288
- var RepositoryPolicyNotFoundException = (function (_super) {
289
- __extends(RepositoryPolicyNotFoundException, _super);
290
- function RepositoryPolicyNotFoundException(opts) {
291
- var _this = _super.call(this, __assign({ name: "RepositoryPolicyNotFoundException", $fault: "client" }, opts)) || this;
292
- _this.name = "RepositoryPolicyNotFoundException";
293
- _this.$fault = "client";
294
- Object.setPrototypeOf(_this, RepositoryPolicyNotFoundException.prototype);
295
- return _this;
296
- }
297
- return RepositoryPolicyNotFoundException;
298
- }(__BaseException));
299
- export { RepositoryPolicyNotFoundException };
203
+ export class InvalidTagParameterException extends __BaseException {
204
+ constructor(opts) {
205
+ super({
206
+ name: "InvalidTagParameterException",
207
+ $fault: "client",
208
+ ...opts,
209
+ });
210
+ this.name = "InvalidTagParameterException";
211
+ this.$fault = "client";
212
+ Object.setPrototypeOf(this, InvalidTagParameterException.prototype);
213
+ }
214
+ }
215
+ export class RepositoryAlreadyExistsException extends __BaseException {
216
+ constructor(opts) {
217
+ super({
218
+ name: "RepositoryAlreadyExistsException",
219
+ $fault: "client",
220
+ ...opts,
221
+ });
222
+ this.name = "RepositoryAlreadyExistsException";
223
+ this.$fault = "client";
224
+ Object.setPrototypeOf(this, RepositoryAlreadyExistsException.prototype);
225
+ }
226
+ }
227
+ export class TooManyTagsException extends __BaseException {
228
+ constructor(opts) {
229
+ super({
230
+ name: "TooManyTagsException",
231
+ $fault: "client",
232
+ ...opts,
233
+ });
234
+ this.name = "TooManyTagsException";
235
+ this.$fault = "client";
236
+ Object.setPrototypeOf(this, TooManyTagsException.prototype);
237
+ }
238
+ }
239
+ export class LifecyclePolicyNotFoundException extends __BaseException {
240
+ constructor(opts) {
241
+ super({
242
+ name: "LifecyclePolicyNotFoundException",
243
+ $fault: "client",
244
+ ...opts,
245
+ });
246
+ this.name = "LifecyclePolicyNotFoundException";
247
+ this.$fault = "client";
248
+ Object.setPrototypeOf(this, LifecyclePolicyNotFoundException.prototype);
249
+ }
250
+ }
251
+ export class PullThroughCacheRuleNotFoundException extends __BaseException {
252
+ constructor(opts) {
253
+ super({
254
+ name: "PullThroughCacheRuleNotFoundException",
255
+ $fault: "client",
256
+ ...opts,
257
+ });
258
+ this.name = "PullThroughCacheRuleNotFoundException";
259
+ this.$fault = "client";
260
+ Object.setPrototypeOf(this, PullThroughCacheRuleNotFoundException.prototype);
261
+ }
262
+ }
263
+ export class RegistryPolicyNotFoundException extends __BaseException {
264
+ constructor(opts) {
265
+ super({
266
+ name: "RegistryPolicyNotFoundException",
267
+ $fault: "client",
268
+ ...opts,
269
+ });
270
+ this.name = "RegistryPolicyNotFoundException";
271
+ this.$fault = "client";
272
+ Object.setPrototypeOf(this, RegistryPolicyNotFoundException.prototype);
273
+ }
274
+ }
275
+ export class RepositoryNotEmptyException extends __BaseException {
276
+ constructor(opts) {
277
+ super({
278
+ name: "RepositoryNotEmptyException",
279
+ $fault: "client",
280
+ ...opts,
281
+ });
282
+ this.name = "RepositoryNotEmptyException";
283
+ this.$fault = "client";
284
+ Object.setPrototypeOf(this, RepositoryNotEmptyException.prototype);
285
+ }
286
+ }
287
+ export class RepositoryPolicyNotFoundException extends __BaseException {
288
+ constructor(opts) {
289
+ super({
290
+ name: "RepositoryPolicyNotFoundException",
291
+ $fault: "client",
292
+ ...opts,
293
+ });
294
+ this.name = "RepositoryPolicyNotFoundException";
295
+ this.$fault = "client";
296
+ Object.setPrototypeOf(this, RepositoryPolicyNotFoundException.prototype);
297
+ }
298
+ }
300
299
  export var ReplicationStatus;
301
300
  (function (ReplicationStatus) {
302
301
  ReplicationStatus["COMPLETE"] = "COMPLETE";
303
302
  ReplicationStatus["FAILED"] = "FAILED";
304
303
  ReplicationStatus["IN_PROGRESS"] = "IN_PROGRESS";
305
304
  })(ReplicationStatus || (ReplicationStatus = {}));
306
- var ImageNotFoundException = (function (_super) {
307
- __extends(ImageNotFoundException, _super);
308
- function ImageNotFoundException(opts) {
309
- var _this = _super.call(this, __assign({ name: "ImageNotFoundException", $fault: "client" }, opts)) || this;
310
- _this.name = "ImageNotFoundException";
311
- _this.$fault = "client";
312
- Object.setPrototypeOf(_this, ImageNotFoundException.prototype);
313
- return _this;
314
- }
315
- return ImageNotFoundException;
316
- }(__BaseException));
317
- export { ImageNotFoundException };
305
+ export class ImageNotFoundException extends __BaseException {
306
+ constructor(opts) {
307
+ super({
308
+ name: "ImageNotFoundException",
309
+ $fault: "client",
310
+ ...opts,
311
+ });
312
+ this.name = "ImageNotFoundException";
313
+ this.$fault = "client";
314
+ Object.setPrototypeOf(this, ImageNotFoundException.prototype);
315
+ }
316
+ }
318
317
  export var TagStatus;
319
318
  (function (TagStatus) {
320
319
  TagStatus["ANY"] = "ANY";
@@ -341,46 +340,46 @@ export var ScanStatus;
341
340
  ScanStatus["SCAN_ELIGIBILITY_EXPIRED"] = "SCAN_ELIGIBILITY_EXPIRED";
342
341
  ScanStatus["UNSUPPORTED_IMAGE"] = "UNSUPPORTED_IMAGE";
343
342
  })(ScanStatus || (ScanStatus = {}));
344
- var ScanNotFoundException = (function (_super) {
345
- __extends(ScanNotFoundException, _super);
346
- function ScanNotFoundException(opts) {
347
- var _this = _super.call(this, __assign({ name: "ScanNotFoundException", $fault: "client" }, opts)) || this;
348
- _this.name = "ScanNotFoundException";
349
- _this.$fault = "client";
350
- Object.setPrototypeOf(_this, ScanNotFoundException.prototype);
351
- return _this;
352
- }
353
- return ScanNotFoundException;
354
- }(__BaseException));
355
- export { ScanNotFoundException };
343
+ export class ScanNotFoundException extends __BaseException {
344
+ constructor(opts) {
345
+ super({
346
+ name: "ScanNotFoundException",
347
+ $fault: "client",
348
+ ...opts,
349
+ });
350
+ this.name = "ScanNotFoundException";
351
+ this.$fault = "client";
352
+ Object.setPrototypeOf(this, ScanNotFoundException.prototype);
353
+ }
354
+ }
356
355
  export var RepositoryFilterType;
357
356
  (function (RepositoryFilterType) {
358
357
  RepositoryFilterType["PREFIX_MATCH"] = "PREFIX_MATCH";
359
358
  })(RepositoryFilterType || (RepositoryFilterType = {}));
360
- var LayerInaccessibleException = (function (_super) {
361
- __extends(LayerInaccessibleException, _super);
362
- function LayerInaccessibleException(opts) {
363
- var _this = _super.call(this, __assign({ name: "LayerInaccessibleException", $fault: "client" }, opts)) || this;
364
- _this.name = "LayerInaccessibleException";
365
- _this.$fault = "client";
366
- Object.setPrototypeOf(_this, LayerInaccessibleException.prototype);
367
- return _this;
368
- }
369
- return LayerInaccessibleException;
370
- }(__BaseException));
371
- export { LayerInaccessibleException };
372
- var LayersNotFoundException = (function (_super) {
373
- __extends(LayersNotFoundException, _super);
374
- function LayersNotFoundException(opts) {
375
- var _this = _super.call(this, __assign({ name: "LayersNotFoundException", $fault: "client" }, opts)) || this;
376
- _this.name = "LayersNotFoundException";
377
- _this.$fault = "client";
378
- Object.setPrototypeOf(_this, LayersNotFoundException.prototype);
379
- return _this;
380
- }
381
- return LayersNotFoundException;
382
- }(__BaseException));
383
- export { LayersNotFoundException };
359
+ export class LayerInaccessibleException extends __BaseException {
360
+ constructor(opts) {
361
+ super({
362
+ name: "LayerInaccessibleException",
363
+ $fault: "client",
364
+ ...opts,
365
+ });
366
+ this.name = "LayerInaccessibleException";
367
+ this.$fault = "client";
368
+ Object.setPrototypeOf(this, LayerInaccessibleException.prototype);
369
+ }
370
+ }
371
+ export class LayersNotFoundException extends __BaseException {
372
+ constructor(opts) {
373
+ super({
374
+ name: "LayersNotFoundException",
375
+ $fault: "client",
376
+ ...opts,
377
+ });
378
+ this.name = "LayersNotFoundException";
379
+ this.$fault = "client";
380
+ Object.setPrototypeOf(this, LayersNotFoundException.prototype);
381
+ }
382
+ }
384
383
  export var ImageActionType;
385
384
  (function (ImageActionType) {
386
385
  ImageActionType["EXPIRE"] = "EXPIRE";
@@ -392,235 +391,489 @@ export var LifecyclePolicyPreviewStatus;
392
391
  LifecyclePolicyPreviewStatus["FAILED"] = "FAILED";
393
392
  LifecyclePolicyPreviewStatus["IN_PROGRESS"] = "IN_PROGRESS";
394
393
  })(LifecyclePolicyPreviewStatus || (LifecyclePolicyPreviewStatus = {}));
395
- var LifecyclePolicyPreviewNotFoundException = (function (_super) {
396
- __extends(LifecyclePolicyPreviewNotFoundException, _super);
397
- function LifecyclePolicyPreviewNotFoundException(opts) {
398
- var _this = _super.call(this, __assign({ name: "LifecyclePolicyPreviewNotFoundException", $fault: "client" }, opts)) || this;
399
- _this.name = "LifecyclePolicyPreviewNotFoundException";
400
- _this.$fault = "client";
401
- Object.setPrototypeOf(_this, LifecyclePolicyPreviewNotFoundException.prototype);
402
- return _this;
403
- }
404
- return LifecyclePolicyPreviewNotFoundException;
405
- }(__BaseException));
406
- export { LifecyclePolicyPreviewNotFoundException };
394
+ export class LifecyclePolicyPreviewNotFoundException extends __BaseException {
395
+ constructor(opts) {
396
+ super({
397
+ name: "LifecyclePolicyPreviewNotFoundException",
398
+ $fault: "client",
399
+ ...opts,
400
+ });
401
+ this.name = "LifecyclePolicyPreviewNotFoundException";
402
+ this.$fault = "client";
403
+ Object.setPrototypeOf(this, LifecyclePolicyPreviewNotFoundException.prototype);
404
+ }
405
+ }
407
406
  export var ScanType;
408
407
  (function (ScanType) {
409
408
  ScanType["BASIC"] = "BASIC";
410
409
  ScanType["ENHANCED"] = "ENHANCED";
411
410
  })(ScanType || (ScanType = {}));
412
- var ImageAlreadyExistsException = (function (_super) {
413
- __extends(ImageAlreadyExistsException, _super);
414
- function ImageAlreadyExistsException(opts) {
415
- var _this = _super.call(this, __assign({ name: "ImageAlreadyExistsException", $fault: "client" }, opts)) || this;
416
- _this.name = "ImageAlreadyExistsException";
417
- _this.$fault = "client";
418
- Object.setPrototypeOf(_this, ImageAlreadyExistsException.prototype);
419
- return _this;
420
- }
421
- return ImageAlreadyExistsException;
422
- }(__BaseException));
423
- export { ImageAlreadyExistsException };
424
- var ImageDigestDoesNotMatchException = (function (_super) {
425
- __extends(ImageDigestDoesNotMatchException, _super);
426
- function ImageDigestDoesNotMatchException(opts) {
427
- var _this = _super.call(this, __assign({ name: "ImageDigestDoesNotMatchException", $fault: "client" }, opts)) || this;
428
- _this.name = "ImageDigestDoesNotMatchException";
429
- _this.$fault = "client";
430
- Object.setPrototypeOf(_this, ImageDigestDoesNotMatchException.prototype);
431
- return _this;
432
- }
433
- return ImageDigestDoesNotMatchException;
434
- }(__BaseException));
435
- export { ImageDigestDoesNotMatchException };
436
- var ImageTagAlreadyExistsException = (function (_super) {
437
- __extends(ImageTagAlreadyExistsException, _super);
438
- function ImageTagAlreadyExistsException(opts) {
439
- var _this = _super.call(this, __assign({ name: "ImageTagAlreadyExistsException", $fault: "client" }, opts)) || this;
440
- _this.name = "ImageTagAlreadyExistsException";
441
- _this.$fault = "client";
442
- Object.setPrototypeOf(_this, ImageTagAlreadyExistsException.prototype);
443
- return _this;
444
- }
445
- return ImageTagAlreadyExistsException;
446
- }(__BaseException));
447
- export { ImageTagAlreadyExistsException };
448
- var ReferencedImagesNotFoundException = (function (_super) {
449
- __extends(ReferencedImagesNotFoundException, _super);
450
- function ReferencedImagesNotFoundException(opts) {
451
- var _this = _super.call(this, __assign({ name: "ReferencedImagesNotFoundException", $fault: "client" }, opts)) || this;
452
- _this.name = "ReferencedImagesNotFoundException";
453
- _this.$fault = "client";
454
- Object.setPrototypeOf(_this, ReferencedImagesNotFoundException.prototype);
455
- return _this;
456
- }
457
- return ReferencedImagesNotFoundException;
458
- }(__BaseException));
459
- export { ReferencedImagesNotFoundException };
460
- var UnsupportedImageTypeException = (function (_super) {
461
- __extends(UnsupportedImageTypeException, _super);
462
- function UnsupportedImageTypeException(opts) {
463
- var _this = _super.call(this, __assign({ name: "UnsupportedImageTypeException", $fault: "client" }, opts)) || this;
464
- _this.name = "UnsupportedImageTypeException";
465
- _this.$fault = "client";
466
- Object.setPrototypeOf(_this, UnsupportedImageTypeException.prototype);
467
- return _this;
468
- }
469
- return UnsupportedImageTypeException;
470
- }(__BaseException));
471
- export { UnsupportedImageTypeException };
472
- var LifecyclePolicyPreviewInProgressException = (function (_super) {
473
- __extends(LifecyclePolicyPreviewInProgressException, _super);
474
- function LifecyclePolicyPreviewInProgressException(opts) {
475
- var _this = _super.call(this, __assign({ name: "LifecyclePolicyPreviewInProgressException", $fault: "client" }, opts)) || this;
476
- _this.name = "LifecyclePolicyPreviewInProgressException";
477
- _this.$fault = "client";
478
- Object.setPrototypeOf(_this, LifecyclePolicyPreviewInProgressException.prototype);
479
- return _this;
480
- }
481
- return LifecyclePolicyPreviewInProgressException;
482
- }(__BaseException));
483
- export { LifecyclePolicyPreviewInProgressException };
484
- var InvalidLayerPartException = (function (_super) {
485
- __extends(InvalidLayerPartException, _super);
486
- function InvalidLayerPartException(opts) {
487
- var _this = _super.call(this, __assign({ name: "InvalidLayerPartException", $fault: "client" }, opts)) || this;
488
- _this.name = "InvalidLayerPartException";
489
- _this.$fault = "client";
490
- Object.setPrototypeOf(_this, InvalidLayerPartException.prototype);
491
- _this.registryId = opts.registryId;
492
- _this.repositoryName = opts.repositoryName;
493
- _this.uploadId = opts.uploadId;
494
- _this.lastValidByteReceived = opts.lastValidByteReceived;
495
- return _this;
496
- }
497
- return InvalidLayerPartException;
498
- }(__BaseException));
499
- export { InvalidLayerPartException };
500
- export var BatchCheckLayerAvailabilityRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
501
- export var LayerFailureFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
502
- export var LayerFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
503
- export var BatchCheckLayerAvailabilityResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
504
- export var ImageIdentifierFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
505
- export var BatchDeleteImageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
506
- export var ImageFailureFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
507
- export var BatchDeleteImageResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
508
- export var BatchGetImageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
509
- export var ImageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
510
- export var BatchGetImageResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
511
- export var BatchGetRepositoryScanningConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
512
- export var RepositoryScanningConfigurationFailureFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
513
- export var ScanningRepositoryFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
514
- export var RepositoryScanningConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
515
- export var BatchGetRepositoryScanningConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
516
- export var CompleteLayerUploadRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
517
- export var CompleteLayerUploadResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
518
- export var CreatePullThroughCacheRuleRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
519
- export var CreatePullThroughCacheRuleResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
520
- export var EncryptionConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
521
- export var ImageScanningConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
522
- export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
523
- export var CreateRepositoryRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
524
- export var RepositoryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
525
- export var CreateRepositoryResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
526
- export var DeleteLifecyclePolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
527
- export var DeleteLifecyclePolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
528
- export var DeletePullThroughCacheRuleRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
529
- export var DeletePullThroughCacheRuleResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
530
- export var DeleteRegistryPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
531
- export var DeleteRegistryPolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
532
- export var DeleteRepositoryRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
533
- export var DeleteRepositoryResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
534
- export var DeleteRepositoryPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
535
- export var DeleteRepositoryPolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
536
- export var DescribeImageReplicationStatusRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
537
- export var ImageReplicationStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
538
- export var DescribeImageReplicationStatusResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
539
- export var DescribeImagesFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
540
- export var DescribeImagesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
541
- export var ImageScanFindingsSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
542
- export var ImageScanStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
543
- export var ImageDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
544
- export var DescribeImagesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
545
- export var DescribeImageScanFindingsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
546
- export var CvssScoreFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
547
- export var VulnerablePackageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
548
- export var PackageVulnerabilityDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
549
- export var RecommendationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
550
- export var RemediationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
551
- export var AwsEcrContainerImageDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
552
- export var ResourceDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
553
- export var ResourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
554
- export var CvssScoreAdjustmentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
555
- export var CvssScoreDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
556
- export var ScoreDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
557
- export var EnhancedImageScanFindingFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
558
- export var AttributeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
559
- export var ImageScanFindingFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
560
- export var ImageScanFindingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
561
- export var DescribeImageScanFindingsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
562
- export var DescribePullThroughCacheRulesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
563
- export var PullThroughCacheRuleFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
564
- export var DescribePullThroughCacheRulesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
565
- export var DescribeRegistryRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
566
- export var ReplicationDestinationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
567
- export var RepositoryFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
568
- export var ReplicationRuleFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
569
- export var ReplicationConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
570
- export var DescribeRegistryResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
571
- export var DescribeRepositoriesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
572
- export var DescribeRepositoriesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
573
- export var GetAuthorizationTokenRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
574
- export var AuthorizationDataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
575
- export var GetAuthorizationTokenResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
576
- export var GetDownloadUrlForLayerRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
577
- export var GetDownloadUrlForLayerResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
578
- export var GetLifecyclePolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
579
- export var GetLifecyclePolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
580
- export var LifecyclePolicyPreviewFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
581
- export var GetLifecyclePolicyPreviewRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
582
- export var LifecyclePolicyRuleActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
583
- export var LifecyclePolicyPreviewResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
584
- export var LifecyclePolicyPreviewSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
585
- export var GetLifecyclePolicyPreviewResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
586
- export var GetRegistryPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
587
- export var GetRegistryPolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
588
- export var GetRegistryScanningConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
589
- export var RegistryScanningRuleFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
590
- export var RegistryScanningConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
591
- export var GetRegistryScanningConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
592
- export var GetRepositoryPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
593
- export var GetRepositoryPolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
594
- export var InitiateLayerUploadRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
595
- export var InitiateLayerUploadResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
596
- export var ListImagesFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
597
- export var ListImagesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
598
- export var ListImagesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
599
- export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
600
- export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
601
- export var PutImageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
602
- export var PutImageResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
603
- export var PutImageScanningConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
604
- export var PutImageScanningConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
605
- export var PutImageTagMutabilityRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
606
- export var PutImageTagMutabilityResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
607
- export var PutLifecyclePolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
608
- export var PutLifecyclePolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
609
- export var PutRegistryPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
610
- export var PutRegistryPolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
611
- export var PutRegistryScanningConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
612
- export var PutRegistryScanningConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
613
- export var PutReplicationConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
614
- export var PutReplicationConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
615
- export var SetRepositoryPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
616
- export var SetRepositoryPolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
617
- export var StartImageScanRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
618
- export var StartImageScanResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
619
- export var StartLifecyclePolicyPreviewRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
620
- export var StartLifecyclePolicyPreviewResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
621
- export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
622
- export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
623
- export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
624
- export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
625
- export var UploadLayerPartRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
626
- export var UploadLayerPartResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
411
+ export class ImageAlreadyExistsException extends __BaseException {
412
+ constructor(opts) {
413
+ super({
414
+ name: "ImageAlreadyExistsException",
415
+ $fault: "client",
416
+ ...opts,
417
+ });
418
+ this.name = "ImageAlreadyExistsException";
419
+ this.$fault = "client";
420
+ Object.setPrototypeOf(this, ImageAlreadyExistsException.prototype);
421
+ }
422
+ }
423
+ export class ImageDigestDoesNotMatchException extends __BaseException {
424
+ constructor(opts) {
425
+ super({
426
+ name: "ImageDigestDoesNotMatchException",
427
+ $fault: "client",
428
+ ...opts,
429
+ });
430
+ this.name = "ImageDigestDoesNotMatchException";
431
+ this.$fault = "client";
432
+ Object.setPrototypeOf(this, ImageDigestDoesNotMatchException.prototype);
433
+ }
434
+ }
435
+ export class ImageTagAlreadyExistsException extends __BaseException {
436
+ constructor(opts) {
437
+ super({
438
+ name: "ImageTagAlreadyExistsException",
439
+ $fault: "client",
440
+ ...opts,
441
+ });
442
+ this.name = "ImageTagAlreadyExistsException";
443
+ this.$fault = "client";
444
+ Object.setPrototypeOf(this, ImageTagAlreadyExistsException.prototype);
445
+ }
446
+ }
447
+ export class ReferencedImagesNotFoundException extends __BaseException {
448
+ constructor(opts) {
449
+ super({
450
+ name: "ReferencedImagesNotFoundException",
451
+ $fault: "client",
452
+ ...opts,
453
+ });
454
+ this.name = "ReferencedImagesNotFoundException";
455
+ this.$fault = "client";
456
+ Object.setPrototypeOf(this, ReferencedImagesNotFoundException.prototype);
457
+ }
458
+ }
459
+ export class UnsupportedImageTypeException extends __BaseException {
460
+ constructor(opts) {
461
+ super({
462
+ name: "UnsupportedImageTypeException",
463
+ $fault: "client",
464
+ ...opts,
465
+ });
466
+ this.name = "UnsupportedImageTypeException";
467
+ this.$fault = "client";
468
+ Object.setPrototypeOf(this, UnsupportedImageTypeException.prototype);
469
+ }
470
+ }
471
+ export class LifecyclePolicyPreviewInProgressException extends __BaseException {
472
+ constructor(opts) {
473
+ super({
474
+ name: "LifecyclePolicyPreviewInProgressException",
475
+ $fault: "client",
476
+ ...opts,
477
+ });
478
+ this.name = "LifecyclePolicyPreviewInProgressException";
479
+ this.$fault = "client";
480
+ Object.setPrototypeOf(this, LifecyclePolicyPreviewInProgressException.prototype);
481
+ }
482
+ }
483
+ export class InvalidLayerPartException extends __BaseException {
484
+ constructor(opts) {
485
+ super({
486
+ name: "InvalidLayerPartException",
487
+ $fault: "client",
488
+ ...opts,
489
+ });
490
+ this.name = "InvalidLayerPartException";
491
+ this.$fault = "client";
492
+ Object.setPrototypeOf(this, InvalidLayerPartException.prototype);
493
+ this.registryId = opts.registryId;
494
+ this.repositoryName = opts.repositoryName;
495
+ this.uploadId = opts.uploadId;
496
+ this.lastValidByteReceived = opts.lastValidByteReceived;
497
+ }
498
+ }
499
+ export const BatchCheckLayerAvailabilityRequestFilterSensitiveLog = (obj) => ({
500
+ ...obj,
501
+ });
502
+ export const LayerFailureFilterSensitiveLog = (obj) => ({
503
+ ...obj,
504
+ });
505
+ export const LayerFilterSensitiveLog = (obj) => ({
506
+ ...obj,
507
+ });
508
+ export const BatchCheckLayerAvailabilityResponseFilterSensitiveLog = (obj) => ({
509
+ ...obj,
510
+ });
511
+ export const ImageIdentifierFilterSensitiveLog = (obj) => ({
512
+ ...obj,
513
+ });
514
+ export const BatchDeleteImageRequestFilterSensitiveLog = (obj) => ({
515
+ ...obj,
516
+ });
517
+ export const ImageFailureFilterSensitiveLog = (obj) => ({
518
+ ...obj,
519
+ });
520
+ export const BatchDeleteImageResponseFilterSensitiveLog = (obj) => ({
521
+ ...obj,
522
+ });
523
+ export const BatchGetImageRequestFilterSensitiveLog = (obj) => ({
524
+ ...obj,
525
+ });
526
+ export const ImageFilterSensitiveLog = (obj) => ({
527
+ ...obj,
528
+ });
529
+ export const BatchGetImageResponseFilterSensitiveLog = (obj) => ({
530
+ ...obj,
531
+ });
532
+ export const BatchGetRepositoryScanningConfigurationRequestFilterSensitiveLog = (obj) => ({
533
+ ...obj,
534
+ });
535
+ export const RepositoryScanningConfigurationFailureFilterSensitiveLog = (obj) => ({
536
+ ...obj,
537
+ });
538
+ export const ScanningRepositoryFilterFilterSensitiveLog = (obj) => ({
539
+ ...obj,
540
+ });
541
+ export const RepositoryScanningConfigurationFilterSensitiveLog = (obj) => ({
542
+ ...obj,
543
+ });
544
+ export const BatchGetRepositoryScanningConfigurationResponseFilterSensitiveLog = (obj) => ({
545
+ ...obj,
546
+ });
547
+ export const CompleteLayerUploadRequestFilterSensitiveLog = (obj) => ({
548
+ ...obj,
549
+ });
550
+ export const CompleteLayerUploadResponseFilterSensitiveLog = (obj) => ({
551
+ ...obj,
552
+ });
553
+ export const CreatePullThroughCacheRuleRequestFilterSensitiveLog = (obj) => ({
554
+ ...obj,
555
+ });
556
+ export const CreatePullThroughCacheRuleResponseFilterSensitiveLog = (obj) => ({
557
+ ...obj,
558
+ });
559
+ export const EncryptionConfigurationFilterSensitiveLog = (obj) => ({
560
+ ...obj,
561
+ });
562
+ export const ImageScanningConfigurationFilterSensitiveLog = (obj) => ({
563
+ ...obj,
564
+ });
565
+ export const TagFilterSensitiveLog = (obj) => ({
566
+ ...obj,
567
+ });
568
+ export const CreateRepositoryRequestFilterSensitiveLog = (obj) => ({
569
+ ...obj,
570
+ });
571
+ export const RepositoryFilterSensitiveLog = (obj) => ({
572
+ ...obj,
573
+ });
574
+ export const CreateRepositoryResponseFilterSensitiveLog = (obj) => ({
575
+ ...obj,
576
+ });
577
+ export const DeleteLifecyclePolicyRequestFilterSensitiveLog = (obj) => ({
578
+ ...obj,
579
+ });
580
+ export const DeleteLifecyclePolicyResponseFilterSensitiveLog = (obj) => ({
581
+ ...obj,
582
+ });
583
+ export const DeletePullThroughCacheRuleRequestFilterSensitiveLog = (obj) => ({
584
+ ...obj,
585
+ });
586
+ export const DeletePullThroughCacheRuleResponseFilterSensitiveLog = (obj) => ({
587
+ ...obj,
588
+ });
589
+ export const DeleteRegistryPolicyRequestFilterSensitiveLog = (obj) => ({
590
+ ...obj,
591
+ });
592
+ export const DeleteRegistryPolicyResponseFilterSensitiveLog = (obj) => ({
593
+ ...obj,
594
+ });
595
+ export const DeleteRepositoryRequestFilterSensitiveLog = (obj) => ({
596
+ ...obj,
597
+ });
598
+ export const DeleteRepositoryResponseFilterSensitiveLog = (obj) => ({
599
+ ...obj,
600
+ });
601
+ export const DeleteRepositoryPolicyRequestFilterSensitiveLog = (obj) => ({
602
+ ...obj,
603
+ });
604
+ export const DeleteRepositoryPolicyResponseFilterSensitiveLog = (obj) => ({
605
+ ...obj,
606
+ });
607
+ export const DescribeImageReplicationStatusRequestFilterSensitiveLog = (obj) => ({
608
+ ...obj,
609
+ });
610
+ export const ImageReplicationStatusFilterSensitiveLog = (obj) => ({
611
+ ...obj,
612
+ });
613
+ export const DescribeImageReplicationStatusResponseFilterSensitiveLog = (obj) => ({
614
+ ...obj,
615
+ });
616
+ export const DescribeImagesFilterFilterSensitiveLog = (obj) => ({
617
+ ...obj,
618
+ });
619
+ export const DescribeImagesRequestFilterSensitiveLog = (obj) => ({
620
+ ...obj,
621
+ });
622
+ export const ImageScanFindingsSummaryFilterSensitiveLog = (obj) => ({
623
+ ...obj,
624
+ });
625
+ export const ImageScanStatusFilterSensitiveLog = (obj) => ({
626
+ ...obj,
627
+ });
628
+ export const ImageDetailFilterSensitiveLog = (obj) => ({
629
+ ...obj,
630
+ });
631
+ export const DescribeImagesResponseFilterSensitiveLog = (obj) => ({
632
+ ...obj,
633
+ });
634
+ export const DescribeImageScanFindingsRequestFilterSensitiveLog = (obj) => ({
635
+ ...obj,
636
+ });
637
+ export const CvssScoreFilterSensitiveLog = (obj) => ({
638
+ ...obj,
639
+ });
640
+ export const VulnerablePackageFilterSensitiveLog = (obj) => ({
641
+ ...obj,
642
+ });
643
+ export const PackageVulnerabilityDetailsFilterSensitiveLog = (obj) => ({
644
+ ...obj,
645
+ });
646
+ export const RecommendationFilterSensitiveLog = (obj) => ({
647
+ ...obj,
648
+ });
649
+ export const RemediationFilterSensitiveLog = (obj) => ({
650
+ ...obj,
651
+ });
652
+ export const AwsEcrContainerImageDetailsFilterSensitiveLog = (obj) => ({
653
+ ...obj,
654
+ });
655
+ export const ResourceDetailsFilterSensitiveLog = (obj) => ({
656
+ ...obj,
657
+ });
658
+ export const ResourceFilterSensitiveLog = (obj) => ({
659
+ ...obj,
660
+ });
661
+ export const CvssScoreAdjustmentFilterSensitiveLog = (obj) => ({
662
+ ...obj,
663
+ });
664
+ export const CvssScoreDetailsFilterSensitiveLog = (obj) => ({
665
+ ...obj,
666
+ });
667
+ export const ScoreDetailsFilterSensitiveLog = (obj) => ({
668
+ ...obj,
669
+ });
670
+ export const EnhancedImageScanFindingFilterSensitiveLog = (obj) => ({
671
+ ...obj,
672
+ });
673
+ export const AttributeFilterSensitiveLog = (obj) => ({
674
+ ...obj,
675
+ });
676
+ export const ImageScanFindingFilterSensitiveLog = (obj) => ({
677
+ ...obj,
678
+ });
679
+ export const ImageScanFindingsFilterSensitiveLog = (obj) => ({
680
+ ...obj,
681
+ });
682
+ export const DescribeImageScanFindingsResponseFilterSensitiveLog = (obj) => ({
683
+ ...obj,
684
+ });
685
+ export const DescribePullThroughCacheRulesRequestFilterSensitiveLog = (obj) => ({
686
+ ...obj,
687
+ });
688
+ export const PullThroughCacheRuleFilterSensitiveLog = (obj) => ({
689
+ ...obj,
690
+ });
691
+ export const DescribePullThroughCacheRulesResponseFilterSensitiveLog = (obj) => ({
692
+ ...obj,
693
+ });
694
+ export const DescribeRegistryRequestFilterSensitiveLog = (obj) => ({
695
+ ...obj,
696
+ });
697
+ export const ReplicationDestinationFilterSensitiveLog = (obj) => ({
698
+ ...obj,
699
+ });
700
+ export const RepositoryFilterFilterSensitiveLog = (obj) => ({
701
+ ...obj,
702
+ });
703
+ export const ReplicationRuleFilterSensitiveLog = (obj) => ({
704
+ ...obj,
705
+ });
706
+ export const ReplicationConfigurationFilterSensitiveLog = (obj) => ({
707
+ ...obj,
708
+ });
709
+ export const DescribeRegistryResponseFilterSensitiveLog = (obj) => ({
710
+ ...obj,
711
+ });
712
+ export const DescribeRepositoriesRequestFilterSensitiveLog = (obj) => ({
713
+ ...obj,
714
+ });
715
+ export const DescribeRepositoriesResponseFilterSensitiveLog = (obj) => ({
716
+ ...obj,
717
+ });
718
+ export const GetAuthorizationTokenRequestFilterSensitiveLog = (obj) => ({
719
+ ...obj,
720
+ });
721
+ export const AuthorizationDataFilterSensitiveLog = (obj) => ({
722
+ ...obj,
723
+ });
724
+ export const GetAuthorizationTokenResponseFilterSensitiveLog = (obj) => ({
725
+ ...obj,
726
+ });
727
+ export const GetDownloadUrlForLayerRequestFilterSensitiveLog = (obj) => ({
728
+ ...obj,
729
+ });
730
+ export const GetDownloadUrlForLayerResponseFilterSensitiveLog = (obj) => ({
731
+ ...obj,
732
+ });
733
+ export const GetLifecyclePolicyRequestFilterSensitiveLog = (obj) => ({
734
+ ...obj,
735
+ });
736
+ export const GetLifecyclePolicyResponseFilterSensitiveLog = (obj) => ({
737
+ ...obj,
738
+ });
739
+ export const LifecyclePolicyPreviewFilterFilterSensitiveLog = (obj) => ({
740
+ ...obj,
741
+ });
742
+ export const GetLifecyclePolicyPreviewRequestFilterSensitiveLog = (obj) => ({
743
+ ...obj,
744
+ });
745
+ export const LifecyclePolicyRuleActionFilterSensitiveLog = (obj) => ({
746
+ ...obj,
747
+ });
748
+ export const LifecyclePolicyPreviewResultFilterSensitiveLog = (obj) => ({
749
+ ...obj,
750
+ });
751
+ export const LifecyclePolicyPreviewSummaryFilterSensitiveLog = (obj) => ({
752
+ ...obj,
753
+ });
754
+ export const GetLifecyclePolicyPreviewResponseFilterSensitiveLog = (obj) => ({
755
+ ...obj,
756
+ });
757
+ export const GetRegistryPolicyRequestFilterSensitiveLog = (obj) => ({
758
+ ...obj,
759
+ });
760
+ export const GetRegistryPolicyResponseFilterSensitiveLog = (obj) => ({
761
+ ...obj,
762
+ });
763
+ export const GetRegistryScanningConfigurationRequestFilterSensitiveLog = (obj) => ({
764
+ ...obj,
765
+ });
766
+ export const RegistryScanningRuleFilterSensitiveLog = (obj) => ({
767
+ ...obj,
768
+ });
769
+ export const RegistryScanningConfigurationFilterSensitiveLog = (obj) => ({
770
+ ...obj,
771
+ });
772
+ export const GetRegistryScanningConfigurationResponseFilterSensitiveLog = (obj) => ({
773
+ ...obj,
774
+ });
775
+ export const GetRepositoryPolicyRequestFilterSensitiveLog = (obj) => ({
776
+ ...obj,
777
+ });
778
+ export const GetRepositoryPolicyResponseFilterSensitiveLog = (obj) => ({
779
+ ...obj,
780
+ });
781
+ export const InitiateLayerUploadRequestFilterSensitiveLog = (obj) => ({
782
+ ...obj,
783
+ });
784
+ export const InitiateLayerUploadResponseFilterSensitiveLog = (obj) => ({
785
+ ...obj,
786
+ });
787
+ export const ListImagesFilterFilterSensitiveLog = (obj) => ({
788
+ ...obj,
789
+ });
790
+ export const ListImagesRequestFilterSensitiveLog = (obj) => ({
791
+ ...obj,
792
+ });
793
+ export const ListImagesResponseFilterSensitiveLog = (obj) => ({
794
+ ...obj,
795
+ });
796
+ export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
797
+ ...obj,
798
+ });
799
+ export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
800
+ ...obj,
801
+ });
802
+ export const PutImageRequestFilterSensitiveLog = (obj) => ({
803
+ ...obj,
804
+ });
805
+ export const PutImageResponseFilterSensitiveLog = (obj) => ({
806
+ ...obj,
807
+ });
808
+ export const PutImageScanningConfigurationRequestFilterSensitiveLog = (obj) => ({
809
+ ...obj,
810
+ });
811
+ export const PutImageScanningConfigurationResponseFilterSensitiveLog = (obj) => ({
812
+ ...obj,
813
+ });
814
+ export const PutImageTagMutabilityRequestFilterSensitiveLog = (obj) => ({
815
+ ...obj,
816
+ });
817
+ export const PutImageTagMutabilityResponseFilterSensitiveLog = (obj) => ({
818
+ ...obj,
819
+ });
820
+ export const PutLifecyclePolicyRequestFilterSensitiveLog = (obj) => ({
821
+ ...obj,
822
+ });
823
+ export const PutLifecyclePolicyResponseFilterSensitiveLog = (obj) => ({
824
+ ...obj,
825
+ });
826
+ export const PutRegistryPolicyRequestFilterSensitiveLog = (obj) => ({
827
+ ...obj,
828
+ });
829
+ export const PutRegistryPolicyResponseFilterSensitiveLog = (obj) => ({
830
+ ...obj,
831
+ });
832
+ export const PutRegistryScanningConfigurationRequestFilterSensitiveLog = (obj) => ({
833
+ ...obj,
834
+ });
835
+ export const PutRegistryScanningConfigurationResponseFilterSensitiveLog = (obj) => ({
836
+ ...obj,
837
+ });
838
+ export const PutReplicationConfigurationRequestFilterSensitiveLog = (obj) => ({
839
+ ...obj,
840
+ });
841
+ export const PutReplicationConfigurationResponseFilterSensitiveLog = (obj) => ({
842
+ ...obj,
843
+ });
844
+ export const SetRepositoryPolicyRequestFilterSensitiveLog = (obj) => ({
845
+ ...obj,
846
+ });
847
+ export const SetRepositoryPolicyResponseFilterSensitiveLog = (obj) => ({
848
+ ...obj,
849
+ });
850
+ export const StartImageScanRequestFilterSensitiveLog = (obj) => ({
851
+ ...obj,
852
+ });
853
+ export const StartImageScanResponseFilterSensitiveLog = (obj) => ({
854
+ ...obj,
855
+ });
856
+ export const StartLifecyclePolicyPreviewRequestFilterSensitiveLog = (obj) => ({
857
+ ...obj,
858
+ });
859
+ export const StartLifecyclePolicyPreviewResponseFilterSensitiveLog = (obj) => ({
860
+ ...obj,
861
+ });
862
+ export const TagResourceRequestFilterSensitiveLog = (obj) => ({
863
+ ...obj,
864
+ });
865
+ export const TagResourceResponseFilterSensitiveLog = (obj) => ({
866
+ ...obj,
867
+ });
868
+ export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
869
+ ...obj,
870
+ });
871
+ export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
872
+ ...obj,
873
+ });
874
+ export const UploadLayerPartRequestFilterSensitiveLog = (obj) => ({
875
+ ...obj,
876
+ });
877
+ export const UploadLayerPartResponseFilterSensitiveLog = (obj) => ({
878
+ ...obj,
879
+ });