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