@aws-sdk/client-service-catalog-appregistry 3.52.0 → 3.53.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/index.js +3 -0
- package/dist-cjs/models/ServiceCatalogAppRegistryServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +68 -2
- package/dist-cjs/protocols/Aws_restJson1.js +188 -633
- package/dist-es/index.js +1 -0
- package/dist-es/models/ServiceCatalogAppRegistryServiceException.js +12 -0
- package/dist-es/models/models_0.js +62 -1
- package/dist-es/protocols/Aws_restJson1.js +411 -723
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ServiceCatalogAppRegistryServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +37 -21
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/ServiceCatalogAppRegistryServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +27 -21
- package/package.json +25 -25
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 ServiceCatalogAppRegistryServiceException = (function (_super) {
|
|
4
|
+
__extends(ServiceCatalogAppRegistryServiceException, _super);
|
|
5
|
+
function ServiceCatalogAppRegistryServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, ServiceCatalogAppRegistryServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return ServiceCatalogAppRegistryServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { ServiceCatalogAppRegistryServiceException };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { ServiceCatalogAppRegistryServiceException as __BaseException } from "./ServiceCatalogAppRegistryServiceException";
|
|
2
3
|
export var Application;
|
|
3
4
|
(function (Application) {
|
|
4
5
|
Application.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -15,6 +16,54 @@ export var AssociateAttributeGroupResponse;
|
|
|
15
16
|
(function (AssociateAttributeGroupResponse) {
|
|
16
17
|
AssociateAttributeGroupResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
17
18
|
})(AssociateAttributeGroupResponse || (AssociateAttributeGroupResponse = {}));
|
|
19
|
+
var InternalServerException = (function (_super) {
|
|
20
|
+
__extends(InternalServerException, _super);
|
|
21
|
+
function InternalServerException(opts) {
|
|
22
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
23
|
+
_this.name = "InternalServerException";
|
|
24
|
+
_this.$fault = "server";
|
|
25
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
26
|
+
return _this;
|
|
27
|
+
}
|
|
28
|
+
return InternalServerException;
|
|
29
|
+
}(__BaseException));
|
|
30
|
+
export { InternalServerException };
|
|
31
|
+
var ResourceNotFoundException = (function (_super) {
|
|
32
|
+
__extends(ResourceNotFoundException, _super);
|
|
33
|
+
function ResourceNotFoundException(opts) {
|
|
34
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
35
|
+
_this.name = "ResourceNotFoundException";
|
|
36
|
+
_this.$fault = "client";
|
|
37
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
38
|
+
return _this;
|
|
39
|
+
}
|
|
40
|
+
return ResourceNotFoundException;
|
|
41
|
+
}(__BaseException));
|
|
42
|
+
export { ResourceNotFoundException };
|
|
43
|
+
var ServiceQuotaExceededException = (function (_super) {
|
|
44
|
+
__extends(ServiceQuotaExceededException, _super);
|
|
45
|
+
function ServiceQuotaExceededException(opts) {
|
|
46
|
+
var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
47
|
+
_this.name = "ServiceQuotaExceededException";
|
|
48
|
+
_this.$fault = "client";
|
|
49
|
+
Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
|
|
50
|
+
return _this;
|
|
51
|
+
}
|
|
52
|
+
return ServiceQuotaExceededException;
|
|
53
|
+
}(__BaseException));
|
|
54
|
+
export { ServiceQuotaExceededException };
|
|
55
|
+
var ValidationException = (function (_super) {
|
|
56
|
+
__extends(ValidationException, _super);
|
|
57
|
+
function ValidationException(opts) {
|
|
58
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
59
|
+
_this.name = "ValidationException";
|
|
60
|
+
_this.$fault = "client";
|
|
61
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
62
|
+
return _this;
|
|
63
|
+
}
|
|
64
|
+
return ValidationException;
|
|
65
|
+
}(__BaseException));
|
|
66
|
+
export { ValidationException };
|
|
18
67
|
export var ResourceType;
|
|
19
68
|
(function (ResourceType) {
|
|
20
69
|
ResourceType["CFN_STACK"] = "CFN_STACK";
|
|
@@ -27,6 +76,18 @@ export var AssociateResourceResponse;
|
|
|
27
76
|
(function (AssociateResourceResponse) {
|
|
28
77
|
AssociateResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
29
78
|
})(AssociateResourceResponse || (AssociateResourceResponse = {}));
|
|
79
|
+
var ConflictException = (function (_super) {
|
|
80
|
+
__extends(ConflictException, _super);
|
|
81
|
+
function ConflictException(opts) {
|
|
82
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
83
|
+
_this.name = "ConflictException";
|
|
84
|
+
_this.$fault = "client";
|
|
85
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
86
|
+
return _this;
|
|
87
|
+
}
|
|
88
|
+
return ConflictException;
|
|
89
|
+
}(__BaseException));
|
|
90
|
+
export { ConflictException };
|
|
30
91
|
export var AttributeGroup;
|
|
31
92
|
(function (AttributeGroup) {
|
|
32
93
|
AttributeGroup.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|