@aws-sdk/client-codeartifact 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_restJson1.js +2 -2
- package/dist-es/Codeartifact.js +153 -146
- package/dist-es/CodeartifactClient.js +28 -22
- package/dist-es/commands/AssociateExternalConnectionCommand.js +28 -21
- package/dist-es/commands/CopyPackageVersionsCommand.js +28 -21
- package/dist-es/commands/CreateDomainCommand.js +28 -21
- package/dist-es/commands/CreateRepositoryCommand.js +28 -21
- package/dist-es/commands/DeleteDomainCommand.js +28 -21
- package/dist-es/commands/DeleteDomainPermissionsPolicyCommand.js +28 -21
- package/dist-es/commands/DeletePackageVersionsCommand.js +28 -21
- package/dist-es/commands/DeleteRepositoryCommand.js +28 -21
- package/dist-es/commands/DeleteRepositoryPermissionsPolicyCommand.js +28 -21
- package/dist-es/commands/DescribeDomainCommand.js +28 -21
- package/dist-es/commands/DescribePackageCommand.js +28 -21
- package/dist-es/commands/DescribePackageVersionCommand.js +28 -21
- package/dist-es/commands/DescribeRepositoryCommand.js +28 -21
- package/dist-es/commands/DisassociateExternalConnectionCommand.js +28 -21
- package/dist-es/commands/DisposePackageVersionsCommand.js +28 -21
- package/dist-es/commands/GetAuthorizationTokenCommand.js +28 -21
- package/dist-es/commands/GetDomainPermissionsPolicyCommand.js +28 -21
- package/dist-es/commands/GetPackageVersionAssetCommand.js +28 -21
- package/dist-es/commands/GetPackageVersionReadmeCommand.js +28 -21
- package/dist-es/commands/GetRepositoryEndpointCommand.js +28 -21
- package/dist-es/commands/GetRepositoryPermissionsPolicyCommand.js +28 -21
- package/dist-es/commands/ListDomainsCommand.js +28 -21
- package/dist-es/commands/ListPackageVersionAssetsCommand.js +28 -21
- package/dist-es/commands/ListPackageVersionDependenciesCommand.js +28 -21
- package/dist-es/commands/ListPackageVersionsCommand.js +28 -21
- package/dist-es/commands/ListPackagesCommand.js +28 -21
- package/dist-es/commands/ListRepositoriesCommand.js +28 -21
- package/dist-es/commands/ListRepositoriesInDomainCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/PutDomainPermissionsPolicyCommand.js +28 -21
- package/dist-es/commands/PutPackageOriginConfigurationCommand.js +28 -21
- package/dist-es/commands/PutRepositoryPermissionsPolicyCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdatePackageVersionsStatusCommand.js +28 -21
- package/dist-es/commands/UpdateRepositoryCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/CodeartifactServiceException.js +10 -5
- package/dist-es/models/models_0.js +180 -367
- package/dist-es/pagination/ListDomainsPaginator.js +68 -25
- package/dist-es/pagination/ListPackageVersionAssetsPaginator.js +68 -25
- package/dist-es/pagination/ListPackageVersionsPaginator.js +68 -25
- package/dist-es/pagination/ListPackagesPaginator.js +68 -25
- package/dist-es/pagination/ListRepositoriesInDomainPaginator.js +68 -25
- package/dist-es/pagination/ListRepositoriesPaginator.js +68 -25
- package/dist-es/protocols/Aws_restJson1.js +3994 -2834
- 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,16 +1,17 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { CodeartifactServiceException as __BaseException } from "./CodeartifactServiceException";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
this.$fault = "client";
|
|
11
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
3
|
+
var AccessDeniedException = (function (_super) {
|
|
4
|
+
__extends(AccessDeniedException, _super);
|
|
5
|
+
function AccessDeniedException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "AccessDeniedException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
10
|
+
return _this;
|
|
12
11
|
}
|
|
13
|
-
|
|
12
|
+
return AccessDeniedException;
|
|
13
|
+
}(__BaseException));
|
|
14
|
+
export { AccessDeniedException };
|
|
14
15
|
export var AllowPublish;
|
|
15
16
|
(function (AllowPublish) {
|
|
16
17
|
AllowPublish["ALLOW"] = "ALLOW";
|
|
@@ -47,73 +48,73 @@ export var ResourceType;
|
|
|
47
48
|
ResourceType["PACKAGE_VERSION"] = "package-version";
|
|
48
49
|
ResourceType["REPOSITORY"] = "repository";
|
|
49
50
|
})(ResourceType || (ResourceType = {}));
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
this.resourceId = opts.resourceId;
|
|
61
|
-
this.resourceType = opts.resourceType;
|
|
51
|
+
var ConflictException = (function (_super) {
|
|
52
|
+
__extends(ConflictException, _super);
|
|
53
|
+
function ConflictException(opts) {
|
|
54
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
55
|
+
_this.name = "ConflictException";
|
|
56
|
+
_this.$fault = "client";
|
|
57
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
58
|
+
_this.resourceId = opts.resourceId;
|
|
59
|
+
_this.resourceType = opts.resourceType;
|
|
60
|
+
return _this;
|
|
62
61
|
}
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
62
|
+
return ConflictException;
|
|
63
|
+
}(__BaseException));
|
|
64
|
+
export { ConflictException };
|
|
65
|
+
var InternalServerException = (function (_super) {
|
|
66
|
+
__extends(InternalServerException, _super);
|
|
67
|
+
function InternalServerException(opts) {
|
|
68
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
69
|
+
_this.name = "InternalServerException";
|
|
70
|
+
_this.$fault = "server";
|
|
71
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
72
|
+
return _this;
|
|
74
73
|
}
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
74
|
+
return InternalServerException;
|
|
75
|
+
}(__BaseException));
|
|
76
|
+
export { InternalServerException };
|
|
77
|
+
var ResourceNotFoundException = (function (_super) {
|
|
78
|
+
__extends(ResourceNotFoundException, _super);
|
|
79
|
+
function ResourceNotFoundException(opts) {
|
|
80
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
81
|
+
_this.name = "ResourceNotFoundException";
|
|
82
|
+
_this.$fault = "client";
|
|
83
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
84
|
+
_this.resourceId = opts.resourceId;
|
|
85
|
+
_this.resourceType = opts.resourceType;
|
|
86
|
+
return _this;
|
|
88
87
|
}
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
88
|
+
return ResourceNotFoundException;
|
|
89
|
+
}(__BaseException));
|
|
90
|
+
export { ResourceNotFoundException };
|
|
91
|
+
var ServiceQuotaExceededException = (function (_super) {
|
|
92
|
+
__extends(ServiceQuotaExceededException, _super);
|
|
93
|
+
function ServiceQuotaExceededException(opts) {
|
|
94
|
+
var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
95
|
+
_this.name = "ServiceQuotaExceededException";
|
|
96
|
+
_this.$fault = "client";
|
|
97
|
+
Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
|
|
98
|
+
_this.resourceId = opts.resourceId;
|
|
99
|
+
_this.resourceType = opts.resourceType;
|
|
100
|
+
return _this;
|
|
102
101
|
}
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
102
|
+
return ServiceQuotaExceededException;
|
|
103
|
+
}(__BaseException));
|
|
104
|
+
export { ServiceQuotaExceededException };
|
|
105
|
+
var ThrottlingException = (function (_super) {
|
|
106
|
+
__extends(ThrottlingException, _super);
|
|
107
|
+
function ThrottlingException(opts) {
|
|
108
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
109
|
+
_this.name = "ThrottlingException";
|
|
110
|
+
_this.$fault = "client";
|
|
111
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
112
|
+
_this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
113
|
+
return _this;
|
|
115
114
|
}
|
|
116
|
-
|
|
115
|
+
return ThrottlingException;
|
|
116
|
+
}(__BaseException));
|
|
117
|
+
export { ThrottlingException };
|
|
117
118
|
export var ValidationExceptionReason;
|
|
118
119
|
(function (ValidationExceptionReason) {
|
|
119
120
|
ValidationExceptionReason["CANNOT_PARSE"] = "CANNOT_PARSE";
|
|
@@ -122,19 +123,19 @@ export var ValidationExceptionReason;
|
|
|
122
123
|
ValidationExceptionReason["OTHER"] = "OTHER";
|
|
123
124
|
ValidationExceptionReason["UNKNOWN_OPERATION"] = "UNKNOWN_OPERATION";
|
|
124
125
|
})(ValidationExceptionReason || (ValidationExceptionReason = {}));
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
135
|
-
this.reason = opts.reason;
|
|
126
|
+
var ValidationException = (function (_super) {
|
|
127
|
+
__extends(ValidationException, _super);
|
|
128
|
+
function ValidationException(opts) {
|
|
129
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
130
|
+
_this.name = "ValidationException";
|
|
131
|
+
_this.$fault = "client";
|
|
132
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
133
|
+
_this.reason = opts.reason;
|
|
134
|
+
return _this;
|
|
136
135
|
}
|
|
137
|
-
|
|
136
|
+
return ValidationException;
|
|
137
|
+
}(__BaseException));
|
|
138
|
+
export { ValidationException };
|
|
138
139
|
export var PackageVersionErrorCode;
|
|
139
140
|
(function (PackageVersionErrorCode) {
|
|
140
141
|
PackageVersionErrorCode["ALREADY_EXISTS"] = "ALREADY_EXISTS";
|
|
@@ -168,285 +169,97 @@ export var PackageVersionSortType;
|
|
|
168
169
|
(function (PackageVersionSortType) {
|
|
169
170
|
PackageVersionSortType["PUBLISHED_TIME"] = "PUBLISHED_TIME";
|
|
170
171
|
})(PackageVersionSortType || (PackageVersionSortType = {}));
|
|
171
|
-
export
|
|
172
|
-
|
|
173
|
-
});
|
|
174
|
-
export
|
|
175
|
-
|
|
176
|
-
});
|
|
177
|
-
export
|
|
178
|
-
|
|
179
|
-
});
|
|
180
|
-
export
|
|
181
|
-
|
|
182
|
-
});
|
|
183
|
-
export
|
|
184
|
-
|
|
185
|
-
});
|
|
186
|
-
export
|
|
187
|
-
|
|
188
|
-
});
|
|
189
|
-
export
|
|
190
|
-
|
|
191
|
-
});
|
|
192
|
-
export
|
|
193
|
-
|
|
194
|
-
});
|
|
195
|
-
export
|
|
196
|
-
|
|
197
|
-
});
|
|
198
|
-
export
|
|
199
|
-
|
|
200
|
-
});
|
|
201
|
-
export
|
|
202
|
-
|
|
203
|
-
});
|
|
204
|
-
export
|
|
205
|
-
|
|
206
|
-
});
|
|
207
|
-
export
|
|
208
|
-
|
|
209
|
-
});
|
|
210
|
-
export
|
|
211
|
-
|
|
212
|
-
});
|
|
213
|
-
export
|
|
214
|
-
|
|
215
|
-
});
|
|
216
|
-
export
|
|
217
|
-
|
|
218
|
-
});
|
|
219
|
-
export
|
|
220
|
-
|
|
221
|
-
});
|
|
222
|
-
export
|
|
223
|
-
|
|
224
|
-
});
|
|
225
|
-
export
|
|
226
|
-
|
|
227
|
-
});
|
|
228
|
-
export
|
|
229
|
-
|
|
230
|
-
});
|
|
231
|
-
export
|
|
232
|
-
|
|
233
|
-
});
|
|
234
|
-
export
|
|
235
|
-
|
|
236
|
-
});
|
|
237
|
-
export
|
|
238
|
-
|
|
239
|
-
});
|
|
240
|
-
export
|
|
241
|
-
|
|
242
|
-
});
|
|
243
|
-
export
|
|
244
|
-
|
|
245
|
-
});
|
|
246
|
-
export
|
|
247
|
-
|
|
248
|
-
});
|
|
249
|
-
export
|
|
250
|
-
|
|
251
|
-
});
|
|
252
|
-
export
|
|
253
|
-
|
|
254
|
-
});
|
|
255
|
-
export
|
|
256
|
-
|
|
257
|
-
});
|
|
258
|
-
export
|
|
259
|
-
|
|
260
|
-
});
|
|
261
|
-
export
|
|
262
|
-
|
|
263
|
-
});
|
|
264
|
-
export
|
|
265
|
-
...obj,
|
|
266
|
-
});
|
|
267
|
-
export const PackageOriginConfigurationFilterSensitiveLog = (obj) => ({
|
|
268
|
-
...obj,
|
|
269
|
-
});
|
|
270
|
-
export const PackageDescriptionFilterSensitiveLog = (obj) => ({
|
|
271
|
-
...obj,
|
|
272
|
-
});
|
|
273
|
-
export const DescribePackageResultFilterSensitiveLog = (obj) => ({
|
|
274
|
-
...obj,
|
|
275
|
-
});
|
|
276
|
-
export const DescribePackageVersionRequestFilterSensitiveLog = (obj) => ({
|
|
277
|
-
...obj,
|
|
278
|
-
});
|
|
279
|
-
export const LicenseInfoFilterSensitiveLog = (obj) => ({
|
|
280
|
-
...obj,
|
|
281
|
-
});
|
|
282
|
-
export const DomainEntryPointFilterSensitiveLog = (obj) => ({
|
|
283
|
-
...obj,
|
|
284
|
-
});
|
|
285
|
-
export const PackageVersionOriginFilterSensitiveLog = (obj) => ({
|
|
286
|
-
...obj,
|
|
287
|
-
});
|
|
288
|
-
export const PackageVersionDescriptionFilterSensitiveLog = (obj) => ({
|
|
289
|
-
...obj,
|
|
290
|
-
});
|
|
291
|
-
export const DescribePackageVersionResultFilterSensitiveLog = (obj) => ({
|
|
292
|
-
...obj,
|
|
293
|
-
});
|
|
294
|
-
export const DescribeRepositoryRequestFilterSensitiveLog = (obj) => ({
|
|
295
|
-
...obj,
|
|
296
|
-
});
|
|
297
|
-
export const DescribeRepositoryResultFilterSensitiveLog = (obj) => ({
|
|
298
|
-
...obj,
|
|
299
|
-
});
|
|
300
|
-
export const DisassociateExternalConnectionRequestFilterSensitiveLog = (obj) => ({
|
|
301
|
-
...obj,
|
|
302
|
-
});
|
|
303
|
-
export const DisassociateExternalConnectionResultFilterSensitiveLog = (obj) => ({
|
|
304
|
-
...obj,
|
|
305
|
-
});
|
|
306
|
-
export const DisposePackageVersionsRequestFilterSensitiveLog = (obj) => ({
|
|
307
|
-
...obj,
|
|
308
|
-
});
|
|
309
|
-
export const DisposePackageVersionsResultFilterSensitiveLog = (obj) => ({
|
|
310
|
-
...obj,
|
|
311
|
-
});
|
|
312
|
-
export const GetAuthorizationTokenRequestFilterSensitiveLog = (obj) => ({
|
|
313
|
-
...obj,
|
|
314
|
-
});
|
|
315
|
-
export const GetAuthorizationTokenResultFilterSensitiveLog = (obj) => ({
|
|
316
|
-
...obj,
|
|
317
|
-
});
|
|
318
|
-
export const GetDomainPermissionsPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
319
|
-
...obj,
|
|
320
|
-
});
|
|
321
|
-
export const GetDomainPermissionsPolicyResultFilterSensitiveLog = (obj) => ({
|
|
322
|
-
...obj,
|
|
323
|
-
});
|
|
324
|
-
export const GetPackageVersionAssetRequestFilterSensitiveLog = (obj) => ({
|
|
325
|
-
...obj,
|
|
326
|
-
});
|
|
327
|
-
export const GetPackageVersionAssetResultFilterSensitiveLog = (obj) => ({
|
|
328
|
-
...obj,
|
|
329
|
-
});
|
|
330
|
-
export const GetPackageVersionReadmeRequestFilterSensitiveLog = (obj) => ({
|
|
331
|
-
...obj,
|
|
332
|
-
});
|
|
333
|
-
export const GetPackageVersionReadmeResultFilterSensitiveLog = (obj) => ({
|
|
334
|
-
...obj,
|
|
335
|
-
});
|
|
336
|
-
export const GetRepositoryEndpointRequestFilterSensitiveLog = (obj) => ({
|
|
337
|
-
...obj,
|
|
338
|
-
});
|
|
339
|
-
export const GetRepositoryEndpointResultFilterSensitiveLog = (obj) => ({
|
|
340
|
-
...obj,
|
|
341
|
-
});
|
|
342
|
-
export const GetRepositoryPermissionsPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
343
|
-
...obj,
|
|
344
|
-
});
|
|
345
|
-
export const GetRepositoryPermissionsPolicyResultFilterSensitiveLog = (obj) => ({
|
|
346
|
-
...obj,
|
|
347
|
-
});
|
|
348
|
-
export const ListDomainsRequestFilterSensitiveLog = (obj) => ({
|
|
349
|
-
...obj,
|
|
350
|
-
});
|
|
351
|
-
export const DomainSummaryFilterSensitiveLog = (obj) => ({
|
|
352
|
-
...obj,
|
|
353
|
-
});
|
|
354
|
-
export const ListDomainsResultFilterSensitiveLog = (obj) => ({
|
|
355
|
-
...obj,
|
|
356
|
-
});
|
|
357
|
-
export const ListPackagesRequestFilterSensitiveLog = (obj) => ({
|
|
358
|
-
...obj,
|
|
359
|
-
});
|
|
360
|
-
export const PackageSummaryFilterSensitiveLog = (obj) => ({
|
|
361
|
-
...obj,
|
|
362
|
-
});
|
|
363
|
-
export const ListPackagesResultFilterSensitiveLog = (obj) => ({
|
|
364
|
-
...obj,
|
|
365
|
-
});
|
|
366
|
-
export const ListPackageVersionAssetsRequestFilterSensitiveLog = (obj) => ({
|
|
367
|
-
...obj,
|
|
368
|
-
});
|
|
369
|
-
export const ListPackageVersionAssetsResultFilterSensitiveLog = (obj) => ({
|
|
370
|
-
...obj,
|
|
371
|
-
});
|
|
372
|
-
export const ListPackageVersionDependenciesRequestFilterSensitiveLog = (obj) => ({
|
|
373
|
-
...obj,
|
|
374
|
-
});
|
|
375
|
-
export const PackageDependencyFilterSensitiveLog = (obj) => ({
|
|
376
|
-
...obj,
|
|
377
|
-
});
|
|
378
|
-
export const ListPackageVersionDependenciesResultFilterSensitiveLog = (obj) => ({
|
|
379
|
-
...obj,
|
|
380
|
-
});
|
|
381
|
-
export const ListPackageVersionsRequestFilterSensitiveLog = (obj) => ({
|
|
382
|
-
...obj,
|
|
383
|
-
});
|
|
384
|
-
export const PackageVersionSummaryFilterSensitiveLog = (obj) => ({
|
|
385
|
-
...obj,
|
|
386
|
-
});
|
|
387
|
-
export const ListPackageVersionsResultFilterSensitiveLog = (obj) => ({
|
|
388
|
-
...obj,
|
|
389
|
-
});
|
|
390
|
-
export const ListRepositoriesRequestFilterSensitiveLog = (obj) => ({
|
|
391
|
-
...obj,
|
|
392
|
-
});
|
|
393
|
-
export const RepositorySummaryFilterSensitiveLog = (obj) => ({
|
|
394
|
-
...obj,
|
|
395
|
-
});
|
|
396
|
-
export const ListRepositoriesResultFilterSensitiveLog = (obj) => ({
|
|
397
|
-
...obj,
|
|
398
|
-
});
|
|
399
|
-
export const ListRepositoriesInDomainRequestFilterSensitiveLog = (obj) => ({
|
|
400
|
-
...obj,
|
|
401
|
-
});
|
|
402
|
-
export const ListRepositoriesInDomainResultFilterSensitiveLog = (obj) => ({
|
|
403
|
-
...obj,
|
|
404
|
-
});
|
|
405
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
406
|
-
...obj,
|
|
407
|
-
});
|
|
408
|
-
export const ListTagsForResourceResultFilterSensitiveLog = (obj) => ({
|
|
409
|
-
...obj,
|
|
410
|
-
});
|
|
411
|
-
export const PutDomainPermissionsPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
412
|
-
...obj,
|
|
413
|
-
});
|
|
414
|
-
export const PutDomainPermissionsPolicyResultFilterSensitiveLog = (obj) => ({
|
|
415
|
-
...obj,
|
|
416
|
-
});
|
|
417
|
-
export const PutPackageOriginConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
418
|
-
...obj,
|
|
419
|
-
});
|
|
420
|
-
export const PutPackageOriginConfigurationResultFilterSensitiveLog = (obj) => ({
|
|
421
|
-
...obj,
|
|
422
|
-
});
|
|
423
|
-
export const PutRepositoryPermissionsPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
424
|
-
...obj,
|
|
425
|
-
});
|
|
426
|
-
export const PutRepositoryPermissionsPolicyResultFilterSensitiveLog = (obj) => ({
|
|
427
|
-
...obj,
|
|
428
|
-
});
|
|
429
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
430
|
-
...obj,
|
|
431
|
-
});
|
|
432
|
-
export const TagResourceResultFilterSensitiveLog = (obj) => ({
|
|
433
|
-
...obj,
|
|
434
|
-
});
|
|
435
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
436
|
-
...obj,
|
|
437
|
-
});
|
|
438
|
-
export const UntagResourceResultFilterSensitiveLog = (obj) => ({
|
|
439
|
-
...obj,
|
|
440
|
-
});
|
|
441
|
-
export const UpdatePackageVersionsStatusRequestFilterSensitiveLog = (obj) => ({
|
|
442
|
-
...obj,
|
|
443
|
-
});
|
|
444
|
-
export const UpdatePackageVersionsStatusResultFilterSensitiveLog = (obj) => ({
|
|
445
|
-
...obj,
|
|
446
|
-
});
|
|
447
|
-
export const UpdateRepositoryRequestFilterSensitiveLog = (obj) => ({
|
|
448
|
-
...obj,
|
|
449
|
-
});
|
|
450
|
-
export const UpdateRepositoryResultFilterSensitiveLog = (obj) => ({
|
|
451
|
-
...obj,
|
|
452
|
-
});
|
|
172
|
+
export var AssetSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
173
|
+
export var AssociateExternalConnectionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
174
|
+
export var RepositoryExternalConnectionInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
175
|
+
export var UpstreamRepositoryInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
176
|
+
export var RepositoryDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
177
|
+
export var AssociateExternalConnectionResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
178
|
+
export var CopyPackageVersionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
179
|
+
export var PackageVersionErrorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
180
|
+
export var SuccessfulPackageVersionInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
181
|
+
export var CopyPackageVersionsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
182
|
+
export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
183
|
+
export var CreateDomainRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
184
|
+
export var DomainDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
185
|
+
export var CreateDomainResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
186
|
+
export var UpstreamRepositoryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
187
|
+
export var CreateRepositoryRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
188
|
+
export var CreateRepositoryResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
189
|
+
export var DeleteDomainRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
190
|
+
export var DeleteDomainResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
191
|
+
export var DeleteDomainPermissionsPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
192
|
+
export var ResourcePolicyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
193
|
+
export var DeleteDomainPermissionsPolicyResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
194
|
+
export var DeletePackageVersionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
195
|
+
export var DeletePackageVersionsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
196
|
+
export var DeleteRepositoryRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
197
|
+
export var DeleteRepositoryResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
198
|
+
export var DeleteRepositoryPermissionsPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
199
|
+
export var DeleteRepositoryPermissionsPolicyResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
200
|
+
export var DescribeDomainRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
201
|
+
export var DescribeDomainResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
202
|
+
export var DescribePackageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
203
|
+
export var PackageOriginRestrictionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
204
|
+
export var PackageOriginConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
205
|
+
export var PackageDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
206
|
+
export var DescribePackageResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
207
|
+
export var DescribePackageVersionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
208
|
+
export var LicenseInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
209
|
+
export var DomainEntryPointFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
210
|
+
export var PackageVersionOriginFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
211
|
+
export var PackageVersionDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
212
|
+
export var DescribePackageVersionResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
213
|
+
export var DescribeRepositoryRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
214
|
+
export var DescribeRepositoryResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
215
|
+
export var DisassociateExternalConnectionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
216
|
+
export var DisassociateExternalConnectionResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
217
|
+
export var DisposePackageVersionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
218
|
+
export var DisposePackageVersionsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
219
|
+
export var GetAuthorizationTokenRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
220
|
+
export var GetAuthorizationTokenResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
221
|
+
export var GetDomainPermissionsPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
222
|
+
export var GetDomainPermissionsPolicyResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
223
|
+
export var GetPackageVersionAssetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
224
|
+
export var GetPackageVersionAssetResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
225
|
+
export var GetPackageVersionReadmeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
226
|
+
export var GetPackageVersionReadmeResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
227
|
+
export var GetRepositoryEndpointRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
228
|
+
export var GetRepositoryEndpointResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
229
|
+
export var GetRepositoryPermissionsPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
230
|
+
export var GetRepositoryPermissionsPolicyResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
231
|
+
export var ListDomainsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
232
|
+
export var DomainSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
233
|
+
export var ListDomainsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
234
|
+
export var ListPackagesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
235
|
+
export var PackageSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
236
|
+
export var ListPackagesResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
237
|
+
export var ListPackageVersionAssetsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
238
|
+
export var ListPackageVersionAssetsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
239
|
+
export var ListPackageVersionDependenciesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
240
|
+
export var PackageDependencyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
241
|
+
export var ListPackageVersionDependenciesResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
242
|
+
export var ListPackageVersionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
243
|
+
export var PackageVersionSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
244
|
+
export var ListPackageVersionsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
245
|
+
export var ListRepositoriesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
246
|
+
export var RepositorySummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
247
|
+
export var ListRepositoriesResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
248
|
+
export var ListRepositoriesInDomainRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
249
|
+
export var ListRepositoriesInDomainResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
250
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
251
|
+
export var ListTagsForResourceResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
252
|
+
export var PutDomainPermissionsPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
253
|
+
export var PutDomainPermissionsPolicyResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
254
|
+
export var PutPackageOriginConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
255
|
+
export var PutPackageOriginConfigurationResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
256
|
+
export var PutRepositoryPermissionsPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
257
|
+
export var PutRepositoryPermissionsPolicyResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
258
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
259
|
+
export var TagResourceResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
260
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
261
|
+
export var UntagResourceResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
262
|
+
export var UpdatePackageVersionsStatusRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
263
|
+
export var UpdatePackageVersionsStatusResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
264
|
+
export var UpdateRepositoryRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
265
|
+
export var UpdateRepositoryResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|