@aws-sdk/client-cloudhsm 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/CloudHSMServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +44 -1
- package/dist-cjs/protocols/Aws_json1_1.js +163 -570
- package/dist-es/index.js +1 -0
- package/dist-es/models/CloudHSMServiceException.js +12 -0
- package/dist-es/models/models_0.js +41 -1
- package/dist-es/protocols/Aws_json1_1.js +382 -645
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/CloudHSMServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +23 -22
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/CloudHSMServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +17 -16
- 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 CloudHSMServiceException = (function (_super) {
|
|
4
|
+
__extends(CloudHSMServiceException, _super);
|
|
5
|
+
function CloudHSMServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, CloudHSMServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return CloudHSMServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { CloudHSMServiceException };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { CloudHSMServiceException as __BaseException } from "./CloudHSMServiceException";
|
|
2
3
|
export var Tag;
|
|
3
4
|
(function (Tag) {
|
|
4
5
|
Tag.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -11,6 +12,45 @@ export var AddTagsToResourceResponse;
|
|
|
11
12
|
(function (AddTagsToResourceResponse) {
|
|
12
13
|
AddTagsToResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
13
14
|
})(AddTagsToResourceResponse || (AddTagsToResourceResponse = {}));
|
|
15
|
+
var CloudHsmInternalException = (function (_super) {
|
|
16
|
+
__extends(CloudHsmInternalException, _super);
|
|
17
|
+
function CloudHsmInternalException(opts) {
|
|
18
|
+
var _this = _super.call(this, __assign({ name: "CloudHsmInternalException", $fault: "server" }, opts)) || this;
|
|
19
|
+
_this.name = "CloudHsmInternalException";
|
|
20
|
+
_this.$fault = "server";
|
|
21
|
+
Object.setPrototypeOf(_this, CloudHsmInternalException.prototype);
|
|
22
|
+
_this.retryable = opts.retryable;
|
|
23
|
+
return _this;
|
|
24
|
+
}
|
|
25
|
+
return CloudHsmInternalException;
|
|
26
|
+
}(__BaseException));
|
|
27
|
+
export { CloudHsmInternalException };
|
|
28
|
+
var CloudHsmServiceException = (function (_super) {
|
|
29
|
+
__extends(CloudHsmServiceException, _super);
|
|
30
|
+
function CloudHsmServiceException(opts) {
|
|
31
|
+
var _this = _super.call(this, __assign({ name: "CloudHsmServiceException", $fault: "client" }, opts)) || this;
|
|
32
|
+
_this.name = "CloudHsmServiceException";
|
|
33
|
+
_this.$fault = "client";
|
|
34
|
+
Object.setPrototypeOf(_this, CloudHsmServiceException.prototype);
|
|
35
|
+
_this.retryable = opts.retryable;
|
|
36
|
+
return _this;
|
|
37
|
+
}
|
|
38
|
+
return CloudHsmServiceException;
|
|
39
|
+
}(__BaseException));
|
|
40
|
+
export { CloudHsmServiceException };
|
|
41
|
+
var InvalidRequestException = (function (_super) {
|
|
42
|
+
__extends(InvalidRequestException, _super);
|
|
43
|
+
function InvalidRequestException(opts) {
|
|
44
|
+
var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
|
|
45
|
+
_this.name = "InvalidRequestException";
|
|
46
|
+
_this.$fault = "client";
|
|
47
|
+
Object.setPrototypeOf(_this, InvalidRequestException.prototype);
|
|
48
|
+
_this.retryable = opts.retryable;
|
|
49
|
+
return _this;
|
|
50
|
+
}
|
|
51
|
+
return InvalidRequestException;
|
|
52
|
+
}(__BaseException));
|
|
53
|
+
export { InvalidRequestException };
|
|
14
54
|
export var ClientVersion;
|
|
15
55
|
(function (ClientVersion) {
|
|
16
56
|
ClientVersion["FIVE_ONE"] = "5.1";
|