@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,91 +1,238 @@
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 { BodyLengthCalculator as __BodyLengthCalculator, 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 { GetGatewayCommandInput, GetGatewayCommandOutput } from "./commands/GetGatewayCommand";
15
- import { ImportHypervisorConfigurationCommandInput, ImportHypervisorConfigurationCommandOutput } from "./commands/ImportHypervisorConfigurationCommand";
16
- import { ListGatewaysCommandInput, ListGatewaysCommandOutput } from "./commands/ListGatewaysCommand";
17
- import { ListHypervisorsCommandInput, ListHypervisorsCommandOutput } from "./commands/ListHypervisorsCommand";
18
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
19
- import { ListVirtualMachinesCommandInput, ListVirtualMachinesCommandOutput } from "./commands/ListVirtualMachinesCommand";
20
- import { PutMaintenanceStartTimeCommandInput, PutMaintenanceStartTimeCommandOutput } from "./commands/PutMaintenanceStartTimeCommand";
21
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
22
- import { TestHypervisorConfigurationCommandInput, TestHypervisorConfigurationCommandOutput } from "./commands/TestHypervisorConfigurationCommand";
23
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
24
- import { UpdateGatewayInformationCommandInput, UpdateGatewayInformationCommandOutput } from "./commands/UpdateGatewayInformationCommand";
25
- import { UpdateGatewaySoftwareNowCommandInput, UpdateGatewaySoftwareNowCommandOutput } from "./commands/UpdateGatewaySoftwareNowCommand";
26
- import { UpdateHypervisorCommandInput, UpdateHypervisorCommandOutput } from "./commands/UpdateHypervisorCommand";
27
- export declare type ServiceInputTypes = AssociateGatewayToServerCommandInput | CreateGatewayCommandInput | DeleteGatewayCommandInput | DeleteHypervisorCommandInput | DisassociateGatewayFromServerCommandInput | GetGatewayCommandInput | ImportHypervisorConfigurationCommandInput | ListGatewaysCommandInput | ListHypervisorsCommandInput | ListTagsForResourceCommandInput | ListVirtualMachinesCommandInput | PutMaintenanceStartTimeCommandInput | TagResourceCommandInput | TestHypervisorConfigurationCommandInput | UntagResourceCommandInput | UpdateGatewayInformationCommandInput | UpdateGatewaySoftwareNowCommandInput | UpdateHypervisorCommandInput;
28
- export declare type ServiceOutputTypes = AssociateGatewayToServerCommandOutput | CreateGatewayCommandOutput | DeleteGatewayCommandOutput | DeleteHypervisorCommandOutput | DisassociateGatewayFromServerCommandOutput | GetGatewayCommandOutput | ImportHypervisorConfigurationCommandOutput | ListGatewaysCommandOutput | ListHypervisorsCommandOutput | ListTagsForResourceCommandOutput | ListVirtualMachinesCommandOutput | PutMaintenanceStartTimeCommandOutput | TagResourceCommandOutput | TestHypervisorConfigurationCommandOutput | UntagResourceCommandOutput | UpdateGatewayInformationCommandOutput | UpdateGatewaySoftwareNowCommandOutput | UpdateHypervisorCommandOutput;
29
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
30
-
31
- requestHandler?: __HttpHandler;
32
-
33
- sha256?: __HashConstructor;
34
-
35
- urlParser?: __UrlParser;
36
-
37
- bodyLengthChecker?: __BodyLengthCalculator;
38
-
39
- streamCollector?: __StreamCollector;
40
-
41
- base64Decoder?: __Decoder;
42
-
43
- base64Encoder?: __Encoder;
44
-
45
- utf8Decoder?: __Decoder;
46
-
47
- utf8Encoder?: __Encoder;
48
-
49
- runtime?: string;
50
-
51
- disableHostPrefix?: boolean;
52
-
53
- maxAttempts?: number | __Provider<number>;
54
-
55
- retryMode?: string | __Provider<string>;
56
-
57
- logger?: __Logger;
58
-
59
- useDualstackEndpoint?: boolean | __Provider<boolean>;
60
-
61
- useFipsEndpoint?: boolean | __Provider<boolean>;
62
-
63
- serviceId?: string;
64
-
65
- region?: string | __Provider<string>;
66
-
67
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
68
-
69
- regionInfoProvider?: RegionInfoProvider;
70
-
71
- defaultUserAgentProvider?: Provider<__UserAgent>;
72
-
73
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
74
- }
75
- declare type BackupGatewayClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
76
-
77
- export interface BackupGatewayClientConfig extends BackupGatewayClientConfigType {
78
- }
79
- declare type BackupGatewayClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
80
-
81
- export interface BackupGatewayClientResolvedConfig extends BackupGatewayClientResolvedConfigType {
82
- }
83
-
84
- export declare class BackupGatewayClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, BackupGatewayClientResolvedConfig> {
85
-
86
- readonly config: BackupGatewayClientResolvedConfig;
87
- constructor(configuration: BackupGatewayClientConfig);
88
-
89
- destroy(): void;
90
- }
91
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ AssociateGatewayToServerCommandInput,
47
+ AssociateGatewayToServerCommandOutput,
48
+ } from "./commands/AssociateGatewayToServerCommand";
49
+ import {
50
+ CreateGatewayCommandInput,
51
+ CreateGatewayCommandOutput,
52
+ } from "./commands/CreateGatewayCommand";
53
+ import {
54
+ DeleteGatewayCommandInput,
55
+ DeleteGatewayCommandOutput,
56
+ } from "./commands/DeleteGatewayCommand";
57
+ import {
58
+ DeleteHypervisorCommandInput,
59
+ DeleteHypervisorCommandOutput,
60
+ } from "./commands/DeleteHypervisorCommand";
61
+ import {
62
+ DisassociateGatewayFromServerCommandInput,
63
+ DisassociateGatewayFromServerCommandOutput,
64
+ } from "./commands/DisassociateGatewayFromServerCommand";
65
+ import {
66
+ GetGatewayCommandInput,
67
+ GetGatewayCommandOutput,
68
+ } from "./commands/GetGatewayCommand";
69
+ import {
70
+ ImportHypervisorConfigurationCommandInput,
71
+ ImportHypervisorConfigurationCommandOutput,
72
+ } from "./commands/ImportHypervisorConfigurationCommand";
73
+ import {
74
+ ListGatewaysCommandInput,
75
+ ListGatewaysCommandOutput,
76
+ } from "./commands/ListGatewaysCommand";
77
+ import {
78
+ ListHypervisorsCommandInput,
79
+ ListHypervisorsCommandOutput,
80
+ } from "./commands/ListHypervisorsCommand";
81
+ import {
82
+ ListTagsForResourceCommandInput,
83
+ ListTagsForResourceCommandOutput,
84
+ } from "./commands/ListTagsForResourceCommand";
85
+ import {
86
+ ListVirtualMachinesCommandInput,
87
+ ListVirtualMachinesCommandOutput,
88
+ } from "./commands/ListVirtualMachinesCommand";
89
+ import {
90
+ PutMaintenanceStartTimeCommandInput,
91
+ PutMaintenanceStartTimeCommandOutput,
92
+ } from "./commands/PutMaintenanceStartTimeCommand";
93
+ import {
94
+ TagResourceCommandInput,
95
+ TagResourceCommandOutput,
96
+ } from "./commands/TagResourceCommand";
97
+ import {
98
+ TestHypervisorConfigurationCommandInput,
99
+ TestHypervisorConfigurationCommandOutput,
100
+ } from "./commands/TestHypervisorConfigurationCommand";
101
+ import {
102
+ UntagResourceCommandInput,
103
+ UntagResourceCommandOutput,
104
+ } from "./commands/UntagResourceCommand";
105
+ import {
106
+ UpdateGatewayInformationCommandInput,
107
+ UpdateGatewayInformationCommandOutput,
108
+ } from "./commands/UpdateGatewayInformationCommand";
109
+ import {
110
+ UpdateGatewaySoftwareNowCommandInput,
111
+ UpdateGatewaySoftwareNowCommandOutput,
112
+ } from "./commands/UpdateGatewaySoftwareNowCommand";
113
+ import {
114
+ UpdateHypervisorCommandInput,
115
+ UpdateHypervisorCommandOutput,
116
+ } from "./commands/UpdateHypervisorCommand";
117
+ export declare type ServiceInputTypes =
118
+ | AssociateGatewayToServerCommandInput
119
+ | CreateGatewayCommandInput
120
+ | DeleteGatewayCommandInput
121
+ | DeleteHypervisorCommandInput
122
+ | DisassociateGatewayFromServerCommandInput
123
+ | GetGatewayCommandInput
124
+ | ImportHypervisorConfigurationCommandInput
125
+ | ListGatewaysCommandInput
126
+ | ListHypervisorsCommandInput
127
+ | ListTagsForResourceCommandInput
128
+ | ListVirtualMachinesCommandInput
129
+ | PutMaintenanceStartTimeCommandInput
130
+ | TagResourceCommandInput
131
+ | TestHypervisorConfigurationCommandInput
132
+ | UntagResourceCommandInput
133
+ | UpdateGatewayInformationCommandInput
134
+ | UpdateGatewaySoftwareNowCommandInput
135
+ | UpdateHypervisorCommandInput;
136
+ export declare type ServiceOutputTypes =
137
+ | AssociateGatewayToServerCommandOutput
138
+ | CreateGatewayCommandOutput
139
+ | DeleteGatewayCommandOutput
140
+ | DeleteHypervisorCommandOutput
141
+ | DisassociateGatewayFromServerCommandOutput
142
+ | GetGatewayCommandOutput
143
+ | ImportHypervisorConfigurationCommandOutput
144
+ | ListGatewaysCommandOutput
145
+ | ListHypervisorsCommandOutput
146
+ | ListTagsForResourceCommandOutput
147
+ | ListVirtualMachinesCommandOutput
148
+ | PutMaintenanceStartTimeCommandOutput
149
+ | TagResourceCommandOutput
150
+ | TestHypervisorConfigurationCommandOutput
151
+ | UntagResourceCommandOutput
152
+ | UpdateGatewayInformationCommandOutput
153
+ | UpdateGatewaySoftwareNowCommandOutput
154
+ | UpdateHypervisorCommandOutput;
155
+ export interface ClientDefaults
156
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
157
+ requestHandler?: __HttpHandler;
158
+
159
+ sha256?: __HashConstructor;
160
+
161
+ urlParser?: __UrlParser;
162
+
163
+ bodyLengthChecker?: __BodyLengthCalculator;
164
+
165
+ streamCollector?: __StreamCollector;
166
+
167
+ base64Decoder?: __Decoder;
168
+
169
+ base64Encoder?: __Encoder;
170
+
171
+ utf8Decoder?: __Decoder;
172
+
173
+ utf8Encoder?: __Encoder;
174
+
175
+ runtime?: string;
176
+
177
+ disableHostPrefix?: boolean;
178
+
179
+ maxAttempts?: number | __Provider<number>;
180
+
181
+ retryMode?: string | __Provider<string>;
182
+
183
+ logger?: __Logger;
184
+
185
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
186
+
187
+ useFipsEndpoint?: boolean | __Provider<boolean>;
188
+
189
+ serviceId?: string;
190
+
191
+ region?: string | __Provider<string>;
192
+
193
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
194
+
195
+ regionInfoProvider?: RegionInfoProvider;
196
+
197
+ defaultUserAgentProvider?: Provider<__UserAgent>;
198
+
199
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
200
+ }
201
+ declare type BackupGatewayClientConfigType = Partial<
202
+ __SmithyConfiguration<__HttpHandlerOptions>
203
+ > &
204
+ ClientDefaults &
205
+ RegionInputConfig &
206
+ EndpointsInputConfig &
207
+ RetryInputConfig &
208
+ HostHeaderInputConfig &
209
+ AwsAuthInputConfig &
210
+ UserAgentInputConfig;
211
+
212
+ export interface BackupGatewayClientConfig
213
+ extends BackupGatewayClientConfigType {}
214
+ declare type BackupGatewayClientResolvedConfigType =
215
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
216
+ Required<ClientDefaults> &
217
+ RegionResolvedConfig &
218
+ EndpointsResolvedConfig &
219
+ RetryResolvedConfig &
220
+ HostHeaderResolvedConfig &
221
+ AwsAuthResolvedConfig &
222
+ UserAgentResolvedConfig;
223
+
224
+ export interface BackupGatewayClientResolvedConfig
225
+ extends BackupGatewayClientResolvedConfigType {}
226
+
227
+ export declare class BackupGatewayClient extends __Client<
228
+ __HttpHandlerOptions,
229
+ ServiceInputTypes,
230
+ ServiceOutputTypes,
231
+ BackupGatewayClientResolvedConfig
232
+ > {
233
+ readonly config: BackupGatewayClientResolvedConfig;
234
+ constructor(configuration: BackupGatewayClientConfig);
235
+
236
+ destroy(): void;
237
+ }
238
+ export {};
@@ -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 { 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
- }
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
+ AssociateGatewayToServerInput,
15
+ AssociateGatewayToServerOutput,
16
+ } from "../models/models_0";
17
+ export interface AssociateGatewayToServerCommandInput
18
+ extends AssociateGatewayToServerInput {}
19
+ export interface AssociateGatewayToServerCommandOutput
20
+ extends AssociateGatewayToServerOutput,
21
+ __MetadataBearer {}
22
+
23
+ export declare class AssociateGatewayToServerCommand extends $Command<
24
+ AssociateGatewayToServerCommandInput,
25
+ AssociateGatewayToServerCommandOutput,
26
+ BackupGatewayClientResolvedConfig
27
+ > {
28
+ readonly input: AssociateGatewayToServerCommandInput;
29
+ constructor(input: AssociateGatewayToServerCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: BackupGatewayClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ AssociateGatewayToServerCommandInput,
37
+ AssociateGatewayToServerCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,34 @@
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
- }
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 { CreateGatewayInput, CreateGatewayOutput } from "../models/models_0";
14
+ export interface CreateGatewayCommandInput extends CreateGatewayInput {}
15
+ export interface CreateGatewayCommandOutput
16
+ extends CreateGatewayOutput,
17
+ __MetadataBearer {}
18
+
19
+ export declare class CreateGatewayCommand extends $Command<
20
+ CreateGatewayCommandInput,
21
+ CreateGatewayCommandOutput,
22
+ BackupGatewayClientResolvedConfig
23
+ > {
24
+ readonly input: CreateGatewayCommandInput;
25
+ constructor(input: CreateGatewayCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: BackupGatewayClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<CreateGatewayCommandInput, CreateGatewayCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
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
- }
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 { DeleteGatewayInput, DeleteGatewayOutput } from "../models/models_0";
14
+ export interface DeleteGatewayCommandInput extends DeleteGatewayInput {}
15
+ export interface DeleteGatewayCommandOutput
16
+ extends DeleteGatewayOutput,
17
+ __MetadataBearer {}
18
+
19
+ export declare class DeleteGatewayCommand extends $Command<
20
+ DeleteGatewayCommandInput,
21
+ DeleteGatewayCommandOutput,
22
+ BackupGatewayClientResolvedConfig
23
+ > {
24
+ readonly input: DeleteGatewayCommandInput;
25
+ constructor(input: DeleteGatewayCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: BackupGatewayClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<DeleteGatewayCommandInput, DeleteGatewayCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -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 { 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
- }
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
+ DeleteHypervisorInput,
15
+ DeleteHypervisorOutput,
16
+ } from "../models/models_0";
17
+ export interface DeleteHypervisorCommandInput extends DeleteHypervisorInput {}
18
+ export interface DeleteHypervisorCommandOutput
19
+ extends DeleteHypervisorOutput,
20
+ __MetadataBearer {}
21
+
22
+ export declare class DeleteHypervisorCommand extends $Command<
23
+ DeleteHypervisorCommandInput,
24
+ DeleteHypervisorCommandOutput,
25
+ BackupGatewayClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteHypervisorCommandInput;
28
+ constructor(input: DeleteHypervisorCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: BackupGatewayClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DeleteHypervisorCommandInput, DeleteHypervisorCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -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 { 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
- }
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
+ DisassociateGatewayFromServerInput,
15
+ DisassociateGatewayFromServerOutput,
16
+ } from "../models/models_0";
17
+ export interface DisassociateGatewayFromServerCommandInput
18
+ extends DisassociateGatewayFromServerInput {}
19
+ export interface DisassociateGatewayFromServerCommandOutput
20
+ extends DisassociateGatewayFromServerOutput,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DisassociateGatewayFromServerCommand extends $Command<
24
+ DisassociateGatewayFromServerCommandInput,
25
+ DisassociateGatewayFromServerCommandOutput,
26
+ BackupGatewayClientResolvedConfig
27
+ > {
28
+ readonly input: DisassociateGatewayFromServerCommandInput;
29
+ constructor(input: DisassociateGatewayFromServerCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: BackupGatewayClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DisassociateGatewayFromServerCommandInput,
37
+ DisassociateGatewayFromServerCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }