@aws-sdk/client-ecr-public 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/ECRPUBLIC.js +101 -94
- package/dist-es/ECRPUBLICClient.js +28 -22
- package/dist-es/commands/BatchCheckLayerAvailabilityCommand.js +28 -21
- package/dist-es/commands/BatchDeleteImageCommand.js +28 -21
- package/dist-es/commands/CompleteLayerUploadCommand.js +28 -21
- package/dist-es/commands/CreateRepositoryCommand.js +28 -21
- package/dist-es/commands/DeleteRepositoryCommand.js +28 -21
- package/dist-es/commands/DeleteRepositoryPolicyCommand.js +28 -21
- package/dist-es/commands/DescribeImageTagsCommand.js +28 -21
- package/dist-es/commands/DescribeImagesCommand.js +28 -21
- package/dist-es/commands/DescribeRegistriesCommand.js +28 -21
- package/dist-es/commands/DescribeRepositoriesCommand.js +28 -21
- package/dist-es/commands/GetAuthorizationTokenCommand.js +28 -21
- package/dist-es/commands/GetRegistryCatalogDataCommand.js +28 -21
- package/dist-es/commands/GetRepositoryCatalogDataCommand.js +28 -21
- package/dist-es/commands/GetRepositoryPolicyCommand.js +28 -21
- package/dist-es/commands/InitiateLayerUploadCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/PutImageCommand.js +28 -21
- package/dist-es/commands/PutRegistryCatalogDataCommand.js +28 -21
- package/dist-es/commands/PutRepositoryCatalogDataCommand.js +28 -21
- package/dist-es/commands/SetRepositoryPolicyCommand.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/ECRPUBLICServiceException.js +10 -5
- package/dist-es/models/models_0.js +320 -443
- package/dist-es/pagination/DescribeImageTagsPaginator.js +68 -25
- package/dist-es/pagination/DescribeImagesPaginator.js +68 -25
- package/dist-es/pagination/DescribeRegistriesPaginator.js +68 -25
- package/dist-es/pagination/DescribeRepositoriesPaginator.js +68 -25
- package/dist-es/protocols/Aws_json1_1.js +2211 -1747
- 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/package.json +5 -5
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { ECRPUBLICServiceException as __BaseException } from "./ECRPUBLICServiceException";
|
|
2
3
|
export var LayerFailureCode;
|
|
3
4
|
(function (LayerFailureCode) {
|
|
@@ -9,54 +10,54 @@ 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
|
-
this.$fault = "client";
|
|
21
|
-
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
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;
|
|
22
21
|
}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
22
|
+
return InvalidParameterException;
|
|
23
|
+
}(__BaseException));
|
|
24
|
+
export { InvalidParameterException };
|
|
25
|
+
var RegistryNotFoundException = (function (_super) {
|
|
26
|
+
__extends(RegistryNotFoundException, _super);
|
|
27
|
+
function RegistryNotFoundException(opts) {
|
|
28
|
+
var _this = _super.call(this, __assign({ name: "RegistryNotFoundException", $fault: "client" }, opts)) || this;
|
|
29
|
+
_this.name = "RegistryNotFoundException";
|
|
30
|
+
_this.$fault = "client";
|
|
31
|
+
Object.setPrototypeOf(_this, RegistryNotFoundException.prototype);
|
|
32
|
+
return _this;
|
|
34
33
|
}
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
34
|
+
return RegistryNotFoundException;
|
|
35
|
+
}(__BaseException));
|
|
36
|
+
export { RegistryNotFoundException };
|
|
37
|
+
var RepositoryNotFoundException = (function (_super) {
|
|
38
|
+
__extends(RepositoryNotFoundException, _super);
|
|
39
|
+
function RepositoryNotFoundException(opts) {
|
|
40
|
+
var _this = _super.call(this, __assign({ name: "RepositoryNotFoundException", $fault: "client" }, opts)) || this;
|
|
41
|
+
_this.name = "RepositoryNotFoundException";
|
|
42
|
+
_this.$fault = "client";
|
|
43
|
+
Object.setPrototypeOf(_this, RepositoryNotFoundException.prototype);
|
|
44
|
+
return _this;
|
|
46
45
|
}
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
46
|
+
return RepositoryNotFoundException;
|
|
47
|
+
}(__BaseException));
|
|
48
|
+
export { RepositoryNotFoundException };
|
|
49
|
+
var ServerException = (function (_super) {
|
|
50
|
+
__extends(ServerException, _super);
|
|
51
|
+
function ServerException(opts) {
|
|
52
|
+
var _this = _super.call(this, __assign({ name: "ServerException", $fault: "server" }, opts)) || this;
|
|
53
|
+
_this.name = "ServerException";
|
|
54
|
+
_this.$fault = "server";
|
|
55
|
+
Object.setPrototypeOf(_this, ServerException.prototype);
|
|
56
|
+
return _this;
|
|
58
57
|
}
|
|
59
|
-
|
|
58
|
+
return ServerException;
|
|
59
|
+
}(__BaseException));
|
|
60
|
+
export { ServerException };
|
|
60
61
|
export var ImageFailureCode;
|
|
61
62
|
(function (ImageFailureCode) {
|
|
62
63
|
ImageFailureCode["ImageNotFound"] = "ImageNotFound";
|
|
@@ -67,427 +68,303 @@ export var ImageFailureCode;
|
|
|
67
68
|
ImageFailureCode["KmsError"] = "KmsError";
|
|
68
69
|
ImageFailureCode["MissingDigestAndTag"] = "MissingDigestAndTag";
|
|
69
70
|
})(ImageFailureCode || (ImageFailureCode = {}));
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
this.$fault = "client";
|
|
79
|
-
Object.setPrototypeOf(this, EmptyUploadException.prototype);
|
|
71
|
+
var EmptyUploadException = (function (_super) {
|
|
72
|
+
__extends(EmptyUploadException, _super);
|
|
73
|
+
function EmptyUploadException(opts) {
|
|
74
|
+
var _this = _super.call(this, __assign({ name: "EmptyUploadException", $fault: "client" }, opts)) || this;
|
|
75
|
+
_this.name = "EmptyUploadException";
|
|
76
|
+
_this.$fault = "client";
|
|
77
|
+
Object.setPrototypeOf(_this, EmptyUploadException.prototype);
|
|
78
|
+
return _this;
|
|
80
79
|
}
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
80
|
+
return EmptyUploadException;
|
|
81
|
+
}(__BaseException));
|
|
82
|
+
export { EmptyUploadException };
|
|
83
|
+
var InvalidLayerException = (function (_super) {
|
|
84
|
+
__extends(InvalidLayerException, _super);
|
|
85
|
+
function InvalidLayerException(opts) {
|
|
86
|
+
var _this = _super.call(this, __assign({ name: "InvalidLayerException", $fault: "client" }, opts)) || this;
|
|
87
|
+
_this.name = "InvalidLayerException";
|
|
88
|
+
_this.$fault = "client";
|
|
89
|
+
Object.setPrototypeOf(_this, InvalidLayerException.prototype);
|
|
90
|
+
return _this;
|
|
92
91
|
}
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
92
|
+
return InvalidLayerException;
|
|
93
|
+
}(__BaseException));
|
|
94
|
+
export { InvalidLayerException };
|
|
95
|
+
var LayerAlreadyExistsException = (function (_super) {
|
|
96
|
+
__extends(LayerAlreadyExistsException, _super);
|
|
97
|
+
function LayerAlreadyExistsException(opts) {
|
|
98
|
+
var _this = _super.call(this, __assign({ name: "LayerAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
99
|
+
_this.name = "LayerAlreadyExistsException";
|
|
100
|
+
_this.$fault = "client";
|
|
101
|
+
Object.setPrototypeOf(_this, LayerAlreadyExistsException.prototype);
|
|
102
|
+
return _this;
|
|
104
103
|
}
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
104
|
+
return LayerAlreadyExistsException;
|
|
105
|
+
}(__BaseException));
|
|
106
|
+
export { LayerAlreadyExistsException };
|
|
107
|
+
var LayerPartTooSmallException = (function (_super) {
|
|
108
|
+
__extends(LayerPartTooSmallException, _super);
|
|
109
|
+
function LayerPartTooSmallException(opts) {
|
|
110
|
+
var _this = _super.call(this, __assign({ name: "LayerPartTooSmallException", $fault: "client" }, opts)) || this;
|
|
111
|
+
_this.name = "LayerPartTooSmallException";
|
|
112
|
+
_this.$fault = "client";
|
|
113
|
+
Object.setPrototypeOf(_this, LayerPartTooSmallException.prototype);
|
|
114
|
+
return _this;
|
|
116
115
|
}
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
116
|
+
return LayerPartTooSmallException;
|
|
117
|
+
}(__BaseException));
|
|
118
|
+
export { LayerPartTooSmallException };
|
|
119
|
+
var UnsupportedCommandException = (function (_super) {
|
|
120
|
+
__extends(UnsupportedCommandException, _super);
|
|
121
|
+
function UnsupportedCommandException(opts) {
|
|
122
|
+
var _this = _super.call(this, __assign({ name: "UnsupportedCommandException", $fault: "client" }, opts)) || this;
|
|
123
|
+
_this.name = "UnsupportedCommandException";
|
|
124
|
+
_this.$fault = "client";
|
|
125
|
+
Object.setPrototypeOf(_this, UnsupportedCommandException.prototype);
|
|
126
|
+
return _this;
|
|
128
127
|
}
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
128
|
+
return UnsupportedCommandException;
|
|
129
|
+
}(__BaseException));
|
|
130
|
+
export { UnsupportedCommandException };
|
|
131
|
+
var UploadNotFoundException = (function (_super) {
|
|
132
|
+
__extends(UploadNotFoundException, _super);
|
|
133
|
+
function UploadNotFoundException(opts) {
|
|
134
|
+
var _this = _super.call(this, __assign({ name: "UploadNotFoundException", $fault: "client" }, opts)) || this;
|
|
135
|
+
_this.name = "UploadNotFoundException";
|
|
136
|
+
_this.$fault = "client";
|
|
137
|
+
Object.setPrototypeOf(_this, UploadNotFoundException.prototype);
|
|
138
|
+
return _this;
|
|
140
139
|
}
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
140
|
+
return UploadNotFoundException;
|
|
141
|
+
}(__BaseException));
|
|
142
|
+
export { UploadNotFoundException };
|
|
143
|
+
var InvalidTagParameterException = (function (_super) {
|
|
144
|
+
__extends(InvalidTagParameterException, _super);
|
|
145
|
+
function InvalidTagParameterException(opts) {
|
|
146
|
+
var _this = _super.call(this, __assign({ name: "InvalidTagParameterException", $fault: "client" }, opts)) || this;
|
|
147
|
+
_this.name = "InvalidTagParameterException";
|
|
148
|
+
_this.$fault = "client";
|
|
149
|
+
Object.setPrototypeOf(_this, InvalidTagParameterException.prototype);
|
|
150
|
+
return _this;
|
|
152
151
|
}
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
152
|
+
return InvalidTagParameterException;
|
|
153
|
+
}(__BaseException));
|
|
154
|
+
export { InvalidTagParameterException };
|
|
155
|
+
var LimitExceededException = (function (_super) {
|
|
156
|
+
__extends(LimitExceededException, _super);
|
|
157
|
+
function LimitExceededException(opts) {
|
|
158
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
159
|
+
_this.name = "LimitExceededException";
|
|
160
|
+
_this.$fault = "client";
|
|
161
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
162
|
+
return _this;
|
|
164
163
|
}
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
164
|
+
return LimitExceededException;
|
|
165
|
+
}(__BaseException));
|
|
166
|
+
export { LimitExceededException };
|
|
167
|
+
var RepositoryAlreadyExistsException = (function (_super) {
|
|
168
|
+
__extends(RepositoryAlreadyExistsException, _super);
|
|
169
|
+
function RepositoryAlreadyExistsException(opts) {
|
|
170
|
+
var _this = _super.call(this, __assign({ name: "RepositoryAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
171
|
+
_this.name = "RepositoryAlreadyExistsException";
|
|
172
|
+
_this.$fault = "client";
|
|
173
|
+
Object.setPrototypeOf(_this, RepositoryAlreadyExistsException.prototype);
|
|
174
|
+
return _this;
|
|
176
175
|
}
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
176
|
+
return RepositoryAlreadyExistsException;
|
|
177
|
+
}(__BaseException));
|
|
178
|
+
export { RepositoryAlreadyExistsException };
|
|
179
|
+
var TooManyTagsException = (function (_super) {
|
|
180
|
+
__extends(TooManyTagsException, _super);
|
|
181
|
+
function TooManyTagsException(opts) {
|
|
182
|
+
var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
|
|
183
|
+
_this.name = "TooManyTagsException";
|
|
184
|
+
_this.$fault = "client";
|
|
185
|
+
Object.setPrototypeOf(_this, TooManyTagsException.prototype);
|
|
186
|
+
return _this;
|
|
188
187
|
}
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
188
|
+
return TooManyTagsException;
|
|
189
|
+
}(__BaseException));
|
|
190
|
+
export { TooManyTagsException };
|
|
191
|
+
var RepositoryNotEmptyException = (function (_super) {
|
|
192
|
+
__extends(RepositoryNotEmptyException, _super);
|
|
193
|
+
function RepositoryNotEmptyException(opts) {
|
|
194
|
+
var _this = _super.call(this, __assign({ name: "RepositoryNotEmptyException", $fault: "client" }, opts)) || this;
|
|
195
|
+
_this.name = "RepositoryNotEmptyException";
|
|
196
|
+
_this.$fault = "client";
|
|
197
|
+
Object.setPrototypeOf(_this, RepositoryNotEmptyException.prototype);
|
|
198
|
+
return _this;
|
|
200
199
|
}
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
200
|
+
return RepositoryNotEmptyException;
|
|
201
|
+
}(__BaseException));
|
|
202
|
+
export { RepositoryNotEmptyException };
|
|
203
|
+
var RepositoryPolicyNotFoundException = (function (_super) {
|
|
204
|
+
__extends(RepositoryPolicyNotFoundException, _super);
|
|
205
|
+
function RepositoryPolicyNotFoundException(opts) {
|
|
206
|
+
var _this = _super.call(this, __assign({ name: "RepositoryPolicyNotFoundException", $fault: "client" }, opts)) || this;
|
|
207
|
+
_this.name = "RepositoryPolicyNotFoundException";
|
|
208
|
+
_this.$fault = "client";
|
|
209
|
+
Object.setPrototypeOf(_this, RepositoryPolicyNotFoundException.prototype);
|
|
210
|
+
return _this;
|
|
212
211
|
}
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
212
|
+
return RepositoryPolicyNotFoundException;
|
|
213
|
+
}(__BaseException));
|
|
214
|
+
export { RepositoryPolicyNotFoundException };
|
|
215
|
+
var ImageNotFoundException = (function (_super) {
|
|
216
|
+
__extends(ImageNotFoundException, _super);
|
|
217
|
+
function ImageNotFoundException(opts) {
|
|
218
|
+
var _this = _super.call(this, __assign({ name: "ImageNotFoundException", $fault: "client" }, opts)) || this;
|
|
219
|
+
_this.name = "ImageNotFoundException";
|
|
220
|
+
_this.$fault = "client";
|
|
221
|
+
Object.setPrototypeOf(_this, ImageNotFoundException.prototype);
|
|
222
|
+
return _this;
|
|
224
223
|
}
|
|
225
|
-
|
|
224
|
+
return ImageNotFoundException;
|
|
225
|
+
}(__BaseException));
|
|
226
|
+
export { ImageNotFoundException };
|
|
226
227
|
export var RegistryAliasStatus;
|
|
227
228
|
(function (RegistryAliasStatus) {
|
|
228
229
|
RegistryAliasStatus["ACTIVE"] = "ACTIVE";
|
|
229
230
|
RegistryAliasStatus["PENDING"] = "PENDING";
|
|
230
231
|
RegistryAliasStatus["REJECTED"] = "REJECTED";
|
|
231
232
|
})(RegistryAliasStatus || (RegistryAliasStatus = {}));
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
this.$fault = "client";
|
|
241
|
-
Object.setPrototypeOf(this, ImageAlreadyExistsException.prototype);
|
|
233
|
+
var ImageAlreadyExistsException = (function (_super) {
|
|
234
|
+
__extends(ImageAlreadyExistsException, _super);
|
|
235
|
+
function ImageAlreadyExistsException(opts) {
|
|
236
|
+
var _this = _super.call(this, __assign({ name: "ImageAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
237
|
+
_this.name = "ImageAlreadyExistsException";
|
|
238
|
+
_this.$fault = "client";
|
|
239
|
+
Object.setPrototypeOf(_this, ImageAlreadyExistsException.prototype);
|
|
240
|
+
return _this;
|
|
242
241
|
}
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
242
|
+
return ImageAlreadyExistsException;
|
|
243
|
+
}(__BaseException));
|
|
244
|
+
export { ImageAlreadyExistsException };
|
|
245
|
+
var ImageDigestDoesNotMatchException = (function (_super) {
|
|
246
|
+
__extends(ImageDigestDoesNotMatchException, _super);
|
|
247
|
+
function ImageDigestDoesNotMatchException(opts) {
|
|
248
|
+
var _this = _super.call(this, __assign({ name: "ImageDigestDoesNotMatchException", $fault: "client" }, opts)) || this;
|
|
249
|
+
_this.name = "ImageDigestDoesNotMatchException";
|
|
250
|
+
_this.$fault = "client";
|
|
251
|
+
Object.setPrototypeOf(_this, ImageDigestDoesNotMatchException.prototype);
|
|
252
|
+
return _this;
|
|
254
253
|
}
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
254
|
+
return ImageDigestDoesNotMatchException;
|
|
255
|
+
}(__BaseException));
|
|
256
|
+
export { ImageDigestDoesNotMatchException };
|
|
257
|
+
var ImageTagAlreadyExistsException = (function (_super) {
|
|
258
|
+
__extends(ImageTagAlreadyExistsException, _super);
|
|
259
|
+
function ImageTagAlreadyExistsException(opts) {
|
|
260
|
+
var _this = _super.call(this, __assign({ name: "ImageTagAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
261
|
+
_this.name = "ImageTagAlreadyExistsException";
|
|
262
|
+
_this.$fault = "client";
|
|
263
|
+
Object.setPrototypeOf(_this, ImageTagAlreadyExistsException.prototype);
|
|
264
|
+
return _this;
|
|
266
265
|
}
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
266
|
+
return ImageTagAlreadyExistsException;
|
|
267
|
+
}(__BaseException));
|
|
268
|
+
export { ImageTagAlreadyExistsException };
|
|
269
|
+
var InvalidLayerPartException = (function (_super) {
|
|
270
|
+
__extends(InvalidLayerPartException, _super);
|
|
271
|
+
function InvalidLayerPartException(opts) {
|
|
272
|
+
var _this = _super.call(this, __assign({ name: "InvalidLayerPartException", $fault: "client" }, opts)) || this;
|
|
273
|
+
_this.name = "InvalidLayerPartException";
|
|
274
|
+
_this.$fault = "client";
|
|
275
|
+
Object.setPrototypeOf(_this, InvalidLayerPartException.prototype);
|
|
276
|
+
_this.registryId = opts.registryId;
|
|
277
|
+
_this.repositoryName = opts.repositoryName;
|
|
278
|
+
_this.uploadId = opts.uploadId;
|
|
279
|
+
_this.lastValidByteReceived = opts.lastValidByteReceived;
|
|
280
|
+
return _this;
|
|
282
281
|
}
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
282
|
+
return InvalidLayerPartException;
|
|
283
|
+
}(__BaseException));
|
|
284
|
+
export { InvalidLayerPartException };
|
|
285
|
+
var LayersNotFoundException = (function (_super) {
|
|
286
|
+
__extends(LayersNotFoundException, _super);
|
|
287
|
+
function LayersNotFoundException(opts) {
|
|
288
|
+
var _this = _super.call(this, __assign({ name: "LayersNotFoundException", $fault: "client" }, opts)) || this;
|
|
289
|
+
_this.name = "LayersNotFoundException";
|
|
290
|
+
_this.$fault = "client";
|
|
291
|
+
Object.setPrototypeOf(_this, LayersNotFoundException.prototype);
|
|
292
|
+
return _this;
|
|
294
293
|
}
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
294
|
+
return LayersNotFoundException;
|
|
295
|
+
}(__BaseException));
|
|
296
|
+
export { LayersNotFoundException };
|
|
297
|
+
var ReferencedImagesNotFoundException = (function (_super) {
|
|
298
|
+
__extends(ReferencedImagesNotFoundException, _super);
|
|
299
|
+
function ReferencedImagesNotFoundException(opts) {
|
|
300
|
+
var _this = _super.call(this, __assign({ name: "ReferencedImagesNotFoundException", $fault: "client" }, opts)) || this;
|
|
301
|
+
_this.name = "ReferencedImagesNotFoundException";
|
|
302
|
+
_this.$fault = "client";
|
|
303
|
+
Object.setPrototypeOf(_this, ReferencedImagesNotFoundException.prototype);
|
|
304
|
+
return _this;
|
|
306
305
|
}
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
});
|
|
311
|
-
export
|
|
312
|
-
|
|
313
|
-
});
|
|
314
|
-
export
|
|
315
|
-
|
|
316
|
-
});
|
|
317
|
-
export
|
|
318
|
-
|
|
319
|
-
});
|
|
320
|
-
export
|
|
321
|
-
|
|
322
|
-
});
|
|
323
|
-
export
|
|
324
|
-
|
|
325
|
-
});
|
|
326
|
-
export
|
|
327
|
-
|
|
328
|
-
});
|
|
329
|
-
export
|
|
330
|
-
|
|
331
|
-
});
|
|
332
|
-
export
|
|
333
|
-
|
|
334
|
-
});
|
|
335
|
-
export
|
|
336
|
-
|
|
337
|
-
});
|
|
338
|
-
export
|
|
339
|
-
|
|
340
|
-
});
|
|
341
|
-
export
|
|
342
|
-
|
|
343
|
-
});
|
|
344
|
-
export
|
|
345
|
-
|
|
346
|
-
});
|
|
347
|
-
export
|
|
348
|
-
|
|
349
|
-
});
|
|
350
|
-
export
|
|
351
|
-
|
|
352
|
-
});
|
|
353
|
-
export
|
|
354
|
-
|
|
355
|
-
});
|
|
356
|
-
export
|
|
357
|
-
|
|
358
|
-
});
|
|
359
|
-
export
|
|
360
|
-
|
|
361
|
-
});
|
|
362
|
-
export
|
|
363
|
-
|
|
364
|
-
});
|
|
365
|
-
export
|
|
366
|
-
|
|
367
|
-
});
|
|
368
|
-
export
|
|
369
|
-
|
|
370
|
-
});
|
|
371
|
-
export
|
|
372
|
-
...obj,
|
|
373
|
-
});
|
|
374
|
-
export const ImageDetailFilterSensitiveLog = (obj) => ({
|
|
375
|
-
...obj,
|
|
376
|
-
});
|
|
377
|
-
export const DescribeImagesResponseFilterSensitiveLog = (obj) => ({
|
|
378
|
-
...obj,
|
|
379
|
-
});
|
|
380
|
-
export const DescribeImageTagsRequestFilterSensitiveLog = (obj) => ({
|
|
381
|
-
...obj,
|
|
382
|
-
});
|
|
383
|
-
export const ReferencedImageDetailFilterSensitiveLog = (obj) => ({
|
|
384
|
-
...obj,
|
|
385
|
-
});
|
|
386
|
-
export const ImageTagDetailFilterSensitiveLog = (obj) => ({
|
|
387
|
-
...obj,
|
|
388
|
-
});
|
|
389
|
-
export const DescribeImageTagsResponseFilterSensitiveLog = (obj) => ({
|
|
390
|
-
...obj,
|
|
391
|
-
});
|
|
392
|
-
export const DescribeRegistriesRequestFilterSensitiveLog = (obj) => ({
|
|
393
|
-
...obj,
|
|
394
|
-
});
|
|
395
|
-
export const RegistryAliasFilterSensitiveLog = (obj) => ({
|
|
396
|
-
...obj,
|
|
397
|
-
});
|
|
398
|
-
export const RegistryFilterSensitiveLog = (obj) => ({
|
|
399
|
-
...obj,
|
|
400
|
-
});
|
|
401
|
-
export const DescribeRegistriesResponseFilterSensitiveLog = (obj) => ({
|
|
402
|
-
...obj,
|
|
403
|
-
});
|
|
404
|
-
export const DescribeRepositoriesRequestFilterSensitiveLog = (obj) => ({
|
|
405
|
-
...obj,
|
|
406
|
-
});
|
|
407
|
-
export const DescribeRepositoriesResponseFilterSensitiveLog = (obj) => ({
|
|
408
|
-
...obj,
|
|
409
|
-
});
|
|
410
|
-
export const GetAuthorizationTokenRequestFilterSensitiveLog = (obj) => ({
|
|
411
|
-
...obj,
|
|
412
|
-
});
|
|
413
|
-
export const GetAuthorizationTokenResponseFilterSensitiveLog = (obj) => ({
|
|
414
|
-
...obj,
|
|
415
|
-
});
|
|
416
|
-
export const GetRegistryCatalogDataRequestFilterSensitiveLog = (obj) => ({
|
|
417
|
-
...obj,
|
|
418
|
-
});
|
|
419
|
-
export const RegistryCatalogDataFilterSensitiveLog = (obj) => ({
|
|
420
|
-
...obj,
|
|
421
|
-
});
|
|
422
|
-
export const GetRegistryCatalogDataResponseFilterSensitiveLog = (obj) => ({
|
|
423
|
-
...obj,
|
|
424
|
-
});
|
|
425
|
-
export const GetRepositoryCatalogDataRequestFilterSensitiveLog = (obj) => ({
|
|
426
|
-
...obj,
|
|
427
|
-
});
|
|
428
|
-
export const GetRepositoryCatalogDataResponseFilterSensitiveLog = (obj) => ({
|
|
429
|
-
...obj,
|
|
430
|
-
});
|
|
431
|
-
export const GetRepositoryPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
432
|
-
...obj,
|
|
433
|
-
});
|
|
434
|
-
export const GetRepositoryPolicyResponseFilterSensitiveLog = (obj) => ({
|
|
435
|
-
...obj,
|
|
436
|
-
});
|
|
437
|
-
export const ImageFilterSensitiveLog = (obj) => ({
|
|
438
|
-
...obj,
|
|
439
|
-
});
|
|
440
|
-
export const InitiateLayerUploadRequestFilterSensitiveLog = (obj) => ({
|
|
441
|
-
...obj,
|
|
442
|
-
});
|
|
443
|
-
export const InitiateLayerUploadResponseFilterSensitiveLog = (obj) => ({
|
|
444
|
-
...obj,
|
|
445
|
-
});
|
|
446
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
447
|
-
...obj,
|
|
448
|
-
});
|
|
449
|
-
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
450
|
-
...obj,
|
|
451
|
-
});
|
|
452
|
-
export const PutImageRequestFilterSensitiveLog = (obj) => ({
|
|
453
|
-
...obj,
|
|
454
|
-
});
|
|
455
|
-
export const PutImageResponseFilterSensitiveLog = (obj) => ({
|
|
456
|
-
...obj,
|
|
457
|
-
});
|
|
458
|
-
export const PutRegistryCatalogDataRequestFilterSensitiveLog = (obj) => ({
|
|
459
|
-
...obj,
|
|
460
|
-
});
|
|
461
|
-
export const PutRegistryCatalogDataResponseFilterSensitiveLog = (obj) => ({
|
|
462
|
-
...obj,
|
|
463
|
-
});
|
|
464
|
-
export const PutRepositoryCatalogDataRequestFilterSensitiveLog = (obj) => ({
|
|
465
|
-
...obj,
|
|
466
|
-
});
|
|
467
|
-
export const PutRepositoryCatalogDataResponseFilterSensitiveLog = (obj) => ({
|
|
468
|
-
...obj,
|
|
469
|
-
});
|
|
470
|
-
export const SetRepositoryPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
471
|
-
...obj,
|
|
472
|
-
});
|
|
473
|
-
export const SetRepositoryPolicyResponseFilterSensitiveLog = (obj) => ({
|
|
474
|
-
...obj,
|
|
475
|
-
});
|
|
476
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
477
|
-
...obj,
|
|
478
|
-
});
|
|
479
|
-
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
480
|
-
...obj,
|
|
481
|
-
});
|
|
482
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
483
|
-
...obj,
|
|
484
|
-
});
|
|
485
|
-
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
486
|
-
...obj,
|
|
487
|
-
});
|
|
488
|
-
export const UploadLayerPartRequestFilterSensitiveLog = (obj) => ({
|
|
489
|
-
...obj,
|
|
490
|
-
});
|
|
491
|
-
export const UploadLayerPartResponseFilterSensitiveLog = (obj) => ({
|
|
492
|
-
...obj,
|
|
493
|
-
});
|
|
306
|
+
return ReferencedImagesNotFoundException;
|
|
307
|
+
}(__BaseException));
|
|
308
|
+
export { ReferencedImagesNotFoundException };
|
|
309
|
+
export var AuthorizationDataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
310
|
+
export var BatchCheckLayerAvailabilityRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
311
|
+
export var LayerFailureFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
312
|
+
export var LayerFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
313
|
+
export var BatchCheckLayerAvailabilityResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
314
|
+
export var ImageIdentifierFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
315
|
+
export var BatchDeleteImageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
316
|
+
export var ImageFailureFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
317
|
+
export var BatchDeleteImageResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
318
|
+
export var CompleteLayerUploadRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
319
|
+
export var CompleteLayerUploadResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
320
|
+
export var RepositoryCatalogDataInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
321
|
+
export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
322
|
+
export var CreateRepositoryRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
323
|
+
export var RepositoryCatalogDataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
324
|
+
export var RepositoryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
325
|
+
export var CreateRepositoryResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
326
|
+
export var DeleteRepositoryRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
327
|
+
export var DeleteRepositoryResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
328
|
+
export var DeleteRepositoryPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
329
|
+
export var DeleteRepositoryPolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
330
|
+
export var DescribeImagesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
331
|
+
export var ImageDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
332
|
+
export var DescribeImagesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
333
|
+
export var DescribeImageTagsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
334
|
+
export var ReferencedImageDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
335
|
+
export var ImageTagDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
336
|
+
export var DescribeImageTagsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
337
|
+
export var DescribeRegistriesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
338
|
+
export var RegistryAliasFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
339
|
+
export var RegistryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
340
|
+
export var DescribeRegistriesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
341
|
+
export var DescribeRepositoriesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
342
|
+
export var DescribeRepositoriesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
343
|
+
export var GetAuthorizationTokenRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
344
|
+
export var GetAuthorizationTokenResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
345
|
+
export var GetRegistryCatalogDataRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
346
|
+
export var RegistryCatalogDataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
347
|
+
export var GetRegistryCatalogDataResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
348
|
+
export var GetRepositoryCatalogDataRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
349
|
+
export var GetRepositoryCatalogDataResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
350
|
+
export var GetRepositoryPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
351
|
+
export var GetRepositoryPolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
352
|
+
export var ImageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
353
|
+
export var InitiateLayerUploadRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
354
|
+
export var InitiateLayerUploadResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
355
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
356
|
+
export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
357
|
+
export var PutImageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
358
|
+
export var PutImageResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
359
|
+
export var PutRegistryCatalogDataRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
360
|
+
export var PutRegistryCatalogDataResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
361
|
+
export var PutRepositoryCatalogDataRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
362
|
+
export var PutRepositoryCatalogDataResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
363
|
+
export var SetRepositoryPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
364
|
+
export var SetRepositoryPolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
365
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
366
|
+
export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
367
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
368
|
+
export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
369
|
+
export var UploadLayerPartRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
370
|
+
export var UploadLayerPartResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|