@aws-sdk/client-ecr 3.186.0 → 3.190.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 +16 -0
- package/dist-es/ECR.js +166 -173
- package/dist-es/ECRClient.js +22 -28
- package/dist-es/commands/BatchCheckLayerAvailabilityCommand.js +21 -28
- package/dist-es/commands/BatchDeleteImageCommand.js +21 -28
- package/dist-es/commands/BatchGetImageCommand.js +21 -28
- package/dist-es/commands/BatchGetRepositoryScanningConfigurationCommand.js +21 -28
- package/dist-es/commands/CompleteLayerUploadCommand.js +21 -28
- package/dist-es/commands/CreatePullThroughCacheRuleCommand.js +21 -28
- package/dist-es/commands/CreateRepositoryCommand.js +21 -28
- package/dist-es/commands/DeleteLifecyclePolicyCommand.js +21 -28
- package/dist-es/commands/DeletePullThroughCacheRuleCommand.js +21 -28
- package/dist-es/commands/DeleteRegistryPolicyCommand.js +21 -28
- package/dist-es/commands/DeleteRepositoryCommand.js +21 -28
- package/dist-es/commands/DeleteRepositoryPolicyCommand.js +21 -28
- package/dist-es/commands/DescribeImageReplicationStatusCommand.js +21 -28
- package/dist-es/commands/DescribeImageScanFindingsCommand.js +21 -28
- package/dist-es/commands/DescribeImagesCommand.js +21 -28
- package/dist-es/commands/DescribePullThroughCacheRulesCommand.js +21 -28
- package/dist-es/commands/DescribeRegistryCommand.js +21 -28
- package/dist-es/commands/DescribeRepositoriesCommand.js +21 -28
- package/dist-es/commands/GetAuthorizationTokenCommand.js +21 -28
- package/dist-es/commands/GetDownloadUrlForLayerCommand.js +21 -28
- package/dist-es/commands/GetLifecyclePolicyCommand.js +21 -28
- package/dist-es/commands/GetLifecyclePolicyPreviewCommand.js +21 -28
- package/dist-es/commands/GetRegistryPolicyCommand.js +21 -28
- package/dist-es/commands/GetRegistryScanningConfigurationCommand.js +21 -28
- package/dist-es/commands/GetRepositoryPolicyCommand.js +21 -28
- package/dist-es/commands/InitiateLayerUploadCommand.js +21 -28
- package/dist-es/commands/ListImagesCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/PutImageCommand.js +21 -28
- package/dist-es/commands/PutImageScanningConfigurationCommand.js +21 -28
- package/dist-es/commands/PutImageTagMutabilityCommand.js +21 -28
- package/dist-es/commands/PutLifecyclePolicyCommand.js +21 -28
- package/dist-es/commands/PutRegistryPolicyCommand.js +21 -28
- package/dist-es/commands/PutRegistryScanningConfigurationCommand.js +21 -28
- package/dist-es/commands/PutReplicationConfigurationCommand.js +21 -28
- package/dist-es/commands/SetRepositoryPolicyCommand.js +21 -28
- package/dist-es/commands/StartImageScanCommand.js +21 -28
- package/dist-es/commands/StartLifecyclePolicyPreviewCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +21 -28
- package/dist-es/commands/UntagResourceCommand.js +21 -28
- package/dist-es/commands/UploadLayerPartCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ECRServiceException.js +5 -10
- package/dist-es/models/models_0.js +782 -529
- package/dist-es/pagination/DescribeImageScanFindingsPaginator.js +25 -68
- package/dist-es/pagination/DescribeImagesPaginator.js +25 -68
- package/dist-es/pagination/DescribePullThroughCacheRulesPaginator.js +25 -68
- package/dist-es/pagination/DescribeRepositoriesPaginator.js +25 -68
- package/dist-es/pagination/GetLifecyclePolicyPreviewPaginator.js +25 -68
- package/dist-es/pagination/ListImagesPaginator.js +25 -68
- package/dist-es/protocols/Aws_json1_1.js +3083 -3875
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/dist-es/waiters/waitForImageScanComplete.js +36 -56
- package/dist-es/waiters/waitForLifecyclePolicyPreviewComplete.js +36 -56
- 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
|
-
|
|
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
|
-
}
|
|
48
|
-
|
|
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
|
-
|
|
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
|
-
}
|
|
193
|
-
|
|
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
|
-
|
|
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
|
-
}
|
|
299
|
-
|
|
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
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
}
|
|
317
|
-
|
|
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
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
}
|
|
355
|
-
|
|
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
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
}
|
|
383
|
-
|
|
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
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
}
|
|
406
|
-
|
|
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
|
-
|
|
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
|
-
|
|
500
|
-
export
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
export
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
export
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
export
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
export
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
export
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
export
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
export
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
export
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
export
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
export
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
export
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
export
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
export
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
export
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
export
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
export
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
export
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
export
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
export
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
export
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
export
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
export
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
export
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
export
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
export
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
export
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
export
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
export
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
export
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
export
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
export
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
export
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
export
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
export
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
export
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
export
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
export
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
export
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
export
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
export
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
export
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
export
|
|
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
|
+
});
|