@aws-sdk/client-imagebuilder 3.51.0 → 3.54.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 +28 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ImagebuilderServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +244 -4
- package/dist-cjs/protocols/Aws_restJson1.js +808 -2825
- package/dist-es/index.js +1 -0
- package/dist-es/models/ImagebuilderServiceException.js +12 -0
- package/dist-es/models/models_0.js +218 -1
- package/dist-es/protocols/Aws_restJson1.js +1526 -3044
- package/dist-types/Imagebuilder.d.ts +11 -1
- package/dist-types/ImagebuilderClient.d.ts +2 -2
- package/dist-types/commands/CreateComponentCommand.d.ts +11 -1
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ImagebuilderServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +229 -80
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/ImagebuilderClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/ImagebuilderServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +128 -69
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +33 -33
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
3
|
+
var ImagebuilderServiceException = (function (_super) {
|
|
4
|
+
__extends(ImagebuilderServiceException, _super);
|
|
5
|
+
function ImagebuilderServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, ImagebuilderServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return ImagebuilderServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { ImagebuilderServiceException };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { ImagebuilderServiceException as __BaseException } from "./ImagebuilderServiceException";
|
|
2
3
|
export var SystemsManagerAgent;
|
|
3
4
|
(function (SystemsManagerAgent) {
|
|
4
5
|
SystemsManagerAgent.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -43,6 +44,18 @@ export var BuildType;
|
|
|
43
44
|
BuildType["SCHEDULED"] = "SCHEDULED";
|
|
44
45
|
BuildType["USER_INITIATED"] = "USER_INITIATED";
|
|
45
46
|
})(BuildType || (BuildType = {}));
|
|
47
|
+
var CallRateLimitExceededException = (function (_super) {
|
|
48
|
+
__extends(CallRateLimitExceededException, _super);
|
|
49
|
+
function CallRateLimitExceededException(opts) {
|
|
50
|
+
var _this = _super.call(this, __assign({ name: "CallRateLimitExceededException", $fault: "client" }, opts)) || this;
|
|
51
|
+
_this.name = "CallRateLimitExceededException";
|
|
52
|
+
_this.$fault = "client";
|
|
53
|
+
Object.setPrototypeOf(_this, CallRateLimitExceededException.prototype);
|
|
54
|
+
return _this;
|
|
55
|
+
}
|
|
56
|
+
return CallRateLimitExceededException;
|
|
57
|
+
}(__BaseException));
|
|
58
|
+
export { CallRateLimitExceededException };
|
|
46
59
|
export var CancelImageCreationRequest;
|
|
47
60
|
(function (CancelImageCreationRequest) {
|
|
48
61
|
CancelImageCreationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -51,6 +64,90 @@ export var CancelImageCreationResponse;
|
|
|
51
64
|
(function (CancelImageCreationResponse) {
|
|
52
65
|
CancelImageCreationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
53
66
|
})(CancelImageCreationResponse || (CancelImageCreationResponse = {}));
|
|
67
|
+
var ClientException = (function (_super) {
|
|
68
|
+
__extends(ClientException, _super);
|
|
69
|
+
function ClientException(opts) {
|
|
70
|
+
var _this = _super.call(this, __assign({ name: "ClientException", $fault: "client" }, opts)) || this;
|
|
71
|
+
_this.name = "ClientException";
|
|
72
|
+
_this.$fault = "client";
|
|
73
|
+
Object.setPrototypeOf(_this, ClientException.prototype);
|
|
74
|
+
return _this;
|
|
75
|
+
}
|
|
76
|
+
return ClientException;
|
|
77
|
+
}(__BaseException));
|
|
78
|
+
export { ClientException };
|
|
79
|
+
var ForbiddenException = (function (_super) {
|
|
80
|
+
__extends(ForbiddenException, _super);
|
|
81
|
+
function ForbiddenException(opts) {
|
|
82
|
+
var _this = _super.call(this, __assign({ name: "ForbiddenException", $fault: "client" }, opts)) || this;
|
|
83
|
+
_this.name = "ForbiddenException";
|
|
84
|
+
_this.$fault = "client";
|
|
85
|
+
Object.setPrototypeOf(_this, ForbiddenException.prototype);
|
|
86
|
+
return _this;
|
|
87
|
+
}
|
|
88
|
+
return ForbiddenException;
|
|
89
|
+
}(__BaseException));
|
|
90
|
+
export { ForbiddenException };
|
|
91
|
+
var IdempotentParameterMismatchException = (function (_super) {
|
|
92
|
+
__extends(IdempotentParameterMismatchException, _super);
|
|
93
|
+
function IdempotentParameterMismatchException(opts) {
|
|
94
|
+
var _this = _super.call(this, __assign({ name: "IdempotentParameterMismatchException", $fault: "client" }, opts)) || this;
|
|
95
|
+
_this.name = "IdempotentParameterMismatchException";
|
|
96
|
+
_this.$fault = "client";
|
|
97
|
+
Object.setPrototypeOf(_this, IdempotentParameterMismatchException.prototype);
|
|
98
|
+
return _this;
|
|
99
|
+
}
|
|
100
|
+
return IdempotentParameterMismatchException;
|
|
101
|
+
}(__BaseException));
|
|
102
|
+
export { IdempotentParameterMismatchException };
|
|
103
|
+
var InvalidRequestException = (function (_super) {
|
|
104
|
+
__extends(InvalidRequestException, _super);
|
|
105
|
+
function InvalidRequestException(opts) {
|
|
106
|
+
var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
|
|
107
|
+
_this.name = "InvalidRequestException";
|
|
108
|
+
_this.$fault = "client";
|
|
109
|
+
Object.setPrototypeOf(_this, InvalidRequestException.prototype);
|
|
110
|
+
return _this;
|
|
111
|
+
}
|
|
112
|
+
return InvalidRequestException;
|
|
113
|
+
}(__BaseException));
|
|
114
|
+
export { InvalidRequestException };
|
|
115
|
+
var ResourceInUseException = (function (_super) {
|
|
116
|
+
__extends(ResourceInUseException, _super);
|
|
117
|
+
function ResourceInUseException(opts) {
|
|
118
|
+
var _this = _super.call(this, __assign({ name: "ResourceInUseException", $fault: "client" }, opts)) || this;
|
|
119
|
+
_this.name = "ResourceInUseException";
|
|
120
|
+
_this.$fault = "client";
|
|
121
|
+
Object.setPrototypeOf(_this, ResourceInUseException.prototype);
|
|
122
|
+
return _this;
|
|
123
|
+
}
|
|
124
|
+
return ResourceInUseException;
|
|
125
|
+
}(__BaseException));
|
|
126
|
+
export { ResourceInUseException };
|
|
127
|
+
var ServiceException = (function (_super) {
|
|
128
|
+
__extends(ServiceException, _super);
|
|
129
|
+
function ServiceException(opts) {
|
|
130
|
+
var _this = _super.call(this, __assign({ name: "ServiceException", $fault: "server" }, opts)) || this;
|
|
131
|
+
_this.name = "ServiceException";
|
|
132
|
+
_this.$fault = "server";
|
|
133
|
+
Object.setPrototypeOf(_this, ServiceException.prototype);
|
|
134
|
+
return _this;
|
|
135
|
+
}
|
|
136
|
+
return ServiceException;
|
|
137
|
+
}(__BaseException));
|
|
138
|
+
export { ServiceException };
|
|
139
|
+
var ServiceUnavailableException = (function (_super) {
|
|
140
|
+
__extends(ServiceUnavailableException, _super);
|
|
141
|
+
function ServiceUnavailableException(opts) {
|
|
142
|
+
var _this = _super.call(this, __assign({ name: "ServiceUnavailableException", $fault: "server" }, opts)) || this;
|
|
143
|
+
_this.name = "ServiceUnavailableException";
|
|
144
|
+
_this.$fault = "server";
|
|
145
|
+
Object.setPrototypeOf(_this, ServiceUnavailableException.prototype);
|
|
146
|
+
return _this;
|
|
147
|
+
}
|
|
148
|
+
return ServiceUnavailableException;
|
|
149
|
+
}(__BaseException));
|
|
150
|
+
export { ServiceUnavailableException };
|
|
54
151
|
export var ComponentParameterDetail;
|
|
55
152
|
(function (ComponentParameterDetail) {
|
|
56
153
|
ComponentParameterDetail.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -155,6 +252,42 @@ export var CreateComponentResponse;
|
|
|
155
252
|
(function (CreateComponentResponse) {
|
|
156
253
|
CreateComponentResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
157
254
|
})(CreateComponentResponse || (CreateComponentResponse = {}));
|
|
255
|
+
var InvalidParameterCombinationException = (function (_super) {
|
|
256
|
+
__extends(InvalidParameterCombinationException, _super);
|
|
257
|
+
function InvalidParameterCombinationException(opts) {
|
|
258
|
+
var _this = _super.call(this, __assign({ name: "InvalidParameterCombinationException", $fault: "client" }, opts)) || this;
|
|
259
|
+
_this.name = "InvalidParameterCombinationException";
|
|
260
|
+
_this.$fault = "client";
|
|
261
|
+
Object.setPrototypeOf(_this, InvalidParameterCombinationException.prototype);
|
|
262
|
+
return _this;
|
|
263
|
+
}
|
|
264
|
+
return InvalidParameterCombinationException;
|
|
265
|
+
}(__BaseException));
|
|
266
|
+
export { InvalidParameterCombinationException };
|
|
267
|
+
var InvalidVersionNumberException = (function (_super) {
|
|
268
|
+
__extends(InvalidVersionNumberException, _super);
|
|
269
|
+
function InvalidVersionNumberException(opts) {
|
|
270
|
+
var _this = _super.call(this, __assign({ name: "InvalidVersionNumberException", $fault: "client" }, opts)) || this;
|
|
271
|
+
_this.name = "InvalidVersionNumberException";
|
|
272
|
+
_this.$fault = "client";
|
|
273
|
+
Object.setPrototypeOf(_this, InvalidVersionNumberException.prototype);
|
|
274
|
+
return _this;
|
|
275
|
+
}
|
|
276
|
+
return InvalidVersionNumberException;
|
|
277
|
+
}(__BaseException));
|
|
278
|
+
export { InvalidVersionNumberException };
|
|
279
|
+
var ServiceQuotaExceededException = (function (_super) {
|
|
280
|
+
__extends(ServiceQuotaExceededException, _super);
|
|
281
|
+
function ServiceQuotaExceededException(opts) {
|
|
282
|
+
var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
283
|
+
_this.name = "ServiceQuotaExceededException";
|
|
284
|
+
_this.$fault = "client";
|
|
285
|
+
Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
|
|
286
|
+
return _this;
|
|
287
|
+
}
|
|
288
|
+
return ServiceQuotaExceededException;
|
|
289
|
+
}(__BaseException));
|
|
290
|
+
export { ServiceQuotaExceededException };
|
|
158
291
|
export var CreateContainerRecipeRequest;
|
|
159
292
|
(function (CreateContainerRecipeRequest) {
|
|
160
293
|
CreateContainerRecipeRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -163,6 +296,30 @@ export var CreateContainerRecipeResponse;
|
|
|
163
296
|
(function (CreateContainerRecipeResponse) {
|
|
164
297
|
CreateContainerRecipeResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
165
298
|
})(CreateContainerRecipeResponse || (CreateContainerRecipeResponse = {}));
|
|
299
|
+
var ResourceAlreadyExistsException = (function (_super) {
|
|
300
|
+
__extends(ResourceAlreadyExistsException, _super);
|
|
301
|
+
function ResourceAlreadyExistsException(opts) {
|
|
302
|
+
var _this = _super.call(this, __assign({ name: "ResourceAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
303
|
+
_this.name = "ResourceAlreadyExistsException";
|
|
304
|
+
_this.$fault = "client";
|
|
305
|
+
Object.setPrototypeOf(_this, ResourceAlreadyExistsException.prototype);
|
|
306
|
+
return _this;
|
|
307
|
+
}
|
|
308
|
+
return ResourceAlreadyExistsException;
|
|
309
|
+
}(__BaseException));
|
|
310
|
+
export { ResourceAlreadyExistsException };
|
|
311
|
+
export var FastLaunchLaunchTemplateSpecification;
|
|
312
|
+
(function (FastLaunchLaunchTemplateSpecification) {
|
|
313
|
+
FastLaunchLaunchTemplateSpecification.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
314
|
+
})(FastLaunchLaunchTemplateSpecification || (FastLaunchLaunchTemplateSpecification = {}));
|
|
315
|
+
export var FastLaunchSnapshotConfiguration;
|
|
316
|
+
(function (FastLaunchSnapshotConfiguration) {
|
|
317
|
+
FastLaunchSnapshotConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
318
|
+
})(FastLaunchSnapshotConfiguration || (FastLaunchSnapshotConfiguration = {}));
|
|
319
|
+
export var FastLaunchConfiguration;
|
|
320
|
+
(function (FastLaunchConfiguration) {
|
|
321
|
+
FastLaunchConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
322
|
+
})(FastLaunchConfiguration || (FastLaunchConfiguration = {}));
|
|
166
323
|
export var LaunchTemplateConfiguration;
|
|
167
324
|
(function (LaunchTemplateConfiguration) {
|
|
168
325
|
LaunchTemplateConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -259,6 +416,18 @@ export var DeleteComponentResponse;
|
|
|
259
416
|
(function (DeleteComponentResponse) {
|
|
260
417
|
DeleteComponentResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
261
418
|
})(DeleteComponentResponse || (DeleteComponentResponse = {}));
|
|
419
|
+
var ResourceDependencyException = (function (_super) {
|
|
420
|
+
__extends(ResourceDependencyException, _super);
|
|
421
|
+
function ResourceDependencyException(opts) {
|
|
422
|
+
var _this = _super.call(this, __assign({ name: "ResourceDependencyException", $fault: "client" }, opts)) || this;
|
|
423
|
+
_this.name = "ResourceDependencyException";
|
|
424
|
+
_this.$fault = "client";
|
|
425
|
+
Object.setPrototypeOf(_this, ResourceDependencyException.prototype);
|
|
426
|
+
return _this;
|
|
427
|
+
}
|
|
428
|
+
return ResourceDependencyException;
|
|
429
|
+
}(__BaseException));
|
|
430
|
+
export { ResourceDependencyException };
|
|
262
431
|
export var DeleteContainerRecipeRequest;
|
|
263
432
|
(function (DeleteContainerRecipeRequest) {
|
|
264
433
|
DeleteContainerRecipeRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -335,6 +504,18 @@ export var GetComponentPolicyResponse;
|
|
|
335
504
|
(function (GetComponentPolicyResponse) {
|
|
336
505
|
GetComponentPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
337
506
|
})(GetComponentPolicyResponse || (GetComponentPolicyResponse = {}));
|
|
507
|
+
var ResourceNotFoundException = (function (_super) {
|
|
508
|
+
__extends(ResourceNotFoundException, _super);
|
|
509
|
+
function ResourceNotFoundException(opts) {
|
|
510
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
511
|
+
_this.name = "ResourceNotFoundException";
|
|
512
|
+
_this.$fault = "client";
|
|
513
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
514
|
+
return _this;
|
|
515
|
+
}
|
|
516
|
+
return ResourceNotFoundException;
|
|
517
|
+
}(__BaseException));
|
|
518
|
+
export { ResourceNotFoundException };
|
|
338
519
|
export var GetContainerRecipeRequest;
|
|
339
520
|
(function (GetContainerRecipeRequest) {
|
|
340
521
|
GetContainerRecipeRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -448,6 +629,18 @@ export var ImportVmImageResponse;
|
|
|
448
629
|
(function (ImportVmImageResponse) {
|
|
449
630
|
ImportVmImageResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
450
631
|
})(ImportVmImageResponse || (ImportVmImageResponse = {}));
|
|
632
|
+
var InvalidPaginationTokenException = (function (_super) {
|
|
633
|
+
__extends(InvalidPaginationTokenException, _super);
|
|
634
|
+
function InvalidPaginationTokenException(opts) {
|
|
635
|
+
var _this = _super.call(this, __assign({ name: "InvalidPaginationTokenException", $fault: "client" }, opts)) || this;
|
|
636
|
+
_this.name = "InvalidPaginationTokenException";
|
|
637
|
+
_this.$fault = "client";
|
|
638
|
+
Object.setPrototypeOf(_this, InvalidPaginationTokenException.prototype);
|
|
639
|
+
return _this;
|
|
640
|
+
}
|
|
641
|
+
return InvalidPaginationTokenException;
|
|
642
|
+
}(__BaseException));
|
|
643
|
+
export { InvalidPaginationTokenException };
|
|
451
644
|
export var ListComponentBuildVersionsRequest;
|
|
452
645
|
(function (ListComponentBuildVersionsRequest) {
|
|
453
646
|
ListComponentBuildVersionsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -562,6 +755,18 @@ export var ListInfrastructureConfigurationsResponse;
|
|
|
562
755
|
(function (ListInfrastructureConfigurationsResponse) {
|
|
563
756
|
ListInfrastructureConfigurationsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
564
757
|
})(ListInfrastructureConfigurationsResponse || (ListInfrastructureConfigurationsResponse = {}));
|
|
758
|
+
var InvalidParameterException = (function (_super) {
|
|
759
|
+
__extends(InvalidParameterException, _super);
|
|
760
|
+
function InvalidParameterException(opts) {
|
|
761
|
+
var _this = _super.call(this, __assign({ name: "InvalidParameterException", $fault: "client" }, opts)) || this;
|
|
762
|
+
_this.name = "InvalidParameterException";
|
|
763
|
+
_this.$fault = "client";
|
|
764
|
+
Object.setPrototypeOf(_this, InvalidParameterException.prototype);
|
|
765
|
+
return _this;
|
|
766
|
+
}
|
|
767
|
+
return InvalidParameterException;
|
|
768
|
+
}(__BaseException));
|
|
769
|
+
export { InvalidParameterException };
|
|
565
770
|
export var ListTagsForResourceRequest;
|
|
566
771
|
(function (ListTagsForResourceRequest) {
|
|
567
772
|
ListTagsForResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -570,6 +775,18 @@ export var ListTagsForResourceResponse;
|
|
|
570
775
|
(function (ListTagsForResourceResponse) {
|
|
571
776
|
ListTagsForResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
572
777
|
})(ListTagsForResourceResponse || (ListTagsForResourceResponse = {}));
|
|
778
|
+
var InvalidParameterValueException = (function (_super) {
|
|
779
|
+
__extends(InvalidParameterValueException, _super);
|
|
780
|
+
function InvalidParameterValueException(opts) {
|
|
781
|
+
var _this = _super.call(this, __assign({ name: "InvalidParameterValueException", $fault: "client" }, opts)) || this;
|
|
782
|
+
_this.name = "InvalidParameterValueException";
|
|
783
|
+
_this.$fault = "client";
|
|
784
|
+
Object.setPrototypeOf(_this, InvalidParameterValueException.prototype);
|
|
785
|
+
return _this;
|
|
786
|
+
}
|
|
787
|
+
return InvalidParameterValueException;
|
|
788
|
+
}(__BaseException));
|
|
789
|
+
export { InvalidParameterValueException };
|
|
573
790
|
export var PutComponentPolicyRequest;
|
|
574
791
|
(function (PutComponentPolicyRequest) {
|
|
575
792
|
PutComponentPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|