@aws-sdk/client-backup-gateway 3.50.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.
Files changed (47) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/BackupGatewayServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +77 -1
  5. package/dist-cjs/protocols/Aws_json1_0.js +139 -489
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/BackupGatewayServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +72 -1
  9. package/dist-es/protocols/Aws_json1_0.js +318 -544
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/BackupGatewayServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +37 -16
  13. package/dist-types/ts3.4/BackupGateway.d.ts +85 -0
  14. package/dist-types/ts3.4/BackupGatewayClient.d.ts +89 -0
  15. package/dist-types/ts3.4/commands/AssociateGatewayToServerCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/CreateGatewayCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/DeleteGatewayCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/DeleteHypervisorCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/DisassociateGatewayFromServerCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/ImportHypervisorConfigurationCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/ListGatewaysCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/ListHypervisorsCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/ListVirtualMachinesCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/PutMaintenanceStartTimeCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/TestHypervisorConfigurationCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/UpdateGatewayInformationCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/UpdateHypervisorCommand.d.ts +17 -0
  31. package/dist-types/ts3.4/commands/index.d.ts +16 -0
  32. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  33. package/dist-types/ts3.4/index.d.ts +6 -0
  34. package/dist-types/ts3.4/models/BackupGatewayServiceException.d.ts +6 -0
  35. package/dist-types/ts3.4/models/index.d.ts +1 -0
  36. package/dist-types/ts3.4/models/models_0.d.ts +437 -0
  37. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  38. package/dist-types/ts3.4/pagination/ListGatewaysPaginator.d.ts +4 -0
  39. package/dist-types/ts3.4/pagination/ListHypervisorsPaginator.d.ts +4 -0
  40. package/dist-types/ts3.4/pagination/ListVirtualMachinesPaginator.d.ts +4 -0
  41. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  42. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +50 -0
  43. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  44. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  45. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  46. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  47. package/package.json +33 -33
@@ -3,3 +3,4 @@ export * from "./BackupGatewayClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { BackupGatewayServiceException } from "./models/BackupGatewayServiceException";
@@ -0,0 +1,10 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ /**
3
+ * Base exception class for all service exceptions from BackupGateway service.
4
+ */
5
+ export declare class BackupGatewayServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,15 +1,20 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { BackupGatewayServiceException as __BaseException } from "./BackupGatewayServiceException";
2
3
  /**
3
4
  * <p>The operation cannot proceed because you have insufficient permissions.</p>
4
5
  */
5
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
6
- name: "AccessDeniedException";
7
- $fault: "client";
6
+ export declare class AccessDeniedException extends __BaseException {
7
+ readonly name: "AccessDeniedException";
8
+ readonly $fault: "client";
8
9
  /**
9
10
  * <p>A description of why you have insufficient permissions.</p>
10
11
  */
11
12
  ErrorCode: string | undefined;
12
13
  Message?: string;
14
+ /**
15
+ * @internal
16
+ */
17
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
13
18
  }
14
19
  export interface AssociateGatewayToServerInput {
15
20
  /**
@@ -43,38 +48,50 @@ export declare namespace AssociateGatewayToServerOutput {
43
48
  /**
44
49
  * <p>The operation cannot proceed because it is not supported.</p>
45
50
  */
46
- export interface ConflictException extends __SmithyException, $MetadataBearer {
47
- name: "ConflictException";
48
- $fault: "client";
51
+ export declare class ConflictException extends __BaseException {
52
+ readonly name: "ConflictException";
53
+ readonly $fault: "client";
49
54
  /**
50
55
  * <p>A description of why the operation is not supported.</p>
51
56
  */
52
57
  ErrorCode: string | undefined;
53
58
  Message?: string;
59
+ /**
60
+ * @internal
61
+ */
62
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
54
63
  }
55
64
  /**
56
65
  * <p>The operation did not succeed because an internal error occurred. Try again later.</p>
57
66
  */
58
- export interface InternalServerException extends __SmithyException, $MetadataBearer {
59
- name: "InternalServerException";
60
- $fault: "server";
67
+ export declare class InternalServerException extends __BaseException {
68
+ readonly name: "InternalServerException";
69
+ readonly $fault: "server";
61
70
  /**
62
71
  * <p>A description of which internal error occured.</p>
63
72
  */
64
73
  ErrorCode?: string;
65
74
  Message?: string;
75
+ /**
76
+ * @internal
77
+ */
78
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
66
79
  }
67
80
  /**
68
81
  * <p>The operation did not succeed because a validation error occurred.</p>
69
82
  */
70
- export interface ValidationException extends __SmithyException, $MetadataBearer {
71
- name: "ValidationException";
72
- $fault: "client";
83
+ export declare class ValidationException extends __BaseException {
84
+ readonly name: "ValidationException";
85
+ readonly $fault: "client";
73
86
  /**
74
87
  * <p>A description of what caused the validation error.</p>
75
88
  */
76
89
  ErrorCode?: string;
77
90
  Message?: string;
91
+ /**
92
+ * @internal
93
+ */
94
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
78
95
  }
79
96
  export declare enum GatewayType {
80
97
  BACKUP_VM = "BACKUP_VM"
@@ -163,14 +180,18 @@ export declare namespace DeleteGatewayOutput {
163
180
  /**
164
181
  * <p>A resource that is required for the action wasn't found.</p>
165
182
  */
166
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
167
- name: "ResourceNotFoundException";
168
- $fault: "client";
183
+ export declare class ResourceNotFoundException extends __BaseException {
184
+ readonly name: "ResourceNotFoundException";
185
+ readonly $fault: "client";
169
186
  /**
170
187
  * <p>A description of which resource wasn't found.</p>
171
188
  */
172
189
  ErrorCode?: string;
173
190
  Message?: string;
191
+ /**
192
+ * @internal
193
+ */
194
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
174
195
  }
175
196
  export interface DisassociateGatewayFromServerInput {
176
197
  /**
@@ -0,0 +1,85 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { BackupGatewayClient } from "./BackupGatewayClient";
3
+ import { AssociateGatewayToServerCommandInput, AssociateGatewayToServerCommandOutput } from "./commands/AssociateGatewayToServerCommand";
4
+ import { CreateGatewayCommandInput, CreateGatewayCommandOutput } from "./commands/CreateGatewayCommand";
5
+ import { DeleteGatewayCommandInput, DeleteGatewayCommandOutput } from "./commands/DeleteGatewayCommand";
6
+ import { DeleteHypervisorCommandInput, DeleteHypervisorCommandOutput } from "./commands/DeleteHypervisorCommand";
7
+ import { DisassociateGatewayFromServerCommandInput, DisassociateGatewayFromServerCommandOutput } from "./commands/DisassociateGatewayFromServerCommand";
8
+ import { ImportHypervisorConfigurationCommandInput, ImportHypervisorConfigurationCommandOutput } from "./commands/ImportHypervisorConfigurationCommand";
9
+ import { ListGatewaysCommandInput, ListGatewaysCommandOutput } from "./commands/ListGatewaysCommand";
10
+ import { ListHypervisorsCommandInput, ListHypervisorsCommandOutput } from "./commands/ListHypervisorsCommand";
11
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
12
+ import { ListVirtualMachinesCommandInput, ListVirtualMachinesCommandOutput } from "./commands/ListVirtualMachinesCommand";
13
+ import { PutMaintenanceStartTimeCommandInput, PutMaintenanceStartTimeCommandOutput } from "./commands/PutMaintenanceStartTimeCommand";
14
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
15
+ import { TestHypervisorConfigurationCommandInput, TestHypervisorConfigurationCommandOutput } from "./commands/TestHypervisorConfigurationCommand";
16
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
17
+ import { UpdateGatewayInformationCommandInput, UpdateGatewayInformationCommandOutput } from "./commands/UpdateGatewayInformationCommand";
18
+ import { UpdateHypervisorCommandInput, UpdateHypervisorCommandOutput } from "./commands/UpdateHypervisorCommand";
19
+
20
+ export declare class BackupGateway extends BackupGatewayClient {
21
+
22
+ associateGatewayToServer(args: AssociateGatewayToServerCommandInput, options?: __HttpHandlerOptions): Promise<AssociateGatewayToServerCommandOutput>;
23
+ associateGatewayToServer(args: AssociateGatewayToServerCommandInput, cb: (err: any, data?: AssociateGatewayToServerCommandOutput) => void): void;
24
+ associateGatewayToServer(args: AssociateGatewayToServerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateGatewayToServerCommandOutput) => void): void;
25
+
26
+ createGateway(args: CreateGatewayCommandInput, options?: __HttpHandlerOptions): Promise<CreateGatewayCommandOutput>;
27
+ createGateway(args: CreateGatewayCommandInput, cb: (err: any, data?: CreateGatewayCommandOutput) => void): void;
28
+ createGateway(args: CreateGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateGatewayCommandOutput) => void): void;
29
+
30
+ deleteGateway(args: DeleteGatewayCommandInput, options?: __HttpHandlerOptions): Promise<DeleteGatewayCommandOutput>;
31
+ deleteGateway(args: DeleteGatewayCommandInput, cb: (err: any, data?: DeleteGatewayCommandOutput) => void): void;
32
+ deleteGateway(args: DeleteGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGatewayCommandOutput) => void): void;
33
+
34
+ deleteHypervisor(args: DeleteHypervisorCommandInput, options?: __HttpHandlerOptions): Promise<DeleteHypervisorCommandOutput>;
35
+ deleteHypervisor(args: DeleteHypervisorCommandInput, cb: (err: any, data?: DeleteHypervisorCommandOutput) => void): void;
36
+ deleteHypervisor(args: DeleteHypervisorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteHypervisorCommandOutput) => void): void;
37
+
38
+ disassociateGatewayFromServer(args: DisassociateGatewayFromServerCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateGatewayFromServerCommandOutput>;
39
+ disassociateGatewayFromServer(args: DisassociateGatewayFromServerCommandInput, cb: (err: any, data?: DisassociateGatewayFromServerCommandOutput) => void): void;
40
+ disassociateGatewayFromServer(args: DisassociateGatewayFromServerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateGatewayFromServerCommandOutput) => void): void;
41
+
42
+ importHypervisorConfiguration(args: ImportHypervisorConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<ImportHypervisorConfigurationCommandOutput>;
43
+ importHypervisorConfiguration(args: ImportHypervisorConfigurationCommandInput, cb: (err: any, data?: ImportHypervisorConfigurationCommandOutput) => void): void;
44
+ importHypervisorConfiguration(args: ImportHypervisorConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportHypervisorConfigurationCommandOutput) => void): void;
45
+
46
+ listGateways(args: ListGatewaysCommandInput, options?: __HttpHandlerOptions): Promise<ListGatewaysCommandOutput>;
47
+ listGateways(args: ListGatewaysCommandInput, cb: (err: any, data?: ListGatewaysCommandOutput) => void): void;
48
+ listGateways(args: ListGatewaysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGatewaysCommandOutput) => void): void;
49
+
50
+ listHypervisors(args: ListHypervisorsCommandInput, options?: __HttpHandlerOptions): Promise<ListHypervisorsCommandOutput>;
51
+ listHypervisors(args: ListHypervisorsCommandInput, cb: (err: any, data?: ListHypervisorsCommandOutput) => void): void;
52
+ listHypervisors(args: ListHypervisorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListHypervisorsCommandOutput) => void): void;
53
+
54
+ listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
55
+ listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
56
+ listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
57
+
58
+ listVirtualMachines(args: ListVirtualMachinesCommandInput, options?: __HttpHandlerOptions): Promise<ListVirtualMachinesCommandOutput>;
59
+ listVirtualMachines(args: ListVirtualMachinesCommandInput, cb: (err: any, data?: ListVirtualMachinesCommandOutput) => void): void;
60
+ listVirtualMachines(args: ListVirtualMachinesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVirtualMachinesCommandOutput) => void): void;
61
+
62
+ putMaintenanceStartTime(args: PutMaintenanceStartTimeCommandInput, options?: __HttpHandlerOptions): Promise<PutMaintenanceStartTimeCommandOutput>;
63
+ putMaintenanceStartTime(args: PutMaintenanceStartTimeCommandInput, cb: (err: any, data?: PutMaintenanceStartTimeCommandOutput) => void): void;
64
+ putMaintenanceStartTime(args: PutMaintenanceStartTimeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutMaintenanceStartTimeCommandOutput) => void): void;
65
+
66
+ tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
67
+ tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
68
+ tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
69
+
70
+ testHypervisorConfiguration(args: TestHypervisorConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<TestHypervisorConfigurationCommandOutput>;
71
+ testHypervisorConfiguration(args: TestHypervisorConfigurationCommandInput, cb: (err: any, data?: TestHypervisorConfigurationCommandOutput) => void): void;
72
+ testHypervisorConfiguration(args: TestHypervisorConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TestHypervisorConfigurationCommandOutput) => void): void;
73
+
74
+ untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
75
+ untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
76
+ untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
77
+
78
+ updateGatewayInformation(args: UpdateGatewayInformationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateGatewayInformationCommandOutput>;
79
+ updateGatewayInformation(args: UpdateGatewayInformationCommandInput, cb: (err: any, data?: UpdateGatewayInformationCommandOutput) => void): void;
80
+ updateGatewayInformation(args: UpdateGatewayInformationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGatewayInformationCommandOutput) => void): void;
81
+
82
+ updateHypervisor(args: UpdateHypervisorCommandInput, options?: __HttpHandlerOptions): Promise<UpdateHypervisorCommandOutput>;
83
+ updateHypervisor(args: UpdateHypervisorCommandInput, cb: (err: any, data?: UpdateHypervisorCommandOutput) => void): void;
84
+ updateHypervisor(args: UpdateHypervisorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateHypervisorCommandOutput) => void): void;
85
+ }
@@ -0,0 +1,89 @@
1
+ import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
+ import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
+ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
+ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
+ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
+ import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
+ import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
+ import { AssociateGatewayToServerCommandInput, AssociateGatewayToServerCommandOutput } from "./commands/AssociateGatewayToServerCommand";
10
+ import { CreateGatewayCommandInput, CreateGatewayCommandOutput } from "./commands/CreateGatewayCommand";
11
+ import { DeleteGatewayCommandInput, DeleteGatewayCommandOutput } from "./commands/DeleteGatewayCommand";
12
+ import { DeleteHypervisorCommandInput, DeleteHypervisorCommandOutput } from "./commands/DeleteHypervisorCommand";
13
+ import { DisassociateGatewayFromServerCommandInput, DisassociateGatewayFromServerCommandOutput } from "./commands/DisassociateGatewayFromServerCommand";
14
+ import { ImportHypervisorConfigurationCommandInput, ImportHypervisorConfigurationCommandOutput } from "./commands/ImportHypervisorConfigurationCommand";
15
+ import { ListGatewaysCommandInput, ListGatewaysCommandOutput } from "./commands/ListGatewaysCommand";
16
+ import { ListHypervisorsCommandInput, ListHypervisorsCommandOutput } from "./commands/ListHypervisorsCommand";
17
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
18
+ import { ListVirtualMachinesCommandInput, ListVirtualMachinesCommandOutput } from "./commands/ListVirtualMachinesCommand";
19
+ import { PutMaintenanceStartTimeCommandInput, PutMaintenanceStartTimeCommandOutput } from "./commands/PutMaintenanceStartTimeCommand";
20
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
21
+ import { TestHypervisorConfigurationCommandInput, TestHypervisorConfigurationCommandOutput } from "./commands/TestHypervisorConfigurationCommand";
22
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
23
+ import { UpdateGatewayInformationCommandInput, UpdateGatewayInformationCommandOutput } from "./commands/UpdateGatewayInformationCommand";
24
+ import { UpdateHypervisorCommandInput, UpdateHypervisorCommandOutput } from "./commands/UpdateHypervisorCommand";
25
+ export declare type ServiceInputTypes = AssociateGatewayToServerCommandInput | CreateGatewayCommandInput | DeleteGatewayCommandInput | DeleteHypervisorCommandInput | DisassociateGatewayFromServerCommandInput | ImportHypervisorConfigurationCommandInput | ListGatewaysCommandInput | ListHypervisorsCommandInput | ListTagsForResourceCommandInput | ListVirtualMachinesCommandInput | PutMaintenanceStartTimeCommandInput | TagResourceCommandInput | TestHypervisorConfigurationCommandInput | UntagResourceCommandInput | UpdateGatewayInformationCommandInput | UpdateHypervisorCommandInput;
26
+ export declare type ServiceOutputTypes = AssociateGatewayToServerCommandOutput | CreateGatewayCommandOutput | DeleteGatewayCommandOutput | DeleteHypervisorCommandOutput | DisassociateGatewayFromServerCommandOutput | ImportHypervisorConfigurationCommandOutput | ListGatewaysCommandOutput | ListHypervisorsCommandOutput | ListTagsForResourceCommandOutput | ListVirtualMachinesCommandOutput | PutMaintenanceStartTimeCommandOutput | TagResourceCommandOutput | TestHypervisorConfigurationCommandOutput | UntagResourceCommandOutput | UpdateGatewayInformationCommandOutput | UpdateHypervisorCommandOutput;
27
+ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
28
+
29
+ requestHandler?: __HttpHandler;
30
+
31
+ sha256?: __HashConstructor;
32
+
33
+ urlParser?: __UrlParser;
34
+
35
+ bodyLengthChecker?: (body: any) => number | undefined;
36
+
37
+ streamCollector?: __StreamCollector;
38
+
39
+ base64Decoder?: __Decoder;
40
+
41
+ base64Encoder?: __Encoder;
42
+
43
+ utf8Decoder?: __Decoder;
44
+
45
+ utf8Encoder?: __Encoder;
46
+
47
+ runtime?: string;
48
+
49
+ disableHostPrefix?: boolean;
50
+
51
+ maxAttempts?: number | __Provider<number>;
52
+
53
+ retryMode?: string | __Provider<string>;
54
+
55
+ logger?: __Logger;
56
+
57
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
58
+
59
+ useFipsEndpoint?: boolean | __Provider<boolean>;
60
+
61
+ serviceId?: string;
62
+
63
+ region?: string | __Provider<string>;
64
+
65
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
66
+
67
+ regionInfoProvider?: RegionInfoProvider;
68
+
69
+ defaultUserAgentProvider?: Provider<__UserAgent>;
70
+
71
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
72
+ }
73
+ declare type BackupGatewayClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
74
+
75
+ export interface BackupGatewayClientConfig extends BackupGatewayClientConfigType {
76
+ }
77
+ declare type BackupGatewayClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
78
+
79
+ export interface BackupGatewayClientResolvedConfig extends BackupGatewayClientResolvedConfigType {
80
+ }
81
+
82
+ export declare class BackupGatewayClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, BackupGatewayClientResolvedConfig> {
83
+
84
+ readonly config: BackupGatewayClientResolvedConfig;
85
+ constructor(configuration: BackupGatewayClientConfig);
86
+
87
+ destroy(): void;
88
+ }
89
+ export {};
@@ -0,0 +1,17 @@
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 { AssociateGatewayToServerInput, AssociateGatewayToServerOutput } from "../models/models_0";
5
+ export interface AssociateGatewayToServerCommandInput extends AssociateGatewayToServerInput {
6
+ }
7
+ export interface AssociateGatewayToServerCommandOutput extends AssociateGatewayToServerOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class AssociateGatewayToServerCommand extends $Command<AssociateGatewayToServerCommandInput, AssociateGatewayToServerCommandOutput, BackupGatewayClientResolvedConfig> {
11
+ readonly input: AssociateGatewayToServerCommandInput;
12
+ constructor(input: AssociateGatewayToServerCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateGatewayToServerCommandInput, AssociateGatewayToServerCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { CreateGatewayInput, CreateGatewayOutput } from "../models/models_0";
5
+ export interface CreateGatewayCommandInput extends CreateGatewayInput {
6
+ }
7
+ export interface CreateGatewayCommandOutput extends CreateGatewayOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateGatewayCommand extends $Command<CreateGatewayCommandInput, CreateGatewayCommandOutput, BackupGatewayClientResolvedConfig> {
11
+ readonly input: CreateGatewayCommandInput;
12
+ constructor(input: CreateGatewayCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateGatewayCommandInput, CreateGatewayCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { DeleteGatewayInput, DeleteGatewayOutput } from "../models/models_0";
5
+ export interface DeleteGatewayCommandInput extends DeleteGatewayInput {
6
+ }
7
+ export interface DeleteGatewayCommandOutput extends DeleteGatewayOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteGatewayCommand extends $Command<DeleteGatewayCommandInput, DeleteGatewayCommandOutput, BackupGatewayClientResolvedConfig> {
11
+ readonly input: DeleteGatewayCommandInput;
12
+ constructor(input: DeleteGatewayCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteGatewayCommandInput, DeleteGatewayCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { DeleteHypervisorInput, DeleteHypervisorOutput } from "../models/models_0";
5
+ export interface DeleteHypervisorCommandInput extends DeleteHypervisorInput {
6
+ }
7
+ export interface DeleteHypervisorCommandOutput extends DeleteHypervisorOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteHypervisorCommand extends $Command<DeleteHypervisorCommandInput, DeleteHypervisorCommandOutput, BackupGatewayClientResolvedConfig> {
11
+ readonly input: DeleteHypervisorCommandInput;
12
+ constructor(input: DeleteHypervisorCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteHypervisorCommandInput, DeleteHypervisorCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { DisassociateGatewayFromServerInput, DisassociateGatewayFromServerOutput } from "../models/models_0";
5
+ export interface DisassociateGatewayFromServerCommandInput extends DisassociateGatewayFromServerInput {
6
+ }
7
+ export interface DisassociateGatewayFromServerCommandOutput extends DisassociateGatewayFromServerOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DisassociateGatewayFromServerCommand extends $Command<DisassociateGatewayFromServerCommandInput, DisassociateGatewayFromServerCommandOutput, BackupGatewayClientResolvedConfig> {
11
+ readonly input: DisassociateGatewayFromServerCommandInput;
12
+ constructor(input: DisassociateGatewayFromServerCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateGatewayFromServerCommandInput, DisassociateGatewayFromServerCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { ImportHypervisorConfigurationInput, ImportHypervisorConfigurationOutput } from "../models/models_0";
5
+ export interface ImportHypervisorConfigurationCommandInput extends ImportHypervisorConfigurationInput {
6
+ }
7
+ export interface ImportHypervisorConfigurationCommandOutput extends ImportHypervisorConfigurationOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ImportHypervisorConfigurationCommand extends $Command<ImportHypervisorConfigurationCommandInput, ImportHypervisorConfigurationCommandOutput, BackupGatewayClientResolvedConfig> {
11
+ readonly input: ImportHypervisorConfigurationCommandInput;
12
+ constructor(input: ImportHypervisorConfigurationCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ImportHypervisorConfigurationCommandInput, ImportHypervisorConfigurationCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { ListGatewaysInput, ListGatewaysOutput } from "../models/models_0";
5
+ export interface ListGatewaysCommandInput extends ListGatewaysInput {
6
+ }
7
+ export interface ListGatewaysCommandOutput extends ListGatewaysOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListGatewaysCommand extends $Command<ListGatewaysCommandInput, ListGatewaysCommandOutput, BackupGatewayClientResolvedConfig> {
11
+ readonly input: ListGatewaysCommandInput;
12
+ constructor(input: ListGatewaysCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListGatewaysCommandInput, ListGatewaysCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { ListHypervisorsInput, ListHypervisorsOutput } from "../models/models_0";
5
+ export interface ListHypervisorsCommandInput extends ListHypervisorsInput {
6
+ }
7
+ export interface ListHypervisorsCommandOutput extends ListHypervisorsOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListHypervisorsCommand extends $Command<ListHypervisorsCommandInput, ListHypervisorsCommandOutput, BackupGatewayClientResolvedConfig> {
11
+ readonly input: ListHypervisorsCommandInput;
12
+ constructor(input: ListHypervisorsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListHypervisorsCommandInput, ListHypervisorsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
5
+ export interface ListTagsForResourceCommandInput extends ListTagsForResourceInput {
6
+ }
7
+ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, BackupGatewayClientResolvedConfig> {
11
+ readonly input: ListTagsForResourceCommandInput;
12
+ constructor(input: ListTagsForResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { ListVirtualMachinesInput, ListVirtualMachinesOutput } from "../models/models_0";
5
+ export interface ListVirtualMachinesCommandInput extends ListVirtualMachinesInput {
6
+ }
7
+ export interface ListVirtualMachinesCommandOutput extends ListVirtualMachinesOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListVirtualMachinesCommand extends $Command<ListVirtualMachinesCommandInput, ListVirtualMachinesCommandOutput, BackupGatewayClientResolvedConfig> {
11
+ readonly input: ListVirtualMachinesCommandInput;
12
+ constructor(input: ListVirtualMachinesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListVirtualMachinesCommandInput, ListVirtualMachinesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { PutMaintenanceStartTimeInput, PutMaintenanceStartTimeOutput } from "../models/models_0";
5
+ export interface PutMaintenanceStartTimeCommandInput extends PutMaintenanceStartTimeInput {
6
+ }
7
+ export interface PutMaintenanceStartTimeCommandOutput extends PutMaintenanceStartTimeOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class PutMaintenanceStartTimeCommand extends $Command<PutMaintenanceStartTimeCommandInput, PutMaintenanceStartTimeCommandOutput, BackupGatewayClientResolvedConfig> {
11
+ readonly input: PutMaintenanceStartTimeCommandInput;
12
+ constructor(input: PutMaintenanceStartTimeCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutMaintenanceStartTimeCommandInput, PutMaintenanceStartTimeCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { TagResourceInput, TagResourceOutput } from "../models/models_0";
5
+ export interface TagResourceCommandInput extends TagResourceInput {
6
+ }
7
+ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, BackupGatewayClientResolvedConfig> {
11
+ readonly input: TagResourceCommandInput;
12
+ constructor(input: TagResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { TestHypervisorConfigurationInput, TestHypervisorConfigurationOutput } from "../models/models_0";
5
+ export interface TestHypervisorConfigurationCommandInput extends TestHypervisorConfigurationInput {
6
+ }
7
+ export interface TestHypervisorConfigurationCommandOutput extends TestHypervisorConfigurationOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class TestHypervisorConfigurationCommand extends $Command<TestHypervisorConfigurationCommandInput, TestHypervisorConfigurationCommandOutput, BackupGatewayClientResolvedConfig> {
11
+ readonly input: TestHypervisorConfigurationCommandInput;
12
+ constructor(input: TestHypervisorConfigurationCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TestHypervisorConfigurationCommandInput, TestHypervisorConfigurationCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
5
+ export interface UntagResourceCommandInput extends UntagResourceInput {
6
+ }
7
+ export interface UntagResourceCommandOutput extends UntagResourceOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, BackupGatewayClientResolvedConfig> {
11
+ readonly input: UntagResourceCommandInput;
12
+ constructor(input: UntagResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { UpdateGatewayInformationInput, UpdateGatewayInformationOutput } from "../models/models_0";
5
+ export interface UpdateGatewayInformationCommandInput extends UpdateGatewayInformationInput {
6
+ }
7
+ export interface UpdateGatewayInformationCommandOutput extends UpdateGatewayInformationOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateGatewayInformationCommand extends $Command<UpdateGatewayInformationCommandInput, UpdateGatewayInformationCommandOutput, BackupGatewayClientResolvedConfig> {
11
+ readonly input: UpdateGatewayInformationCommandInput;
12
+ constructor(input: UpdateGatewayInformationCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateGatewayInformationCommandInput, UpdateGatewayInformationCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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
+ }
@@ -0,0 +1,16 @@
1
+ export * from "./AssociateGatewayToServerCommand";
2
+ export * from "./CreateGatewayCommand";
3
+ export * from "./DeleteGatewayCommand";
4
+ export * from "./DeleteHypervisorCommand";
5
+ export * from "./DisassociateGatewayFromServerCommand";
6
+ export * from "./ImportHypervisorConfigurationCommand";
7
+ export * from "./ListGatewaysCommand";
8
+ export * from "./ListHypervisorsCommand";
9
+ export * from "./ListTagsForResourceCommand";
10
+ export * from "./ListVirtualMachinesCommand";
11
+ export * from "./PutMaintenanceStartTimeCommand";
12
+ export * from "./TagResourceCommand";
13
+ export * from "./TestHypervisorConfigurationCommand";
14
+ export * from "./UntagResourceCommand";
15
+ export * from "./UpdateGatewayInformationCommand";
16
+ export * from "./UpdateHypervisorCommand";
@@ -0,0 +1,2 @@
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;