@aws-sdk/client-ecr 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.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/protocols/Aws_json1_1.js +2 -2
- package/dist-es/ECR.js +173 -166
- package/dist-es/ECRClient.js +28 -22
- package/dist-es/commands/BatchCheckLayerAvailabilityCommand.js +28 -21
- package/dist-es/commands/BatchDeleteImageCommand.js +28 -21
- package/dist-es/commands/BatchGetImageCommand.js +28 -21
- package/dist-es/commands/BatchGetRepositoryScanningConfigurationCommand.js +28 -21
- package/dist-es/commands/CompleteLayerUploadCommand.js +28 -21
- package/dist-es/commands/CreatePullThroughCacheRuleCommand.js +28 -21
- package/dist-es/commands/CreateRepositoryCommand.js +28 -21
- package/dist-es/commands/DeleteLifecyclePolicyCommand.js +28 -21
- package/dist-es/commands/DeletePullThroughCacheRuleCommand.js +28 -21
- package/dist-es/commands/DeleteRegistryPolicyCommand.js +28 -21
- package/dist-es/commands/DeleteRepositoryCommand.js +28 -21
- package/dist-es/commands/DeleteRepositoryPolicyCommand.js +28 -21
- package/dist-es/commands/DescribeImageReplicationStatusCommand.js +28 -21
- package/dist-es/commands/DescribeImageScanFindingsCommand.js +28 -21
- package/dist-es/commands/DescribeImagesCommand.js +28 -21
- package/dist-es/commands/DescribePullThroughCacheRulesCommand.js +28 -21
- package/dist-es/commands/DescribeRegistryCommand.js +28 -21
- package/dist-es/commands/DescribeRepositoriesCommand.js +28 -21
- package/dist-es/commands/GetAuthorizationTokenCommand.js +28 -21
- package/dist-es/commands/GetDownloadUrlForLayerCommand.js +28 -21
- package/dist-es/commands/GetLifecyclePolicyCommand.js +28 -21
- package/dist-es/commands/GetLifecyclePolicyPreviewCommand.js +28 -21
- package/dist-es/commands/GetRegistryPolicyCommand.js +28 -21
- package/dist-es/commands/GetRegistryScanningConfigurationCommand.js +28 -21
- package/dist-es/commands/GetRepositoryPolicyCommand.js +28 -21
- package/dist-es/commands/InitiateLayerUploadCommand.js +28 -21
- package/dist-es/commands/ListImagesCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/PutImageCommand.js +28 -21
- package/dist-es/commands/PutImageScanningConfigurationCommand.js +28 -21
- package/dist-es/commands/PutImageTagMutabilityCommand.js +28 -21
- package/dist-es/commands/PutLifecyclePolicyCommand.js +28 -21
- package/dist-es/commands/PutRegistryPolicyCommand.js +28 -21
- package/dist-es/commands/PutRegistryScanningConfigurationCommand.js +28 -21
- package/dist-es/commands/PutReplicationConfigurationCommand.js +28 -21
- package/dist-es/commands/SetRepositoryPolicyCommand.js +28 -21
- package/dist-es/commands/StartImageScanCommand.js +28 -21
- package/dist-es/commands/StartLifecyclePolicyPreviewCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UploadLayerPartCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ECRServiceException.js +10 -5
- package/dist-es/models/models_0.js +529 -782
- package/dist-es/pagination/DescribeImageScanFindingsPaginator.js +68 -25
- package/dist-es/pagination/DescribeImagesPaginator.js +68 -25
- package/dist-es/pagination/DescribePullThroughCacheRulesPaginator.js +68 -25
- package/dist-es/pagination/DescribeRepositoriesPaginator.js +68 -25
- package/dist-es/pagination/GetLifecyclePolicyPreviewPaginator.js +68 -25
- package/dist-es/pagination/ListImagesPaginator.js +68 -25
- package/dist-es/protocols/Aws_json1_1.js +3875 -3083
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/dist-es/waiters/waitForImageScanComplete.js +56 -36
- package/dist-es/waiters/waitForLifecyclePolicyPreviewComplete.js +56 -36
- package/package.json +5 -5
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { ECRServiceException as __BaseException } from "./ECRServiceException";
|
|
2
3
|
export var LayerFailureCode;
|
|
3
4
|
(function (LayerFailureCode) {
|
|
@@ -9,42 +10,42 @@ export var LayerAvailability;
|
|
|
9
10
|
LayerAvailability["AVAILABLE"] = "AVAILABLE";
|
|
10
11
|
LayerAvailability["UNAVAILABLE"] = "UNAVAILABLE";
|
|
11
12
|
})(LayerAvailability || (LayerAvailability = {}));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
}
|
|
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 };
|
|
48
49
|
export var ImageFailureCode;
|
|
49
50
|
(function (ImageFailureCode) {
|
|
50
51
|
ImageFailureCode["ImageNotFound"] = "ImageNotFound";
|
|
@@ -69,127 +70,127 @@ export var ScanFrequency;
|
|
|
69
70
|
ScanFrequency["MANUAL"] = "MANUAL";
|
|
70
71
|
ScanFrequency["SCAN_ON_PUSH"] = "SCAN_ON_PUSH";
|
|
71
72
|
})(ScanFrequency || (ScanFrequency = {}));
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
}
|
|
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 };
|
|
193
194
|
export var EncryptionType;
|
|
194
195
|
(function (EncryptionType) {
|
|
195
196
|
EncryptionType["AES256"] = "AES256";
|
|
@@ -200,120 +201,120 @@ export var ImageTagMutability;
|
|
|
200
201
|
ImageTagMutability["IMMUTABLE"] = "IMMUTABLE";
|
|
201
202
|
ImageTagMutability["MUTABLE"] = "MUTABLE";
|
|
202
203
|
})(ImageTagMutability || (ImageTagMutability = {}));
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
}
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
}
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
}
|
|
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 };
|
|
299
300
|
export var ReplicationStatus;
|
|
300
301
|
(function (ReplicationStatus) {
|
|
301
302
|
ReplicationStatus["COMPLETE"] = "COMPLETE";
|
|
302
303
|
ReplicationStatus["FAILED"] = "FAILED";
|
|
303
304
|
ReplicationStatus["IN_PROGRESS"] = "IN_PROGRESS";
|
|
304
305
|
})(ReplicationStatus || (ReplicationStatus = {}));
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
}
|
|
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 };
|
|
317
318
|
export var TagStatus;
|
|
318
319
|
(function (TagStatus) {
|
|
319
320
|
TagStatus["ANY"] = "ANY";
|
|
@@ -340,46 +341,46 @@ export var ScanStatus;
|
|
|
340
341
|
ScanStatus["SCAN_ELIGIBILITY_EXPIRED"] = "SCAN_ELIGIBILITY_EXPIRED";
|
|
341
342
|
ScanStatus["UNSUPPORTED_IMAGE"] = "UNSUPPORTED_IMAGE";
|
|
342
343
|
})(ScanStatus || (ScanStatus = {}));
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
}
|
|
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 };
|
|
355
356
|
export var RepositoryFilterType;
|
|
356
357
|
(function (RepositoryFilterType) {
|
|
357
358
|
RepositoryFilterType["PREFIX_MATCH"] = "PREFIX_MATCH";
|
|
358
359
|
})(RepositoryFilterType || (RepositoryFilterType = {}));
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
}
|
|
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 };
|
|
383
384
|
export var ImageActionType;
|
|
384
385
|
(function (ImageActionType) {
|
|
385
386
|
ImageActionType["EXPIRE"] = "EXPIRE";
|
|
@@ -391,489 +392,235 @@ export var LifecyclePolicyPreviewStatus;
|
|
|
391
392
|
LifecyclePolicyPreviewStatus["FAILED"] = "FAILED";
|
|
392
393
|
LifecyclePolicyPreviewStatus["IN_PROGRESS"] = "IN_PROGRESS";
|
|
393
394
|
})(LifecyclePolicyPreviewStatus || (LifecyclePolicyPreviewStatus = {}));
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
}
|
|
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 };
|
|
406
407
|
export var ScanType;
|
|
407
408
|
(function (ScanType) {
|
|
408
409
|
ScanType["BASIC"] = "BASIC";
|
|
409
410
|
ScanType["ENHANCED"] = "ENHANCED";
|
|
410
411
|
})(ScanType || (ScanType = {}));
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
}
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
}
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
}
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
}
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
}
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
}
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
}
|
|
499
|
-
export
|
|
500
|
-
|
|
501
|
-
});
|
|
502
|
-
export
|
|
503
|
-
|
|
504
|
-
});
|
|
505
|
-
export
|
|
506
|
-
|
|
507
|
-
});
|
|
508
|
-
export
|
|
509
|
-
|
|
510
|
-
});
|
|
511
|
-
export
|
|
512
|
-
|
|
513
|
-
});
|
|
514
|
-
export
|
|
515
|
-
|
|
516
|
-
});
|
|
517
|
-
export
|
|
518
|
-
|
|
519
|
-
});
|
|
520
|
-
export
|
|
521
|
-
|
|
522
|
-
});
|
|
523
|
-
export
|
|
524
|
-
|
|
525
|
-
});
|
|
526
|
-
export
|
|
527
|
-
|
|
528
|
-
});
|
|
529
|
-
export
|
|
530
|
-
|
|
531
|
-
});
|
|
532
|
-
export
|
|
533
|
-
|
|
534
|
-
});
|
|
535
|
-
export
|
|
536
|
-
|
|
537
|
-
});
|
|
538
|
-
export
|
|
539
|
-
|
|
540
|
-
});
|
|
541
|
-
export
|
|
542
|
-
|
|
543
|
-
});
|
|
544
|
-
export
|
|
545
|
-
|
|
546
|
-
});
|
|
547
|
-
export
|
|
548
|
-
|
|
549
|
-
});
|
|
550
|
-
export
|
|
551
|
-
|
|
552
|
-
});
|
|
553
|
-
export
|
|
554
|
-
|
|
555
|
-
});
|
|
556
|
-
export
|
|
557
|
-
|
|
558
|
-
});
|
|
559
|
-
export
|
|
560
|
-
|
|
561
|
-
});
|
|
562
|
-
export
|
|
563
|
-
|
|
564
|
-
});
|
|
565
|
-
export
|
|
566
|
-
|
|
567
|
-
});
|
|
568
|
-
export
|
|
569
|
-
|
|
570
|
-
});
|
|
571
|
-
export
|
|
572
|
-
|
|
573
|
-
});
|
|
574
|
-
export
|
|
575
|
-
|
|
576
|
-
});
|
|
577
|
-
export
|
|
578
|
-
|
|
579
|
-
});
|
|
580
|
-
export
|
|
581
|
-
|
|
582
|
-
});
|
|
583
|
-
export
|
|
584
|
-
|
|
585
|
-
});
|
|
586
|
-
export
|
|
587
|
-
|
|
588
|
-
});
|
|
589
|
-
export
|
|
590
|
-
|
|
591
|
-
});
|
|
592
|
-
export
|
|
593
|
-
|
|
594
|
-
});
|
|
595
|
-
export
|
|
596
|
-
|
|
597
|
-
});
|
|
598
|
-
export
|
|
599
|
-
|
|
600
|
-
});
|
|
601
|
-
export
|
|
602
|
-
|
|
603
|
-
});
|
|
604
|
-
export
|
|
605
|
-
|
|
606
|
-
});
|
|
607
|
-
export
|
|
608
|
-
|
|
609
|
-
});
|
|
610
|
-
export
|
|
611
|
-
|
|
612
|
-
});
|
|
613
|
-
export
|
|
614
|
-
|
|
615
|
-
});
|
|
616
|
-
export
|
|
617
|
-
|
|
618
|
-
});
|
|
619
|
-
export
|
|
620
|
-
|
|
621
|
-
});
|
|
622
|
-
export
|
|
623
|
-
|
|
624
|
-
});
|
|
625
|
-
export
|
|
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
|
-
});
|
|
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)); };
|