@aws-sdk/client-backup-gateway 3.100.0 → 3.103.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.
@@ -11,6 +11,7 @@ import { CreateGatewayCommandInput, CreateGatewayCommandOutput } from "./command
11
11
  import { DeleteGatewayCommandInput, DeleteGatewayCommandOutput } from "./commands/DeleteGatewayCommand";
12
12
  import { DeleteHypervisorCommandInput, DeleteHypervisorCommandOutput } from "./commands/DeleteHypervisorCommand";
13
13
  import { DisassociateGatewayFromServerCommandInput, DisassociateGatewayFromServerCommandOutput } from "./commands/DisassociateGatewayFromServerCommand";
14
+ import { GetGatewayCommandInput, GetGatewayCommandOutput } from "./commands/GetGatewayCommand";
14
15
  import { ImportHypervisorConfigurationCommandInput, ImportHypervisorConfigurationCommandOutput } from "./commands/ImportHypervisorConfigurationCommand";
15
16
  import { ListGatewaysCommandInput, ListGatewaysCommandOutput } from "./commands/ListGatewaysCommand";
16
17
  import { ListHypervisorsCommandInput, ListHypervisorsCommandOutput } from "./commands/ListHypervisorsCommand";
@@ -21,9 +22,10 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
21
22
  import { TestHypervisorConfigurationCommandInput, TestHypervisorConfigurationCommandOutput } from "./commands/TestHypervisorConfigurationCommand";
22
23
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
23
24
  import { UpdateGatewayInformationCommandInput, UpdateGatewayInformationCommandOutput } from "./commands/UpdateGatewayInformationCommand";
25
+ import { UpdateGatewaySoftwareNowCommandInput, UpdateGatewaySoftwareNowCommandOutput } from "./commands/UpdateGatewaySoftwareNowCommand";
24
26
  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 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;
27
29
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
28
30
 
29
31
  requestHandler?: __HttpHandler;
@@ -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 { GetGatewayInput, GetGatewayOutput } from "../models/models_0";
5
+ export interface GetGatewayCommandInput extends GetGatewayInput {
6
+ }
7
+ export interface GetGatewayCommandOutput extends GetGatewayOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetGatewayCommand extends $Command<GetGatewayCommandInput, GetGatewayCommandOutput, BackupGatewayClientResolvedConfig> {
11
+ readonly input: GetGatewayCommandInput;
12
+ constructor(input: GetGatewayCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetGatewayCommandInput, GetGatewayCommandOutput>;
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 { 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
+ }
@@ -3,6 +3,7 @@ export * from "./CreateGatewayCommand";
3
3
  export * from "./DeleteGatewayCommand";
4
4
  export * from "./DeleteHypervisorCommand";
5
5
  export * from "./DisassociateGatewayFromServerCommand";
6
+ export * from "./GetGatewayCommand";
6
7
  export * from "./ImportHypervisorConfigurationCommand";
7
8
  export * from "./ListGatewaysCommand";
8
9
  export * from "./ListHypervisorsCommand";
@@ -13,4 +14,5 @@ export * from "./TagResourceCommand";
13
14
  export * from "./TestHypervisorConfigurationCommand";
14
15
  export * from "./UntagResourceCommand";
15
16
  export * from "./UpdateGatewayInformationCommand";
17
+ export * from "./UpdateGatewaySoftwareNowCommand";
16
18
  export * from "./UpdateHypervisorCommand";
@@ -136,6 +136,43 @@ export declare namespace DisassociateGatewayFromServerOutput {
136
136
 
137
137
  const filterSensitiveLog: (obj: DisassociateGatewayFromServerOutput) => any;
138
138
  }
139
+ export interface GetGatewayInput {
140
+
141
+ GatewayArn: string | undefined;
142
+ }
143
+ export declare namespace GetGatewayInput {
144
+
145
+ const filterSensitiveLog: (obj: GetGatewayInput) => any;
146
+ }
147
+
148
+ export interface GatewayDetails {
149
+
150
+ GatewayArn?: string;
151
+
152
+ GatewayDisplayName?: string;
153
+
154
+ GatewayType?: GatewayType | string;
155
+
156
+ HypervisorId?: string;
157
+
158
+ LastSeenTime?: Date;
159
+
160
+ NextUpdateAvailabilityTime?: Date;
161
+
162
+ VpcEndpoint?: string;
163
+ }
164
+ export declare namespace GatewayDetails {
165
+
166
+ const filterSensitiveLog: (obj: GatewayDetails) => any;
167
+ }
168
+ export interface GetGatewayOutput {
169
+
170
+ Gateway?: GatewayDetails;
171
+ }
172
+ export declare namespace GetGatewayOutput {
173
+
174
+ const filterSensitiveLog: (obj: GetGatewayOutput) => any;
175
+ }
139
176
  export interface ListGatewaysInput {
140
177
 
141
178
  MaxResults?: number;
@@ -235,6 +272,22 @@ export declare namespace UpdateGatewayInformationOutput {
235
272
 
236
273
  const filterSensitiveLog: (obj: UpdateGatewayInformationOutput) => any;
237
274
  }
275
+ export interface UpdateGatewaySoftwareNowInput {
276
+
277
+ GatewayArn: string | undefined;
278
+ }
279
+ export declare namespace UpdateGatewaySoftwareNowInput {
280
+
281
+ const filterSensitiveLog: (obj: UpdateGatewaySoftwareNowInput) => any;
282
+ }
283
+ export interface UpdateGatewaySoftwareNowOutput {
284
+
285
+ GatewayArn?: string;
286
+ }
287
+ export declare namespace UpdateGatewaySoftwareNowOutput {
288
+
289
+ const filterSensitiveLog: (obj: UpdateGatewaySoftwareNowOutput) => any;
290
+ }
238
291
  export interface DeleteHypervisorInput {
239
292
 
240
293
  HypervisorArn: string | undefined;
@@ -329,6 +382,8 @@ export interface UpdateHypervisorInput {
329
382
  Username?: string;
330
383
 
331
384
  Password?: string;
385
+
386
+ Name?: string;
332
387
  }
333
388
  export declare namespace UpdateHypervisorInput {
334
389
 
@@ -5,6 +5,7 @@ import { CreateGatewayCommandInput, CreateGatewayCommandOutput } from "../comman
5
5
  import { DeleteGatewayCommandInput, DeleteGatewayCommandOutput } from "../commands/DeleteGatewayCommand";
6
6
  import { DeleteHypervisorCommandInput, DeleteHypervisorCommandOutput } from "../commands/DeleteHypervisorCommand";
7
7
  import { DisassociateGatewayFromServerCommandInput, DisassociateGatewayFromServerCommandOutput } from "../commands/DisassociateGatewayFromServerCommand";
8
+ import { GetGatewayCommandInput, GetGatewayCommandOutput } from "../commands/GetGatewayCommand";
8
9
  import { ImportHypervisorConfigurationCommandInput, ImportHypervisorConfigurationCommandOutput } from "../commands/ImportHypervisorConfigurationCommand";
9
10
  import { ListGatewaysCommandInput, ListGatewaysCommandOutput } from "../commands/ListGatewaysCommand";
10
11
  import { ListHypervisorsCommandInput, ListHypervisorsCommandOutput } from "../commands/ListHypervisorsCommand";
@@ -15,12 +16,14 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/T
15
16
  import { TestHypervisorConfigurationCommandInput, TestHypervisorConfigurationCommandOutput } from "../commands/TestHypervisorConfigurationCommand";
16
17
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
17
18
  import { UpdateGatewayInformationCommandInput, UpdateGatewayInformationCommandOutput } from "../commands/UpdateGatewayInformationCommand";
19
+ import { UpdateGatewaySoftwareNowCommandInput, UpdateGatewaySoftwareNowCommandOutput } from "../commands/UpdateGatewaySoftwareNowCommand";
18
20
  import { UpdateHypervisorCommandInput, UpdateHypervisorCommandOutput } from "../commands/UpdateHypervisorCommand";
19
21
  export declare const serializeAws_json1_0AssociateGatewayToServerCommand: (input: AssociateGatewayToServerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
22
  export declare const serializeAws_json1_0CreateGatewayCommand: (input: CreateGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
23
  export declare const serializeAws_json1_0DeleteGatewayCommand: (input: DeleteGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
24
  export declare const serializeAws_json1_0DeleteHypervisorCommand: (input: DeleteHypervisorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
25
  export declare const serializeAws_json1_0DisassociateGatewayFromServerCommand: (input: DisassociateGatewayFromServerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
+ export declare const serializeAws_json1_0GetGatewayCommand: (input: GetGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
27
  export declare const serializeAws_json1_0ImportHypervisorConfigurationCommand: (input: ImportHypervisorConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
28
  export declare const serializeAws_json1_0ListGatewaysCommand: (input: ListGatewaysCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
29
  export declare const serializeAws_json1_0ListHypervisorsCommand: (input: ListHypervisorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -31,12 +34,14 @@ export declare const serializeAws_json1_0TagResourceCommand: (input: TagResource
31
34
  export declare const serializeAws_json1_0TestHypervisorConfigurationCommand: (input: TestHypervisorConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
35
  export declare const serializeAws_json1_0UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
36
  export declare const serializeAws_json1_0UpdateGatewayInformationCommand: (input: UpdateGatewayInformationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
+ export declare const serializeAws_json1_0UpdateGatewaySoftwareNowCommand: (input: UpdateGatewaySoftwareNowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
38
  export declare const serializeAws_json1_0UpdateHypervisorCommand: (input: UpdateHypervisorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
39
  export declare const deserializeAws_json1_0AssociateGatewayToServerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateGatewayToServerCommandOutput>;
36
40
  export declare const deserializeAws_json1_0CreateGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateGatewayCommandOutput>;
37
41
  export declare const deserializeAws_json1_0DeleteGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteGatewayCommandOutput>;
38
42
  export declare const deserializeAws_json1_0DeleteHypervisorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteHypervisorCommandOutput>;
39
43
  export declare const deserializeAws_json1_0DisassociateGatewayFromServerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateGatewayFromServerCommandOutput>;
44
+ export declare const deserializeAws_json1_0GetGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetGatewayCommandOutput>;
40
45
  export declare const deserializeAws_json1_0ImportHypervisorConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ImportHypervisorConfigurationCommandOutput>;
41
46
  export declare const deserializeAws_json1_0ListGatewaysCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGatewaysCommandOutput>;
42
47
  export declare const deserializeAws_json1_0ListHypervisorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListHypervisorsCommandOutput>;
@@ -47,4 +52,5 @@ export declare const deserializeAws_json1_0TagResourceCommand: (output: __HttpRe
47
52
  export declare const deserializeAws_json1_0TestHypervisorConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TestHypervisorConfigurationCommandOutput>;
48
53
  export declare const deserializeAws_json1_0UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
49
54
  export declare const deserializeAws_json1_0UpdateGatewayInformationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateGatewayInformationCommandOutput>;
55
+ export declare const deserializeAws_json1_0UpdateGatewaySoftwareNowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateGatewaySoftwareNowCommandOutput>;
50
56
  export declare const deserializeAws_json1_0UpdateHypervisorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateHypervisorCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-backup-gateway",
3
3
  "description": "AWS SDK for JavaScript Backup Gateway Client for Node.js, Browser and React Native",
4
- "version": "3.100.0",
4
+ "version": "3.103.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",