@aws-sdk/client-backup-gateway 3.169.0 → 3.171.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 +16 -0
- package/dist-types/ts3.4/BackupGateway.d.ts +310 -95
- package/dist-types/ts3.4/BackupGatewayClient.d.ts +213 -91
- package/dist-types/ts3.4/commands/AssociateGatewayToServerCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateGatewayCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteGatewayCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteHypervisorCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DisassociateGatewayFromServerCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetGatewayCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ImportHypervisorConfigurationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListGatewaysCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListHypervisorsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListVirtualMachinesCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/PutMaintenanceStartTimeCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/TestHypervisorConfigurationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateGatewayInformationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdateGatewaySoftwareNowCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdateHypervisorCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/index.d.ts +18 -18
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/BackupGatewayServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +342 -410
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListGatewaysPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListHypervisorsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListVirtualMachinesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +4 -4
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +221 -56
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BackupGatewayClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BackupGatewayClient";
|
|
13
|
+
import {
|
|
14
|
+
UpdateHypervisorInput,
|
|
15
|
+
UpdateHypervisorOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateHypervisorCommandInput extends UpdateHypervisorInput {}
|
|
18
|
+
export interface UpdateHypervisorCommandOutput
|
|
19
|
+
extends UpdateHypervisorOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class UpdateHypervisorCommand extends $Command<
|
|
22
|
+
UpdateHypervisorCommandInput,
|
|
23
|
+
UpdateHypervisorCommandOutput,
|
|
24
|
+
BackupGatewayClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: UpdateHypervisorCommandInput;
|
|
27
|
+
constructor(input: UpdateHypervisorCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: BackupGatewayClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UpdateHypervisorCommandInput, UpdateHypervisorCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
export * from "./AssociateGatewayToServerCommand";
|
|
2
|
-
export * from "./CreateGatewayCommand";
|
|
3
|
-
export * from "./DeleteGatewayCommand";
|
|
4
|
-
export * from "./DeleteHypervisorCommand";
|
|
5
|
-
export * from "./DisassociateGatewayFromServerCommand";
|
|
6
|
-
export * from "./GetGatewayCommand";
|
|
7
|
-
export * from "./ImportHypervisorConfigurationCommand";
|
|
8
|
-
export * from "./ListGatewaysCommand";
|
|
9
|
-
export * from "./ListHypervisorsCommand";
|
|
10
|
-
export * from "./ListTagsForResourceCommand";
|
|
11
|
-
export * from "./ListVirtualMachinesCommand";
|
|
12
|
-
export * from "./PutMaintenanceStartTimeCommand";
|
|
13
|
-
export * from "./TagResourceCommand";
|
|
14
|
-
export * from "./TestHypervisorConfigurationCommand";
|
|
15
|
-
export * from "./UntagResourceCommand";
|
|
16
|
-
export * from "./UpdateGatewayInformationCommand";
|
|
17
|
-
export * from "./UpdateGatewaySoftwareNowCommand";
|
|
18
|
-
export * from "./UpdateHypervisorCommand";
|
|
1
|
+
export * from "./AssociateGatewayToServerCommand";
|
|
2
|
+
export * from "./CreateGatewayCommand";
|
|
3
|
+
export * from "./DeleteGatewayCommand";
|
|
4
|
+
export * from "./DeleteHypervisorCommand";
|
|
5
|
+
export * from "./DisassociateGatewayFromServerCommand";
|
|
6
|
+
export * from "./GetGatewayCommand";
|
|
7
|
+
export * from "./ImportHypervisorConfigurationCommand";
|
|
8
|
+
export * from "./ListGatewaysCommand";
|
|
9
|
+
export * from "./ListHypervisorsCommand";
|
|
10
|
+
export * from "./ListTagsForResourceCommand";
|
|
11
|
+
export * from "./ListVirtualMachinesCommand";
|
|
12
|
+
export * from "./PutMaintenanceStartTimeCommand";
|
|
13
|
+
export * from "./TagResourceCommand";
|
|
14
|
+
export * from "./TestHypervisorConfigurationCommand";
|
|
15
|
+
export * from "./UntagResourceCommand";
|
|
16
|
+
export * from "./UpdateGatewayInformationCommand";
|
|
17
|
+
export * from "./UpdateGatewaySoftwareNowCommand";
|
|
18
|
+
export * from "./UpdateHypervisorCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./BackupGateway";
|
|
2
|
-
export * from "./BackupGatewayClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { BackupGatewayServiceException } from "./models/BackupGatewayServiceException";
|
|
1
|
+
export * from "./BackupGateway";
|
|
2
|
+
export * from "./BackupGatewayClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { BackupGatewayServiceException } from "./models/BackupGatewayServiceException";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class BackupGatewayServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|