@aws-sdk/client-cloudhsm-v2 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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/CloudHSMV2ServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +86 -1
- package/dist-cjs/protocols/Aws_json1_1.js +170 -676
- package/dist-es/index.js +1 -0
- package/dist-es/models/CloudHSMV2ServiceException.js +12 -0
- package/dist-es/models/models_0.js +80 -1
- package/dist-es/protocols/Aws_json1_1.js +373 -725
- package/dist-types/CloudHSMV2Client.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/CloudHSMV2ServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +44 -19
- 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/CloudHSMV2Client.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/CloudHSMV2ServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +32 -19
- 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 CloudHSMV2ServiceException = (function (_super) {
|
|
4
|
+
__extends(CloudHSMV2ServiceException, _super);
|
|
5
|
+
function CloudHSMV2ServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, CloudHSMV2ServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return CloudHSMV2ServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { CloudHSMV2ServiceException };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { CloudHSMV2ServiceException as __BaseException } from "./CloudHSMV2ServiceException";
|
|
2
3
|
export var BackupState;
|
|
3
4
|
(function (BackupState) {
|
|
4
5
|
BackupState["CREATE_IN_PROGRESS"] = "CREATE_IN_PROGRESS";
|
|
@@ -26,6 +27,84 @@ export var BackupRetentionPolicy;
|
|
|
26
27
|
(function (BackupRetentionPolicy) {
|
|
27
28
|
BackupRetentionPolicy.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
28
29
|
})(BackupRetentionPolicy || (BackupRetentionPolicy = {}));
|
|
30
|
+
var CloudHsmAccessDeniedException = (function (_super) {
|
|
31
|
+
__extends(CloudHsmAccessDeniedException, _super);
|
|
32
|
+
function CloudHsmAccessDeniedException(opts) {
|
|
33
|
+
var _this = _super.call(this, __assign({ name: "CloudHsmAccessDeniedException", $fault: "client" }, opts)) || this;
|
|
34
|
+
_this.name = "CloudHsmAccessDeniedException";
|
|
35
|
+
_this.$fault = "client";
|
|
36
|
+
Object.setPrototypeOf(_this, CloudHsmAccessDeniedException.prototype);
|
|
37
|
+
_this.Message = opts.Message;
|
|
38
|
+
return _this;
|
|
39
|
+
}
|
|
40
|
+
return CloudHsmAccessDeniedException;
|
|
41
|
+
}(__BaseException));
|
|
42
|
+
export { CloudHsmAccessDeniedException };
|
|
43
|
+
var CloudHsmInternalFailureException = (function (_super) {
|
|
44
|
+
__extends(CloudHsmInternalFailureException, _super);
|
|
45
|
+
function CloudHsmInternalFailureException(opts) {
|
|
46
|
+
var _this = _super.call(this, __assign({ name: "CloudHsmInternalFailureException", $fault: "server" }, opts)) || this;
|
|
47
|
+
_this.name = "CloudHsmInternalFailureException";
|
|
48
|
+
_this.$fault = "server";
|
|
49
|
+
Object.setPrototypeOf(_this, CloudHsmInternalFailureException.prototype);
|
|
50
|
+
_this.Message = opts.Message;
|
|
51
|
+
return _this;
|
|
52
|
+
}
|
|
53
|
+
return CloudHsmInternalFailureException;
|
|
54
|
+
}(__BaseException));
|
|
55
|
+
export { CloudHsmInternalFailureException };
|
|
56
|
+
var CloudHsmInvalidRequestException = (function (_super) {
|
|
57
|
+
__extends(CloudHsmInvalidRequestException, _super);
|
|
58
|
+
function CloudHsmInvalidRequestException(opts) {
|
|
59
|
+
var _this = _super.call(this, __assign({ name: "CloudHsmInvalidRequestException", $fault: "client" }, opts)) || this;
|
|
60
|
+
_this.name = "CloudHsmInvalidRequestException";
|
|
61
|
+
_this.$fault = "client";
|
|
62
|
+
Object.setPrototypeOf(_this, CloudHsmInvalidRequestException.prototype);
|
|
63
|
+
_this.Message = opts.Message;
|
|
64
|
+
return _this;
|
|
65
|
+
}
|
|
66
|
+
return CloudHsmInvalidRequestException;
|
|
67
|
+
}(__BaseException));
|
|
68
|
+
export { CloudHsmInvalidRequestException };
|
|
69
|
+
var CloudHsmResourceNotFoundException = (function (_super) {
|
|
70
|
+
__extends(CloudHsmResourceNotFoundException, _super);
|
|
71
|
+
function CloudHsmResourceNotFoundException(opts) {
|
|
72
|
+
var _this = _super.call(this, __assign({ name: "CloudHsmResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
73
|
+
_this.name = "CloudHsmResourceNotFoundException";
|
|
74
|
+
_this.$fault = "client";
|
|
75
|
+
Object.setPrototypeOf(_this, CloudHsmResourceNotFoundException.prototype);
|
|
76
|
+
_this.Message = opts.Message;
|
|
77
|
+
return _this;
|
|
78
|
+
}
|
|
79
|
+
return CloudHsmResourceNotFoundException;
|
|
80
|
+
}(__BaseException));
|
|
81
|
+
export { CloudHsmResourceNotFoundException };
|
|
82
|
+
var CloudHsmServiceException = (function (_super) {
|
|
83
|
+
__extends(CloudHsmServiceException, _super);
|
|
84
|
+
function CloudHsmServiceException(opts) {
|
|
85
|
+
var _this = _super.call(this, __assign({ name: "CloudHsmServiceException", $fault: "client" }, opts)) || this;
|
|
86
|
+
_this.name = "CloudHsmServiceException";
|
|
87
|
+
_this.$fault = "client";
|
|
88
|
+
Object.setPrototypeOf(_this, CloudHsmServiceException.prototype);
|
|
89
|
+
_this.Message = opts.Message;
|
|
90
|
+
return _this;
|
|
91
|
+
}
|
|
92
|
+
return CloudHsmServiceException;
|
|
93
|
+
}(__BaseException));
|
|
94
|
+
export { CloudHsmServiceException };
|
|
95
|
+
var CloudHsmTagException = (function (_super) {
|
|
96
|
+
__extends(CloudHsmTagException, _super);
|
|
97
|
+
function CloudHsmTagException(opts) {
|
|
98
|
+
var _this = _super.call(this, __assign({ name: "CloudHsmTagException", $fault: "client" }, opts)) || this;
|
|
99
|
+
_this.name = "CloudHsmTagException";
|
|
100
|
+
_this.$fault = "client";
|
|
101
|
+
Object.setPrototypeOf(_this, CloudHsmTagException.prototype);
|
|
102
|
+
_this.Message = opts.Message;
|
|
103
|
+
return _this;
|
|
104
|
+
}
|
|
105
|
+
return CloudHsmTagException;
|
|
106
|
+
}(__BaseException));
|
|
107
|
+
export { CloudHsmTagException };
|
|
29
108
|
export var CopyBackupToRegionRequest;
|
|
30
109
|
(function (CopyBackupToRegionRequest) {
|
|
31
110
|
CopyBackupToRegionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|