@aws-sdk/client-backup-gateway 3.171.0 → 3.178.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 +19 -0
- package/dist-cjs/BackupGateway.js +15 -0
- package/dist-cjs/commands/GetVirtualMachineCommand.js +36 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/models/models_0.js +45 -13
- package/dist-cjs/protocols/Aws_json1_0.js +159 -1
- package/dist-es/BackupGateway.js +15 -0
- package/dist-es/commands/GetVirtualMachineCommand.js +39 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +21 -3
- package/dist-es/protocols/Aws_json1_0.js +323 -129
- package/dist-types/BackupGateway.d.ts +7 -0
- package/dist-types/BackupGatewayClient.d.ts +3 -2
- package/dist-types/commands/GetVirtualMachineCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +152 -39
- package/dist-types/protocols/Aws_json1_0.d.ts +3 -0
- 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/BackupGateway.d.ts +17 -0
- package/dist-types/ts3.4/BackupGatewayClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/GetVirtualMachineCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +66 -23
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +12 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +3 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -1
- package/package.json +26 -26
|
@@ -43,6 +43,20 @@ var InternalServerException = (function (_super) {
|
|
|
43
43
|
return InternalServerException;
|
|
44
44
|
}(__BaseException));
|
|
45
45
|
export { InternalServerException };
|
|
46
|
+
var ThrottlingException = (function (_super) {
|
|
47
|
+
__extends(ThrottlingException, _super);
|
|
48
|
+
function ThrottlingException(opts) {
|
|
49
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
50
|
+
_this.name = "ThrottlingException";
|
|
51
|
+
_this.$fault = "client";
|
|
52
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
53
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
54
|
+
_this.Message = opts.Message;
|
|
55
|
+
return _this;
|
|
56
|
+
}
|
|
57
|
+
return ThrottlingException;
|
|
58
|
+
}(__BaseException));
|
|
59
|
+
export { ThrottlingException };
|
|
46
60
|
var ValidationException = (function (_super) {
|
|
47
61
|
__extends(ValidationException, _super);
|
|
48
62
|
function ValidationException(opts) {
|
|
@@ -92,6 +106,7 @@ export var DeleteGatewayOutputFilterSensitiveLog = function (obj) { return (__as
|
|
|
92
106
|
export var DisassociateGatewayFromServerInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
93
107
|
export var DisassociateGatewayFromServerOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
94
108
|
export var GetGatewayInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
109
|
+
export var MaintenanceStartTimeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
95
110
|
export var GatewayDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
96
111
|
export var GetGatewayOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
97
112
|
export var ListGatewaysInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -116,10 +131,13 @@ export var UpdateHypervisorInputFilterSensitiveLog = function (obj) { return (__
|
|
|
116
131
|
export var UpdateHypervisorOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
117
132
|
export var ListTagsForResourceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
118
133
|
export var ListTagsForResourceOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
119
|
-
export var ListVirtualMachinesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
120
|
-
export var VirtualMachineFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
121
|
-
export var ListVirtualMachinesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
122
134
|
export var TagResourceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
123
135
|
export var TagResourceOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
124
136
|
export var UntagResourceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
125
137
|
export var UntagResourceOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
138
|
+
export var GetVirtualMachineInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
139
|
+
export var VirtualMachineDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
140
|
+
export var GetVirtualMachineOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
141
|
+
export var ListVirtualMachinesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
142
|
+
export var VirtualMachineFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
143
|
+
export var ListVirtualMachinesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|